@charset "UTF-8";
/*=======================================
	breakpoint
=======================================*/
/*=======================================
	hover
=======================================*/
/*=======================================
	中央配置
=======================================*/
/*=======================================
	可変レスポンシブ
=======================================*/
/* PC */
/* TB */
/* SP */
/*=======================================
	ブラウザ別
=======================================*/
/* Safari */
/* Firefox */
/* ----------------------
- base :アンカーリンク/コンテンツ幅　他
- bottom_spacing :コンテンツ最下部の共通余白
- color :色変数
- fadein :フェードイン
- header :ヘッダー
- footer :フッター
- main_ttl :下層MV見出し
- main_contents 下層side_nav付きページ
- btn :共通ボタン
- contact_bnr :お問合せフォームバナー
- breadcrumbs :パンくずリスト
- side_nav :サブナビ
- txt :フォント設定
- 整列
- mb :汎用_下マージン調整
---------------------- */
/*=======================================
　base
=======================================*/
html {
  scroll-padding-top: 170px;
}
@media screen and (max-width: 768px) {
  html {
    scroll-padding-top: 120px;
  }
}

body {
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Hiragino Maru Gothic W4 JIS2004", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #333;
}

main {
  contain: paint;
}

img,
a {
  width: 100%;
}

/*コンテンツ幅*/
.inner {
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .inner {
    width: 92%;
  }
}

.w1400 {
  max-width: 1400px;
}

.w1350 {
  max-width: 1350px;
}

.w1200 {
  max-width: 1200px;
}

.w1010 {
  max-width: 1010px;
}

.w1000 {
  max-width: 1000px;
}

.w900 {
  max-width: 900px;
}

/* PCではTELのリンク無効 */
@media only screen and (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: unset;
  }
}
@media (min-width: 769px) and (-ms-high-contrast: none), (min-width: 769px) and (-ms-high-contrast: active) {
  a:hover {
    opacity: unset;
  }
}

/*=======================================
　bottom_spacing
=======================================*/
.bottom_spacing {
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .bottom_spacing {
    padding-bottom: 50px;
  }
}

/*=======================================
　color
=======================================*/
:root {
  --main_black: #333;
  --main_white: #FFF;
  --main_navy: #164494;
}

/*=======================================
　fadein
=======================================*/
/*その場で出現*/
.fadeIn {
  opacity: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.fadeIn.is-show {
  opacity: 1;
}

/* 下から表示 */
.fadeIn_up {
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.fadeIn_up.is-show {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

/*左から*/
.fadeIn_left {
  opacity: 0;
  -webkit-transform: translate(-50px, 0);
          transform: translate(-50px, 0);
}
.fadeIn_left.is-show {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

/*右から*/
.fadeIn_right {
  opacity: 0;
  -webkit-transform: translate(50px, 0);
          transform: translate(50px, 0);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.fadeIn_right.is-show {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

/*左下から*/
.fadeIn_bottom_left {
  opacity: 0;
  -webkit-transform: translate(-50px, 50px);
          transform: translate(-50px, 50px);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.fadeIn_bottom_left.is-show {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

/*右下から*/
.fadeIn_bottom_right {
  opacity: 0;
  -webkit-transform: translate(50px, 50px);
          transform: translate(50px, 50px);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.fadeIn_bottom_right.is-show {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

/* ぼやっと出てくる */
.filter_blur {
  -webkit-filter: blur(30px);
          filter: blur(30px);
}
.filter_blur.is-show {
  -webkit-filter: blur(0);
          filter: blur(0);
  -webkit-transition: 1.2s cubic-bezier(0.61, 1, 0.88, 1);
  transition: 1.2s cubic-bezier(0.61, 1, 0.88, 1);
}

/*=======================================
　header
=======================================*/
.header {
  width: 100%;
  height: 93px;
  background-color: var(--main_white);
  font-family: "Figtree", sans-serif;
  font-weight: 500;
  position: fixed;
  top: 0;
  z-index: 1000;
  /* PCナビ */
  /* SPナビ */
}
@media screen and (max-width: 768px) {
  .header {
    height: 71px;
    padding-bottom: 18px;
  }
}
.header .pc {
  height: 100%;
}
.header .pc .flex_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  width: 100%;
  height: 100%;
  padding: 0 50px 0 45px;
  position: relative;
}
.header .pc .flex_area .hd_logo {
  width: 19.375vw;
  width: 307px;
}
.header .pc .flex_area .hd_logo a {
  display: inline-block;
  position: relative;
}
.header .pc .flex_area .hd_logo a .color {
  width: 299px;
}
.header .pc .flex_area .hd_logo a .white {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.header .pc .flex_area nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0 1.9375vw;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding-top: 25px;
}
.header .pc .flex_area nav ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}
.header .pc .flex_area nav ul li a {
  color: var(--main_navy);
  font-size: 14px;
  letter-spacing: 0.05em;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .pc .flex_area nav ul li a::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: transparent;
  border-radius: 50vw;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
  .header .pc .flex_area nav ul li a:hover::before {
    width: 5px;
    height: 5px;
    margin-right: 4px;
    background-color: var(--main_navy);
    translate: 0 -1px;
  }
}
@media (min-width: 769px) and (-ms-high-contrast: none), (min-width: 769px) and (-ms-high-contrast: active) {
  .header .pc .flex_area nav ul li a:hover::before {
    width: 5px;
    height: 5px;
    margin-right: 4px;
    background-color: var(--main_navy);
    translate: 0 -1px;
  }
}
.header .pc .flex_area .language {
  width: 100px;
  text-align: center;
  color: #E34F4F;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  top: 20px;
  right: 40.5px;
}
.header .pc .flex_area .language .lang_inner {
  position: relative;
}
.header .pc .flex_area .language .lang_inner .lang_icon01 {
  display: block;
  width: 10.31px;
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
.header .pc .flex_area .language .lang_inner .lang_icon01 svg {
  vertical-align: middle;
}
.header .pc .flex_area .language .lang_inner .lang_icon02 {
  display: block;
  width: 6px;
  height: 4px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  -webkit-transition: scale 0.2s linear, translate 0.2s linear;
  transition: scale 0.2s linear, translate 0.2s linear;
}
.header .pc .flex_area .language .lang_inner .lang_icon02 svg {
  vertical-align: top;
}
.header .pc .flex_area .language .lang_inner:has(.lang_btn.open) .lang_icon02 {
  scale: 1 -1;
  translate: 0 -3px;
  -webkit-transition: scale 0.2s linear, translate 0.2s linear;
  transition: scale 0.2s linear, translate 0.2s linear;
}
.header .pc .flex_area .language .lang_inner .lang_btn {
  font-family: "Figtree", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5384615385;
  letter-spacing: 0.1em;
  width: 100px;
  height: 20px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .header .pc .flex_area .language .lang_inner .lang_btn {
    font-size: 12px;
  }
}
.header .pc .flex_area .language .lang_inner .lang_btn span {
  position: absolute;
  inset: 0;
}
.header .pc .flex_area .language .lang_inner .lang_list {
  top: 30px;
  left: -9.5px;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  -webkit-filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.16));
          filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.16));
  -webkit-transition: opacity 0.3s, -webkit-filter 0.2s ease;
  transition: opacity 0.3s, -webkit-filter 0.2s ease;
  transition: opacity 0.3s, filter 0.2s ease;
  transition: opacity 0.3s, filter 0.2s ease, -webkit-filter 0.2s ease;
  position: absolute;
  border-radius: 5px;
  background: var(--main_white);
}
.header .pc .flex_area .language .lang_inner .lang_list li {
  width: 119px;
  height: 30px;
  font-size: 12px;
  letter-spacing: 0.03em;
  position: relative;
}
.header .pc .flex_area .language .lang_inner .lang_list li a {
  display: grid;
  place-items: center;
  position: absolute;
  inset: 0;
  z-index: -1;
}
.header .pc .flex_area .language .lang_inner .lang_list li:nth-of-type(2), .header .pc .flex_area .language .lang_inner .lang_list li:nth-of-type(3), .header .pc .flex_area .language .lang_inner .lang_list li:nth-of-type(4) {
  border-top: 1px solid #E34F4F;
}
.header .pc .flex_area .language .lang_inner .lang_list li.current {
  color: var(--main_white);
  background-color: #E34F4F;
}
.header .pc .flex_area .language .lang_inner .lang_list li.current:nth-of-type(1) {
  border-radius: 5px 5px 0 0;
}
.header .pc .flex_area .language .lang_inner .lang_list li.current:nth-of-type(4) {
  border-radius: 0 0 5px 5px;
}
.header .pc .flex_area .language .lang_inner:has(.open) .lang_list {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  -webkit-filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.16));
          filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.16));
  -webkit-transition: opacity 0.5s ease, -webkit-filter 0.4s ease;
  transition: opacity 0.5s ease, -webkit-filter 0.4s ease;
  transition: opacity 0.5s ease, filter 0.4s ease;
  transition: opacity 0.5s ease, filter 0.4s ease, -webkit-filter 0.4s ease;
}
.header .pc .flex_area .language .lang_inner:has(.open) .lang_list li a {
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .header .sp {
    width: 100%;
    height: 100%;
    /* ハンバーガーメニューボタン */
    /* ハンバーガーメニュー中身 */
  }
  .header .sp .flex_area {
    width: 92%;
    height: 100%;
    padding-top: 14px;
    margin-inline: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    position: relative;
  }
  .header .sp .flex_area:has(.hd_logo.change) .language {
    color: var(--main_white);
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .header .sp .flex_area:has(.hd_logo.change) .language .lang_icon01 svg path {
    fill: var(--main_white);
    -webkit-transition: fill 0.4s;
    transition: fill 0.4s;
  }
  .header .sp .flex_area:has(.hd_logo.change) .language .lang_icon02 svg path {
    stroke: var(--main_white);
    -webkit-transition: stroke 0.4s;
    transition: stroke 0.4s;
  }
  .header .sp .flex_area .hd_logo {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 211px;
    z-index: 10;
  }
  .header .sp .flex_area .hd_logo a {
    display: inline-block;
    position: relative;
  }
  .header .sp .flex_area .hd_logo a .white {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
  }
  .header .sp .flex_area .hd_logo.change .color {
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .header .sp .flex_area .hd_logo.change .white {
    opacity: 1;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .header .sp .flex_area .hd_right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .header .sp .flex_area .hd_right .language {
    width: 81px;
    text-align: center;
    color: #E34F4F;
    margin-right: 11px;
    margin-bottom: 6px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    z-index: 10;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    position: relative;
  }
  .header .sp .flex_area .hd_right .language:has(.lang_btn.open) .lang_icon02 svg {
    scale: 1 -1;
    translate: 0;
    -webkit-transition: scale 0.3s linear, translate 0.3s linear;
    transition: scale 0.3s linear, translate 0.3s linear;
  }
  .header .sp .flex_area .hd_right .language .lang_icon01 svg {
    display: block;
    width: 11px;
    aspect-ratio: 1/1;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 0;
  }
  .header .sp .flex_area .hd_right .language .lang_icon01 svg path {
    fill: #e34f4f;
    -webkit-transition: fill 0.4s;
    transition: fill 0.4s;
  }
  .header .sp .flex_area .hd_right .language .lang_icon02 svg {
    display: block;
    width: 7px;
    height: 5px;
    position: absolute;
    top: 5px;
    right: 0;
    -webkit-transition: scale 0.3s linear, translate 0.3s linear;
    transition: scale 0.3s linear, translate 0.3s linear;
  }
  .header .sp .flex_area .hd_right .language .lang_icon02 svg path {
    -webkit-transition: stroke 0.4s;
    transition: stroke 0.4s;
  }
  .header .sp .flex_area .hd_right .language .lang_btn {
    font-family: "Figtree", sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.1666666667;
    letter-spacing: 0.03em;
    width: 100%;
    height: 14px;
    padding-left: 4px;
    margin-inline: auto;
    position: relative;
    z-index: 1;
  }
  .header .sp .flex_area .hd_right .language .lang_btn span {
    position: absolute;
    inset: 0;
  }
  .header .sp .flex_area .hd_right .lang_list {
    color: #E34F4F;
    top: 23px;
    opacity: 0;
    z-index: -1;
    -webkit-filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.16));
            filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.16));
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    position: absolute;
    border-radius: 5px;
    background: var(--main_white);
    visibility: hidden;
  }
  .header .sp .flex_area .hd_right .lang_list li {
    width: 84.25px;
    height: 30px;
    font-size: 12px;
    letter-spacing: 0.03em;
    position: relative;
  }
  .header .sp .flex_area .hd_right .lang_list li a {
    font-weight: 500;
    line-height: 1;
    display: grid;
    place-items: center;
    position: absolute;
    inset: 0;
  }
  .header .sp .flex_area .hd_right .lang_list li:not(:first-of-type) {
    border-top: 1px solid #E34F4F;
  }
  .header .sp .flex_area .hd_right .lang_list li:nth-of-type(2) {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
  }
  .header .sp .flex_area .hd_right .lang_list li:nth-of-type(3) {
    font-family: "Poppins", sans-serif;
  }
  .header .sp .flex_area .hd_right .lang_list li.current {
    color: var(--main_white);
    background-color: #E34F4F;
  }
  .header .sp .flex_area .hd_right .lang_list li.current:nth-of-type(1) {
    border-radius: 5px 5px 0 0;
  }
  .header .sp .flex_area .hd_right .lang_list li.current:nth-of-type(4) {
    border-radius: 0 0 5px 5px;
  }
  .header .sp .flex_area .hd_right:has(.open) .lang_list {
    opacity: 1;
    z-index: 1;
    visibility: visible;
    -webkit-filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.16));
            filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.16));
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .header .sp .openbtn {
    width: 28px;
    height: 17px;
    z-index: 5;
    position: relative;
    z-index: 10;
  }
  .header .sp .openbtn span {
    display: inline-block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--main_navy);
  }
  .header .sp .openbtn span:nth-of-type(1) {
    top: 0;
  }
  .header .sp .openbtn span:nth-of-type(2) {
    top: 6px;
  }
  .header .sp .openbtn.active span {
    top: 4px;
    background-color: var(--main_white);
  }
  .header .sp .openbtn.active span:nth-of-type(1) {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
  .header .sp .openbtn.active span:nth-of-type(2) {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  .header .sp .g_nav {
    color: var(--main_white);
    position: fixed;
    z-index: 4;
    top: -110vh;
    left: 0;
    width: 100vw;
    padding-bottom: 50px;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    display: block;
    background: linear-gradient(45deg, rgb(43, 63, 145) 0%, rgb(59, 104, 162) 100%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header .sp .g_nav.panelactive {
    top: 0;
    left: 0;
    z-index: 1;
  }
  .header .sp .g_nav .g_nav_inn {
    height: 100%;
    overflow-y: scroll;
  }
  .header .sp .g_nav .g_nav_inn nav .nav_area {
    width: 76.26666667%;
    height: 100%;
    margin-top: 112px;
    margin-inline: auto;
    margin-bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 15px 0;
  }
  .header .sp .g_nav .g_nav_inn nav .nav_area .link_item .accordion_btn {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1;
    display: block flex;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header .sp .g_nav .g_nav_inn nav .nav_area .link_item .accordion_btn .accordion_ttl {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .header .sp .g_nav .g_nav_inn nav .nav_area .link_item .accordion_btn .icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    position: relative;
    cursor: pointer;
  }
  .header .sp .g_nav .g_nav_inn nav .nav_area .link_item .accordion_btn .icon::before {
    content: "";
    display: block;
    width: 16px;
    height: 1px;
    background: var(--main_white);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .header .sp .g_nav .g_nav_inn nav .nav_area .link_item .accordion_btn .icon::after {
    content: "";
    display: block;
    width: 1px;
    height: 16px;
    background: var(--main_white);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
  .header .sp .g_nav .g_nav_inn nav .nav_area .link_item .accordion_btn.open .icon::after {
    rotate: 90deg;
    translate: -12px -6px;
    opacity: 0;
    -webkit-transition: rotate 0.4s, opacity 0s linear 0.2s, translate 0.4s;
    transition: rotate 0.4s, opacity 0s linear 0.2s, translate 0.4s;
  }
  .header .sp .g_nav .g_nav_inn nav .nav_area .link_item .accordion_content {
    display: none;
    padding: 12px 0 6px;
  }
  .header .sp .g_nav .g_nav_inn nav .nav_area .link_item .accordion_content li {
    font-size: 13px;
    letter-spacing: 0.08em;
    line-height: 1.4615384615;
    padding-left: 11px;
    position: relative;
  }
  .header .sp .g_nav .g_nav_inn nav .nav_area .link_item .accordion_content li:not(:last-of-type) {
    margin-bottom: 12px;
  }
  .header .sp .g_nav .g_nav_inn nav .nav_area .link_item .accordion_content li::before {
    content: "";
    display: block;
    width: 5px;
    height: 1px;
    background: var(--main_white);
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 0;
  }
  .header .sp .g_nav .g_nav_inn nav .nav_area .link_item .accordion_content li a {
    display: block;
    min-width: 50%;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
  .header .sp .g_nav .g_nav_inn nav .sp_nav_btn {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .header .sp .g_nav .g_nav_inn nav .sp_nav_btn .btn {
    border: 1px solid var(--main_white);
  }
}
.header:has(.sp .g_nav.panelactive)::before {
  content: "";
  position: fixed;
  width: 100vw;
  height: 100svh;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: -1;
}

/*=======================================
　footer
=======================================*/
footer {
  background: center/cover url(../img/common/footer_bg.jpg) no-repeat;
  color: var(--main_white);
  padding: 148px 0 27px;
  position: relative;
}
@media screen and (max-width: 768px) {
  footer {
    background: center/cover url(../img/common/footer_bg_sp.jpg) no-repeat;
    padding: 63px 0 30px;
  }
}
footer .page-top_btn {
  width: 72px;
  height: 72px;
  position: fixed;
  right: 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 10;
}
footer .page-top_btn.active {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  footer .page-top_btn {
    width: 59px;
    height: 59px;
  }
}
footer .page-top_btn .btn_wrap {
  width: 100%;
  height: 100%;
  border-radius: 5px 0 0 5px;
  overflow-x: hidden;
  position: relative;
  z-index: 0;
}
footer .page-top_btn .btn_wrap::before {
  content: "";
  display: block;
  width: 200%;
  height: 100%;
  border-radius: 5px 0 0 5px;
  background: linear-gradient(45deg, #2B3F91 0%, #3B68A2 50%, #2B3F91 100%);
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  translate: 50% 0;
  -webkit-transition: translate 0.4s ease;
  transition: translate 0.4s ease;
}
@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
  footer .page-top_btn .btn_wrap:hover::before {
    translate: 0 0;
    -webkit-transition: translate 0.4s ease;
    transition: translate 0.4s ease;
  }
}
@media (min-width: 769px) and (-ms-high-contrast: none), (min-width: 769px) and (-ms-high-contrast: active) {
  footer .page-top_btn .btn_wrap:hover::before {
    translate: 0 0;
    -webkit-transition: translate 0.4s ease;
    transition: translate 0.4s ease;
  }
}
footer .page-top_btn .btn_wrap a {
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  position: relative;
  font-family: "Figtree", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.2;
  text-align: center;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  footer .page-top_btn .btn_wrap a {
    font-size: 14px;
    letter-spacing: 0.01em;
  }
}
footer .inner .flex_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 110px;
}
@media screen and (max-width: 768px) {
  footer .inner .flex_area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    margin-bottom: 32px;
  }
}
footer .inner .flex_area .info_area {
  width: 43%;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  footer .inner .flex_area .info_area {
    display: contents;
  }
}
footer .inner .flex_area .info_area .ft_logo {
  width: 79.4%;
  margin-bottom: 66px;
}
@media screen and (max-width: 768px) {
  footer .inner .flex_area .info_area .ft_logo {
    width: 85%;
    margin-bottom: 28px;
  }
}
footer .inner .flex_area .info_area .address {
  font-size: 18px;
  letter-spacing: 0.05em;
  margin-bottom: 39px;
}
@media screen and (max-width: 768px) {
  footer .inner .flex_area .info_area .address {
    font-size: 16px;
    line-height: 1.6875;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
  }
}
footer .inner .flex_area .info_area .tel {
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 51px;
}
@media screen and (max-width: 768px) {
  footer .inner .flex_area .info_area .tel {
    font-size: 16px;
  }
}
footer .inner .flex_area .info_area .tel span {
  font-family: "Figtree", sans-serif;
  font-weight: 500;
}
footer .inner .flex_area .info_area .tel span:first-of-type {
  margin-right: 26px;
}
@media screen and (max-width: 768px) {
  footer .inner .flex_area .info_area .tel span:first-of-type {
    display: inline-block;
    margin-bottom: 8px;
  }
}
footer .inner .flex_area .info_area .tel span:nth-of-type(2) {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  footer .inner .flex_area .info_area .tel span:nth-of-type(2) {
    display: inline;
  }
}
@media screen and (max-width: 400px) {
  footer .inner .flex_area .info_area .tel span:nth-of-type(2) {
    display: block;
    margin-bottom: 8px;
  }
}
footer .inner .flex_area .info_area .tel span:last-of-type {
  font-size: 14px;
  display: block;
  margin-top: 4px;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  footer .inner .flex_area .info_area .tel span:last-of-type {
    margin-top: 0;
    line-height: 1.5714285714;
  }
}
footer .inner .flex_area .info_area .tel span:last-of-type .br1200 {
  display: none;
}
@media screen and (max-width: 1200px) {
  footer .inner .flex_area .info_area .tel span:last-of-type .br1200 {
    display: block;
  }
}
footer .inner .flex_area .info_area .footer_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  footer .inner .flex_area .info_area .footer_btn {
    gap: 18px;
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
}
@media screen and (max-width: 768px) {
  footer .inner .flex_area .info_area .footer_btn .btn a {
    width: 220px;
    height: 53px;
    margin-inline: auto;
  }
}
footer .inner .flex_area .nav_area {
  width: 52.1667%;
  padding-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 60px 50px;
  -ms-flex-line-pack: start;
      align-content: start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (max-width: 1200px) {
  footer .inner .flex_area .nav_area {
    grid-template-columns: repeat(2, auto);
  }
}
@media screen and (max-width: 768px) {
  footer .inner .flex_area .nav_area {
    width: 64.63768116%;
    padding-top: 0;
    margin-inline: auto;
    margin-bottom: 34px;
    grid-template-columns: repeat(3, auto);
    gap: 19px;
  }
}
@media screen and (max-width: 640px) {
  footer .inner .flex_area .nav_area {
    grid-template-columns: repeat(2, auto);
  }
}
footer .inner .flex_area .nav_area .link_item {
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 11px 0;
}
footer .inner .flex_area .nav_area .link_item:nth-of-type(3) {
  justify-self: end;
  width: 102px;
}
@media screen and (max-width: 1200px) {
  footer .inner .flex_area .nav_area .link_item:nth-of-type(3) {
    justify-self: start;
  }
}
@media screen and (max-width: 768px) {
  footer .inner .flex_area .nav_area .link_item:nth-of-type(3) {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (max-width: 768px) {
  footer .inner .flex_area .nav_area .link_item {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  footer .inner .flex_area .nav_area .link_item:nth-of-type(1) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  footer .inner .flex_area .nav_area .link_item:nth-of-type(2) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    justify-self: end;
  }
  footer .inner .flex_area .nav_area .link_item:nth-of-type(3) {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    justify-self: center;
  }
  footer .inner .flex_area .nav_area .link_item:nth-of-type(4) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    justify-self: center;
  }
  footer .inner .flex_area .nav_area .link_item:nth-of-type(5) {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}
@media screen and (max-width: 640px) {
  footer .inner .flex_area .nav_area .link_item:nth-of-type(2) {
    justify-self: start;
  }
  footer .inner .flex_area .nav_area .link_item:nth-of-type(3) {
    justify-self: start;
  }
  footer .inner .flex_area .nav_area .link_item:nth-of-type(4) {
    justify-self: end;
  }
  footer .inner .flex_area .nav_area .link_item:nth-of-type(5) {
    justify-self: end;
  }
}
footer .inner .flex_area .nav_area .link_item dt, footer .inner .flex_area .nav_area .link_item dd {
  display: block;
}
footer .inner .flex_area .nav_area .link_item dt {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  -webkit-transition: translate 0.2s;
  transition: translate 0.2s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
footer .inner .flex_area .nav_area .link_item dt::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 0;
  height: 0;
  background-color: transparent;
  border-radius: 50vw;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
  footer .inner .flex_area .nav_area .link_item dt:hover::before {
    width: 6px;
    height: 6px;
    margin-right: 6px;
    background-color: var(--main_white);
    translate: 0 1px;
  }
}
@media (min-width: 769px) and (-ms-high-contrast: none), (min-width: 769px) and (-ms-high-contrast: active) {
  footer .inner .flex_area .nav_area .link_item dt:hover::before {
    width: 6px;
    height: 6px;
    margin-right: 6px;
    background-color: var(--main_white);
    translate: 0 1px;
  }
}
@media screen and (max-width: 768px) {
  footer .inner .flex_area .nav_area .link_item dt {
    font-size: 17px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
footer .inner .flex_area .nav_area .link_item dd {
  font-size: 12px;
  position: relative;
  -webkit-transition: translate 0.2s;
  transition: translate 0.2s;
}
@media screen and (max-width: 768px) {
  footer .inner .flex_area .nav_area .link_item dd {
    display: none;
  }
}
footer .inner .flex_area .nav_area .link_item dd::before {
  content: "";
  width: 6px;
  height: 1px;
  display: inline-block;
  background: var(--main_white);
  position: absolute;
  left: 0;
  top: 0.6em;
}
@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
  footer .inner .flex_area .nav_area .link_item dd:hover:has(a:hover) {
    translate: 8px 0;
  }
}
@media (min-width: 769px) and (-ms-high-contrast: none), (min-width: 769px) and (-ms-high-contrast: active) {
  footer .inner .flex_area .nav_area .link_item dd:hover:has(a:hover) {
    translate: 8px 0;
  }
}
footer .inner .flex_area .nav_area .link_item dd a {
  padding-left: calc(8px + 0.5em);
}
footer .ft_bottom_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  footer .ft_bottom_area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
  }
}
footer .ft_bottom_area .copy {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 12px;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  footer .ft_bottom_area .copy {
    font-size: 10px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    text-align: center;
  }
}
footer .ft_bottom_area .privacy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  footer .ft_bottom_area .privacy {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
footer .ft_bottom_area .privacy li a {
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.4545454545;
  margin-inline: 20.5px;
  position: relative;
}
@media screen and (max-width: 768px) {
  footer .ft_bottom_area .privacy li a {
    font-size: 10px;
    letter-spacing: 0.08em;
    margin-inline: 10px;
  }
}
footer .ft_bottom_area .privacy li a::before {
  content: "";
  display: block;
  width: 1px;
  height: 16px;
  background: var(--main_white);
  position: absolute;
  top: 2px;
  left: -20.5px;
}
@media screen and (max-width: 768px) {
  footer .ft_bottom_area .privacy li a::before {
    top: 0;
    left: -10px;
  }
}
footer .ft_bottom_area .privacy li:nth-of-type(2) a::after {
  content: "";
  display: block;
  width: 1px;
  height: 16px;
  background: var(--main_white);
  position: absolute;
  top: 2px;
  right: -20.5px;
}
@media screen and (max-width: 768px) {
  footer .ft_bottom_area .privacy li:nth-of-type(2) a::after {
    top: 0;
    right: -10px;
  }
}

/*=======================================
　main_ttl
=======================================*/
.main_ttl {
  color: var(--main_white);
  height: 471px;
  margin-top: 93px;
  margin-bottom: 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .main_ttl {
    height: 170px;
    margin-top: 71px;
    margin-bottom: 10px;
  }
}
.main_ttl h2 {
  line-height: 1.5;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 7.75%;
}
@media screen and (max-width: 768px) {
  .main_ttl h2 {
    line-height: 1.2;
  }
}
.main_ttl h2 .en {
  font-family: "Figtree", sans-serif;
  font-size: 75px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .main_ttl h2 .en {
    font-size: 38px;
  }
}
.main_ttl h2 .jp {
  display: block;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .main_ttl h2 .jp {
    font-size: 14px;
    letter-spacing: 0.05em;
  }
}

/*=======================================
　main_contents 下層side_nav付きページ
=======================================*/
.main_contents {
  width: calc(100% - 100px);
  max-width: 1010px;
}
@media screen and (max-width: 768px) {
  .main_contents {
    width: 100%;
  }
}
.main_contents section {
  container-type: inline-size;
}
.main_contents section:not(:last-of-type) {
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .main_contents section:not(:last-of-type) {
    margin-bottom: 75px;
  }
}
.main_contents section .section_heading {
  font-weight: 700;
  letter-spacing: 0.05em;
  padding-bottom: 25px;
  margin-bottom: 40px;
  border-bottom: 1px solid #B8B8B8;
}
@media screen and (max-width: 768px) {
  .main_contents section .section_heading {
    padding-bottom: 14px;
    margin-bottom: 25px;
  }
}
.main_contents section .section_heading hgroup {
  font-weight: 700;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 17px;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .main_contents section .section_heading hgroup {
    gap: 12px;
    margin-bottom: 5px;
  }
}
.main_contents section .section_heading hgroup h3 {
  font-size: 36px;
}
@media screen and (max-width: 768px) {
  .main_contents section .section_heading hgroup h3 {
    font-size: 22px;
  }
}
.main_contents section .section_heading hgroup p {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .main_contents section .section_heading hgroup p {
    font-size: 14px;
  }
}
.main_contents section .section_heading .en {
  color: var(--main_navy);
  font-family: "Figtree", sans-serif;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .main_contents section .section_heading .en {
    font-size: 12px;
    line-height: 1.4166666667;
  }
}
.main_contents section .section_heading > h3 {
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .main_contents section .section_heading > h3 {
    margin-bottom: 5px;
    font-size: 22px;
  }
}

/*=======================================
　btn
=======================================*/
.btn {
  width: 100%;
  max-width: 308px;
  height: 68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-inline: auto;
  border-radius: 50vw;
  position: relative;
  overflow-x: hidden;
}
.btn:has(.little_btn) {
  max-width: 248px;
  height: 60px;
}
@media screen and (max-width: 768px) {
  .btn:has(.little_btn) {
    max-width: 220px;
    height: 53px;
  }
}
.btn::before {
  content: "";
  display: block;
  width: 200%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  translate: 50% 0;
  -webkit-transition: translate 0.4s ease;
  transition: translate 0.4s ease;
}
.btn.blue::before {
  background: linear-gradient(235deg, rgb(9, 106, 185) 0%, rgb(71, 167, 246) 50%, rgb(9, 106, 185) 100%);
}
.btn.green::before {
  background: linear-gradient(67deg, rgb(0, 128, 64) 0%, rgb(99, 207, 128) 50%, rgb(0, 128, 64) 100%);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.btn.navy::before {
  background: linear-gradient(67deg, rgb(43, 63, 145) 0%, rgb(59, 104, 162) 50%, rgb(43, 63, 145) 100%);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
  .btn:hover::before {
    translate: 0 0;
    -webkit-transition: translate 0.4s ease;
    transition: translate 0.4s ease;
  }
}
@media (min-width: 769px) and (-ms-high-contrast: none), (min-width: 769px) and (-ms-high-contrast: active) {
  .btn:hover::before {
    translate: 0 0;
    -webkit-transition: translate 0.4s ease;
    transition: translate 0.4s ease;
  }
}
.btn .big_btn,
.btn .little_btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-style: none;
  background: none;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 32px;
  position: relative;
  cursor: pointer;
}
.btn .big_btn::after,
.btn .little_btn::after {
  content: "";
  width: 16px;
  height: 11px;
  display: inline-block;
  background: center/contain url(../img/common/arrow-right.svg) no-repeat;
  border-radius: 50vw;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 22px;
}
@media screen and (max-width: 768px) {
  .btn .big_btn::after,
  .btn .little_btn::after {
    font-size: 13px;
    letter-spacing: 0.05em;
    width: 14.5px;
    height: 8.5px;
  }
}
.btn .big_btn span,
.btn .little_btn span {
  display: block;
  font-size: 10px;
  font-weight: 400;
  margin-top: 4px;
}
.btn .big_btn {
  max-width: 308px;
}
.btn .little_btn {
  max-width: 248px;
  font-size: 17px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .btn .little_btn {
    max-width: 220px;
    height: 53px;
    font-size: 13px;
    line-height: 1;
    padding-left: 26px;
  }
}

/*=======================================
　contact_bnr
=======================================*/
.contact_bnr {
  background: center/cover url(../img/common/contact_bnr_bg.jpg) no-repeat;
  border: 1px solid var(--main_navy);
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 9.5%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 96px 4.41501104%;
  margin-top: 200px;
}
@media screen and (max-width: 768px) {
  .contact_bnr {
    background: center/cover url(../img/common/contact_bnr_bg_sp.jpg) no-repeat;
    text-align: center;
    padding: 48px 13px;
    margin-top: 60px;
  }
}
.contact_bnr .bnr_heading {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.contact_bnr .bnr_heading h2, .contact_bnr .bnr_heading h3 {
  color: var(--main_navy);
  font-family: "Figtree", sans-serif;
  font-size: 57px;
  font-size: clamp(42.75px, 3.5625vw, 57px);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .contact_bnr .bnr_heading h2, .contact_bnr .bnr_heading h3 {
    font-size: 37px;
    margin-bottom: 6px;
  }
}
.contact_bnr .bnr_heading p {
  font-size: 18px;
  font-size: clamp(13.75px, 1.125vw, 18px);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.444;
}
@media screen and (max-width: 768px) {
  .contact_bnr .bnr_heading p {
    font-size: 16px;
  }
}
.contact_bnr .bnr_information {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px 8px;
}
@media screen and (max-width: 768px) {
  .contact_bnr .bnr_information {
    gap: 20px;
  }
}
.contact_bnr .bnr_information .btn {
  width: 248px;
  height: 60px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .contact_bnr .bnr_information .btn {
    width: 220px;
    height: 53px;
  }
}
.contact_bnr .bnr_information .btn .little_btn {
  padding-left: 27px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .contact_bnr .bnr_information .btn.tel_btn {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .contact_bnr .bnr_information .btn.form_btn {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.contact_bnr .bnr_information .btn.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .contact_bnr .bnr_information .btn.sp {
    display: inline-block;
  }
}
.contact_bnr .bnr_information .tel {
  font-size: 14px;
  font-size: clamp(10px, 0.875vw, 14px);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
}
.contact_bnr .bnr_information .tel span {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  display: block;
  color: var(--main_navy);
  font-size: 25px;
  font-size: clamp(18.6px, 1.5625vw, 25px);
  letter-spacing: 0.05em;
  line-height: 1.75;
}
.contact_bnr .bnr_information .reception {
  width: 100%;
  color: var(--main_navy);
  background-color: var(--main_white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-align: center;
  padding: 5px;
}
@media screen and (max-width: 768px) {
  .contact_bnr .bnr_information .reception {
    font-size: 12px;
    letter-spacing: 0.05em;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

/*=======================================
　breadcrumbs
=======================================*/
.breadcrumbs {
  margin-bottom: 74px;
}
@media screen and (max-width: 768px) {
  .breadcrumbs {
    margin-bottom: 69px;
  }
}
.breadcrumbs nav ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.1em;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.breadcrumbs nav ol li {
  font-weight: 500;
  font-size: 14px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .breadcrumbs nav ol li {
    font-size: 11px;
    letter-spacing: 0.1em;
  }
}
.breadcrumbs nav ol li:not(:last-child) {
  padding-right: 20px;
  margin-right: 10px;
  color: var(--main_black);
}
@media screen and (max-width: 768px) {
  .breadcrumbs nav ol li:not(:last-child) {
    padding-right: 15px;
    margin-right: 2px;
  }
}
.breadcrumbs nav ol li:not(:last-child)::before {
  content: "＞";
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .breadcrumbs nav ol li:not(:last-child)::before {
    font-size: 12px;
    top: 45%;
  }
}
.breadcrumbs nav ol li:last-child {
  color: var(--main_navy);
  font-weight: 700;
}

/*=======================================
　side_nav
=======================================*/
.side_nav {
  height: auto;
  position: sticky;
  top: 150px;
  left: 0;
  padding-left: 22px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .side_nav {
    display: none;
  }
}
.side_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 24px;
  padding-bottom: 100px;
}
.side_nav ul li {
  width: 52px;
}
.side_nav ul li a {
  color: #676767;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.5;
  position: relative;
}
.side_nav ul li a.active {
  color: var(--main_navy);
}
.side_nav ul li a.active::before {
  content: "";
  display: block;
  width: 15px;
  height: 1px;
  background-color: var(--main_navy);
  position: absolute;
  top: 0.75em;
  left: -22px;
}

/*=======================================
　txt
=======================================*/
.txt_vertical {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl; /* 縦書き：右→左に改行 */
  text-orientation: upright; /* ずれる場合に追加 */
  -webkit-font-feature-settings: "pkna";
          font-feature-settings: "pkna"; /* ずれる場合に追加 */
}

.font_16 {
  font-size: clamp(14px, 1vw, 16px);
}

.font_18 {
  font-size: clamp(16px, 1.125vw, 18px);
}

.font_20 {
  font-size: clamp(18px, 1.25vw, 20px);
}

.font_22 {
  letter-spacing: 0.05em;
  line-height: 1.9;
  font-size: clamp(20px, 1.375vw, 22px);
}

.font_24 {
  font-size: clamp(22px, 1.5vw, 24px);
}

.notes_01 {
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-size: clamp(10px, 0.75vw, 12px);
}
@media screen and (max-width: 768px) {
  .notes_01 {
    line-height: 1.6;
  }
}

/*=======================================
　整列
=======================================*/
.align_L {
  text-align: left;
  margin-left: 0 !important;
}

.align_C {
  text-align: center;
}

.align_R {
  text-align: right;
  margin-right: 0 !important;
}

/*=======================================
　mb
=======================================*/
.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}
@media screen and (max-width: 768px) {
  .mb30 {
    margin-bottom: 15px !important;
  }
}

.mb40 {
  margin-bottom: 40px !important;
}
@media screen and (max-width: 768px) {
  .mb40 {
    margin-bottom: 20px !important;
  }
}

.mb50 {
  margin-bottom: 50px !important;
}
@media screen and (max-width: 768px) {
  .mb50 {
    margin-bottom: 25px !important;
  }
}

.mb60 {
  margin-bottom: 60px !important;
}
@media screen and (max-width: 768px) {
  .mb60 {
    margin-bottom: 30px !important;
  }
}

.mb70 {
  margin-bottom: 70px !important;
}
@media screen and (max-width: 768px) {
  .mb70 {
    margin-bottom: 35px !important;
  }
}

.mb80 {
  margin-bottom: 80px !important;
}
@media screen and (max-width: 768px) {
  .mb80 {
    margin-bottom: 40px !important;
  }
}

.mb90 {
  margin-bottom: 90px !important;
}
@media screen and (max-width: 768px) {
  .mb90 {
    margin-bottom: 45px !important;
  }
}

.mb100 {
  margin-bottom: 100px !important;
}
@media screen and (max-width: 768px) {
  .mb100 {
    margin-bottom: 50px !important;
  }
}

.mb110 {
  margin-bottom: 110px !important;
}
@media screen and (max-width: 768px) {
  .mb110 {
    margin-bottom: 55px !important;
  }
}

.mb120 {
  margin-bottom: 120px !important;
}
@media screen and (max-width: 768px) {
  .mb120 {
    margin-bottom: 60px !important;
  }
}

.mb140 {
  margin-bottom: 140px !important;
}
@media screen and (max-width: 768px) {
  .mb140 {
    margin-bottom: 70px !important;
  }
}

.mb160 {
  margin-bottom: 160px !important;
}
@media screen and (max-width: 768px) {
  .mb160 {
    margin-bottom: 80px !important;
  }
}

.mb200 {
  margin-bottom: 200px !important;
}
@media screen and (max-width: 768px) {
  .mb200 {
    margin-bottom: 100px !important;
  }
}/*# sourceMappingURL=common.css.map */