@charset "UTF-8";
.pc_LL_display {
  display: none;
}
@media screen and (max-width: 1600px) {
  .pc_LL_display {
    display: block;
  }
}

.pc_L_display {
  display: none;
}
@media screen and (max-width: 1400px) {
  .pc_L_display {
    display: block;
  }
}

.pc_M_display {
  display: none;
}
@media screen and (max-width: 1200px) {
  .pc_M_display {
    display: block;
  }
}

.pc_S_display {
  display: none;
}
@media screen and (max-width: 1000px) {
  .pc_S_display {
    display: block;
  }
}

.tab_display {
  display: none;
}
@media screen and (max-width: 800px) {
  .tab_display {
    display: block;
  }
}

.sp_LL_display {
  display: none;
}
@media screen and (max-width: 600px) {
  .sp_LL_display {
    display: block;
  }
}

.sp_L_display {
  display: none;
}
@media screen and (max-width: 460px) {
  .sp_L_display {
    display: block;
  }
}

.sp_ML_display {
  display: none;
}
@media screen and (max-width: 390px) {
  .sp_ML_display {
    display: block;
  }
}

.sp_M_display {
  display: none;
}
@media screen and (max-width: 375px) {
  .sp_M_display {
    display: block;
  }
}

.sp_S_display {
  display: none;
}
@media screen and (max-width: 350px) {
  .sp_S_display {
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .sp_LL_hidden {
    display: none;
  }
}

body {
  width: 100%;
  overflow-x: hidden;
  font-family: "Shippori Mincho", serif;
}

img {
  display: block;
  width: 100%;
}

a {
  text-decoration: none;
}

.heading-vtcl {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  letter-spacing: 0.2em;
}
.heading-vtcl .narrow {
  -webkit-margin-end: -0.64em;
          margin-inline-end: -0.64em;
}

.txt-vtcl {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  letter-spacing: 0.1em;
  line-height: 2.4;
}

.opening {
  display: none;
}

.show-opening .opening {
  display: block;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  background-color: #e3e3e3;
  z-index: 9999;
  -webkit-animation: opening-hide 1.2s ease forwards;
          animation: opening-hide 1.2s ease forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

@-webkit-keyframes opening-hide {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@keyframes opening-hide {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
/*--------------- header ---------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 24px 32px;
}
@media screen and (max-width: 800px) {
  .header {
    height: 100px;
    padding: 16px 51px 16px 16px;
    background-color: #fff;
  }
}

.show-opening .header {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform: translateY(-140px);
      -ms-transform: translateY(-140px);
          transform: translateY(-140px);
  -webkit-animation: animetion-header 1s 2.4s forwards;
          animation: animetion-header 1s 2.4s forwards;
}

@-webkit-keyframes animetion-header {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-140px);
            transform: translateY(-140px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes animetion-header {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-140px);
            transform: translateY(-140px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.header.is-scrolled {
  background-color: #fff;
}
@media screen and (max-width: 800px) {
  .header.is-scrolled {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 12px 51px 12px 16px;
  }
}
@media screen and (max-width: 800px) {
  .header.is-scrolled .header_wrap {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.header.is-scrolled .header_logo-def {
  opacity: 0;
  pointer-events: none;
  cursor: default;
}
.header.is-scrolled .header_logo-sm {
  opacity: 1;
  cursor: pointer;
  pointer-events: auto;
}

.header_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .header_wrap {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.header_logo {
  width: 96px;
  position: relative;
}
@media screen and (max-width: 800px) {
  .header_logo {
    width: 72px;
  }
}

.header_logo-def {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 800px) {
  .header_logo-def {
    top: 2px;
  }
}

.header_logo-sm {
  width: 140px;
  opacity: 0;
  cursor: default;
  pointer-events: none;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
@media screen and (max-width: 800px) {
  .header_logo-sm {
    width: 100px;
  }
}

@media screen and (max-width: 800px) {
  .header_logo-pc {
    display: none;
  }
}

.header_logo-sp {
  display: none;
}
@media screen and (max-width: 800px) {
  .header_logo-sp {
    display: block;
  }
}

.header_nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  font-size: 14px;
}
@media screen and (max-width: 600px) {
  .header_nav {
    font-size: 13px;
    gap: 8px;
  }
}

.header_btn-rq {
  width: 100px;
  height: 36px;
  border-radius: 4px;
  border: 1px solid #000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media screen and (max-width: 600px) {
  .header_btn-rq {
    width: 92px;
    height: 32px;
  }
}
@media screen and (max-width: 375px) {
  .header_btn-rq {
    width: 80px;
  }
}

.header_btn-rq:hover {
  background-color: #000;
  color: #fff;
}

.header_btn-rsv {
  width: 100px;
  height: 36px;
  border-radius: 4px;
  background-color: #3E3F2A;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #3E3F2A;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media screen and (max-width: 600px) {
  .header_btn-rsv {
    width: 92px;
    height: 32px;
  }
}
@media screen and (max-width: 375px) {
  .header_btn-rsv {
    width: 80px;
  }
}

.header_btn-rsv:hover {
  background-color: #fff;
  color: #3E3F2A;
}

@media screen and (max-width: 800px) {
  .header_btn-pc {
    display: none;
  }
}

.header_menu {
  display: none;
  position: fixed;
  z-index: 200;
  width: 24px;
  top: 20px;
  right: 16px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 800px) {
  .header_menu {
    display: block;
  }
}

.show-opening .header_menu {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform: translateY(-140px);
      -ms-transform: translateY(-140px);
          transform: translateY(-140px);
  -webkit-animation: animetion-header 1s 2.4s forwards;
          animation: animetion-header 1s 2.4s forwards;
}

.header_menu.is-scrolled {
  top: 16px;
}

.mask {
  display: none;
  padding: 180px 0;
}
@media screen and (max-width: 800px) {
  .mask {
    display: block;
    position: fixed;
    opacity: 0;
    top: 0;
    right: -1000px;
    height: 100vh;
    max-width: 540px;
    width: 100%;
    background: #545F4E;
    z-index: 150;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
}

.mask_logo {
  width: 72px;
  top: 16px;
  left: 16px;
  position: absolute;
}

.open.mask {
  opacity: 1;
  z-index: 150;
  right: 0;
}

.mask_nav li:not(:first-child) {
  margin-top: 16px;
}
.mask_nav li:nth-child(5) {
  margin-top: 32px;
}

.mask_btn {
  color: #fff;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 12px;
  font-size: 14px;
}

.mask_btn.mask_btn-rq {
  display: block;
  width: 168px;
  border: 1px solid #fff;
  border-radius: 4px;
  text-align: center;
}

.mask_btn.mask_btn-rsv {
  display: block;
  width: 168px;
  background-color: #3E3F2A;
  border-radius: 4px;
  text-align: center;
}

.toggle_btn {
  width: 24px;
  height: 24px;
  cursor: pointer;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.toggle_btn:hover {
  opacity: 0.7;
}
.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  height: 1px;
  background-color: #777;
  border-radius: 1000px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.toggle_btn span:nth-child(1) {
  top: 6px;
  width: 100%;
}
.toggle_btn span:nth-child(2) {
  bottom: 6px;
  width: 100%;
}

.open .toggle_btn span {
  background-color: #FFF;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.open .toggle_btn span:nth-child(1) {
  top: 12px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.open .toggle_btn span:nth-child(2) {
  bottom: 11px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/*--------------- fv ---------------*/
.fv {
  height: 100svh;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .fv {
    padding-top: 100px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}

.fv_bg {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 29vw 1fr;
}
@media screen and (max-width: 800px) {
  .fv_bg {
    display: block;
  }
}

.fv_bg_top {
  display: grid;
  grid-template-columns: 9.6vw calc(100% - 9.6vw);
  width: 100%;
}
@media screen and (max-width: 800px) {
  .fv_bg_top {
    grid-template-columns: 1fr 82vw;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    aspect-ratio: 50/45;
    margin-bottom: 8px;
  }
}

.fv_bg-left {
  position: relative;
  width: 29vw;
  height: 100%;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1vw;
  -webkit-box-ordinal-group: -1;
  -webkit-order: -2;
      -ms-flex-order: -2;
          order: -2;
}
@media screen and (max-width: 800px) {
  .fv_bg-left {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    width: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    aspect-ratio: 2/1;
    gap: 8px;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
}

.fv_bg-left-top {
  position: relative;
  overflow: hidden;
}

.fv_bg-left-bottom {
  position: relative;
  overflow: hidden;
}

.fv_bg-right {
  position: relative;
  width: 100%;
  height: calc(100% - 154px);
  overflow: hidden;
  margin-top: auto;
}
@media screen and (max-width: 800px) {
  .fv_bg-right {
    height: 100%;
  }
}

.fv_bg_img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-animation: image-switch-animation 12s linear infinite;
          animation: image-switch-animation 12s linear infinite;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  z-index: 1;
}

.fv_bg_img.src1 {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.fv_bg_img.src1 .fv_bg_wrap {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.fv_bg_img.src2 {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}
.fv_bg_img.src2 .fv_bg_wrap {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

.fv_bg_img.src3 {
  -webkit-animation-delay: 8s;
          animation-delay: 8s;
}
.fv_bg_img.src3 .fv_bg_wrap {
  -webkit-animation-delay: 8s;
          animation-delay: 8s;
}

.show-opening .fv_bg_img.src1 {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.show-opening .fv_bg_img.src1 .fv_bg_wrap {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.show-opening .fv_bg_img.src2 {
  -webkit-animation-delay: 4.8s;
          animation-delay: 4.8s;
}
.show-opening .fv_bg_img.src2 .fv_bg_wrap {
  -webkit-animation-delay: 4.8s;
          animation-delay: 4.8s;
}
.show-opening .fv_bg_img.src3 {
  -webkit-animation-delay: 8.8s;
          animation-delay: 8.8s;
}
.show-opening .fv_bg_img.src3 .fv_bg_wrap {
  -webkit-animation-delay: 8.8s;
          animation-delay: 8.8s;
}

@-webkit-keyframes image-switch-animation {
  0% {
    opacity: 0;
    z-index: 1;
  }
  2% {
    opacity: 1;
    z-index: 1;
  }
  33% {
    opacity: 1;
    z-index: 2;
  }
  38% {
    opacity: 0;
    z-index: 2;
  }
  100% {
    opacity: 0;
    z-index: 1;
  }
}

@keyframes image-switch-animation {
  0% {
    opacity: 0;
    z-index: 1;
  }
  2% {
    opacity: 1;
    z-index: 1;
  }
  33% {
    opacity: 1;
    z-index: 2;
  }
  38% {
    opacity: 0;
    z-index: 2;
  }
  100% {
    opacity: 0;
    z-index: 1;
  }
}
.fv_bg_wrap {
  width: 110%;
  height: 100%;
  -webkit-animation: slowPan 12s linear infinite;
          animation: slowPan 12s linear infinite;
}
@media screen and (max-width: 800px) {
  .fv_bg_wrap {
    -webkit-animation: slowPan_sp 12s linear infinite;
            animation: slowPan_sp 12s linear infinite;
  }
}

.fv_bg-left .thumbnail {
  height: 50svh;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 800px) {
  .fv_bg-left .thumbnail {
    height: 235px;
  }
}

.fv_bg-right .thumbnail {
  height: calc(100svh - 154px);
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 800px) {
  .fv_bg-right .thumbnail {
    height: 100%;
  }
}

@-webkit-keyframes slowPan {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  3% {
    -webkit-transform: translateX(-0.1vw);
            transform: translateX(-0.1vw);
  }
  39% {
    -webkit-transform: translateX(-0.8vw);
            transform: translateX(-0.8vw);
  }
  100% {
    -webkit-transform: translateX(-0.8vw);
            transform: translateX(-0.8vw);
  }
}

@keyframes slowPan {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  3% {
    -webkit-transform: translateX(-0.1vw);
            transform: translateX(-0.1vw);
  }
  39% {
    -webkit-transform: translateX(-0.8vw);
            transform: translateX(-0.8vw);
  }
  100% {
    -webkit-transform: translateX(-0.8vw);
            transform: translateX(-0.8vw);
  }
}
@-webkit-keyframes slowPan_sp {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  3% {
    -webkit-transform: translateX(-0.8vw);
            transform: translateX(-0.8vw);
  }
  39% {
    -webkit-transform: translateX(-4vw);
            transform: translateX(-4vw);
  }
  100% {
    -webkit-transform: translateX(-4vw);
            transform: translateX(-4vw);
  }
}
@keyframes slowPan_sp {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  3% {
    -webkit-transform: translateX(-0.8vw);
            transform: translateX(-0.8vw);
  }
  39% {
    -webkit-transform: translateX(-4vw);
            transform: translateX(-4vw);
  }
  100% {
    -webkit-transform: translateX(-4vw);
            transform: translateX(-4vw);
  }
}
@media screen and (max-width: 600px) {
  .fv_pc {
    display: none;
  }
}

.fv_sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .fv_sp {
    display: block;
  }
}

.fv_heading {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  font-size: max(3.1vw, 40px);
  opacity: 0;
  z-index: 99;
  padding-top: 154px;
}
@media screen and (max-width: 800px) {
  .fv_heading {
    padding-top: 0;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    font-size: 6.4vw;
    padding-bottom: 4vw;
  }
}

.show-opening .fv_heading {
  -webkit-animation: anime_fvheading 1.4s 1.8s forwards;
          animation: anime_fvheading 1.4s 1.8s forwards;
}

.fv_heading {
  -webkit-animation: anime_fvheading 1.4s 0.4s forwards;
          animation: anime_fvheading 1.4s 0.4s forwards;
}

@-webkit-keyframes anime_fvheading {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: ranslateY(0);
            transform: ranslateY(0);
  }
}

@keyframes anime_fvheading {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: ranslateY(0);
            transform: ranslateY(0);
  }
}
.fv_heading h2 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  letter-spacing: 0.28em;
  display: block;
}
.fv_heading h2 .narrow {
  -webkit-margin-end: -0.5em;
          margin-inline-end: -0.5em;
}

/*--------------- concept ---------------*/
.concept {
  padding: 130px 0 86px;
  width: 100%;
  border-bottom: 1px solid #E3E3E3;
}
@media screen and (max-width: 600px) {
  .concept {
    padding: 80px 0 86px;
  }
}

.concept_wrap {
  display: grid;
  grid-template-columns: 654px 48px;
  gap: 60px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 1400px) {
  .concept_wrap {
    grid-template-columns: 654px 38px;
  }
}
@media screen and (max-width: 1000px) {
  .concept_wrap {
    padding: 0 16px;
    grid-template-columns: 350px 38px;
  }
}
@media screen and (max-width: 600px) {
  .concept_wrap {
    gap: 28px;
    grid-template-columns: 240px 27px;
  }
}

.concept_heading {
  font-size: 40px;
  -webkit-transform: translateY(-40px);
      -ms-transform: translateY(-40px);
          transform: translateY(-40px);
  opacity: 0;
  width: 48px;
}
@media screen and (max-width: 1400px) {
  .concept_heading {
    font-size: 32px;
    width: 38px;
  }
}
@media screen and (max-width: 1000px) {
  .concept_heading {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .concept_heading {
    letter-spacing: 0.1em;
    font-size: 22px;
    width: 27px;
  }
}

.move .concept_heading {
  -webkit-animation: anime_txt 1.4s 0.8s forwards;
          animation: anime_txt 1.4s 0.8s forwards;
}

@-webkit-keyframes anime_txt {
  0% {
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes anime_txt {
  0% {
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes anime_txt-st {
  0% {
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes anime_txt-st {
  0% {
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.concept_txt {
  -webkit-transform: translateY(-40px);
      -ms-transform: translateY(-40px);
          transform: translateY(-40px);
  opacity: 0;
  display: block;
  width: 654px;
}
@media screen and (max-width: 1000px) {
  .concept_txt {
    padding-top: 60px;
    width: 350px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 600px) {
  .concept_txt {
    font-size: 13px;
    width: 240px;
  }
}
@media screen and (max-width: 600px) {
  .concept_txt p {
    line-height: 2;
    width: 100%;
    text-align: start;
  }
}

.concept_txt-pc {
  display: block;
}
@media screen and (max-width: 1000px) {
  .concept_txt-pc {
    display: none;
  }
}

.concept_txt-sp {
  display: none;
}
@media screen and (max-width: 1000px) {
  .concept_txt-sp {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.move .concept_txt {
  -webkit-animation: anime_txt 1.4s 0.4s forwards;
          animation: anime_txt 1.4s 0.4s forwards;
}

/*--------------- scene ---------------*/
.scene {
  padding: 96px 0 140px;
}
@media screen and (max-width: 600px) {
  .scene {
    padding: 90px 0 112px;
  }
}

.scene_item {
  max-width: calc(100% - (100% - 1100px) / 2);
  display: grid;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 89.25%;
}
@media screen and (max-width: 1200px) {
  .scene_item {
    width: 92%;
  }
}
@media screen and (max-width: 1000px) {
  .scene_item {
    margin: 0 auto;
  }
}
@media screen and (max-width: 800px) {
  .scene_item {
    padding: 0 16px;
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .scene_item {
    display: block;
    padding-top: 34vw;
    position: relative;
  }
}
.scene_item:not(:last-child) {
  margin-bottom: 80px;
}
@media screen and (max-width: 600px) {
  .scene_item:not(:last-child) {
    margin-bottom: 74px;
  }
}

.scene_item:nth-child(odd) {
  grid-template-columns: 52vw 1fr;
}
@media screen and (max-width: 1200px) {
  .scene_item:nth-child(odd) {
    grid-template-columns: 46vw 1fr;
  }
}
@media screen and (max-width: 1000px) {
  .scene_item:nth-child(odd) {
    grid-template-columns: 1fr;
  }
}
.scene_item:nth-child(odd) .scene_txt {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
@media screen and (max-width: 1000px) {
  .scene_item:nth-child(odd) .scene_txt {
    margin: 0 auto;
  }
}
@media screen and (max-width: 600px) {
  .scene_item:nth-child(odd) .scene_txt {
    margin: 0 auto 20px;
    width: 100%;
  }
}

.scene_item:nth-child(even) {
  grid-template-columns: 1fr 52vw;
  margin-left: auto;
}
@media screen and (max-width: 1200px) {
  .scene_item:nth-child(even) {
    grid-template-columns: 1fr 46vw;
  }
}
@media screen and (max-width: 1000px) {
  .scene_item:nth-child(even) {
    grid-template-columns: 1fr;
  }
}
.scene_item:nth-child(even) .scene_img {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (max-width: 1000px) {
  .scene_item:nth-child(even) .scene_img {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
  }
}
@media screen and (max-width: 600px) {
  .scene_item:nth-child(even) .scene_ttl {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.scene_img {
  overflow: hidden;
  aspect-ratio: 7/5;
}
@media screen and (max-width: 1000px) {
  .scene_img {
    max-width: 800px;
    margin: 0 auto 40px;
  }
}
@media screen and (max-width: 600px) {
  .scene_img {
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0 16px;
  }
}

.scene_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -ms-filter: blur(12px);
  -webkit-filter: blur(12px);
          filter: blur(12px);
  -webkit-transition: all 1.6s ease-in-out;
  transition: all 1.6s ease-in-out;
  -webkit-transform: scale(1.16);
      -ms-transform: scale(1.16);
          transform: scale(1.16);
}

.move .scene_img img {
  -ms-filter: blur(0px);
  -webkit-filter: blur(0px);
          filter: blur(0px);
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.scene_txt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 46px;
}
@media screen and (max-width: 1000px) {
  .scene_txt {
    margin: 0 auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (max-width: 600px) {
  .scene_txt {
    display: block;
    width: 100%;
    margin: 0 auto 20px;
  }
}

.scene_ttl {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
      -ms-flex-order: 3;
          order: 3;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 28px;
  letter-spacing: 0.24em;
  line-height: 1.4;
  padding-top: 16px;
  -webkit-transform: translateY(-40px);
      -ms-transform: translateY(-40px);
          transform: translateY(-40px);
  opacity: 0;
}
@media screen and (max-width: 1400px) {
  .scene_ttl {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .scene_ttl {
    -webkit-box-ordinal-group: -1;
    -webkit-order: -2;
        -ms-flex-order: -2;
            order: -2;
    padding: 0;
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .scene_ttl h3 {
    padding: 24px 32px 0;
    background-color: #fff;
  }
}

.move .scene_ttl {
  -webkit-animation: anime_txt 1.4s 1.4s forwards;
          animation: anime_txt 1.4s 1.4s forwards;
}

.scene_desc {
  font-size: 16px;
  width: 316px;
  text-align: justify;
  line-height: 2.4;
  -webkit-transform: translateY(-40px);
      -ms-transform: translateY(-40px);
          transform: translateY(-40px);
  opacity: 0;
  letter-spacing: 0;
}
@media screen and (max-width: 1400px) {
  .scene_desc {
    font-size: 14px;
    width: 274px;
  }
}
@media screen and (max-width: 600px) {
  .scene_desc {
    width: 100%;
  }
}

.move .scene_desc {
  -webkit-animation: anime_txt 1.4s 1s forwards;
          animation: anime_txt 1.4s 1s forwards;
}

.scene_vsl {
  display: none;
}
@media screen and (max-width: 600px) {
  .scene_vsl {
    display: block;
  }
}

/*--------------- plan ---------------*/
.plan {
  background-color: #545F4E;
}

.plan_eye {
  width: 100%;
}

.plan_wrap {
  margin: 0 auto;
  padding: 80px 0 140px;
}
@media screen and (max-width: 800px) {
  .plan_wrap {
    padding: 64px 0 90px;
    width: 100%;
  }
}

.plan_heading {
  font-size: 28px;
  text-align: center;
  line-height: 2.2;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 72px;
  -webkit-transform: translateY(-12px);
      -ms-transform: translateY(-12px);
          transform: translateY(-12px);
  opacity: 0;
}
@media screen and (max-width: 1400px) {
  .plan_heading {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .plan_heading {
    font-size: 20px;
    margin: 0 auto 40px;
  }
}

.move .plan_heading {
  -webkit-animation: anime_txt-st 1.4s 0.4s forwards;
          animation: anime_txt-st 1.4s 0.4s forwards;
}

.plan_content {
  position: relative;
}

.plan_slider {
  width: 100%;
}

.plan_slider .plan_item .plan_txt {
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  -webkit-transition-delay: 800ms;
          transition-delay: 800ms;
}
.plan_slider .slick-current .plan_txt,
.plan_slider .slick-center .plan_txt {
  opacity: 0;
  -webkit-transform: translateY(-12px);
      -ms-transform: translateY(-12px);
          transform: translateY(-12px);
  opacity: 0;
}

.plan_slider .slick-list {
  padding-left: 140px;
}
@media screen and (max-width: 1000px) {
  .plan_slider .slick-list {
    padding-left: 0;
  }
}
@media screen and (max-width: 600px) {
  .plan_slider .slick-list {
    width: 100%;
  }
}

.plan_img {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
  margin-bottom: 32px;
}
@media screen and (max-width: 600px) {
  .plan_img {
    margin-bottom: 65px;
  }
}

/* モーダル(グレー背景) */
.js-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  /* グレーバック */
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

.js-lightbox.is-active {
  opacity: 1;
  visibility: visible;
}

.js-lightbox-inner {
  max-width: 90vw;
  max-height: 90vh;
}

.js-lightbox-img {
  display: block;
  width: auto;
  height: auto;
  max-width: 90vw;
  max-height: 90vh;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.js-lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  line-height: 1;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}

.plan_item {
  width: 680px;
  padding: 0 12px;
}
@media screen and (max-width: 800px) {
  .plan_item {
    width: 540px;
    padding: 0 16px;
  }
}
@media screen and (max-width: 600px) {
  .plan_item {
    width: 100%;
  }
}

.plan_txt {
  color: #FFF;
}
.plan_txt h3 {
  font-size: 40px;
  margin-bottom: 30px;
}
.plan_txt h3 span {
  font-size: 16px;
  display: inline-block;
  padding-left: 16px;
}
@media screen and (max-width: 1200px) {
  .plan_txt h3 span {
    display: block;
    padding-left: 0;
    padding-top: 16px;
    font-size: 14px;
  }
}
.plan_txt h4 {
  font-size: 20px;
  margin-bottom: 32px;
}
@media screen and (max-width: 600px) {
  .plan_txt h4 {
    font-size: 16px;
    margin-bottom: 24px;
  }
}
.plan_txt p {
  font-size: 16px;
  text-align: justify;
  line-height: 2;
}
@media screen and (max-width: 1400px) {
  .plan_txt p {
    font-size: 14px;
  }
}

.move .slick-current .plan_txt,
.move .slick-center .plan_txt {
  -webkit-animation: anime_txt-st 1s 0.8s forwards;
          animation: anime_txt-st 1s 0.8s forwards;
}

.plan_nav {
  position: absolute;
  top: 490px;
  right: 140px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media screen and (max-width: 800px) {
  .plan_nav {
    top: 400px;
    right: 16px;
  }
}
@media screen and (max-width: 600px) {
  .plan_nav {
    left: 16px;
    right: auto;
    top: 66vw;
    width: calc(100% - 32px);
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.plan_nav img {
  width: 30px;
}
@media screen and (max-width: 1400px) {
  .plan_nav img {
    width: 24px;
  }
}

.plan_prev,
.plan_next {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.plan_nav_txt {
  position: relative;
  color: #fff;
  font-size: 16px;
  overflow: hidden;
}
@media screen and (max-width: 1400px) {
  .plan_nav_txt {
    font-size: 14px;
  }
}

.plan_prev:hover,
.plan_next:hover {
  cursor: pointer;
}
.plan_prev:hover .plan_nav_txt span:nth-child(1),
.plan_next:hover .plan_nav_txt span:nth-child(1) {
  -webkit-transform: translateY(-20px);
      -ms-transform: translateY(-20px);
          transform: translateY(-20px);
}
.plan_prev:hover .plan_nav_txt span:nth-child(2),
.plan_next:hover .plan_nav_txt span:nth-child(2) {
  top: 0;
}

.plan_nav_txt span {
  display: block;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.plan_nav_txt span:nth-child(2) {
  position: absolute;
  top: 20px;
  left: 0;
}

.plan_counter {
  color: #fff;
}
@media screen and (max-width: 1400px) {
  .plan_counter {
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) {
  .plan_counter {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.plan_counter_line {
  font-size: 18px;
  color: #aaa;
}
@media screen and (max-width: 1400px) {
  .plan_counter_line {
    font-size: 16px;
  }
}

.plan_counter-current-wrap {
  position: relative;
  display: inline-block;
  width: 1em;
  height: 1.5em;
  overflow: hidden;
  vertical-align: middle;
}

.plan_counter-current {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.plan_counter-current.is-next {
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
}
.plan_counter-current.is-leaving {
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}

/*--------------- root ---------------*/
.root {
  padding: 120px 0 160px;
}
@media screen and (max-width: 600px) {
  .root {
    padding: 74px 0;
  }
}

.root_wrap {
  max-width: 1100px;
  width: 78.5%;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .root_wrap {
    width: 84%;
  }
}
@media screen and (max-width: 800px) {
  .root_wrap {
    padding: 0 16px;
    width: 100%;
  }
}

.root_heading {
  font-size: 28px;
  text-align: center;
  line-height: 2.2;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 72px;
  -webkit-transform: translateY(-12px);
      -ms-transform: translateY(-12px);
          transform: translateY(-12px);
  opacity: 0;
}
@media screen and (max-width: 1400px) {
  .root_heading {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .root_heading {
    font-size: 20px;
    margin: 0 auto 40px;
  }
}

.move.root_heading {
  -webkit-animation: anime_txt-st 1.4s 0.4s forwards;
          animation: anime_txt-st 1.4s 0.4s forwards;
}

.root_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  row-gap: 0;
}
@media screen and (max-width: 1000px) {
  .root_list {
    grid-template-columns: 1fr;
    row-gap: 80px;
  }
}
@media screen and (max-width: 600px) {
  .root_list {
    row-gap: 64px;
  }
}

.root_item:nth-child(even) {
  padding-top: 134px;
}
@media screen and (max-width: 1000px) {
  .root_item:nth-child(even) {
    padding-top: 0;
  }
}

.root_top {
  position: relative;
  margin-bottom: 16px;
}

.root_img {
  aspect-ratio: 48/30;
  overflow: hidden;
}

.root_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.root_num {
  display: block;
  font-size: 64px;
  position: absolute;
  left: -14px;
  top: -48px;
  z-index: 10;
}
@media screen and (max-width: 600px) {
  .root_num {
    font-size: 54px;
    left: 0;
    top: -36px;
  }
}

.root_txt {
  -webkit-transform: translateY(-12px);
      -ms-transform: translateY(-12px);
          transform: translateY(-12px);
  opacity: 0;
}

.root_ttl {
  font-size: 20px;
  margin-bottom: 16px;
  line-height: 1.7;
  padding-left: 24px;
  position: relative;
}
@media screen and (max-width: 600px) {
  .root_ttl {
    font-size: 18px;
    padding-left: 20px;
  }
}
.root_ttl::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 100%;
  background-color: #545F4E;
  top: 0;
  left: 0;
}
@media screen and (max-width: 600px) {
  .root_ttl::after {
    width: 5px;
  }
}

.root_desc {
  line-height: 2;
  font-size: 16px;
}
@media screen and (max-width: 1400px) {
  .root_desc {
    font-size: 14px;
  }
}

.move .root_txt {
  -webkit-animation: anime_txt-st 1s 0.6s forwards;
          animation: anime_txt-st 1s 0.6s forwards;
}

/*--------------- cta ---------------*/
.cta {
  padding: 80px 0;
  background-image: url(../img/cta_bg.webp);
  background-size: cover;
  background-position: center;
  position: relative;
}
@media screen and (max-width: 600px) {
  .cta {
    padding: 54px 0 74px;
  }
}
.cta::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0)));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 2;
}

.cta_heading {
  font-size: 24px;
  color: #fff;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 56px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 600px) {
  .cta_heading {
    margin: 0 auto 28px;
  }
}

.cta_list {
  display: grid;
  grid-template-columns: 428px 428px;
  gap: 32px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1000px) {
  .cta_list {
    grid-template-columns: 1fr;
    max-width: 86%;
  }
}
@media screen and (max-width: 600px) {
  .cta_list {
    max-width: 100%;
    padding: 0 16px;
  }
}

.cta_item {
  width: 100%;
  border: 1px solid #545F4E;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 6px;
}

.cta_inner {
  border: 1px solid #545F4E;
  padding: 28px 40px;
}
@media screen and (max-width: 600px) {
  .cta_inner {
    padding: 18px 26px 24px;
  }
}

.cta_img {
  margin-bottom: 12px;
}

.cta_ttl {
  font-size: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 20px;
}

.cta_txt {
  text-align: justify;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.cta_btn {
  display: block;
  width: 100%;
  background-color: #3E3F2A;
  border: 1px solid #3E3F2A;
  padding: 12px 0;
  text-align: center;
  color: #fff;
  border-radius: 4px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media screen and (max-width: 1400px) {
  .cta_btn {
    font-size: 14px;
  }
}

.cta_btn:hover {
  background-color: #fff;
  color: #3E3F2A;
  font-weight: 500;
}

/*--------------- footer ---------------*/
.footer {
  padding: 42px 0 120px;
}

.footer_wrap {
  max-width: 1100px;
  width: 78.5%;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .footer_wrap {
    width: 84%;
  }
}
@media screen and (max-width: 800px) {
  .footer_wrap {
    padding: 0 16px;
    width: 100%;
  }
}

.footer_top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 28px;
  margin-bottom: 28px;
}
@media screen and (max-width: 800px) {
  .footer_top {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
  }
}

.footer_logo {
  width: 96px;
  display: block;
}
@media screen and (max-width: 800px) {
  .footer_logo {
    width: 80px;
  }
}

.footer_nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media screen and (max-width: 800px) {
  .footer_nav {
    gap: 8px;
  }
}

.footer_nav a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 22px;
  border-radius: 4px;
  font-size: 13px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media screen and (max-width: 800px) {
  .footer_nav a {
    padding: 8px 18px;
  }
}
@media screen and (max-width: 350px) {
  .footer_nav a {
    padding: 8px 12px;
  }
}
.footer_nav a:nth-child(1) {
  border: 1px solid #000;
}
.footer_nav a:nth-child(2) {
  border: 1px solid #3E3F2A;
  background-color: #3E3F2A;
  color: #fff;
}

.footer_nav a:hover:nth-child(1) {
  background-color: #000;
  color: #fff;
}
.footer_nav a:hover:nth-child(2) {
  border: 1px solid #3E3F2A;
  background-color: #fff;
  color: #3E3F2A;
}

.footer_hp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  margin-bottom: 24px;
}

.footer_hp_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media screen and (max-width: 800px) {
  .footer_hp_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.footer_hp_ttl {
  font-size: 20px;
}
@media screen and (max-width: 375px) {
  .footer_hp_ttl {
    font-size: 18px;
  }
}

.footer_hp_btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  font-size: 12px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.footer_hp_btn span {
  text-decoration: underline;
}
.footer_hp_btn img {
  width: 9px;
}

.footer_hp_btn:hover {
  opacity: 0.4;
}

.footer_address {
  display: block;
  font-size: 14px;
}
@media screen and (max-width: 800px) {
  .footer_address {
    margin-bottom: 36px;
    line-height: 2;
  }
}

.footer_small {
  position: absolute;
  bottom: 0;
  right: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  gap: 32px;
}
@media screen and (max-width: 800px) {
  .footer_small {
    position: relative;
  }
}
@media screen and (max-width: 600px) {
  .footer_small {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.footer_small a {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.footer_small a:hover {
  opacity: 0.4;
}

/*---------------  ---------------*/
/*---------------  ---------------*/