@charset "UTF-8";
/*=============================
color & Breakpoints & Mixins
=============================*/
/* =============================
  Device Utility
============================= */
.pc {
  display: none !important;
}
@media screen and (min-width: 960px) {
  .pc {
    display: block !important;
  }
}

.sp {
  display: block !important;
}
@media screen and (min-width: 960px) {
  .sp {
    display: none !important;
  }
}

/*=============================
common (Base styles)
=============================*/
html {
  font-size: 62.5%;
  width: 100%;
}

body {
  background-color: #fff;
  color: #333333;
  font-family: "Shippori Mincho B1", serif;
  line-height: 1.7;
  letter-spacing: 0.18em;
  font-size: clamp(1.4rem, 1.354rem + 0.123vw, 1.6rem);
  font-weight: 400;
  text-align: left;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  body {
    text-align: justify;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-align: center;
}

h1 {
  font-feature-settings: "palt";
}

h2 {
  font-size: clamp(2.2rem, 2.015rem + 0.492vw, 3rem);
  letter-spacing: 0.3em;
  font-weight: 600;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  h2 {
    line-height: 1.6;
    margin-bottom: 10px;
  }
}

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

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

ul,
li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #333333;
  display: block;
  -webkit-text-fill-color: currentcolor;
}
a:hover {
  opacity: 0.9;
  transition: all ease 0.5s;
}

section {
  padding: 70px 0;
}
@media screen and (max-width: 767px) {
  section {
    padding: 50px 0;
  }
}

.inner {
  width: 85%;
  max-width: 1160px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .inner {
    width: 90%;
  }
}

.caption {
  font-size: 1rem;
  font-feature-settings: "palt";
  line-height: 1.5;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px) {
  .caption {
    font-size: 8px;
  }
}

button {
  color: #333333;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-color: transparent;
  padding: 0;
  border: none;
  -webkit-text-fill-color: currentcolor;
}

.marquee {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .marquee {
    bottom: -3px;
  }
}
.marquee__inner {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
}
.marquee__inner img {
  height: 130px;
  width: auto;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .marquee__inner img {
    height: 70px;
  }
}
.marquee__inner {
  animation: marquee-scroll 35s linear infinite;
}

/*=============================
header
=============================*/
header {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 25px;
}
@media screen and (max-width: 767px) {
  header {
    padding: 10px 15px;
  }
}
header .header_left {
  width: 180px;
}
@media screen and (max-width: 767px) {
  header .header_left {
    width: 110px;
  }
}
header .header_right {
  width: 230px;
}
@media screen and (max-width: 767px) {
  header .header_right {
    width: 130px;
  }
}

/*=============================
contact
=============================*/
.contact {
  text-align: center;
  padding-top: 70px;
}
@media screen and (max-width: 767px) {
  .contact {
    padding-top: 60px;
    padding-bottom: 0px;
  }
}
.contact .contact-title {
  margin: 0 auto;
  width: 80%;
  margin-bottom: 40px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .contact .contact-title {
    width: 90%;
    font-size: 1.6rem;
    margin-bottom: 30px;
    letter-spacing: 0.11em;
  }
}
.contact img {
  margin: 0 auto 20px;
  width: 80%;
  max-width: 800px;
}
@media screen and (max-width: 767px) {
  .contact img {
    width: 85%;
    margin-bottom: 15px;
  }
}
.contact .access_map01 {
  width: 100%;
  height: 600px;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .contact .access_map01 {
    margin-top: 50px;
  }
}
@media screen and (max-width: 959px) {
  .contact .access_map01 {
    height: 500px;
  }
}
@media screen and (max-width: 767px) {
  .contact .access_map01 {
    height: 300px;
  }
}
.contact .access_map01 iframe {
  width: 100%;
  height: 100%;
}

/*=============================
footer
=============================*/
footer {
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  footer {
    padding: 40px 0;
  }
}
footer a {
  width: 70%;
  max-width: 700px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  footer a {
    width: 85%;
    max-width: 380px;
  }
}

/*=============================
mv
=============================*/
.mv {
  padding: 0;
  position: relative;
  width: 100%;
  overflow: hidden;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/*=============================
top
=============================*/
.top {
  padding: 80px 0;
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top {
    padding: 50px 0;
  }
}
.top::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background-image: url("../img/top/top_bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0.85;
}
.top .inner {
  width: 65%;
  max-width: 750px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .top .inner {
    width: 85%;
  }
}
.top .top-content .top-subtitle {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 1.5rem;
  letter-spacing: 0.35em;
  margin-bottom: 20px;
}
.top .top-content .top-subtitle::after {
  content: "";
  display: block;
  flex-grow: 1;
  max-width: 300px;
  height: 1px;
  background-color: #333333;
}
.top .top-content .top-title {
  width: 80%;
  text-align: left;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .top .top-content .top-title {
    width: 90%;
  }
}
.top .top-content .top-title img {
  display: block;
  width: 100%;
  height: auto;
}
.top .top-content .top-message {
  line-height: 2.5;
  letter-spacing: 0.1em;
  margin-top: 50px;
  display: flex;
  gap: 30px;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .top .top-content .top-message {
    line-height: 2;
    display: block;
    margin-top: 25px;
    letter-spacing: 0.15em;
  }
}

/*=============================
dev-map
=============================*/
.dev-map {
  position: relative;
  width: 100%;
  padding-bottom: 0;
}
.dev-map__inner {
  width: 100%;
  margin: 0 auto;
}
.dev-map .area-click_sp {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 10;
}
.dev-map .map-container {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 959px) {
  .dev-map .map-container {
    margin-top: -6%;
  }
}
.dev-map .map-container .title-slant {
  position: absolute;
  top: 0;
  display: inline-block;
  padding: 15px 70px 15px 30px;
  font-size: clamp(1.8rem, 1.477rem + 0.862vw, 3.2rem);
  font-weight: 500;
  letter-spacing: 0.25em;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .dev-map .map-container .title-slant {
    padding: 10px 40px 10px 25px;
  }
}
.dev-map .map-container .title-slant::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(208, 173, 112, 0.6);
  clip-path: polygon(0 0, 100% 0, calc(100% - 30px) 100%, 0 100%);
  z-index: -1;
}
.dev-map .map-container .area-click {
  position: absolute;
  width: 40%;
  right: 0;
  bottom: 7%;
}
.dev-map .map-container .map-bg {
  width: 100%;
  height: auto;
  display: block;
}
.dev-map .area-btn {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 11%;
  aspect-ratio: 1/1;
  border: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(208, 173, 112, 0.85) 0%, rgba(208, 173, 112, 0.5) 50%, rgba(208, 173, 112, 0) 70%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.4s ease;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .dev-map .area-btn {
    width: 25%;
  }
}
.dev-map .area-btn:hover {
  transform: translate(-50%, -50%) scale(1.15);
}
.dev-map .area-btn .ja {
  font-family: "Shippori Mincho B1", serif;
  font-size: clamp(1.6rem, 1.462rem + 0.369vw, 2.2rem);
  line-height: 1.5;
  letter-spacing: 0.3em;
  color: #333333 !important;
  -webkit-text-fill-color: #333333 !important;
}
@media screen and (max-width: 767px) {
  .dev-map .area-btn .ja {
    letter-spacing: 0.1em;
  }
}
.dev-map .area-btn .en {
  font-family: "Shippori Mincho B1", serif;
  font-size: clamp(0.438rem, 0.308rem + 0.554vw, 1rem);
  letter-spacing: 0.3em;
  color: #333333 !important;
  -webkit-text-fill-color: #333333 !important;
}
@media screen and (max-width: 767px) {
  .dev-map .area-btn .en {
    letter-spacing: 0.1em;
  }
}
.dev-map .area-btn_sm {
  width: 9%;
}
@media screen and (max-width: 767px) {
  .dev-map .area-btn_sm {
    width: 20%;
  }
}
.dev-map .area-btn_sm .ja {
  font-size: clamp(1.4rem, 1.308rem + 0.246vw, 1.8rem);
}
.dev-map .area-btn_lg {
  width: 18%;
}
@media screen and (max-width: 767px) {
  .dev-map .area-btn_lg {
    width: 32%;
  }
}
.dev-map .area-btn_lg .ja {
  font-size: clamp(2.4rem, 2.146rem + 1.077vw, 3.5rem);
}
.dev-map .btn-ikebukuro {
  top: 75%;
  left: 50%;
}
@media screen and (max-width: 767px) {
  .dev-map .btn-ikebukuro {
    top: 80%;
    left: 60%;
  }
}
.dev-map .btn-oyama {
  top: 48%;
  left: 44%;
}
@media screen and (max-width: 767px) {
  .dev-map .btn-oyama {
    top: 48%;
    left: 44%;
  }
}
.dev-map .btn-kamiitabashi {
  top: 30%;
  left: 30%;
}
@media screen and (max-width: 767px) {
  .dev-map .btn-kamiitabashi {
    top: 28%;
    left: 18%;
  }
}
.dev-map .btn-itabashi {
  top: 50%;
  left: 54%;
}
@media screen and (max-width: 767px) {
  .dev-map .btn-itabashi {
    top: 52%;
    left: 64%;
  }
}
.dev-map .btn-jujo {
  top: 33%;
  left: 55%;
}
@media screen and (max-width: 767px) {
  .dev-map .btn-jujo {
    top: 32%;
    left: 65%;
  }
}
.dev-map .btn-oji {
  top: 43%;
  left: 65%;
}
@media screen and (max-width: 767px) {
  .dev-map .btn-oji {
    top: 44%;
    left: 86%;
  }
}
.dev-map .btn-akabane {
  top: 15%;
  left: 55%;
}
@media screen and (max-width: 767px) {
  .dev-map .btn-akabane {
    top: 13%;
    left: 65%;
  }
}
.dev-map .btn-tobutojo {
  top: 42.5%;
  left: 40.5%;
}
@media screen and (max-width: 767px) {
  .dev-map .btn-tobutojo {
    top: 42.5%;
    left: 40.5%;
  }
}

.area-btn-line {
  position: absolute;
  transform: translate(calc(-100% + 10px), -10px);
  display: flex;
  align-items: flex-end;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 20;
  transition: opacity 0.3s ease, filter 0.3s ease;
}
@media screen and (max-width: 767px) {
  .area-btn-line {
    transform: translate(calc(-100% + 5px), -7px);
  }
}
.area-btn-line:hover {
  opacity: 0.9;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}
.area-btn-line .box {
  background-color: #e5cca3;
  padding: 8px 16px;
  font-family: "Shippori Mincho B1", serif;
  font-size: clamp(1.4rem, 1.331rem + 0.185vw, 1.7rem);
  letter-spacing: 0.25em;
  white-space: nowrap;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .area-btn-line .box {
    letter-spacing: 0em;
    padding: 5px 10px;
  }
}
.area-btn-line .line-img {
  display: block;
  flex-shrink: 0;
  width: 80px;
  height: auto;
  margin-bottom: 18px;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .area-btn-line .line-img {
    width: 45px;
    margin-bottom: 22px;
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal.is-open {
  opacity: 1;
  visibility: visible;
}
.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.modal__content {
  position: relative;
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  background-image: url("../img/top/modal-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .modal__content {
    padding: 30px;
  }
}
.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #333333;
  background: transparent;
  border: none;
  font-size: 30px;
  cursor: pointer;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .modal__close {
    top: 10px;
    right: 15px;
  }
}
.modal__body {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .modal__body {
    flex-direction: column;
    gap: 20px;
  }
}
.modal__info {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .modal__info {
    display: contents;
  }
}
.modal__title {
  position: relative;
  display: inline-block;
  margin-left: -50px;
  margin-bottom: 30px;
  padding: 15px 80px 14px 50px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .modal__title {
    order: 1;
    padding: 10px 20px 10px 30px;
    margin-bottom: 0px;
    margin-left: -30px;
  }
}
.modal__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(187, 107, 37, 0.8);
  background-image: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.15"/%3E%3C/svg%3E');
  clip-path: polygon(0 0, 100% 0, calc(100% - 110px) 100%, 0 100%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .modal__title::before {
    clip-path: polygon(0 0, 100% 0, calc(100% - 50px) 100%, 0 100%);
  }
}
.modal__title .ja {
  display: block;
  font-family: serif;
  font-size: clamp(2.4rem, 2.123rem + 0.738vw, 3.6rem);
  letter-spacing: 0.3em;
  line-height: 1;
}
.modal__title .ja-tobu {
  font-size: clamp(1.7rem, 1.538rem + 0.431vw, 2.4rem);
}
.modal__title .en {
  line-height: 1;
  display: block;
  font-size: 16px;
  letter-spacing: 0.3em;
  margin-top: 5px;
}
.modal__list {
  font-family: sans-serif;
  list-style: none;
  padding: 0;
  margin-top: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .modal__list {
    order: 2;
    margin-top: 0px;
    margin-bottom: 0px;
  }
}
.modal__list li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 20px;
  line-height: 1.6;
  font-weight: bold;
}
.modal__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background-color: rgb(170, 104, 45);
}
.modal__btn {
  width: 200px;
}
@media screen and (max-width: 767px) {
  .modal__btn {
    order: 4;
    margin: 0 auto;
    display: block;
  }
}
.modal__image {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .modal__image {
    order: 3;
    margin-bottom: 20px;
  }
}
.modal__image img {
  width: 100%;
  height: auto;
  border: 2px solid #fff;
}

/*=============================
market, info, satisfaction
=============================*/
@media screen and (max-width: 767px) {
  .market {
    padding-bottom: 0;
  }
}
.market h2 span {
  display: block;
  font-size: clamp(1.6rem, 1.554rem + 0.123vw, 1.8rem);
  letter-spacing: 0.5em;
  margin-bottom: 10px;
}
.market h2 {
  letter-spacing: 0.4em;
}
@media screen and (max-width: 767px) {
  .market h2 {
    letter-spacing: 0.25em;
  }
}
.market .market-conts {
  width: 80%;
  margin: 60px auto 0;
}
@media screen and (max-width: 767px) {
  .market .market-conts {
    width: 100%;
    margin: 30px auto 0;
  }
}
.market .market-conts h3 {
  font-size: clamp(1.8rem, 1.662rem + 0.369vw, 2.4rem);
  letter-spacing: 0.3em;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .market .market-conts h3 {
    letter-spacing: 0.15em;
    margin-bottom: 25px;
  }
}
.market .market-conts p {
  text-align: justify;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .market .market-conts p {
    margin-bottom: 15px;
  }
}
.market .market-graph {
  margin: 70px 0;
}
@media screen and (max-width: 767px) {
  .market .market-graph {
    margin: 50px 0;
  }
}
.market .market-graph img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .info {
    padding-bottom: 20px;
  }
}
.info h2 {
  font-size: clamp(2rem, 1.908rem + 0.246vw, 2.4rem);
}
.info h2 span {
  display: block;
  font-size: clamp(1.6rem, 1.554rem + 0.123vw, 1.8rem);
  letter-spacing: 0.5em;
  margin-bottom: 10px;
}
.info .info-wrapper {
  margin-top: 50px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 25px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .info .info-wrapper {
    margin-top: 30px;
    flex-direction: column;
    gap: 30px;
  }
}
.info .info-wrapper .info-list {
  flex: 1;
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  .satisfaction {
    padding-bottom: 20px;
  }
}
.satisfaction .cs_plain {
  font-size: clamp(1.8rem, 1.638rem + 0.431vw, 2.5rem);
  text-align: center;
  margin-bottom: 20px;
}
.satisfaction .satisfaction_img {
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .satisfaction .satisfaction_img {
    width: 80%;
    max-width: 450px;
  }
}
.satisfaction .satisfaction_img .caption {
  margin-top: 15px;
}

/*=============================
下層ページ
=============================*/
/*=============================
common
=============================*/
section {
  padding: 90px 0;
}
@media screen and (max-width: 767px) {
  section {
    padding: 50px 0;
  }
}

.section-title {
  text-align: left;
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  transform: skewX(-10deg);
}
@media screen and (max-width: 767px) {
  .section-title {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }
}
.section-title::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #d0ad70;
  margin-right: 13px;
}

h3 {
  text-align: left;
  font-size: clamp(2rem, 1.723rem + 0.738vw, 3.2rem);
  line-height: 1.6;
  margin-bottom: 35px;
  font-weight: 500;
  letter-spacing: 0.18em;
}

p {
  text-align: justify;
}

/*=============================
sub-top
=============================*/
.sub-top {
  position: relative;
  width: 100%;
  height: 350px;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 8%;
}
@media screen and (max-width: 767px) {
  .sub-top {
    height: 180px;
    padding-left: 5%;
  }
}
.sub-top__badge {
  background-color: #d0ad70;
  font-size: clamp(1.3rem, 1.231rem + 0.185vw, 1.6rem);
  line-height: 1;
  letter-spacing: 0.2em;
  padding: 7px 10px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .sub-top__badge {
    font-size: 1.2rem;
  }
}
.sub-top .top__title {
  font-family: "Jost", sans-serif;
  transform: skewX(-10deg);
  margin-top: 30px;
  font-size: clamp(3.2rem, 2.092rem + 2.954vw, 8rem);
  line-height: 1;
  letter-spacing: 0.18em;
}
@media screen and (max-width: 767px) {
  .sub-top .top__title {
    margin-top: 20px;
    letter-spacing: 0.1em;
  }
}
.sub-top .top__title span {
  font-weight: 500;
  display: inline-block;
  opacity: 0;
  transform: translateX(-15px);
  animation: fadeInLetter 0.6s ease forwards;
}
.sub-top .top__title span:nth-child(1) {
  animation-delay: 0.1s;
}
.sub-top .top__title span:nth-child(2) {
  animation-delay: 0.2s;
}
.sub-top .top__title span:nth-child(3) {
  animation-delay: 0.3s;
}
.sub-top .top__title span:nth-child(4) {
  animation-delay: 0.4s;
}
.sub-top .top__title span:nth-child(5) {
  animation-delay: 0.5s;
}
.sub-top .top__title span:nth-child(6) {
  animation-delay: 0.6s;
}
.sub-top .top__title span:nth-child(7) {
  animation-delay: 0.7s;
}
.sub-top .top__title span:nth-child(8) {
  animation-delay: 0.8s;
}
.sub-top .top__title span:nth-child(9) {
  animation-delay: 0.9s;
}
.sub-top .top__title span:nth-child(10) {
  animation-delay: 1s;
}
.sub-top .top__title span:nth-child(11) {
  animation-delay: 1.1s;
}
.sub-top .top__title span:nth-child(12) {
  animation-delay: 1.2s;
}
.sub-top .top__title span:nth-child(13) {
  animation-delay: 1.3s;
}
.sub-top .top__title span:nth-child(14) {
  animation-delay: 1.4s;
}
.sub-top .top__title span:nth-child(15) {
  animation-delay: 1.5s;
}
.sub-top .top__title span:nth-child(16) {
  animation-delay: 1.6s;
}
.sub-top .top__title span:nth-child(17) {
  animation-delay: 1.7s;
}
.sub-top .top__title span:nth-child(18) {
  animation-delay: 1.8s;
}
.sub-top .top__title span:nth-child(19) {
  animation-delay: 1.9s;
}
.sub-top .top__title span:nth-child(20) {
  animation-delay: 2s;
}
.sub-top .top__sub {
  font-size: clamp(1.3rem, 1.231rem + 0.185vw, 1.6rem);
  letter-spacing: 0.25em;
  margin-top: 20px;
  opacity: 0;
  animation: fadeInLetter 1s ease 1.5s forwards;
}
@media screen and (max-width: 767px) {
  .sub-top .top__sub {
    font-size: 1.4rem;
    letter-spacing: 0.2em;
  }
}
.sub-top__ikebukuro {
  background: url("../img/sub/sub-top_ikebukuro.jpg") no-repeat center center;
}
.sub-top__oji {
  background: url("../img/sub/sub-top_oji.jpg") no-repeat center center;
}
.sub-top__akabane {
  background: url("../img/sub/sub-top_akabane.jpg") no-repeat center center;
}
.sub-top__kamiitabashi {
  background: url("../img/sub/sub-top_kamiitabashi.jpg") no-repeat center center;
}
.sub-top__jujo {
  background: url("../img/sub/sub-top_jujo.jpg") no-repeat center center;
}
.sub-top__oyama {
  background: url("../img/sub/sub-top_oyama.jpg") no-repeat center center;
}
.sub-top__itabashi {
  background: url("../img/sub/sub-top_itabashi.jpg") no-repeat center center;
}
.sub-top__tobutojo {
  background: url("../img/sub/sub-top_tobutojo.jpg") no-repeat center center;
}

@keyframes fadeInLetter {
  0% {
    opacity: 0;
    transform: translateX(-15px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/*=============================
intro
=============================*/
.sub-intro .flex-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .sub-intro .flex-wrapper {
    flex-direction: column;
  }
}
.sub-intro .flex-wrapper__left {
  width: 50%;
  padding-left: max(7.5vw, 50vw - 580px);
}
@media screen and (max-width: 767px) {
  .sub-intro .flex-wrapper__left {
    width: 100%;
    padding-left: 5vw;
    padding-right: 5vw;
    margin-bottom: 40px;
  }
}
.sub-intro .flex-wrapper__left p {
  margin-bottom: 30px;
}
.sub-intro .flex-wrapper__left p:last-of-type {
  margin-bottom: 0;
}
.sub-intro .flex-wrapper__right {
  width: 40%;
  padding-right: max(0px, 50vw - 580px);
}
@media screen and (max-width: 767px) {
  .sub-intro .flex-wrapper__right {
    width: 100%;
    padding-right: 0;
  }
}
.sub-intro .flex-wrapper__right img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

/*=============================
map
=============================*/
.sub-map {
  padding: 0;
}
.sub-map h2 {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .sub-map h2 {
    margin-bottom: 30px;
  }
}
.sub-map h2 {
  display: flex;
  align-items: center;
}
.sub-map h2::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #d0ad70;
  margin-right: 15px;
}
.sub-map .map-wrapper {
  width: 100%;
  overflow: hidden;
}
.sub-map .map-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.mapReveal {
  animation-name: mapRevealAnim;
}

@keyframes mapRevealAnim {
  0% {
    opacity: 0;
    transform: scale(1.05);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}
/*=============================
overview
=============================*/
.sub-overview {
  overflow: hidden;
}
.sub-overview .overview-block {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .sub-overview .overview-block {
    margin-bottom: 60px;
  }
}
.sub-overview .overview-block__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .sub-overview .overview-block__flex {
    flex-direction: column;
  }
}
.sub-overview .overview-block__flex.reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .sub-overview .overview-block__flex.reverse {
    flex-direction: column;
  }
}
.sub-overview .overview-block__text {
  width: 54%;
  position: relative;
  padding-left: 60px;
}
@media screen and (max-width: 767px) {
  .sub-overview .overview-block__text {
    width: 85%;
    padding-left: 0;
    margin: 0 0 25px auto;
  }
}
.sub-overview .overview-block__text .topic-label-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  height: auto !important;
  max-width: none;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .sub-overview .overview-block__text .topic-label-img {
    top: 0;
    width: 22px;
    left: -45px;
  }
}
.sub-overview .overview-block__text.right-label {
  padding-left: 0;
  padding-right: 60px;
}
@media screen and (max-width: 767px) {
  .sub-overview .overview-block__text.right-label {
    padding-right: 0;
    margin: 0 auto 25px 0;
  }
}
.sub-overview .overview-block__text.right-label .topic-label-img {
  position: absolute;
  left: auto;
  right: -3vw;
  width: 85px;
  height: auto !important;
  max-width: none;
  -o-object-fit: contain;
     object-fit: contain;
  top: -40px;
}
@media screen and (max-width: 767px) {
  .sub-overview .overview-block__text.right-label .topic-label-img {
    right: -75px;
    width: 73px;
    top: -40px;
  }
}
.sub-overview .overview-block__text h3 {
  margin-top: 15px;
  margin-bottom: 30px;
  font-size: clamp(1.9rem, 1.692rem + 0.554vw, 2.8rem);
  line-height: 1.6;
  color: #d0ad70;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .sub-overview .overview-block__text h3 {
    margin-top: 10px;
    margin-bottom: 15px;
  }
}
.sub-overview .overview-block__text p {
  line-height: 2.3;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .sub-overview .overview-block__text p {
    line-height: 2;
  }
}
.sub-overview .overview-block__image {
  width: 41%;
}
@media screen and (max-width: 767px) {
  .sub-overview .overview-block__image {
    width: 100%;
  }
}
.sub-overview .overview-block__image img {
  width: 100%;
  height: auto;
}
.sub-overview .block-02.has-bg {
  background-image: url(../img/sub/overview_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0;
  margin: 80px 0;
}
@media screen and (max-width: 767px) {
  .sub-overview .block-02.has-bg {
    padding: 50px 0;
    margin: 60px 0;
  }
}
.sub-overview .block-02.has-bg .overview-block__text {
  padding-left: 0;
  padding-right: 60px;
}
@media screen and (max-width: 767px) {
  .sub-overview .block-02.has-bg .overview-block__text {
    padding-right: 0;
  }
}
.sub-overview .block-02.has-bg .overview-block__text h3 {
  color: #a5560f;
}
.sub-overview .marquee {
  position: relative;
  margin: 90px 0 20px;
}

/*=============================
information
=============================*/
.sub-information {
  background-image: url(../img/sub/information_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .sub-information {
    padding-bottom: 90px;
  }
}
.sub-information .swiper-slide {
  height: auto;
  display: flex;
  align-items: stretch;
}
.sub-information .project-card {
  position: relative;
  width: 100%;
  height: auto;
  background-color: #fff;
  border: 1px solid #333333;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
.sub-information .project-card__badge {
  background-color: #333333;
  color: #d0ad70;
  font-family: "Jost", sans-serif;
  font-style: italic;
  display: inline-block;
  padding: 6px 20px;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  align-self: flex-start;
  position: absolute;
  top: -16px;
  left: -1px;
}
.sub-information .project-card__inner {
  padding: 30px 30px 25px;
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .sub-information .project-card__inner {
    padding: 25px;
    padding-top: 35px;
  }
}
.sub-information .project-card__title {
  font-size: clamp(1.8rem, 1.754rem + 0.123vw, 2rem);
  text-align: left;
  line-height: 1.5;
  display: flex;
  align-items: center;
  min-height: 3em;
  box-sizing: content-box;
  margin-bottom: 20px;
  padding-bottom: 17px;
  border-bottom: 1px solid #333333;
}
@media screen and (max-width: 767px) {
  .sub-information .project-card__title {
    padding-bottom: 20px;
  }
}
.sub-information .project-card__desc {
  font-size: 1.3rem;
  margin-bottom: 25px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .sub-information .project-card__desc {
    margin-bottom: 20px;
  }
}
.sub-information .project-card__info {
  margin-bottom: 20px;
}
.sub-information .project-card__info:last-child {
  margin-bottom: 0px;
}
.sub-information .project-card__info:last-child ul li {
  font-size: 1.15rem;
  letter-spacing: 0.1em;
}
.sub-information .project-card__info:first-of-type {
  margin-top: auto;
}
.sub-information .project-card__info:first-of-type ul {
  display: grid;
  gap: 5px 5px;
  grid-template-columns: 1fr;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
}
.sub-information .project-card__info:first-of-type ul:has(> li:nth-last-child(4):first-child) {
  grid-template-columns: repeat(2, 1fr);
}
.sub-information .project-card__info:first-of-type .column {
  display: block;
}
.sub-information .project-card__info .info-label {
  background-color: #333333;
  color: #d0ad70;
  font-family: "Jost", sans-serif;
  font-style: italic;
  font-size: 1.15rem;
  padding: 2px 10px;
  display: inline-block;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
.sub-information .swiper:has(.swiper-slide:only-child) {
  width: 100%;
}
.sub-information .swiper-slide:only-child .project-card {
  margin-top: 0;
  width: 100%;
}
.sub-information .swiper-slide:only-child .project-card__inner {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  -moz-column-gap: 50px;
       column-gap: 50px;
  row-gap: 40px;
  padding: 60px 5vw;
}
@media screen and (max-width: 767px) {
  .sub-information .swiper-slide:only-child .project-card__inner {
    display: flex;
    flex-direction: column;
    padding: 40px 20px;
    gap: 0;
  }
}
.sub-information .swiper-slide:only-child .project-card__badge {
  top: 0;
  left: 0;
}
.sub-information .swiper-slide:only-child .project-card__title {
  grid-column: 1/-1;
  margin-bottom: 0;
  font-size: clamp(2.4rem, 2vw + 1rem, 3.2rem);
}
@media screen and (max-width: 767px) {
  .sub-information .swiper-slide:only-child .project-card__title {
    margin-bottom: 30px;
    font-size: 2rem;
  }
}
.sub-information .swiper-slide:only-child .project-card__desc {
  margin-bottom: 0;
  font-size: 1.5rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .sub-information .swiper-slide:only-child .project-card__desc {
    margin-bottom: 20px;
  }
}
.sub-information .swiper-slide:only-child .project-card__info {
  margin-bottom: 0;
  margin-top: 0 !important;
}
.sub-information .swiper-slide:only-child .project-card__info .info-label {
  font-size: 1.1rem;
  padding: 4px 12px;
}
.sub-information .swiper-slide:only-child .project-card__info:first-of-type {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .sub-information .swiper-slide:only-child .project-card__info {
    margin-bottom: 20px;
  }
  .sub-information .swiper-slide:only-child .project-card__info:first-of-type {
    margin-top: auto;
  }
  .sub-information .swiper-slide:only-child .project-card__info:last-child {
    margin-bottom: 0;
  }
}
.sub-information .swiper-controls {
  position: relative;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
}
@media screen and (max-width: 767px) {
  .sub-information .swiper-controls {
    margin-top: 10px;
  }
}
.sub-information .swiper-pagination {
  position: static;
  width: auto;
  --swiper-pagination-bullet-horizontal-gap: 10px;
}
@media screen and (max-width: 767px) {
  .sub-information .swiper-pagination {
    --swiper-pagination-bullet-horizontal-gap: 7px;
  }
}
.sub-information .swiper-pagination .swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
  width: 10px;
  height: 10px;
}
@media screen and (max-width: 767px) {
  .sub-information .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}
.sub-information .swiper-pagination .swiper-pagination-bullet-active {
  background: #d0ad70;
}
.sub-information .swiper-navigation {
  position: absolute;
  right: 0;
  display: flex;
  gap: 15px;
}
.sub-information .custom-arrow {
  position: static;
  width: 50px;
  height: 50px;
  background-color: #333333;
  margin-top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sub-information .custom-arrow::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
}
@media screen and (max-width: 767px) {
  .sub-information .custom-arrow {
    width: 40px;
    height: 40px;
    margin-top: 110px;
  }
}
.sub-information .swiper-button-prev.custom-arrow::after {
  border-width: 8px 12px 8px 0;
  border-color: transparent #d0ad70 transparent transparent;
  margin-right: 4px;
}
.sub-information .swiper-button-next.custom-arrow::after {
  border-width: 8px 0 8px 12px;
  border-color: transparent transparent transparent #d0ad70;
  margin-left: 4px;
}

/*=============================
contact
=============================*/
.contact .satisfaction {
  width: 80%;
  max-width: 800px;
  margin: 50px auto;
}
@media screen and (max-width: 767px) {
  .contact .satisfaction {
    width: 85%;
    margin: 40px auto 35px;
  }
}
.contact .satisfaction h3 {
  background-color: #0a122f;
  padding: 10px 0;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.25em;
}
@media screen and (max-width: 767px) {
  .contact .satisfaction h3 {
    font-size: 1.6rem;
    line-height: 1.4;
  }
}
.contact .satisfaction .satisfaction_img {
  width: 100%;
}
.contact .satisfaction .satisfaction_img img {
  width: 100%;
}/*# sourceMappingURL=style_sub.css.map */