@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@500;700&family=Noto+Sans+JP:wght@400;700&display=swap");
@media screen and (max-width: 599px) {
  .pc { /* 599px以下のとき */
    display: none;
  }
}

@media screen and (min-width: 600px) {
  .sp { /* 600px以上のとき */
    display: none;
  }
}

@media screen and (max-width: 599px) {
  img { /* 599px以下のとき */
    max-width: 100%;
    height: auto;
    width: auto;
  }
}

/* ~~ エレメント / タグセレクター ~~ */
ul, ol, dl { /* ブラウザー間の相違により、リストの余白とマージンをゼロにすることをお勧めします。一貫性を保つために、量をここで指定するか、リストに含まれるリスト項目 (LI、DT、DD) で指定できます。より詳細なセレクターを記述しない限り、ここで指定する内容が .nav リストにも適用されることに注意してください。 */
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4, h5, h6, p {
  margin-top: 0; /* 上マージンを削除すると、マージンを含む div からマージンがはみ出す場合があるという問題を回避できます。残った下マージンにより、後続のエレメントからは離されます。 */
}

a img { /* このセレクターは、一部のブラウザーでイメージをリンクで囲んだ場合にイメージの周囲に表示される初期設定の青いボーダーを削除します。 */
  border: none;
}

/* ~~ サイトのリンクのスタイル付けは、ホバー効果を作成するセレクターグループも含め、この順序にする必要があります。~~ */
a:link {
  color: #42413C;
  text-decoration: underline; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}

a:visited {
  color: #6E6C64;
  text-decoration: underline;
}

a:hover, a:active, a:focus { /* このセレクターグループは、キーボードを使用するユーザーに対し、マウスを使用するユーザーと同じホバー効果を提供します。 */
  text-decoration: none;
}

p {
  margin: 10px 0 0 0;
}

.red {
  color: red;
}

.orange {
  color: #F60;
}

.blue {
  color: #36C;
}

.blue2 {
  color: dodgerblue;
}

.violet {
  color: purple;
}

.green {
  color: green;
}

.brown {
  color: brown;
}

.grey {
  color: gray;
}

.sitecolor {
  color: #DE0065;
}

.small50 {
  font-size: 0.5em;
}

.small85 {
  font-size: 0.85em;
}

.small90 {
  font-size: 0.9em;
}

.large11 {
  font-size: 1.1em;
}

.large12 {
  font-size: 1.2em;
}

.large14 {
  font-size: 1.4em;
}

.large18 {
  font-size: 1.8em;
}

.large25 {
  font-size: 2.5em;
}

.large28 {
  font-size: 2.8em;
}

.large30 {
  font-size: 3em;
}

.strong {
  font-weight: 700;
}

.normal {
  font-weight: 400;
}

.tolist, .tolist03, .tolist02 {
  text-align: right;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  .tolist, .tolist03, .tolist02 { /* 599px以下のとき */
    width: 340px;
  }
}
@media screen and (min-width: 600px) {
  .tolist, .tolist03, .tolist02 { /* 600px以上のとき */
    width: 1000px;
  }
}

.tolist02 {
  width: 100%;
  margin-bottom: 10px;
}

.tolist03 {
  width: 95%;
}

.pdfarea {
  width: 90%;
  padding: 15px 10px;
  font-size: 0.9em;
  text-align: left;
  border: 1px #ccc solid;
  margin: 0 auto;
  margin-top: 20px;
}

.link:after {
  font-family: "Font Awesome 6 Pro";
  content: "\f08e"; /*アイコンのユニコード*/
  font: var(--fa-font-solid);
  position: relative; /*絶対位置*/
  font-size: 1.2em; /*サイズ*/
  color: #DE0065; /*アイコン色*/
  margin: -5px 0 0 5px;
}

.pdf:after {
  font-family: "Font Awesome 6 Pro";
  content: "\f1c1"; /*アイコンのユニコード*/
  font: var(--fa-font-regular);
  position: relative; /*絶対位置*/
  font-size: 1.5em; /*サイズ*/
  color: #DE0065; /*アイコン色*/
  margin: -5px 0 0 5px;
}

/* ~~ その他の float/clear クラス ~~ */
.fltrt { /* このクラスを使用すると、ページ内でエレメントを右にフローティングさせることができます。フローティングさせるエレメントは、ページ内で横に並べて表示するエレメントの前に指定する必要があります。 */
  float: right;
  margin-left: 8px;
}

.fltlft { /* このクラスを使用すると、ページ内でエレメントを左にフローティングさせることができます。フローティングさせるエレメントは、ページ内で横に並べて表示するエレメントの前に指定する必要があります。 */
  float: left;
  margin-right: 8px;
}

.clearfloat { /* このクラスは、#footer が #container から削除されているか取り出されている場合に、<br /> または空の div で、フローティングさせる最後の div に続く最後のエレメントとして (#container 内に) 配置できます。 */
  clear: both;
  height: 0;
  font-size: 1px;
  line-height: 0px;
}

.kana {
  ime-mode: active;
}

.rome {
  ime-mode: disabled;
}

.lh20 {
  line-height: 2em;
}

.lh25 {
  line-height: 2.5em;
}

.imgarea, .fimgarea {
  width: 100%;
  min-height: 50px;
  text-align: center;
  font-size: 1em;
  position: relative;
  display: block;
}
.imgarea a:link, .fimgarea a:link {
  text-decoration: none; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}
.imgarea a:visited, .fimgarea a:visited {
  text-decoration: none;
}

.imgarea02 {
  width: 49%;
  text-align: center;
  font-size: 1em;
  float: left;
}
.imgarea02 img {
  padding: 20px;
}

.imgarea03 {
  width: 33%;
  text-align: center;
  font-size: 0.9em;
  float: left;
  margin-top: 20px;
}

.imgarea04 {
  text-align: center;
  display: inline-block;
}
@media screen and (min-width: 600px) {
  .imgarea04 { /* sp */
    width: 420px;
  }
}
@media screen and (max-width: 599px) {
  .imgarea04 { /* mobile */
    width: 320px;
  }
}

.imgarea img, .fimgarea img, .imgarea02 img, .imgarea03 img {
  padding: 0;
}

.fimgarea {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  min-height: 50px;
}
.fimgarea img {
  margin: 0;
  padding: 0;
}

/* square */
.square:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0c8";
  font-weight: 900;
  margin: -5px 8px 0 5px;
  color: #DE0065;
}

.shadow01 {
  box-shadow: 0 10px 8px -6px #8d8c8c;
}

.shadow02 {
  display: inline-block;
  position: relative;
  padding: 6px;
  box-shadow: 0 2px 6px #999;
  background-color: #fff;
  margin-bottom: 20px;
}
.shadow02 img {
  padding: 0;
}

.zoom, .zoom08 {
  transform: scale(1);
  transition: 0.3s ease-in-out;
}

.zoom:hover {
  transform: scale(1.1);
}

.zoom08:hover {
  transform: scale(1.05);
}

.gray {
  filter: grayscale(0);
  transition: 0.3s ease-in-out;
}

.gray:hover {
  filter: grayscale(100%);
}

.opacity {
  opacity: 1;
  transition: 0.3s ease-in-out;
}

.opacity:hover {
  opacity: 0.5;
}

.e-flash:hover {
  opacity: 1;
  animation: flash 1.5s;
}
@keyframes flash {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
a:link {
  color: #000;
  text-decoration: none;
}

a:visited {
  color: #000;
  text-decoration: none;
}

a:active, a:focus { /* このセレクターグループは、キーボードを使用するユーザーに対し、マウスを使用するユーザーと同じホバー効果を提供します。 */
  text-decoration: none;
}

a:hover { /* このセレクターグループは、キーボードを使用するユーザーに対し、マウスを使用するユーザーと同じホバー効果を提供します。 */
  text-decoration: underline;
}

@media screen and (max-width: 599px) {
  html { /* 599px以下のとき */
    position: relative;
    overflow-x: hidden;
  }
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "MS P Gothic", sans-serif;
  background-color: #fff;
  margin: 0;
  padding: 0;
  color: #000;
  font-weight: 400;
  width: 100%;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 600px) {
  body {
    min-width: 360px;
  }
}
@media screen and (min-width: 599px) {
  body {
    min-width: 1200px;
  }
}
@media screen and (max-width: 599px) {
  body { /* 600px以上のとき */
    position: relative;
    left: 0;
    overflow-x: hidden;
  }
}

.regular {
  font-weight: 400;
}

.bold {
  font-weight: 700;
}

/* ドロワーメニュー */
/* ドロワーメニュー */
.ul_open_h {
  background: #ede4df;
  color: #666;
  margin: 0;
  padding: 0;
  list-style: none;
  top: 0;
  height: 100%;
  transition: 0.35s ease-in-out;
  overflow-y: scroll;
  position: fixed;
  z-index: 50;
  padding-top: 50px;
}
.ul_open_h li {
  padding: 7px;
  width: 220px;
  border-bottom: 1px #666 solid;
  font-size: 0.85em;
}
.ul_open_h li.bottom {
  margin-bottom: 100px;
}
.ul_open_h li.bottom {
  margin-bottom: 100px;
}
.ul_open_h li a:link {
  color: #666;
  text-decoration: underline; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}
.ul_open_h li a:visited {
  color: #666;
  text-decoration: underline;
}

.open-sub {
  margin: 0 0 0 20px;
  list-style-position: inside;
  list-style-type: disc;
}
.open-sub li {
  font-size: 1em;
  border-bottom: none;
  padding-top: 5px;
  line-height: 1.7em;
}

.dmenu {
  padding: 0 0 0 10px;
}

.open-1 {
  right: -100%;
}
.open-1.active {
  right: 0px;
}

.move-1.on.btn {
  position: fixed;
  right: 25px;
  top: 10px;
}

.btn {
  position: absolute;
  z-index: 90;
}
@media screen and (min-width: 600px) {
  .btn { /* PC */
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 35px;
  }
}
@media screen and (max-width: 599px) {
  .btn { /* mobile */
    position: absolute;
    top: 12px;
    right: 8px;
    width: 35px;
    height: 35px;
  }
}
.btn:before, .btn:after, .btn span {
  display: #fff;
  width: 80%;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  transition: 0.35s ease-in-out;
}
.btn span {
  top: calc(50% - 1.5px);
}
@media screen and (min-width: 600px) {
  .btn span { /* 600px以上のとき */
    height: 3px;
    background-color: #fff;
  }
}
@media screen and (max-width: 599px) {
  .btn span { /* 600px以上のとき */
    height: 3px;
    background-color: #fff;
  }
}
.btn:before {
  content: "";
}
@media screen and (min-width: 600px) {
  .btn:before { /* 600px以上のとき */
    top: calc(25% - 5px);
    border-top: 3px solid #fff;
  }
}
@media screen and (max-width: 599px) {
  .btn:before { /* 600px以上のとき */
    top: calc(25% - 3px);
    border-top: 3px solid #fff;
  }
}
.btn:after {
  content: "";
}
@media screen and (min-width: 600px) {
  .btn:after { /* 600px以上のとき */
    bottom: calc(25% - 5px);
    border-top: 3px solid #fff;
  }
}
@media screen and (max-width: 599px) {
  .btn:after { /* 600px以上のとき */
    bottom: calc(25% - 3px);
    border-top: 3px solid #fff;
  }
}

.btn.on span {
  display: none;
}
.btn.on:before {
  top: calc(50% - 1.8px);
  transform: rotate(315deg);
  border-top: 3px solid #fff;
}
.btn.on:after {
  bottom: calc(50% - 1.5px);
  transform: rotate(-315deg);
  border-top: 3px solid #fff;
}

/* ヘッダー */
/* header */
#headwrap {
  width: 100%;
  top: 0;
  left: 0;
  text-align: center;
}
@media screen and (min-width: 600px) {
  #headwrap { /* pc */
    min-height: 130px;
  }
}
@media screen and (max-width: 599px) {
  #headwrap { /* mobile */
    min-height: 70px;
  }
}
#headwrap .header01 {
  width: 100%;
  background-color: #DE0065;
}
@media screen and (min-width: 600px) {
  #headwrap .header01 { /* pc */
    height: 80px;
  }
}
@media screen and (max-width: 599px) {
  #headwrap .header01 { /* mobile */
    min-height: 48px;
  }
}
#headwrap .header01 .area01 {
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  #headwrap .header01 .area01 {
    width: 360px;
  }
}
@media screen and (min-width: 599px) {
  #headwrap .header01 .area01 {
    width: 1200px;
  }
}
@media screen and (min-width: 600px) {
  #headwrap .header01 .area01 img.h-logo { /* pc */
    position: absolute;
    top: 18px;
    left: 22px;
  }
}
@media screen and (max-width: 599px) {
  #headwrap .header01 .area01 img.h-logo { /* mobile */
    position: absolute;
    top: 14px;
    left: 16px;
    width: 230px;
  }
}
@media screen and (min-width: 600px) {
  #headwrap .header01 .area01 .hmenu { /* pc */
    position: absolute;
    top: 45px;
    left: 520px;
    color: #fff;
    width: 600px;
    display: flex;
  }
  #headwrap .header01 .area01 .hmenu div {
    margin: 0 20px 0 0;
    font-size: 24px;
  }
}
@media screen and (max-width: 599px) {
  #headwrap .header01 .area01 .hmenu { /* mobile */
    display: none;
  }
}
#headwrap .header01 .area01 a:link {
  color: #fff;
  text-decoration: none;
}
#headwrap .header01 .area01 a:visited {
  color: #fff;
  text-decoration: none;
}
#headwrap .header02 {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 600px) {
  #headwrap .header02 { /* pc */
    height: 335px;
    padding: 0;
    text-align: center;
  }
}
@media screen and (max-width: 599px) {
  #headwrap .header02 { /* mobile */
    height: 160px;
  }
}
#headwrap .header02 img {
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  #headwrap .header02 img { /* pc */ }
}
@media screen and (max-width: 599px) {
  #headwrap .header02 img { /* mobile */ }
}

/* main area */
main {
  min-height: 300px;
  z-index: 0;
}

/* top page */
.sawrap {
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  padding: 0;
  min-width: 1200px;
}

.sliderarea {
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: 20px;
}

.sliderarea.w300 {
  max-width: 300px;
}

.slick-slide img {
  height: auto;
  margin: auto;
  max-height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media screen and (min-width: 600px) {
  .slick-slide img { /* 600px以上のとき */
    height: 500px;
    height: 300px;
  }
}
@media screen and (max-width: 599px) {
  .slick-slide img { /* 600px以上のとき */
    height: 400px;
    height: 300px;
  }
}

.slick-prev, .slick-next {
  z-index: 1;
}

.slick-prev:before, .slick-next:before {
  color: #000;
}

.slick-slide {
  transition: all ease-in-out 0.3s;
  opacity: 0.2;
}

.slick-active {
  opacity: 1;
}

.slick-current {
  opacity: 1;
}

.thumb {
  margin: 20px 0 0;
}

.thumb .slick-slide {
  cursor: pointer;
}

.thumb .slick-slide:hover {
  opacity: 0.7;
}

/*====================================================================
.full-screen
====================================================================*/
.full-screen .slick-list {
  overflow: visible;
}

.full-screen.slider {
  max-width: 2250px;
  min-width: 1200px;
  margin: 0 auto;
}

#menuarea {
  position: relative;
  margin: 0 auto;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 600px) {
  #menuarea {
    width: 360px;
  }
}
@media screen and (min-width: 599px) {
  #menuarea {
    width: 1200px;
  }
}
#menuarea .menu01 {
  background-color: #DE0065;
  color: #fff;
  text-align: center;
  opacity: 1;
  transition: 0.3s ease-in-out;
}
@media screen and (min-width: 600px) {
  #menuarea .menu01 { /* 600px以上のとき */
    width: 325px;
    height: 140px;
    font-size: 26px;
    line-height: 60px;
    margin: 0 20px;
  }
}
@media screen and (max-width: 599px) {
  #menuarea .menu01 { /* 600px以上のとき */
    width: 107px;
    height: 52px;
    font-size: 16px;
    line-height: 20px;
    margin: 0 5px;
  }
}
#menuarea .menu01:hover {
  opacity: 0.5;
}
#menuarea .menu01 .menu02, #menuarea .menu01 .menu04 {
  width: 100%;
  background-color: #000;
}
@media screen and (min-width: 600px) {
  #menuarea .menu01 .menu02, #menuarea .menu01 .menu04 { /* 600px以上のとき */
    height: 80px;
    line-height: 80px;
  }
}
@media screen and (max-width: 599px) {
  #menuarea .menu01 .menu02, #menuarea .menu01 .menu04 { /* 600px以上のとき */
    height: 30px;
    line-height: 30px;
  }
}
@media screen and (min-width: 600px) {
  #menuarea .menu01 .menu04 { /* 600px以上のとき */
    line-height: 24px;
    padding-top: 10px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 599px) {
  #menuarea .menu01 .menu04 { /* 600px以上のとき */
    line-height: 1.2em;
    font-size: 12px;
  }
}

#marea01 {
  width: 100%;
  height: 220px;
  background-color: #ede4df;
  box-sizing: border-box;
  text-align: center;
  font-weight: 700;
}
@media screen and (min-width: 600px) {
  #marea01 { /* 600px以上のとき */
    height: 220px;
    padding: 30px 0 0 0;
    font-size: 26px;
    line-height: 2em;
  }
}
@media screen and (max-width: 599px) {
  #marea01 { /* 600px以上のとき */
    height: 92px;
    padding: 15px 0 0 0;
    font-size: 16px;
    line-height: 1.2em;
  }
}
#marea01 img {
  vertical-align: middle;
  max-width: 0 10px;
}
@media screen and (max-width: 599px) {
  #marea01 img { /* 600px以上のとき */
    width: 240px;
  }
}

#marea02 {
  width: 100%;
  background-color: #DE0065;
  position: relative;
}
@media screen and (min-width: 600px) {
  #marea02 { /* 600px以上のとき */
    height: 365px;
    background: url("../images/marea02_bk.jpg") center top no-repeat, #DE0065;
  }
}
@media screen and (max-width: 599px) {
  #marea02 { /* 600px以上のとき */
    height: 488px;
    background: url("../images/marea02_bk_s.jpg") center top no-repeat, #DE0065;
  }
}
#marea02 .m02 {
  margin: 0 auto;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 600px) {
  #marea02 .m02 {
    width: 360px;
  }
}
@media screen and (min-width: 599px) {
  #marea02 .m02 {
    width: 1200px;
  }
}
@media screen and (min-width: 600px) {
  #marea02 .m02 { /* 600px以上のとき */
    height: 300px;
  }
}
@media screen and (max-width: 599px) {
  #marea02 .m02 { /* 600px以上のとき */
    height: 432px;
  }
}
#marea02 .m02 .m02-01 {
  color: #fff;
  font-weight: 700;
}
@media screen and (min-width: 600px) {
  #marea02 .m02 .m02-01 { /* 600px以上のとき */
    position: absolute;
    top: 32px;
    left: 75px;
    font-size: 28px;
    letter-spacing: 0.4em;
  }
}
@media screen and (max-width: 599px) {
  #marea02 .m02 .m02-01 { /* 600px以上のとき */
    position: relative;
    margin: 0 auto;
    padding-top: 10px;
    font-size: 18px;
    line-height: 1.2em;
  }
}
@media screen and (min-width: 600px) {
  #marea02 .m02 .point-img { /* 600px以上のとき */
    position: absolute;
    top: 95px;
    left: 17px;
  }
}
@media screen and (max-width: 599px) {
  #marea02 .m02 .point-img { /* 600px以上のとき */
    position: relative;
    margin: 0 auto;
    margin-top: 10px;
  }
}
#marea02 .m02 .point-txt {
  color: #000;
  text-align: left;
  box-sizing: border-box;
}
@media screen and (min-width: 600px) {
  #marea02 .m02 .point-txt { /* 600px以上のとき */
    width: 300px;
    height: 90px;
    position: absolute;
    top: 95px;
    left: 790px;
    font-size: 18px;
    padding-top: 30px;
    line-height: 1.6em;
  }
}
@media screen and (max-width: 599px) {
  #marea02 .m02 .point-txt { /* 600px以上のとき */
    width: 260px;
    height: 180px;
    position: relative;
    margin: 0 auto;
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.1em;
  }
}
#marea02 .m02-barea {
  width: 100%;
  background-color: #000;
  color: #fff;
  box-sizing: border-box;
  text-align: center;
}
@media screen and (min-width: 600px) {
  #marea02 .m02-barea { /* pc */
    height: 65px;
    padding: 10px 0;
  }
}
@media screen and (max-width: 599px) {
  #marea02 .m02-barea { /* mobile */
    height: 56px;
    padding: 0;
  }
}
#marea02 .m02-barea div {
  font-weight: 700;
}
@media screen and (min-width: 600px) {
  #marea02 .m02-barea div { /* pc */
    font-size: 30px;
  }
}
@media screen and (max-width: 599px) {
  #marea02 .m02-barea div { /* mobile */
    font-size: 18px;
  }
}

#marea03 {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 600px) {
  #marea03 { /* 600px以上のとき */
    height: 510px;
    background: url("../images/marea03_bk.02.jpg") center top no-repeat;
  }
}
@media screen and (max-width: 599px) {
  #marea03 { /* 600px以上のとき */
    height: 500px;
    background: url("../images/marea03_bk_s.02.jpg") center top no-repeat;
  }
}
#marea03 .m03 {
  margin: 0 auto;
  color: #000;
  position: relative;
}
@media screen and (max-width: 600px) {
  #marea03 .m03 {
    width: 360px;
  }
}
@media screen and (min-width: 599px) {
  #marea03 .m03 {
    width: 1200px;
  }
}
@media screen and (min-width: 600px) {
  #marea03 .m03 { /* 600px以上のとき */
    height: 510px;
  }
}
@media screen and (max-width: 599px) {
  #marea03 .m03 { /* 600px以上のとき */
    height: 500px;
    padding-top: 20px;
  }
}
#marea03 .m03 .m03-01 {
  text-align: center;
}
@media screen and (min-width: 600px) {
  #marea03 .m03 .m03-01 { /* 600px以上のとき */
    position: absolute;
    top: 35px;
    left: 76px;
    width: 490px;
    height: 350px;
  }
}
@media screen and (max-width: 599px) {
  #marea03 .m03 .m03-01 { /* 600px以上のとき */
    position: relative;
    margin: 0 auto;
    width: 240px;
    height: 173px;
  }
}
#marea03 .m03 .m03-01 .m03-01-01 {
  position: absolute;
  left: 0;
  width: 100%;
  color: yellow;
  font-weight: 700;
}
@media screen and (min-width: 600px) {
  #marea03 .m03 .m03-01 .m03-01-01 { /* 600px以上のとき */
    top: 20px;
    font-size: 32px;
  }
}
@media screen and (max-width: 599px) {
  #marea03 .m03 .m03-01 .m03-01-01 { /* 600px以上のとき */
    top: 10px;
    font-size: 16px;
  }
}
#marea03 .m03 .m03-01 .m03-01-02 {
  position: absolute;
  font-weight: 700;
  line-height: 1.4em;
}
@media screen and (min-width: 600px) {
  #marea03 .m03 .m03-01 .m03-01-02 { /* 600px以上のとき */
    top: 155px;
    left: 75px;
    font-size: 18px;
  }
}
@media screen and (max-width: 599px) {
  #marea03 .m03 .m03-01 .m03-01-02 { /* 600px以上のとき */
    top: 70px;
    left: 30px;
    font-size: 10px;
  }
}
#marea03 .m03 .m03-01 .m03-01-03 {
  position: absolute;
  top: 185px;
  right: 45px;
  line-height: 1.2em;
}
@media screen and (min-width: 600px) {
  #marea03 .m03 .m03-01 .m03-01-03 { /* 600px以上のとき */
    top: 185px;
    right: 45px;
    font-size: 20px;
  }
}
@media screen and (max-width: 599px) {
  #marea03 .m03 .m03-01 .m03-01-03 { /* 600px以上のとき */
    top: 85px;
    right: 15px;
    font-size: 11px;
  }
}
#marea03 .m03 .m03-01 .m03-01-04 {
  width: 100%;
  position: absolute;
  color: #fff;
}
@media screen and (min-width: 600px) {
  #marea03 .m03 .m03-01 .m03-01-04 { /* 600px以上のとき */
    bottom: 15px;
    font-size: 30px;
  }
}
@media screen and (max-width: 599px) {
  #marea03 .m03 .m03-01 .m03-01-04 { /* 600px以上のとき */
    bottom: 8px;
    font-size: 20px;
  }
}
#marea03 .m03 .m03-txt01 {
  position: absolute;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 600px) {
  #marea03 .m03 .m03-txt01 { /* 600px以上のとき */
    top: 30px;
    left: 650px;
    font-size: 28px;
  }
}
@media screen and (max-width: 599px) {
  #marea03 .m03 .m03-txt01 { /* 600px以上のとき */
    top: 205px;
    left: 25px;
    font-size: 18px;
  }
}
#marea03 .m03 .m03-txt02 {
  position: absolute;
  position: absolute;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 600px) {
  #marea03 .m03 .m03-txt02 { /* 600px以上のとき */
    top: 240px;
    left: 920px;
    font-size: 24px;
  }
}
@media screen and (max-width: 599px) {
  #marea03 .m03 .m03-txt02 { /* 600px以上のとき */
    top: 325px;
    right: 40px;
    font-size: 12px;
  }
}
#marea03 .m03 .m03-img {
  position: absolute;
}
@media screen and (min-width: 600px) {
  #marea03 .m03 .m03-img { /* 600px以上のとき */
    top: 140px;
    left: 680px;
  }
}
@media screen and (max-width: 599px) {
  #marea03 .m03 .m03-img { /* 600px以上のとき */
    top: 255px;
    left: 50px;
    width: 270px;
  }
}
#marea03 .m03 .tel {
  color: #DE0065;
  font-weight: 700;
}
@media screen and (min-width: 600px) {
  #marea03 .m03 .tel { /* 600px以上のとき */
    position: absolute;
    top: 290px;
    left: 680px;
    font-size: 44px;
  }
}
@media screen and (max-width: 599px) {
  #marea03 .m03 .tel { /* 600px以上のとき */
    position: relative;
    margin: 0 auto;
    margin-top: 160px;
    text-align: center;
    width: 100%;
    font-size: 26px;
  }
}
#marea03 .m03 .opentime {
  background-color: #D5CBC7;
  text-align: center;
  font-weight: 700;
}
@media screen and (min-width: 600px) {
  #marea03 .m03 .opentime { /* 600px以上のとき */
    width: 490px;
    height: 50px;
    position: absolute;
    top: 350px;
    left: 635px;
    line-height: 50px;
    font-size: 26px;
  }
}
@media screen and (max-width: 599px) {
  #marea03 .m03 .opentime { /* 600px以上のとき */
    position: relative;
    margin: 0 auto;
    margin-top: 10px;
    width: 320px;
    height: 30px;
    line-height: 30px;
    font-size: 16px;
  }
}
#marea03 .m03 .addr {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 600px) {
  #marea03 .m03 .addr { /* 600px以上のとき */
    position: absolute;
    bottom: 40px;
    font-size: 26px;
  }
}
@media screen and (max-width: 599px) {
  #marea03 .m03 .addr { /* 600px以上のとき */
    position: relative;
    margin: 0 auto;
    margin-top: 10px;
    font-size: 14px;
  }
}

#marea04 {
  width: 100%;
  min-height: 200px;
  padding: 20px 0 20px 0;
  background-color: #ede4df;
  margin: 0 auto;
  position: relative;
  text-align: center;
}

#marea {
  min-height: 200px;
  padding: 20px 0 20px 0;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 600px) {
  #marea {
    width: 360px;
  }
}
@media screen and (min-width: 599px) {
  #marea {
    width: 1200px;
  }
}

h2.sub {
  position: relative;
  margin: 0 auto;
  margin-bottom: 10px;
  padding: 0 0 5px 20px;
  box-sizing: border-box;
  text-align: left;
  font-weight: 700;
  background-color: #000;
  color: #fff;
}
@media screen and (min-width: 600px) {
  h2.sub { /* 600px以上のとき */
    width: 1050px;
    height: 50px;
    line-height: 50px;
    font-size: 26px;
  }
}
@media screen and (max-width: 599px) {
  h2.sub { /* 600px以上のとき */
    width: 360px;
    height: 40px;
    line-height: 40px;
    font-size: 22px;
  }
}

h1.news {
  position: relative;
  margin: 0 auto;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  border-bottom: 2px solid #DE0065;
  box-sizing: border-box;
}
@media screen and (min-width: 600px) {
  h1.news { /* 600px以上のとき */
    width: 1100px;
    font-size: 20px;
    margin-top: 50px;
    padding: 10px 20px;
  }
}
@media screen and (max-width: 599px) {
  h1.news { /* 600px以上のとき */
    width: 360px;
    font-size: 18px;
    margin-top: 30px;
    padding: 5px 20px;
  }
}

h3.sub {
  position: relative;
  margin: 0 auto;
  margin-bottom: 20px;
  text-align: left;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  border-top: 2px solid #DE0065;
  border-bottom: 2px solid #DE0065;
  box-sizing: border-box;
}
@media screen and (min-width: 600px) {
  h3.sub { /* 600px以上のとき */
    width: 1000px;
    font-size: 20px;
    margin-top: 50px;
    padding: 10px 20px;
  }
}
@media screen and (max-width: 599px) {
  h3.sub { /* 600px以上のとき */
    width: 360px;
    font-size: 18px;
    margin-top: 30px;
    padding: 5px 20px;
  }
}
h3.sub img {
  height: 30px;
  vertical-align: middle;
}
h3.sub .nclass {
  min-width: 30px;
  height: 30px;
  color: #fff;
  font-size: 20px;
  text-align: center;
  line-height: 28px;
  display: inline-block;
  padding: 0 0.5em;
  background: #DE0065; /* BOXの背景色         */
}

h4.sub {
  box-sizing: border-box;
  position: relative;
  padding: 8px 30px;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 30px;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  text-align: left;
  z-index: 5;
  border-bottom: 2px #DE0065 double;
}
@media screen and (min-width: 600px) {
  h4.sub { /* 600px以上のとき */
    font-size: 20px;
    width: 1000px;
  }
}
@media screen and (max-width: 599px) {
  h4.sub { /* 599px以下のとき */
    font-size: 18px;
    width: 350px;
  }
}

.nclass {
  min-width: 30px;
  height: 30px;
  color: #fff;
  font-size: 20px;
  text-align: center;
  line-height: 28px;
  display: inline-block;
  padding: 0 0.5em;
  margin-right: 20px;
  background: #DE0065; /* BOXの背景色         */
}

#aboutarea01 {
  position: relative;
  margin: 0 auto;
  margin-bottom: 20px;
}
@media screen and (min-width: 600px) {
  #aboutarea01 { /* 600px以上のとき */
    width: 1100px;
    display: flex;
    justify-content: center;
  }
}
@media screen and (max-width: 599px) {
  #aboutarea01 { /* 600px以上のとき */
    width: 360px;
  }
}
#aboutarea01 .aarea01-01 {
  border: 1px #DE0065 solid;
}
@media screen and (min-width: 600px) {
  #aboutarea01 .aarea01-01 { /* 600px以上のとき */
    width: 260px;
    height: 300px;
    margin: 0 20px;
  }
}
@media screen and (max-width: 599px) {
  #aboutarea01 .aarea01-01 { /* 600px以上のとき */
    width: 340px;
    min-height: 50px;
    margin: 0 auto;
    margin-bottom: 10px;
  }
}
#aboutarea01 .aarea01-01 .aarea01-01-01 {
  width: 100%;
  text-align: center;
  font-size: 20px;
  background-color: #DE0065;
  color: #fff;
  font-weight: 700;
}
@media screen and (min-width: 600px) {
  #aboutarea01 .aarea01-01 .aarea01-01-01 { /* 600px以上のとき */
    height: 50px;
    line-height: 50px;
  }
}
@media screen and (max-width: 599px) {
  #aboutarea01 .aarea01-01 .aarea01-01-01 { /* 600px以上のとき */
    height: 30px;
    line-height: 30px;
  }
}
#aboutarea01 .aarea01-01 .aarea01-01-02 {
  width: 100%;
  box-sizing: border-box;
  text-align: left;
}
@media screen and (min-width: 600px) {
  #aboutarea01 .aarea01-01 .aarea01-01-02 { /* 600px以上のとき */
    padding: 20px;
    line-height: 1.7em;
  }
}
@media screen and (max-width: 599px) {
  #aboutarea01 .aarea01-01 .aarea01-01-02 { /* 600px以上のとき */
    padding: 10px;
    line-height: 1.2em;
  }
}
#aboutarea01 .aarea01-02 {
  border: 1px #DE0065 solid;
}
@media screen and (min-width: 600px) {
  #aboutarea01 .aarea01-02 { /* 600px以上のとき */
    width: 470px;
    height: 280px;
    margin: 0 20px;
  }
}
@media screen and (max-width: 599px) {
  #aboutarea01 .aarea01-02 { /* 600px以上のとき */
    width: 360px;
    min-height: 200px;
    margin: 0 auto;
    margin-bottom: 10px;
  }
}
#aboutarea01 .aarea01-02 .aarea01-02-01 {
  width: 100%;
  text-align: center;
  background-color: #DE0065;
  color: #fff;
  font-weight: 700;
}
@media screen and (min-width: 600px) {
  #aboutarea01 .aarea01-02 .aarea01-02-01 { /* 600px以上のとき */
    height: 50px;
    line-height: 50px;
    font-size: 20px;
  }
}
@media screen and (max-width: 599px) {
  #aboutarea01 .aarea01-02 .aarea01-02-01 { /* 600px以上のとき */
    height: 30px;
    line-height: 30px;
  }
}
#aboutarea01 .aarea01-02 .aarea01-02-02 {
  width: 100%;
  padding: 15px;
  box-sizing: border-box;
  text-align: left;
}
@media screen and (min-width: 600px) {
  #aboutarea01 .aarea01-02 .aarea01-02-02 { /* 600px以上のとき */
    line-height: 1.7em;
  }
}
@media screen and (max-width: 599px) {
  #aboutarea01 .aarea01-02 .aarea01-02-02 { /* 600px以上のとき */
    line-height: 1.3em;
    font-size: 16px;
  }
}
#aboutarea01 .aarea01-03 {
  display: flex;
}
@media screen and (min-width: 600px) {
  #aboutarea01 .aarea01-03 { /* 600px以上のとき */
    width: 450px;
    height: 100px;
    margin: 0 20px;
  }
}
@media screen and (max-width: 599px) {
  #aboutarea01 .aarea01-03 { /* 600px以上のとき */
    width: 360px;
    height: 100px;
    font-size: 16px;
    margin: 5px 5px;
  }
}
#aboutarea01 .aarea01-03 .aarea01-03-01 {
  width: 120px;
  text-align: center;
  background-color: #36A850;
  color: #fff;
  font-weight: 700;
}
@media screen and (min-width: 600px) {
  #aboutarea01 .aarea01-03 .aarea01-03-01 { /* 600px以上のとき */
    height: 100px;
    line-height: 50px;
    font-size: 20px;
    line-height: 100px;
  }
}
@media screen and (max-width: 599px) {
  #aboutarea01 .aarea01-03 .aarea01-03-01 { /* 600px以上のとき */
    height: 100px;
    line-height: 100px;
  }
}
#aboutarea01 .aarea01-03 .aarea01-03-02 {
  width: 280px;
  padding: 10px;
  box-sizing: border-box;
  text-align: left;
  line-height: 1.7em;
}
@media screen and (min-width: 600px) {
  #aboutarea01 .aarea01-03 .aarea01-03-02 { /* 600px以上のとき */
    height: 100px;
  }
}
@media screen and (max-width: 599px) {
  #aboutarea01 .aarea01-03 .aarea01-03-02 { /* 600px以上のとき */ }
}

dl.class {
  margin: 0 auto;
  border-bottom: none;
  box-sizing: border-box;
}
@media screen and (min-width: 600px) {
  dl.class { /* 600px以上のとき */
    display: -moz-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 1000px;
  }
}
@media screen and (max-width: 599px) {
  dl.class { /* 600px以上のとき */
    width: 360px;
  }
}

dl.class dt {
  box-sizing: border-box;
}
@media screen and (min-width: 600px) {
  dl.class dt { /* 600px以上のとき */
    padding: 5px 5px 5px 5px;
    width: 150px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  dl.class dt { /* 600px以上のとき */
    width: 360px;
    padding: 5px 5px 5px 5px;
  }
}
@media screen and (min-width: 600px) {
  dl.class dt div { /* 600px以上のとき */
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center;
  }
}

.infant {
  background-color: #F8AC9E;
}

.kids {
  background-color: #F3D865;
}

.junior {
  background-color: #69B5D9;
}

.youth {
  background-color: #BE99C4;
}

.sports {
  background-color: #CEE1C3;
}

dl.class dd {
  background: #fff;
  text-align: left;
  border-top: 1px #ccc solid;
  border-bottom: 1px #ccc solid;
  box-sizing: border-box;
}
@media screen and (min-width: 600px) {
  dl.class dd { /* 600px以上のとき */
    padding: 10px;
    width: 800px;
    margin-bottom: 20px;
    font-size: 16px;
    display: flex;
    justify-content: center;
  }
}
@media screen and (max-width: 599px) {
  dl.class dd { /* 600px以上のとき */
    width: 360px;
    margin: 5px 0 5px 0;
    padding: 5px;
    font-size: 14px;
  }
}
dl.class dd img {
  margin: 0 5px;
}
@media screen and (min-width: 600px) {
  dl.class dd img { /* 600px以上のとき */
    height: 150px;
  }
}
@media screen and (max-width: 599px) {
  dl.class dd img { /* 600px以上のとき */
    width: 340px;
    margin: 10px 5px;
  }
}

dl.sub, dl.sub02, dl.sub03 {
  list-style-type: none;
  margin: 0 auto;
  margin-bottom: 50px;
  list-style-position: inside;
  display: block;
}
@media screen and (max-width: 599px) {
  dl.sub, dl.sub02, dl.sub03 { /* 599px以下のとき */
    width: 320px;
  }
}
@media screen and (min-width: 600px) {
  dl.sub, dl.sub02, dl.sub03 { /* 600px以上のとき */
    width: 800px;
  }
}
dl.sub dt, dl.sub02 dt, dl.sub03 dt {
  margin: 8px 0 8px 0;
  position: relative;
  width: 170px;
  float: left;
  line-height: 1.8em;
  text-align: left;
}
dl.sub dd, dl.sub02 dd, dl.sub03 dd {
  margin: 8px 0 8px 0;
  position: relative;
  float: left;
  line-height: 1.8em;
  text-align: left;
}
@media screen and (max-width: 599px) {
  dl.sub dd, dl.sub02 dd, dl.sub03 dd { /* 599px以下のとき */
    width: 320px;
  }
}
@media screen and (min-width: 600px) {
  dl.sub dd, dl.sub02 dd, dl.sub03 dd { /* 600px以上のとき */
    width: 610px;
  }
}
dl.sub dd ol, dl.sub02 dd ol, dl.sub03 dd ol {
  list-style-position: outside;
  margin-left: 1.5em;
}

dl.sub02 dt:after, dl.sub03 dt:after {
  display: block;
  content: "";
  position: absolute;
  top: 0.8em;
  left: -1em;
  width: 6px;
  height: 6px;
  background-color: red;
  border-radius: 100%;
}

dl.sub03 dt {
  width: 100%;
  float: none;
}
dl.sub03 dd {
  float: none;
}
@media screen and (max-width: 599px) {
  dl.sub03 dd { /* 599px以下のとき */
    width: 320px;
    margin-left: 20px;
  }
}
@media screen and (min-width: 600px) {
  dl.sub03 dd { /* 600px以上のとき */
    width: 90%;
    margin-left: 60px;
  }
}

dl.lesson {
  list-style-type: none;
  margin: 0 auto;
  margin-bottom: 50px;
  list-style-position: inside;
  display: block;
}
@media screen and (min-width: 600px) {
  dl.lesson { /* 600px以上のとき */
    width: 600px;
  }
}
@media screen and (max-width: 599px) {
  dl.lesson { /* 599px以下のとき */
    width: 320px;
  }
}
dl.lesson dt {
  margin: 2px 0;
  position: relative;
  height: 20px;
  float: left;
  line-height: 20px;
  text-align: center;
  padding: 5px;
}
@media screen and (min-width: 600px) {
  dl.lesson dt { /* 600px以上のとき */
    width: 150px;
  }
}
@media screen and (max-width: 599px) {
  dl.lesson dt { /* 599px以下のとき */
    width: 100px;
  }
}
dl.lesson dt:after {
  display: none;
}
dl.lesson dd {
  margin: 2px 10px;
  position: relative;
  height: 20px;
  float: left;
  line-height: 20px;
  text-align: left;
  padding: 5px;
}
@media screen and (min-width: 600px) {
  dl.lesson dd { /* 600px以上のとき */
    width: 400px;
  }
}
@media screen and (max-width: 599px) {
  dl.lesson dd { /* 599px以下のとき */
    width: 170px;
  }
}

summary {
  list-style: none;
  cursor: pointer;
}

.n-title::-webkit-details-marker {
  display: none;
}

.n-title {
  display: block;
  list-style: none;
}
@media screen and (min-width: 600px) {
  .n-title { /* PC */
    width: 100%;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 5px;
    text-align: center;
  }
}
@media screen and (max-width: 599px) {
  .n-title { /* mobile */
    width: 320px;
    margin: 20px 0 0 10px;
    text-align: left;
  }
}
.n-title a:link, .n-title a:visited {
  text-decoration: none; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}

.n-detail {
  min-height: 200px;
  margin: 0 auto;
  border-top: 1px #333 solid;
  border-bottom: 1px #333 solid;
  padding: 10px;
  box-sizing: content-box;
}
@media screen and (min-width: 600px) {
  .n-detail { /* PC */
    width: 900px;
  }
}
@media screen and (max-width: 599px) {
  .n-detail { /* mobile */
    width: 340px;
  }
}
.n-detail .sub-txt {
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 40px;
  text-align: left;
}
@media screen and (min-width: 600px) {
  .n-detail .sub-txt { /* PC */
    width: 800px;
  }
}
@media screen and (max-width: 599px) {
  .n-detail .sub-txt { /* mobile */
    width: 340px;
  }
}
.n-detail .close-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  position: relative;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
  background: #ede4df; /* BOXの背景色         */
  transition: all 0.3s ease;
}
@media screen and (min-width: 600px) {
  .n-detail .close-btn { /* 600px以上のとき */
    width: 200px; /* BOXの幅             */
    height: 36px; /* BOXの高さ           */
    line-height: 36px;
  }
}
@media screen and (max-width: 599px) {
  .n-detail .close-btn { /* 599px以下のとき */
    bottom: 12px;
    right: 15px;
    width: 200px; /* BOXの幅             */
    height: 28px; /* BOXの高さ           */
    line-height: 28px;
  }
}
.n-detail .close-btn:hover {
  background-color: #DE0065;
  text-decoration: none;
  color: #fff;
}
.n-detail .close-btn a:link {
  text-decoration: none; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}
.n-detail .close-btn a:visited {
  text-decoration: none;
}

@media screen and (max-width: 599px) {
  #navi { /* 599px以下のとき */
    display: none;
  }
}
@media screen and (min-width: 600px) {
  #navi { /* 600px以上のとき */
    width: 1150px;
    margin: 0 auto;
    text-align: right;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

.txt {
  margin: 0 auto;
  line-height: 1.8em;
  text-align: left;
}
@media screen and (max-width: 599px) {
  .txt { /* 599px以下のとき */
    width: 340px;
  }
}
@media screen and (min-width: 600px) {
  .txt { /* 600px以上のとき */
    width: 950px;
  }
}

.new {
  margin: 0 5px;
  min-width: 30px;
  color: #fff;
  font-size: 12px;
  text-align: center;
  line-height: 20px;
  padding: 2px 10px;
  display: inline-block;
  border-radius: 12px;
  background: #DE0065; /* BOXの背景色         */
}

.ba {
  margin: 10px 0;
  min-width: 30px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  line-height: 25px;
  padding: 2px 10px;
  display: inline-block;
  border-radius: 15px;
  background: #ED8059; /* BOXの背景色         */
}

img.view {
  width: 380px;
  -o-object-fit: cover;
     object-fit: cover;
}

img.view2 {
  width: 400px;
  height: 400px;
  -o-object-fit: cover;
  object-fit: cover;
}

img.view3 {
  width: 250px;
  -o-object-fit: cover;
  object-fit: cover;
}

.kiji {
  margin: 0 auto;
  text-align: left;
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 1.8em;
}
@media screen and (max-width: 599px) {
  .kiji { /* 599px以下のとき */
    width: 340px;
  }
}
@media screen and (min-width: 600px) {
  .kiji { /* 600px以上のとき */
    width: 800px;
  }
}
.kiji:before {
  clear: both;
}

.kiji {
  margin: 0 auto;
  text-align: left;
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 1.8em;
}
@media screen and (max-width: 599px) {
  .kiji { /* 599px以下のとき */
    width: 340px;
  }
}
@media screen and (min-width: 600px) {
  .kiji { /* 600px以上のとき */
    width: 800px;
  }
}
.kiji:before {
  clear: both;
}

.tobutton {
  position: relative;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  background: #ede4df; /* BOXの背景色         */
  transition: all 0.3s ease;
}
@media screen and (min-width: 600px) {
  .tobutton { /* 600px以上のとき */
    width: 300px; /* BOXの幅             */
    height: 36px; /* BOXの高さ           */
    line-height: 36px;
  }
}
@media screen and (max-width: 599px) {
  .tobutton { /* 599px以下のとき */
    width: 280px; /* BOXの幅             */
    height: 28px; /* BOXの高さ           */
    line-height: 28px;
  }
}
.tobutton:hover {
  background-color: #DE0065;
  text-decoration: none;
  color: #fff;
}
.tobutton a:link {
  text-decoration: none; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}
.tobutton a:visited {
  text-decoration: none;
}

.ba {
  margin: 10px 0;
  min-width: 30px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  line-height: 25px;
  padding: 2px 10px;
  display: inline-block;
  border-radius: 15px;
  background: #ED8059; /* BOXの背景色         */
}

img.view {
  width: 380px;
  -o-object-fit: cover;
     object-fit: cover;
}

img.view2 {
  width: 400px;
  height: 400px;
  -o-object-fit: cover;
  object-fit: cover;
}

img.view3 {
  width: 250px;
  -o-object-fit: cover;
  object-fit: cover;
}

dl.about {
  display: -moz-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin: 0 auto;
  border-bottom: 1px solid #666;
  margin-top: 50px;
}
@media screen and (min-width: 600px) {
  dl.about { /* 600px以上のとき */
    width: 950px;
  }
}
@media screen and (max-width: 599px) {
  dl.about { /* 599px以下のとき */
    width: 350px;
  }
}
dl.about dt {
  border-top: 1px solid #666;
  box-sizing: border-box;
  padding: 10px 0 0 10px;
  text-align: left;
}
@media screen and (min-width: 600px) {
  dl.about dt { /* 600px以上のとき */
    width: 250px;
  }
}
@media screen and (max-width: 599px) {
  dl.about dt { /* 599px以下のとき */
    width: 100px;
  }
}
dl.about dd {
  border-top: 1px solid #666;
  box-sizing: border-box;
  margin: 0;
  padding: 10px 0 10px 0;
  text-align: left;
}
@media screen and (min-width: 600px) {
  dl.about dd { /* 600px以上のとき */
    width: 700px;
  }
}
@media screen and (max-width: 599px) {
  dl.about dd { /* 599px以下のとき */
    width: 250px;
  }
}
@media screen and (min-width: 600px) {
  dl.about dd .a-sub { /* 600px以上のとき */
    width: 650px;
    margin: 0 0 0 50px;
  }
}
@media screen and (max-width: 599px) {
  dl.about dd .a-sub { /* 599px以下のとき */
    width: 240px;
    margin: 0 0 0 10px;
  }
}

ul.sub {
  width: 90%;
  list-style: disc;
  list-style-position: outside;
}
@media screen and (min-width: 600px) {
  ul.sub { /* 600px以上のとき */
    width: 900px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 599px) {
  ul.sub { /* 599px以下のとき */
    margin: 50px 0 0 10px;
  }
}
ul.sub li {
  margin: 0 0 0.5em 0;
  text-align: left;
}

/* mail */
@media screen and (min-width: 600px) {
  .formarea { /* 600px以上のとき */
    width: 900px;
    margin: 30px 0 0 100px;
  }
}
@media screen and (max-width: 599px) {
  .formarea { /* 600px以下のとき */
    width: 360px;
    margin: 0 auto;
  }
}

.hissu {
  display: inline-block;
  padding: 3px;
  background-color: #FD080C;
  color: #fff;
  min-width: 30px;
  width: auto;
  font-size: 0.8em;
  border-radius: 5px;
  text-align: center;
  border: 1px #fff solid;
}

form {
  max-width: 100%;
  display: block;
  margin: 0 auto;
  margin-top: 30px;
}

form ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

form dl {
  clear: both;
  display: inline-block;
  margin: 0 auto;
  margin-bottom: 10px;
  list-style-type: none;
  border-bottom: 1px #DE0065 solid;
}
@media screen and (min-width: 600px) {
  form dl { /* 600px以上のとき */
    width: 800px;
  }
}
@media screen and (max-width: 599px) {
  form dl { /* 600px以下のとき */
    width: 340px;
  }
}

form dt {
  text-align: left;
  border-top: 1px #DE0065 solid;
  padding-top: 1em;
}
@media screen and (min-width: 600px) {
  form dt { /* 600px以上のとき */
    float: left;
    width: 25%;
  }
}
@media screen and (max-width: 599px) {
  form dt { /* 600px以下のとき */
    width: 100%;
    text-align: left;
  }
}

form dt.title {
  text-align: left;
  padding: 3px 10px;
  background-color: #DE0065;
  color: #fff;
}
@media screen and (min-width: 600px) {
  form dt.title { /* 600px以上のとき */
    float: left;
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  form dt.title { /* 600px以下のとき */
    width: 100%;
    text-align: left;
  }
}

form dd {
  margin: 0 0 1em 0;
  text-align: left;
  width: 72%;
  display: block;
  padding-top: 1em;
}
@media screen and (min-width: 600px) {
  form dd { /* 600px以上のとき */
    float: left;
    border-top: 1px #DE0065 solid;
  }
}
@media screen and (max-width: 599px) {
  form dd { /* 600px以下のとき */
    width: 100%;
  }
}

form dd.order {
  margin: 0 0 0.8em 0;
  text-align: left;
  display: block;
  padding-top: 1em;
}
@media screen and (min-width: 600px) {
  form dd.order { /* 600px以上のとき */
    float: left;
    width: 70%;
  }
}
@media screen and (max-width: 599px) {
  form dd.order { /* 600px以下のとき */
    width: 100%;
  }
}

label {
  margin: 0 0 0.5em 0;
  font-size: pxtoem(16, 16);
}

input {
  margin: 0 0 0.5em 0;
  border: 1px solid grey;
  padding: 6px 10px;
  color: dark_grey;
  font-size: pxtoem(16, 16);
}

textarea {
  border: 1px solid grey;
  padding: 6px 10px;
  width: 100%;
  color: dark_grey;
}

select {
  min-width: 320px;
  margin: 5px 0px;
  padding: 6px 10px;
  font-size: 16px;
  line-height: 1.75;
  color: #333;
  background-color: #ffffff;
  background-image: none;
  border: 1px solid #cccccc;
  -ms-word-break: normal;
  word-break: normal;
}

/* common */
@keyframes sheen {
  0% {
    transform: skewY(-45deg) translateX(0);
  }
  100% {
    transform: skewY(-45deg) translateX(12.5em);
  }
}
img.view2 {
  width: 400px;
  -o-object-fit: cover;
  object-fit: cover;
}

.map {
  margin: 0 auto;
  margin-top: 20px;
}
@media screen and (min-width: 600px) {
  .map { /* 600px以上のとき */
    width: 600px;
    height: 600px;
  }
}
@media screen and (max-width: 599px) {
  .map { /* 599px以下のとき */
    width: 320px;
    height: 320px;
  }
}

h2.news, h2.news02 {
  position: relative;
  padding-bottom: 0.2em;
  padding-left: 20px;
  border-bottom: 2px dotted #666;
  margin: 0 auto;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 10px;
}
@media screen and (max-width: 599px) {
  h2.news, h2.news02 { /* 599px以下のとき */
    width: 340px; /* 幅指定 */
    font-size: 20px; /* 文字サイズ指定 */
  }
}
@media screen and (min-width: 600px) {
  h2.news, h2.news02 { /* 600px以上のとき */
    width: 980px;
    font-size: 22px; /* 文字サイズ指定 */
  }
}

.next {
  width: 100%;
  text-align: center;
  padding: 10px 0;
  margin: 20px 0 0 0;
}
@media screen and (min-width: 600px) {
  .next { /* 600px以上のとき */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
}
.next div {
  margin: 0 20px;
}
.next .nextTolist {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  display: block;
  background: #fff; /* BOXの背景色         */
  border: 1px #DE0065 solid;
  transition: all 0.3s ease;
}
@media screen and (min-width: 600px) {
  .next .nextTolist { /* 600px以上のとき */
    width: 180px; /* BOXの幅             */
    height: 36px; /* BOXの高さ           */
    border-radius: 18px; /* 角丸の指定          */
    line-height: 36px;
  }
}
@media screen and (max-width: 599px) {
  .next .nextTolist { /* 599px以下のとき */
    width: 150px; /* BOXの幅             */
    height: 28px; /* BOXの高さ           */
    border-radius: 15px; /* 角丸の指定          */
    line-height: 28px;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
.next .nextTolist:hover {
  background-color: #DE0065;
  text-decoration: none;
}
.next .nextTolist a:link {
  text-decoration: none; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}
.next .nextTolist a:visited {
  text-decoration: none;
}

/* fadeUpをするアイコンの動き */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: scale(5%);
  }
  to {
    opacity: 1;
    transform: scale(100%);
  }
}
/* Instagram 読み込み */
/* コンテナ */
.instagram-container {
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .instagram-container { /* 600px以上のとき */
    width: 880px;
    margin: 0 auto;
    margin-top: 40px;
    margin-bottom: 80px;
    display: flex;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 599px) {
  .instagram-container { /* 599px以下のとき */
    width: 360px;
    margin-top: 10px;
    justify-content: center;
    text-align: center;
  }
}

@media screen and (min-width: 600px) {
  .instagram-item { /* 600px以上のとき */
    width: 180px;
    height: 180px;
    padding: 0;
    margin: 0 20px;
  }
}
@media screen and (max-width: 599px) {
  .instagram-item { /* 599px以下のとき */
    width: 160px;
    height: 160px;
    padding: 0;
    margin: 20px 10px;
    float: left;
  }
}

a.instagram-card {
  display: block;
  position: relative;
  margin-bottom: 16px;
  text-align: center;
  font-size: 0.8em;
}

.instagram-card__img {
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (min-width: 600px) {
  .instagram-card__img { /* 600px以上のとき */
    width: 180px;
    height: 180px;
  }
}
@media screen and (max-width: 599px) {
  .instagram-card__img { /* 599px以下のとき */
    width: 160px;
    height: 160px;
  }
}

/* ~~ フッター ~~ */
@media screen and (min-width: 600px) {
  footer { /* 600px以上のとき */
    min-height: 200px;
  }
}
@media screen and (max-width: 599px) {
  footer {
    min-height: 105px;
  }
}

#fwrap {
  width: 100%;
  background-color: #ede4df;
  display: block;
  text-align: center;
  height: auto;
}
@media screen and (min-width: 600px) {
  #fwrap { /* 600px以上のとき */
    min-height: 200px;
  }
}
@media screen and (max-width: 599px) {
  #fwrap {
    min-height: 105px;
  }
}

#farea {
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 600px) {
  #farea {
    width: 360px;
  }
}
@media screen and (min-width: 599px) {
  #farea {
    width: 1200px;
  }
}
@media screen and (min-width: 600px) {
  #farea { /* 600px以上のとき */
    padding-top: 30px;
  }
}
@media screen and (max-width: 599px) {
  #farea {
    padding-top: 15px;
  }
}
#farea .fmenu, #farea .fform {
  box-sizing: border-box;
  background-color: #fff;
  color: #000;
  display: flex;
  justify-content: center;
  font-weight: 700;
  transition: background 1s;
}
@media screen and (min-width: 600px) {
  #farea .fmenu, #farea .fform { /* 600px以上のとき */
    width: 280px;
    height: 140px;
    border-radius: 30px;
    padding-top: 30px;
    font-size: 24px;
    margin: 0 20px;
  }
}
@media screen and (max-width: 599px) {
  #farea .fmenu, #farea .fform {
    width: 90px;
    height: 76px;
    border-radius: 13px;
    padding-top: 20px;
    font-size: 12px;
    margin: 0 10px;
  }
}
#farea .fmenu:hover, #farea .fform:hover {
  background-color: #DE0065;
  color: #fff;
}
#farea .fmenu a:link, #farea .fform a:link {
  color: #000;
  text-decoration: none; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}
#farea .fmenu a:hover, #farea .fform a:hover {
  color: #fff;
}
#farea .fform {
  padding-top: 10px;
}

#fcopy {
  width: 100%;
  margin: 0 auto;
  display: block;
  text-align: center;
  padding: 0 0 8px 0;
  font-size: 1em;
  background-color: #fff;
}
@media screen and (max-width: 600px) {
  #fcopy {
    width: 360px;
  }
}
@media screen and (min-width: 599px) {
  #fcopy {
    width: 1200px;
  }
}
@media screen and (min-width: 600px) {
  #fcopy { /* pc */
    margin-top: 5px;
  }
}
@media screen and (max-width: 599px) {
  #fcopy {
    margin-top: 5px;
  }
}
#fcopy div {
  margin: 0 auto;
  min-height: 15px;
  height: auto;
  position: relative;
  font-size: 0.85em;
  text-align: center;
}/*# sourceMappingURL=style.css.map */