@charset "UTF-8";
body {
  color: #202020;
  background-color: #f6f4ee;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

/*  PCとSPの表示非表示の切り替え */
/*(md)px以上で表示*/
.pc-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-only {
    display: block;
  }
}

/*モバイルのみ表示*/
@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

/* リキッドレイアウト対応のための設定 */
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.4814814815vw;
  }
}
@media (min-width: 1080px) {
  html {
    font-size: 16px;
  }
}

/*画像の縦横比設定*/
img {
  width: 100%;
  height: auto;
  display: block;
}

/* aタグのホバーの設定*/
a:hover {
  opacity: 0.8;
}

/*インナー幅用の基本CSS*/
.inner {
  width: 100%;
  max-width: 37.5rem;
  padding-right: 16px;
  padding-left: 16px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1130px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

/* ================================================
   cssここから書く
================================================ */
/*共通のセクションタイトル*/
.section__title {
  color: #242e43;
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3333333333;
  text-transform: capitalize;
  border-bottom: 3px solid #242e43;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .section__title {
    font-size: 2.5rem;
    line-height: 48/40;
  }
}

/*共通のセクションタイトルの色違い*/
.section__title.section__title--white {
  color: #eaeaea;
  border-bottom: 3px solid #eaeaea;
}

/*共通のボタンパーツ*/
.btn {
  font-family: "Montserrat", sans-serif;
  text-transform: capitalize;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  background-color: #ecc96b;
  padding: 1.25rem 0;
  width: 100%;
  max-width: 15rem;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #202020;
  /*hoverに引くとへんな感じになる。*/
  border: 2px solid #ecc96b;
  /*ここでは、余白をつけない。*/
}

.btn__icon {
  width: 0.625rem;
  margin-left: 0.25rem;
}

.btn,
.btn__icon {
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
}

.btn:hover {
  opacity: 1;
  color: #ecc96b;
  background-color: #fff;
}

/*ホバーしたときに、アイコンの色を変える。*/
.btn:hover .btn__icon {
  fill: #ecc96b;
}

/*headerのCSSの記述*/
.header {
  background-color: transparent;
  height: 10rem;
  padding-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .header {
    height: 5.625rem;
    padding-top: 0rem;
  }
}

@media screen and (min-width: 768px) {
  .header__inner,
  .header__nav,
  .header__inner nav,
  .header__nav-item,
  .header__nav-item a {
    height: inherit;
  }
}

.header__inner {
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .header__inner {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.header__logo {
  width: 12.9375rem;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .header__logo {
    width: 14.8125rem;
  }
}

.header__logo a {
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2.5rem;
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .header__nav {
    margin-top: 0;
  }
}

.header__nav-item a {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-transform: capitalize;
  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: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
}

/*conceptのCSS*/
.concept {
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .concept {
    margin-top: 7.5rem;
  }
}

.concept__container {
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .concept__container {
    margin-top: 5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 4.375rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.concept__title {
  margin-inline: auto;
}

.concept__image {
  aspect-ratio: 358/251;
  max-width: 100%;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 768px) {
  .concept__image {
    aspect-ratio: 540/362;
    max-width: 33.75rem;
  }
}

.concept__image img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .concept__content {
    max-width: 25rem;
    margin-inline: auto;
  }
}

.concept__content-title {
  color: #242e43;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .concept__content-title {
    line-height: 0.1rem;
    text-align: left;
  }
}

.concept__content-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 1.5rem;
}

/*menuのCSS*/
.menu {
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .menu {
    margin-top: 7.5rem;
  }
}

.menu__title {
  margin-inline: auto;
}

.menu__items {
  margin-top: 3rem;
  display: -ms-grid;
  display: grid;
  row-gap: 2.25rem;
  width: 83.7988826816%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .menu__items {
    margin-top: 2.5rem;
    -ms-grid-columns: 1fr 3.75rem 1fr 3.75rem 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    -webkit-column-gap: 3.75rem;
    -moz-column-gap: 3.75rem;
    column-gap: 3.75rem;
    width: 100%;
  }
}

.menu__image {
  aspect-ratio: 1/1;
}

.menu__image img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

.menu__contet {
  text-align: center;
}

.menu__content-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 1.5rem;
  text-transform: capitalize;
}
@media screen and (min-width: 768px) {
  .menu__content-title {
    font-size: 1.5rem;
    line-height: 1;
  }
}

.menu__content-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .menu__content-text {
    line-height: 1.375;
    margin-top: 1.5rem;
    text-align: left;
  }
}

.menu__btn {
  margin-inline: auto;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .menu__btn {
    margin-top: 5rem;
  }
}

/*コンタクトセクションのCSS記述*/
.contact {
  background-image: url(../images/contactSP@2x.jpg);
  background-size: cover;
  background-position: center;
  margin-top: 5rem;
  padding: 2.5rem 0;
}
@media screen and (min-width: 768px) {
  .contact {
    background-image: url(../images/contact@2x.jpg);
    margin-top: 7.5rem;
    padding: 5rem 0;
  }
}

.contact__title {
  margin-inline: auto;
}

.contact__text {
  color: #eaeaea;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 1.5rem;
}

.contact__btn {
  margin-inline: auto;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .contact__btn {
    margin-top: 5rem;
  }
}

/*フッターのCMS記述*/
.footer {
  background-color: #242e43;
  padding: 2.5rem 0;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 5.375rem 0 5rem;
  }
}

.footer__logo {
  max-width: 12.9375rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    width: 14.8125rem;
  }
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .footer__nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 2.5rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.footer__nav-item a,
.footer__copy {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.footer__nav-item a {
  font-size: 1rem;
  line-height: 1.5;
  text-transform: capitalize;
}
@media screen and (min-width: 768px) {
  .footer__nav-item a {
    line-height: 1;
  }
}

.footer__copy {
  font-size: 0.75rem;
  line-height: 1.3333333333;
  text-align: center;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .footer__copy {
    font-size: 0.875rem;
    line-height: 1;
    margin-top: 3rem;
  }
}

.fv {
  position: relative;
}

/* スマホ用動画を非表示に設定 */
.fv-video-sp {
  display: none;
}

/* タブレット用動画をデフォルトで表示 */
.fv-video-tablet {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* すべて非表示に設定 */
.fv-video-pc {
  display: none;
}

@media screen and (max-width: 720px) {
  .fv-video-tablet {
    height: 60vh;
  }
}

@media screen and (min-width: 1200px) {
  .fv-video-pc {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .fv-video-tablet {
    display: none;
  }
}

.fv__catch-container {
  position: absolute;
  top: 50%;
  right: 10%;
  width: calc(507 / 1440 * 100%);
}

.fv__catch-text {
  width: calc(280 / 507 * 100%);
  margin-inline: auto;
  margin-top: 1.5rem;
}
