@charset "UTF-8";
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: local("Noto Sans JP Regular"), url("../fonts/notosans-jp/NotoSansJP-Regular.woff2") format("woff2"), url("../fonts/notosans-jp/NotoSansJP-Regular.woff") format("woff"), url("../fonts/notosans-jp/NotoSansJP-Regular.otf") format("embedded-opentype");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 600;
  src: local("Noto Sans JP Bold"), url("../fonts/notosans-jp/NotoSansJP-Bold.woff2") format("woff2"), url("../fonts/notosans-jp/NotoSansJP-Bold.woff") format("woff"), url("../fonts/notosans-jp/NotoSansJP-Bold.otf") format("embedded-opentype");
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

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

sub, sup {
  font-size: 50%;
  font-weight: normal;
}

a img {
  border: none;
}

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

input[type=button]:not([disabled]), input[type=submit]:not([disabled]), input[type=reset]:not([disabled]), button:not([disabled]) {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

.ff-en {
  font-family: "Kumbh Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "YOPQ" 300;
}

/* ------------------------------------
//  base
// ----------------------------------*/
* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}

body {
  background-color: #fff;
  position: relative;
  width: 100%;
  height: 100%;
  font-family: "Yu Gothic", "游ゴシック", "YuGothic", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #121212;
  text-align: left;
  word-break: break-word;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* ------------------------------------
//  見出し
// ----------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  line-height: 1.6em;
  margin-bottom: 0;
}

/* ------------------------------------
//  フォント
// ----------------------------------*/
em,
strong {
  font-style: normal;
  font-weight: 600;
}

/* ------------------------------------
//  リスト
// ----------------------------------*/
ol, ul {
  list-style: none;
}

/* ------------------------------------
//  段落設定
// ----------------------------------*/
p {
  margin: 1em auto 0;
  text-align: left;
}
p:first-of-type {
  margin-top: 0;
}

/* ------------------------------------
//  画像
// ----------------------------------*/
img,
svg {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  line-height: 1;
}

@media only screen and (min-width: 768px) {
  img,
  svg {
    width: auto;
  }
}
/* ------------------------------------
//  リンク
// ----------------------------------*/
a {
  color: #121212;
  transition: all 0.1s linear 0s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
a:link, a:visited {
  color: #121212;
  text-decoration: underline;
}
a:hover, a:active {
  opacity: 0.7;
}
a i {
  margin: 0 4px;
}

header a:link, header a:visited, footer a:link, footer a:visited {
  color: #121212;
  text-decoration: none;
}
header a:hover, header a:active, footer a:hover, footer a:active {
  opacity: 1;
}

a img {
  opacity: 1;
}

@media only screen and (min-width: 768px) {
  a img {
    transition: opacity 0.1s linear 0s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  a img:hover {
    opacity: 0.7;
  }
}
/* ----------------------------------------------------------------
  パーツ
---------------------------------------------------------------- */
.page-top {
  width: 80px;
  height: 80px;
  cursor: pointer;
  position: -webkit-sticky;
  position: fixed;
  right: 8px;
  bottom: 16px;
  z-index: 8;
  transition: transform 0.5s ease-in, opacity 0.5s ease-in;
  opacity: 0;
}
@media only screen and (min-width: 768px) {
  .page-top {
    right: auto;
    left: calc(50% + 108px);
  }
}
.page-top.is-show {
  opacity: 1;
}
.page-top.is-hide {
  transform: translateY(-105svh) rotate(720deg); /* 画面外に飛び出し、横回転 */
  opacity: 0;
}

/* ----------------------------------------------------------------
  セクション
---------------------------------------------------------------- */
.sec {
  padding: 110px 20px 100px;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .sec {
    padding: 123px 0 120px;
  }
}
.sec:not(.sec-no-bg):before {
  content: "";
  width: 53.33vw;
  height: 100%;
  background-image: url(../img/bg-sec-s.png);
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
}
@media only screen and (min-width: 768px) {
  .sec:not(.sec-no-bg):before {
    width: 42.61vw;
    background-image: url(../img/bg-sec.png);
  }
}
@media only screen and (min-width: 768px) {
  .sec .sec-main {
    display: flex;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 768px) {
  .sec .sec-main .sec-main__contents {
    width: 45vw;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1024px) {
  .sec .sec-main .sec-main__contents {
    width: 35.14vw;
  }
}
.sec .sec-main .sec-main__contents .sec-main__title {
  margin-bottom: 20px;
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media only screen and (min-width: 1024px) {
  .sec .sec-main .sec-main__contents .sec-main__title {
    margin-bottom: 25px;
    font-size: 3.2rem;
  }
}
.sec .sec-main .sec-main__contents .sec-main__title::before {
  content: attr(data-sub) "";
  font-family: "Kumbh Sans", sans-serif;
  font-weight: 300;
  color: #8E8E8E;
  line-height: 1;
  display: block;
  margin-bottom: 30px;
}
@media only screen and (min-width: 1024px) {
  .sec .sec-main .sec-main__contents .sec-main__title::before {
    font-size: 3.4rem;
    margin-bottom: 35px;
  }
}
.sec .sec-main .sec-main__contents .sec-main__text {
  font-size: 1.7rem;
  line-height: 2;
}
@media only screen and (min-width: 1024px) {
  .sec .sec-main .sec-main__contents .sec-main__text {
    font-size: 1.8rem;
  }
}
.sec .sec-main .sec-main__image {
  margin-top: 40px;
}
@media only screen and (min-width: 768px) {
  .sec .sec-main .sec-main__image {
    margin-top: 0;
    width: 42vw;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1024px) {
  .sec .sec-main .sec-main__image {
    width: 40.19vw;
  }
}
.sec:nth-of-type(odd) {
  background-color: #F4F4F4;
}
.sec:nth-of-type(odd)::before {
  left: 0;
}
@media only screen and (min-width: 768px) {
  .sec:nth-of-type(odd) .sec-main {
    margin-left: 9vw;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1024px) {
  .sec:nth-of-type(odd) .sec-main {
    margin-left: 15.89vw;
  }
}
.sec:nth-of-type(even) {
  background-color: #ffffff;
}
.sec:nth-of-type(even)::before {
  right: 0;
  transform: scale(-1, 1);
}
@media only screen and (min-width: 768px) {
  .sec:nth-of-type(even) .sec-main {
    flex-direction: row-reverse;
    margin-right: 9vw;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1024px) {
  .sec:nth-of-type(even) .sec-main {
    margin-right: 15.89vw;
  }
}
.sec:nth-of-type(even) .sec-main .sec-main__contents .sec-main__title {
  text-align: right;
}
.sec:nth-of-type(even) .sec-main .sec-main__contents .sec-main__title::before {
  text-align: right;
}

@media only screen and (min-width: 768px) {
  .sec .inner {
    margin-left: 9vw;
    margin-right: 9vw;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1024px) {
  .sec .inner {
    margin-left: 15.89vw;
    margin-right: 15.89vw;
  }
}
/* ----------------------------------------------------------------
  見出し
---------------------------------------------------------------- */
.sec-title {
  margin: -31px auto 0;
  min-width: 240px;
  text-align: center;
  position: absolute;
  left: 50%;
  top: -38px;
  transform: translateX(-50%);
}
.sec-title img {
  width: 210px;
  height: auto;
}

.sub-sec__title img {
  width: auto;
  height: 27px;
}

/* ----------------------------------------------------------------
  リンク
---------------------------------------------------------------- */
.text-link {
  font-weight: 900;
}

/* ----------------------------------------------------------------
  ボタン
---------------------------------------------------------------- */
.button-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 46px;
  font-size: 1.8rem;
  font-weight: 700;
  height: 60px;
  border-radius: 30px;
  position: relative;
  transition: 0.1 0.1s linear 0s;
}
.button:link, .button:visited {
  text-decoration: none;
  background-color: #121212;
  color: #fff;
}
.button:hover, .button:active {
  opacity: 0.8;
}
.button.button--arrow::before {
  content: "";
  width: 28px;
  height: 28px;
  background-image: url(../img/icon-arrow1.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  position: absolute;
  right: 18px;
  top: calc(50% - 14px);
}
.button.button--blank {
  gap: 11px;
  padding-right: 18px;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}
.button.button--blank::after {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url(../img/icon-blank.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}
.button.button--blank:link, .button.button--blank:visited {
  background-color: #fff;
  border: 1px solid #121212;
  color: #121212;
}
.button.button--blank:hover, .button.button--blank:active {
  opacity: 0.8;
}

/* ----------------------------------------------------------------
  CTA
---------------------------------------------------------------- */
.sec-cta {
  padding-top: 0;
  padding-bottom: 0;
  aspect-ratio: 375/322;
  background-image: url(../img/bg-cta-sp.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media only screen and (min-width: 768px) {
  .sec-cta {
    aspect-ratio: unset;
    height: min(29.28vw, 400px);
    background-image: url(../img/bg-cta.jpg);
  }
}
.sec-cta .inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-contents {
  display: flex;
  flex-direction: column;
  gap: 8vw;
}
@media only screen and (min-width: 768px) {
  .cta-contents {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
  }
}
.cta-contents .item__image {
  max-width: 433px;
}
.cta-contents .button {
  width: 68.6%;
  max-width: 306px;
}
@media only screen and (min-width: 768px) {
  .cta-contents .button {
    width: 306px;
    height: 80px;
    border-radius: 40px;
    font-size: 2.3rem;
  }
  .cta-contents .button::before {
    width: 37px;
    height: 37px;
    top: calc(50% - 17.5px);
    right: 24px;
  }
}

/* ----------------------------------------------------------------
  スクロールで出現
---------------------------------------------------------------- */
.js-animation {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 0.5s, visibility 0.5s, transform 0.5s;
}

.is-scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

/* ----------------------------------------------------------------
  ヘッダーのレイアウト
---------------------------------------------------------------- */
.header {
  overflow: hidden;
  width: 100%;
  height: 60px;
  background-color: transparent;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
  transition: transform 0.3s ease, position 0.3s ease, opacity 0.3s ease;
}
@media only screen and (min-width: 1280px) {
  .header {
    height: 80px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0);
  }
}
.header .site-logo {
  line-height: 1;
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  transition: opacity 0.1s 0s linear;
}
@media only screen and (min-width: 1280px) {
  .header .site-logo {
    left: 40px;
  }
}
.header .site-logo img {
  width: 234px;
  height: auto;
  vertical-align: bottom;
}
.header.is-view {
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  position: fixed;
  top: 0;
  opacity: 1;
}
@media only screen and (min-width: 1280px) {
  .header.is-view {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  }
  .header.is-view .site-logo {
    width: 335px;
  }
}

/* ----------------------------------------------------------------
  メニューのスタイル
---------------------------------------------------------------- */
.global-menu-wrapper {
  background-color: #fff;
  padding: 60px 20px 40px;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 100%;
  top: 0;
  z-index: 1;
  transition: left 0.3s ease;
}
@media only screen and (min-width: 1280px) {
  .global-menu-wrapper {
    transition: none;
  }
}

.global-menu {
  padding: 36px 30px 30px;
  width: auto;
  height: auto;
  background-color: #F4F4F4;
  position: relative;
}

.menu {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.menu .menu__item {
  line-height: 1;
}
.menu .menu__item a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
}
.menu .menu__item a::before {
  content: "";
  width: 20px;
  height: 1px;
  background-color: #8E8E8E;
}
.menu .menu__item a:link, .menu .menu__item a:visited {
  color: #121212;
  text-decoration: none;
}
.menu .menu__item a:hover, .menu .menu__item a:active {
  opacity: 1;
}
.menu .link-pre_entry {
  margin-top: 18px;
}
.menu .link-pre_entry .button--arrow {
  letter-spacing: 0.1em;
}
.menu .link-pre_entry .button--arrow::before {
  transform: rotate(90deg);
}

@media only screen and (min-width: 1280px) {
  .header.is-view .global-menu-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 80px;
    left: 0;
    padding: 0 12px 0 0;
  }
  .header.is-view .global-menu-wrapper * {
    transition: none;
  }
  .header.is-view .global-menu-wrapper .global-menu {
    padding: 0;
    background-color: #fff;
  }
  .header.is-view .global-menu-wrapper .menu {
    flex-direction: row;
    align-items: center;
    gap: min(1.17vw, 30px);
    gap: 20px;
  }
  .header.is-view .global-menu-wrapper .menu .menu__item a {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 1.4rem;
    letter-spacing: 0;
  }
  .header.is-view .global-menu-wrapper .menu .menu__item a::before {
    content: none;
  }
  .header.is-view .global-menu-wrapper .menu .menu__item a:hover, .header.is-view .global-menu-wrapper .menu .menu__item a:active {
    opacity: 0.8;
  }
  .header.is-view .global-menu-wrapper .menu .link-pre_entry {
    margin-top: 0;
  }
  .header.is-view .global-menu-wrapper .menu .link-pre_entry .button--arrow {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 1.4rem;
    height: 46px;
    letter-spacing: 0;
  }
}
@media only screen and (min-width: 1280px) and (min-width: 1100px) {
  .header.is-view .global-menu-wrapper .menu .link-pre_entry .button--arrow {
    margin-left: 7px;
  }
}
@media only screen and (min-width: 1280px) and (min-width: 1200px) {
  .header.is-view .global-menu-wrapper .menu .link-pre_entry .button--arrow {
    padding-left: 27px;
    padding-right: 27px;
    font-size: 1.8rem;
    height: 56px;
  }
}
@media only screen and (min-width: 1280px) {
  .header.is-view .global-menu-wrapper .menu .link-pre_entry .button--arrow::before {
    content: none;
  }
}
/* ----------------------------------------------------------------
  開閉トグル
---------------------------------------------------------------- */
.menu-button {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  width: 74px;
  height: 60px;
  z-index: 10;
}
@media only screen and (min-width: 1280px) {
  .menu-button {
    display: none;
  }
}
.menu-button .menu-button__line {
  width: 40px;
  height: 2px;
  background-color: #313131;
  position: absolute;
  right: calc(50% - 20px);
  top: calc(50% - 1px);
}
.menu-button .menu-button__line::before, .menu-button .menu-button__line::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #313131;
  position: absolute;
  left: 0;
  transition: all 0.1s linear 0s;
}
.menu-button .menu-button__line::before {
  top: -9px;
}
.menu-button .menu-button__line::after {
  top: 9px;
}

/* ----------------------------------------------------------------
  メニュー開閉時の挙動 - まとめて
---------------------------------------------------------------- */
body.is-open {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.header.is-open {
  background-image: none;
}
.header.is-open .site-logo {
  opacity: 1;
  transition: opacity 0.3s 0.05s ease;
}
.header.is-open .global-menu-wrapper {
  left: 0;
}
.header.is-open .global-menu {
  height: 100%;
}

.menu-button.is-open .menu-button__line {
  background-color: transparent;
}
.menu-button.is-open .menu-button__line::before, .menu-button.is-open .menu-button__line::after {
  top: 0;
}
.menu-button.is-open .menu-button__line::before {
  transform: rotate(25deg);
}
.menu-button.is-open .menu-button__line::after {
  transform: rotate(-25deg);
}

/* ----------------------------------------------------------------
  フッターのレイアウト
---------------------------------------------------------------- */
.footer {
  aspect-ratio: 375/351;
  background-image: url(../img/site-title-white.svg), url(../img/bg-footer-s.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 335px, cover;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .footer {
    aspect-ratio: 1366/587;
    background-image: url(../img/site-title-white.svg), url(../img/bg-footer-l.jpg);
    background-position: center 58%, center;
  }
}
.footer .copyright {
  font-size: 1.4rem;
  line-height: 1;
  color: #fff;
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
}

.contents {
  position: relative;
}

.mv {
  padding-bottom: 60px;
  display: flex;
  flex-direction: column-reverse;
  gap: 60px;
  background-image: url(../img/bg-mv-s.png);
  background-repeat: no-repeat;
  background-position: left top 105.6vw;
  background-size: 100%;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .mv {
    padding-bottom: 8.78vw;
    flex-direction: row-reverse;
    align-items: flex-end;
    gap: 0;
    background-image: url(../img/bg-mv-l.png);
    background-position: left top 14.86vw;
  }
}
.mv .main-catchcopy {
  width: 100%;
  position: absolute;
  left: 0;
  top: 80px;
}
.mv .main-catchcopy img {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .mv .main-catchcopy {
    top: 60px;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1024px) {
  .mv .main-catchcopy {
    top: 100px;
  }
}
@media only screen and (min-width: 768px) {
  .mv .mv__main {
    width: 33.31%;
    transform: scale(0.8);
  }
}
@media only screen and (min-width: 768px) and (min-width: 1024px) {
  .mv .mv__main {
    transform: scale(1);
  }
}
@media only screen and (min-width: 768px) and (min-width: 1024px) and (min-width: 1120px) {
  .mv .mv__main {
    padding-bottom: min(4.39vw, 60px);
  }
}
.mv .mv__main p {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4166666667;
  text-align: center;
  letter-spacing: 0.1em;
}
.mv .mv__main .button-wrapper {
  margin-top: 24px;
}
@media only screen and (min-width: 1024px) {
  .mv .mv__main .button-wrapper {
    margin-top: 35px;
  }
}
.mv .mv__main .button-wrapper .button.button--arrow {
  width: 230px;
}
.mv .mv__image {
  margin-right: 10.67vw;
  aspect-ratio: 335/595;
  background-image: url(../img/bg-mv-image-s.jpg);
  background-size: cover;
}
@media only screen and (min-width: 768px) {
  .mv .mv__image {
    margin-right: 0;
    width: 66.69%;
    aspect-ratio: 911/768;
    background-image: url(../img/bg-mv-image-l.jpg);
  }
}

.sec-concept {
  padding-top: 60px;
}
@media only screen and (min-width: 768px) {
  .sec-concept {
    padding-top: 123px;
  }
}
.sec-concept::before {
  content: none;
}
@media only screen and (min-width: 768px) {
  .sec-concept::before {
    content: "";
  }
}
.sec-concept .sec-main {
  display: flex;
  flex-direction: column-reverse;
}
@media only screen and (min-width: 768px) {
  .sec-concept .sec-main {
    flex-direction: row;
  }
}
.sec-concept .sec-main .sec-main__contents {
  padding-top: 110px;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .sec-concept .sec-main .sec-main__contents {
    padding-top: 0;
  }
}
.sec-concept .sec-main .sec-main__contents::before {
  content: "";
  width: 53.33vw;
  height: 100%;
  background-image: url(../img/bg-sec-s.png);
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  top: 0;
  left: -20px;
  z-index: -1;
}
@media only screen and (min-width: 768px) {
  .sec-concept .sec-main .sec-main__contents::before {
    content: none;
  }
}
.sec-concept .sec-main .sec-main__image {
  margin-top: 0;
  position: relative;
  right: -20px;
}
@media only screen and (min-width: 768px) {
  .sec-concept .sec-main .sec-main__image {
    right: 0;
  }
}

.sec-about-program .sec-main .sec-main__image {
  width: 79.4%;
  position: relative;
  left: -20px;
}
@media only screen and (min-width: 768px) {
  .sec-about-program .sec-main .sec-main__image {
    width: 42vw;
    left: 0;
  }
}

.about-program {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}
@media only screen and (min-width: 768px) {
  .about-program {
    margin-top: 96px;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}
.about-program .item .item__title {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
  padding: 12px 0 12px 18px;
  border-left: 1px solid #707070;
}
.about-program .item .item__title em {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}
.about-program .item .item__title span {
  font-size: 1.6rem;
  font-weight: 700;
  color: #8E8E8E;
  line-height: 1;
  letter-spacing: 0.1em;
}
.about-program .item .item_text {
  margin-top: 10px;
}
@media only screen and (min-width: 768px) {
  .about-program .item .item_text {
    margin-top: 20px;
  }
}

@media only screen and (min-width: 768px) {
  .sec-goals .sec-main {
    margin-right: 9vw;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1024px) {
  .sec-goals .sec-main {
    margin-right: 15.89vw;
  }
}
@media only screen and (min-width: 768px) {
  .sec-goals .sec-main .sec-main__image {
    width: 32.28vw;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1024px) {
  .sec-goals .sec-main .sec-main__image {
    width: 23.28vw;
  }
}

.goals {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
@media only screen and (min-width: 768px) {
  .goals {
    margin-top: 95px;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}
.goals .item .item__title {
  padding-top: 25px;
  border-top: 1px solid #8E8E8E;
}
@media only screen and (min-width: 768px) {
  .goals .item .item__title {
    margin-top: 0;
  }
}
.goals .item .item__title h3 {
  font-size: 2.8rem;
  font-weight: 700;
}
@media only screen and (min-width: 768px) {
  .goals .item .item__title h3 {
    margin-top: 0;
  }
}
.goals .item .item__title .item__title__image {
  margin-top: 20px;
}
.goals .item .item__contents {
  margin-top: 16px;
}
.themes {
  margin-top: 60px;
}
@media only screen and (min-width: 768px) {
  .themes {
    margin-top: 140px;
  }
}
.themes .item:not(:first-of-type) {
  margin-top: 60px;
}
@media only screen and (min-width: 768px) {
  .themes .item:not(:first-of-type) {
    margin-top: 40px;
  }
}
@media only screen and (min-width: 768px) {
  .themes .item {
    display: grid;
    grid-template-columns: 31.33% 1fr;
    gap: min(3.95vw, 54px);
  }
}
.themes .item .item__title {
  padding-top: 25px;
  border-top: 1px solid #8E8E8E;
}
@media only screen and (min-width: 768px) {
  .themes .item .item__title {
    margin-top: 0;
  }
}
.themes .item .item__title h3 {
  font-size: 2.8rem;
  font-weight: 700;
}
@media only screen and (min-width: 768px) {
  .themes .item .item__title h3 {
    margin-top: 0;
  }
}
.themes .item .item__title .item__title__image {
  margin-top: 20px;
}
.themes .item .item__contents {
  margin-top: 20px;
}
@media only screen and (min-width: 768px) {
  .themes .item .item__contents {
    margin-top: 0;
  }
}
.themes .item .item__contents .item__contents__title {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media only screen and (min-width: 768px) {
  .themes .item .item__contents .item__contents__title {
    font-size: 2rem;
    line-height: 1.6;
  }
}
.themes .item .item__contents .item__contents__text {
  margin-top: 15px;
  transition: max-height 0.3s ease;
  overflow: hidden;
}
.themes .item .item__contents .item__contents__text p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  height: auto;
  max-height: 108px; /* 4行分 (font-size: 15px, line-height: 1.8) */
}
.themes .item .item__contents .item__contents__text p:not(:first-of-type) {
  display: none;
}
.themes .item .item__contents .item__contents__text .button-more {
  cursor: pointer;
  margin-top: 15px;
  margin-left: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100px;
  height: 32px;
  padding: 0 15px 0 16px;
  background-color: #fff;
  border-radius: 16px;
  border: 1px solid #8E8E8E;
}
.themes .item .item__contents .item__contents__text .button-more::before {
  content: "読む";
  font-size: 1.4rem;
  font-weight: 700;
}
.themes .item .item__contents .item__contents__text .button-more::after {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url(../img/icon-plus.png);
  background-repeat: no-repeat;
  background-size: 100%;
}
.themes .item .item__contents .item__contents__text.is-show {
  max-height: none;
}
.themes .item .item__contents .item__contents__text.is-show p {
  overflow: visible;
  display: block;
  -webkit-box-orient: initial;
  -webkit-line-clamp: initial;
  max-height: none;
}
.themes .item .item__contents .item__contents__text.is-show .button-more::before {
  content: "閉じる";
}
.themes .item .item__contents .item__contents__text.is-show .button-more::after {
  background-image: url(../img/icon-minus.png);
}

@media only screen and (min-width: 768px) {
  .sec-about-us .sec-main {
    margin-right: 9vw;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1024px) {
  .sec-about-us .sec-main {
    margin-right: 15.89vw;
  }
}
@media only screen and (min-width: 768px) {
  .sec-about-us .sec-main .sec-main__image {
    width: 28.5vw;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1024px) {
  .sec-about-us .sec-main .sec-main__image {
    width: 23.5vw;
  }
}

.about-us {
  margin-top: 55px;
  padding: 0 23px;
  background-color: #fff;
  border: 1px solid #8E8E8E;
}
@media only screen and (min-width: 768px) {
  .about-us {
    margin-top: 60px;
    padding: 28px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
}
.about-us .item {
  padding: 24px 10px 34px;
}
@media only screen and (min-width: 768px) {
  .about-us .item {
    padding: 0 26px 32px;
  }
}
.about-us .item:not(:first-of-type) {
  border-top: 1px solid #8E8E8E;
}
@media only screen and (min-width: 768px) {
  .about-us .item:not(:first-of-type) {
    border-top: none;
    border-left: 1px solid #8E8E8E;
  }
}
.about-us .item .item__name {
  margin-left: auto;
  margin-right: auto;
  width: 94.3%;
}
@media only screen and (min-width: 768px) {
  .about-us .item .item__name {
    width: 100%;
  }
}
.about-us .item .item__text {
  margin-top: 18px;
  font-size: 1.4rem;
  line-height: 1.6;
}

.schedule {
  margin-top: 60px;
}
@media only screen and (min-width: 768px) {
  .schedule {
    margin-top: 135px;
  }
}
.schedule .item:not(:first-of-type) {
  margin-top: 45px;
}
@media only screen and (min-width: 768px) {
  .schedule .item:not(:first-of-type) {
    margin-top: 55px;
  }
}
.schedule .item .item__title {
  font-family: "Kumbh Sans", sans-serif;
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
  color: #8E8E8E;
  position: relative;
  overflow: hidden;
}
.schedule .item .item__title::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #8E8E8E;
  position: absolute;
  left: 150px;
  top: 50%;
  transform: translateY(-50%);
}
.schedule .item .session {
  margin-top: 23px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media only screen and (min-width: 1024px) {
  .schedule .item .session {
    flex-direction: row;
    gap: 0;
  }
}
.schedule .item .session .session__label {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #8E8E8E;
  border-radius: 4px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  width: 114px;
  min-width: 114px;
  height: 40px;
  white-space: nowrap;
}
@media only screen and (min-width: 1024px) {
  .schedule .item .session .session__label {
    flex-basis: 114px;
    margin-right: 46px;
  }
}
.schedule .item .session .session__label.--obuse {
  background-color: #8E8E8E;
  color: #fff;
}
.schedule .item .session .session__label.--tokyo {
  background-color: #fff;
  color: #8E8E8E;
}
.schedule .item .session .session__date {
  line-height: 1.8;
  white-space: nowrap;
}
@media only screen and (min-width: 1024px) {
  .schedule .item .session .session__date {
    flex-basis: 280px;
  }
}
.schedule .item .session .session__date .session__date__kikan {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.schedule .item .session .session__date .session__date__day {
  margin-top: 8px;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}
@media only screen and (min-width: 1024px) {
  .schedule .item .session .session__contents {
    margin-top: 0;
    margin-left: 46px;
    flex-basis: calc(100% - 160px - 326px);
  }
}
.schedule .item .session .session__contents .session__contents__title {
  font-size: 1.8rem;
  font-weight: 700;
}
.schedule .item .session .session__contents .session__contents__text {
  margin-top: -4px;
  line-height: 1.8;
}
.schedule .item .kasetsu {
  margin-top: 40px;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #EAEAEA;
  font-size: 1.8rem;
  font-weight: 700;
}
@media only screen and (min-width: 768px) {
  .schedule .item .kasetsu {
    margin-top: 50px;
  }
}

.session-info {
  margin-top: 40px;
  padding: 33px;
  border: 1px solid #8E8E8E;
}
@media only screen and (min-width: 1024px) {
  .session-info {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 1200px) {
  .session-info {
    padding: 25px 33px 25px 43px;
    gap: min(13.76vw, 188px);
  }
}
.session-info .session-info__title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}
.session-info .session-info__text {
  margin-top: 20px;
}
@media only screen and (min-width: 1024px) {
  .session-info .session-info__text {
    margin-top: 0;
  }
}

.session-notes {
  margin-top: 12px;
}

.document-include {
  margin-top: 50px;
}
.document-include iframe {
  width: 100%;
}
.document-include iframe + div {
  display: none;
}

.sec-details .button-wrapper {
  margin-top: 30px;
}
@media only screen and (min-width: 768px) {
  .sec-details .button-wrapper {
    margin-top: 70px;
  }
  .sec-details .button-wrapper .button {
    max-width: 452px;
  }
}

.details {
  margin-top: 60px;
  border-top: 1px solid #8E8E8E;
}
.details .item {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-bottom: 1px solid #8E8E8E;
}
@media only screen and (min-width: 768px) {
  .details .item {
    padding: 20px 0;
    flex-direction: row;
  }
}
.details .item .details__title {
  font-size: 1.7rem;
  font-weight: 700;
  color: #8E8E8E;
}
@media only screen and (min-width: 768px) {
  .details .item .details__title {
    flex: 0 0 160px;
    font-size: 1.8rem;
  }
}
.details .item .details__data {
  font-size: 1.7rem;
}
@media only screen and (min-width: 768px) {
  .details .item .details__data {
    font-size: 1.8rem;
  }
}
.details .item .details__data .small {
  margin-top: 5px;
  font-size: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .details .item .details__data .small {
    margin-top: 0;
  }
}
.details .item .details__data .link-mail {
  margin-top: 0.5em;
}
.details .item .details__data ul li {
  padding-left: 1em;
  position: relative;
}
.details .item .details__data ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.sec-news .button-wrapper {
  margin-top: 40px;
  padding: 0 22px;
}
@media only screen and (min-width: 768px) {
  .sec-news .button-wrapper {
    padding: 0;
  }
}
.sec-news .button-wrapper .button {
  max-width: 348px;
}

.note-posts {
  margin-top: 60px;
  padding: 0 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media only screen and (min-width: 768px) {
  .note-posts {
    margin-top: 70px;
    padding: 0;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}
.note-posts .post {
  border: 1px solid #8E8E8E;
}
.note-posts .post a {
  display: block;
}
.note-posts .post a:link, .note-posts .post a:visited {
  text-decoration: none;
}
.note-posts .post h3 {
  margin-top: 16px;
  padding: 0 19px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
}
.note-posts .post .writer-data {
  margin: 25px 0 16px;
  padding: 0 19px;
  font-size: 1.2rem;
}
.note-posts .post .writer-data .writer-data__name {
  line-height: 1;
}
.note-posts .post .writer-data .writer-data__date {
  margin-top: 6px;
  line-height: 1;
}

.include-google_form {
  margin-top: 0;
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  .include-google_form {
    margin-top: 45px;
  }
}
.include-google_form iframe {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.faq {
  margin-top: 60px;
  border-top: 1px solid #8E8E8E;
}
.faq .item {
  padding: 18px 0 15px;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #8E8E8E;
}
@media only screen and (min-width: 768px) {
  .faq .item {
    padding-left: 20px;
  }
}
.faq .item .q,
.faq .item .a {
  padding: 0 10px 0 5px;
  display: flex;
  gap: 0;
  position: relative;
}
.faq .item .q .label,
.faq .item .a .label {
  flex: 0 0 56px;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
@media only screen and (min-width: 768px) {
  .faq .item .q .label,
  .faq .item .a .label {
    flex: 0 0 60px;
  }
}
.faq .item .q {
  padding-right: 60px;
  transition: borderBottom 0.3s ease;
  cursor: pointer;
}
.faq .item .q::before, .faq .item .q::after {
  content: "";
  width: 22px;
  height: 3px;
  background-color: #313131;
  position: absolute;
  right: 10px;
  top: 11px;
  transition: all 0.1s linear 0s;
}
.faq .item .q::after {
  transform: rotate(90deg);
}
.faq .item .q .q__data {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
}
.faq .item .q.is-show {
  padding-bottom: 15px;
  margin-bottom: 18px;
  border-bottom: 1px solid #BCBCBC;
}
.faq .item .q.is-show::after {
  transform: rotate(0);
}
.faq .item .a {
  visibility: hidden;
  overflow: hidden;
  height: 0;
  transition: height 0.3s ease;
}
.faq .item .a .label {
  color: #8E8E8E;
}
.faq .item .a .a__data {
  margin: 0;
}
.faq .item .a.is-show {
  visibility: visible;
}/*# sourceMappingURL=style.css.map */