@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0; }

html {
  font-size: 100%;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%; }

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  font-family: inherit;
  color: inherit;
  background: transparent; }

ul,
ol {
  list-style: none; }

a {
  text-decoration: none;
  color: inherit; }

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto; }

input,
button,
textarea,
select {
  font: inherit; }

button {
  background: none;
  border: none;
  cursor: pointer; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  line-height: inherit; }

/* コピペ用 */
/* background: rgba(0,0,0,0.2); */
/* シンプルリンクホバー */
/* @include link-hover-simple; */
/* @include incSmooth(); */
/* @include btm(); */
/* @include top(); */
/* 基準フォントサイズ（PC） */
/* px → rem変換関数 */
/* フォントサイズ用Mixin（汎用）

  font-size のみ
  @include fs(16);
  この場合、line-heightは自動的に適用される
  例）
  @include fs(95);  → font-size: 5.9375rem; line-height: 1.2;
  @include fs(25);  → font-size: 1.5625rem; line-height: 1.4;
  @include fs(16);  → font-size: 1rem;      line-height: 1.8;
  @include fs(12);  → font-size: 0.75rem;   line-height: 2.0;

  手動指定1
  font-size + line-height
  @include fs(16, 1.8);

  手動指定2
  font-size + line-height + letter-spacing
  @include fs(16, 1.8, 0.04em);
*/
/* clamp フォントサイズ用Mixin

  大見出し（vw手動指定）
  .head01Main {
    @include fsc(44, 6.25, 100);
  }
  → font-size: clamp(44px, 6.25vw, 100px);
  SP(375px):    44px  ← min が下限として効く
  PC(1280px):   80px  ← vw が効く
  大画面(1600px): 100px ← max が上限として効く

  vw の値の求め方
  vw = max ÷ デザイン基準幅(px) × 100
  例）PC最大100px、基準幅1600px の場合
  100 ÷ 1600 × 100 = 6.25vw
*/
/* clamp フォントサイズ用Mixin2（vw自動計算）

  大見出し2（min・max を入れると vw を自動計算）
  .head01Main {
    @include fsc2(44, 100);
  }
  → font-size: clamp(44px, 6.25vw, 100px);  ※基準幅1600pxで自動計算

  基準幅を変えたい場合
  @include fsc2(44, 100, 1440);
*/
/* パディング生成（null安全＋レスポンシブ対応）
  .section {
    @include responsive-padding(70px, 40px);
  }
  PC: padding: 70px 40px;
  SP: padding: 52.5px 30px;
*/
/* マージンボトム汎用クラス吐き出し */
/* 幅設定汎用クラス吐き出し */
/* コピペ用 */
/* background: rgba(0,0,0,0.2); */
/* シンプルリンクホバー */
/* @include link-hover-simple; */
/* @include incSmooth(); */
/* @include btm(); */
/* @include top(); */
/* 基準フォントサイズ（PC） */
/* px → rem変換関数 */
/* フォントサイズ用Mixin（汎用）

  font-size のみ
  @include fs(16);
  この場合、line-heightは自動的に適用される
  例）
  @include fs(95);  → font-size: 5.9375rem; line-height: 1.2;
  @include fs(25);  → font-size: 1.5625rem; line-height: 1.4;
  @include fs(16);  → font-size: 1rem;      line-height: 1.8;
  @include fs(12);  → font-size: 0.75rem;   line-height: 2.0;

  手動指定1
  font-size + line-height
  @include fs(16, 1.8);

  手動指定2
  font-size + line-height + letter-spacing
  @include fs(16, 1.8, 0.04em);
*/
/* clamp フォントサイズ用Mixin

  大見出し（vw手動指定）
  .head01Main {
    @include fsc(44, 6.25, 100);
  }
  → font-size: clamp(44px, 6.25vw, 100px);
  SP(375px):    44px  ← min が下限として効く
  PC(1280px):   80px  ← vw が効く
  大画面(1600px): 100px ← max が上限として効く

  vw の値の求め方
  vw = max ÷ デザイン基準幅(px) × 100
  例）PC最大100px、基準幅1600px の場合
  100 ÷ 1600 × 100 = 6.25vw
*/
/* clamp フォントサイズ用Mixin2（vw自動計算）

  大見出し2（min・max を入れると vw を自動計算）
  .head01Main {
    @include fsc2(44, 100);
  }
  → font-size: clamp(44px, 6.25vw, 100px);  ※基準幅1600pxで自動計算

  基準幅を変えたい場合
  @include fsc2(44, 100, 1440);
*/
/* パディング生成（null安全＋レスポンシブ対応）
  .section {
    @include responsive-padding(70px, 40px);
  }
  PC: padding: 70px 40px;
  SP: padding: 52.5px 30px;
*/
/* マージンボトム汎用クラス吐き出し */
/* 幅設定汎用クラス吐き出し */
html {
  font-size: 16px; }

@media only screen and (max-width: 960px) {
  html {
    font-size: 15px;
    /* = 0.875rem相当 */ } }
body {
  /*
  background: #CBD7E9;
  background: url("/assets/img/common/_bg.png") center center no-repeat fixed;
  background-size: cover;
  */
  background: url("/assets/img/common/mv_bg.webp") center top no-repeat #F0F3FA;
  background-size: 1526px auto;
  color: #1c1d1e;
  font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, sans-serif;
  letter-spacing: 0;
  font-size: 1rem;
  line-height: 1.8;
  padding-top: 100px !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

@media only screen and (max-width: 960px) {
  body {
    background-size: 180% auto;
    line-height: 1.6;
    padding-top: 72px !important; } }
a {
  color: #1c1d1e;
  text-decoration: none; }

@media only screen and (min-width: 960px) {
  a[href^="tel:"] {
    pointer-events: none; } }
/*
::selection {
	background-color: $color_black;
	color: $color_white;
}
::-moz-selection {
background-color: $color_black;
color: $color_white;
}
*/
#topcontrol {
  position: fixed;
  right: 24px;
  bottom: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 3;
  mix-blend-mode: luminosity; }
  #topcontrol a {
    		/*
        background: rgba(0,0,0,0.4);
    				border: 1px solid rgba(255,255,255,0.6);
    				
    				background: rgba(255,255,255,0.2);
    				backdrop-filter: brightness(102%) blur(32px);
    				-webkit-backdrop-filter: brightness(102%) blur(32px);
    				*/
    background: #999;
    border-radius: 50px;
    box-sizing: border-box;
    font-size: 0;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 4px;
    height: 40px;
    width: 40px;
    opacity: 1;
    transition: all .15s ease-in-out;
    transform: scale(1); }
    #topcontrol a:before {
      content: '';
      width: 10px;
      height: 10px;
      border-top: solid 2px #FFF;
      border-right: solid 2px #FFF;
      transform: rotate(-45deg); }
    #topcontrol a:hover {
      opacity: 1;
      transform: scale(1.3); }
  #topcontrol.is-visible {
    opacity: 1;
    pointer-events: auto; }

@media only screen and (max-width: 960px) {
  #topcontrol {
    right: 3.5vw;
    bottom: 3.5vw; } }
@media only screen and (max-width: 960px) {
  .breadcrumbs {
    width: 90%; }
    .breadcrumbs__list {
      display: flex; }
    .breadcrumbs__item {
      font-size: 10px;
      white-space: nowrap; }
      .breadcrumbs__item:last-child {
        overflow: hidden;
        text-overflow: ellipsis;
        min-width: 0;
        flex: 1;
        /* 最後だけ伸びて省略される */ } }
.mv {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  height: 425px;
  margin: 0 auto;
  max-width: 1360px;
  padding: 0 60px;
  position: relative; }
  .mv:after {
    background: rgba(0, 0, 0, 0.1);
    content: '';
    display: block;
    height: 1px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0; }
  .mv .breadcrumbs {
    margin: 0 auto 48px;
    max-width: 1350px;
    width: 100%; }
    .mv .breadcrumbs__list {
      display: inline-flex;
      overflow: hidden;
      position: relative;
      height: 100%; }
      .mv .breadcrumbs__list:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 2px;
        background: #000;
        transform: scaleX(0);
        transform-origin: left;
        will-change: transform;
        animation: lineSweep 0.6s cubic-bezier(0.65, 0, 0.35, 1) 0.2s forwards; }
    .mv .breadcrumbs__item {
      font-size: 0.875rem;
      line-height: 2;
      display: block;
      animation-fill-mode: both;
      will-change: transform;
      animation: copy-text-up-animation 0.6s cubic-bezier(0.65, 0, 0.35, 1) 0.1s both; }
      .mv .breadcrumbs__item a {
        text-decoration: underline; }
        .mv .breadcrumbs__item a:hover {
          text-decoration: none; }
      .mv .breadcrumbs__item:before {
        background: #707070;
        content: '';
        display: inline-block;
        margin: 0 10px;
        vertical-align: 5px;
        height: 1px;
        width: 32px; }
      .mv .breadcrumbs__item:first-child:before {
        display: none; }
  .mv h1 {
    margin: 0 auto;
    max-width: 1350px;
    line-height: 1;
    padding-bottom: 40px;
    width: 100%; }
    .mv h1 .ja {
      color: #516989;
      display: block;
      font-family: "Noto Serif JP", "Yu Mincho", "游明朝", YuMincho, serif;
      font-size: 3.125rem;
      line-height: 1.2;
      font-weight: 500;
      line-height: 1.35;
      letter-spacing: -0.01em; }
    .mv h1 .en {
      color: #B2BCCB;
      display: block;
      font-family: "EB Garamond", serif;
      font-size: 1.125rem;
      line-height: 1.8;
      line-height: 1;
      letter-spacing: 0.06em;
      padding-top: 16px; }

@media only screen and (max-width: 960px) {
  .mv {
    height: auto;
    min-height: 160px;
    padding: 0 7.5vw; }
    .mv .breadcrumbs {
      margin: 0 auto 28px;
      max-width: 100%; }
      .mv .breadcrumbs__item {
        font-size: 9px; }
        .mv .breadcrumbs__item:before {
          margin: 0 8px;
          vertical-align: 3px;
          width: 10px; }
    .mv h1 {
      max-width: 100%;
      padding-bottom: 20px;
      width: 100%; }
      .mv h1 .ja {
        font-size: 24px; }
      .mv h1 .en {
        font-size: 10px;
        padding-top: 16px; } }
.contents {
  margin: 0 auto;
  padding: 80px 0 140px;
  position: relative; }
  .contents.noP {
    padding-bottom: 0; }
  .contents #main {
    margin: 0 auto;
    width: 100%; }
  .contents.clm2 {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: flex-start;
    max-width: 1440px;
    padding-left: 40px;
    padding-right: 40px;
    width: 100%; }
    .contents.clm2 #main {
      margin: 0;
      padding: 0;
      width: calc(100% - (250px + 5vw)); }
    .contents.clm2 #side {
      width: 250px;
      position: sticky;
      top: 120px; }
  .contents .anchorNav {
    background: rgba(255, 255, 255, 0.2);
    border: 4px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    margin-bottom: 40px;
    padding: 24px 20px; }
    .contents .anchorNav > p {
      font-size: 1.5625rem;
      line-height: 1.4;
      line-height: 1.4;
      font-family: "Noto Serif JP", "Yu Mincho", "游明朝", YuMincho, serif;
      margin-bottom: 20px; }
    .contents .anchorNav > ul {
      position: relative; }
      .contents .anchorNav > ul:after {
        background: #D6D6D6;
        content: '';
        display: block;
        height: calc(100% - 17px);
        width: 2px;
        position: absolute;
        top: 7px;
        right: 4px; }
      .contents .anchorNav > ul > li {
        font-size: 0.9375rem;
        line-height: 2;
        font-weight: 600;
        letter-spacing: 0.04em;
        line-height: 1.4;
        margin-bottom: 10px; }
        .contents .anchorNav > ul > li:last-child {
          margin-bottom: 0; }
        .contents .anchorNav > ul > li > a {
          color: #414648;
          display: flex;
          align-items: center;
          padding: 3px 24px 3px 0;
          position: relative;
          text-decoration: none;
          transition: 0.2s;
          width: 100%; }
          .contents .anchorNav > ul > li > a:before {
            background: #E5E5E5;
            border-radius: 100%;
            content: '';
            display: flex;
            height: 12px;
            width: 12px;
            position: absolute;
            right: -1px;
            top: calc(50% - 6px);
            transition: 0.2s;
            z-index: 2; }
          .contents .anchorNav > ul > li > a.active {
            color: #0B73CF; }
            .contents .anchorNav > ul > li > a.active:before {
              background: #0B73CF; }
          .contents .anchorNav > ul > li > a:hover {
            color: #0B73CF;
            text-decoration: underline; }
        .contents .anchorNav > ul > li.sub {
          font-size: 0.75rem;
          line-height: 2;
          letter-spacing: 0.1em;
          line-height: 1.45;
          margin-top: -10px;
          padding-left: 1em; }
          .contents .anchorNav > ul > li.sub > a {
            padding: 3px 24px 3px 0; }
            .contents .anchorNav > ul > li.sub > a:before {
              height: 8px;
              width: 8px;
              right: 1px;
              top: calc(50% - 6px); }
  .contents .sideNav h2 {
    background: #0B73CF;
    border-radius: 4px;
    color: #FFF;
    cursor: pointer;
    font-size: 0.9375rem;
    line-height: 2;
    font-weight: 600;
    margin-bottom: 16px;
    padding: 8px 16px 8px 20px;
    position: relative;
    transition: 0.2s; }
    .contents .sideNav h2:after {
      content: 'ー';
      color: #FFF;
      display: inline-block;
      font-size: 0.9375rem;
      line-height: 2;
      line-height: 1;
      position: absolute;
      top: calc(50% - 7px);
      right: 16px; }
    .contents .sideNav h2:hover {
      opacity: 0.8; }
  .contents .sideNav .toIndex a {
    background: #000;
    background: #0B73CF;
    border-radius: 4px;
    color: #FFF;
    cursor: pointer;
    display: block;
    font-size: 0.9375rem;
    line-height: 2;
    font-weight: 600;
    margin-bottom: 16px;
    padding: 14px 16px 14px 20px;
    position: relative;
    transition: 0.2s; }
    .contents .sideNav .toIndex a:after {
      content: '●';
      color: #FFF;
      display: inline-block;
      font-size: 0.625rem;
      line-height: 2;
      line-height: 1;
      position: absolute;
      top: calc(50% - 5px);
      right: 16px; }
    .contents .sideNav .toIndex a:hover {
      opacity: 0.8; }
  .contents .sideNav .sideNavList {
    overflow: hidden;
    transition: height 0.35s ease; }
    .contents .sideNav .sideNavList > li {
      font-size: 0.875rem;
      line-height: 2;
      font-weight: 500;
      letter-spacing: 0.02em;
      line-height: 1.45; }
      .contents .sideNav .sideNavList > li > a, .contents .sideNav .sideNavList > li .noLink {
        color: #414648;
        display: flex;
        align-items: center;
        padding: 6px 20px;
        position: relative;
        text-decoration: none;
        transition: 0.2s;
        width: 100%; }
        .contents .sideNav .sideNavList > li > a[target="_blank"]:before, .contents .sideNav .sideNavList > li .noLink[target="_blank"]:before {
          background: url("/assets/img/common/icon_newwin.svg") center center no-repeat;
          background-size: 15px auto;
          content: '';
          display: flex;
          height: 15px;
          width: 15px;
          position: absolute;
          right: 0;
          top: calc(50% - 7px);
          transition: 0.2s;
          z-index: 2; }
        .contents .sideNav .sideNavList > li > a.current, .contents .sideNav .sideNavList > li > a:hover, .contents .sideNav .sideNavList > li .noLink.current, .contents .sideNav .sideNavList > li .noLink:hover {
          color: #0B73CF;
          text-decoration: underline; }
      .contents .sideNav .sideNavList > li > .noLink {
        cursor: pointer; }
        .contents .sideNav .sideNavList > li > .noLink:before {
          background: url("/assets/img/common/icon_side_01.svg") center center no-repeat;
          background-size: 15px auto;
          content: '';
          display: flex;
          height: 15px;
          width: 15px;
          position: absolute;
          right: 0;
          top: calc(50% - 7px);
          transition: 0.2s;
          z-index: 2; }
        .contents .sideNav .sideNavList > li > .noLink:before {
          background: url("/assets/img/common/icon_side_02.svg") center center no-repeat;
          background-size: 15px auto; }
        .contents .sideNav .sideNavList > li > .noLink.open:before {
          background: url("/assets/img/common/icon_side_03.svg") center center no-repeat;
          background-size: 15px auto; }
      .contents .sideNav .sideNavList > li .sub {
        border-left: 1px solid #C4C4C4;
        margin: 4px 0 12px 4px;
        padding: 0 0 0 16px;
        /*デフォルトで閉じる*/
        display: none; }
        .contents .sideNav .sideNavList > li .sub li {
          font-size: 0.75rem;
          line-height: 2;
          font-weight: 300;
          letter-spacing: 0.04em;
          line-height: 1.4;
          margin-bottom: 10px; }
          .contents .sideNav .sideNavList > li .sub li:last-child {
            margin-bottom: 0; }
          .contents .sideNav .sideNavList > li .sub li a {
            display: block;
            position: relative;
            text-decoration: none;
            transition: 0.2s;
            width: 100%; }
            .contents .sideNav .sideNavList > li .sub li a.current, .contents .sideNav .sideNavList > li .sub li a:hover {
              color: #0B73CF; }
  .contents .sideNav.close h2:after {
    content: '＋'; }

@media only screen and (max-width: 960px) {
  .contents {
    margin: 0 auto;
    padding: 40px 0; }
    .contents #main {
      max-width: 100%;
      margin: 0; }
    .contents.clm2 {
      display: block;
      max-width: 100%;
      padding-right: 0;
      padding-left: 0; }
      .contents.clm2 #main {
        max-width: 100%;
        margin: 0;
        padding: 0 5vw;
        width: 100%; }
      .contents.clm2 #side {
        max-width: 100%;
        margin: 0 auto;
        padding-left: 5vw;
        padding-right: 5vw;
        padding-top: 60px;
        padding-bottom: 40px;
        width: 100%; }
    .contents .anchorNav {
      display: none;
      /*非表示*/
      background: none;
      border: none;
      margin: 0 auto 48px;
      padding: 0 5vw;
      max-width: 100%; }
      .contents .anchorNav ul {
        background: rgba(255, 255, 255, 0.2);
        border: 4px solid rgba(255, 255, 255, 0.5);
        border-radius: 8px;
        display: block;
        flex-wrap: wrap;
        margin: 0 auto;
        max-width: 480px;
        padding: 20px 24px; }
        .contents .anchorNav ul:after {
          display: none; }
        .contents .anchorNav ul > li {
          font-size: 0.875rem;
          line-height: 2;
          letter-spacing: 0.1em;
          line-height: 1.45; }
          .contents .anchorNav ul > li > a {
            display: flex;
            align-items: center;
            padding: 4px 24px 4px 0;
            position: relative;
            text-decoration: none;
            transition: 0.2s;
            width: 100%; }
            .contents .anchorNav ul > li > a:before {
              display: none; }
            .contents .anchorNav ul > li > a:after {
              content: '';
              width: 7px;
              height: 7px;
              border-top: solid 1px #0B73CF;
              border-right: solid 1px #0B73CF;
              position: absolute;
              right: 0;
              top: calc(50% - 5px);
              transform: rotate(135deg); }
            .contents .anchorNav ul > li > a:hover {
              color: #0B73CF; }
    .contents .sideNav {
      box-shadow: 10px 14px 14px -7px rgba(0, 0, 128, 0.05), 0 0 28px -14px rgba(0, 0, 128, 0.05);
      margin: 0 auto;
      max-width: 480px;
      padding: 0 0 40px; }
      .contents .sideNav:has(.toIndex) {
        padding: 0; }
      .contents .sideNav h2 {
        font-size: 17px; }
      .contents .sideNav .toIndex a {
        font-size: 17px;
        margin-bottom: 0; }
      .contents .sideNav .sideNavList > li {
        font-size: 15px; } }
section {
  margin-bottom: 80px; }
  section:last-child {
    margin-bottom: 0; }

section:not(.noFade) {
  transform: translateY(32px);
  opacity: 0; }
  section:not(.noFade).is-active {
    animation: secFadeUp 0.6s ease 0.45s forwards; }
@keyframes secFadeUp {
  to {
    opacity: 1;
    transform: translateY(0); } }
@media only screen and (max-width: 960px) {
  section {
    margin-bottom: 60px; }
    section:last-child {
      margin-bottom: 0; } }
.header {
  font-feature-settings: "palt";
  /*
  backdrop-filter: blur(10px);
  */
  height: 70px;
  padding: 0 2.2vw;
  width: 100%;
  position: fixed;
  left: 0;
  top: 30px;
  z-index: 999;
  transition: 0.2s; }
  .header__inr {
    background: #FFF;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    margin: 0 auto;
    max-width: 1360px;
    height: 70px;
    position: relative;
    padding: 0 16px 0 28px;
    transition: 0.2s; }
  .header__logo {
    margin-right: 20px;
    min-width: 180px;
    width: 180px; }
    .header__logo a {
      display: block;
      transition: 0.2s; }
      .header__logo a:hover {
        opacity: 0.7; }
      .header__logo a img {
        height: auto;
        width: 100%; }
  .header__nav {
    display: flex; }
  .header__global-nav {
    display: flex; }
    .header__global-nav > li {
      font-size: 0.9375rem;
      line-height: 2;
      font-weight: 500;
      letter-spacing: 0.02em; }
      .header__global-nav > li > a, .header__global-nav > li > .noLink {
        background: #FFF;
        color: #414648;
        cursor: pointer;
        display: block;
        position: relative;
        padding: 2px 1.3vw;
        transition: 0.2s; }
        .header__global-nav > li > a:hover, .header__global-nav > li > .noLink:hover {
          color: #0B73CF; }
      .header__global-nav > li > .noLink {
        padding: 2px 1.8vw 2px 1.5vw; }
        .header__global-nav > li > .noLink:after {
          content: '+';
          color: #0B73CF;
          font-size: 1.25rem;
          line-height: 1.8;
          font-weight: 400;
          position: absolute;
          right: 0.6vw;
          top: calc(50% - 18px); }
      .header__global-nav > li .sub {
        border: 1px solid #000;
        display: none;
        list-style: none;
        padding: 0;
        position: absolute;
        z-index: 1; }
        .header__global-nav > li .sub:after {
          background: #FFF;
          backdrop-filter: blur(8px);
          content: '';
          display: block;
          position: absolute;
          top: 0;
          left: 0;
          height: 100%;
          width: 100%;
          z-index: -1; }
        .header__global-nav > li .sub li a {
          color: #000;
          display: block;
          font-size: 15px;
          padding: 4px 8px;
          text-decoration: none;
          transition: 0.2s; }
          .header__global-nav > li .sub li a:hover {
            background: rgba(0, 0, 0, 0.9);
            color: #FFF; }
      .header__global-nav > li:last-child {
        margin-right: 0; }
        .header__global-nav > li:last-child a:after {
          background: url("/assets/img/common/icon_newwin.png") center center no-repeat;
          background-size: cover;
          content: '';
          display: inline-block;
          height: 13px;
          width: 14px;
          margin-left: 8px;
          vertical-align: -1px; }
  @media only screen and (min-width: 1550px) {
    .header__global-nav > li > a, .header__global-nav > li > .noLink {
      padding: 2px 20px; }
    .header__global-nav > li > .noLink {
      padding: 2px 30px 2px 24px; }
      .header__global-nav > li > .noLink:after {
        right: 10px; } }
  .header__cv {
    max-width: 180px;
    position: relative;
    width: 12vw; }
    .header__cv a {
      background: #0B73CF;
      border: 1px solid #0B73CF;
      border-radius: 6px;
      color: #FFF;
      display: flex;
      align-items: center;
      font-size: 0.875rem;
      line-height: 2;
      font-weight: 500;
      letter-spacing: 0;
      height: 44px;
      padding: 4px 16px;
      position: relative;
      transition: 0.2s; }
      .header__cv a:after {
        background: #FFF;
        border: 1px solid #0B73CF;
        border-radius: 100%;
        content: '';
        display: inline-block;
        height: 6px;
        width: 6px;
        position: absolute;
        top: calc(50% - 3px);
        right: 16px;
        transition: 0.2s; }
      .header__cv a:hover {
        background-color: #E4E7F2;
        border-color: #E4E7F2;
        color: #999; }
        .header__cv a:hover:after {
          background: #999;
          border-color: #E4E7F2; }
    .header__cv.active a.noLink {
      background-color: #E4E7F2;
      border-color: #E4E7F2;
      color: #999; }
      .header__cv.active a.noLink:after {
        background: #999;
        border-color: #E4E7F2; }
  .header .header__cv {
    position: relative; }
  .header .header__cv .cvMenu {
    position: absolute;
    top: 100%;
    left: auto;
    right: 0;
    min-width: 200px;
    z-index: 10; }
  .header .header__cv .cvMenu .mega-inner {
    border-radius: 4px;
    background: none;
    box-shadow: none;
    cursor: pointer;
    margin-top: 4px;
    padding: 0; }
  .header .header__cv .cvMenu__list li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.3); }
  .header .header__cv .cvMenu__list li {
    border-radius: 0;
    margin: 2px 0;
    padding: 0;
    width: 100%; }
    .header .header__cv .cvMenu__list li:after {
      display: none; }
  .header .header__cv .cvMenu__list li a {
    background: rgba(11, 115, 207, 0.9);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border-radius: 4px;
    display: flex;
    align-items: center;
    font-size: 14px;
    letter-spacing: -0.02em;
    padding: 24px 16px 24px;
    line-height: 1;
    width: 100%; }
  .header .header__cv .cvMenu__list li a:hover {
    background: #FFF;
    color: #0b73cf;
    border: 1px solid #0b73cf;
    opacity: 1; }
    .header .header__cv .cvMenu__list li a:hover:after {
      background: #0b73cf;
      border-color: #FFF; }

@media only screen and (max-width: 1024px) {
  .header__global-nav > li .noLink:hover + .sub,
  .header__global-nav > li .sub:hover {
    display: block; } }
.spMenuSet {
  display: none; }

body.open {
  overflow: hidden; }

#global-nav {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  letter-spacing: 0.08em;
  padding: 80px 5vw 30px;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overscroll-behavior-y: contain;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  max-height: 100vh;
  z-index: -2; }
  #global-nav .global-nav-inr {
    opacity: 0;
    transform: scale(1.1);
    filter: blur(6px); }
  #global-nav .global-nav-list > li {
    position: relative; }
    #global-nav .global-nav-list > li h3 {
      font-size: 15px;
      font-weight: 500;
      letter-spacing: 0.08em;
      line-height: 1.4;
      margin-bottom: 0;
      position: relative;
      /*
      a[target="_blank"]{
        background: url("/assets/img/common/icon_newwin.png") right 5vw center no-repeat;
      		background-size: 14px auto;
      }
      */ }
      #global-nav .global-nav-list > li h3 a {
        border-top: 1px solid rgba(0, 101, 191, 0.12);
        color: #373a3c;
        display: block;
        padding: 18px 60px 20px 16px;
        text-decoration: none;
        transition: 0; }
        #global-nav .global-nav-list > li h3 a:hover {
          opacity: 1; }
      #global-nav .global-nav-list > li h3 .accordionBtn {
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        aspect-ratio: 1 / 1;
        border: 0;
        background: none;
        cursor: pointer; }
        #global-nav .global-nav-list > li h3 .accordionBtn:after {
          color: #0D1C45;
          content: "+";
          display: flex;
          justify-content: center;
          align-items: center;
          width: 100%;
          height: 100%;
          font-size: 28px;
          font-weight: 300;
          line-height: 1;
          transition: transform .2s; }
    #global-nav .global-nav-list > li.open h3 .accordionBtn::after {
      color: #0B73CF;
      transform: rotate(-45deg); }
    #global-nav .global-nav-list > li:first-child h3 a {
      border: none; }
    #global-nav .global-nav-list > li .ftListBox {
      overflow: hidden;
      height: 0;
      transition: height .35s ease; }
    #global-nav .global-nav-list > li .ftList {
      background: rgba(255, 255, 255, 0.08);
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      padding: 0 0 20px 16px; }
      #global-nav .global-nav-list > li .ftList > li {
        line-height: 1;
        margin-bottom: 2px;
        width: 48%;
        /*
        > a[target="_blank"] {
          &:after {
            font-family: "Font Awesome 6 Free";
            content: "\f08e";
        				display: inline-block;
        				font-size: 8px;
            font-weight: 900;
            margin: 0 4px;
          }
        }
        */ }
        #global-nav .global-nav-list > li .ftList > li > span, #global-nav .global-nav-list > li .ftList > li > a {
          color: #565c63;
          display: block;
          font-size: 11px;
          font-weight: 500;
          letter-spacing: 0.02em;
          line-height: 1.5;
          padding: 4px 0;
          text-decoration: none;
          transition: 0.2s; }
        #global-nav .global-nav-list > li .ftList > li > a:hover {
          opacity: 0.7; }
  #global-nav .global-nav-list > li.contact {
    padding: 6px; }
    #global-nav .global-nav-list > li.contact a {
      background: #0B73CF;
      border-radius: 6px;
      color: #FFF;
      display: flex;
      align-items: center;
      font-size: 15px;
      font-weight: 500;
      letter-spacing: 0.08em;
      line-height: 1.4;
      padding: 18px 60px 20px 16px;
      position: relative; }
      #global-nav .global-nav-list > li.contact a:after {
        background: #FFF;
        border-radius: 100%;
        content: '';
        display: inline-block;
        height: 6px;
        width: 6px;
        position: absolute;
        top: calc(50% - 3px);
        right: 32px; }

.open #global-nav {
  z-index: 10;
  visibility: visible; }
  .open #global-nav .global-nav-inr {
    animation: menuAction 0.4s ease 0s 1 forwards; }

#nav-bg {
  content: "";
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  display: block;
  position: fixed;
  visibility: hidden;
  /*
  background: rgba(0, 44, 89, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: scale();
  transform: scale();
  */ }

.open #nav-bg {
  visibility: visible;
  z-index: 4;
  	/*
  background-color: $c_red;
  background: linear-gradient(90deg, rgba(0,48,108,0.97) 0%, rgba(15,73,145,0.97) 100%);
  	-webkit-transform: scale(1);
  	transform: scale(1);
  
  background-color: rgba(255,255,255,0.6);
  backdrop-filter: brightness(102%) blur(32px);
  -webkit-backdrop-filter: brightness(102%) blur(32px);
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.029999999329447746);
  	*/
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: brightness(102%) blur(32px);
  -webkit-backdrop-filter: brightness(102%) blur(32px); }

.open .header__inr {
  background: none; }

#nav-toggle {
  display: block;
  position: absolute;
  right: 8.5vw;
  top: 24px;
  width: 36px;
  height: 9px;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  transition: 0.2s;
  	/*
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-transition: all .6s cubic-bezier(0.77, 0, 0.175, 1);
  	transition: all .6s cubic-bezier(0.77, 0, 0.175, 1);
  	*/ }

#nav-toggle div {
  position: relative;
  /*
  	&:before {
  		content: 'MENU';
  		display: inline-block;
  		color: $c_red;
  		font-size: 10px;
  		font-weight: 600;
  		position: absolute;
  		left: -40px;
  		top: 4px;
  		transition: 0.3s;
  
  	}
  
  	&:after {
  		content: 'CLOSE';
  		display: inline-block;
  		color: $c_red;
  		font-size: 10px;
  		font-weight: 600;
  		position: absolute;
  		left: -43px;
  		top: -15px;
  		opacity: 0;
  		transition: 0.3s;
  	}
  	*/ }

.open #nav-toggle {
  z-index: 1000000000; }

.open #nav-toggle div:before {
  top: 15px;
  opacity: 0; }
.open #nav-toggle div:after {
  top: 4px;
  opacity: 1; }

#nav-toggle span {
  display: block;
  position: absolute;
  height: 1px;
  width: 100%;
  background: #071533;
  left: 0;
  zoom: 1;
  -webkit-transition: .25s ease-in-out;
  transition: .25s ease-in-out; }

#nav-toggle span:nth-child(1) {
  top: 0; }

#nav-toggle span:nth-child(2) {
  top: 9px; }

.open #nav-toggle span:nth-child(1) {
  top: 4px;
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
  zoom: 1; }

.open #nav-toggle span:nth-child(2) {
  top: 4px;
  -webkit-transform: rotate(-30deg);
  transform: rotate(-30deg);
  zoom: 1;
  width: 100%; }

body.throughHd .header {
  background-color: #fff;
  top: 0; }
  body.throughHd .header__inr {
    padding: 0; }
  body.throughHd .header #nav-toggle {
    right: 5vw; }

body.throughHd.open .header {
  background: none; }

/* Responsive Start */
@media only screen and (max-width: 1024px) {
  .header {
    height: 60px;
    padding: 0 3.5vw;
    top: 12px; }
    .header__inr {
      border-radius: 6px;
      max-width: 100%;
      height: 60px;
      padding: 0 0 0 3.5vw; }
    .header__logo {
      margin-right: 0;
      min-width: 160px;
      width: 160px; }
      .header__logo a {
        display: block;
        transition: 0; }
        .header__logo a:hover {
          opacity: 1; }
    .header__nav {
      display: flex; }
    .header__global-nav {
      display: none; }
    .header__cv {
      display: none;
      max-width: 110px;
      width: 110px; }
      .header__cv a {
        border-radius: 4px;
        font-size: 12px;
        letter-spacing: 0;
        height: 34px;
        padding: 4px 12px; }
        .header__cv a:after {
          height: 5px;
          width: 5px;
          top: calc(50% - 3px);
          right: 12px; }

  .spMenuSet {
    display: block; }

  /*
  .header {
  height: 60px;
  padding: 0 64px 0 0;
  &__inr {
  		padding: 0 0 0 20px;
  	}
  @media only screen and (max-width: 480px) {
  	&__inr {
  		padding: 0 0 0 5vw;
  	}
  	}
  &__logo {
  min-width: 100px;
  width: 100px;
  }
  &__global-nav {
  > li:not(.contactBtn)  {
  display: none;
  }
  li.contactBtn {
    font-size: 13px;
  		line-height: 1;
    margin-left: 0;
  		a {
  		padding: 6px 8px 7px;
  		}
  }
  }
  	}
  .spMenuSet {
  display: block;
  }
  */ }
@keyframes menuAction {
  0% {
    opacity: 0;
    transform: scale(1.1);
    filter: blur(30px); }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0); } }
/* mega menu */
.header__nav {
  position: static; }

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  height: auto;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all .25s ease;
  z-index: 100; }

.is-switching .mega-menu {
  transition: none; }

.has-mega {
  position: static; }

.mega-menu {
  left: 0; }

.has-mega.active .mega-menu {
  opacity: 1;
  visibility: visible; }

.mega-inner {
  background: #0B73CF;
  border-radius: 8px;
  margin: 12px auto;
  padding: 60px;
  display: flex;
  position: relative; }
  .mega-inner:before {
    content: "";
    position: absolute;
    top: -28px;
    left: 0;
    width: 100%;
    height: 28px; }
  .mega-inner .mega-col {
    width: 100%; }
    .mega-inner .mega-col ul.clm4 {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px; }
    .mega-inner .mega-col ul.clm3 {
      display: flex;
      flex-wrap: wrap;
      padding: 20px; }
    .mega-inner .mega-col ul li {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin: 0 9.5% 16px 0;
      width: 27%; }
      .mega-inner .mega-col ul li:nth-child(3n) {
        margin-right: 0; }
      .mega-inner .mega-col ul li:after {
        content: "";
        width: 9px;
        height: 9px;
        background: #fff;
        border-radius: 50%;
        flex-shrink: 0; }
      .mega-inner .mega-col ul li a {
        color: #FFF;
        display: block;
        font-size: 1.25rem;
        line-height: 1.8;
        width: 95%;
        position: relative;
        transition: 0.2s;
        /*
        .mmImg {
        border: 1px solid $c_black;
        display: block;
        }
        .mmTxt {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        height: 100%;
        line-height: 1.55;
        font-weight: 500;
        padding: 14px 0;
        position: relative;
        .story {
        display: block;
        font-size: 14px;
        font-weight: 500;
        width: 100%;
        &.color01 {
        color: $c_black;
        }
        &.color02 {
        color: $c_black;
        }
        &.color03 {
        color: $c_black;
        }
        }
        &:after {
        		background: url("/assets/img/common/icon_arrow_right.svg") center center no-repeat;
        		background-size: 11px auto;
        		border: 2px solid $c_black;
        		border-radius: 100%;
        		content: '';
        		display: inline-block;
        		height: 24px;
        		width: 24px;
        		position: absolute;
        		top: calc(50% - 12px);
        		right: 6px;
        		transition: all 0.2s ease;
        		}
        		
        		
        }
        */ }
        .mega-inner .mega-col ul li a:hover {
          opacity: 0.7; }
          .mega-inner .mega-col ul li a:hover .mmTxt:after {
            right: 0; }
  .mega-inner h3 {
    margin-bottom: 20px;
    width: 100%; }
    .mega-inner h3 a {
      border-bottom: 1px solid rgba(255, 255, 255, 0.5);
      color: #FFF;
      display: block;
      font-size: 2rem;
      line-height: 1.4;
      font-weight: 500;
      padding-bottom: 28px;
      position: relative;
      transition: 0.2s;
      width: 100%; }
      .mega-inner h3 a span {
        display: inline-block;
        font-family: "EB Garamond", serif;
        font-size: 1rem;
        line-height: 1.8;
        margin-left: 24px;
        vertical-align: 10px;
        position: relative;
        transition: 0.2s;
        /*
        &:after {
        		background: url("/assets/img/common/icon_arrow_right_white.svg") center center no-repeat $c_blue;
        		background-size: 11px auto;
        		border-radius: 100%;
        		content: '';
        		display: inline-block;
        		height: 34px;
        		width: 34px;
        		position: absolute;
        		top: calc(50% - 17px);
        		right: 0;
        		transition: all 0.2s ease;
        		}
        		*/ }
      .mega-inner h3 a:hover {
        opacity: 0.7; }
        .mega-inner h3 a:hover span {
          padding-right: 60px; }

.mega-overlay {
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: .25s;
  z-index: 90; }

.mega-menu {
  z-index: 100; }

.mega-overlay.active {
  opacity: 1;
  visibility: visible; }

.ftCv {
  background: rgba(185, 202, 220, 0.5);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  display: flex;
  align-items: center;
  margin-bottom: 0;
  padding: 11vw 0;
  width: 100%;
  overflow: hidden; }
  .ftCv .inr {
    background: url("../img/top/08_bg2.webp") center top no-repeat;
    background-size: cover;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    margin: 0 auto;
    height: 35vw;
    width: 74%;
    position: relative;
    z-index: 1; }
    .ftCv .inr h2 {
      background: #B4C1CD;
      background: linear-gradient(90deg, #b4c1cd 0%, #d3c6c4 90%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      font-family: "Noto Serif JP", "Yu Mincho", "游明朝", YuMincho, serif;
      font-feature-settings: "palt" 1;
      font-size: 5.5vw;
      font-weight: 500;
      line-height: 1.55;
      letter-spacing: 0.06em;
      margin-bottom: 1.2vw;
      text-align: center;
      width: 100%; }
    .ftCv .inr .desc {
      color: #B2BCCB;
      font-size: 0.8125rem;
      line-height: 2;
      margin: 0 auto;
      max-width: 60%;
      text-align: center;
      width: 100%; }
    .ftCv .inr .cvBtnList {
      padding-top: 2vw;
      width: 100%; }
      .ftCv .inr .cvBtnList ul {
        display: flex;
        justify-content: space-between;
        max-width: 720px;
        margin: 0 auto; }
        .ftCv .inr .cvBtnList ul li {
          width: 48.5%; }
          .ftCv .inr .cvBtnList ul li a {
            background: #0B73CF;
            border: 1px solid #0B73CF;
            border-radius: 6px;
            color: #FFF;
            display: inline-flex;
            align-items: center;
            font-size: 1.125rem;
            line-height: 1.8;
            font-weight: 500;
            letter-spacing: 0;
            width: 100%;
            min-width: 340px;
            padding: 1.2vw 1.5vw;
            position: relative;
            transition: 0.2s; }
            .ftCv .inr .cvBtnList ul li a:after {
              background: #FFF;
              border-radius: 100%;
              content: '';
              display: inline-block;
              height: 6px;
              width: 6px;
              position: absolute;
              top: calc(50% - 3px);
              right: 20px;
              transition: 0.2s; }
            .ftCv .inr .cvBtnList ul li a:hover {
              background-color: #FFF;
              color: #0B73CF; }
              .ftCv .inr .cvBtnList ul li a:hover:after {
                background: #0B73CF; }
    .ftCv .inr .cv {
      padding-top: 2.5vw;
      text-align: center;
      width: 100%; }
      .ftCv .inr .cv a {
        background: #0B73CF;
        border: 1px solid #0B73CF;
        border-radius: 6px;
        color: #FFF;
        display: inline-flex;
        align-items: center;
        font-size: 1.125rem;
        line-height: 1.8;
        font-weight: 500;
        letter-spacing: 0;
        width: 21vw;
        min-width: 310px;
        padding: 1.2vw 1.5vw;
        position: relative;
        transition: 0.2s; }
        .ftCv .inr .cv a:after {
          background: #FFF;
          border-radius: 100%;
          content: '';
          display: inline-block;
          height: 6px;
          width: 6px;
          position: absolute;
          top: calc(50% - 3px);
          right: 20px;
          transition: 0.2s; }
        .ftCv .inr .cv a:hover {
          background-color: #FFF;
          color: #0B73CF; }
          .ftCv .inr .cv a:hover:after {
            background: #0B73CF; }
    .ftCv .inr .ftcvImg {
      position: absolute; }
      .ftCv .inr .ftcvImg img {
        height: auto;
        width: 100%; }
      .ftCv .inr .ftcvImg.ftcvImg01 {
        top: -7.5%;
        right: 5%;
        width: 216px; }
      .ftCv .inr .ftcvImg.ftcvImg02 {
        bottom: -8.5%;
        right: -2%;
        width: 192px; }
      .ftCv .inr .ftcvImg.ftcvImg03 {
        bottom: -12%;
        left: 7.5%;
        width: 210px; }
      .ftCv .inr .ftcvImg.ftcvImg04 {
        top: 15%;
        left: -7.5%;
        width: 180px; }
  .ftCv .marquee {
    overflow: hidden;
    white-space: nowrap;
    position: absolute;
    z-index: 0; }
  .ftCv .marquee-track {
    color: rgba(0, 0, 0, 0.03);
    display: inline-flex;
    gap: 120px;
    font-family: "EB Garamond", serif;
    font-size: 8.125rem;
    line-height: 1.2;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: 0;
    animation: marquee 100s linear infinite; }
@keyframes marquee {
  from {
    transform: translateX(0); }
  to {
    transform: translateX(-50%); } }
@media only screen and (min-width: 960px) {
  .ftCv {
    max-height: 894px; }
    .ftCv .inr {
      height: 560px;
      width: 1172px; }
      .ftCv .inr h2 {
        font-size: 5.5vw;
        font-size: 80px;
        margin-bottom: 1.2vw;
        margin-bottom: 20px; }
      .ftCv .inr .desc {
        max-width: 450px; }
      .ftCv .inr .cv {
        padding-top: 36px; }
        .ftCv .inr .cv a {
          width: 336px;
          padding: 20px; } }
@media only screen and (max-width: 960px) {
  .ftCv {
    padding: 90px 7.5vw; }
    .ftCv .inr {
      margin: 0 auto;
      padding: 60px 0 48px;
      height: auto;
      width: 100%; }
      .ftCv .inr h2 {
        font-size: 8vw;
        margin-bottom: 20px;
        padding-left: 5vw;
        text-align: center;
        width: 100%; }
      .ftCv .inr .desc {
        font-size: 13px;
        line-height: 1.8;
        margin: 0 auto;
        max-width: 100%;
        padding: 0 7.5vw;
        text-align: left;
        width: 100%; }
      .ftCv .inr .cvBtnList {
        padding: 20px 7.5vw;
        max-width: 100%; }
        .ftCv .inr .cvBtnList ul {
          display: block; }
          .ftCv .inr .cvBtnList ul li {
            margin-top: 12px;
            width: 100%; }
            .ftCv .inr .cvBtnList ul li a {
              border-radius: 4px;
              font-size: 15px;
              width: 100%;
              min-width: 100%;
              padding: 12px 16px; }
      .ftCv .inr .cv {
        padding: 28px 7.5vw;
        text-align: center;
        width: 100%; }
        .ftCv .inr .cv a {
          border-radius: 4px;
          font-size: 15px;
          width: 100%;
          min-width: 100%;
          padding: 12px 16px; }
      .ftCv .inr .ftcvImg {
        max-width: 100px; }
        .ftCv .inr .ftcvImg.ftcvImg01 {
          top: -7.5%;
          right: 5%;
          width: 24%; }
        .ftCv .inr .ftcvImg.ftcvImg02 {
          bottom: -5%;
          right: -2%;
          width: 24%; }
        .ftCv .inr .ftcvImg.ftcvImg03 {
          bottom: -7.5%;
          left: 5%;
          width: 24%; }
        .ftCv .inr .ftcvImg.ftcvImg04 {
          top: -5%;
          left: -2.5%;
          width: 20%; }
    .ftCv .marquee-track {
      font-size: 20vw;
      animation: marquee 50s linear infinite; } }
.footer {
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: brightness(102%) blur(32px);
  -webkit-backdrop-filter: brightness(102%) blur(32px);
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.0299999993);
  padding: 0 4vw;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }
  .footer .ftInr {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 1480px;
    padding: 80px 0 120px;
    position: relative; }
    .footer .ftInr .ftL {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      width: 350px; }
      .footer .ftInr .ftL .ftLogo {
        line-height: 1;
        max-width: 280px;
        margin-bottom: 16px; }
        .footer .ftInr .ftL .ftLogo a {
          display: block;
          transition: 0.2s; }
          .footer .ftInr .ftL .ftLogo a:hover {
            opacity: 0.7; }
        .footer .ftInr .ftL .ftLogo img, .footer .ftInr .ftL .ftLogo svg {
          height: auto;
          width: 100%; }
      .footer .ftInr .ftL .address {
        font-size: 0.875rem;
        line-height: 2;
        line-height: 2.1; }
      .footer .ftInr .ftL .ftBtnList {
        display: flex;
        justify-content: space-between;
        max-width: 350px; }
        .footer .ftInr .ftL .ftBtnList li {
          width: calc(50% - 1px); }
          .footer .ftInr .ftL .ftBtnList li a {
            background: #0B73CF;
            border: 1px solid #0B73CF;
            border-radius: 6px;
            color: #FFF;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 0.8125rem;
            line-height: 2;
            font-weight: 600;
            min-height: 48px;
            text-decoration: none;
            transition: 0.2s; }
            .footer .ftInr .ftL .ftBtnList li a:hover {
              background-color: #FFF;
              color: #0B73CF; }
    .footer .ftInr .ftR {
      display: flex;
      justify-content: flex-end;
      flex-wrap: wrap; }
      .footer .ftInr .ftR .ftRBox {
        margin-right: 60px; }
        .footer .ftInr .ftR .ftRBox:last-child {
          margin-right: 0;
          padding-left: 2vw; }
        .footer .ftInr .ftR .ftRBox h3 {
          font-size: 1.0625rem;
          line-height: 1.8;
          font-weight: 500;
          line-height: 1.4;
          margin-bottom: 16px; }
          .footer .ftInr .ftR .ftRBox h3 a {
            color: #373a3c;
            text-decoration: none;
            transition: 0.2s; }
            .footer .ftInr .ftR .ftRBox h3 a:hover {
              text-decoration: underline; }
      .footer .ftInr .ftR .ftList > li {
        line-height: 1;
        margin-bottom: 2px;
        /*
        > a[target="_blank"] {
          &:after {
            font-family: "Font Awesome 6 Free";
            content: "\f08e";
        				display: inline-block;
        				font-size: 8px;
            font-weight: 900;
            margin: 0 4px;
          }
        }
        */ }
        .footer .ftInr .ftR .ftList > li > span, .footer .ftInr .ftR .ftList > li > a {
          color: #565c63;
          display: block;
          font-size: 0.75rem;
          line-height: 2;
          line-height: 1.5;
          padding: 2px 0;
          text-decoration: none;
          transition: 0.2s; }
        .footer .ftInr .ftR .ftList > li > a:hover {
          text-decoration: underline; }
    .footer .ftInr .ftBtm {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 20px;
      width: 100%; }
      .footer .ftInr .ftBtm .ftOtherList {
        display: flex; }
        .footer .ftInr .ftBtm .ftOtherList li {
          font-size: 0.6875rem;
          line-height: 2; }
          .footer .ftInr .ftBtm .ftOtherList li:after {
            content: '／';
            display: inline;
            margin: 0 8px 0 6px; }
          .footer .ftInr .ftBtm .ftOtherList li:last-child:after {
            display: none; }
          .footer .ftInr .ftBtm .ftOtherList li a {
            color: #565c63;
            letter-spacing: -0.04em;
            text-decoration: none; }
            .footer .ftInr .ftBtm .ftOtherList li a:hover {
              text-decoration: underline; }
      .footer .ftInr .ftBtm small {
        color: #565c63;
        display: block;
        font-size: 0.625rem;
        line-height: 2;
        line-height: 1;
        font-weight: 400;
        letter-spacing: 0.05em; }

@media only screen and (max-width: 1024px) {
  .footer {
    padding: 0; }
    .footer .ftInr {
      display: block;
      margin: 0;
      padding: 60px 0 60px; }
      .footer .ftInr .ftL {
        display: block;
        padding: 0 5vw 40px;
        width: 100%; }
        .footer .ftInr .ftL .ftLT {
          padding: 0 2.5vw 24px; }
        .footer .ftInr .ftL .ftLogo {
          margin-bottom: 12px; }
        .footer .ftInr .ftL .address {
          padding-left: 8px; }
        .footer .ftInr .ftL .ftBtnList {
          max-width: 100%; }
          .footer .ftInr .ftL .ftBtnList li {
            width: calc(50% - 4px); }
            .footer .ftInr .ftL .ftBtnList li a {
              border-radius: 4px;
              font-size: 14px;
              letter-spacing: -0.02em;
              min-height: 48px; }
      .footer .ftInr .ftR {
        display: block;
        margin-bottom: 32px;
        padding: 0 5vw;
        width: 100%; }
        .footer .ftInr .ftR .ftRBox {
          margin-bottom: 0;
          width: 100%; }
          .footer .ftInr .ftR .ftRBox.last {
            border-bottom: 1px solid rgba(0, 101, 191, 0.12);
            padding-left: 0;
            width: 100%; }
          .footer .ftInr .ftR .ftRBox h3 {
            font-size: 15px;
            letter-spacing: 0.08em;
            line-height: 1.4;
            margin-bottom: 0;
            position: relative; }
            .footer .ftInr .ftR .ftRBox h3 a {
              border-top: 1px solid rgba(0, 101, 191, 0.12);
              display: block;
              padding: 16px 60px 16px 8px;
              transition: 0; }
              .footer .ftInr .ftR .ftRBox h3 a:hover {
                opacity: 1; }
            .footer .ftInr .ftR .ftRBox h3 .accordionBtn {
              position: absolute;
              top: 0;
              right: 0;
              height: 100%;
              aspect-ratio: 1 / 1;
              border: 0;
              background: none;
              cursor: pointer; }
              .footer .ftInr .ftR .ftRBox h3 .accordionBtn:after {
                content: "+";
                display: flex;
                justify-content: center;
                align-items: center;
                width: 100%;
                height: 100%;
                font-size: 24px;
                font-weight: 300;
                line-height: 1;
                transition: transform .2s; }
            .footer .ftInr .ftR .ftRBox h3.open .accordionBtn::after {
              color: #0B73CF;
              transform: rotate(-45deg); }
        .footer .ftInr .ftR .ftListBox {
          overflow: hidden;
          height: 0;
          transition: height .35s ease; }
        .footer .ftInr .ftR .ftList {
          background: rgba(255, 255, 255, 0.08);
          display: flex;
          flex-wrap: wrap;
          justify-content: space-between;
          padding: 0 5vw 20px 8px; }
          .footer .ftInr .ftR .ftList > li {
            line-height: 1;
            width: 48%;
            /*
            > a[target="_blank"] {
              &:after {
                font-family: "Font Awesome 6 Free";
                content: "\f08e";
            				display: inline-block;
            				font-size: 8px;
                font-weight: 900;
                margin: 0 4px;
              }
            }
            */ }
            .footer .ftInr .ftR .ftList > li > span, .footer .ftInr .ftR .ftList > li > a {
              font-size: 11px;
              font-weight: 500;
              line-height: 1.5;
              letter-spacing: 0.02em;
              padding: 4px 0;
              text-decoration: none;
              transition: 0.2s; }
            .footer .ftInr .ftR .ftList > li > a:hover {
              opacity: 0.7; }
      .footer .ftInr .ftBtm {
        display: block;
        padding: 0 5vw;
        width: 100%; }
        .footer .ftInr .ftBtm .ftOtherList {
          display: flex;
          justify-content: center;
          margin-bottom: 32px; }
          .footer .ftInr .ftBtm .ftOtherList li a {
            font-size: 10px;
            text-decoration: none; }
            .footer .ftInr .ftBtm .ftOtherList li a:hover {
              text-decoration: none; }
        .footer .ftInr .ftBtm small {
          font-size: 7px;
          text-align: center; } }
.maskLR {
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 200% 100%;
  -webkit-mask-position: 100% 0;
  -webkit-mask-image: linear-gradient(to right, #000 0%, #000 40%, transparent 60%, transparent 100%); }

.maskLR.active {
  opacity: 1;
  -webkit-animation: maskAnimationLR 4s forwards cubic-bezier(0.16, 1, 0.3, 1);
  animation: maskAnimationLR 4s forwards cubic-bezier(0.16, 1, 0.3, 1); }

@keyframes maskAnimationLR {
  0% {
    -webkit-mask-position: 100% 0; }
  100% {
    -webkit-mask-position: 0% 0; } }
/*
.maskRL {
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: 200% 100%;
	-webkit-mask-position: -100% 0;
			-webkit-mask-image: radial-gradient(circle farthest-corner at 100% 0, #000 60%, transparent 90%);
}
.maskRL.active {
	opacity: 1;
	-webkit-animation: maskAnimationRL 3s forwards cubic-bezier(.215, .61, .355, 1);
	animation: maskAnimationRL 3s forwards cubic-bezier(.215, .61, .355, 1)
}
@keyframes maskAnimationRL {
	0% {
		-webkit-mask-position: -100% 0
	}
	100% {
		-webkit-mask-position: 100% 0
	}
}
*/
.head01 {
  margin-bottom: 60px;
  position: relative; }
  .head01 .en {
    color: #B2BCCB;
    display: block;
    font-family: "EB Garamond", serif;
    font-size: 3.75rem;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1; }
  .head01 .ja {
    color: #516989;
    display: block;
    font-family: "Noto Serif JP", "Yu Mincho", "游明朝", YuMincho, serif;
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 500;
    line-height: 1;
    padding-top: 12px; }
  .head01:before {
    background: #0B73CF;
    content: '';
    display: block;
    margin-bottom: 36px;
    height: 6px;
    width: 46px; }

@media only screen and (max-width: 960px) {
  .head01 {
    margin-bottom: 40px; }
    .head01 .en {
      font-size: 48px; }
    .head01 .ja {
      font-size: 14px; }
    .head01:before {
      margin-bottom: 24px;
      height: 5px;
      width: 32px; } }
.head02 {
  background: #0065BF;
  background: linear-gradient(90deg, #0065bf 0%, #327dc2 50%, #afbacb 100%);
  color: #FFF;
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝", YuMincho, serif;
  font-size: 1.375rem;
  line-height: 1.8;
  font-weight: 500;
  line-height: 1.4;
  padding: 16px 20px;
  margin-bottom: 40px; }

@media only screen and (max-width: 960px) {
  .head02 {
    font-size: 18px;
    padding: 12px 16px;
    margin-bottom: 28px; } }
.head03 {
  border-bottom: 1px solid #B2BCCB;
  font-size: 1.25rem;
  line-height: 1.8;
  line-height: 1.55;
  font-weight: 500;
  margin-bottom: 24px;
  padding: 16px 0;
  position: relative; }
  .head03:before {
    background: #066DC8;
    content: '';
    display: block;
    height: 1px;
    width: 110px;
    position: absolute;
    bottom: -1px;
    left: 0; }

@media only screen and (max-width: 960px) {
  .head03 {
    font-size: 17px;
    margin-bottom: 20px;
    padding: 12px 0; }
    .head03:before {
      width: 80px; } }
.head04 {
  font-size: 1.125rem;
  line-height: 1.8;
  line-height: 1.45;
  font-weight: 500;
  margin-bottom: 12px;
  padding: 0 16px;
  position: relative; }
  .head04:before {
    background: #066DC8;
    content: '';
    display: block;
    height: 18px;
    width: 3px;
    position: absolute;
    top: 6px;
    left: 0; }

@media only screen and (max-width: 960px) {
  .head04 {
    font-size: 15px;
    padding: 0 12px; }
    .head04:before {
      height: 16px;
      top: 5px; } }
.indList li {
  text-indent: -1em;
  padding-left: 1em; }

.anchorList {
  display: flex;
  justify-content: center; }
  .anchorList li {
    font-family: "Noto Serif JP", "Yu Mincho", "游明朝", YuMincho, serif;
    font-size: 1.0625rem;
    line-height: 1.8;
    margin: 0 8px;
    text-align: center; }
    .anchorList li a {
      background: url("/assets/img/common/icon_arrow_down.svg") center bottom 13px no-repeat #2C4134;
      background-size: 26px auto;
      border-radius: 6px;
      border: 1px solid #2C4134;
      display: inline-block;
      min-width: 310px;
      padding: 12px 12px 24px;
      transition: 0.2s; }
      .anchorList li a:hover {
        border: 1px solid #000;
        background-position: center bottom 10px; }

@media only screen and (max-width: 960px) {
  .anchorList {
    display: flex;
    justify-content: center;
    padding: 0;
    width: 100%; }
    .anchorList li {
      margin: 0 6px;
      width: 48%; }
      .anchorList li a {
        background: url("/assets/img/common/icon_arrow_down.svg") center bottom 13px no-repeat #2C4134;
        background-size: 22px auto;
        border-radius: 4px;
        display: block;
        min-width: auto;
        min-width: none;
        padding: 12px 8px 24px; } }
.anchorLinks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px; }
  .anchorLinks li a {
    background: #FFF;
    border-radius: 4px;
    display: block;
    padding: 16px 32px 16px 20px;
    position: relative;
    transition: 0.2s; }
    .anchorLinks li a:after {
      background: #B2BCCB;
      content: '';
      display: block;
      height: calc(tan(60deg) * 8px / 2);
      width: 10px;
      clip-path: polygon(0 0, 100% 0, 50% 100%);
      position: absolute;
      right: 16px;
      top: calc(50% - 4px);
      transition: 0.2s; }
    .anchorLinks li a:hover {
      color: #0B73CF; }
      .anchorLinks li a:hover:after {
        background: #0B73CF; }

@media only screen and (max-width: 960px) {
  .anchorLinks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px; }
    .anchorLinks li a {
      padding: 14px 24px 14px 16px; }
      .anchorLinks li a:after {
        height: calc(tan(60deg) * 6px / 2);
        width: 8px;
        right: 16px;
        top: calc(50% - 2px); } }
.arrowBtn01 {
  font-family: "EB Garamond", serif;
  font-size: 0.8125rem;
  line-height: 2;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0; }
  .arrowBtn01 a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    display: inline-block;
    text-decoration: none;
    min-width: 320px;
    padding: 20px 50px 24px 8px;
    text-align: left;
    position: relative;
    transition: 0.2s; }
    .arrowBtn01 a:before {
      background: rgba(255, 255, 255, 0.6);
      content: '';
      display: inline-block;
      height: 1px;
      width: 0;
      position: absolute;
      bottom: -1px;
      left: 0;
      transition: 0.2s; }
    .arrowBtn01 a .arrow {
      overflow: hidden;
      position: absolute;
      top: 0;
      right: 8px;
      bottom: 0;
      width: 30px;
      margin: 0;
      line-height: 1; }
    .arrowBtn01 a .arrow:before,
    .arrowBtn01 a .arrow:after {
      content: "→";
      position: absolute;
      top: 39%;
      right: 0;
      animation-fill-mode: forwards;
      animation-duration: 0.3s;
      letter-spacing: 0 !important; }
    .arrowBtn01 a .arrow:after {
      transform: translateX(-100%);
      opacity: 0; }
    @media only screen and (min-width: 960px) {
      .arrowBtn01 a:hover {
        color: #FFF; }
        .arrowBtn01 a:hover:before {
          width: 100%; }
        .arrowBtn01 a:hover .arrow:before {
          animation-name: transformRightLeft;
          /* 修正: hover時のアニメーションを指定 */
          animation-delay: 0s;
          letter-spacing: 0 !important; }
        .arrowBtn01 a:hover .arrow:after {
          animation-name: transformLeftRight;
          /* 修正: hover時のアニメーションを指定 */
          animation-delay: 0.2s;
          letter-spacing: 0 !important; } }

@keyframes transformLeftRight {
  0% {
    transform: translateX(-100%);
    opacity: 0; }
  50% {
    transform: translateX(0);
    opacity: 1; }
  100% {
    transform: translateX(0);
    opacity: 1; } }
@keyframes transformRightLeft {
  0% {
    transform: translateX(0); }
  100% {
    transform: translateX(100%); } }
.mapBtn {
  display: flex; }
  .mapBtn li {
    margin-right: 2.5%;
    width: 45%; }
    .mapBtn li a {
      background: url("../img/common/icon_map_white.svg") left 24px center no-repeat #0B73CF;
      border: 1px solid #0B73CF;
      border-radius: 6px;
      color: #FFF;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 0.9375rem;
      line-height: 2;
      font-weight: 600;
      min-height: 54px;
      position: relative;
      text-decoration: none;
      transition: 0.2s; }
      .mapBtn li a.max260 {
        max-width: 260px; }
      .mapBtn li a:after {
        background: #FFF;
        border-radius: 100%;
        content: '';
        display: inline-block;
        height: 9px;
        width: 9px;
        position: absolute;
        top: calc(50% - 3px);
        right: 16px;
        transition: 0.2s; }
      .mapBtn li a.document {
        background-image: url("../img/common/icon_pdf_white.svg"); }
      .mapBtn li a.hp {
        background-image: url("../img/common/icon_hp_white.svg"); }
      .mapBtn li a.pdf {
        background-image: url("../img/common/icon_pdf_white.svg"); }
      .mapBtn li a.none {
        background-image: none; }
      .mapBtn li a:hover {
        background-image: url("../img/common/icon_map.svg");
        background-color: #FFF;
        color: #0B73CF; }
        .mapBtn li a:hover.document {
          background-image: url("../img/common/icon_pdf.svg"); }
        .mapBtn li a:hover.hp {
          background-image: url("../img/common/icon_hp.svg"); }
        .mapBtn li a:hover.pdf {
          background-image: url("../img/common/icon_pdf.svg"); }
        .mapBtn li a:hover.none {
          background-image: none; }
        .mapBtn li a:hover:after {
          background: #0B73CF; }

@media only screen and (max-width: 960px) {
  .mapBtn {
    display: flex;
    justify-content: space-between; }
    .mapBtn li {
      margin-right: 0;
      width: 47.5%; }
      .mapBtn li a {
        background-position: left 16px center; }
        .mapBtn li a:after {
          height: 7px;
          width: 7px; } }
@media only screen and (min-width: 960px) {
  .layout {
    display: flex;
    justify-content: space-between; }

  .jc-sb {
    justify-content: space-between; }

  .jc-fs {
    justify-content: flex-start; }

  .ai-s {
    align-items: flex-start; }

  .ai-c {
    align-items: center; }

  .ac-c {
    align-content: center; }

  .reverse {
    flex-direction: row-reverse; } }
@media only screen and (max-width: 960px) {
  .layout__box {
    width: auto !important;
    /*
    &:has(img) { 
    margin-bottom: 20px;
    }
    */ }

  .layout__box:has(+ .layout__box) {
    margin-bottom: 20px; }
    .layout__box:has(+ .layout__box) .mapBtn {
      padding-bottom: 28px; } }
a.underline {
  text-decoration: underline; }
  a.underline:hover {
    text-decoration: none; }

.right {
  text-align: right; }

.left {
  text-align: left; }

.center {
  text-align: center; }

/*  /////////////////////////////////////////////////
Responsive LandScape 
*/
/*  /////////////////////////////////////////////////
Other Utility
*/
@media only screen and (min-width: 960px) {
  .spHide {
    display: inline-block; }

  .spDisp {
    display: none; } }
@media only screen and (max-width: 960px) {
  .spHide {
    display: none; }

  .spDisp {
    display: inline-block; } }
/* ===== PC ===== */
.btm0 {
  margin-bottom: 0rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .btm0 {
    margin-bottom: 0rem; } }
/* ===== PC ===== */
.btm4 {
  margin-bottom: 0.25rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .btm4 {
    margin-bottom: 0.1875rem; } }
/* ===== PC ===== */
.btm8 {
  margin-bottom: 0.5rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .btm8 {
    margin-bottom: 0.375rem; } }
/* ===== PC ===== */
.btm10 {
  margin-bottom: 0.625rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .btm10 {
    margin-bottom: 0.46875rem; } }
/* ===== PC ===== */
.btm12 {
  margin-bottom: 0.75rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .btm12 {
    margin-bottom: 0.5625rem; } }
/* ===== PC ===== */
.btm15 {
  margin-bottom: 0.9375rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .btm15 {
    margin-bottom: 0.703125rem; } }
/* ===== PC ===== */
.btm16 {
  margin-bottom: 1rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .btm16 {
    margin-bottom: 0.75rem; } }
/* ===== PC ===== */
.btm20 {
  margin-bottom: 1.25rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .btm20 {
    margin-bottom: 0.9375rem; } }
/* ===== PC ===== */
.btm25 {
  margin-bottom: 1.5625rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .btm25 {
    margin-bottom: 1.171875rem; } }
/* ===== PC ===== */
.btm24 {
  margin-bottom: 1.5rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .btm24 {
    margin-bottom: 1.125rem; } }
/* ===== PC ===== */
.btm28 {
  margin-bottom: 1.75rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .btm28 {
    margin-bottom: 1.3125rem; } }
/* ===== PC ===== */
.btm30 {
  margin-bottom: 1.875rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .btm30 {
    margin-bottom: 1.40625rem; } }
/* ===== PC ===== */
.btm32 {
  margin-bottom: 2rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .btm32 {
    margin-bottom: 1.5rem; } }
/* ===== PC ===== */
.btm35 {
  margin-bottom: 2.1875rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .btm35 {
    margin-bottom: 1.640625rem; } }
/* ===== PC ===== */
.btm36 {
  margin-bottom: 2.25rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .btm36 {
    margin-bottom: 1.6875rem; } }
/* ===== PC ===== */
.btm40 {
  margin-bottom: 2.5rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .btm40 {
    margin-bottom: 1.875rem; } }
/* ===== PC ===== */
.btm44 {
  margin-bottom: 2.75rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .btm44 {
    margin-bottom: 2.0625rem; } }
/* ===== PC ===== */
.btm45 {
  margin-bottom: 2.8125rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .btm45 {
    margin-bottom: 2.109375rem; } }
/* ===== PC ===== */
.btm48 {
  margin-bottom: 3rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .btm48 {
    margin-bottom: 2.25rem; } }
/* ===== PC ===== */
.btm50 {
  margin-bottom: 3.125rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .btm50 {
    margin-bottom: 2.34375rem; } }
/* ===== PC ===== */
.btm52 {
  margin-bottom: 3.25rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .btm52 {
    margin-bottom: 2.4375rem; } }
/* ===== PC ===== */
.btm55 {
  margin-bottom: 3.4375rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .btm55 {
    margin-bottom: 2.578125rem; } }
/* ===== PC ===== */
.btm56 {
  margin-bottom: 3.5rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .btm56 {
    margin-bottom: 2.625rem; } }
/* ===== PC ===== */
.btm60 {
  margin-bottom: 3.75rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .btm60 {
    margin-bottom: 2.8125rem; } }
/* ===== PC ===== */
.btm64 {
  margin-bottom: 4rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .btm64 {
    margin-bottom: 3rem; } }
/* ===== PC ===== */
.btm68 {
  margin-bottom: 4.25rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .btm68 {
    margin-bottom: 3.1875rem; } }
/* ===== PC ===== */
.btm70 {
  margin-bottom: 4.375rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .btm70 {
    margin-bottom: 3.28125rem; } }
/* ===== PC ===== */
.btm72 {
  margin-bottom: 4.5rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .btm72 {
    margin-bottom: 3.375rem; } }
/* ===== PC ===== */
.btm76 {
  margin-bottom: 4.75rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .btm76 {
    margin-bottom: 3.5625rem; } }
/* ===== PC ===== */
.btm80 {
  margin-bottom: 5rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .btm80 {
    margin-bottom: 3.75rem; } }
/* ===== PC ===== */
.btm90 {
  margin-bottom: 5.625rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .btm90 {
    margin-bottom: 4.21875rem; } }
/* ===== PC ===== */
.btm100 {
  margin-bottom: 6.25rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .btm100 {
    margin-bottom: 4.6875rem; } }
/* ===== PC ===== */
.btm110 {
  margin-bottom: 6.875rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .btm110 {
    margin-bottom: 5.15625rem; } }
/* ===== PC ===== */
.btm120 {
  margin-bottom: 7.5rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .btm120 {
    margin-bottom: 5.625rem; } }
/* ===== PC ===== */
.top-0 {
  margin-top: 0rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .top-0 {
    margin-top: 0rem; } }
/* ===== PC ===== */
.top-4 {
  margin-top: 0.25rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .top-4 {
    margin-top: 0.1875rem; } }
/* ===== PC ===== */
.top-8 {
  margin-top: 0.5rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .top-8 {
    margin-top: 0.375rem; } }
/* ===== PC ===== */
.top-10 {
  margin-top: 0.625rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .top-10 {
    margin-top: 0.46875rem; } }
/* ===== PC ===== */
.top-12 {
  margin-top: 0.75rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .top-12 {
    margin-top: 0.5625rem; } }
/* ===== PC ===== */
.top-15 {
  margin-top: 0.9375rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .top-15 {
    margin-top: 0.703125rem; } }
/* ===== PC ===== */
.top-16 {
  margin-top: 1rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .top-16 {
    margin-top: 0.75rem; } }
/* ===== PC ===== */
.top-20 {
  margin-top: 1.25rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .top-20 {
    margin-top: 0.9375rem; } }
/* ===== PC ===== */
.top-25 {
  margin-top: 1.5625rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .top-25 {
    margin-top: 1.171875rem; } }
/* ===== PC ===== */
.top-24 {
  margin-top: 1.5rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .top-24 {
    margin-top: 1.125rem; } }
/* ===== PC ===== */
.top-28 {
  margin-top: 1.75rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .top-28 {
    margin-top: 1.3125rem; } }
/* ===== PC ===== */
.top-30 {
  margin-top: 1.875rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .top-30 {
    margin-top: 1.40625rem; } }
/* ===== PC ===== */
.top-32 {
  margin-top: 2rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .top-32 {
    margin-top: 1.5rem; } }
/* ===== PC ===== */
.top-35 {
  margin-top: 2.1875rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .top-35 {
    margin-top: 1.640625rem; } }
/* ===== PC ===== */
.top-36 {
  margin-top: 2.25rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .top-36 {
    margin-top: 1.6875rem; } }
/* ===== PC ===== */
.top-40 {
  margin-top: 2.5rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .top-40 {
    margin-top: 1.875rem; } }
/* ===== PC ===== */
.top-44 {
  margin-top: 2.75rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .top-44 {
    margin-top: 2.0625rem; } }
/* ===== PC ===== */
.top-45 {
  margin-top: 2.8125rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .top-45 {
    margin-top: 2.109375rem; } }
/* ===== PC ===== */
.top-48 {
  margin-top: 3rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .top-48 {
    margin-top: 2.25rem; } }
/* ===== PC ===== */
.top-50 {
  margin-top: 3.125rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .top-50 {
    margin-top: 2.34375rem; } }
/* ===== PC ===== */
.top-52 {
  margin-top: 3.25rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .top-52 {
    margin-top: 2.4375rem; } }
/* ===== PC ===== */
.top-55 {
  margin-top: 3.4375rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .top-55 {
    margin-top: 2.578125rem; } }
/* ===== PC ===== */
.top-56 {
  margin-top: 3.5rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .top-56 {
    margin-top: 2.625rem; } }
/* ===== PC ===== */
.top-60 {
  margin-top: 3.75rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .top-60 {
    margin-top: 2.8125rem; } }
/* ===== PC ===== */
.top-64 {
  margin-top: 4rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .top-64 {
    margin-top: 3rem; } }
/* ===== PC ===== */
.top-68 {
  margin-top: 4.25rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .top-68 {
    margin-top: 3.1875rem; } }
/* ===== PC ===== */
.top-70 {
  margin-top: 4.375rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .top-70 {
    margin-top: 3.28125rem; } }
/* ===== PC ===== */
.top-72 {
  margin-top: 4.5rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .top-72 {
    margin-top: 3.375rem; } }
/* ===== PC ===== */
.top-76 {
  margin-top: 4.75rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .top-76 {
    margin-top: 3.5625rem; } }
/* ===== PC ===== */
.top-80 {
  margin-top: 5rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .top-80 {
    margin-top: 3.75rem; } }
/* ===== PC ===== */
.top-90 {
  margin-top: 5.625rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .top-90 {
    margin-top: 4.21875rem; } }
/* ===== PC ===== */
.top-100 {
  margin-top: 6.25rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .top-100 {
    margin-top: 4.6875rem; } }
/* ===== PC ===== */
.top-110 {
  margin-top: 6.875rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .top-110 {
    margin-top: 5.15625rem; } }
/* ===== PC ===== */
.top-120 {
  margin-top: 7.5rem; }

/* ===== SP（768px以下）===== */
@media (max-width: 480px) {
  /* 75%縮小（unit衝突防止） */
  .top-120 {
    margin-top: 5.625rem; } }
.w01 {
  width: 1%; }

.w02 {
  width: 2%; }

.w03 {
  width: 3%; }

.w04 {
  width: 4%; }

.w05 {
  width: 5%; }

.w06 {
  width: 6%; }

.w07 {
  width: 7%; }

.w08 {
  width: 8%; }

.w09 {
  width: 9%; }

.w10 {
  width: 10%; }

.w11 {
  width: 11%; }

.w12 {
  width: 12%; }

.w13 {
  width: 13%; }

.w14 {
  width: 14%; }

.w15 {
  width: 15%; }

.w16 {
  width: 16%; }

.w17 {
  width: 17%; }

.w18 {
  width: 18%; }

.w19 {
  width: 19%; }

.w20 {
  width: 20%; }

.w21 {
  width: 21%; }

.w22 {
  width: 22%; }

.w23 {
  width: 23%; }

.w24 {
  width: 24%; }

.w25 {
  width: 25%; }

.w26 {
  width: 26%; }

.w27 {
  width: 27%; }

.w28 {
  width: 28%; }

.w29 {
  width: 29%; }

.w30 {
  width: 30%; }

.w31 {
  width: 31%; }

.w32 {
  width: 32%; }

.w33 {
  width: 33%; }

.w34 {
  width: 34%; }

.w35 {
  width: 35%; }

.w36 {
  width: 36%; }

.w37 {
  width: 37%; }

.w38 {
  width: 38%; }

.w39 {
  width: 39%; }

.w40 {
  width: 40%; }

.w41 {
  width: 41%; }

.w42 {
  width: 42%; }

.w43 {
  width: 43%; }

.w44 {
  width: 44%; }

.w45 {
  width: 45%; }

.w46 {
  width: 46%; }

.w47 {
  width: 47%; }

.w48 {
  width: 48%; }

.w49 {
  width: 49%; }

.w50 {
  width: 50%; }

.w51 {
  width: 51%; }

.w52 {
  width: 52%; }

.w53 {
  width: 53%; }

.w54 {
  width: 54%; }

.w55 {
  width: 55%; }

.w56 {
  width: 56%; }

.w57 {
  width: 57%; }

.w58 {
  width: 58%; }

.w59 {
  width: 59%; }

.w60 {
  width: 60%; }

.w61 {
  width: 61%; }

.w62 {
  width: 62%; }

.w63 {
  width: 63%; }

.w64 {
  width: 64%; }

.w65 {
  width: 65%; }

.w66 {
  width: 66%; }

.w67 {
  width: 67%; }

.w68 {
  width: 68%; }

.w69 {
  width: 69%; }

.w70 {
  width: 70%; }

.w71 {
  width: 71%; }

.w72 {
  width: 72%; }

.w73 {
  width: 73%; }

.w74 {
  width: 74%; }

.w75 {
  width: 75%; }

.w76 {
  width: 76%; }

.w77 {
  width: 77%; }

.w78 {
  width: 78%; }

.w79 {
  width: 79%; }

.w80 {
  width: 80%; }

.w81 {
  width: 81%; }

.w82 {
  width: 82%; }

.w83 {
  width: 83%; }

.w84 {
  width: 84%; }

.w85 {
  width: 85%; }

.w86 {
  width: 86%; }

.w87 {
  width: 87%; }

.w88 {
  width: 88%; }

.w89 {
  width: 89%; }

.w90 {
  width: 90%; }

.w91 {
  width: 91%; }

.w92 {
  width: 92%; }

.w93 {
  width: 93%; }

.w94 {
  width: 94%; }

.w95 {
  width: 95%; }

.w96 {
  width: 96%; }

.w97 {
  width: 97%; }

.w98 {
  width: 98%; }

.w99 {
  width: 99%; }

.w00 {
  width: 100%; }

.fsc-12 {
  font-size: clamp(10px, 1.2vw, 12px); }

.fsc-16 {
  font-size: clamp(12px, 1.4vw, 16px); }

.fsc-20 {
  font-size: clamp(14px, 1.6vw, 20px); }

.fsc-24 {
  font-size: clamp(16px, 1.8vw, 24px); }

.fsc-28 {
  font-size: clamp(18px, 2.2vw, 28px); }

.fsc-32 {
  font-size: clamp(20px, 2.6vw, 32px); }

.fsc-36 {
  font-size: clamp(22px, 3vw, 36px); }

.fsc-40 {
  font-size: clamp(24px, 3.2vw, 40px); }

.fsc-44 {
  font-size: clamp(26px, 3.6vw, 44px); }

.fsc-48 {
  font-size: clamp(28px, 3.8vw, 48px); }

.fsc-52 {
  font-size: clamp(30px, 4vw, 52px); }

.fsc-56 {
  font-size: clamp(32px, 4.2vw, 56px); }

.fsc-60 {
  font-size: clamp(34px, 4.3vw, 60px); }

.fsc-64 {
  font-size: clamp(36px, 4.4vw, 64px); }

:root {
  --fsc-12: clamp(10px, 1.2vw, 12px);
  --fsc-16: clamp(12px, 1.4vw, 16px);
  --fsc-20: clamp(14px, 1.6vw, 20px);
  --fsc-24: clamp(16px, 1.8vw, 24px);
  --fsc-28: clamp(18px, 2.2vw, 28px);
  --fsc-32: clamp(20px, 2.6vw, 32px);
  --fsc-36: clamp(22px, 3.0vw, 36px);
  --fsc-40: clamp(24px, 3.2vw, 40px);
  --fsc-44: clamp(26px, 3.6vw, 44px);
  --fsc-48: clamp(28px, 3.8vw, 48px);
  --fsc-52: clamp(30px, 4.0vw, 52px);
  --fsc-56: clamp(32px, 4.2vw, 56px);
  --fsc-60: clamp(34px, 4.3vw, 60px);
  --fsc-64: clamp(36px, 4.4vw, 64px); }

@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate(0px, 30px); }
  100% {
    opacity: 1;
    transform: translate(0, 0); } }
