@charset "UTF-8";
/* アニメーション
---------------------------------------------------------- */
@-webkit-keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOutAnime {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOutAnime {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fadeUpAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(12px);
            transform: translateY(12px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeUpAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(12px);
            transform: translateY(12px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeDownAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeDownAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeLeftAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-12px);
            transform: translateX(-12px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fadeLeftAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-12px);
            transform: translateX(-12px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes fadeRightAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateX(12px);
            transform: translateX(12px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fadeRightAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateX(12px);
            transform: translateX(12px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes slideToRight {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0);
  }
}
@keyframes slideToRight {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0);
  }
}
@-webkit-keyframes slideToLeft {
  0% {
    clip-path: inset(0 0 0 100%);
  }
  100% {
    clip-path: inset(0);
  }
}
@keyframes slideToLeft {
  0% {
    clip-path: inset(0 0 0 100%);
  }
  100% {
    clip-path: inset(0);
  }
}
.fadeUp {
  -webkit-animation: fadeUpAnime 1s forwards;
          animation: fadeUpAnime 1s forwards;
  opacity: 0;
}

.fadeLeft {
  -webkit-animation: fadeLeftAnime 1s forwards;
          animation: fadeLeftAnime 1s forwards;
  opacity: 0;
}

.fadeRight {
  -webkit-animation: fadeRightAnime 1s forwards;
          animation: fadeRightAnime 1s forwards;
  opacity: 0;
}

.fadeIn {
  -webkit-animation: fadeInAnime 1s forwards;
          animation: fadeInAnime 1s forwards;
  opacity: 0;
}

.delay02 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.delay04 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.delay06 {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.delay08 {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.delay10 {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

@media all and (min-width: 751px) {
  .delay02_pc {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
  }
  .delay04_pc {
    -webkit-animation-delay: 0.4s;
            animation-delay: 0.4s;
  }
  .delay06_pc {
    -webkit-animation-delay: 0.6s;
            animation-delay: 0.6s;
  }
  .delay08_pc {
    -webkit-animation-delay: 0.8s;
            animation-delay: 0.8s;
  }
}
.fadeUpTrigger,
.fadeLeftTrigger,
.fadeRightTrigger,
.fadeInTrigger {
  opacity: 0;
}

.delayScroll > *,
.delayScrollLeft > * {
  opacity: 0;
}

/* リセット・共通スタイル
---------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Shippori Mincho", serif;
  color: #262424;
  font-size: 15px;
}
@media all and (min-width: 751px) {
  body {
    font-size: 16px;
  }
}
@media screen and (min-width: 751px) and (max-width: 960px) {
  body {
    font-size: clamp(14px, 1.3vw, 18px);
  }
}

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

a {
  color: #262424;
  text-decoration: none;
}

a img {
  border: none;
}

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

:root {
  --header_height: 66px;
}
@media all and (min-width: 751px) {
  :root {
    --header_height: 186px;
  }
}

figure {
  margin: 0;
}

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

ul, li, dl, dt, dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

input, label, select, textarea {
  vertical-align: middle;
}

button {
  color: inherit;
  background-color: unset;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

/* ローディング */
html {
  -webkit-animation: fadeInAnime 0.8s forwards;
          animation: fadeInAnime 0.8s forwards;
  opacity: 0;
}

/* inner
---------------------------------------------------------- */
.inner {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  max-width: 1920px;
}
@media all and (min-width: 751px) {
  .inner {
    max-width: auto;
  }
}
@media all and (min-width: 751px) and (min-width: 961px) {
  .inner {
    width: calc(1062.4px + 335.6 * (100vw - 1280px) / 1220);
  }
}
@media screen and (min-width: 751px) and (max-width: 960px) {
  .inner {
    padding: 0 8.5vw;
  }
}

/* 非表示
---------------------------------------------------------- */
@media all and (min-width: 751px) {
  .for_sp {
    display: none;
  }
}

@media all and (max-width: 750px) {
  .for_pc {
    display: none;
  }
}

/* 共通
---------------------------------------------------------- */
main {
  margin-top: var(--header_height);
}

/* 画像パララックス */
.parallax-box {
  position: relative;
  overflow: hidden;
}
.parallax-box .parallax-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: -webkit-transform 0.1s linear;
  transition: -webkit-transform 0.1s linear;
  transition: transform 0.1s linear;
  transition: transform 0.1s linear, -webkit-transform 0.1s linear;
}

/* 下層ページ　メインビジュアル
---------------------------------------------------------- */
:not(#pageHome) section:not(:last-of-type) .box {
  border-bottom: 0.6px solid rgba(38, 36, 36, 0.6);
}
:not(#pageHome) section .number_wrap {
  margin-bottom: 60px;
}
@media all and (min-width: 751px) {
  :not(#pageHome) section .number_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0 50px;
  }
}
@media all and (min-width: 751px) and (min-width: 1401px) {
  :not(#pageHome) section .number_wrap {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 751px) and (max-width: 960px) {
  :not(#pageHome) section .number_wrap {
    display: block;
  }
}
:not(#pageHome) section .number_wrap .number {
  font-family: "Outfit", sans-serif;
  letter-spacing: -0.01em;
}
@media all and (max-width: 750px) {
  :not(#pageHome) section .number_wrap .number {
    margin-bottom: 18px;
    font-size: 12px;
  }
}
@media all and (min-width: 751px) {
  :not(#pageHome) section .number_wrap .number {
    font-size: 14px;
  }
}
@media screen and (min-width: 751px) and (max-width: 960px) {
  :not(#pageHome) section .number_wrap .number {
    margin-bottom: 40px;
    font-size: 11px;
  }
}
:not(#pageHome) section .number_wrap .sec_ttl span {
  display: block;
}
:not(#pageHome) section .number_wrap .sec_ttl .en {
  font-family: "Outfit", sans-serif;
  font-size: 23px;
  font-weight: 500;
  line-height: 1;
}
@media all and (min-width: 751px) {
  :not(#pageHome) section .number_wrap .sec_ttl .en {
    margin-top: -2px;
    font-size: 28px;
  }
}
@media screen and (min-width: 751px) and (max-width: 960px) {
  :not(#pageHome) section .number_wrap .sec_ttl .en {
    margin-top: -2px;
    font-size: 2vw;
  }
}
:not(#pageHome) section .number_wrap .sec_ttl .jp {
  margin-top: 13px;
  font-size: 14px;
  font-weight: 600;
}
@media all and (min-width: 751px) {
  :not(#pageHome) section .number_wrap .sec_ttl .jp {
    margin-top: 15px;
    font-size: 17px;
  }
}
@media screen and (min-width: 751px) and (max-width: 960px) {
  :not(#pageHome) section .number_wrap .sec_ttl .jp {
    margin-top: 10px;
    font-size: 1.4vw;
  }
}
@media all and (min-width: 1001px) {
  :not(#pageHome) section .sec_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 751px) and (max-width: 960px) {
  :not(#pageHome) section .sec_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
:not(#pageHome) section .sec_wrap .img_ttl {
  margin: -17px 0 0 7px;
  text-align: unset;
  font-family: "Outfit", sans-serif;
  font-size: 36px;
  font-weight: 100;
  line-height: 0.88;
}
@media all and (min-width: 751px) {
  :not(#pageHome) section .sec_wrap .img_ttl {
    margin: -25px 0 0 7px;
    font-size: clamp(50px, 3.7vw, 71px);
    line-height: 0.9;
  }
}
@media all and (min-width: 751px) and (min-width: 1001px) {
  :not(#pageHome) section .sec_wrap .img_ttl {
    margin: 38px 0 0 -12px;
  }
}
@media screen and (min-width: 751px) and (max-width: 960px) {
  :not(#pageHome) section .sec_wrap .img_ttl {
    margin: 3vw 0 0 -1vw;
    font-size: 4.5vw;
  }
}
@media all and (min-width: 1001px) {
  :not(#pageHome) section .sec_wrap .parallax-box {
    width: 36.77%;
  }
}
@media screen and (min-width: 751px) and (max-width: 960px) {
  :not(#pageHome) section .sec_wrap .parallax-box {
    width: 48%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.page_head {
  margin-bottom: 30px;
  padding-top: 60px;
}
@media all and (min-width: 751px) {
  .page_head {
    padding-top: 120px;
    margin-bottom: 300px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 751px) and (max-width: 960px) {
  .page_head {
    margin-bottom: 14vw;
  }
}
@media all and (max-width: 750px) {
  .page_head .page_ttl {
    margin-bottom: 60px;
  }
}
.page_head .page_ttl span {
  display: block;
}
.page_head .page_ttl .en {
  margin-bottom: 15px;
  font-family: "Outfit", sans-serif;
  font-size: 47px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1;
}
@media all and (min-width: 751px) {
  .page_head .page_ttl .en {
    font-size: clamp(50px, 5.27vw, 101px);
  }
}
.page_head .page_ttl .jp {
  font-weight: 600;
}
@media all and (min-width: 751px) {
  .page_head .page_ttl .jp {
    font-size: clamp(18px, 1.05vw, 20px);
  }
}
.page_head .parallax-box {
  margin: 0 calc(50% - 50vw);
}
@media all and (min-width: 751px) {
  .page_head .parallax-box {
    width: 49.83%;
  }
}
@media all and (min-width: 751px) and (min-width: 751px) {
  .page_head .parallax-box {
    margin: 0 clamp(50px, 4.02vw, 78px) 0 0;
  }
}
@media screen and (min-width: 751px) and (max-width: 960px) {
  .page_head .parallax-box {
    margin: 0;
  }
}

/* パンくずとPAGE TOP
---------------------------------------------------------- */
.bread_wrap {
  margin-top: 100px;
  padding-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media all and (min-width: 751px) {
  .bread_wrap {
    margin-top: 200px;
    padding-bottom: 15px;
  }
}
.bread_wrap .breadcrumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 35px;
}
.bread_wrap .breadcrumb ul li {
  position: relative;
}
.bread_wrap .breadcrumb ul li:nth-child(n+2)::after {
  position: absolute;
  content: "/";
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  letter-spacing: 0.05em;
  top: 0;
  left: -22px;
}
@media all and (min-width: 751px) {
  .bread_wrap .breadcrumb ul li:nth-child(n+2)::after {
    font-size: 13.5px;
    left: -20px;
  }
}
.bread_wrap .breadcrumb ul a {
  background-image: -webkit-gradient(linear, left top, right top, from(#262424), to(#262424));
  background-image: linear-gradient(90deg, #262424, #262424);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 0 1px;
  -webkit-transition: background-size 0.4s;
  transition: background-size 0.4s;
}
@media (hover: hover) {
  .bread_wrap .breadcrumb ul a:hover {
    background-size: 100% 1px;
    background-position: left bottom;
  }
}
.bread_wrap .breadcrumb ul li,
.bread_wrap .breadcrumb ul a {
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media all and (min-width: 751px) {
  .bread_wrap .breadcrumb ul li,
  .bread_wrap .breadcrumb ul a {
    font-size: 13.5px;
  }
}
.bread_wrap .page_top {
  cursor: pointer;
}
.bread_wrap .page_top a {
  display: block;
}
@media all and (min-width: 751px) {
  .bread_wrap .page_top a {
    padding: 0 18px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
@media (min-width: 751px) and (hover: hover) {
  .bread_wrap .page_top a:hover {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}
.bread_wrap .page_top a img {
  width: 8.99px;
  height: 39px;
}

/* エントリーボタン
---------------------------------------------------------- */
.entry_btn {
  margin-top: 100px;
  margin-inline: auto;
}
@media all and (min-width: 751px) {
  .entry_btn {
    margin-top: 215px;
    width: min(962px, 100%);
  }
}
@media screen and (min-width: 751px) and (max-width: 960px) {
  .entry_btn {
    margin-top: 14vw;
  }
}
.entry_btn a {
  padding: 9.5px 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 1;
  position: relative;
  border: 1px solid #262424;
}
@media all and (min-width: 1001px) {
  .entry_btn a {
    -webkit-transition: all 0.4s 0s ease;
    transition: all 0.4s 0s ease;
  }
  .entry_btn a::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/common/bg_entry.svg) no-repeat;
    background-size: 1262px 100%;
    background-position: -1262px 0;
    -webkit-transition: all 0.4s 0s cubic-bezier(0.79, 0.14, 0.15, 0.86);
    transition: all 0.4s 0s cubic-bezier(0.79, 0.14, 0.15, 0.86);
    opacity: 0;
    z-index: -1;
  }
}
@media all and (min-width: 751px) {
  .entry_btn a {
    padding: 55px 30px;
  }
}
@media all and (min-width: 751px) and (min-width: 1001px) {
  .entry_btn a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0 20px;
  }
}
@media (min-width: 751px) and (min-width: 1001px) and (hover: hover) {
  .entry_btn a:hover {
    border: 1px solid #fff;
    color: #fff;
  }
  .entry_btn a:hover::before {
    background-position: -2px 0;
    opacity: 1;
  }
}
@media screen and (min-width: 751px) and (max-width: 960px) {
  .entry_btn a {
    padding: 55px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0 0;
    -webkit-transition: all 0.4s 0s ease;
    transition: all 0.4s 0s ease;
  }
  .entry_btn a::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/common/bg_entry.svg) no-repeat;
    background-size: 1262px 100%;
    background-position: -1262px 0;
    -webkit-transition: all 0.4s 0s cubic-bezier(0.79, 0.14, 0.15, 0.86);
    transition: all 0.4s 0s cubic-bezier(0.79, 0.14, 0.15, 0.86);
    opacity: 0;
    z-index: -1;
  }
}
@media screen and (min-width: 751px) and (max-width: 960px) and (hover: hover) {
  .entry_btn a:hover {
    border: 1px solid #fff;
    color: #fff;
  }
  .entry_btn a:hover::before {
    background-position: -18px 0;
    opacity: 1;
  }
}
.entry_btn span {
  display: inline-block;
}
.entry_btn .en {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  letter-spacing: 0.1em;
}
@media all and (min-width: 751px) {
  .entry_btn .en {
    font-size: 25px;
  }
}
@media screen and (min-width: 751px) and (max-width: 960px) {
  .entry_btn .en {
    margin-top: 7px;
  }
}
.entry_btn .center {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-align: center;
}
@media all and (min-width: 751px) {
  .entry_btn .center {
    margin-left: 80px;
    font-size: 33px;
  }
}
@media screen and (min-width: 751px) and (max-width: 960px) {
  .entry_btn .center {
    margin-left: 50px;
    font-size: 30px;
  }
}
.entry_btn .here {
  margin-top: 15px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: -0.03em;
}
@media all and (max-width: 1000px) {
  .entry_btn .here {
    text-align: right;
  }
}
@media all and (min-width: 751px) {
  .entry_btn .here {
    margin-top: -3px;
    font-size: 17px;
    letter-spacing: -0.01em;
  }
}
@media screen and (min-width: 751px) and (max-width: 960px) {
  .entry_btn .here {
    margin-top: 3px;
  }
}

/* ボタン
---------------------------------------------------------- */
.more_btn {
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.more_btn a {
  padding-left: calc(121px + 21px);
  display: block;
  color: #262424;
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  letter-spacing: 0.02em;
}
@media all and (min-width: 751px) {
  .more_btn a {
    padding-left: calc(314px + 21px);
    color: #BCBCBC;
    font-size: 27px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
@media (min-width: 751px) and (hover: hover) {
  .more_btn a:hover {
    color: #E60013;
  }
  .more_btn a:hover span::after {
    background-size: 100% 1px;
    background-position: left bottom;
  }
}
.more_btn a span {
  position: relative;
  display: block;
}
.more_btn a span::before, .more_btn a span::after {
  position: absolute;
  content: "";
  width: 121px;
  height: 1px;
  top: 50%;
  left: calc(-121px - 21px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media all and (min-width: 751px) {
  .more_btn a span::before, .more_btn a span::after {
    width: 314px;
    left: calc(-314px - 21px);
  }
}
.more_btn a span::before {
  background-color: #262424;
}
@media all and (min-width: 751px) {
  .more_btn a span::before {
    background-color: #BCBCBC;
  }
}
.more_btn a span::after {
  background-image: -webkit-gradient(linear, left top, right top, from(#E60013), to(#E60013));
  background-image: linear-gradient(90deg, #E60013, #E60013);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 0 1px;
  -webkit-transition: background-size 0.4s;
  transition: background-size 0.4s;
}

/* スライド
---------------------------------------------------------- */
.splide__list .splide__slide .image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

/* ==========================================================================//
//
// ヘッダー
//
// ========================================================================== */
.header {
  position: fixed;
  background-color: transparent;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header_height);
  z-index: 100;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header.header_open {
  background-color: #fff;
}
.header {
  /* リサイズ時 */
}
.header.resize .gnav {
  -webkit-transition: none;
  transition: none;
}
.header.is_hidden .gnav {
  opacity: 0;
  visibility: hidden;
}
.header .logo {
  position: fixed;
  top: 19px;
  left: 15px;
  width: 58px;
}
@media all and (min-width: 751px) {
  .header .logo {
    top: 58px;
    left: 38px;
    width: 139px;
  }
}
@media all and (min-width: 751px) and (min-width: 1321px) {
  .header .logo {
    left: 88px;
  }
}
.header .openbtn {
  position: absolute;
  z-index: 200;
  top: 22px;
  right: 20px;
  aspect-ratio: 1;
  width: 25px;
  height: 25px;
  cursor: pointer;
  border: none;
}
@media all and (min-width: 1101px) {
  .header .openbtn {
    opacity: 0;
    visibility: hidden;
  }
}
@media screen and (min-width: 751px) and (max-width: 1100px) {
  .header .openbtn {
    top: 75px;
    right: 38px;
  }
}
.header .openbtn span {
  position: absolute;
  display: block;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 30px;
  height: 1.2px;
  background-color: #262424;
}
.header .openbtn span:nth-child(1) {
  top: 9px;
}
.header .openbtn span:nth-child(2) {
  top: 16px;
}
.header .openbtn {
  /* 開いた時 */
}
.header .openbtn.active span:nth-child(1) {
  top: 11px;
  -webkit-transform: translateX(-50%) rotate(40deg);
          transform: translateX(-50%) rotate(40deg);
}
.header .openbtn.active span:nth-child(2) {
  top: 11px;
  -webkit-transform: translateX(-50%) rotate(-40deg);
          transform: translateX(-50%) rotate(-40deg);
}
.header .gnav {
  position: fixed;
  right: 0;
  z-index: -1;
  -webkit-transition: opacity 0.5s ease 0.1s, visibility 0.5s ease 0.1s;
  transition: opacity 0.5s ease 0.1s, visibility 0.5s ease 0.1s;
  opacity: 1;
  visibility: visible;
}
@media all and (max-width: 1100px) {
  .header .gnav {
    padding: 35px 0;
    top: var(--header_height);
    width: 100%;
    height: 100vh;
    background-color: #fff;
    overflow-y: scroll;
    visibility: hidden;
    opacity: 0;
  }
}
@media screen and (min-width: 751px) and (max-width: 1100px) {
  .header .gnav {
    height: calc(100vh - var(--header_height));
  }
}
@media all and (min-width: 1101px) {
  .header .gnav {
    top: 71px;
    right: 79px;
  }
}
.header .gnav.panelactive {
  visibility: visible;
  opacity: 1;
  z-index: 2;
}
.header .menu_txt {
  display: none;
  margin-bottom: 30px;
  padding: 0 20px;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.03em;
}
@media all and (min-width: 1101px) {
  .header .menu_txt {
    display: none;
  }
}
@media all and (max-width: 1100px) {
  .header nav {
    padding: 0 20px;
  }
}
@media all and (min-width: 1101px) {
  .header nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0 36px;
  }
}
@media all and (min-width: 1101px) and (min-width: 1321px) {
  .header nav {
    gap: 0 86px;
  }
}
@media all and (min-width: 1101px) {
  .header nav .nav_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0 28px;
    height: 100%;
  }
}
@media all and (min-width: 1101px) and (min-width: 1321px) {
  .header nav .nav_list {
    gap: 0 48px;
  }
}
@media all and (max-width: 1100px) {
  .header nav .nav_list .nav_item {
    border-bottom: 0.8px solid #D6D1D1;
  }
}
.header nav .nav_list .nav_item .item_link {
  display: block;
  position: relative;
  color: #262424;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
@media all and (max-width: 1100px) {
  .header nav .nav_list .nav_item .item_link {
    padding: 15px 20px 18px;
    font-size: 18px;
  }
}
@media all and (max-width: 1100px) {
  .header nav .nav_list .nav_item .item_link::after {
    position: absolute;
    content: "";
    background-image: url(../images/common/nav_arrow.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 18.27px;
    height: 4.5px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 12px;
  }
}
@media all and (min-width: 751px) {
  .header nav .nav_list .nav_item .item_link {
    font-size: 19px;
  }
}
@media all and (min-width: 751px) and (min-width: 1101px) {
  .header nav .nav_list .nav_item .item_link {
    padding: 8px 0;
  }
}
@media all and (min-width: 1101px) {
  .header nav .nav_list .nav_item .item_link.current {
    background-image: -webkit-gradient(linear, left top, right top, from(#262424), to(#262424));
    background-image: linear-gradient(90deg, #262424, #262424);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 100% 1.6px;
  }
}
@media all and (min-width: 1101px) {
  .header nav .nav_list .nav_item > .item_link {
    background-image: -webkit-gradient(linear, left top, right top, from(#262424), to(#262424));
    background-image: linear-gradient(90deg, #262424, #262424);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 0 1.6px;
    -webkit-transition: background-size 0.4s;
    transition: background-size 0.4s;
  }
}
@media (min-width: 1101px) and (hover: hover) {
  .header nav .nav_list .nav_item > .item_link:hover {
    background-size: 100% 1.6px;
    background-position: left bottom;
  }
}
.header nav .nav_list .sub_item {
  cursor: pointer;
}
@media all and (max-width: 750px) {
  .header nav .nav_list .sub_item {
    padding-bottom: 30px;
  }
}
.header nav .nav_list .sub_item.sub_open .sub {
  opacity: 1;
  visibility: visible;
}
@media all and (max-width: 1100px) {
  .header nav .nav_list .sub_item > .item_link::after {
    display: none;
  }
}
@media all and (max-width: 750px) {
  .header nav .nav_list .sub_item .item_link {
    padding: 15px 20px 4px;
  }
}
@media (min-width: 1101px) and (hover: hover) {
  .header nav .nav_list .sub_item:hover .sub {
    opacity: 1;
    visibility: visible;
  }
}
.header nav .nav_list {
  /* sub_list */
}
@media all and (max-width: 1100px) {
  .header nav .nav_list .sub {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
  }
}
@media all and (min-width: 1101px) {
  .header nav .nav_list .sub {
    position: fixed;
    top: calc((var(--header_height)) - 65px);
    right: 200px;
    background-color: #262424;
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transition: opacity 0.5s ease 0.1s, visibility 0.5s ease 0.1s;
    transition: opacity 0.5s ease 0.1s, visibility 0.5s ease 0.1s;
    width: clamp(150px, 8.25vw, 158px);
    opacity: 0;
    visibility: hidden;
  }
}
@media all and (min-width: 1101px) and (min-width: 1321px) {
  .header nav .nav_list .sub {
    right: 264px;
  }
}
@media all and (min-width: 751px) {
  .header nav .nav_list .sub_list {
    margin: 23px 0;
  }
}
.header nav .nav_list .sub_list .sub_menu .item_link {
  display: block;
  position: relative;
  font-size: 17px;
  border-bottom: none;
}
@media all and (max-width: 1100px) {
  .header nav .nav_list .sub_list .sub_menu .item_link {
    padding: 11px 75px 11px 0;
  }
}
@media all and (min-width: 1101px) {
  .header nav .nav_list .sub_list .sub_menu .item_link {
    padding: 7.5px 27px;
    color: #fff;
    font-size: 15px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
@media (min-width: 1101px) and (hover: hover) {
  .header nav .nav_list .sub_list .sub_menu .item_link:hover {
    opacity: 0.4;
  }
}
.header nav {
  /* CONTACT */
}
.header nav .contact_btn {
  display: block;
  position: relative;
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.03em;
}
@media all and (max-width: 750px) {
  .header nav .contact_btn {
    margin-bottom: 100px;
    padding: 15px 20px 18px;
  }
}
@media all and (max-width: 1100px) {
  .header nav .contact_btn::after {
    position: absolute;
    content: "";
    background-image: url(../images/common/nav_arrow.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 18.27px;
    height: 4.5px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 12px;
  }
}
@media all and (min-width: 751px) {
  .header nav .contact_btn {
    padding: 15px 20px;
    font-size: 19px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
@media all and (min-width: 751px) and (min-width: 1101px) {
  .header nav .contact_btn {
    padding: 12px;
    background-color: #fff;
    border: 1.3px solid #262424;
    font-size: 15px;
    width: 100%;
    text-align: center;
  }
}
@media (min-width: 751px) and (min-width: 1101px) and (hover: hover) {
  .header nav .contact_btn:hover {
    border: 1.3px solid #9D9999;
    background-color: #9D9999;
    color: #fff;
  }
}
@media screen and (min-width: 751px) and (max-width: 1100px) {
  .header nav .contact_btn {
    padding: 0 0 100px;
  }
  .header nav .contact_btn::after {
    right: 12px;
  }
}
@media all and (min-width: 1101px) {
  .header nav .contact_btn {
    padding: 15px clamp(20px, 1.58vw, 30px);
  }
}

/* ==========================================================================//
//
// フッター
//
// ========================================================================== */
.footer {
  padding: 0 0 20px;
}
@media all and (min-width: 751px) {
  .footer {
    padding: 0 0 30px;
  }
}
.footer .footer_wrap {
  padding-top: 40px;
  border-top: 1px solid #262424;
}
@media all and (min-width: 1901px) {
  .footer .footer_wrap {
    padding-top: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.footer .company_name {
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media all and (min-width: 751px) {
  .footer .company_name {
    font-size: 17px;
  }
}
@media all and (min-width: 751px) and (min-width: 751px) {
  .footer .company_name {
    margin-bottom: 40px;
  }
}
@media all and (min-width: 751px) and (min-width: 1901px) {
  .footer .company_name {
    margin-bottom: 0;
  }
}
@media all and (min-width: 1025px) {
  .footer .other_contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.footer .other_contents .contents_ttl {
  margin-bottom: 28px;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  letter-spacing: 0.03em;
}
@media all and (min-width: 751px) {
  .footer .other_contents .contents_ttl {
    margin-bottom: 30px;
    font-size: 15px;
  }
}
@media all and (max-width: 1025px) {
  .footer nav {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 0.8px solid #D6D1D1;
  }
}
@media all and (min-width: 1025px) {
  .footer nav {
    width: 27.9%;
  }
}
.footer nav .nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 23px 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media all and (min-width: 751px) {
  .footer nav .nav_list {
    gap: 20px 0;
  }
}
.footer nav .nav_list .nav_item {
  width: 33.3333333333%;
}
.footer nav .nav_list .nav_item .item_link {
  display: inline-block;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.03em;
}
.footer nav .nav_list .nav_item .item_link span {
  background-image: -webkit-gradient(linear, left top, right top, from(#262424), to(#262424));
  background-image: linear-gradient(90deg, #262424, #262424);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 0 1.6px;
  -webkit-transition: background-size 0.4s;
  transition: background-size 0.4s;
}
@media all and (min-width: 751px) {
  .footer nav .nav_list .nav_item .item_link {
    font-size: 15px;
  }
}
@media (min-width: 751px) and (hover: hover) {
  .footer nav .nav_list .nav_item .item_link:hover span {
    background-size: 100% 1.6px;
    background-position: left bottom;
  }
}
.footer nav .nav_list .nav_item.sub_item {
  position: relative;
  cursor: pointer;
}
.footer nav .nav_list .nav_item.sub_item.sub_open .sub {
  opacity: 1;
  visibility: visible;
}
@media all and (max-width: 1024px) {
  .footer nav .nav_list .nav_item.sub_item > .item_link::after {
    display: none;
  }
}
@media all and (max-width: 750px) {
  .footer nav .nav_list .nav_item.sub_item .sub_list .sub_menu .item_link {
    padding: 7px 50px 7px 0;
  }
}
@media (min-width: 1025px) and (hover: hover) {
  .footer nav .nav_list .nav_item.sub_item:hover .sub {
    opacity: 1;
    visibility: visible;
  }
}
.footer nav .nav_list .nav_item {
  /* sub_list */
}
.footer nav .nav_list .nav_item .sub {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media all and (min-width: 1025px) {
  .footer nav .nav_list .nav_item .sub {
    position: absolute;
    top: -230px;
    right: -25px;
    background-color: #262424;
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transition: opacity 0.5s ease 0.1s, visibility 0.5s ease 0.1s;
    transition: opacity 0.5s ease 0.1s, visibility 0.5s ease 0.1s;
    width: clamp(150px, 8.25vw, 158px);
    opacity: 0;
    visibility: hidden;
  }
}
.footer nav .nav_list .nav_item .sub_list {
  margin: 10px 0 0;
}
@media all and (min-width: 751px) {
  .footer nav .nav_list .nav_item .sub_list {
    margin: 10px 0 0;
  }
}
@media all and (min-width: 751px) and (min-width: 1025px) {
  .footer nav .nav_list .nav_item .sub_list {
    margin: 23px 0;
  }
}
.footer nav .nav_list .nav_item .sub_list .sub_menu .item_link {
  display: block;
  position: relative;
  border-bottom: none;
}
@media all and (max-width: 1024px) {
  .footer nav .nav_list .nav_item .sub_list .sub_menu .item_link {
    padding: 11px 75px 11px 0;
  }
}
@media all and (min-width: 1025px) {
  .footer nav .nav_list .nav_item .sub_list .sub_menu .item_link {
    padding: 7.5px 20px;
    color: #fff;
    font-size: 15px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
@media (min-width: 1025px) and (hover: hover) {
  .footer nav .nav_list .nav_item .sub_list .sub_menu .item_link:hover {
    opacity: 0.4;
  }
}
@media all and (max-width: 1024px) {
  .footer nav .nav_list .nav_item .sub_list .sub_menu .item_link::after {
    position: absolute;
    content: "";
    background-image: url(../images/common/nav_arrow.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 18.27px;
    height: 4.5px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 12px;
  }
}
@media all and (min-width: 1025px) {
  .footer .address_contents {
    margin: 0 4.05vw 0 6.2vw;
    width: 39.1%;
  }
}
@media all and (max-width: 750px) {
  .footer .address_contents .contents_ttl {
    margin-bottom: 20px;
  }
}
@media all and (min-width: 1025px) {
  .footer .address_contents .address_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 44px;
  }
}
@media all and (max-width: 1024px) {
  .footer .address_contents .address_list .address_detail:not(:first-child) {
    margin-top: 20px;
  }
}
.footer .address_contents .address_list .address_detail p {
  letter-spacing: 0.08em;
}
@media all and (min-width: 751px) {
  .footer .address_contents .address_list .address_detail p {
    font-size: 13px;
  }
}
.footer .address_contents .address_list .address_detail .place_name {
  margin-bottom: 8px;
  font-weight: 500;
}
@media all and (max-width: 750px) {
  .footer .address_contents .address_list .address_detail .place_name {
    font-size: 13px;
  }
}
.footer .address_contents .address_list .address_detail .place_detail {
  line-height: 1.3;
}
@media all and (max-width: 750px) {
  .footer .address_contents .address_list .address_detail .place_detail {
    font-size: 13px;
  }
}
.footer .address_contents .address_list .address_detail .map {
  margin-top: 10px;
  padding: 8px;
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  letter-spacing: 0.03em;
  border: 1px solid #262424;
  border-radius: 30px;
  text-align: center;
  width: min(120px, 100%);
}
@media all and (min-width: 751px) {
  .footer .address_contents .address_list .address_detail .map {
    margin-top: 15px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
@media (min-width: 751px) and (hover: hover) {
  .footer .address_contents .address_list .address_detail .map:hover {
    border: 1px solid #9D9999;
    background-color: #9D9999;
    color: #fff;
  }
  .footer .address_contents .address_list .address_detail .map:hover span::before {
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
  }
}
.footer .address_contents .address_list .address_detail .map span {
  padding-left: 16px;
  position: relative;
}
.footer .address_contents .address_list .address_detail .map span::before {
  position: absolute;
  content: "";
  background-image: url(../images/common/ico_map.svg);
  background-repeat: no-repeat;
  background-size: cover;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 10px;
  height: 14px;
}
@media all and (min-width: 751px) {
  .footer .address_contents .address_list .address_detail .map span::before {
    height: 15px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
@media all and (max-width: 1024px) {
  .footer .contact_contents {
    margin: 24px 0;
    padding: 24px 0;
    border-top: 0.8px solid #D6D1D1;
    border-bottom: 0.8px solid #D6D1D1;
  }
}
.footer .contact_contents .contact_btn a {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  letter-spacing: 0.03em;
}
@media all and (min-width: 751px) {
  .footer .contact_contents .contact_btn a {
    font-size: 15px;
  }
}
.footer .contact_contents .mail_btn {
  margin-top: 13px;
  padding: 8px;
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  letter-spacing: 0.03em;
  border: 1px solid #262424;
  border-radius: 30px;
  width: min(120px, 100%);
  text-align: center;
}
@media all and (min-width: 751px) {
  .footer .contact_contents .mail_btn {
    margin-top: 27px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
@media (min-width: 751px) and (hover: hover) {
  .footer .contact_contents .mail_btn:hover {
    border: 1px solid #9D9999;
    background-color: #9D9999;
    color: #fff;
  }
  .footer .contact_contents .mail_btn:hover span::before {
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
  }
}
.footer .contact_contents .mail_btn span {
  padding-left: 22px;
  position: relative;
}
.footer .contact_contents .mail_btn span::before {
  position: absolute;
  content: "";
  background-image: url(../images/common/ico_mail.svg);
  background-repeat: no-repeat;
  background-size: cover;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 13px;
  height: 11px;
}
@media all and (min-width: 751px) {
  .footer .contact_contents .mail_btn span::before {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
.footer .copyright {
  font-family: "Outfit", sans-serif;
  font-size: 9px;
  letter-spacing: 0.04em;
  font-weight: 300;
}
@media all and (min-width: 751px) {
  .footer .copyright {
    margin-top: 25px;
    font-size: 11px;
  }
}
@media all and (min-width: 751px) and (min-width: 1025px) {
  .footer .copyright {
    text-align: right;
  }
}