@charset "UTF-8";
/* アニメーション */
/*　flex　*/
/*　.mv用　*/
@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
/*　見出し用アニメーションの内容：左から右へフェードイン　*/
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(20px); }
  100% {
    opacity: 1;
    transform: translateX(0); } }
/* アニメーションの内容：0度から360度まで */
@keyframes logo-rotate-pause {
  0% {
    transform: rotate(0deg); }
  /* 0%から70%までの間に一回転させる（動く時間） */
  70% {
    transform: rotate(360deg); }
  /* 70%から100%までは角度を変えない（止まっている時間） */
  100% {
    transform: rotate(360deg); } }
/* アニメーションの内容：0度から360度まで */
@keyframes logo-rotate {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

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

ul, ol {
  list-style: none; }

blockquote, q {
  quotes: none; }

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

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0; }

img {
  border: none;
  vertical-align: bottom;
  max-width: 100%;
  height: auto; }

input, select, textarea {
  vertical-align: middle;
  font-family: inherit;
  font-size: inherit; }

.clearfix::after {
  content: "";
  display: table;
  clear: both; }

a:focus {
  outline: none; }

html {
  font-size: 62.5%;
  scroll-behavior: smooth; }

body {
  width: 100%;
  min-height: 100vh;
  position: relative;
  background-color: #ECF1F2;
  font-size: clamp(1.4rem, 0.833vw, 1.6rem);
  line-height: 2.0;
  letter-spacing: 0.02em;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  color: #0C2847;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.3s; }
  a.tel-link {
    pointer-events: none;
    text-decoration: none; }
    @media (max-width: 743px) {
      a.tel-link {
        pointer-events: auto; } }
  a:hover {
    text-decoration: none; }

body #wrapper {
  padding: 133px 0 0;
  /* ヘッダーの高さ */ }
  @media (max-width: 1279px) {
    body #wrapper {
      overflow: hidden; } }
  @media (max-width: 743px) {
    body #wrapper {
      padding-top: 90px; } }
  body #wrapper .header {
    width: 100%;
    height: 133px;
    display: block;
    background: #fff;
    z-index: 200;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.16);
    position: fixed;
    top: 0;
    left: 0; }
    @media (max-width: 743px) {
      body #wrapper .header {
        height: 90px; } }
    body #wrapper .header__inner {
      width: 100%;
      height: 133px;
      margin: 0 auto;
      position: relative; }
      @media (max-width: 743px) {
        body #wrapper .header__inner {
          height: 90px; } }
    body #wrapper .header__logo {
      width: 307px;
      margin: 0 auto;
      padding-top: 40px; }
      @media (max-width: 1279px) {
        body #wrapper .header__logo {
          padding-top: 25px; } }
      @media (max-width: 743px) {
        body #wrapper .header__logo {
          width: 180px;
          padding-top: 0px; } }
    body #wrapper .header__text {
      font-size: 2.2rem;
      line-height: 1.0;
      position: absolute;
      top: 50%;
      right: 84px;
      transform: translateY(-50%); }
      @media (max-width: 1279px) {
        body #wrapper .header__text {
          right: auto;
          left: 50%;
          top: auto;
          bottom: 20px;
          transform: translateY(0) translateX(-50%); } }
      @media (max-width: 743px) {
        body #wrapper .header__text {
          font-size: 1.2rem;
          bottom: 16px; } }
    body #wrapper .header .bt_menumodal {
      width: 58px;
      height: 66px;
      position: absolute;
      top: 35px;
      left: 50px; }
      @media (max-width: 743px) {
        body #wrapper .header .bt_menumodal {
          width: 37px;
          height: 43px;
          top: 24px;
          left: 20px; } }
      body #wrapper .header .bt_menumodal a {
        width: 100%;
        height: 100%;
        display: block;
        position: relative;
        cursor: pointer; }
        body #wrapper .header .bt_menumodal a span {
          width: 44px;
          height: 2px;
          display: block;
          background: #0C2847;
          position: absolute;
          top: 18px;
          right: 0;
          transition: all 0.3s;
          border-radius: 2px; }
          @media (max-width: 743px) {
            body #wrapper .header .bt_menumodal a span {
              width: 29px;
              top: 12px; } }
          body #wrapper .header .bt_menumodal a span::before {
            width: 58px;
            height: 2px;
            display: block;
            content: "";
            background: #0C2847;
            border-radius: 2px;
            position: absolute;
            top: -18px;
            right: 0;
            transition: all 0.3s; }
            @media (max-width: 743px) {
              body #wrapper .header .bt_menumodal a span::before {
                width: 37px;
                top: -12px; } }
          body #wrapper .header .bt_menumodal a span::after {
            width: 58px;
            height: 2px;
            display: block;
            content: "";
            background: #0C2847;
            border-radius: 2px;
            position: absolute;
            top: 18px;
            right: 0;
            transition: all 0.3s; }
            @media (max-width: 743px) {
              body #wrapper .header .bt_menumodal a span::after {
                width: 37px;
                top: 12px; } }
        body #wrapper .header .bt_menumodal a strong {
          width: 100%;
          display: block;
          font-size: 1.6rem;
          font-family: "Work Sans", sans-serif;
          font-weight: 500;
          letter-spacing: 0.1em;
          color: #0C2847;
          line-height: 1.0;
          text-align: center;
          position: absolute;
          right: 0;
          bottom: 0; }
          @media (max-width: 743px) {
            body #wrapper .header .bt_menumodal a strong {
              font-size: 1.0rem; } }
  body #wrapper .js-modal {
    display: none;
    width: 100%;
    height: 100svh;
    position: fixed;
    top: 0;
    overflow-y: scroll;
    z-index: 90; }
    body #wrapper .js-modal .modal__bg {
      width: 100%;
      min-height: 100svh;
      position: absolute;
      z-index: 91;
      background: #fff; }
    body #wrapper .js-modal .modal__content {
      width: 100%;
      max-width: 100%;
      position: absolute;
      right: 0;
      top: 0;
      margin: 0;
      z-index: 92; }
    body #wrapper .js-modal .mainnav {
      width: 100%;
      background: #fff;
      padding: 240px 0; }
      @media (max-width: 743px) {
        body #wrapper .js-modal .mainnav {
          padding: 150px 0 80px; } }
      @media (max-width: 1279px) {
        body #wrapper .js-modal .mainnav__container {
          width: 100%;
          display: flex;
          justify-content: center; } }
      body #wrapper .js-modal .mainnav__inner {
        display: flex; }
        @media (max-width: 1279px) {
          body #wrapper .js-modal .mainnav__inner {
            display: flex;
            flex-direction: column;
            /* カラムを縦に並べる */
            align-items: flex-start;
            /* 中身の左端（ツラ）をここで揃える */
            width: fit-content; } }
      body #wrapper .js-modal .mainnav__column {
        padding-left: 9.48%; }
        @media (max-width: 1279px) {
          body #wrapper .js-modal .mainnav__column {
            width: 100%;
            margin-bottom: 60px;
            padding-left: 0; } }
        @media (max-width: 743px) {
          body #wrapper .js-modal .mainnav__column {
            margin-bottom: 40px; } }
        body #wrapper .js-modal .mainnav__column:first-of-type {
          padding-left: 6.25%; }
          @media (max-width: 1279px) {
            body #wrapper .js-modal .mainnav__column:first-of-type {
              padding: 0; } }
        @media (max-width: 1279px) {
          body #wrapper .js-modal .mainnav__column:last-of-type {
            margin-bottom: 0; } }
      @media (max-width: 1279px) {
        body #wrapper .js-modal .mainnav__list {
          text-align: left;
          list-style: none;
          padding: 0;
          margin: 0; } }
      body #wrapper .js-modal .mainnav__item {
        display: block;
        margin-bottom: 82px;
        padding-left: 64px; }
        @media (max-width: 1279px) {
          body #wrapper .js-modal .mainnav__item {
            margin-bottom: 60px;
            padding-left: 30px; } }
        @media (max-width: 743px) {
          body #wrapper .js-modal .mainnav__item {
            margin-bottom: 40px; } }
        body #wrapper .js-modal .mainnav__item a {
          width: 100%;
          display: block;
          text-decoration: none; }
        body #wrapper .js-modal .mainnav__item span {
          display: block; }
        body #wrapper .js-modal .mainnav__item:last-of-type {
          margin-bottom: 0; }
      body #wrapper .js-modal .mainnav__main {
        font-size: clamp(3.2rem, 2.5vw, 4.8rem);
        font-weight: 700;
        line-height: 1.3;
        position: relative; }
        @media (max-width: 1279px) {
          body #wrapper .js-modal .mainnav__main {
            line-height: 1.3; } }
        @media (max-width: 743px) {
          body #wrapper .js-modal .mainnav__main {
            font-size: 2.0rem;
            line-height: 1.0; } }
        @media (max-width: 1279px) {
          body #wrapper .js-modal .mainnav__main br {
            display: none; } }
        body #wrapper .js-modal .mainnav__main::after {
          width: 40px;
          height: 2px;
          display: block;
          content: "";
          background-color: #0C2847;
          position: absolute;
          top: 50%;
          left: -64px;
          margin-top: -1px; }
          @media (max-width: 743px) {
            body #wrapper .js-modal .mainnav__main::after {
              width: 20px;
              left: -30px; } }
      body #wrapper .js-modal .mainnav__br::after {
        top: 30%; }
        @media (max-width: 1279px) {
          body #wrapper .js-modal .mainnav__br::after {
            top: 50%; } }
      body #wrapper .js-modal .mainnav__sub {
        font-family: "Work Sans", sans-serif;
        font-size: clamp(1.2rem, calc(0.34vw + 0.95rem), 1.6rem);
        font-weight: 600;
        line-height: 1.0;
        padding-top: 15px; }
        @media (max-width: 1279px) {
          body #wrapper .js-modal .mainnav__sub {
            padding-top: 10px; } }
      @media (max-width: 743px) {
        body #wrapper .js-modal .mainnav__sns {
          padding-top: 10px; } }
      body #wrapper .js-modal .mainnav__sns-icons {
        display: flex;
        position: relative; }
        body #wrapper .js-modal .mainnav__sns-icons::after {
          width: 40px;
          height: 2px;
          display: block;
          content: "";
          background-color: #0C2847;
          position: absolute;
          top: 50%;
          left: -64px;
          margin-top: -1px;
          display: none; }
          @media (max-width: 743px) {
            body #wrapper .js-modal .mainnav__sns-icons::after {
              width: 20px;
              left: -30px; } }
        body #wrapper .js-modal .mainnav__sns-icons a {
          width: 40px;
          margin-right: 30px; }
  body #wrapper .main .box {
    width: 100%;
    position: relative;
    z-index: 2;
    background-color: #fff;
    /* 基本は白背景で動画を隠す */ }
    body #wrapper .main .box .inner {
      width: 100%;
      margin: 0 auto;
      padding: 0 5.21%; }
    body #wrapper .main .box .heading {
      position: relative;
      padding-bottom: 40px; }
      @media (max-width: 743px) {
        body #wrapper .main .box .heading {
          padding-bottom: 15px; } }
      body #wrapper .main .box .heading__main {
        font-size: clamp(6.4rem, 5vw, 9.6rem);
        font-weight: 700;
        line-height: 1.2;
        display: block; }
        @media (max-width: 743px) {
          body #wrapper .main .box .heading__main {
            font-size: 2.8rem; } }
        body #wrapper .main .box .heading__main-unit {
          display: inline-block;
          opacity: 0; }
          body #wrapper .main .box .heading__main-unit:nth-child(1) {
            animation-delay: 0.05s; }
          body #wrapper .main .box .heading__main-unit:nth-child(2) {
            animation-delay: 0.1s; }
          body #wrapper .main .box .heading__main-unit:nth-child(3) {
            animation-delay: 0.15s; }
          body #wrapper .main .box .heading__main-unit:nth-child(4) {
            animation-delay: 0.2s; }
          body #wrapper .main .box .heading__main-unit:nth-child(5) {
            animation-delay: 0.25s; }
          body #wrapper .main .box .heading__main-unit:nth-child(6) {
            animation-delay: 0.3s; }
          body #wrapper .main .box .heading__main-unit:nth-child(7) {
            animation-delay: 0.35s; }
          body #wrapper .main .box .heading__main-unit:nth-child(8) {
            animation-delay: 0.4s; }
          body #wrapper .main .box .heading__main-unit:nth-child(9) {
            animation-delay: 0.45s; }
          body #wrapper .main .box .heading__main-unit:nth-child(10) {
            animation-delay: 0.5s; }
          body #wrapper .main .box .heading__main-unit:nth-child(11) {
            animation-delay: 0.55s; }
          body #wrapper .main .box .heading__main-unit:nth-child(12) {
            animation-delay: 0.6s; }
          body #wrapper .main .box .heading__main-unit:nth-child(13) {
            animation-delay: 0.65s; }
          body #wrapper .main .box .heading__main-unit:nth-child(14) {
            animation-delay: 0.7s; }
          body #wrapper .main .box .heading__main-unit:nth-child(15) {
            animation-delay: 0.75s; }
          body #wrapper .main .box .heading__main-unit:nth-child(16) {
            animation-delay: 0.8s; }
          body #wrapper .main .box .heading__main-unit:nth-child(17) {
            animation-delay: 0.85s; }
          body #wrapper .main .box .heading__main-unit:nth-child(18) {
            animation-delay: 0.9s; }
          body #wrapper .main .box .heading__main-unit:nth-child(19) {
            animation-delay: 0.95s; }
          body #wrapper .main .box .heading__main-unit:nth-child(20) {
            animation-delay: 1s; }
          body #wrapper .main .box .heading__main-unit:nth-child(21) {
            animation-delay: 1.05s; }
          body #wrapper .main .box .heading__main-unit:nth-child(22) {
            animation-delay: 1.1s; }
          body #wrapper .main .box .heading__main-unit:nth-child(23) {
            animation-delay: 1.15s; }
          body #wrapper .main .box .heading__main-unit:nth-child(24) {
            animation-delay: 1.2s; }
          body #wrapper .main .box .heading__main-unit:nth-child(25) {
            animation-delay: 1.25s; }
          body #wrapper .main .box .heading__main-unit:nth-child(26) {
            animation-delay: 1.3s; }
          body #wrapper .main .box .heading__main-unit:nth-child(27) {
            animation-delay: 1.35s; }
          body #wrapper .main .box .heading__main-unit:nth-child(28) {
            animation-delay: 1.4s; }
          body #wrapper .main .box .heading__main-unit:nth-child(29) {
            animation-delay: 1.45s; }
          body #wrapper .main .box .heading__main-unit:nth-child(30) {
            animation-delay: 1.5s; }
        body #wrapper .main .box .heading__main-year {
          font-weight: 300;
          color: #827028; }
      body #wrapper .main .box .heading__sub {
        display: block;
        font-family: "Work Sans", sans-serif;
        padding-top: 20px; }
        @media (max-width: 743px) {
          body #wrapper .main .box .heading__sub {
            padding-top: 10px;
            line-height: 1.2; } }
        body #wrapper .main .box .heading__sub br {
          display: none; }
          @media (max-width: 743px) {
            body #wrapper .main .box .heading__sub br {
              display: block; } }
      body #wrapper .main .box .heading::after {
        width: 40px;
        height: 2px;
        background: #0C2847;
        display: block;
        content: "";
        position: absolute;
        left: 0;
        bottom: 0; }
        @media (max-width: 743px) {
          body #wrapper .main .box .heading::after {
            width: 20px; } }
      body #wrapper .main .box .heading.mv .heading__main .heading__main-unit {
        animation-name: slideInLeft;
        animation-duration: 0.8s;
        animation-timing-function: ease-out;
        animation-fill-mode: forwards; }
    body #wrapper .main .box .text {
      font-size: clamp(1.5rem, 0.938vw, 1.8rem); }
      @media (max-width: 743px) {
        body #wrapper .main .box .text {
          font-size: 1.4rem; } }
    body #wrapper .main .box .button__link {
      /* 横幅: 1920pxで438px、1280pxで約340pxになるよう可変 */
      width: clamp(34rem, 22.813vw, 43.8rem);
      /* 高さ: 38px固定、または微調整 */
      height: auto;
      padding-top: 30px;
      padding-bottom: 30px;
      background-color: #0C2847;
      border: solid 2px #0C2847;
      color: #fff;
      text-decoration: none;
      display: flex;
      align-items: center;
      /* 縦方向中央 */
      position: relative;
      /* 子要素の絶対配置の基準 */
      transition: all 0.3s; }
      @media (max-width: 743px) {
        body #wrapper .main .box .button__link {
          width: auto;
          display: inline-block;
          padding: 0; } }
      body #wrapper .main .box .button__link-text {
        width: 100%;
        /* フォントサイズ: 先ほどの計算通り */
        font-size: clamp(1.6rem, 1.094vw, 2.1rem);
        /* 左端から40px（1920px基準で可変にするなら 2.083vw） */
        /* 常に40px固定なら 4.0rem を使用します */
        padding-left: clamp(2.5rem, 2.083vw, 4rem);
        /* 1920pxで0.08em、1280pxで0.02em（ほぼ標準）まで可変 */
        letter-spacing: clamp(0.02em, 0.042vw, 0.08em);
        /* 改行させず、はみ出さないようにガード */
        white-space: nowrap;
        line-height: 1.0;
        display: block;
        text-align: left; }
        @media (max-width: 743px) {
          body #wrapper .main .box .button__link-text {
            font-size: 1.4rem;
            padding: 20px 40px 20px 20px; } }
        body #wrapper .main .box .button__link-text::after {
          width: 10px;
          height: 10px;
          border-top: 2px solid #fff;
          border-right: 2px solid #fff;
          content: "";
          position: absolute;
          /* 右端から40px（可変にするなら 2.083vw） */
          right: clamp(2.5rem, 2.083vw, 4rem);
          top: 50%;
          transform: translateY(-50%) rotate(45deg);
          transition: all 0.3s; }
          @media (max-width: 743px) {
            body #wrapper .main .box .button__link-text::after {
              right: 25px; } }
      body #wrapper .main .box .button__link:hover {
        background-color: #fff;
        color: #0C2847; }
        @media (max-width: 1279px) {
          body #wrapper .main .box .button__link:hover {
            background-color: #0C2847;
            color: #fff; } }
        body #wrapper .main .box .button__link:hover .button__link-text::after {
          border-color: #0C2847;
          transform: translateY(-50%) translateX(10px) rotate(45deg); }
          @media (max-width: 1279px) {
            body #wrapper .main .box .button__link:hover .button__link-text::after {
              border-color: #fff;
              transform: translateY(-50%) translateX(0px) rotate(45deg); } }
  body #wrapper .footer {
    width: 100%;
    background-color: #ECF1F2;
    position: relative;
    z-index: 2; }
    body #wrapper .footer__inner {
      width: 100%;
      padding: 62px 13.02% 102px; }
      @media (max-width: 743px) {
        body #wrapper .footer__inner {
          padding: 40px 10.42%; } }
    body #wrapper .footer__info {
      width: 100%;
      position: relative; }
      body #wrapper .footer__info-name {
        margin-bottom: 24px;
        opacity: 0;
        transition-duration: 0.6s;
        transform: translate(15px, 0);
        -webkit-transition-duration: 0.6s;
        -webkit-transform: translate(15px, 0);
        -moz-transition-duration: 0.6s;
        -moz-transform: translate(15px, 0);
        -ms-transition-duration: 0.6s;
        -ms-transform: translate(15px, 0);
        -o-transition-duration: 0.6s;
        -o-transform: translate(15px, 0); }
        body #wrapper .footer__info-name.mv {
          opacity: 1;
          transform: translate(0, 0);
          -webkit-transform: translate(0, 0);
          -moz-transform: translate(0, 0);
          -ms-transform: translate(0, 0);
          -o-transform: translate(0, 0); }
        body #wrapper .footer__info-name strong {
          display: block; }
          body #wrapper .footer__info-name strong .footer-logo-svg {
            width: clamp(20.5rem, 15.99vw, 30.7rem);
            color: #3FAA88; }
        body #wrapper .footer__info-name span {
          display: block;
          font-size: clamp(1.8rem, 1.094vw, 2.1rem);
          line-height: 1.0;
          margin-top: 30px; }
      body #wrapper .footer__info-add {
        display: block;
        font-size: clamp(1.5rem, 0.938vw, 1.8rem);
        font-weight: 400;
        font-style: normal;
        line-height: 1.5;
        opacity: 0;
        transition-duration: 0.6s;
        transform: translate(15px, 0);
        -webkit-transition-duration: 0.6s;
        -webkit-transform: translate(15px, 0);
        -moz-transition-duration: 0.6s;
        -moz-transform: translate(15px, 0);
        -ms-transition-duration: 0.6s;
        -ms-transform: translate(15px, 0);
        -o-transition-duration: 0.6s;
        -o-transform: translate(15px, 0); }
        body #wrapper .footer__info-add.mv {
          opacity: 1;
          transform: translate(0, 0);
          -webkit-transform: translate(0, 0);
          -moz-transform: translate(0, 0);
          -ms-transform: translate(0, 0);
          -o-transform: translate(0, 0); }
      body #wrapper .footer__info-snslist {
        display: flex;
        position: absolute;
        right: 0;
        bottom: 52px;
        opacity: 0;
        transition-duration: 0.6s;
        transform: translate(-15px, 0);
        -webkit-transition-duration: 0.6s;
        -webkit-transform: translate(-15px, 0);
        -moz-transition-duration: 0.6s;
        -moz-transform: translate(-15px, 0);
        -ms-transition-duration: 0.6s;
        -ms-transform: translate(-15px, 0);
        -o-transition-duration: 0.6s;
        -o-transform: translate(-15px, 0); }
        body #wrapper .footer__info-snslist.mv {
          opacity: 1;
          transform: translate(0, 0);
          -webkit-transform: translate(0, 0);
          -moz-transform: translate(0, 0);
          -ms-transform: translate(0, 0);
          -o-transform: translate(0, 0); }
        @media (max-width: 743px) {
          body #wrapper .footer__info-snslist {
            position: relative;
            right: auto;
            bottom: auto;
            margin-top: 40px; } }
      body #wrapper .footer__info-snsitem {
        width: 40px;
        margin-left: 30px; }
        @media (max-width: 743px) {
          body #wrapper .footer__info-snsitem {
            width: 28px;
            margin-left: 0;
            margin-right: 15px; } }
        body #wrapper .footer__info-snsitem img {
          width: 40px; }
          @media (max-width: 743px) {
            body #wrapper .footer__info-snsitem img {
              width: 100%; } }
      body #wrapper .footer__info-copy {
        position: absolute;
        bottom: 0;
        right: 0;
        opacity: 0;
        transition-duration: 0.6s;
        transform: translate(-15px, 0);
        -webkit-transition-duration: 0.6s;
        -webkit-transform: translate(-15px, 0);
        -moz-transition-duration: 0.6s;
        -moz-transform: translate(-15px, 0);
        -ms-transition-duration: 0.6s;
        -ms-transform: translate(-15px, 0);
        -o-transition-duration: 0.6s;
        -o-transform: translate(-15px, 0); }
        body #wrapper .footer__info-copy.mv {
          opacity: 1;
          transform: translate(0, 0);
          -webkit-transform: translate(0, 0);
          -moz-transform: translate(0, 0);
          -ms-transform: translate(0, 0);
          -o-transform: translate(0, 0); }
        @media (max-width: 743px) {
          body #wrapper .footer__info-copy {
            position: relative;
            right: auto;
            bottom: auto;
            margin-top: 40px; } }
body.menu-open #wrapper .header .bt_menumodal a span {
  background: #fff; }
  body.menu-open #wrapper .header .bt_menumodal a span::before {
    top: 0;
    transform: rotate(45deg); }
  body.menu-open #wrapper .header .bt_menumodal a span::after {
    top: 0;
    transform: rotate(-45deg); }

body #wrapper .contentstitle {
  text-align: center;
  margin-bottom: 50px; }
body #wrapper .contentssubtitle {
  text-align: center;
  margin-bottom: 50px; }
body #wrapper .newslist__item {
  border-bottom: solid 1px #0C2847;
  margin-bottom: 30px;
  padding-bottom: 30px; }
  body #wrapper .newslist__item:last-of-type {
    margin-bottom: 0; }
body #wrapper .newslist__link {
  display: block;
  text-decoration: none; }
body #wrapper .newslist__date {
  margin-bottom: 10px;
  line-height: 1.0; }
body #wrapper .newslist__category {
  margin-bottom: 15px;
  display: flex; }
  body #wrapper .newslist__category-name {
    display: inline-block;
    line-height: 1.0;
    background: #0C2847;
    color: #fff;
    margin-right: 10px;
    padding: 5px;
    border-radius: 2px; }
    body #wrapper .newslist__category-name:last-of-type {
      margin-right: 0; }
  body #wrapper .newslist__category-family {
    background: #3FAA88; }
body #wrapper .buttonbox {
  display: flex;
  justify-content: center; }
  body #wrapper .buttonbox .button {
    width: auto;
    display: inline-block;
    vertical-align: top;
    background: #0C2847;
    text-decoration: none;
    padding: 12px 30px 12px 30px;
    border-radius: 24px;
    transition: all 0.3s; }
    body #wrapper .buttonbox .button strong {
      font-size: 1.6rem;
      font-family: "Hiragino UD Sans W6 JIS2004";
      line-height: 1.0;
      color: #fff;
      display: inline-block;
      padding-right: 15px;
      position: relative; }
      body #wrapper .buttonbox .button strong::before, body #wrapper .buttonbox .button strong::after {
        width: 8px;
        /* 矢印の長さ */
        height: 2px;
        content: "";
        display: inline-block;
        background: #fff;
        border-radius: 2px;
        position: absolute;
        right: 0;
        transition: all 0.3s; }
      body #wrapper .buttonbox .button strong::after {
        transform: rotate(45deg);
        top: 50%;
        margin-top: -3px; }
      body #wrapper .buttonbox .button strong::before {
        transform: rotate(-45deg);
        top: 50%;
        margin-top: 1px; }
    body #wrapper .buttonbox .button:hover {
      background: #3FAA88; }
      body #wrapper .buttonbox .button:hover strong::before, body #wrapper .buttonbox .button:hover strong::after {
        right: -5px; }

html.is-visited #loading {
  display: none !important; }

#top.is-loading {
  overflow: hidden;
  height: 100svh; }
#top #loading {
  width: 100%;
  height: 100svh;
  position: fixed;
  z-index: 9999;
  background: #fff;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center; }
  #top #loading .loading__logo {
    width: 150px; }
    #top #loading .loading__logo svg {
      width: 100%;
      height: auto;
      display: block;
      fill: #0C2847;
      filter: drop-shadow(0.28px 0.28px 0.28px #231815); }
  #top #loading #circle {
    transform-origin: center;
    transform-box: fill-box;
    animation: logo-rotate 2s linear infinite;
    /* 1回のサイクルを4秒に設定（3秒回転 + 1秒停止のようなイメージ） */
    /*animation: logo-rotate-pause 2s ease-in-out infinite;*/ }
#top #wrapper .main {
  /*.commemorative{
      padding-top: 100px;
      padding-bottom: 100px;
      background-color: $bg-color;
      padding-left: 5.21%;
      .heading{
          margin-bottom: 40px;
          &__main{
              color: #3B3313;
          }
          &__sub{
              color: #3B3313;
          }
          &::after{
              background: #3B3313;
          }
      }
      &__inner{
          width: 100%;
          background-image: url("../images/bg_commemorative.webp");
          background-repeat: no-repeat;
          background-position: center;
          background-size: cover;
          padding-left: 8.72%;
      }
      &__photo{
          &-item{
              mix-blend-mode: multiply;
          }
      }
      &__text{
          color: #3B3313;
          margin-bottom: 94px;
      }
  }*/ }
  #top #wrapper .main .video {
    width: 100%;
    height: calc(100svh - 133px);
    /* ディスプレイいっぱい */
    position: fixed;
    /* 画面上部に張り付く */
    top: 133px;
    z-index: 1;
    /* コンテンツより下に配置 */
    background-color: #000;
    overflow: hidden; }
    @media (max-width: 743px) {
      #top #wrapper .main .video {
        height: calc(100svh - 90px);
        top: 90px; } }
    #top #wrapper .main .video__inner {
      width: 100%;
      height: 100%;
      object-fit: cover;
      /* 動画を画面いっぱいに広げる */ }
    #top #wrapper .main .video__image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      /* 動画を画面いっぱいに広げる */ }
      @media (max-width: 743px) {
        #top #wrapper .main .video__image.pcmovie {
          display: none; } }
      #top #wrapper .main .video__image.spmovie {
        display: none; }
        @media (max-width: 743px) {
          #top #wrapper .main .video__image.spmovie {
            display: block; } }
      #top #wrapper .main .video__image video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* 動画を画面いっぱいに広げる */ }
  #top #wrapper .main .video-spacer {
    width: 100%;
    height: calc(100svh - 133px);
    /* この高さ分だけ動画が見える */
    background-color: transparent !important;
    /* 透明にして動画を出す */
    pointer-events: none;
    /* 下の動画に干渉しないように */
    z-index: 2; }
    @media (max-width: 743px) {
      #top #wrapper .main .video-spacer {
        height: calc(100svh - 90px); } }
  #top #wrapper .main .about {
    background-color: transparent !important;
    /* 動画を透かす */
    z-index: 2; }
    #top #wrapper .main .about .aboutlogo {
      height: calc(100svh - 133px);
      display: flex;
      align-items: center;
      justify-content: center; }
      @media (max-width: 743px) {
        #top #wrapper .main .about .aboutlogo {
          height: calc(100svh - 90px); } }
      #top #wrapper .main .about .aboutlogo__img {
        width: 418px; }
        @media (max-width: 743px) {
          #top #wrapper .main .about .aboutlogo__img {
            width: 60%; } }
    #top #wrapper .main .about__inner {
      background-color: #fff;
      padding-top: 100px;
      /* 余白調整 */
      padding-bottom: 248px; }
      @media (max-width: 1279px) {
        #top #wrapper .main .about__inner {
          padding-bottom: 160px; } }
      @media (max-width: 743px) {
        #top #wrapper .main .about__inner {
          padding-top: 50px;
          padding-bottom: 80px; } }
    #top #wrapper .main .about .aboutheading {
      font-size: clamp(5.3rem, 4.167vw, 8rem);
      font-family: "Work Sans", sans-serif;
      font-weight: 700;
      color: #827028;
      text-align: center;
      letter-spacing: -0.02em;
      margin-bottom: 64px; }
      #top #wrapper .main .about .aboutheading br {
        display: none; }
        @media (max-width: 1279px) {
          #top #wrapper .main .about .aboutheading br {
            display: block; } }
      @media (max-width: 1279px) {
        #top #wrapper .main .about .aboutheading {
          line-height: 1.2; } }
      @media (max-width: 743px) {
        #top #wrapper .main .about .aboutheading {
          font-size: 3.2rem;
          line-height: 1.2;
          margin-bottom: 40px; } }
      #top #wrapper .main .about .aboutheading__main {
        display: block; }
        #top #wrapper .main .about .aboutheading__main-unit {
          display: inline-block;
          opacity: 0; }
          #top #wrapper .main .about .aboutheading__main-unit:nth-child(1) {
            animation-delay: 0.05s; }
          #top #wrapper .main .about .aboutheading__main-unit:nth-child(2) {
            animation-delay: 0.1s; }
          #top #wrapper .main .about .aboutheading__main-unit:nth-child(3) {
            animation-delay: 0.15s; }
          #top #wrapper .main .about .aboutheading__main-unit:nth-child(4) {
            animation-delay: 0.2s; }
          #top #wrapper .main .about .aboutheading__main-unit:nth-child(5) {
            animation-delay: 0.25s; }
          #top #wrapper .main .about .aboutheading__main-unit:nth-child(6) {
            animation-delay: 0.3s; }
          #top #wrapper .main .about .aboutheading__main-unit:nth-child(7) {
            animation-delay: 0.35s; }
          #top #wrapper .main .about .aboutheading__main-unit:nth-child(8) {
            animation-delay: 0.4s; }
          #top #wrapper .main .about .aboutheading__main-unit:nth-child(9) {
            animation-delay: 0.45s; }
          #top #wrapper .main .about .aboutheading__main-unit:nth-child(10) {
            animation-delay: 0.5s; }
          #top #wrapper .main .about .aboutheading__main-unit:nth-child(11) {
            animation-delay: 0.55s; }
          #top #wrapper .main .about .aboutheading__main-unit:nth-child(12) {
            animation-delay: 0.6s; }
          #top #wrapper .main .about .aboutheading__main-unit:nth-child(13) {
            animation-delay: 0.65s; }
          #top #wrapper .main .about .aboutheading__main-unit:nth-child(14) {
            animation-delay: 0.7s; }
          #top #wrapper .main .about .aboutheading__main-unit:nth-child(15) {
            animation-delay: 0.75s; }
          #top #wrapper .main .about .aboutheading__main-unit:nth-child(16) {
            animation-delay: 0.8s; }
          #top #wrapper .main .about .aboutheading__main-unit:nth-child(17) {
            animation-delay: 0.85s; }
          #top #wrapper .main .about .aboutheading__main-unit:nth-child(18) {
            animation-delay: 0.9s; }
          #top #wrapper .main .about .aboutheading__main-unit:nth-child(19) {
            animation-delay: 0.95s; }
          #top #wrapper .main .about .aboutheading__main-unit:nth-child(20) {
            animation-delay: 1s; }
          #top #wrapper .main .about .aboutheading__main-unit:nth-child(21) {
            animation-delay: 1.05s; }
          #top #wrapper .main .about .aboutheading__main-unit:nth-child(22) {
            animation-delay: 1.1s; }
          #top #wrapper .main .about .aboutheading__main-unit:nth-child(23) {
            animation-delay: 1.15s; }
          #top #wrapper .main .about .aboutheading__main-unit:nth-child(24) {
            animation-delay: 1.2s; }
          #top #wrapper .main .about .aboutheading__main-unit:nth-child(25) {
            animation-delay: 1.25s; }
          #top #wrapper .main .about .aboutheading__main-unit:nth-child(26) {
            animation-delay: 1.3s; }
          #top #wrapper .main .about .aboutheading__main-unit:nth-child(27) {
            animation-delay: 1.35s; }
          #top #wrapper .main .about .aboutheading__main-unit:nth-child(28) {
            animation-delay: 1.4s; }
          #top #wrapper .main .about .aboutheading__main-unit:nth-child(29) {
            animation-delay: 1.45s; }
          #top #wrapper .main .about .aboutheading__main-unit:nth-child(30) {
            animation-delay: 1.5s; }
      #top #wrapper .main .about .aboutheading.mv .aboutheading__main .aboutheading__main-unit {
        animation-name: slideInLeft;
        animation-duration: 0.8s;
        animation-timing-function: ease-out;
        animation-fill-mode: forwards; }
    #top #wrapper .main .about__text {
      font-size: clamp(1.8rem, 1.094vw, 2.1rem);
      text-align: center;
      margin-bottom: 40px;
      opacity: 0;
      transition-duration: 0.9s;
      transform: translate(0, 20px);
      -webkit-transition-duration: 0.9s;
      -webkit-transform: translate(0, 20px);
      -moz-transition-duration: 0.9s;
      -moz-transform: translate(0, 20px);
      -ms-transition-duration: 0.9s;
      -ms-transform: translate(0, 20px);
      -o-transition-duration: 0.9s;
      -o-transform: translate(0, 20px); }
      #top #wrapper .main .about__text.mv {
        opacity: 1;
        transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0); }
      @media (max-width: 743px) {
        #top #wrapper .main .about__text {
          font-size: 1.4rem;
          text-align: left;
          padding: 0 10.42%; } }
      @media (max-width: 743px) {
        #top #wrapper .main .about__text br {
          display: none; } }
      #top #wrapper .main .about__text:last-of-type {
        margin-bottom: 0; }
  #top #wrapper .main .topmessage::after {
    width: 100%;
    height: 150px;
    display: block;
    content: "";
    background-color: #ECF1F2;
    position: absolute;
    left: 0;
    bottom: 0; }
    @media (max-width: 743px) {
      #top #wrapper .main .topmessage::after {
        height: 50px; } }
  #top #wrapper .main .topmessage .heading {
    margin-bottom: 42px; }
    @media (max-width: 743px) {
      #top #wrapper .main .topmessage .heading {
        margin-bottom: 22px; } }
    #top #wrapper .main .topmessage .heading__main {
      color: #fff; }
    #top #wrapper .main .topmessage .heading::after {
      background: #fff; }
  #top #wrapper .main .topmessage__inner {
    position: relative;
    padding-top: 100px;
    z-index: 3; }
    @media (max-width: 1279px) {
      #top #wrapper .main .topmessage__inner {
        padding-top: 0;
        padding-left: 0;
        padding-right: 0; } }
  #top #wrapper .main .topmessage__img {
    /*width: 34.88%;*/
    width: 30%;
    position: absolute;
    top: 0;
    right: 5.21%;
    z-index: 5;
    opacity: 0;
    transition-duration: 0.6s;
    transform: translate(-15px, 0);
    -webkit-transition-duration: 0.6s;
    -webkit-transform: translate(-15px, 0);
    -moz-transition-duration: 0.6s;
    -moz-transform: translate(-15px, 0);
    -ms-transition-duration: 0.6s;
    -ms-transform: translate(-15px, 0);
    -o-transition-duration: 0.6s;
    -o-transform: translate(-15px, 0); }
    @media (max-width: 1279px) {
      #top #wrapper .main .topmessage__img {
        width: 100%;
        position: relative;
        top: auto;
        right: auto;
        text-align: right;
        margin-bottom: -30px;
        padding-left: 5.21%; } }
    @media (max-width: 743px) {
      #top #wrapper .main .topmessage__img {
        padding-left: 0; } }
    #top #wrapper .main .topmessage__img img {
      opacity: 0;
      mask-image: linear-gradient(135deg, black 35%, transparent 65%);
      -webkit-mask-image: linear-gradient(135deg, black 35%, transparent 65%);
      mask-size: 300% 300%;
      -webkit-mask-size: 300% 300%;
      mask-position: bottom right;
      -webkit-mask-position: bottom right;
      transition: opacity 1.8s ease, mask-position 2.0s ease, -webkit-mask-position 2.0s ease; }
      @media (max-width: 743px) {
        #top #wrapper .main .topmessage__img img {
          width: 66.6%; } }
    #top #wrapper .main .topmessage__img.mv {
      opacity: 1;
      transform: translate(0, 0);
      -webkit-transform: translate(0, 0);
      -moz-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
      -o-transform: translate(0, 0); }
      #top #wrapper .main .topmessage__img.mv img {
        opacity: 1;
        mask-position: top left;
        -webkit-mask-position: top left; }
  #top #wrapper .main .topmessage__textbox {
    width: 69.77%;
    padding: 100px 11.86% 66px 8.72%;
    background: #3FAA88;
    background-image: linear-gradient(135deg, #3faa88 20%, #0c2847 80%);
    color: #fff;
    opacity: 0;
    transition-duration: 0.6s;
    transform: translate(15px, 0);
    -webkit-transition-duration: 0.6s;
    -webkit-transform: translate(15px, 0);
    -moz-transition-duration: 0.6s;
    -moz-transform: translate(15px, 0);
    -ms-transition-duration: 0.6s;
    -ms-transform: translate(15px, 0);
    -o-transition-duration: 0.6s;
    -o-transform: translate(15px, 0); }
    #top #wrapper .main .topmessage__textbox.mv {
      opacity: 1;
      transform: translate(0, 0);
      -webkit-transform: translate(0, 0);
      -moz-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
      -o-transform: translate(0, 0); }
    @media (max-width: 1279px) {
      #top #wrapper .main .topmessage__textbox {
        width: calc(100% - 5.21%); } }
    @media (max-width: 743px) {
      #top #wrapper .main .topmessage__textbox {
        padding: 65px 8.72%; } }
  #top #wrapper .main .topmessage__text {
    margin-bottom: 40px; }
    @media (max-width: 743px) {
      #top #wrapper .main .topmessage__text br {
        display: none; } }
  #top #wrapper .main .topmessage__profile {
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-family: "Noto Serif JP", serif; }
    @media (max-width: 743px) {
      #top #wrapper .main .topmessage__profile {
        display: block; } }
    #top #wrapper .main .topmessage__profile-name {
      font-size: clamp(2.7rem, 2.083vw, 4rem);
      padding-left: 36px; }
      @media (max-width: 743px) {
        #top #wrapper .main .topmessage__profile-name {
          display: block; } }
  #top #wrapper .main .logo {
    padding-top: 100px;
    background-color: #ECF1F2;
    padding-right: 5.21%; }
    @media (max-width: 743px) {
      #top #wrapper .main .logo {
        padding-top: 50px; } }
    #top #wrapper .main .logo .heading {
      margin-bottom: 40px; }
      @media (max-width: 743px) {
        #top #wrapper .main .logo .heading {
          margin-bottom: 20px; } }
      #top #wrapper .main .logo .heading::after {
        left: auto;
        right: 0; }
    #top #wrapper .main .logo__inner {
      background-color: #fff;
      display: flex;
      padding-top: 110px;
      padding-bottom: 110px;
      padding-right: 8.72%; }
      @media (max-width: 1279px) {
        #top #wrapper .main .logo__inner {
          display: block;
          padding-left: 8.72%; } }
      @media (max-width: 743px) {
        #top #wrapper .main .logo__inner {
          padding-top: 60px;
          padding-bottom: 60px; } }
    #top #wrapper .main .logo__logomovie {
      width: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition-duration: 0.6s;
      transform: translate(15px, 0);
      -webkit-transition-duration: 0.6s;
      -webkit-transform: translate(15px, 0);
      -moz-transition-duration: 0.6s;
      -moz-transform: translate(15px, 0);
      -ms-transition-duration: 0.6s;
      -ms-transform: translate(15px, 0);
      -o-transition-duration: 0.6s;
      -o-transform: translate(15px, 0); }
      #top #wrapper .main .logo__logomovie.mv {
        opacity: 1;
        transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0); }
      @media (max-width: 1279px) {
        #top #wrapper .main .logo__logomovie {
          width: 100%;
          margin-bottom: 80px;
          aspect-ratio: 1; } }
      #top #wrapper .main .logo__logomovie-inner {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        --x-gradient: linear-gradient(90deg, #827028 0 20px, transparent 0 calc(100% - 20px), #827028 calc(100% - 20px));
        --y-gradient: linear-gradient(#827028 0 20px, transparent 0 calc(100% - 20px), #827028 calc(100% - 20px));
        background-image: var(--x-gradient), var(--y-gradient), var(--x-gradient), var(--y-gradient);
        background-repeat: no-repeat;
        background-size: 100% 2px, 2px 100%, 100% 2px, 2px 100%;
        background-position: top, right, bottom, left; }
      #top #wrapper .main .logo__logomovie-icon {
        width: 59.21%; }
        #top #wrapper .main .logo__logomovie-icon img {
          width: 100%;
          opacity: 0;
          mask-image: linear-gradient(135deg, black 35%, transparent 65%);
          -webkit-mask-image: linear-gradient(135deg, black 35%, transparent 65%);
          mask-size: 300% 300%;
          -webkit-mask-size: 300% 300%;
          mask-position: bottom right;
          -webkit-mask-position: bottom right;
          transition: opacity 1.8s ease, mask-position 2.0s ease, -webkit-mask-position 2.0s ease; }
        #top #wrapper .main .logo__logomovie-icon.mv img {
          opacity: 1;
          mask-position: top left;
          -webkit-mask-position: top left; }
    #top #wrapper .main .logo__textbox {
      width: 50%;
      text-align: right;
      opacity: 0;
      transition-duration: 0.6s;
      transform: translate(-15px, 0);
      -webkit-transition-duration: 0.6s;
      -webkit-transform: translate(-15px, 0);
      -moz-transition-duration: 0.6s;
      -moz-transform: translate(-15px, 0);
      -ms-transition-duration: 0.6s;
      -ms-transform: translate(-15px, 0);
      -o-transition-duration: 0.6s;
      -o-transform: translate(-15px, 0); }
      #top #wrapper .main .logo__textbox.mv {
        opacity: 1;
        transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0); }
      @media (max-width: 1279px) {
        #top #wrapper .main .logo__textbox {
          width: 100%; } }
    @media (max-width: 743px) {
      #top #wrapper .main .logo__text {
        text-align: left; } }
    @media (max-width: 743px) {
      #top #wrapper .main .logo__text br {
        display: none; } }
  #top #wrapper .main .commemorative {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #ECF1F2;
    padding-left: 5.21%; }
    @media (max-width: 743px) {
      #top #wrapper .main .commemorative {
        padding-top: 50px;
        padding-bottom: 50px; } }
    #top #wrapper .main .commemorative .heading {
      margin-bottom: 40px; }
      @media (max-width: 743px) {
        #top #wrapper .main .commemorative .heading {
          margin-bottom: 20px; } }
      #top #wrapper .main .commemorative .heading__main {
        color: #3B3313; }
      #top #wrapper .main .commemorative .heading__sub {
        color: #3B3313; }
      #top #wrapper .main .commemorative .heading::after {
        background: #3B3313; }
    #top #wrapper .main .commemorative__inner {
      width: 100%;
      /* 念のため最小高さを設定（デザイン画のボリュームから推測） */
      /*min-height: 100vh;*/
      /* 画面いっぱいの高さを基準にする */
      background-image: url("../images/bg_commemorative.webp");
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
      padding: 0;
      position: relative;
      /* Gridレイアウトを定義 */
      display: grid;
      /* 左（テキスト）と右（画像基本エリア）を1frずつ */
      grid-template-columns: 1fr 1fr;
      /* 全体を同じグリッドエリア（1行1列目）に重ねる */
      grid-template-areas: "content content";
      aspect-ratio: 1920 / 1030;
      /* デザイン画の比率を指定 */ }
      @media (max-width: 1279px) {
        #top #wrapper .main .commemorative__inner {
          display: block;
          aspect-ratio: auto;
          /* 比率を解除して中身に合わせる */
          height: auto;
          padding-top: 50px; } }
    #top #wrapper .main .commemorative__textbox {
      /* グリッドエリア「content」に配置 */
      grid-area: content;
      /* 左半分（1列目）に収まるように指定 */
      grid-column: 1 / 2;
      position: relative;
      z-index: 10;
      /* 画像より上に表示 */
      /* 【重要】テキストを縦中央に配置 */
      align-self: center;
      padding-left: 8.72%;
      opacity: 0;
      transition-duration: 0.6s;
      transform: translate(15px, 0);
      -webkit-transition-duration: 0.6s;
      -webkit-transform: translate(15px, 0);
      -moz-transition-duration: 0.6s;
      -moz-transform: translate(15px, 0);
      -ms-transition-duration: 0.6s;
      -ms-transform: translate(15px, 0);
      -o-transition-duration: 0.6s;
      -o-transform: translate(15px, 0); }
      #top #wrapper .main .commemorative__textbox.mv {
        opacity: 1;
        transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0); }
      @media (max-width: 1279px) {
        #top #wrapper .main .commemorative__textbox {
          padding: 8.72%; } }
    #top #wrapper .main .commemorative__text {
      color: #3B3313;
      margin-bottom: 94px; }
      @media (max-width: 743px) {
        #top #wrapper .main .commemorative__text {
          margin-bottom: 40px; } }
      @media (max-width: 743px) {
        #top #wrapper .main .commemorative__text br {
          display: none; } }
    #top #wrapper .main .commemorative__photobox {
      /* グリッドエリア「content」に配置（テキストと重なる） */
      grid-area: content;
      /* 右半分（2列目）を基本とするが、中央をまたぐために全幅にする */
      grid-column: 1 / 3;
      position: relative;
      /* ここを基準に中の画像をabsolute配置 */
      z-index: 3;
      /* テキストの下に配置 */
      /* 【重要】この要素自体の高さを中の画像に合わせて保つ */
      /* そのために、一番下に来る画像に合わせた padding-bottom を設定する */
      /* 例：一番下の画像が top: 90% にあるなら、10% + 画像の高さ分の余白が必要 */
      padding-bottom: 20%;
      mix-blend-mode: multiply;
      opacity: 0;
      transition-duration: 0.6s;
      transform: translate(-15px, 0);
      -webkit-transition-duration: 0.6s;
      -webkit-transform: translate(-15px, 0);
      -moz-transition-duration: 0.6s;
      -moz-transform: translate(-15px, 0);
      -ms-transition-duration: 0.6s;
      -ms-transform: translate(-15px, 0);
      -o-transition-duration: 0.6s;
      -o-transform: translate(-15px, 0); }
      #top #wrapper .main .commemorative__photobox.mv {
        opacity: 1;
        transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0); }
      @media (max-width: 1279px) {
        #top #wrapper .main .commemorative__photobox {
          padding-bottom: 0; } }
    #top #wrapper .main .commemorative__photo {
      width: 100%;
      height: 100%;
      /* 親(photobox)の高さに合わせる */ }
      @media (max-width: 1279px) {
        #top #wrapper .main .commemorative__photo {
          height: auto;
          position: relative;
          text-align: center;
          aspect-ratio: 390 / 358; } }
      #top #wrapper .main .commemorative__photo-item {
        position: absolute;
        mix-blend-mode: multiply;
        opacity: 0;
        transform: scale(0.9) translateY(20px);
        transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
        #top #wrapper .main .commemorative__photo-item:nth-child(1) {
          transition-delay: 0.1s; }
        #top #wrapper .main .commemorative__photo-item:nth-child(4) {
          transition-delay: 0.3s; }
        #top #wrapper .main .commemorative__photo-item:nth-child(6) {
          transition-delay: 0.5s; }
        #top #wrapper .main .commemorative__photo-item:nth-child(2) {
          transition-delay: 0.7s; }
        #top #wrapper .main .commemorative__photo-item:nth-child(5) {
          transition-delay: 0.9s; }
        #top #wrapper .main .commemorative__photo-item:nth-child(3) {
          transition-delay: 1.1s; }
        #top #wrapper .main .commemorative__photo-item:nth-child(1) {
          width: 10.49%;
          top: 7.38%;
          right: 21.61%; }
          @media (max-width: 1279px) {
            #top #wrapper .main .commemorative__photo-item:nth-child(1) {
              width: 18.72%;
              top: 0;
              right: auto;
              left: 24.87%; } }
        #top #wrapper .main .commemorative__photo-item:nth-child(2) {
          width: 23.02%;
          top: 12.91%;
          right: 4.48%; }
          @media (max-width: 1279px) {
            #top #wrapper .main .commemorative__photo-item:nth-child(2) {
              width: 40.77%;
              top: 5.71%;
              right: 25.13%; } }
        #top #wrapper .main .commemorative__photo-item:nth-child(3) {
          width: 17.09%;
          bottom: 28.83%;
          right: 36.84%; }
          @media (max-width: 1279px) {
            #top #wrapper .main .commemorative__photo-item:nth-child(3) {
              width: 30.26%;
              bottom: 28.57%;
              left: 7.69%;
              right: auto; } }
        #top #wrapper .main .commemorative__photo-item:nth-child(4) {
          width: 21.76%;
          bottom: 10.19%;
          right: 23%; }
          @media (max-width: 1279px) {
            #top #wrapper .main .commemorative__photo-item:nth-child(4) {
              width: 38.46%;
              bottom: 7.79%;
              left: 20.51%;
              right: auto; } }
        #top #wrapper .main .commemorative__photo-item:nth-child(5) {
          width: 15.82%;
          bottom: 15.15%;
          right: 9.11%; }
          @media (max-width: 1279px) {
            #top #wrapper .main .commemorative__photo-item:nth-child(5) {
              width: 27.95%;
              bottom: 13.51%;
              right: 16.92%; } }
        #top #wrapper .main .commemorative__photo-item:nth-child(6) {
          width: 23.74%;
          bottom: 2.23%;
          right: 0; }
          @media (max-width: 1279px) {
            #top #wrapper .main .commemorative__photo-item:nth-child(6) {
              width: 42.05%;
              bottom: 0;
              right: 0; } }
      #top #wrapper .main .commemorative__photo.mv .commemorative__photo-item {
        opacity: 1;
        transform: scale(1) translateY(0); }
  #top #wrapper .main .event__inner {
    padding-top: 180px;
    padding-bottom: 300px; }
    @media (max-width: 1279px) {
      #top #wrapper .main .event__inner {
        padding-top: 100px;
        padding-bottom: 150px; } }
    @media (max-width: 743px) {
      #top #wrapper .main .event__inner {
        padding-top: 70px;
        padding-bottom: 50px; } }
  #top #wrapper .main .event .heading {
    text-align: center;
    margin-bottom: 40px; }
    @media (max-width: 743px) {
      #top #wrapper .main .event .heading {
        margin-bottom: 20px; } }
    #top #wrapper .main .event .heading__main {
      /* グラデーションを背景として設定 */
      /* 135deg = 左上から右下 */
      background-image: linear-gradient(135deg, #3faa88 20%, #0c2847 80%);
      /* 背景をテキストの形に切り抜く（これが肝です） */
      -webkit-background-clip: text;
      background-clip: text;
      /* テキスト自体の色を透明にして、背景のグラデーションを見せる */
      color: transparent;
      /* インライン要素だとグラデーションの範囲がズレやすいため、blockかinline-blockに */
      display: inline-block; }
      #top #wrapper .main .event .heading__main-unit {
        color: inherit;
        opacity: 1;
        animation: none !important; }
    #top #wrapper .main .event .heading::after {
      left: 50%;
      margin-left: -20px; }
      @media (max-width: 743px) {
        #top #wrapper .main .event .heading::after {
          margin-left: -10px; } }
    #top #wrapper .main .event .heading.mv .heading__main-unit {
      animation: none !important; }
  #top #wrapper .main .event__text {
    text-align: center;
    margin-bottom: 100px; }
    @media (max-width: 1279px) {
      #top #wrapper .main .event__text {
        margin-bottom: 60px; } }
    #top #wrapper .main .event__text br {
      display: none; }
      @media (max-width: 743px) {
        #top #wrapper .main .event__text br {
          display: block; } }
  #top #wrapper .main .event .eventnav {
    padding: 0 8.72%; }
    @media (max-width: 743px) {
      #top #wrapper .main .event .eventnav {
        padding: 0 5.21%; } }
    #top #wrapper .main .event .eventnav .eventlist {
      display: grid;
      grid-template-columns: 1fr 1fr;
      /* 行の高さが一番高い要素に自動で揃う設定 */
      grid-auto-rows: 1fr;
      gap: 40px; }
      @media (max-width: 1279px) {
        #top #wrapper .main .event .eventnav .eventlist {
          display: block; } }
      #top #wrapper .main .event .eventnav .eventlist__item {
        /* li自体の高さを100%に（念のため） */
        height: 100%;
        opacity: 0;
        transition-duration: 0.9s;
        transform: translate(0, 20px);
        -webkit-transition-duration: 0.9s;
        -webkit-transform: translate(0, 20px);
        -moz-transition-duration: 0.9s;
        -moz-transform: translate(0, 20px);
        -ms-transition-duration: 0.9s;
        -ms-transform: translate(0, 20px);
        -o-transition-duration: 0.9s;
        -o-transform: translate(0, 20px);
        position: relative; }
        #top #wrapper .main .event .eventnav .eventlist__item::after {
          width: auto;
          display: inline-block;
          content: "COMING SOON";
          background-color: #fff;
          border: solid 2px #8C9490;
          border-radius: 6px;
          box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.16);
          padding: 8px 10px;
          font-size: 1.8rem;
          font-family: "Work Sans", sans-serif;
          font-weight: 600;
          line-height: 1.0;
          color: #8C9490;
          position: absolute;
          top: -20px;
          left: -20px; }
          @media (max-width: 743px) {
            #top #wrapper .main .event .eventnav .eventlist__item::after {
              border-width: 1px;
              border-radius: 4px;
              padding: 6px 6px;
              font-size: 1.0rem;
              top: -10px;
              left: -10px; } }
        #top #wrapper .main .event .eventnav .eventlist__item.mv {
          opacity: 1;
          transform: translate(0, 0);
          -webkit-transform: translate(0, 0);
          -moz-transform: translate(0, 0);
          -ms-transform: translate(0, 0);
          -o-transform: translate(0, 0); }
        @media (max-width: 1279px) {
          #top #wrapper .main .event .eventnav .eventlist__item {
            margin-bottom: 40px; } }
        @media (max-width: 743px) {
          #top #wrapper .main .event .eventnav .eventlist__item {
            margin-bottom: 20px; } }
        @media (max-width: 1279px) {
          #top #wrapper .main .event .eventnav .eventlist__item:last-of-type {
            margin-bottom: 0; } }
        #top #wrapper .main .event .eventnav .eventlist__item-link {
          width: 100%;
          height: 100%;
          background-color: #3FAA88;
          color: #fff;
          text-decoration: none;
          display: flex;
          align-items: center;
          /* 余白をvwにするとより可変らしくなります（例: 40px相当） */
          padding: clamp(3.5rem, 2.604vw, 5rem) clamp(6rem, 4.167vw, 8rem) clamp(3.5rem, 2.604vw, 5rem) clamp(2rem, 2.083vw, 4rem);
          position: relative;
          /* リンク無効 */
          pointer-events: none; }
          @media (max-width: 743px) {
            #top #wrapper .main .event .eventnav .eventlist__item-link {
              padding: 20px 20px; } }
          #top #wrapper .main .event .eventnav .eventlist__item-link::after {
            width: 16px;
            height: 16px;
            border-top: 2px solid #fff;
            border-right: 2px solid #fff;
            content: "";
            position: absolute;
            /* 右端から40px（可変にするなら 2.083vw） */
            right: clamp(2.5rem, 2.083vw, 4rem);
            top: 50%;
            transform: translateY(-50%) rotate(45deg);
            /* リンク無効 */
            display: none; }
        #top #wrapper .main .event .eventnav .eventlist__item-number {
          /* 4.8rem (48px) 基準 */
          /* 計算: 4.8 / 1920 * 100 = 0.25vw */
          font-size: clamp(3.2rem, 2.5vw, 4.8rem);
          font-weight: bold;
          line-height: 1.3;
          margin-right: clamp(2rem, 2.083vw, 3rem);
          padding-right: clamp(2rem, 2.083vw, 3.6rem);
          font-family: "Work Sans", sans-serif;
          font-weight: 300;
          display: inline-block;
          min-width: 1.2em;
          position: relative; }
          @media (max-width: 743px) {
            #top #wrapper .main .event .eventnav .eventlist__item-number {
              font-size: 1.8rem;
              margin-right: 20px;
              padding-right: 20px; } }
          #top #wrapper .main .event .eventnav .eventlist__item-number::after {
            width: 2px;
            height: calc(100% + 10px);
            display: block;
            content: "";
            background-color: #fff;
            position: absolute;
            top: 50%;
            right: 0;
            transform: translateY(-50%); }
        #top #wrapper .main .event .eventnav .eventlist__item-text {
          /* 3.2rem (32px) 基準 */
          /* 計算: 3.2 / 1920 * 100 = 0.167vw */
          font-size: clamp(2rem, 1.667vw, 3.2rem);
          font-weight: 700;
          line-height: 1.3; }
          @media (max-width: 743px) {
            #top #wrapper .main .event .eventnav .eventlist__item-text {
              font-size: 1.6rem; } }
  #top #wrapper .main .company {
    padding-top: 100px;
    background-color: #ECF1F2; }
    @media (max-width: 1279px) {
      #top #wrapper .main .company {
        padding: 5.21%;
        padding-bottom: 0; } }
    #top #wrapper .main .company .heading {
      margin-bottom: 40px;
      padding-bottom: 0; }
      @media (max-width: 743px) {
        #top #wrapper .main .company .heading {
          margin-bottom: 20px; } }
      #top #wrapper .main .company .heading::after {
        display: none; }
    #top #wrapper .main .company__inner {
      padding: 0;
      display: flex;
      align-items: center;
      flex-direction: row-reverse;
      background-color: #fff; }
      @media (max-width: 1279px) {
        #top #wrapper .main .company__inner {
          display: block; } }
    #top #wrapper .main .company__info {
      width: 52.08%;
      padding-left: 13.02%;
      opacity: 0;
      transition-duration: 0.6s;
      transform: translate(15px, 0);
      -webkit-transition-duration: 0.6s;
      -webkit-transform: translate(15px, 0);
      -moz-transition-duration: 0.6s;
      -moz-transform: translate(15px, 0);
      -ms-transition-duration: 0.6s;
      -ms-transform: translate(15px, 0);
      -o-transition-duration: 0.6s;
      -o-transform: translate(15px, 0); }
      #top #wrapper .main .company__info.mv {
        opacity: 1;
        transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0); }
      @media (max-width: 1279px) {
        #top #wrapper .main .company__info {
          width: 100%;
          padding: 5.21%; } }
    #top #wrapper .main .company__img {
      width: 47.92%;
      opacity: 0;
      transition-duration: 0.6s;
      transform: translate(-15px, 0);
      -webkit-transition-duration: 0.6s;
      -webkit-transform: translate(-15px, 0);
      -moz-transition-duration: 0.6s;
      -moz-transform: translate(-15px, 0);
      -ms-transition-duration: 0.6s;
      -ms-transform: translate(-15px, 0);
      -o-transition-duration: 0.6s;
      -o-transform: translate(-15px, 0); }
      @media (max-width: 1279px) {
        #top #wrapper .main .company__img {
          width: 100%; } }
      #top #wrapper .main .company__img img {
        opacity: 0;
        mask-image: linear-gradient(135deg, black 35%, transparent 65%);
        -webkit-mask-image: linear-gradient(135deg, black 35%, transparent 65%);
        mask-size: 300% 300%;
        -webkit-mask-size: 300% 300%;
        mask-position: bottom right;
        -webkit-mask-position: bottom right;
        transition: opacity 1.8s ease, mask-position 2.0s ease, -webkit-mask-position 2.0s ease; }
      #top #wrapper .main .company__img.mv {
        opacity: 1;
        transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0); }
        #top #wrapper .main .company__img.mv img {
          opacity: 1;
          mask-position: top left;
          -webkit-mask-position: top left; }
