@charset "UTF-8";
@font-face {
  font-family: "EB Garamond";
  src: url("EBGaramond-Bold.ttf") format("truetype");
  src: url("EBGaramond-BoldItalic.ttf") format("truetype"), url("EBGaramond-ExtraBold.ttf") format("truetype"), url("EBGaramond-ExtraBoldItalic.ttf") format("truetype"), url("EBGaramond-Italic.ttf") format("truetype"), url("EBGaramond-Medium.ttf") format("truetype"), url("EBGaramond-MediumItalic.ttf") format("truetype"), url("EBGaramond-Regular.ttf") format("truetype"), url("EBGaramond-SemiBold.ttf") format("truetype"), url("EBGaramond-SemiBoldItalic.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
a:hover {
  opacity: 0.7;
  -webkit-transition: all 300ms;
  -o-transition: all 300ms;
  transition: all 300ms;
  color: #000;
}

html {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  overflow-x: hidden;
  font-size: 0.8333333333vw;
}
@media screen and (min-width: 1100px) {
  html {
    font-size: 10px;
  }
}
@media screen and (max-width: 900px) {
  html {
    font-size: 2.6666666667vw;
  }
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media screen and (max-width: 900px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
body {
  min-width: auto;
  margin: 0 auto;
  font-size: 1.6rem;
  overflow-x: hidden;
}

.Inner {
  max-width: 1100px;
  min-width: auto;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .Inner {
    padding: 0 2rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
  }
}
.Inner--min {
  max-width: 980px;
}
@media screen and (max-width: 900px) {
  .Inner--min {
    max-width: 100%;
    padding: 0;
  }
}

/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 10px;
  font-weight: 400;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
  font-size: 10px;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

body {
  background: url(../img/common/bg.jpg);
  background-repeat: repeat;
  background-size: contain;
  position: relative;
}

.Top__arrow {
  position: fixed;
  bottom: 5rem;
  right: 5rem;
  width: 9.3rem;
  height: 9.3rem;
  z-index: 100;
}
@media screen and (max-width: 900px) {
  .Top__arrow {
    width: 5rem;
    height: 5rem;
    right: 2rem;
    bottom: 2rem;
  }
}
.Top__arrow img {
  width: 100%;
}

.hidden-element {
  opacity: 0;
  -webkit-transform: translateY(20px);
      -ms-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  -o-transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}

/* その場で */
/* styles.css */
.fadeIn {
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s; /* フェードインのアニメーション時間を設定 */
}

.fade-in-left {
  opacity: 0; /* 初期状態では不透明度を0に設定 */
  position: relative;
  left: -100px; /* 初期位置を画面外に設定 */
  -webkit-transition: opacity 1s ease, left 1s ease;
  -o-transition: opacity 1s ease, left 1s ease;
  transition: opacity 1s ease, left 1s ease; /* アニメーションを設定 */
}

.fade-in-right {
  opacity: 0; /* 初期状態では不透明度を0に設定 */
  position: relative;
  right: -100px; /* 初期位置を画面外に設定 */
  -webkit-transition: opacity 1s ease, right 1s ease;
  -o-transition: opacity 1s ease, right 1s ease;
  transition: opacity 1s ease, right 1s ease; /* アニメーションを設定 */
}

.fade-in-bottom {
  opacity: 0; /* 初期状態では不透明度を0に設定 */
  -webkit-transform: translateY(50px);
      -ms-transform: translateY(50px);
          transform: translateY(50px); /* 初期位置を上方向に移動 */
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  -o-transition: opacity 1s ease, transform 1s ease;
  transition: opacity 1s ease, transform 1s ease;
  transition: opacity 1s ease, transform 1s ease, -webkit-transform 1s ease; /* アニメーションを設定 */
}

.fade-in-bottom-02 {
  opacity: 0; /* 初期状態では不透明度を0に設定 */
  -webkit-transform: translateY(50px);
      -ms-transform: translateY(50px);
          transform: translateY(50px); /* 初期位置を上方向に移動 */
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  -o-transition: opacity 1s ease, transform 1s ease;
  transition: opacity 1s ease, transform 1s ease;
  transition: opacity 1s ease, transform 1s ease, -webkit-transform 1s ease; /* アニメーションを設定 */
}

.Btn a {
  font-size: 2.2rem;
  color: #fff;
  display: block;
  background-color: #284077;
  height: 11.6rem;
  line-height: 11.5rem;
  text-align: center;
  max-width: 55.4rem;
  width: 100%;
  text-decoration: none;
  border-radius: 6rem;
  position: relative;
  font-weight: bold;
  margin: 0 auto;
  letter-spacing: 0.2rem;
  -webkit-transition: all 300ms;
  -o-transition: all 300ms;
  transition: all 300ms;
}
@media screen and (max-width: 900px) {
  .Btn a {
    font-size: 1.2rem;
    height: 6rem;
    line-height: 6rem;
    max-width: 29.3rem;
    width: 100%;
  }
}
.Btn a::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 3rem;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6.5rem;
  height: 6.5rem;
  -webkit-transition: all 300ms;
  -o-transition: all 300ms;
  transition: all 300ms;
  z-index: 1;
  background: url(../img/top/btn_arrow.png) no-repeat center/contain;
}
@media screen and (max-width: 900px) {
  .Btn a::before {
    width: 3.4rem;
    height: 3.4rem;
    right: 1.5rem;
  }
}
.Btn a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 3rem;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6.5rem;
  height: 6.5rem;
  -webkit-transition: all 300ms;
  -o-transition: all 300ms;
  transition: all 300ms;
  background-color: #fff;
  border-radius: 50%;
}
@media screen and (max-width: 900px) {
  .Btn a::after {
    width: 3.4rem;
    height: 3.4rem;
    right: 1.5rem;
  }
}
.Btn a:hover {
  opacity: 1;
}
.Btn a:hover::after {
  -webkit-transform: translateY(-50%) scale(1.2);
      -ms-transform: translateY(-50%) scale(1.2);
          transform: translateY(-50%) scale(1.2);
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  -webkit-transition: all 300ms;
  -o-transition: all 300ms;
  transition: all 300ms;
}

.Btn__01 a, .Btn__01 button {
  height: 5.5rem;
  line-height: 5.1rem;
  font-weight: bold;
  font-size: 1.4rem;
  display: block;
  text-decoration: none;
  text-align: center;
  background-color: #284077;
  border-radius: 2.5rem;
  text-align: center;
  color: #fff;
  position: relative;
  width: 100%;
  border: none;
  border: 2px solid #284077;
  cursor: pointer;
}
@media screen and (max-width: 900px) {
  .Btn__01 a, .Btn__01 button {
    font-size: 1rem;
    line-height: 3.6rem;
    height: 3.6rem;
    line-height: 3.2rem;
  }
}
.Btn__01 a::before, .Btn__01 button::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 3.1rem;
  height: 3.1rem;
  background: url(../img/top/btn_arrow.png) no-repeat center/contain;
}
@media screen and (max-width: 900px) {
  .Btn__01 a::before, .Btn__01 button::before {
    width: 2rem;
    height: 2rem;
  }
}
.Btn__01 a:hover, .Btn__01 button:hover {
  opacity: 1;
  background-color: #fff;
  color: #284077;
  border: 2px solid #284077;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 300ms;
  -o-transition: all 300ms;
  transition: all 300ms;
}
.Btn__01 a:hover::before, .Btn__01 button:hover::before {
  -webkit-transition: all 300ms;
  -o-transition: all 300ms;
  transition: all 300ms;
  background: url(../img/top/btn_arrow_hover.png) no-repeat center/contain;
}

.modal-content__content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
  position: fixed;
  z-index: -1;
  /*ナビの位置と形状*/
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; /*ナビの高さ*/
  background: #fff; /* 背景色 */
  /*動き*/
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: -120%;
  left: 0;
  width: 100%;
  height: 100vh; /*ナビの高さ*/
  /*動き*/
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
  z-index: 999;
  top: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
  display: none;
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%; /* menuの範囲 */
  top: 45%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 95%;
}

#g-nav.panelactive ul {
  display: block;
}

/*リストのレイアウト設定*/
#g-nav li {
  list-style: none;
  text-align: center;
}

#g-nav li a {
  color: #333;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  top: 5.8rem;
  right: 2rem;
  cursor: pointer;
  width: 35px;
  height: 20px;
}

/*×に変化*/
.openbtn1 span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  left: 0px; /*  線の位置*/
  height: 3px; /*  線の太さ*/
  border-radius: 2px;
  background-color: #284077; /* ボタンの色*/
  width: 100%; /*  ボタンに対する線の長さ*/
}

.openbtn1 span:nth-of-type(1) {
  top: 0px;
}

.openbtn1 span:nth-of-type(2) {
  top: 13px;
}

.openbtn1 span:nth-of-type(3) {
  top: 25px;
}

.openbtn1.active span:nth-of-type(1) {
  top: 7px;
  left: 0px;
  -webkit-transform: translateY(6px) rotate(-30deg);
      -ms-transform: translateY(6px) rotate(-30deg);
          transform: translateY(6px) rotate(-30deg);
  width: 100%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3) {
  top: 18px;
  left: 0px;
  -webkit-transform: translateY(-6px) rotate(30deg);
      -ms-transform: translateY(-6px) rotate(30deg);
          transform: translateY(-6px) rotate(30deg);
  width: 100%;
}

#page-link {
  width: 80%;
}
@media screen and (max-width: 900px) {
  #page-link .img {
    width: 95%;
    margin-top: 1rem;
  }
}
#page-link .img img {
  width: 100%;
}

.menu__item a {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 2rem 0;
  position: relative;
  text-align: center;
  align-items: flex-start;
  padding: 1rem 2rem !important;
  border-top: 1px solid #DCDDDD;
  position: relative;
}
.menu__item a::after{
    content: "";
    display: block;
    position: absolute;
    /* top: ; */
    bottom: 1.3rem;
    right: 2rem;
    /* transform: translateY(-50%); */
    width: 1.5rem;
    height: 1.5rem;
    /* background-color: red; */
    background: url(../img/menu/menu_allow.png) no-repeat center/contain;

}
.menu__item:last-of-type a{
  border-bottom: 1px solid #DCDDDD;
}
.menu__item a .en {
  font-family: "Concert One", sans-serif;
  color: #284077;
  display: block;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 0.8rem;
}
.menu__item a .ja {
  font-weight: bold;
  color: #284077;
  display: block;
  font-size: 2.2rem;
  text-align: center;
}

.Menu__container--01 {
  max-width: 66.66rem;
  margin: 0 auto;
}
.Menu__container__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .Menu__container__content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.Menu__container__content__item {
  list-style: none;
}
@media screen and (max-width: 900px) {
  .Menu__container__content__item {
    width: 50%;
    display: block;
  }
}
.Menu__container__content__item a {
  text-decoration: none;
  color: #284077;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 2.6rem;
  padding-left: 2rem;
  position: relative;
}
@media screen and (max-width: 900px) {
  .Menu__container__content__item a {
    font-size: 1.2rem;
  }
}
.Menu__container__content__item a:hover {
  opacity: 1;
}
.Menu__container__content__item a:hover::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: -1rem;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #284077;
}

/*-----スライダーのためのcss------*/
.slider {
  position: relative;
  z-index: 1;
  /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
  padding: 0;
}

.slider-item {
  width: 100%; /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
  /*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  background-repeat: no-repeat; /*背景画像をリピートしない*/
  background-position: center; /*背景画像の位置を中央に*/
  background-size: cover; /*背景画像が.slider-item全体を覆い表示*/
}

/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
  position: absolute; /*絶対配置にする*/
  z-index: 3;
  top: 50%; /*矢印の位置*/
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid red; /*矢印の色*/
  border-right: 2px solid red; /*矢印の色*/
  height: 25px;
  width: 25px;
}

.slick-prev { /*戻る矢印の位置と形状*/
  left: 2.5%;
  -webkit-transform: rotate(-135deg);
      -ms-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.slick-next { /*次へ矢印の位置と形状*/
  right: 2.5%;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/
.slick-dots {
  position: relative;
  z-index: 3;
  text-align: center;
  margin: -50px 0 0 0;
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 8px; /*ドットボタンのサイズ*/
  height: 8px; /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #ccc; /*ドットボタンの色*/
}

.slick-dots .slick-active button {
  background: #333; /*ドットボタンの現在地表示の色*/
}

/*-----スライダーのためのcss------*/
.slider {
  position: relative;
  z-index: 1;
  /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
  /* height: 100vh; */
  /* height: 300px; */
  /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  padding: 0;
}

.slider-item {
  width: 100%; /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
  /* height:100vh; */
  /* height: 300px; */
  /*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  background-repeat: no-repeat; /*背景画像をリピートしない*/
  background-position: center; /*背景画像の位置を中央に*/
  background-size: cover; /*背景画像が.slider-item全体を覆い表示*/
}

/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
  position: absolute; /*絶対配置にする*/
  z-index: 3;
  top: 50%; /*矢印の位置*/
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid red; /*矢印の色*/
  border-right: 2px solid red; /*矢印の色*/
  height: 25px;
  width: 25px;
}

.slick-prev { /*戻る矢印の位置と形状*/
  left: 2.5%;
  -webkit-transform: rotate(-135deg);
      -ms-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.slick-next { /*次へ矢印の位置と形状*/
  right: 2.5%;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/
.slick-dots {
  position: relative;
  z-index: 3;
  text-align: center;
  margin: -50px 0 0 0;
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 8px; /*ドットボタンのサイズ*/
  height: 8px; /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #ccc; /*ドットボタンの色*/
}

.slick-dots .slick-active button {
  background: #333; /*ドットボタンの現在地表示の色*/
}

.Title {
  text-align: center;
  margin-bottom: 4rem;
}
.Title .en {
  font-size: 7rem;
  font-family: "Concert One", sans-serif;
  color: #284077;
  margin-bottom: 2rem;
  letter-spacing: 0.5rem;
}
@media screen and (max-width: 900px) {
  .Title .en {
    font-size: 3.4rem;
    letter-spacing: 0.2rem;
    margin-bottom: 1rem;
  }
}
.Title .ja {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 3.2rem;
  color: #284077;
}
@media screen and (max-width: 900px) {
  .Title .ja {
    font-size: 1.2rem;
    line-height: 3rem;
  }
}

.Page__title__container {
  padding: 8rem 0 6rem 0;
}
@media screen and (max-width: 900px) {
  .Page__title__container {
    padding: 4rem 0 3rem 0;
  }
}
.Page__title__container__en {
  font-family: "Concert One", sans-serif;
  font-size: 8rem;
  line-height: 8rem;
  letter-spacing: 0.8rem;
  color: #284077;
  margin-bottom: 2rem;
}
@media screen and (max-width: 900px) {
  .Page__title__container__en {
    font-size: 3.4rem;
    margin-bottom: 0;
    line-height: 3rem;
    letter-spacing: 0.4rem;
    margin-bottom: 1.5rem;
  }
}
.Page__title__container__ja {
  background-color: #284077;
  color: #fff;
  font-weight: bold;
  font-size: 2.5rem;
  line-height: 3.2rem;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 900px) {
  .Page__title__container__ja {
    font-size: 1.5rem;
    padding: 0.1rem 1rem;
    line-height: 2.2rem;
  }
}
.Page__title__container__dis {
  text-align: right;
  font-size: 1.6rem;
  line-height: 3.2rem;
  margin-top: -2rem;
}
@media screen and (max-width: 900px) {
  .Page__title__container__dis {
    margin-top: 2rem;
    font-size: 1rem;
  }
}

.Basic__container {
  padding: 0 0 12rem 0;
}
@media screen and (max-width: 900px) {
  .Basic__container {
    padding: 0 0 8rem 0;
  }
}
.Basic__container__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 5rem;
}
@media screen and (max-width: 900px) {
  .Basic__container__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.Basic__container__flex__text {
  width: 35%;
}
@media screen and (max-width: 900px) {
  .Basic__container__flex__text {
    width: 100%;
  }
}
.Basic__container__flex__text .Title {
  margin-bottom: 2rem;
  text-align: left;
}
.Basic__container__flex__text__dis {
  font-size: 1.6rem;
  line-height: 3.2rem;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  .Basic__container__flex__text__dis {
    font-size: 1.2rem;
    line-height: 2.5rem;
  }
}
.Basic__container__flex__img {
  width: 65%;
  padding-left: 5%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 900px) {
  .Basic__container__flex__img {
    width: 100%;
    padding-left: 3rem;
  }
}
.Basic__container__flex__img img {
  width: 110%;
  margin-top: -2rem;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 900px) {
  .Basic__container__flex__img img {
    width: 100%;
    margin-top: 0;
    text-align: right;
  }
}
.Basic__container__flex__img::before {
  content: "";
  display: block;
  position: absolute;
  top: 2rem;
  left: -2rem;
  width: 10.9rem;
  height: 6.3rem;
  background: url(../img/top/basic_kumo.png) no-repeat center/contain;
}
@media screen and (max-width: 900px) {
  .Basic__container__flex__img::before {
    width: 4rem;
    left: 0;
    top: 0;
  }
}
.Basic__container__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -3rem;
}
@media screen and (max-width: 900px) {
  .Basic__container__wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 0;
    margin: 0 -1rem;
  }
}
.Basic__container__wrap__item {
  width: 25%;
  padding: 0 3rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  .Basic__container__wrap__item {
    width: 50%;
    padding: 0 2rem;
    margin-bottom: 3rem;
  }
}
.Basic__container__wrap__item__img {
  margin-bottom: 4rem;
  position: relative;
}
@media screen and (max-width: 900px) {
  .Basic__container__wrap__item__img {
    margin-bottom: 1rem;
  }
}
.Basic__container__wrap__item__img img {
  width: 100%;
}
.Basic__container__wrap__item__img::before {
  content: "";
  display: block;
  position: absolute;
  color: #fff;
  font-size: 3rem;
  text-align: center;
  line-height: 7.3rem;
  font-weight: bold;
  top: 50%;
  font-family: "Concert One", sans-serif;
  top: 0;
  left: -3rem;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 7.3rem;
  height: 7.3rem;
  background: url(../img/top/basic_num.png) no-repeat center/contain;
}
@media screen and (max-width: 900px) {
  .Basic__container__wrap__item__img::before {
    width: 4.4rem;
    height: 4.4rem;
    font-size: 1.7rem;
    line-height: 4.4rem;
    left: -2rem;
  }
}
.Basic__container__wrap__item__img.img__01::after {
  content: "";
  display: block;
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  width: 10.8rem;
  height: 10.8rem;
  border-radius: 50%;
  border: 2px solid #fff;
  background: url(../img/top/basic_01_acc.png) no-repeat center/contain;
}
@media screen and (max-width: 900px) {
  .Basic__container__wrap__item__img.img__01::after {
    width: 6.4rem;
    height: 6.4rem;
    right: -1rem;
    bottom: -1rem;
  }
}
.Basic__container__wrap__item__img.img__01::before {
  content: "01";
}
.Basic__container__wrap__item__img.img__02::before {
  content: "02";
}
.Basic__container__wrap__item__img.img__03::before {
  content: "03";
}
.Basic__container__wrap__item__img.img__04::before {
  content: "04";
}
.Basic__container__wrap__item__text {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 3.2rem;
  color: #284077;
}
@media screen and (max-width: 900px) {
  .Basic__container__wrap__item__text {
    font-size: 1.2rem;
    line-height: 1.9rem;
  }
}
.Basic__container__text {
  font-size: 1.6rem;
  text-align: center;
  padding: 6rem 0 7rem 0;
}
@media screen and (max-width: 900px) {
  .Basic__container__text {
    font-size: 1.2rem;
    line-height: 2.5rem;
    padding: 0rem 0 3rem 0;
  }
}

.Design__container {
  padding: 0 0 8rem 0;
}
@media screen and (max-width: 900px) {
  .Design__container {
    padding: 0 0 3rem 0;
  }
}
.Design__container .Title {
  margin-bottom: 2rem;
}
@media screen and (max-width: 900px) {
  .Design__container .Title {
    margin-bottom: 10rem;
    margin-bottom: 7rem;
  }
}
.Design__container__content__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2rem;
}
@media screen and (max-width: 900px) {
  .Design__container__content__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.Design__container__content__item.item__01 {
  margin-bottom: 10rem;
}
@media screen and (max-width: 900px) {
  .Design__container__content__item.item__01 {
    margin-bottom: 5rem;
  }
}
.Design__container__content__item.item__02 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 900px) {
  .Design__container__content__item.item__02 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.Design__container__content__item__img {
  width: 60%;
  position: relative;
}
@media screen and (max-width: 900px) {
  .Design__container__content__item__img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.Design__container__content__item__img img {
  width: 100%;
}
.Design__container__content__item__img::before {
  content: "";
  display: block;
  position: absolute;
  width: 5.1rem;
  height: 9.7rem;
  background: url(../img/top/sya_pu.png) no-repeat center/contain;
}
@media screen and (max-width: 900px) {
  .Design__container__content__item__img::before {
    width: 2.9rem;
    height: 5.5rem;
  }
}
.Design__container__content__item__img.img__01 {
  padding-right: 6%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  .Design__container__content__item__img.img__01 {
    padding-right: 0;
  }
}
.Design__container__content__item__img.img__01::before {
  top: -8rem;
  left: 15rem;
}
@media screen and (max-width: 900px) {
  .Design__container__content__item__img.img__01::before {
    top: -5rem;
    left: 9rem;
  }
}
.Design__container__content__item__img.img__02 {
  padding-left: 6%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  .Design__container__content__item__img.img__02 {
    padding-left: 0;
  }
}
.Design__container__content__item__img.img__02::before {
  top: -8rem;
  right: 0rem;
}
@media screen and (max-width: 900px) {
  .Design__container__content__item__img.img__02::before {
    top: -5rem;
    right: 0;
  }
}
.Design__container__content__item__text {
  width: 40%;
  position: relative;
}
@media screen and (max-width: 900px) {
  .Design__container__content__item__text {
    width: 100%;
  }
}
.Design__container__content__item__text p {
  font-size: 1.6rem;
  line-height: 3.2rem;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  .Design__container__content__item__text p {
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 2.5rem;
  }
}
.Design__container__content .item__01 {
  position: relative;
}
.Design__container__content .item__01::before {
  content: "";
  display: block;
  position: absolute;
  top: -3rem;
  right: 0;
  width: 19rem;
  height: 14.8rem;
  background: url(../img/top/people.png) no-repeat center/contain;
}
@media screen and (max-width: 900px) {
  .Design__container__content .item__01::before {
    width: 7.8rem;
    height: 6.8rem;
    top: -5rem;
  }
}
.Design__container__content .item__02 {
  position: relative;
}
.Design__container__content .item__02::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 7.6rem;
  height: 10.8rem;
  background: url(../img/top/inu_hand.png) no-repeat center/contain;
}
@media screen and (max-width: 900px) {
  .Design__container__content .item__02::before {
    width: 3.9rem;
    height: 5.4rem;
    top: -4rem;
  }
}

@media screen and (max-width: 900px) {
  .Flow .Inner {
    padding: 0;
  }
}
.Flow__container {
  padding: 11rem 0 6rem 0;
}
@media screen and (max-width: 900px) {
  .Flow__container {
    padding: 6rem 0 3rem 0;
  }
}
.Flow__container .Title {
  margin-bottom: 3rem;
}
.Flow__container__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 105rem;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .Flow__container__content {
    overflow-x: scroll;
    width: 68rem;
  }
}
@media screen and (max-width: 900px) {
  .Flow__container__content__out {
    width: 100%;
    overflow-x: scroll;
    padding-bottom: 1rem;
  }
}
.Flow__container__content span {
  width: 1.8rem;
}
.Flow__container__content span img {
  width: 100%;
  margin-top: 9rem;
}
@media screen and (max-width: 900px) {
  .Flow__container__content span img {
    margin-top: 3.5rem;
  }
}
.Flow__container__content__item {
  width: 25%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 3rem;
}
.Flow__container__content__item__img {
  margin-bottom: 3rem;
}
@media screen and (max-width: 900px) {
  .Flow__container__content__item__img {
    width: 10rem;
    height: 10rem;
    margin-bottom: 1rem;
  }
}
.Flow__container__content__item__img img {
  width: 100%;
}
.Flow__container__content__item__ttl {
  color: #284077;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 900px) {
  .Flow__container__content__item__ttl {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}
.Flow__container__content__item__text {
  font-size: 1.6rem;
  color: #000;
  line-height: 3.2rem;
  width: 105%;
  display: block;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  .Flow__container__content__item__text {
    font-size: 1rem;
    line-height: 1.7rem;
  }
}

.Fv__container {
  position: relative;
  padding-bottom: 10rem;
}
@media screen and (max-width: 900px) {
  .Fv__container {
    padding-bottom: 5rem;
  }
}
.Fv__container__img {
  margin-bottom: 40rem;
  position: relative;
}
.Fv__container__img img {
  width: 100%;
  height: 60.4rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 900px) {
  .Fv__container__img img {
    height: 48.7rem;
    height: 45.7rem;
    border-radius: 1.5rem;
  }
}
@media screen and (max-width: 900px) {
  .Fv__container__img {
    margin-bottom: 10rem;
  }
}
.Fv__container__img::before {
  content: "";
  display: block;
  position: absolute;
  width: 110%;
  height: 58rem;
  bottom: -60%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../img/fv/fv_food.png) no-repeat center/contain;
}
@media screen and (max-width: 900px) {
  .Fv__container__img::before {
    width: 100%;
    left: 47%;
  }
}
.Fv__container__text {
  position: relative;
}
.Fv__container__text::before {
  content: "";
  display: block;
  position: absolute;
  top: 12rem;
  left: 6rem;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 7.3rem;
  height: 4rem;
  background: url(../img/fv/kumo_1.png) no-repeat center/contain;
}
@media screen and (max-width: 900px) {
  .Fv__container__text::before {
    width: 3.1rem;
    top: 18rem;
    left: 0;
  }
}
.Fv__container__text .inu {
  display: block;
  position: absolute;
  top: 85%;
  left: 15rem;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6.3rem;
  height: 6.3rem;
}
@media screen and (max-width: 900px) {
  .Fv__container__text .inu {
    width: 2.6rem;
    height: 2.8rem;
    left: 0;
    top: auto;
    bottom: 0;
  }
}
.Fv__container__text::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 15.5rem;
  height: 7rem;
  background: url(../img/fv/kumo.png) no-repeat center/contain;
}
@media screen and (max-width: 900px) {
  .Fv__container__text::after {
    width: 4.7rem;
    right: 0;
    top: 10.3rem;
  }
}
.Fv__container__text__title {
  max-width: 79.3rem;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 2rem;
  position: relative;
  margin-bottom: 3rem;
}
@media screen and (max-width: 900px) {
  .Fv__container__text__title {
    width: 100%;
  }
}
.Fv__container__text__title img {
  width: 100%;
}
.Fv__container__text__en {
  width: 31.9rem;
  height: 2.6rem;
  margin: 0 auto;
  margin-bottom: 5rem;
}
@media screen and (max-width: 900px) {
  .Fv__container__text__en {
    width: 19.3rem;
    margin-bottom: 2rem;
  }
}
.Fv__container__text__en img {
  width: 100%;
}
.Fv__container__text__ja {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 3.8rem;
  position: relative;
  color: #284077;
}
@media screen and (max-width: 900px) {
  .Fv__container__text__ja {
    font-size: 1.2rem;
    line-height: 3rem;
  }
}

.Instagram {
  position: relative;
}
.Instagram__container {
  padding: 11rem 0 8rem 0;
}
@media screen and (max-width: 900px) {
  .Instagram__container {
    padding: 6rem 0 4rem 0;
  }
}
.Instagram__container__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 100rem;
  margin: 0 auto;
  margin-bottom: 4rem;
}
.Instagram__container__content .item {
  width: 16.666666%;
  aspect-ratio: 1/1;
  display: block;
}
@media screen and (max-width: 900px) {
  .Instagram__container__content .item {
    width: 33.333%;
  }
}
.Instagram__container__content .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.Instagram__container__food__id {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 6rem;
  text-align: center;
  color: #284077;
}
@media screen and (max-width: 900px) {
  .Instagram__container__food__id {
    font-size: 1.3rem;
    margin: 3rem;
  }
}
.Instagram__container__food__btn {
  width: 21rem;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .Instagram__container__food__btn {
    width: 18rem;
  }
}
.Instagram__container__food__btn a img {
  width: 100%;
}

.Option__container__content {
  position: relative;
}
@media screen and (max-width: 900px) {
  .Option__container__content {
    height: 36.2rem;
  }
}
.Option__container__content img {
  width: 100%;
}
@media screen and (max-width: 900px) {
  .Option__container__content img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 15px;
  }
}
.Option__container__content__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 80%;
}
@media screen and (max-width: 900px) {
  .Option__container__content__inner {
    width: 100%;
  }
}
.Option__container__content__inner .Title {
  margin-bottom: 3rem;
}
.Option__container__content__inner .Title h2 {
  color: #fff;
}
.Option__container__content__inner .Title p {
  color: #fff;
  letter-spacing: 0.2rem;
}
.Option__container__content__inner__text {
  color: #fff;
  font-size: 1.6rem;
  line-height: 3.2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 6rem;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 900px) {
  .Option__container__content__inner__text {
    font-size: 1.2rem;
    line-height: 2.1rem;
    margin-bottom: 4rem;
  }
}

.Seat__container {
  padding: 0 0 12rem 0;
}
@media screen and (max-width: 900px) {
  .Seat__container {
    padding: 0 0 6rem 0;
  }
}
.Seat__container .Title {
  margin-bottom: 2rem;
  position: relative;
}
@media screen and (max-width: 900px) {
  .Seat__container .Title {
    text-align: left;
    margin-bottom: 1rem;
  }
}
.Seat__container .Title::before {
  content: "";
  display: block;
  position: absolute;
  top: -12rem;
  left: -2rem;
  width: 15.5rem;
  height: 7rem;
  background: url(../img/top/kumo.png) no-repeat center/contain;
  background: url(../img/fv/kumo.png) no-repeat center/contain;
}
@media screen and (max-width: 900px) {
  .Seat__container .Title::before {
    width: 6.2rem;
    height: 2.5rem;
    left: 1rem;
    top: -6rem;
  }
}
.Seat__container__head {
  margin-bottom: 8rem;
  position: relative;
}
@media screen and (max-width: 900px) {
  .Seat__container__head {
    margin-bottom: 11rem;
  }
}
.Seat__container__head p {
  font-weight: bold;
  line-height: 3.2rem;
  font-size: 1.6rem;
  color: #284077;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .Seat__container__head p {
    font-size: 1.2rem;
    line-height: 2.5rem;
    text-align: left;
  }
}
.Seat__container__head::before {
  content: "";
  display: block;
  position: absolute;
  top: -3rem;
  left: -3rem;
  width: 22.9rem;
  height: 20rem;
  background: url(../img/top/car.png) no-repeat center/contain;
}
@media screen and (max-width: 900px) {
  .Seat__container__head::before {
    width: 12.8rem;
    height: 8.8rem;
    top: auto;
    bottom: -10rem;
    left: 0;
  }
}
.Seat__container__head::after {
  content: "";
  display: block;
  position: absolute;
  top: 1rem;
  right: 2rem;
  width: 7.3rem;
  height: 7.3rem;
  background: url(../img/top/cyou.png) no-repeat center/contain;
}
@media screen and (max-width: 900px) {
  .Seat__container__head::after {
    width: 4.2rem;
    height: 3.8rem;
    top: auto;
    bottom: -6rem;
    right: 0;
  }
}
.Seat__container__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -3rem;
  margin-bottom: 10rem;
}
@media screen and (max-width: 900px) {
  .Seat__container__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
    margin-bottom: 0rem;
  }
}
.Seat__container__content__item {
  width: 50%;
  text-decoration: none;
  padding: 0 3rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  .Seat__container__content__item {
    width: 100%;
    margin-bottom: 3rem;
    padding: 0;
  }
}
.Seat__container__content__item:hover {
  opacity: 1;
}
.Seat__container__content__item:nth-child(odd) {
  margin-top: 4rem;
}
@media screen and (max-width: 900px) {
  .Seat__container__content__item:nth-child(odd) {
    margin-top: 0;
  }
}
.Seat__container__content__item__img {
  margin-bottom: 3rem;
  aspect-ratio: 523/272;
  width: 100%;
  border-radius: 3rem;
  overflow: hidden; /* 画像のオーバーフローを非表示に */
}
@media screen and (max-width: 900px) {
  .Seat__container__content__item__img {
    margin-bottom: 1rem;
  }
}
.Seat__container__content__item__img img {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s; /* アニメーションを設定 */
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.Seat__container__content__item__img img:hover {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s; /* アニメーションを設定 */
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1); /* 1.1倍に拡大 */
  opacity: 1;
}
.Seat__container__content__item__text {
  text-align: center;
}
.Seat__container__content__item__text .en {
  color: #284077;
  font-family: "Concert One", sans-serif;
  font-size: 4rem;
  line-height: 3rem;
  margin-bottom: 1rem;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 900px) {
  .Seat__container__content__item__text .en {
    font-size: 2.2rem;
    margin-bottom: 0;
  }
}
.Seat__container__content__item__text .ja {
  color: #284077;
  font-size: 1.8rem;
  line-height: 3.2rem;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  .Seat__container__content__item__text .ja {
    font-size: 1.3rem;
  }
}

.Page__basic__container {
  padding: 8rem 0 0 0;
}
.Page__basic__container__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: url(../img/top/cv_bg.jpg) repeat center/contain;
  border-radius: 3rem;
  padding: 4rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 900px) {
  .Page__basic__container__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2rem;
    margin-bottom: 3rem;
    height: 39.3rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    height: 39.9rem;
    height: 44rem;
  }
}
.Page__basic__container__item:last-of-type {
  margin-bottom: 0;
}
.Page__basic__container__item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 900px) {
  .Page__basic__container__item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.Page__basic__container__item.item_01 .Page__basic__container__item__img {
  position: relative;
}
.Page__basic__container__item.item_01 .Page__basic__container__item__img::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 2rem;
  right: 7rem;
  width: 11.2rem;
  height: 11.2rem;
  background: url(../img/basic/basic_01_acc.png) no-repeat center/contain;
}
@media screen and (max-width: 900px) {
  .Page__basic__container__item.item_01 .Page__basic__container__item__img::after {
    width: 4rem;
    height: 4rem;
    right: 2rem;
    bottom: 2rem;
  }
}
.Page__basic__container__item.item_01 .Page__basic__container__item__img p {
  position: absolute;
  bottom: 2.5rem;
  right: 20rem;
  color: #fff;
  font-weight: bold;
  line-height: 2.5rem;
  font-size: 1.2rem;
}
@media screen and (max-width: 900px) {
  .Page__basic__container__item.item_01 .Page__basic__container__item__img p {
    font-size: 0.8rem;
    line-height: 1.2rem;
    right: 7rem;
    bottom: 2rem;
  }
}
.Page__basic__container__item__img {
  width: 68%;
  overflow: hidden;
  border-radius: 2rem;
}
@media screen and (max-width: 900px) {
  .Page__basic__container__item__img {
    width: 100%;
    overflow: auto;
    overflow: visible;
  }
}
.Page__basic__container__item__img img, .Page__basic__container__item__img video {
  width: 100%;
  border-radius: 2rem;
}
.Page__basic__container__item:nth-child(odd) .Page__basic__container__item__img {
  padding-right: 5%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  .Page__basic__container__item:nth-child(odd) .Page__basic__container__item__img {
    padding-right: 0;
  }
}
.Page__basic__container__item:nth-child(even) .Page__basic__container__item__img {
  padding-left: 5%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  .Page__basic__container__item:nth-child(even) .Page__basic__container__item__img {
    padding-left: 0;
  }
}
.Page__basic__container__item__text {
  width: 32%;
  margin-top: 3rem;
}
@media screen and (max-width: 900px) {
  .Page__basic__container__item__text {
    width: 100%;
  }
}
.Page__basic__container__item__text__ttl {
  font-size: 3rem;
  line-height: 4rem;
  font-weight: bold;
  color: #284077;
  margin-bottom: 4rem;
}
@media screen and (max-width: 900px) {
  .Page__basic__container__item__text__ttl {
    font-size: 1.6rem;
    line-height: 2rem;
    margin-bottom: 2rem;
  }
}
.Page__basic__container__item__text__dis {
  font-size: 1.6rem;
  line-height: 3.2rem;
  font-weight: bold;
  margin-bottom: 3rem;
}
@media screen and (max-width: 900px) {
  .Page__basic__container__item__text__dis {
    font-size: 1.3rem;
    margin-bottom: 0;
    line-height: 2.5rem;
  }
}
.Page__basic__container__item__text__acc {
  font-size: 1.3rem;
  line-height: 3.2rem;
}
@media screen and (max-width: 900px) {
  .Page__basic__container__item__text__acc {
    line-height: 2rem;
  }
}

html {
  scroll-behavior: smooth;
}

.Page__option__container {
  margin: 0 -2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: -10rem;
}
@media screen and (max-width: 900px) {
  .Page__option__container {
    margin: 0 -1rem;
    margin-bottom: -8rem;
  }
}
.Page__option__container__item {
  width: 25%;
  padding: 0 2.4rem;
  margin-bottom: 5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .Page__option__container__item {
    width: 50%;
    padding: 0 1rem;
  }
}
@media screen and (max-width: 900px) {
  .Page__option__container__item:last-of-type {
    margin-bottom: 0;
  }
}
.Page__option__container__item:last-of-type {
  margin-bottom: 0;
}
.Page__option__container__item__head__img {
  margin-bottom: 2rem;
}
@media screen and (max-width: 900px) {
  .Page__option__container__item__head__img {
    margin-bottom: 1rem;
  }
}
.Page__option__container__item__head__img img {
  width: 100%;
}
.Page__option__container__item__head__text {
  margin-bottom: 2rem;
}
.Page__option__container__item__head__text__sub {
  font-size: 1.4rem;
  line-height: 2.8rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1rem;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  .Page__option__container__item__head__text__sub {
    font-size: 1.5rem;
    margin-bottom: 0;
  }
}
.Page__option__container__item__head__text__price {
  color: #284077;
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 900px) {
  .Page__option__container__item__head__text__price {
    font-size: 1.5rem;
    margin-bottom: 0rem;
    padding: 1.5rem 0;
  }
}
.Page__option__container__item__head__text__price span {
  font-size: 1.3rem;
  color: #284077;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  .Page__option__container__item__head__text__price span {
    font-size: 1rem;
  }
}
.Page__option__container__item__head__text__dis {
  font-size: 1.1rem;
  line-height: 2.1rem;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  .Page__option__container__item__head__text__dis {
    font-size: 1.2rem;
    line-height: 2.5rem;
  }
}
/* styles.css */
/* styles.css */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 100;
}

.modal-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1000;
  width: 80%;
}
@media screen and (max-width: 900px) {
  .modal-content {
    width: 100%;
    padding: 1rem;
  }
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
}

.modal-content__content video {
  width: 100%;
  height: 100%;
  padding-top: 2rem;
}
@media screen and (max-width: 900px) {
  .modal-content__content video {
    padding-top: 4rem;
  }
}

.Page__price__container {
  margin-top: -6rem;
}
@media screen and (max-width: 900px) {
  .Page__price__container {
    margin-bottom: -2rem;
  }
}
.Page__price__container__img {
  max-width: 68.6rem;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 7rem;
}
@media screen and (max-width: 900px) {
  .Page__price__container__img {
    margin-bottom: 0;
    margin-top: 3rem;
  }
}
.Page__price__container__img img {
  width: 100%;
  mix-blend-mode: multiply;
}
.Page__price__container__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 6rem;
}
@media screen and (max-width: 900px) {
  .Page__price__container__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 3rem;
  }
}
.Page__price__container__flex__item {
  width: 45%;
}
@media screen and (max-width: 900px) {
  .Page__price__container__flex__item {
    width: 100%;
  }
}
.Page__price__container__flex__item__title {
  color: #284077;
  font-size: 3rem;
  font-weight: bold;
  line-height: 4.2rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 900px) {
  .Page__price__container__flex__item__title {
    font-size: 2.7rem;
    line-height: 4.7rem;
    margin-bottom: 0rem;
  }
}
.Page__price__container__flex__item__text01 {
  font-size: 1.6rem;
  line-height: 3.2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
@media screen and (max-width: 900px) {
  .Page__price__container__flex__item__text01 {
    font-size: 1.2rem;
    line-height: 2.5rem;
    margin-bottom: 0rem;
  }
}
.Page__price__container__flex__item__text02 {
  font-size: 1.4rem;
  line-height: 2.8rem;
  margin-bottom: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  .Page__price__container__flex__item__text02 {
    font-size: 1rem;
    line-height: 2.5rem;
    margin-bottom: 1rem;
  }
}
.Page__price__container__flex__item__con {
  margin-bottom: 2rem;
}
.Page__price__container__flex__item__con__title {
  font-size: 1.5rem;
  font-family: "Concert One", sans-serif;
  color: #284077;
  margin-bottom: 1rem;
}
@media screen and (max-width: 900px) {
  .Page__price__container__flex__item__con__title {
    font-size: 1.2rem;
    margin-bottom: 0;
  }
}
.Page__price__container__flex__item__con__img img {
  width: 100%;
}
.Page__price__container__flex__item__text03 {
  font-size: 1.2rem;
  line-height: 2.8rem;
  margin-bottom: 2rem;
}
.Page__price__container__flex__item__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -2%;
  margin-bottom: 2rem;
}
.Page__price__container__flex__item__content__item {
  font-weight: bold;
  font-size: 1.4rem;
  margin: 0 2%;
  width: 40%;
  line-height: 4rem;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 900px) {
  .Page__price__container__flex__item__content__item {
    font-size: 1.2rem;
    line-height: 4rem;
    width: 46%;
  }
}
.Page__price__container__flex__item__price {
  font-weight: bold;
  font-size: 2rem;
  line-height: 3.2rem;
  color: #284077;
}
@media screen and (max-width: 900px) {
  .Page__price__container__flex__item__price {
    font-size: 1.5rem;
  }
}
.Page__price__container__flex__item__price span {
  color: #284077;
  font-weight: bold;
  font-size: 1.3rem;
}
@media screen and (max-width: 900px) {
  .Page__price__container__flex__item__price span {
    font-size: 1rem;
  }
}
.Page__price__container__flex__purasu {
  width: 10%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* 水平方向に中央に配置 */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 垂直方向に中央に配置 */
}
.Page__price__container__flex__purasu img {
  width: 5.2rem;
  height: 5.2rem;
}
.Page__price__container .Btn {
  margin-bottom: 7rem;
}
@media screen and (max-width: 900px) {
  .Page__price__container .Btn {
    margin-bottom: 3rem;
  }
}
.Page__price__container__text {
  font-size: 1.2rem;
  line-height: 2.8rem;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  .Page__price__container__text {
    font-size: 1rem;
    line-height: 2.5rem;
  }
}

.Page__seat__container {
  padding: 8rem 0 0 0;
}
@media screen and (max-width: 900px) {
  .Page__seat__container {
    padding: 4rem 0 0rem 0;
  }
}
.Page__seat__container__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15rem;
  position: relative;
}
@media screen and (max-width: 900px) {
  .Page__seat__container__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding: 0 4rem;
    margin-bottom: 3rem;
    padding: 0 2rem;
  }
}
.Page__seat__container__item--01 {
  height: 55rem;
}
@media screen and (max-width: 900px) {
  .Page__seat__container__item--01 {
    height: auto;
    margin-bottom: 0;
    margin-bottom: 8rem;
  }
}
.Page__seat__container__item--02 {
  height: 56rem;
  margin-bottom: 13rem;
}
@media screen and (max-width: 900px) {
  .Page__seat__container__item--02 {
    height: auto;
    margin-bottom: 0;
    margin-bottom: 13rem;
  }
}
.Page__seat__container__item--03 {
  height: 55rem;
}
@media screen and (max-width: 900px) {
  .Page__seat__container__item--03 {
    height: auto;
    margin-bottom: 4rem;
  }
}
.Page__seat__container__item--03 .Page__seat__container__item__left__img {
  margin-bottom: 2rem !important;
}
.Page__seat__container__item--04 {
  height: 56rem;
}
@media screen and (max-width: 900px) {
  .Page__seat__container__item--04 {
    height: auto;
    margin-bottom: 8rem;
  }
}
.Page__seat__container__item:last-of-type {
  margin-bottom: 8rem;
}
.Page__seat__container__item::before {
  content: "";
  display: block;
  position: absolute;
  top: 5rem;
  right: 5rem;
  max-width: 86.5rem;
  width: 100%;
  height: 55.6rem;
  background-color: #EEEDEE;
  background: url(../img/top/cv_bg.jpg) repeat center/contain;
  z-index: -1;
  border-radius: 3rem;
}
@media screen and (max-width: 900px) {
  .Page__seat__container__item::before {
    height: auto;
    height: 60.5rem;
    width: 100%;
    top: 1.5rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.Page__seat__container__item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 900px) {
  .Page__seat__container__item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.Page__seat__container__item:nth-child(even)::before {
  left: 5rem;
}
@media screen and (max-width: 900px) {
  .Page__seat__container__item:nth-child(even)::before {
    left: 50%;
  }
}
.Page__seat__container__item__left {
  width: 56%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .Page__seat__container__item__left {
    width: 100%;
  }
}
.Page__seat__container__item__left__img {
  margin-bottom: 5rem;
}
@media screen and (max-width: 900px) {
  .Page__seat__container__item__left__img {
    margin-bottom: 2rem;
    width: 70%;
  }
}
.Page__seat__container__item__left__img img, .Page__seat__container__item__left__img video {
  width: 100%;
  border-radius: 3rem;
}
.Page__seat__container__item__left__text {
  margin-bottom: 3rem;
}
.Page__seat__container__item__left__text__dis {
  font-size: 2rem;
  line-height: 4.1rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media screen and (max-width: 900px) {
  .Page__seat__container__item__left__text__dis {
    font-size: 1.3rem;
    line-height: 2.1rem;
  }
}
.Page__seat__container__item__left__text__acc {
  font-size: 1.3rem;
  line-height: 2.8rem;
  padding-left: 1rem;
}
@media screen and (max-width: 900px) {
  .Page__seat__container__item__left__text__acc {
    font-size: 1.2rem;
    line-height: 2rem;
  }
}
.Page__seat__container__item:nth-child(odd) .Page__seat__container__item__right {
  padding-left: 5%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  .Page__seat__container__item:nth-child(odd) .Page__seat__container__item__right {
    padding-left: 0;
  }
}
.Page__seat__container__item:nth-child(odd) .Page__seat__container__item__left__text {
  padding-left: 5rem;
}
@media screen and (max-width: 900px) {
  .Page__seat__container__item:nth-child(odd) .Page__seat__container__item__left__text {
    padding-left: 0;
  }
}
.Page__seat__container__item:nth-child(even) .Page__seat__container__item__right {
  padding-right: 5%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  .Page__seat__container__item:nth-child(even) .Page__seat__container__item__right {
    padding-right: 0;
  }
}
.Page__seat__container__item__right {
  width: 44%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .Page__seat__container__item__right {
    width: 100%;
  }
}
@media screen and (max-width: 900px) {
  .Page__seat__container__item__right__ttl {
    margin-bottom: 1rem;
  }
}
.Page__seat__container__item__right__ttl__number {
  font-family: "Concert One", sans-serif;
  font-size: 11rem;
  line-height: 8rem;
  color: #284077;
  margin-bottom: 2rem;
}
@media screen and (max-width: 900px) {
  .Page__seat__container__item__right__ttl__number {
    font-size: 4.4rem;
    line-height: 3.2rem;
    margin-bottom: 1rem;
  }
}
.Page__seat__container__item__right__ttl__title {
  font-size: 7rem;
  line-height: 7rem;
  font-family: "Concert One", sans-serif;
  color: #284077;
  margin-bottom: 2rem;
  letter-spacing: 0.2rem;
  letter-spacing: 0.4rem;
}
@media screen and (max-width: 900px) {
  .Page__seat__container__item__right__ttl__title {
    font-size: 3rem;
    line-height: 2.8rem;
    margin-bottom: 0rem;
  }
}
.Page__seat__container__item__right__ttl__dis {
  font-weight: bold;
  font-size: 1.8rem;
  color: #284077;
  line-height: 3.2rem;
}
@media screen and (max-width: 900px) {
  .Page__seat__container__item__right__ttl__dis {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 900px) {
  .Page__seat__container__item__right__img {
    margin-bottom: 2rem;
  }
}
.Page__seat__container__item__right__img img, .Page__seat__container__item__right__img video {
  width: 100%;
  border-radius: 3rem;
}

.Cv {
  background: url(../img/top/cv_bg.jpg) repeat center/contain;
}
.Cv__container {
  padding: 8rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
@media screen and (max-width: 900px) {
  .Cv__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2.5rem 0;
  }
}
.Cv__container__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 4rem;
}
@media screen and (max-width: 900px) {
  .Cv__container__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
  }
}
.Cv__container__content:first-of-type {
  border-right: 1px solid #284077;
}
@media screen and (max-width: 900px) {
  .Cv__container__content:first-of-type {
    border-right: 0;
    margin-bottom: 1rem;
  }
}
.Cv__container__content:last-of-type {
  padding-left: 1rem;
}
@media screen and (max-width: 900px) {
  .Cv__container__content:last-of-type {
    padding-left: 0;
  }
}
.Cv__container__content__text {
  font-size: 1.8rem;
  font-weight: bold;
  color: #284077;
  line-height: 12.3rem;
  margin-right: 2rem;
}
@media screen and (max-width: 900px) {
  .Cv__container__content__text {
    font-size: 1.3rem;
    line-height: 4.3rem;
    margin-bottom: 1rem;
  }
}
.Cv__container__content__circle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 900px) {
  .Cv__container__content__circle {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.Cv__container__content__circle__item {
  border-radius: 50%;
  width: 12.3rem;
  height: 12.3rem;
  margin: 0 1rem;
}
@media screen and (max-width: 900px) {
  .Cv__container__content__circle__item {
    width: 9.8rem;
    height: 9.8rem;
    margin: 0;
  }
}
.Cv__container__content__circle__item img {
  width: 100%;
}

.Footer {
  background: #284077;
}
.Footer__container {
  padding: 8rem 0 6rem 0;
  padding: 6rem 0 3rem 0;
}
.Footer__container__logo {
  width: 18.8rem;
  display: block;
  margin: 0 auto;
  margin-bottom: 5rem;
}
@media screen and (max-width: 900px) {
  .Footer__container__logo {
    width: 14.2rem;
    margin-bottom: 2rem;
  }
}
.Footer__container__logo img {
  width: 100%;
}
.Footer__container__text {
  width: 41.4rem;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 900px) {
  .Footer__container__text {
    width: 30rem;
    margin-bottom: 5rem;
  }
}
.Footer__container__text img {
  width: 100%;
}
.Footer__container__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 80rem;
  margin: 4rem auto;
}
.Footer__container__flex__item {
  width: 16.66666666%;
  padding: 0 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.Footer__container__flex__item img {
  width: 100%;
}
.Footer__container__copy {
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  letter-spacing: 0.1rem;
  line-height: 2.1rem;
}

.Header {
  padding-top: 2rem;
  margin-bottom: 5rem;
}
.Header__container {
  max-width: 110rem;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.Header__container__head {
  margin-bottom: 3rem;
}
.Header__container__head img {
  width: 26.7rem;
  margin: 0 auto;
  display: block;
}
.Header__container__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.Header__container__menu span {
  color: #284077;
  font-size: 2.5rem;
  font-weight: bold;
}
.Header__container__menu__li__text {
  width: 19%;
  display: block;
  text-align: center;
}
.Header__container__menu__li__logo {
  background-color: #fff;
  position: relative;
  width: 15.7rem;
  width: 25%;
}
.Header__container__menu__li__logo a {
  position: absolute;
  top: 0;
  margin-top: -2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.Header__container__menu__li__logo a img {
  display: block;
  width: 15.7rem;
  margin: 0 auto;
}
.Header__container__menu__li__instagram {
  margin-left: 3rem;
  margin-right: -3rem;
  position: absolute;
  right: -6rem;
}
.Header__container__menu__li__instagram a img {
  width: 4.4rem;
  height: 4.4rem;
  display: block;
}
.Header__container__menu__li a {
  color: #284077;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
}

@media screen and (max-width: 900px) {
  .Header {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 900px) {
  .Header__container {
    padding: 0 2rem;
  }
}
@media screen and (max-width: 900px) {
  .Header__container__head {
    max-width: 23rem;
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 900px) {
  .Header__container__head img {
    width: 100%;
  }
}
@media screen and (max-width: 900px) {
  .Header__container__food {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-right: 3.4rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 900px) {
  .Header__container__food .Instagram {
    width: 3.4rem;
    height: 3.4rem;
    display: block;
  }
}
.Header__container__food .Instagram img {
  width: 100%;
}
.Header__container__food .logo {
  width: 8.4rem;
  margin: 0 auto;
  display: block;
}
.Header__container__food .logo img {
  width: 100%;
}