@charset "UTF-8";
/* box-sizing: border-box;を設定 */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* フォントサイズの拡大を防ぐ */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
      text-size-adjust: none;
}

/* デフォルトのマージンを削除、作成するCSSの制御を改善するため */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin: 0;
}

/* リストのスタイルを削除、これはデフォルトのスタイルが削除されることを示唆します */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* bodyのデフォルトを設定 */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* 見出しやインタラクティブ要素のline-heightを設定 */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* 見出しのテキスト折り返しをbalanceに設定 */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

/* classを持たないa要素はデフォルトのスタイルを継承 */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

/* 画像の扱いを簡単にする */
img,
picture {
  max-width: 100%;
  display: block;
}

/* inputやbuttonなどのfontは継承 */
input, button,
textarea, select {
  font: inherit;
}

/* rows属性のないtextareasが小さくならないようにする */
textarea:not([rows]) {
  min-height: 10em;
}

/* アンカーされている要素には余分なスクロールマージンが必要 */
:target {
  scroll-margin-block: 5ex;
}

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

/*
---------------------------------*/
body {
  color: #000;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.7;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -ms-font-feature-settings: "normal";
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
}
@media only screen and (max-width:1100px) {
  body {
    font-size: 15px;
  }
}
@media only screen and (max-width:767.98px) {
  body {
    font-size: 14px;
  }
}

a {
  color: #000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover, a:focus {
  text-decoration: none;
  color: #000;
  opacity: 0.8;
}

/*
---------------------------------*/
.block-pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width:767.98px) {
  .block-pc {
    display: none;
  }
}

.block-sp {
  display: none;
}
@media only screen and (max-width:767.98px) {
  .block-sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

/*
---------------------------------*/
.header {
  width: 100%;
  height: 70px;
  padding: 0 50px;
  position: absolute;
  top: 0;
  left: 0;
  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 ease;
  transition: all 0.3s ease;
  z-index: 10;
}
.header.is-scrolled {
  top: -100px;
}
.header.is-scrolled .header-nav__list a {
  color: #000;
}
.header.is-scrolled.is-active {
  position: fixed;
  top: 0;
  background: #fff;
  -webkit-box-shadow: 0 3px 10px rgba(50, 49, 46, 0.1);
          box-shadow: 0 3px 10px rgba(50, 49, 46, 0.1);
}
.header.is-scrolled.is-active .header-logo {
  opacity: 1;
}
.header.is-scrolled.is-active .header-logo a {
  pointer-events: inherit;
}
@media only screen and (max-width: 1100px) {
  .header {
    height: 50px;
    padding: 0 20px;
  }
  .header.is-scrolled .header-nav__btn:after, .header.is-scrolled .header-nav__btn::before {
    background: #000;
  }
}

.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header-logo {
  position: relative;
  opacity: 0;
}
.header-logo a {
  pointer-events: none;
}
@media only screen and (max-width: 1100px) {
  .header-logo {
    width: 180px;
  }
}

@media only screen and (max-width: 1100px) {
  .header-nav {
    background: #fff;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: -100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .header-nav.is-active {
    right: 0;
    z-index: 90;
  }
}
.header-nav__btn {
  display: none;
}
@media only screen and (max-width: 1100px) {
  .header-nav__btn {
    display: block;
    width: 40px;
    height: 40px;
    position: relative;
    border: none;
    background: none;
    border-radius: 0;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
}
@media only screen and (max-width: 1100px) and (max-width:767.98px) {
  .header-nav__btn {
    width: 30px;
    height: 30px;
  }
}
@media only screen and (max-width: 1100px) {
  .header-nav__btn:after, .header-nav__btn::before {
    content: "";
    width: 100%;
    height: 1px;
    left: 0;
    position: absolute;
    background: #fff;
  }
  .header-nav__btn::after {
    top: 11px;
  }
}
@media only screen and (max-width: 1100px) and (max-width:767.98px) {
  .header-nav__btn::after {
    top: 10px;
  }
}
@media only screen and (max-width: 1100px) {
  .header-nav__btn::before {
    top: 26px;
  }
}
@media only screen and (max-width: 1100px) and (max-width:767.98px) {
  .header-nav__btn::before {
    top: 20px;
  }
}
@media only screen and (max-width: 1100px) {
  .header-nav__btn.is-active {
    left: 0;
    opacity: 1;
    z-index: 100;
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  .header-nav__btn.is-active::after {
    top: 15px;
    -webkit-transform: translateY(6px) rotate(-45deg);
            transform: translateY(6px) rotate(-45deg);
  }
}
@media only screen and (max-width: 1100px) and (max-width:767.98px) {
  .header-nav__btn.is-active::after {
    top: 9px;
  }
}
@media only screen and (max-width: 1100px) {
  .header-nav__btn.is-active::before {
    top: 27px;
    -webkit-transform: translateY(-6px) rotate(45deg);
            transform: translateY(-6px) rotate(45deg);
  }
}
@media only screen and (max-width: 1100px) and (max-width:767.98px) {
  .header-nav__btn.is-active::before {
    top: 21px;
  }
}
@media only screen and (max-width: 1100px) {
  .header-nav__btn.is-active:after, .header-nav__btn.is-active::before {
    background: #000;
  }
}
.header-nav__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 30px;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
@media only screen and (max-width: 1100px) {
  .header-nav__item {
    padding-top: 130px;
    -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-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
  }
}
@media only screen and (max-width: 1100px) {
  .header-nav__list {
    width: 100%;
  }
}
.header-nav__list a {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
}
@media only screen and (max-width: 1100px) {
  .header-nav__list a {
    width: 100%;
    padding: 12px 30px;
    border-bottom: 1px solid #000;
    color: #000;
    text-align: center;
  }
}
.header-nav__logo {
  display: none;
}
@media only screen and (max-width: 1100px) {
  .header-nav__logo {
    display: block;
    position: absolute;
    top: 16px;
    left: 20px;
    width: 180px;
    z-index: 100;
  }
}

/*
---------------------------------*/
.footer-info {
  width: 100%;
  padding: 80px 0 90px;
  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-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  background: #f7f7f7;
}
@media only screen and (max-width:767.98px) {
  .footer-info {
    padding: 50px 0;
    gap: 0;
  }
}
.footer-info__ttl {
  font-size: 13px;
  line-height: 34px;
  font-weight: normal;
}
@media only screen and (max-width:767.98px) {
  .footer-info__ttl {
    font-size: 12px;
    line-height: 20px;
  }
}
.footer-info__txt {
  font-size: 15px;
  line-height: 34px;
}
@media only screen and (max-width:767.98px) {
  .footer-info__txt {
    font-size: 12px;
    line-height: 20px;
  }
}

.footer-end {
  width: 100%;
  padding: 40px 20px;
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 30px;
  background: #000;
}
@media only screen and (max-width:767.98px) {
  .footer-end {
    gap: 110px;
    padding: 50px 20px 40px;
  }
}
.footer-end__inner {
  width: 100%;
  max-width: 1130px;
  margin: auto;
  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;
}
@media only screen and (max-width:767.98px) {
  .footer-end__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 30px;
  }
  .footer-end__inner img {
    max-width: 160px;
  }
}
.footer-end__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.footer-end__link a {
  display: block;
  margin: 0 10px;
  font-size: 12px;
  color: #fff;
  text-decoration: none;
}
@media only screen and (max-width:767.98px) {
  .footer-end__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .footer-end__link a {
    margin: 0;
    font-size: 14px;
  }
}
.footer-end__copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  max-width: 1130px;
  margin: auto;
  font-size: 10px;
  color: #fff;
}
@media only screen and (max-width:767.98px) {
  .footer-end__copy {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

/*
---------------------------------*/
.main-mv {
  position: relative;
}
.main-mv__ttl {
  position: absolute;
  top: 50%;
  left: 28%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media only screen and (max-width:1100px) {
  .main-mv__ttl {
    width: 35vw;
  }
}
@media only screen and (max-width:767.98px) {
  .main-mv__ttl {
    top: 45%;
    left: 31%;
    width: 50vw;
  }
}
.main-mv__img {
  width: 100%;
}
.main-mv__img img {
  width: 100%;
  max-width: inherit;
}

.main-about {
  padding: 190px 0 200px;
  background: #fcfcfc;
}
@media only screen and (max-width:1100px) {
  .main-about {
    padding: 80px 15px 120px;
  }
}
@media only screen and (max-width:767.98px) {
  .main-about {
    padding: 50px 15px 95px;
  }
}
.main-about__container {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width:767.98px) {
  .main-about__container {
    max-width: 500px;
    margin: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
.main-about__txtarea {
  width: 430px;
  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;
  gap: 100px;
  padding-top: 48px;
}
@media only screen and (max-width:1100px) {
  .main-about__txtarea {
    width: 50%;
    padding-top: 20px;
  }
}
@media only screen and (max-width:767.98px) {
  .main-about__txtarea {
    width: 100%;
    gap: 75px;
  }
}
.main-about__ttl {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 80px;
  font-size: 28px;
  position: relative;
}
.main-about__ttl::after {
  content: "";
  position: absolute;
  bottom: -45px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: #000;
}
@media only screen and (max-width:1100px) {
  .main-about__ttl {
    gap: 55px;
    font-size: 24px;
    text-align: center;
  }
}
@media only screen and (max-width:767.98px) {
  .main-about__ttl {
    gap: 30px;
    font-size: 21px;
  }
  .main-about__ttl img {
    max-width: 100px;
  }
  .main-about__ttl::after {
    bottom: -30px;
    width: 36px;
    height: 1px;
  }
}
.main-about__txt {
  font-size: 18px;
  line-height: 36px;
  text-align: center;
}
.main-about__txt em {
  font-style: normal;
  font-weight: bold;
}
@media only screen and (max-width:1100px) {
  .main-about__txt {
    font-size: 16px;
    line-height: 32px;
  }
}
@media only screen and (max-width:767.98px) {
  .main-about__txt {
    font-size: 15px;
    line-height: 28px;
  }
}
.main-about__imgarea {
  width: 490px;
}
@media only screen and (max-width:1100px) {
  .main-about__imgarea {
    width: 50%;
  }
}
@media only screen and (max-width:767.98px) {
  .main-about__imgarea {
    width: 88%;
    margin: auto;
  }
}
.main-about__img {
  margin-right: -50px;
}
.main-about__img img {
  width: 100%;
  max-width: inherit;
}
@media only screen and (max-width:1100px) {
  .main-about__img {
    margin-right: 0;
  }
}

.main-program {
  padding: 210px 0px 120px;
  background: #f6f3ed;
}
@media only screen and (max-width:1100px) {
  .main-program {
    padding: 120px 15px 60px;
  }
}
@media only screen and (max-width:767.98px) {
  .main-program {
    padding: 95px 15px 40px;
  }
}
.main-program__container {
  width: 100%;
  max-width: 1280px;
  margin: auto;
  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;
  gap: 50px;
}
@media only screen and (max-width:767.98px) {
  .main-program__container {
    max-width: 500px;
    margin: auto;
    gap: 25px;
  }
}
.main-program__ttl {
  font-size: 28px;
  text-align: center;
}
@media only screen and (max-width:767.98px) {
  .main-program__ttl {
    font-size: 21px;
  }
}
.main-program__nav {
  width: 100%;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
@media only screen and (max-width:767.98px) {
  .main-program__nav {
    width: calc(100% + 30px);
    margin-right: -15px;
    margin-left: -15px;
  }
}
.main-program__nav-list {
  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;
}
.main-program__nav-item {
  padding: 10px 26px;
}
.main-program__nav-item a {
  display: block;
  text-decoration: none;
  font-size: 18px;
  line-height: 40px;
}
@media only screen and (max-width:767.98px) {
  .main-program__nav-item a {
    font-size: 12px;
    line-height: 20px;
  }
}
.main-program__cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 45px 0 80px;
}
@media only screen and (max-width:1100px) {
  .main-program__cont {
    padding: 20px 0 60px;
  }
}
@media only screen and (max-width:767.98px) {
  .main-program__cont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.main-program__subttl {
  width: 100%;
  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;
  gap: 20px;
  padding-bottom: 100px;
  margin-bottom: 65px;
  font-size: 48px;
  line-height: 40px;
  position: relative;
}
.main-program__subttl::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 2px;
  height: 72px;
  background: #000;
}
@media only screen and (max-width:1100px) {
  .main-program__subttl {
    padding-bottom: 80px;
    font-size: 38px;
  }
  .main-program__subttl::after {
    height: 50px;
  }
  .main-program__subttl img {
    max-width: 100px;
  }
}
@media only screen and (max-width:767.98px) {
  .main-program__subttl {
    gap: 12px;
    padding-bottom: 50px;
    margin-bottom: 25px;
    font-size: 25px;
    line-height: 20px;
  }
  .main-program__subttl::after {
    height: 33px;
    width: 1px;
  }
  .main-program__subttl img {
    max-width: 60px;
  }
}
.main-program__imgarea.work-img01 {
  width: 540px;
}
@media only screen and (max-width:1100px) {
  .main-program__imgarea.work-img01 {
    width: 48%;
  }
}
@media only screen and (max-width:767.98px) {
  .main-program__imgarea.work-img01 {
    width: 78%;
    margin-top: 67px;
  }
}
.main-program__imgarea.work-img02 {
  width: 674px;
  margin-top: 270px;
}
@media only screen and (max-width:1280px) {
  .main-program__imgarea.work-img02 {
    width: 55%;
    margin-top: 24vw;
  }
}
@media only screen and (max-width:1100px) {
  .main-program__imgarea.work-img02 {
    margin-top: 60px;
    width: 74%;
  }
  .main-program__imgarea.work-img02.block-pc {
    display: none;
  }
  .main-program__imgarea.work-img02.block-sp {
    display: block;
  }
}
@media only screen and (max-width:767.98px) {
  .main-program__imgarea.work-img02 {
    margin-top: 30px;
    width: 83%;
  }
}
.main-program__imgarea.work-img03 {
  width: 464px;
  margin-left: 142px;
  margin-top: 72px;
}
@media only screen and (max-width:1280px) {
  .main-program__imgarea.work-img03 {
    width: 40%;
    margin-left: 5%;
  }
}
@media only screen and (max-width:1100px) {
  .main-program__imgarea.work-img03 {
    margin-left: 38%;
    width: 62%;
    margin-top: 45px;
  }
  .main-program__imgarea.work-img03.block-pc {
    display: none;
  }
  .main-program__imgarea.work-img03.block-sp {
    display: block;
  }
}
@media only screen and (max-width:767.98px) {
  .main-program__imgarea.work-img03 {
    margin-top: 35px;
  }
}
.main-program__imgarea.food-img01 {
  width: 511px;
}
@media only screen and (max-width:1100px) {
  .main-program__imgarea.food-img01 {
    width: 48%;
  }
}
@media only screen and (max-width:767.98px) {
  .main-program__imgarea.food-img01 {
    width: 60%;
    margin: 40px 0 0 40%;
  }
}
.main-program__imgarea.food-img02 {
  width: 556px;
  margin-top: -20px;
}
@media only screen and (max-width:1100px) {
  .main-program__imgarea.food-img02 {
    margin-top: 60px;
  }
}
@media only screen and (max-width:767.98px) {
  .main-program__imgarea.food-img02 {
    margin-top: 35px;
    width: 70%;
  }
}
.main-program__txtarea {
  width: calc(100% - 540px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  padding: 50px 80px 0;
}
@media only screen and (max-width:1280px) {
  .main-program__txtarea {
    padding: 0 7%;
  }
}
@media only screen and (max-width:1100px) {
  .main-program__txtarea {
    width: 52%;
    padding: 0 3%;
  }
}
@media only screen and (max-width:767.98px) {
  .main-program__txtarea {
    width: 100%;
    padding: 0 15px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 25px;
  }
}
.main-program__lead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  font-size: 28px;
  font-weight: bold;
}
.main-program__lead img {
  max-width: 203px;
}
@media only screen and (max-width:1100px) {
  .main-program__lead .block-sp {
    display: block;
  }
}
@media only screen and (max-width:767.98px) {
  .main-program__lead {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 17px;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
  }
  .main-program__lead img {
    max-width: 100px;
  }
}
.main-program__txt {
  font-size: 16px;
  line-height: 40px;
}
@media only screen and (max-width:1100px) {
  .main-program__txt {
    font-size: 15px;
    line-height: 33px;
  }
}
@media only screen and (max-width:767.98px) {
  .main-program__txt {
    font-size: 14px;
    line-height: 35px;
  }
}

.main-summary {
  padding: 240px 0 250px;
  background: #f9f9f9;
}
@media only screen and (max-width:1100px) {
  .main-summary {
    padding: 120px 15px;
  }
}
@media only screen and (max-width:767.98px) {
  .main-summary {
    padding: 110px 15px;
  }
}
.main-summary__box {
  width: 100%;
  max-width: 974px;
  margin: auto;
  padding: 126px 144px 145px;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 90px;
  border: 1px solid #000;
  background: #fbf8f9;
  position: relative;
}
.main-summary__box:after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 100%;
  height: 1px;
  background: #000;
}
.main-summary__box::before {
  content: "";
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 1px;
  height: 100%;
  background: #000;
}
@media only screen and (max-width:1100px) {
  .main-summary__box {
    padding: 14% 12%;
    gap: 70px;
  }
}
@media only screen and (max-width:767.98px) {
  .main-summary__box {
    max-width: 500px;
    margin: auto;
    padding: 50px 6% 80px;
    gap: 30px;
  }
  .main-summary__box:after {
    bottom: -6px;
    right: -6px;
  }
  .main-summary__box::before {
    bottom: -6px;
    right: -6px;
  }
}
.main-summary__ttl {
  padding-bottom: 24px;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  border-bottom: 2px dotted #000;
  font-size: 26px;
  line-height: 36px;
}
@media only screen and (max-width:767.98px) {
  .main-summary__ttl {
    padding-bottom: 11px;
    gap: 10px;
    font-size: 21px;
    line-height: 26px;
    text-align: center;
  }
  .main-summary__ttl img {
    max-width: 70px;
  }
}
.main-summary__item {
  padding: 13px 10px;
  border-bottom: 1px solid #000;
}
.main-summary__txtarea {
  display: grid;
  grid-template-columns: 200px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width:767.98px) {
  .main-summary__txtarea {
    grid-template-columns: 1fr;
  }
}
.main-summary__subttl {
  font-size: 14px;
  line-height: 18px;
  font-weight: bold;
}
@media only screen and (max-width:767.98px) {
  .main-summary__subttl {
    line-height: 25px;
  }
}
.main-summary__txt {
  font-size: 14px;
  line-height: 28px;
}
@media only screen and (max-width:767.98px) {
  .main-summary__txt {
    line-height: 25px;
  }
}

.main-area {
  padding: 200px 0 157px;
  background: #f6f3ed;
}
@media only screen and (max-width:1100px) {
  .main-area {
    padding: 120px 15px;
  }
}
@media only screen and (max-width:767.98px) {
  .main-area {
    padding: 95px 15px;
  }
}
.main-area__container {
  width: 100%;
  max-width: 940px;
  margin: auto;
  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-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
@media only screen and (max-width:767.98px) {
  .main-area__container {
    max-width: 500px;
    margin: auto;
    gap: 30px;
  }
}
.main-area__ttl {
  width: 100%;
  font-size: 28px;
  text-align: center;
}
@media only screen and (max-width:767.98px) {
  .main-area__ttl {
    font-size: 21px;
  }
}
.main-area__list {
  width: 100%;
  padding-bottom: 60px;
}
@media only screen and (max-width:767.98px) {
  .main-area__list {
    padding-bottom: 0;
  }
}
.main-area__none {
  width: 100%;
  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-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 0 80px;
}
@media only screen and (max-width:767.98px) {
  .main-area__none {
    padding: 20px 0 50px;
  }
}
.main-area__none-txt {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.7);
}
@media only screen and (max-width:767.98px) {
  .main-area__none-txt {
    font-size: 15px;
  }
}
.main-area__item {
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0 20px;
  border-bottom: 1px solid #000;
}
.main-area__item:first-of-type {
  border-top: 1px solid #000;
}
.main-area__item-list {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 60px;
}
.main-area__subttl {
  width: 100%;
  padding: 39px 0;
  text-align: left;
  font-size: 20px;
}
@media only screen and (max-width:767.98px) {
  .main-area__subttl {
    padding: 20px 0;
    font-size: 15px;
  }
}
.main-area__inner {
  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;
  padding: 15px 0;
  border-bottom: 1px solid rgba(204, 204, 204, 0.5);
}
@media only screen and (max-width:767.98px) {
  .main-area__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.main-area__txtarea {
  display: grid;
  grid-template-columns: 110px 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 30px;
}
@media only screen and (max-width:767.98px) {
  .main-area__txtarea {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.main-area__tag {
  font-size: 13px;
  line-height: 26px;
  text-align: center;
  color: #fff;
  background: #99b9b2;
}
.main-area__tag.food {
  background: #99b9b2;
}
.main-area__tag.work {
  background: #d49e95;
}
@media only screen and (max-width:767.98px) {
  .main-area__tag {
    width: 70px;
    font-size: 11px;
    line-height: 20px;
  }
}
.main-area__txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  font-size: 18px;
  line-height: 24px;
  font-weight: bold;
}
@media only screen and (max-width:767.98px) {
  .main-area__txt {
    font-size: 15px;
    line-height: 20px;
  }
}
.main-area__date {
  font-size: 14px;
  font-weight: 400;
}
@media only screen and (max-width:767.98px) {
  .main-area__date {
    font-size: 12px;
  }
}
.main-area__btnarea {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width:767.98px) {
  .main-area__btnarea {
    width: 100%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.main-area__btn {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 180px;
  height: 40px;
  font-size: 12px;
  border: 1px solid #000;
  border-radius: 20px;
  text-decoration: none;
}
@media only screen and (max-width:767.98px) {
  .main-area__btn {
    width: 120px;
    height: 35px;
    font-size: 11px;
    border-radius: 17px;
  }
}

.main-movie {
  padding: 180px 0 190px;
  background: #ebeded;
}
@media only screen and (max-width:1100px) {
  .main-movie {
    padding: 120px 15px;
  }
}
@media only screen and (max-width:767.98px) {
  .main-movie {
    padding: 85px 15px 90px;
  }
}
.main-movie__container {
  width: 100%;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 50px;
}
@media only screen and (max-width:767.98px) {
  .main-movie__container {
    max-width: 500px;
    margin: auto;
    gap: 25px;
  }
}
.main-movie__ttl {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 13px;
  font-size: 60px;
  letter-spacing: 0;
  line-height: 66px;
  font-weight: normal;
  text-align: center;
}
@media only screen and (max-width:767.98px) {
  .main-movie__ttl {
    gap: 10px;
    font-size: 25px;
    line-height: 30px;
  }
}
.main-movie__ttl-num {
  font-size: 29px;
  letter-spacing: 0;
  line-height: 1;
}
@media only screen and (max-width:767.98px) {
  .main-movie__ttl-num {
    font-size: 15px;
  }
}
.main-movie__ttl-small {
  font-size: 28px;
  line-height: 1;
  font-weight: bold;
}
@media only screen and (max-width:767.98px) {
  .main-movie__ttl-small {
    font-size: 21px;
  }
}
.main-movie__txt {
  font-size: 14px;
  letter-spacing: 0.01em;
}
@media only screen and (max-width:767.98px) {
  .main-movie__txt {
    font-size: 10px;
  }
}
.main-movie__inner {
  width: 100%;
  max-width: 801px;
  margin: auto;
  aspect-ratio: 763/429;
  border: 20px solid #000;
}
.main-movie__inner iframe {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width:767.98px) {
  .main-movie__inner {
    border: 7px solid #000;
  }
}

.main-qa {
  padding: 200px 0;
  background: #f6f3ed;
}
@media only screen and (max-width:1100px) {
  .main-qa {
    padding: 120px 15px;
  }
}
@media only screen and (max-width:767.98px) {
  .main-qa {
    padding: 100px 15px;
  }
}
.main-qa__container {
  width: 100%;
  max-width: 940px;
  margin: auto;
  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-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
@media only screen and (max-width:767.98px) {
  .main-qa__container {
    max-width: 500px;
    margin: auto;
    gap: 25px;
  }
}
.main-qa__ttl {
  width: 100%;
  font-size: 28px;
  text-align: center;
}
@media only screen and (max-width:767.98px) {
  .main-qa__ttl {
    font-size: 21px;
  }
}
.main-qa__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.main-qa__item {
  padding: 35px 40px 35px 82px;
  background: #fff;
}
@media only screen and (max-width:767.98px) {
  .main-qa__item {
    padding: 18px 18px 20px 40px;
  }
}
.main-qa__inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.main-qa__q {
  font-size: 18px;
  line-height: 26px;
  position: relative;
  cursor: pointer;
}
.main-qa__q span {
  position: absolute;
  top: 0;
  left: -40px;
  font-size: 24px;
  font-weight: normal;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
@media only screen and (max-width:767.98px) {
  .main-qa__q {
    padding-right: 30px;
    font-size: 14px;
    line-height: 20px;
  }
  .main-qa__q span {
    left: -26px;
    font-size: 16px;
  }
}
.main-qa__a {
  padding-top: 15px;
  padding-right: 70px;
  font-size: 16px;
  line-height: 26px;
  position: relative;
}
.main-qa__a span {
  position: absolute;
  top: 15px;
  left: -40px;
  font-size: 24px;
  color: #c67375;
  font-weight: normal;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
.main-qa__a a {
  color: #026f9d;
}
@media only screen and (max-width:767.98px) {
  .main-qa__a {
    padding-right: 20px;
    font-size: 14px;
    line-height: 27px;
  }
  .main-qa__a span {
    left: -26px;
    font-size: 16px;
  }
}

/**/
.js-accordion-btn {
  width: 100%;
  cursor: pointer;
  position: relative;
}
.js-accordion-btn button {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 30px;
  height: 30px;
  display: block;
  background: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  text-align: left;
  cursor: pointer;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.js-accordion-btn button::after {
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #000;
}
@media only screen and (max-width:767.98px) {
  .js-accordion-btn button {
    width: 15px;
    height: 15px;
  }
  .js-accordion-btn button::after {
    width: 15px;
    height: 1px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.js-accordion-btn[aria-expanded=false] button {
  -webkit-transform: translateY(-50%) rotate(360deg);
          transform: translateY(-50%) rotate(360deg);
}
.js-accordion-btn[aria-expanded=false] button::before {
  display: block;
  content: "";
  width: 2px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #000;
}
@media only screen and (max-width:767.98px) {
  .js-accordion-btn[aria-expanded=false] button::before {
    width: 1px;
    height: 15px;
  }
}
.js-accordion-btn[aria-expanded=false] button {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.js-accordion-box {
  width: 100%;
  -webkit-transition: opacity 1s, max-height 0.5s ease;
  transition: opacity 1s, max-height 0.5s ease;
}
.js-accordion-box[aria-hidden=true] {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
}
.js-fade-in {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, transform 0.8s;
  transition: opacity 0.8s, transform 0.8s, -webkit-transform 0.8s;
}
.js-fade-in.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}/*# sourceMappingURL=style.css.map */