@charset "UTF-8";

/* front-page --------------- */

body.home,
#page-front main {
  overflow-anchor: none;
}

#page-front main {
  padding-top: 5px;
}

#page-front .t-h1 {
  overflow: hidden;
  display: inline-block;
  margin-bottom: 135px;
  position: relative;
  height: 400px;
}
#page-front .t-h1 .txt-base {
  opacity: 0;
}
#page-front .t-h1 .txt-img {
  display: block;
  position: absolute;
  left: 0;
  bottom: -100%;
  transition: bottom 1s cubic-bezier(0.77, 0, 0.18, 1);
}
#page-front .t-h1.is-active .txt-img {
  bottom: 0;
}

#page-front .lower-mv {
  padding-top: 0;
}

.t-catch {
  padding-left: 30px;
  display: flex;
  flex-wrap: wrap;
  z-index: 3;
  position: absolute;
  width: inherit !important;
}
.t-catch.is-fixed {
  position: fixed;
  top: 150px;
  z-index: 5;
  will-change: transform;
}
.t-catch h2 {
  font-size: 18px;
  font-weight: var(--fw-bold);
  margin-right: 65px;
  padding-top: 14px;
}
.t-catch p {
  font-size: clamp(60px, 7vw, 100px);
  font-weight: var(--fw-bold);
  line-height: 1.3;
}

.t-catch.bl {
  z-index: 4;
}
.t-catch.bl h2,
.t-catch.bl p {
  color: var(--color_font);
}
.t-catch.wh {
  z-index: 5;
  pointer-events: none;
  clip-path: inset(100%);
  -webkit-clip-path: inset(100%);
}
.t-catch.wh h2,
.t-catch.wh p {
  color: #fff;
}

.t-pickup-news {
  display: flex;
  flex-wrap: wrap;
  margin-left: auto;
  margin-right: 220px;
  max-width: 760px;
  padding-top: 18px;
  position: relative;
  z-index: 4;
}
.t-pickup-news h2 {
  font-size: 15px;
  font-weight: var(--fw-bold);
  width: 150px;
}
.t-pickup-news .date {
  width: 150px;
}
.t-pickup-news .tpn-ttl {
  width: calc(100% - 300px);
}
.t-pickup-news .tpn-ttl a {
  text-decoration: underline;
  transition: var(--transition);
  line-height: 1.8;
  display: inline-block;
  padding-top: 2px;
}
.t-pickup-news .tpn-ttl a:hover {
  color: var(--color_theme01);
}

.t-scroll-down {
  position: absolute;
  width: 36px;
  height: 36px;
  right: -190px;
  top: 25px;
}
.t-scroll-down .vertical {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: var(--color_theme01);
  transform: translateX(-50%);
}
.t-scroll-down .arrow {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 0;
  transform: translateX(-50%);
}
.t-scroll-down .arrow .left,
.t-scroll-down .arrow .right {
  position: absolute;
  bottom: 0;
  width: 27px;
  height: 2px;
  background: var(--color_theme01);
}
.t-scroll-down .arrow .left {
  right: 0;
  transform-origin: right center;
  transform: rotate(45deg);
}
.t-scroll-down .arrow .right {
  left: 0;
  transform-origin: left center;
  transform: rotate(-45deg);
}

#t-mv {
  width: 100%;
  height: 48vw;
  max-height: 990px;
  position: relative;
  overflow: hidden;
  margin-top: 47px;
}

@media (max-width: 1650px) {
  .t-pickup-news {
    max-width: 450px;
    margin-right: 90px;
  }
  .t-pickup-news .tpn-ttl {
    width: 100%;
  }
  .t-scroll-down {
    right: -55px;
  }
}
@media (max-width: 1140px) {
  .t-pickup-news {
    max-width: 350px;
  }
  .t-scroll-down {
    right: -50px;
  }
}
@media (max-width: 1000px) {
  #page-front .t-h1 {
    margin-bottom: 185px;
  }
  .t-pickup-news {
    margin-top: -130px;
    padding-bottom: 50px;
  }
}

#introduction {
  padding-top: 200px;
  padding-bottom: 200px;
  width: 50%;
  margin-left: auto;
}
#introduction .int-catch {
  display: none;
}
#introduction .tips p {
  font-size: 30px;
  line-height: 2.2;
  padding-top: 10px;
}
#introduction .tips .more {
  margin-top: 70px;
}
@media (max-width: 1450px) {
  #introduction {
    width: 40%;
    margin-right: 3%;
  }
  #introduction .tips p {
    font-size: 25px;
  }
}
@media (max-width: 1050px) {
  #introduction {
    width: 38%;
  }
  #introduction .tips p {
    font-size: 20px;
  }
}

#t-service {
  margin-bottom: 100px;
}
#t-service .service-list ul {
  display: flex;
  flex-wrap: wrap;
}
#t-service .service-list ul li {
  width: 20%;
  height: 670px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: var(--stagger, 0s);
}
#t-service .service-list ul li.is-in {
  opacity: 1;
}
#t-service .service-list ul li:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(40, 27, 27, 0.5);
  top: 0;
  left: 0;
  z-index: 1;
  transition: 0.6s ease;
}

#t-service .service-list ul li::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.6s ease;
  z-index: 0;
}
#t-service .service-list ul li:hover:before {
  background: rgba(40, 27, 27, 0.3);
}
#t-service .service-list ul li:hover::after,
#t-service .service-list ul li a:hover::after {
  transform: scale(1.08);
}
#t-service .service-list ul .custom-housing::after {
  background-image: url(img/home/pc/photo-custom-housing.jpg);
}
#t-service .service-list ul .renovation::after {
  background-image: url(img/home/pc/photo-renovation.jpg);
}
#t-service .service-list ul .land::after {
  background-image: url(img/home/pc/photo-land.jpg);
}
#t-service .service-list ul .gardening::after {
  background-image: url(img/home/pc/photo-gardening.jpg);
}
#t-service .service-list ul .original::after {
  background-image: url(img/home/pc/photo-original.jpg);
}
#t-service .service-list ul li a {
  display: block;
  color: var(--color_primary_wh);
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
}
#t-service .service-list ul li a .num {
  font-size: 68px;
  line-height: 1;
  position: absolute;
  top: 20px;
  left: 20px;
}
#t-service .service-list ul li a .service-name {
  writing-mode: vertical-rl;
  text-orientation: upright;
  position: absolute;
  width: fit-content;
  height: fit-content;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  font-size: var(--fs-xl);
  letter-spacing: 5px;
  font-weight: var(--fw-medium);
}
#t-service .service-list ul li a .txt {
  position: absolute;
  right: 20px;
  bottom: 20px;
  text-align: right;
  line-height: 1.8;
}
@media (max-width: 1000px) {
  #t-service .service-list ul li {
    width: 33.33%;
  }
}

#flow-and-land {
  padding-top: 170px;
  margin-bottom: 285px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#flow-and-land .sec {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#flow-and-land #t-flow {
  width: 50%;
  border-top: none;
  padding-top: 0;
  border-right: 1px solid var(--color_primary_bl);
  padding-right: 3%;
}
#flow-and-land #t-land {
  width: 47%;
  border-top: none;
  padding-top: 0;
}
#flow-and-land .sec-ttl {
  width: 250px;
}
#flow-and-land .box {
  width: calc(100% - 280px);
}
#flow-and-land .box .photo {
  display: block;
  position: relative;
  width: 100%;
  height: 460px;
  overflow: hidden;
  margin-bottom: 40px;
  background: var(--color_primary_wh);
  border-radius: 3px;
}
#flow-and-land .box .photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1);
  transform-origin: center center;
  transition: 0.6s ease;
  z-index: 0;
}
#flow-and-land .box .photo:hover::after {
  transform: scale(1.08);
  opacity: 0.8;
}
#flow-and-land .box .flow-link::after {
  background-image: url(img/home/pc/photo-t-flow.png);
}
#flow-and-land .box .land-link::after {
  background-image: url(img/home/pc/photo-t-land.png);
}
#flow-and-land .box .more {
  margin-top: 30px;
  margin-left: auto;
  margin-right: 60px;
  width: 260px;
}
@media (max-width: 1350px) {
  #flow-and-land {
    display: block;
    margin-bottom: 185px;
  }
  #flow-and-land #t-flow,
  #flow-and-land #t-land {
    width: 100%;
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
    border-right: none;
    padding-right: 0;
  }
  #flow-and-land #t-land {
    margin-top: 130px;
  }
}

#t-case {
  margin-bottom: 250px;
}
#t-case .sec-ttl-box {
  margin-bottom: 100px;
}
.case-list {
  padding-top: 85px;
}
.case-list .list-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.case-list .list-wrap::-webkit-scrollbar {
  display: none;
}
.case-list .list-wrap ul {
  display: flex;
  flex-wrap: nowrap;
  gap: 40px;
  min-width: max-content;
  padding-bottom: 70px;
}
.case-list .list-wrap ul .case {
  width: 450px;
  border-bottom: 1px solid var(--color_primary_bl);
  position: relative;
}
.case-list .list-wrap ul li:nth-child(1) .photo {
  background: url(img/home/pc/photo-case01.jpg) center;
  background-size: cover;
}
.case-list .list-wrap ul li:nth-child(2) .photo {
  background: url(img/home/pc/photo-case02.jpg) center;
  background-size: cover;
}
.case-list .list-wrap ul li:nth-child(3) .photo {
  background: url(img/home/pc/photo-case03.jpg) center;
  background-size: cover;
}
.case-list .list-wrap ul li:nth-child(4) .photo {
  background: url(img/home/pc/photo-case04.jpg) center;
  background-size: cover;
}
.case-list .list-wrap ul li a {
  display: block;
}
.case-list .list-wrap ul li a .num {
  font-size: 20px;
  font-weight: var(--fw-medium);
  margin-bottom: 20px;
  line-height: 1;
}
.case-list .list-wrap ul li a .num span {
  font-size: 32px;
}
.case-list .list-wrap ul li a .photo {
  width: 100%;
  height: 440px;
  margin-bottom: 30px;
  transition: var(--transition);
}
.case-list .list-wrap ul li a:hover .photo {
  opacity: 0.8;
}
.case-list .list-wrap ul li a .ttl-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 30px;
}
.case-list .list-wrap ul li a .ttl-box h3 {
  width: calc(100% - 150px);
  font-size: var(--fs-l);
  font-weight: var(--fw-bold);
  line-height: 1.5;
}
.case-list .list-wrap ul li a .ttl-box .tags {
  width: 125px;
}
.case-list .list-wrap ul li a .ttl-box .tags ol li {
  color: var(--color_theme01);
  font-size: 17px;
  font-weight: var(--fw-medium);
  line-height: 1.4;
}
.case-list .list-wrap ul .case .more-simple {
  position: absolute;
  bottom: -65px;
  left: 0;
}

#t-voice {
  padding-top: 80px;
  padding-bottom: 170px;
  position: relative;
  margin-bottom: 280px;
  font-weight: var(--fw-medium);
}
#t-voice .sec-ttl-box {
  width: 89%;
  margin-left: auto;
  margin-right: 50px;
  position: relative;
}
#t-voice .side-by-side .more {
  width: 300px;
}
#t-voice .voice-list {
  width: 90%;
  margin-left: auto;
  margin-right: 30px;
  position: relative;
  z-index: 3;
}
#t-voice .voice-list ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#t-voice .voice-list ul li {
  width: 49%;
}
#t-voice .voice-list ul li a {
  display: block;
}
#t-voice .voice-list ul li a .photo {
  position: relative;
  height: clamp(300px, 28vw, 470px);
  border-radius: 5px;
  overflow: hidden;
}
#t-voice .voice-list ul li a .photo::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--bg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.6s ease;
}
#t-voice .voice-list ul li a:hover .photo::after {
  transform: scale(1.08);
}
#t-voice .voice-list ul li a .photo .tag {
  position: absolute;
  top: 20px;
  left: 20px;
  color: var(--color_theme01);
  background: var(--color_primary_wh);
  font-weight: var(--fw-black);
  line-height: 1;
  padding: 9px 13px;
  font-size: 17px;
  border-radius: 3px;
  z-index: 2;
}
#t-voice .voice-list ul li a .tips {
  background: var(--color_primary_wh);
  border-radius: 3px;
  padding: 22px;
  margin-top: 7px;
  transition: var(--transition);
}
#t-voice .voice-list ul li a .tips .ttl-box {
  padding-bottom: 20px;
  margin-bottom: 13px;
  border-bottom: 1px solid var(--color_primary_bl);
}
#t-voice .voice-list ul li a .tips .ttl-box .ttl {
  font-size: var(--fs-l);
  line-height: 1.4;
  margin-bottom: 15px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: var(--fw-bold);
}
#t-voice .voice-list ul li a .tips .ttl-box .family-name {
  color: var(--color_primary_wh);
  background: var(--color_primary_bl);
  font-weight: var(--fw-bold);
  line-height: 1;
  padding: 10px 17px;
  font-size: 15px;
  border-radius: 50px;
  width: fit-content;
}
#t-voice .voice-list ul li a .tips .detail-box {
  display: flex;
  flex-wrap: wrap;
}
#t-voice .voice-list ul li a .tips .detail-box .composition {
  font-size: 13px;
}
#t-voice .voice-list ul li a .tips .detail-box .interview-day {
  font-size: 13px;
  margin-left: 20px;
  width: 170px;
}
@media (max-width: 1500px) {
  #t-voice .side-by-side .sec-ttl {
    width: 40%;
  }
}
@media (max-width: 1100px) {
  #t-voice .voice-list ul {
    display: block;
  }
  #t-voice .voice-list ul li {
    width: 100%;
  }
  #t-voice .voice-list ul li + li {
    margin-top: 40px;
  }
  #t-voice .voice-list ul li a .photo {
    height: clamp(300px, 36vw, 470px);
  }
}

#company-and-news {
  margin-bottom: 280px;
}
#company-and-news .sec-ttl {
  width: 49%;
  padding-top: 20px;
  border-top: 1px solid var(--color_primary_bl);
  margin-bottom: 50px;
}
#company-and-news .box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#company-and-news .box .t-company {
  width: 49%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#company-and-news .box .t-company .sec-tips {
  width: 49%;
  order: 1;
}
#company-and-news .box .t-company .sec-tips h3 {
  margin-bottom: 50px;
}
#company-and-news .box .t-company .more {
  margin-top: 170px;
}
#company-and-news .box .t-company .photo {
  width: 49%;
  height: clamp(450px, 23vw, 600px);
  order: 2;
  position: relative;
  overflow: hidden;
  background: var(--color_primary_wh);
  border-radius: 3px;
}
#company-and-news .box .t-company .photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(img/home/pc/photo-t-company.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1);
  transform-origin: center center;
  transition: 0.6s ease;
  z-index: 0;
}
#company-and-news .box .t-company .photo:hover::after {
  transform: scale(1.08);
  opacity: 0.8;
}
#company-and-news .box .t-news {
  width: 49%;
  background: var(--color_primary_wh);
  padding: 5px 35px 30px;
}
#company-and-news .box .t-news .sec-ttl {
  margin-bottom: 95px;
  border-top: none;
}
#company-and-news .box .t-news .sec-ttl .en {
  color: var(--color_primary_bg);
}
#company-and-news .box .t-news ul {
  width: 90%;
  max-width: 660px;
  margin-right: auto;
  margin-left: auto;
}
#company-and-news .box .t-news ul li + li {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid var(--color_primary_bl);
}
#company-and-news .box .t-news ul li a {
  display: block;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#company-and-news .box .t-news ul li a .date {
  width: 120px;
  font-size: 17px;
  font-weight: var(--fw-bold);
}
#company-and-news .box .t-news ul li a h3 {
  width: calc(100% - 165px);
  font-size: 17px;
  text-decoration: underline;
  transition: var(--transition);
  line-height: 1.8;
  display: inline-block;
}
#company-and-news .box .t-news ul li a:hover h3 {
  color: var(--color_theme01);
}
#company-and-news .box .t-news .more-simple {
  margin-left: auto;
  margin-top: 70px;
}
@media (max-width: 1350px) {
  #company-and-news .box {
    display: block;
  }
  #company-and-news .box .t-company {
    width: 100%;
    margin-bottom: 80px;
  }
  #company-and-news .box .t-company .more {
    margin-top: 100px;
  }
  #company-and-news .box .t-news {
    width: 100%;
  }
}

@media (max-width: 768px) {
  #page-front main {
    padding-top: 100px;
  }
  #page-front .t-h1 {
    margin-bottom: 60px;
    height: fit-content;
  }
  .t-catch {
    position: inherit;
    padding-left: 20px;
    margin-bottom: 30px;
  }
  .t-catch h2 {
    font-size: 10px;
    margin-right: 25px;
    padding-top: 4px;
  }
  .t-catch p {
    font-size: 40px;
  }
  .t-pickup-news {
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-right: 0;
    margin-left: 0;
    width: 100%;
    max-width: inherit;
    background: var(--color_primary_wh);
    border-top: 1px solid rgba(40, 27, 27, 0.3);
  }
  .t-pickup-news h2 {
    font-size: 10px;
    width: 70px;
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 26px;
  }
  .t-pickup-news .date {
    font-size: 10px;
    width: 80px;
    border-right: 1px solid rgba(40, 27, 27, 0.3);
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 26px;
  }
  .t-pickup-news .tpn-ttl {
    width: calc(100% - 150px);
    padding-top: 10px;
    padding-bottom: 10px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
  }
  .t-pickup-news .tpn-ttl a {
    text-decoration: inherit;
    line-height: 1.3;
    padding-left: 10px;
    display: inline-block;
    padding-right: 10px;
  }

  .t-pickup-news .tpn-ttl .marquee-track {
    display: inline-flex;
    gap: 2rem;
    will-change: transform;
  }

  .t-pickup-news.scrolling .tpn-ttl .marquee-track {
    animation: tpnMarquee 15s linear infinite;
  }

  @keyframes tpnMarquee {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .t-pickup-news.scrolling .tpn-ttl .marquee-track {
      animation: none;
      transform: none;
    }
  }
  #t-mv {
    margin-top: 0;
    height: 68vw;
  }
  #introduction {
    padding-top: 100px;
    padding-bottom: 110px;
    width: calc(100% - 40px);
    margin-right: auto;
    margin-left: auto;
  }
  #introduction .int-catch {
    display: flex;
    flex-wrap: wrap;
  }
  #introduction .int-catch h2 {
    font-size: 10px;
    margin-right: 20px;
    padding-top: 4px;
  }
  #introduction .int-catch p {
    font-size: 40px;
    font-weight: var(--fw-bold);
    line-height: 1.3;
  }
  #introduction .tips {
    width: calc(100% - 90px);
    padding-top: 20px;
    margin-left: auto;
  }
  #introduction .tips p {
    font-size: 15px;
    line-height: 2;
  }
  #introduction .tips .more {
    margin-top: 45px;
  }

  #t-service .service-list ul {
    display: block;
  }
  #t-service .service-list ul li {
    height: 330px;
    width: 100%;
    max-width: 500px;
    margin-right: auto;
    margin-left: auto;
  }
  #t-service .service-list ul li + li {
    margin-top: 20px;
  }
  #t-service .service-list ul li a .more-btn {
    position: absolute;
    right: 16px;
    bottom: 16px;
  }
  #t-service .service-list ul li a .num {
    top: 11px;
    left: 16px;
  }
  #t-service .service-list ul li a .service-name {
    font-size: 24px;
    letter-spacing: 3px;
    font-weight: var(--fw-bold);
  }
  #t-service .service-list ul li a .txt {
    font-size: 13px;
    right: inherit;
    bottom: 14px;
    left: 19px;
    text-align: left;
    line-height: 1.6;
  }
  #t-service .service-list .more {
    margin-top: 40px;
    margin-right: auto;
    margin-left: auto;
    position: relative;
    left: -20px;
  }
  #flow-and-land {
    padding-top: 0;
    margin-bottom: 100px;
  }
  #flow-and-land .sec {
    display: block;
  }
  #flow-and-land .sec-ttl {
    width: 100%;
    margin-bottom: 35px;
  }
  #flow-and-land .box {
    width: 100%;
  }
  #flow-and-land .box .photo {
    height: 280px;
  }
  #flow-and-land .box .more {
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    left: -20px;
    width: 190px;
  }
  #flow-and-land #t-land {
    margin-top: 90px;
  }
  #t-case {
    margin-bottom: 100px;
  }
  #t-case .sec-ttl-box {
    margin-bottom: 0;
  }
  .case-list {
    padding-top: 50px;
    width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;
  }
  .case-list .list-wrap {
    overflow-x: inherit;
    overflow-y: inherit;
    -webkit-overflow-scrolling: none;
  }
  .case-list .list-wrap ul {
    display: block;
    min-width: inherit;
  }
  .case-list .list-wrap ul .case {
    width: 100%;
  }
  .case-list .list-wrap ul .case + .case {
    margin-top: 60px;
  }
  .case-list .list-wrap ul li a .photo {
    width: 100%;
    height: 340px;
    margin-bottom: 20px;
  }
  .case-list .list-wrap ul li a .ttl-box {
    padding-bottom: 20px;
  }
  .case-list .list-wrap ul li a .ttl-box h3 {
    font-size: 15px;
    width: calc(100% - 120px);
  }
  .case-list .list-wrap ul li a .ttl-box .tags {
    width: 100px;
  }
  .case-list .list-wrap ul li a .ttl-box .tags ol li {
    font-size: 11px;
  }
  .case-list .more {
    margin-top: 50px;
    margin-right: auto;
    margin-left: auto;
    position: relative;
    left: -20px;
  }
  .case-list .list-wrap ul .case .more-simple {
    bottom: -45px;
  }
  .case-list .list-wrap ul .case + .case {
    margin-top: 80px;
  }
  #t-voice {
    width: 100%;
    padding-top: 95px;
    padding-bottom: 110px;
    margin-bottom: 100px;
    border-radius: 6px;
  }
  #t-voice .sec-ttl-box {
    width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;
  }
  #t-voice .side-by-side .sec-ttl {
    margin-bottom: 55px;
  }
  #t-voice .voice-list {
    width: calc(100% - 40px);
    padding-top: 10px;
    margin-left: auto;
    margin-right: auto;
  }
  #t-voice .voice-list ul li a .photo .tag {
    top: 15px;
    left: 15px;
    padding: 7px 9px;
    font-size: 14px;
  }
  #t-voice .voice-list ul li a .tips {
    margin-top: 4px;
    padding: 14px 17px;
  }
  #t-voice .voice-list ul li a .tips .ttl-box {
    padding-bottom: 16px;
  }
  #t-voice .voice-list ul li a .tips .ttl-box .ttl {
    white-space: inherit;
    overflow: inherit;
    text-overflow: inherit;
    margin-bottom: 12px;
  }
  #t-voice .voice-list ul li a .tips .ttl-box .family-name {
    padding: 9px 14px;
    font-size: 13px;
  }
  #t-voice .voice-list ul li a .tips .detail-box {
    display: block;
  }
  #t-voice .voice-list ul li a .tips .detail-box .composition {
    width: 100%;
    font-weight: var(--fw-bold);
  }
  #t-voice .voice-list ul li a .tips .detail-box .interview-day {
    width: 100%;
    font-weight: var(--fw-bold);
    margin-left: 0;
  }
  #t-voice .more {
    margin-top: 60px;
    margin-right: auto;
    margin-left: auto;
    position: relative;
    left: -20px;
    width: 250px;
  }

  #company-and-news {
    margin-bottom: 110px;
  }
  #company-and-news .sec-ttl {
    width: 100%;
    margin-bottom: 40px;
  }
  #company-and-news .box .t-company {
    display: block;
    margin-bottom: 100px;
  }
  #company-and-news .box .t-company .photo {
    width: 100%;
    margin-bottom: 40px;
    display: block;
    height: 300px;
  }
  #company-and-news .box .t-company .sec-tips {
    width: 100%;
  }
  #company-and-news .box .t-company .sec-tips h3 {
    margin-bottom: 25px;
  }
  #company-and-news .box .t-company .more {
    margin-top: 40px;
    margin-right: auto;
    margin-left: auto;
    position: relative;
    left: -20px;
  }
  #company-and-news .box .t-news {
    padding: 30px 30px 35px;
  }
  #company-and-news .box .t-news .sec-ttl {
    margin-bottom: 35px;
  }
  #company-and-news .box .t-news ul {
    width: 100%;
  }
  #company-and-news .box .t-news ul li a {
    display: block;
  }
  #company-and-news .box .t-news ul li a .date {
    width: 100%;
    font-size: 15px;
    margin-bottom: 5px;
  }
  #company-and-news .box .t-news ul li a h3 {
    width: 100%;
    font-size: 15px;
    line-height: 1.5;
  }
  #company-and-news .box .t-news .more-simple {
    margin-left: auto;
    margin-top: 30px;
  }
}

/* about --------------- */

#page-about .lower-mv {
  margin-top: -72px;
  position: relative;
  overflow: hidden;
}
#page-about .lower-mv::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.2);
  top: 0;
  left: 0;
  z-index: 1;
}
#page-about #t-mv {
  width: 100%;
  height: 131vh;
  max-height: inherit;
  position: relative;
  overflow: hidden;
  margin-top: 0px;
}
#page-about .para-photo {
  position: absolute;
  top: 0;
  left: 0;
}
#page-about .para-photo .s-parallax {
  width: 100%;
  height: auto;
}
#page-about header h1 {
  color: var(--color_primary_wh);
}
#page-about .lower-mv .l-mv-txt {
  position: absolute;
  top: 110px;
}
#page-about .lower-ttl {
  position: absolute;
  top: 100px;
  bottom: 0;
  left: 30px;
  margin-top: auto;
  margin-bottom: auto;
  height: fit-content;
  padding-bottom: 0;
}
#page-about .lower-ttl p,
#page-about .lower-ttl h2 {
  color: var(--color_primary_wh);
}

#about-intro {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
  padding-top: clamp(100px, 17vw, 220px);
  padding-bottom: clamp(100px, 17vw, 220px);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#about-intro h2 {
  font-weight: var(--fw-bold);
  font-size: 60px;
  line-height: 1.5;
  width: 410px;
}
#about-intro p {
  width: calc(100% - 420px);
  font-size: 25px;
  line-height: 2.3;
  max-width: fit-content;
  margin-right: 40px;
}

#three_benefits {
  padding-top: 150px;
  padding-bottom: 150px;
  margin-bottom: 200px;
}
#three_benefits .inside h2 {
  font-size: clamp(100px, 11vw, 200px);
  margin-bottom: 20px;
  line-height: 0.9;
  letter-spacing: -5px;
}
#three_benefits .inside .sub-ttl {
  font-size: clamp(18px, 2.6vw, 25px);
  margin-bottom: 100px;
  font-weight: var(--fw-bold);
}
#three_benefits .inside .benefits-list li {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#three_benefits .inside .benefits-list ul li + li {
  margin-top: 100px;
}
#three_benefits .inside .benefits-list ul li .num {
  width: 140px;
  font-size: 107px;
}
#three_benefits .inside .benefits-list ul li .illust {
  width: 27vw;
}
#three_benefits .inside .benefits-list ul li .tips {
  width: calc(100% - 660px);
  max-width: 600px;
}
#three_benefits .inside .benefits-list ul li .tips h3 {
  font-size: 40px;
  line-height: 1.3;
  margin-bottom: 40px;
  font-weight: var(--fw-semibold);
}
#three_benefits .inside .benefits-list ul li .tips .txt {
  font-size: 20px;
  margin-bottom: 20px;
}
#three_benefits .inside .benefits-list ul li .tips .tags {
  font-size: 20px;
  color: var(--color_theme01);
  font-weight: var(--fw-bold);
}

@media (max-width: 1540px) {
  #about-intro h2 {
    font-size: 50px;
    width: 350px;
  }
}
@media (max-width: 1370px) {
  #about-intro {
    width: 86%;
  }
  #about-intro p {
    font-size: 22px;
  }
  #three_benefits .inside .benefits-list li {
    justify-content: inherit;
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
  }
  #three_benefits .inside .benefits-list ul li .illust {
    max-width: 450px;
    width: 45vw;
    margin-left: 100px;
  }
  #three_benefits .inside .benefits-list ul li .tips {
    margin-top: 50px;
    width: 100%;
    max-width: inherit;
  }
}
@media (max-width: 1000px) {
  #page-about .para-photo .s-parallax {
    width: 150%;
    max-width: inherit;
    position: relative;
    left: -25%;
    height: auto;
  }
  #about-intro {
    display: block;
  }
  #about-intro h2 {
    margin-bottom: 40px;
  }
  #about-intro p {
    width: 100%;
    margin-right: 0;
  }
  #three_benefits {
    width: 100%;
  }
  #three_benefits .inside h2 {
    font-size: clamp(70px, 12vw, 200px);
  }
}

@media (max-width: 768px) {
  #page-about #t-mv {
    height: 65vh;
  }
  #page-about .lower-mv {
    padding-top: 0;
    margin-top: 0;
  }
  #page-about .lower-ttl {
    padding-bottom: 50px;
  }
  #page-about .para-photo .s-parallax {
    width: 100%;
    left: 0;
  }
  .lower-mv .l-mv-txt {
    height: clamp(80px, 19vw, 140px);
    margin-bottom: 50px;
  }
  .l-mv-txt .slide-left li {
    font-size: clamp(80px, 24vw, 140px);
  }
  #about-intro {
    padding-top: clamp(90px, 17vw, 220px);
    padding-bottom: clamp(90px, 17vw, 220px);
  }
  #about-intro h2 {
    font-size: 40px;
    width: inherit;
    line-height: 1.3;
  }
  #about-intro p {
    font-size: 15px;
    line-height: 2.1;
  }
  #three_benefits {
    padding-top: 80px;
    padding-bottom: 80px;
    margin-bottom: 120px;
  }
  #three_benefits .inside h2 {
    letter-spacing: -1px;
    margin-bottom: 15px;
  }
  #three_benefits .inside h2.u-line:after {
    display: none;
  }
  #three_benefits .inside .sub-ttl {
    margin-bottom: 75px;
  }
  #three_benefits .inside .benefits-list li {
    display: block;
    border-top: 1px solid var(--color_primary_bg);
  }
  #three_benefits .inside .benefits-list ul li + li {
    margin-top: 80px;
  }
  #three_benefits .inside .benefits-list ul li .num {
    font-size: 60px;
  }
  #three_benefits .inside .benefits-list ul li .illust {
    width: 100%;
    margin-left: 0;
  }
  #three_benefits .inside .benefits-list ul li .tips {
    margin-top: 30px;
  }
  #three_benefits .inside .benefits-list ul li .tips h3 {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 25px;
  }
  #three_benefits .inside .benefits-list ul li .tips .txt {
    font-size: 15px;
  }
  #three_benefits .inside .benefits-list ul li .tips .tags {
    font-size: 15px;
  }
}

/* service --------------- */

#five-service {
  padding-top: 150px;
  padding-bottom: 250px;
}
#five-service .service-list .box + .box {
  margin-top: 180px;
}
#five-service .service-list .s-tips {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 110px;
}
#five-service .service-list .s-tips .num {
  font-size: 180px;
  width: 250px;
  line-height: 0.8;
  color: var(--color_primary_wh);
}
#five-service .service-list .s-tips .txt-box {
  width: calc(100% - 250px);
  max-width: 1400px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#five-service .service-list .s-tips .txt-box h3 {
  font-size: 50px;
  line-height: 1.3;
  width: 330px;
  font-weight: var(--fw-bold);
}
#five-service .service-list .s-tips .txt-box h3 span {
  font-size: 22px;
  display: block;
  margin-top: 10px;
}
#five-service .service-list .s-tips .txt-box .txt {
  width: calc(100% - 380px);
  font-size: 20px;
  max-width: 920px;
  line-height: 1.6;
  padding-top: 10px;
}

.service-list .slick-slide {
  padding: 10px;
}

#five-service .service-list .case-study {
  margin-top: 100px;
}
#five-service .service-list .simple-tips {
  width: calc(100% - 300px);
  max-width: 1400px;
  margin-left: auto;
  margin-right: 20px;
}
#five-service .service-list .simple-tips .photo img {
  max-width: 1240px;
}
#five-service .service-list .simple-tips h3 {
  font-size: 50px;
  line-height: 1.3;
  width: 100%;
  font-weight: var(--fw-bold);
  margin-bottom: 60px;
}
#five-service .service-list .simple-tips h3 span {
  font-size: 22px;
  display: block;
  margin-top: 10px;
}
#five-service .service-list .case-study .photo ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#five-service .service-list .case-study .photo ul li {
  width: 50%;
  position: relative;
  max-width: 1240px;
}
#five-service .service-list .case-study .photo ul li p {
  position: absolute;
  color: var(--color_primary_wh);
  font-size: 70px;
  line-height: 1;
  bottom: 20px;
  left: 30px;
}

@media (max-width: 1200px) {
  #five-service .service-list .s-tips {
    display: block;
  }
  #five-service .service-list .s-tips .num {
    margin-bottom: 45px;
  }
  #five-service .service-list .s-tips .txt-box {
    width: 100%;
  }
  #five-service .service-list .simple-tips {
    width: calc(100% - 40px);
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  #five-service {
    padding-top: 80px;
    padding-bottom: 130px;
  }
  #five-service .service-list .box + .box {
    margin-top: 80px;
  }
  #five-service .service-list .s-tips .num {
    font-size: 60px;
    width: 90px;
    padding-top: 4px;
  }
  #five-service .service-list .s-tips {
    display: flex;
    margin-bottom: 35px;
  }
  #five-service .service-list .s-tips .txt-box {
    width: calc(100% - 90px);
  }
  #five-service .service-list .s-tips .txt-box h3 {
    font-size: 30px;
  }
  #five-service .service-list .s-tips .txt-box h3 span {
    font-size: 10px;
    margin-top: 0px;
  }
  #five-service .service-list .s-tips .txt-box .txt {
    width: calc(100% + 90px);
    margin-left: -90px;
    font-size: 15px;
    padding-top: 25px;
  }
  .service-list .slick-slide {
    padding: 5px;
  }
  #five-service .service-list .simple-tips h3 {
    font-size: 30px;
    margin-bottom: 25px;
  }
  #five-service .service-list .simple-tips h3 span {
    font-size: 10px;
    margin-top: 0px;
  }
  #five-service .service-list .case-study .photo ul li p {
    font-size: 20px;
    bottom: 12px;
    left: 15px;
  }
}

/* company --------------- */

#page-company .cont-ttl {
  margin-left: -5px;
  margin-bottom: 10px;
}
#page-company .sub-ttl {
  font-size: 25px;
  font-weight: var(--fw-bold);
  margin-bottom: 110px;
}

#company-info {
  padding-top: 235px;
  padding-bottom: 200px;
  margin-bottom: 200px;
  margin-top: -100px;
  overflow: hidden;
}
#company-info .box + .box {
  margin-top: 200px;
}
#company-info #greeting .item {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#company-info #greeting .item .photo {
  width: 49.2%;
}
#company-info #greeting .item .tips {
  width: 40%;
  max-width: 560px;
}
#company-info #greeting .item .tips h3 {
  font-size: 40px;
  font-weight: var(--fw-bold);
  margin-bottom: 40px;
  line-height: 1.4;
  margin-top: -14px;
}
#company-info #greeting .item .tips .txt {
  font-size: 20px;
  position: relative;
  padding-bottom: 70px;
  margin-bottom: 30px;
  line-height: 2;
}
#company-info #greeting .item .tips .txt::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  position: absolute;
  background: url(img/common/pc/u-border.png) center;
  background-size: cover;
  position: absolute;
  left: 0;
  bottom: 0;
}
#company-info #greeting .item .tips .name {
  font-size: 30px;
  font-weight: var(--fw-bold);
}
#company-info #greeting .item .tips .name .position {
  font-size: 15px;
  display: block;
}
#company-info #greeting .item .tips .name .kana {
  font-size: 15px;
  margin-left: 60px;
  vertical-align: 4px;
}
#company-info #our-team .sub-ttl {
  margin-bottom: 50px;
}
#company-info #our-team .tips {
  margin-bottom: 75px;
}
#company-info #our-team .tips p {
  font-size: 20px;
  line-height: 2;
}
#company-info #our-team ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#company-info #our-team ul li {
  width: 48%;
  margin-bottom: 80px;
}
#company-info #our-team ul li .photo {
  margin-bottom: 20px;
}
#company-info #our-team ul li .detail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#company-info #our-team ul li .detail .role {
  background: var(--color_primary_wh);
  border-radius: 50px;
  color: var(--color_primary_bg2);
  line-height: 1;
  padding: 10px;
  margin-right: 30px;
  padding: 9px 16px;
}
#company-info #our-team ul li .detail .name {
  font-size: 30px;
  font-weight: var(--fw-bold);
  line-height: 1.3;
  margin-top: -2px;
}
#company-info #outline {
  margin-top: 120px;
}
#company-info #outline .table {
  max-width: 1100px;
  margin-left: auto;
}
#company-info #outline .table dl {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#company-info #outline .table dl + dl {
  position: relative;
}
#company-info #outline .table dl + dl::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  background: url(img/common/pc/u-border.png) center;
  background-size: cover;
  opacity: 0.5;
}
#company-info #outline .table dl dt {
  font-size: 20px;
  width: 150px;
  padding-top: 40px;
  padding-bottom: 40px;
}
#company-info #outline .table dl dd {
  width: calc(100% - 150px);
  font-size: 20px;
  padding-top: 40px;
  padding-bottom: 40px;
}
#company-info #outline .table dl dd a {
  display: inline-block;
  /* color: var(--color_primary_wh);
  text-decoration: underline;
  margin-left: 30px; */
  margin-left: 0px;
  transform: scale(0.7);
}
#company-info #group .tips {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
#company-info #group .tips h3 {
  width: 450px;
  font-size: 40px;
  line-height: 1.3;
  margin-bottom: 40px;
  font-weight: var(--fw-semibold);
}
#company-info #group .tips p {
  width: calc(100% - 450px);
  max-width: 870px;
  line-height: 2;
  font-size: 20px;
}
#company-info #group ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#company-info #group ul li {
  width: 48%;
}
#company-info #group ul li .photo {
  width: 100%;
  height: clamp(250px, 23vw, 600px);
  position: relative;
  margin-bottom: 30px;
}
#company-info #group ul li .photo:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
}
#company-info #group ul li.greenfield .photo {
  background: url(img/company/pc/photo-group-greenfield.webp) center;
  background-size: cover;
}
#company-info #group ul li.mani .photo {
  background: url(img/company/pc/photo-group-mani.webp) center;
  background-size: cover;
}
#company-info #group ul li .photo img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 80%;
  height: fit-content;
  max-width: 204px;
}
#company-info #group ul li .txt {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#company-info #group ul li .txt p {
  font-size: 25px;
  font-weight: var(--fw-bold);
}
#company-info #group ul li .txt .more {
  transform: scale(0.7);
  transform-origin: top left;
  left: 30px;
}

#company-info #access .detail {
  margin-bottom: 60px;
}
#company-info #access .detail p {
  font-size: 20px;
  line-height: 2;
}
#company-info #access .detail p a {
  display: inline-block;
  color: var(--color_primary_wh);
  text-decoration: underline;
  margin-left: 30px;
}
#company-info #access .map-wrap iframe {
  width: 100%;
  max-height: 650px;
  min-height: 400px;
  height: 25vw;
  filter: grayscale(100%);
}
#company-info #access .more {
  margin-top: 60px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 1550px) {
  #company-info #our-team ul li .detail .name {
    font-size: 22px;
  }
}
@media (max-width: 1350px) {
  #company-info #greeting .item {
    display: block;
  }
  #company-info #greeting .item .photo {
    width: 100%;
    max-width: 600px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 60px;
  }
  #company-info #greeting .item .tips {
    width: 100%;
    max-width: 600px;
    margin-right: auto;
    margin-left: auto;
  }
  #company-info #our-team ul li {
    width: 48%;
    margin-bottom: 60px;
  }
  #company-info #group ul {
    display: block;
  }
  #company-info #group ul li {
    width: 100%;
    max-width: 600px;
    margin-right: auto;
    margin-left: auto;
  }
  #company-info #group ul li + li {
    margin-top: 60px;
  }
}
@media (max-width: 1000px) {
  #company-info {
    width: 100%;
    margin-top: 0;
  }
  #company-info #group .tips {
    display: block;
  }
  #company-info #group .tips p {
    width: 100%;
  }
  #company-info #group ul li {
    width: 100%;
    max-width: 600px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (max-width: 768px) {
  #company-info {
    padding-top: 85px;
    padding-bottom: 100px;
    margin-bottom: 100px;
  }
  #page-company .sub-ttl {
    font-size: 20px;
    margin-bottom: 65px;
  }
  #company-info #greeting .item .tips h3 {
    font-size: 26px;
    margin-top: 0;
    margin-bottom: 20px;
  }
  #company-info #greeting .item .tips .txt {
    font-size: 15px;
    line-height: 1.6;
    padding-bottom: 40px;
    margin-bottom: 20px;
  }
  #company-info #greeting .item .tips .name {
    font-size: 22px;
  }
  #company-info #greeting .item .tips .name .position {
    font-size: 14px;
  }
  #company-info #greeting .item .tips .name .kana {
    font-size: 14px;
    margin-left: 40px;
    vertical-align: 2px;
  }
  #company-info .box + .box {
    margin-top: 110px;
  }
  #company-info #our-team .sub-ttl {
    margin-bottom: 30px;
  }
  #company-info #our-team .tips {
    margin-bottom: 40px;
  }
  #company-info #our-team .tips p {
    font-size: 15px;
    line-height: 1.6;
  }
  #company-info #our-team ul li {
    width: 100%;
  }
  #company-info #outline {
    margin-top: 60px;
  }
  #company-info #outline .table dl {
    display: block;
  }
  #company-info #outline .table dl::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    background: url(img/common/pc/u-border.png) center;
    background-size: cover;
    opacity: 0.5;
  }
  #company-info #outline .table dl dt {
    font-size: 16px;
    opacity: 0.5;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 0;
  }
  #company-info #outline .table dl dd {
    width: 100%;
    font-size: 15px;
    padding-top: 0px;
  }
  #company-info #outline .table dl dd a {
    margin-left: 0;
    transform: scale(0.8);
    transform-origin: left;
    margin-bottom: 10px;
    margin-top: 5px;
  }
  #company-info #group .tips {
    margin-bottom: 50px;
  }
  #company-info #group .tips h3 {
    width: 100%;
    font-size: 24px;
    margin-bottom: 25px;
  }
  #company-info #group .tips p {
    font-size: 15px;
    line-height: 1.6;
  }
  #company-info #group ul li + li {
    margin-top: 40px;
  }
  #company-info #group ul li .photo {
    margin-bottom: 20px;
  }
  #company-info #group ul li .photo img {
    max-width: 125px;
  }
  #company-info #group ul li .txt p {
    font-size: 20px;
  }
  #company-info #group ul li .txt .more {
    left: 17px;
    top: 4px;
  }
  #company-info #access .detail {
    margin-bottom: 45px;
  }
  #company-info #access .detail p {
    font-size: 15px;
  }
  #company-info #access .detail p a {
    margin-left: 0;
  }
  #company-info #access .more {
    margin-top: 40px;
  }
}

/* flow --------------- */

#page-flow .in-page-link {
  opacity: 1 !important;
}
#page-flow .in-page-link ul li a {
  padding-right: 45px;
  position: relative;
}
#page-flow .in-page-link ul li a .arrow {
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  width: 14px;
  height: 3px;
  margin: auto 0;
  right: 15px;
  background-color: var(--color_theme01);
  z-index: 2;
  transition: var(--transition);
}
#page-flow .in-page-link ul li a .arrow::before,
#page-flow .in-page-link ul li a .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1.5px);
  right: -1px;
  width: 10px;
  height: 3px;
  background-color: var(--color_theme01);
  transform-origin: calc(100% - 1.5px) 50%;
  transition: var(--transition);
}
#page-flow .in-page-link ul li a .arrow::before {
  transform: rotate(45deg);
}
#page-flow .in-page-link ul li a .arrow::after {
  transform: rotate(-45deg);
}
#page-flow .in-page-link ul li .is-active .arrow,
#page-flow .in-page-link ul li .is-active .arrow::before,
#page-flow .in-page-link ul li .is-active .arrow::after,
#page-flow .in-page-link ul li a:hover .arrow,
#page-flow .in-page-link ul li a:hover .arrow::before,
#page-flow .in-page-link ul li a:hover .arrow::after {
  background: var(--color_primary_wh);
}

.change-btn-box {
  margin-bottom: 100px;
  max-width: 1000px;
}
.change-btn-box ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.change-btn-box ul li {
  width: 48%;
}
.change-btn-box ul li a {
  display: block;
  font-size: 22px;
  color: var(--color_theme01);
  background: var(--color_primary_wh);
  font-weight: var(--fw-bold);
  line-height: 1;
  padding: 25px 5px;
  border-radius: 50px;
  text-align: center;
}
.change-btn-box ul li .is-active {
  color: var(--color_primary_wh);
  background: var(--color_theme01);
}

#flow-wrap .flow-box {
  max-width: 1550px;
  margin-left: auto;
  border-top: 1px solid var(--color_primary_bl);
  padding-top: 50px;
}
#flow-wrap .flow-box + .flow-box {
  margin-top: 200px;
}
#flow-wrap .flow-box .flow-ttl {
  margin-bottom: 100px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#flow-wrap .flow-box .flow-ttl .num {
  width: 200px;
  font-size: 88px;
  line-height: 0.75;
}
#flow-wrap .flow-box .flow-ttl .num span {
  font-size: 20px;
  font-weight: var(--fw-bold);
  vertical-align: top;
  margin-right: 20px;
}
#flow-wrap .flow-box .flow-ttl h3 {
  width: calc(100% - 400px);
  font-size: 20px;
  font-weight: var(--fw-bold);
  color: var(--color_theme01);
}
#flow-wrap .flow-box .flow-ttl h3 span {
  font-size: 88px;
  color: var(--color_primary_bl);
  display: block;
  line-height: 0.8;
  margin-bottom: 10px;
}
#flow-wrap .flow-box ul {
  position: relative;
}
#flow-wrap .flow-box ul:after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  background: var(--color_primary_wh);
  top: 0;
  left: 225px;
}
#flow-wrap .flow-box ul li {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  margin-bottom: 130px;
}
#flow-wrap .flow-box ul li:last-child::after {
  content: "";
  display: block;
  width: 3px;
  height: 100%;
  position: absolute;
  background: var(--color_primary_bg);
  top: 0;
  left: 224px;
}
#flow-wrap .flow-box ul li .photo {
  border-radius: 50%;
  border: 1px solid var(--color_primary_wh);
  width: 450px;
  height: fit-content;
  position: relative;
  z-index: 2;
}
#flow-wrap .flow-box ul li .tips {
  width: calc(100% - 600px);
  padding-top: 45px;
}
#flow-wrap .flow-box ul li .tips .step {
  color: var(--color_primary_wh);
  font-size: 88px;
  width: fit-content;
  line-height: 1.1;
  margin-bottom: 22px;
}
#flow-wrap .flow-box ul li .tips .big-scale {
  font-size: 17px;
  color: var(--color_theme01);
  line-height: 1.6;
  margin-bottom: 25px;
  font-weight: var(--fw-bold);
}
#flow-wrap .flow-box ul li .tips .action {
  width: fit-content;
  font-size: 16px;
  color: var(--color_primary_wh);
  background: var(--color_primary_bl);
  line-height: 1;
  padding: 12px 21px;
  border-radius: 50px;
  margin-bottom: 15px;
}
#flow-wrap .flow-box ul li .tips .txt {
  max-width: 620px;
}
#flow-wrap .flow-box ul li .tips .txt h4 {
  font-size: var(--fs-xl);
  margin-bottom: 5px;
  font-weight: var(--fw-bold);
  line-height: 1.3;
  margin-bottom: 20px;
  padding-top: 10px;
}
#flow-wrap .flow-box ul li .tips .txt p {
  font-size: 17px;
  line-height: 1.8;
  letter-spacing: 0.3px;
}
#flow-wrap .flow-box ul li .tips .txt .caution {
  font-size: 11px;
  margin-top: 10px;
  display: block;
}
#flow-wrap .flow-box ul li .tips .scale {
  margin-top: 50px;
}
#flow-wrap .flow-box ul li .tips .scale .item {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 5px;
  padding: 30px;
}
#flow-wrap .flow-box ul li .tips .scale .item + .item {
  margin-top: 5px;
}
#flow-wrap .flow-box ul li .tips .scale .item h5 {
  font-size: 17px;
  color: var(--color_theme01);
  line-height: 1.6;
  margin-bottom: 17px;
  font-weight: var(--fw-bold);
}
#flow-wrap .flow-box ul li .tips .scale .item p {
  font-size: 15px;
  line-height: 1.6;
}
@media (max-width: 1000px) {
  .change-btn-box ul li a {
    font-size: 17px;
  }
  #flow-wrap .flow-box ul li .photo {
    width: 360px;
  }
  #flow-wrap .flow-box ul:after {
    left: 175px;
  }
  #flow-wrap .flow-box ul li .tips {
    width: calc(100% - 430px);
  }
}
@media (max-width: 768px) {
  #page-flow .lower-ttl h2 {
    font-size: clamp(36px, 8vw, 60px);
  }
  #page-flow .lower-tips {
    position: relative;
    padding-top: 110px;
  }
  #page-flow .in-page-link {
    position: absolute;
    top: 0;
    left: 0;
    bottom: inherit;
    transform: translateX(0);
    will-change: transform;
    transition: transform 0.4s ease;
  }
  #page-flow .in-page-link.is-hidden {
    transform: translateX(calc(-100% - 25px));
  }
  #page-flow .in-page-link.pin-fixed {
    position: fixed;
    top: 80px;
    bottom: auto;
    z-index: 900;
  }
  #page-flow .in-page-link.no-transition {
    transition: none !important;
  }
  #page-flow .lower-tips .tggle-btn {
    width: 32px;
    height: 32px;
    background: var(--color_primary_bl);
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    right: -40px;
  }
  #page-flow .lower-tips .tggle-btn .arrow {
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 17px;
    height: 3px;
    margin: auto;
    background: none;
    z-index: 2;
    transform: rotate(180deg);
  }
  #page-flow .lower-tips .is-hidden .tggle-btn .arrow {
    transform: rotate(0);
  }
  #page-flow .lower-tips .tggle-btn .arrow::before,
  #page-flow .lower-tips .tggle-btn .arrow::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    right: 3.5px;
    width: 9px;
    height: 2px;
    background-color: var(--color_primary_wh);
    transform-origin: calc(100% - 1px) 50%;
  }
  #page-flow .lower-tips .tggle-btn .arrow::before {
    transform: rotate(45deg);
  }
  #page-flow .lower-tips .tggle-btn .arrow::after {
    transform: rotate(-45deg);
  }

  .change-btn-box {
    margin-bottom: 50px;
  }
  .change-btn-box ul {
    display: block;
  }
  .change-btn-box ul li {
    width: 100%;
  }
  .change-btn-box ul li a {
    font-size: 14px;
    padding: 18px 5px;
  }
  .change-btn-box ul li + li {
    margin-top: 20px;
  }

  #flow-wrap .flow-box {
    padding-top: 30px;
  }
  #flow-wrap .flow-box .flow-ttl {
    margin-bottom: 50px;
  }
  #flow-wrap .flow-box .flow-ttl .num {
    width: 70px;
    height: 70px;
    font-size: 35px;
    text-align: center;
    background: var(--color_primary_bl);
    color: var(--color_primary_wh);
    border-radius: 50%;
    padding-left: 4px;
  }
  #flow-wrap .flow-box .flow-ttl .num span {
    font-size: 12px;
    display: block;
    margin-right: 0;
    margin-bottom: 5px;
    padding-top: 13px;
    font-weight: var(--fw-regular);
    margin-left: -3px;
  }
  #flow-wrap .flow-box .flow-ttl h3 {
    width: calc(100% - 90px);
    font-size: 18px;
    padding-top: 8px;
  }
  #flow-wrap .flow-box .flow-ttl h3 span {
    font-size: 40px;
    margin-bottom: 0px;
    margin-bottom: -3px;
    margin-left: -2px;
  }
  #flow-wrap .flow-box ul:after {
    left: 55px;
  }
  #flow-wrap .flow-box ul li {
    margin-bottom: 50px;
  }
  #flow-wrap .flow-box ul li .photo {
    width: 110px;
  }
  #flow-wrap .flow-box ul li .tips {
    width: calc(100% - 130px);
    padding-top: 0px;
  }
  #flow-wrap .flow-box ul li .tips .step {
    font-size: 43px;
    margin-bottom: 20px;
    line-height: 1;
  }
  #flow-wrap .flow-box ul li .tips .u-line-wh:after {
    bottom: 0px;
  }
  #flow-wrap .flow-box ul li .tips .action {
    padding: 7px 13px;
    font-size: 14px;
    margin-bottom: 14px;
  }
  #flow-wrap .flow-box ul li .tips .txt h4 {
    line-height: 1.3;
    margin-bottom: 15px;
    font-size: 21px;
  }
  #flow-wrap .flow-box ul li .tips .txt p {
    font-size: 14px;
    line-height: 1.8;
  }
  #flow-wrap .flow-box ul li .tips .scale {
    margin-top: 25px;
  }
  #flow-wrap .flow-box ul li .tips .scale .item {
    padding: 20px 15px;
  }
  #flow-wrap .flow-box ul li .tips .scale .item h5 {
    font-size: 15px;
    margin-bottom: 10px;
  }
  #flow-wrap .flow-box ul li .tips .scale .item p {
    font-size: 13px;
  }
  #flow-wrap .flow-box ul li .tips .big-scale {
    font-size: 15px;
  }
  #flow-wrap .flow-box ul li:last-child::after {
    left: 54px;
  }
}

/* estate --------------- */

#land-list {
  padding-bottom: 80px;
  max-width: 1870px;
}
#land-list .land-list-ttl {
  background: var(--color_primary_wh);
  line-height: 1.3;
  border-radius: 3px;
  position: relative;
  padding-top: 17px;
  padding-bottom: 17px;
  padding-left: 25px;
  font-weight: var(--fw-bold);
  margin-bottom: 105px;
  font-size: 30px;
}
#land-list .land-list-ttl::before {
  content: "";
  display: block;
  width: 5px;
  height: 60%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin-top: auto;
  margin-bottom: auto;
  background: var(--color_theme01);
}
#land-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.24%;
}
#land-list ul li {
  width: 24.07%;
  margin-bottom: 100px;
}
#land-list ul li .num {
  line-height: 1;
  font-size: 20px;
  margin-bottom: 15px;
}
#land-list ul li .num span {
  font-size: 30px;
}
#land-list ul li a {
  display: block;
}
#land-list ul li a .photo {
  height: 23vw;
  max-height: 440px;
  border-radius: 3px;
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
}
#land-list ul .sold-out .photo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  background: url(img/estate/pc/sold-out.png) center;
  background-size: cover;
  z-index: 2;
}
#land-list ul li .photo::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--bg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.6s ease;
  z-index: 0;
}
#land-list ul li a:hover .photo::after {
  transform: scale(1.08);
}

#land-list ul li a .land-ttl {
  font-size: var(--fs-l);
  margin-bottom: 5px;
  font-weight: var(--fw-bold);
  line-height: 1.3;
}
#land-list ul li a .hashtag p {
  color: #c86000;
  font-size: 17px;
}
#land-list ul li a .hashtag .no-tag {
  opacity: 0;
}
#land-list ul li a .price {
  margin-top: 25px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-top: 1px solid var(--color_primary_bl);
  font-weight: var(--fw-bold);
}
#land-list ul li a .price p {
  width: calc(100% - 50px);
  font-size: 17px;
}
#land-list ul li a .price p span {
  font-size: var(--fs-l);
}
#land-list ul li a .price .more-btn {
  width: 40px;
  height: 40px;
  margin-top: -2px;
  transition: none;
}
#land-list ul li a .price .more-btn .arrow {
  transition: none;
}
#land-list ul li a:hover .price .more-btn {
  background: var(--color_theme01);
}
#land-list ul li a:hover .price .more-btn .arrow {
  background: var(--color_primary_wh);
}
#land-list ul li a:hover .more-btn .arrow::before,
#land-list ul li a:hover .more-btn .arrow::after {
  background: var(--color_primary_wh);
}

#estate-outro {
  margin-bottom: 200px;
}
#estate-outro h3 {
  text-align: center;
  font-weight: var(--fw-bold);
  line-height: 1.3;
  font-size: 40px;
  margin-bottom: 60px;
}
#estate-outro .more {
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 1200px) {
  #land-list ul {
    gap: 2%;
  }
  #land-list ul li {
    width: 32%;
    margin-bottom: 80px;
  }
}
@media (max-width: 1000px) {
  #land-list ul li {
    width: 49%;
    margin-bottom: 60px;
  }
}
@media (max-width: 768px) {
  #land-list {
    padding-bottom: 30px;
  }
  #land-list .land-list-ttl {
    font-size: 20px;
    padding-left: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 50px;
  }
  #land-list ul li {
    width: 100%;
    margin-bottom: 50px;
  }
  #land-list ul li .num {
    font-size: 24px;
    margin-bottom: 18px;
  }
  #land-list ul li .num span {
    font-size: 40px;
  }
  #land-list ul li a .photo {
    height: 70vw;
  }
  #land-list ul li a .hashtag p {
    font-size: 14px;
  }
  #land-list ul li a .hashtag .no-tag {
    display: none;
  }
  #land-list ul li a .price p {
    font-size: 15px;
  }
  #land-list ul li a .price .more-btn {
    width: 32px;
    height: 32px;
    margin-top: 0px;
  }
  #estate-outro {
    margin-bottom: 100px;
  }
  #estate-outro h3 {
    line-height: 1.6;
    font-size: 18px;
    margin-bottom: 30px;
  }
  #estate-outro .more {
    left: -20px;
  }
}

/* estate-single --------------- */

#land-detail {
  margin-bottom: 200px;
}
#land-detail .land-info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 45px;
}
#land-detail .land-info .num {
  font-size: clamp(100px, 10vw, 135px);
  line-height: 1;
  width: 180px;
}
#land-detail .land-info .num span {
  font-size: 15px;
  font-weight: var(--fw-bold);
  display: block;
  padding-left: 6px;
}
#land-detail .land-info .box {
  width: calc(100% - 210px);
  max-width: 1550px;
}
#land-detail .land-info .box h1 {
  font-size: clamp(45px, 10vw, 60px);
  line-height: 1.3;
  font-weight: var(--fw-bold);
  margin-top: -15px;
  margin-bottom: 8px;
}
#land-detail .land-info .box .hashtag {
  font-size: 17px;
  color: #c86000;
  margin-bottom: 4px;
}
#land-detail .land-info .box .price {
  font-size: 18px;
  font-weight: var(--fw-bold);
}
#land-detail .land-info .box .price span {
  font-size: 24px;
}
#land-detail .main-photo {
  width: 100%;
  height: 50vw;
  max-height: 900px;
  border-radius: 3px;
  margin-bottom: 130px;
}
#land-detail .selling-point {
  margin-bottom: 125px;
}
#land-detail .selling-point .selling-ttl {
  color: var(--color_primary_wh);
  font-size: clamp(110px, 14vw, 200px);
  width: fit-content;
  line-height: 1;
  margin-bottom: 130px;
}
#land-detail .selling-point .tips {
  max-width: 1550px;
  margin-right: auto;
  margin-left: auto;
  /* display: flex;
  justify-content: space-between;
  flex-wrap: wrap; */
}
/* #land-detail .selling-point .tips .catch {
  width: 550px;
  font-size: 50px;
  font-weight: var(--fw-bold);
  line-height: 1.3;
} */
#land-detail .selling-point .tips .txt {
  font-size: var(--fs-l);
  /* width: 610px; */
  width: 100%;
}
#land-detail .outline {
  max-width: 1550px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#land-detail .outline .fields {
  width: 49%;
  background: var(--color_primary_wh);
  border-radius: 3px;
  padding: 70px;
}
#land-detail .outline .fields h3 {
  font-size: 30px;
  font-weight: var(--fw-bold);
  margin-bottom: 20px;
}
#land-detail .outline .fields dl {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#land-detail .outline .fields dl + dl {
  margin-top: 15px;
}
#land-detail .outline .fields dt {
  font-size: var(--fs-m);
  font-weight: var(--fw-bold);
  width: 115px;
}
#land-detail .outline .fields dd {
  width: calc(100% - 115px);
  font-size: var(--fs-m);
}
#land-detail .outline .fields dd.price-txt {
  color: #c86000;
  font-weight: var(--fw-bold);
}
#land-detail .outline .fields dd .more {
  background: var(--color_theme01);
  color: var(--color_primary_wh);
  font-size: 16px;
  line-height: 45px;
  height: 45px;
  width: 200px;
  margin-top: 10px;
  margin-bottom: 15px;
}
#land-detail .outline .fields dd .more::after {
  width: 45px;
  height: 45px;
  right: -45px;
  background: var(--color_theme01);
}
#land-detail .outline .fields dd .more .arrow {
  right: -31px;
  background-color: var(--color_primary_wh);
}
#land-detail .outline .fields dd .more .arrow::before,
#land-detail .outline .fields dd .more .arrow::after {
  background-color: var(--color_primary_wh);
}
#land-detail .outline .fields dd .more:hover .arrow {
  right: -45px;
}
#land-detail .outline .fields dd .more:hover::after {
  right: -55px;
}
#land-detail .outline .photo {
  width: 49%;
}

#land-list.other-land {
  padding-bottom: 130px;
}
#land-list.other-land ul {
  display: flex;
  flex-wrap: nowrap;
  gap: 40px;
  padding-bottom: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  width: 90%;
  margin-left: auto;
}
#land-list.other-land ul::-webkit-scrollbar {
  display: none;
}
#land-list.other-land ul li {
  flex: 0 0 450px;
  width: 450px;
  margin-bottom: 100px;
}
#land-list.other-land ul li a .photo {
  height: 440px;
  border-radius: 3px;
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1300px) {
  #land-detail .selling-point .tips {
    display: block;
  }
  #land-detail .selling-point .tips .catch {
    width: 100%;
    font-size: 45px;
    margin-bottom: 30px;
  }
  #land-detail .selling-point .tips .txt {
    width: 100%;
  }
  #land-detail .outline {
    max-width: 900px;
    display: block;
  }
  #land-detail .outline .fields {
    width: 100%;
  }
  #land-detail .outline .photo {
    width: 100%;
    margin-top: 80px;
  }
}
@media (max-width: 1200px) {
  #land-list.other-land ul {
    gap: 32px;
  }
  #land-list.other-land ul li {
    flex: 0 0 360px;
    width: 360px;
    margin-bottom: 80px;
  }
  #land-list.other-land ul li a .photo {
    height: 340px;
  }
}
@media (max-width: 1000px) {
  #land-list.other-land ul li {
    flex: 0 0 320px;
    width: 320px;
    margin-bottom: 60px;
  }
}
@media (max-width: 768px) {
  #land-detail .land-info {
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 1px solid var(--color_primary_bl);
    border-bottom: 1px solid var(--color_primary_bl);
  }
  #land-detail .land-info .num {
    font-size: 73px;
    line-height: 0.7;
    width: 145px;
  }
  #land-detail .land-info .num span {
    font-size: 12px;
    display: inline-block;
    padding-left: 0px;
    vertical-align: top;
    padding-right: 7px;
  }
  #land-detail .land-info .box {
    width: calc(100% - 145px);
  }
  #land-detail .land-info .box .hashtag {
    line-height: 1.3;
    margin-top: -5px;
  }
  #land-detail .land-info .box .price {
    font-size: 14px;
    line-height: 1.3;
    margin-top: 15px;
  }
  #land-detail .main-photo {
    height: 60vw;
    margin-bottom: 75px;
  }
  #land-detail .sp-single-ttl {
    font-size: 25px;
    font-weight: var(--fw-bold);
    line-height: 1.3;
    margin-bottom: 25px;
  }
  #land-detail .selling-point {
    margin-bottom: 65px;
  }
  #land-detail .selling-point .selling-ttl {
    font-size: 65px;
    line-height: 0.7;
    margin-bottom: 50px;
  }
  #land-detail .selling-point .tips .catch {
    font-size: 25px;
    margin-bottom: 25px;
  }
  #land-detail .selling-point .tips .txt {
    font-size: var(--fs-m);
  }
  #land-detail .outline .fields {
    padding: 20px 25px;
  }
  #land-detail .outline .fields h3 {
    font-size: 25px;
  }
  #land-detail .outline .fields dl {
    border-top: 1px solid var(--color_border);
  }
  #land-detail .outline .fields dt {
    width: 85px;
    padding-top: 13px;
    line-height: 1.6;
  }
  #land-detail .outline .fields dd {
    width: calc(100% - 85px);
    padding-top: 13px;
    line-height: 1.6;
  }
  #land-detail .outline .fields dd .more {
    margin-bottom: 0;
    transform: scale(0.7);
    transform-origin: top left;
  }
  #land-detail .outline .photo {
    margin-top: 60px;
  }
  #land-list.other-land .side-by-side .sec-ttl {
    width: 100%;
  }
  #land-list.other-land {
    padding-bottom: 70px;
  }
  #land-list.other-land ul {
    overflow-x: inherit;
    overflow-y: inherit;
    -webkit-overflow-scrolling: none;
    display: block;
    width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;
  }

  #land-list.other-land ul li {
    width: 100%;
    margin-bottom: 50px;
  }
  #land-list.other-land ul li .num {
    font-size: 24px;
    margin-bottom: 18px;
  }
  #land-list.other-land ul li .num span {
    font-size: 40px;
  }
  #land-list.other-land ul li a .photo {
    height: 70vw;
  }
  #land-list.other-land ul li a .hashtag p {
    font-size: 14px;
  }
  #land-list.other-land ul li a .hashtag .no-tag {
    display: none;
  }
  #land-list.other-land ul li a .price p {
    font-size: 15px;
  }
  #land-list.other-land ul li a .price .more-btn {
    width: 32px;
    height: 32px;
    margin-top: 0px;
  }
}

/* example --------------- */

#case-archive {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 200px;
}
#case-filter {
  width: 321px;
}
#case-filter .filters {
  display: flex;
  flex-wrap: wrap;
}
#case-filter .filters li {
  margin-right: 10px;
  margin-bottom: 13px;
}
#case-filter .filters li:last-child {
  margin-right: 0;
}
#case-filter .filters li button {
  background: var(--color_primary_wh);
  color: var(--color_theme01);
  line-height: 1;
  padding: 15px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: var(--fw-medium);
}
#case-filter .filters li button.is-active {
  background: var(--color_theme01);
  color: var(--color_primary_wh);
}
#case-filter .sort {
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--color_primary_bl);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#case-filter .sort .sort-btn {
  width: fit-content;
  font-weight: var(--fw-medium);
}
#case-filter .sort .sort-btn.is-active {
  color: var(--color_theme01);
}
#case-archive .case-list {
  width: calc(100% - 410px);
}
#case-archive .case-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.79%;
}
#case-archive .case-list ul .case-item {
  width: 32.14%;
  margin-bottom: 60px;
}
#case-archive .case-list ul .case-item .num {
  font-size: 20px;
  margin-bottom: 10px;
}
#case-archive .case-list ul .case-item .num span {
  font-size: 30px;
}
#case-archive .case-list ul .case-item a .photo {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: clamp(250px, 20vw, 420px);
  border-radius: 3px;
  margin-bottom: 20px;
}
#case-archive .case-list ul .case-item a .photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1);
  transform-origin: center;
  transition: transform 0.6s ease;
}
#case-archive .case-list ul .case-item a:hover .photo::after {
  transform: scale(1.08);
}
#case-archive .case-list ul .case-item a .tips {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#case-archive .case-list ul .case-item a .tips .case-ttl {
  font-size: var(--fs-l);
  font-weight: var(--fw-bold);
  width: calc(100% - 140px);
  line-height: 1.3;
}
#case-archive .case-list ul .case-item a .tips .cat-tags {
  width: 130px;
  color: #c86000;
}
#case-archive .case-list ul .case-item a .tips .cat-tags p {
  line-height: 1.6;
}
@media (max-width: 1500px) {
  #case-archive .case-list ul {
    gap: 2%;
  }
  #case-archive .case-list ul .case-item {
    width: 49%;
  }
}
@media (max-width: 1300px) {
  #case-filter {
    width: 265px;
  }
  #case-filter .filters li button {
    font-size: 14px;
  }
  #case-archive .case-list {
    width: calc(100% - 350px);
  }
  #case-archive .case-list ul .case-item a .tips .case-ttl {
    font-size: 18px;
  }
}
@media (max-width: 1100px) {
  #case-filter .filters li button {
    padding: 12px;
    font-size: 12px;
  }
  #case-filter {
    width: 176px;
  }
  #case-filter .sort .sort-btn {
    font-size: 14px;
  }
  #case-archive .case-list {
    width: calc(100% - 250px);
  }
}
@media (max-width: 880px) {
  #case-archive .case-list ul .case-item {
    width: 100%;
  }
}
@media (max-width: 768px) {
  #archive-example .lower-mv {
    padding-top: 210px;
  }
  #case-archive {
    display: block;
  }
  #case-filter {
    width: 100vw;
    position: fixed;
    left: 0;
    top: 60px;
    background: rgba(255, 255, 255, 0.65);
    z-index: 10;
  }
  #case-filter .filters li {
    margin-bottom: 10px;
  }
  #case-filter .filters li:nth-child(4) {
    margin-right: 0;
  }
  .fix-box {
    position: relative;
    padding-top: 15px;
    padding-bottom: 7px;
    width: calc(100% - 40px);
    margin-right: auto;
    margin-left: auto;
    max-width: 350px;
  }
  .fix-box .more-btn {
    position: absolute;
    right: 20px;
    bottom: 12px;
    transform: rotate(-90deg);
    background: var(--color_primary_bl);
  }
  .fix-box .more-btn .arrow {
    background: var(--color_primary_wh);
  }
  .fix-box .more-btn .arrow::before,
  .fix-box .more-btn .arrow::after {
    background: var(--color_primary_wh);
  }
  .fix-box .more-btn.open-btn {
    bottom: -100px;
    transform: rotate(90deg);
    opacity: 0;
    pointer-events: none;
  }
  #case-filter .sort {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    position: absolute;
    left: 122px;
    bottom: 27px;
  }
  #case-archive .case-list {
    width: 100%;
  }
  #case-filter .sort .sort-btn {
    margin-right: 15px;
  }
  #case-filter .sort .sort-btn.is-active {
    text-decoration: underline;
  }
  #case-archive .case-list ul .case-item {
    padding-bottom: 20px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--color_primary_bl);
  }
  #case-archive .case-list ul .case-item .num span {
    font-size: 35px;
  }
  #case-archive .case-list ul .case-item a .photo {
    height: clamp(280px, 20vw, 420px);
  }
  #case-archive .case-list ul .case-item a .tips .case-ttl {
    width: calc(100% - 125px);
  }
  #case-archive .case-list ul .case-item a .tips .cat-tags {
    width: 105px;
  }
  #case-archive .case-list ul .case-item a .tips .cat-tags p {
    font-size: 12px;
  }
}

/* example-single --------------- */

#case-detail .case-info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 45px;
  padding-top: 55px;
}
#case-detail .case-info .num {
  font-size: clamp(100px, 10vw, 135px);
  line-height: 1;
  width: 180px;
}
#case-detail .case-info .num span {
  font-size: 15px;
  font-weight: var(--fw-bold);
  display: block;
  padding-left: 6px;
}
#case-detail .case-info .box {
  width: 430px;
}
#case-detail .case-info .box dl {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#case-detail .case-info .box dl dt {
  font-weight: var(--fw-bold);
  padding-top: 5px;
  padding-bottom: 5px;
  width: 80px;
  text-align: right;
  line-height: 1.7;
}
#case-detail .case-info .box dl dd {
  font-weight: var(--fw-bold);
  width: calc(100% - 100px);
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 15px;
  margin-left: 15px;
  border-left: 1px solid var(--color_primary_bl);
  font-size: 20px;
  line-height: 1.3;
}
#case-detail .case-info h1 {
  width: calc(100% - 730px);
  font-size: clamp(45px, 5vw, 60px);
  line-height: 1.3;
  font-weight: var(--fw-bold);
  margin-top: -6px;
}
#case-detail .main-photo {
  width: 100%;
  height: 50vw;
  max-height: 900px;
  border-radius: 3px;
  margin-bottom: 130px;
}
#case-detail .concept {
  margin-bottom: 150px;
}
#case-detail .big-ttl {
  color: var(--color_primary_wh);
  font-size: clamp(110px, 14vw, 200px);
  width: fit-content;
  line-height: 1;
  margin-bottom: 130px;
}
#case-detail .concept .tips {
  max-width: 1550px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#case-detail .concept .tips .catch {
  width: 550px;
  font-size: 50px;
  font-weight: var(--fw-bold);
  line-height: 1.3;
}
#case-detail .concept .tips .txt {
  font-size: var(--fs-m);
  width: calc(100% - 610px);
  line-height: 1.8;
}
.ex-customer-voice {
  background: var(--color_primary_wh);
  max-width: 1550px;
  border-radius: 3px;
  margin-bottom: 120px;
}
.ex-customer-voice .box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 30px;
}
.ex-customer-voice .box .photo {
  background: url(img/example/pc/photo-customer-voice.jpg) center;
  background-size: cover;
  position: relative;
  width: 45%;
  height: clamp(300px, 26vw, 400px);
  border-radius: 3px;
}
.ex-customer-voice .box .photo .ttl {
  width: fit-content;
  height: fit-content;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.ex-customer-voice .box .photo .ttl p {
  color: var(--color_primary_wh);
  font-size: 80px;
  line-height: 0.9;
}
.ex-customer-voice .box .photo .ttl p span {
  font-size: 27px;
  font-weight: var(--fw-bold);
  padding: 7px 6px;
  margin-left: 15px;
  vertical-align: 17px;
  border-top: 1px solid var(--color_primary_wh);
  border-bottom: 1px solid var(--color_primary_wh);
}
.ex-customer-voice .box .tips {
  width: 51%;
  position: relative;
}
.ex-customer-voice .box .tips span {
  display: block;
  background: url(img/example/pc/citation.png) center;
  background-size: cover;
  width: 38px;
  height: 29px;
  position: absolute;
}
.ex-customer-voice .box .tips .citation-left {
  top: 30px;
  left: 0;
}
.ex-customer-voice .box .tips .citation-right {
  bottom: 30px;
  right: 0;
  transform: rotate(180deg);
}
.ex-customer-voice .box .tips .txt {
  position: absolute;
  height: fit-content;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
}
.ex-customer-voice .box .tips .txt p {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
  line-height: 2;
  font-size: 17px;
}
.ex-gallery {
  margin-bottom: 150px;
}
.ex-gallery .s-photo-wrap {
  position: relative;
}
.ex-gallery .slide-items li {
  padding: 10px;
}
.ex-gallery .slick-dots {
  bottom: -60px;
}
.ex-gallery .slick-dots li button:before {
  font-family: none;
  width: 15px;
  height: 15px;
  background: var(--color_theme01);
  border-radius: 50%;
  color: rgba(0, 0, 0, 0);
}
.ex-gallery .slick-dots li.slick-active button:before {
  opacity: 1;
  color: rgba(0, 0, 0, 0);
}
.ex-gallery .slick-prev {
  z-index: 2;
}
/* .ex-gallery .slick-prev:before,
.ex-gallery .slick-next:before {
  color: var(--color_theme01);
  font-size: 30px;
  opacity: 1;
  font-family: none;
  position: absolute;
  z-index: 2;
}
.ex-gallery .slick-prev:before {
  content: "<";
  right: -100px;
}
.ex-gallery .slick-next:before {
  content: ">";
  left: -100px;
} */

.ex-youtube {
  margin-bottom: 150px;
}
.ex-youtube .youtube-wrap iframe {
  width: 100%;
  max-width: 1230px;
  height: 52vw;
  max-height: 690px;
  margin-right: auto;
  margin-left: auto;
  display: block;
}
.ex-youtube .youtube-wrap p + p {
  margin-top: 50px;
}
.ex-cg {
  margin-bottom: 150px;
}
.ex-cg .cg-wrap {
  display: flex;
  flex-wrap: wrap;
  max-width: 1550px;
  margin-right: auto;
  margin-left: auto;
}
.ex-cg .cg-wrap .photo {
  order: 2;
  width: calc(100% - 600px);
  margin-left: 150px;
}
.ex-cg.no-txt .cg-wrap .photo {
  width: 100%;
  margin-left: auto;
}
.ex-cg .cg-wrap .tips {
  order: 1;
  width: 450px;
}
.ex-cg .cg-wrap .tips .catch {
  font-weight: var(--fw-bold);
  font-size: var(--fs-xl);
  line-height: 1.3;
  margin-bottom: 40px;
}
.ex-cg .cg-wrap .tips .txt {
  font-size: 17px;
  line-height: 2;
}

#single-example #case-list {
  margin-bottom: 200px;
}
#single-example #case-list .sec-ttl-box {
  margin-bottom: 80px;
}
@media (max-width: 1350px) {
  #case-detail .case-info .box {
    width: calc(100% - 220px);
  }
  #case-detail .case-info h1 {
    width: 100%;
    margin-top: 30px;
  }
  #case-detail .concept .tips {
    display: block;
  }
  #case-detail .concept .tips .catch {
    width: 100%;
    margin-bottom: 35px;
    font-size: 40px;
  }
  #case-detail .concept .tips .txt {
    width: 100%;
  }
  .ex-customer-voice {
    max-width: 1000px;
  }
  .ex-customer-voice .box .photo {
    width: 100%;
    margin-bottom: 40px;
  }
  .ex-customer-voice .box .tips {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .ex-customer-voice .box .tips .txt {
    position: inherit;
  }
  .ex-customer-voice .box .tips .citation-left {
    top: 0;
  }
  .ex-customer-voice .box .tips .citation-right {
    bottom: 0;
  }
}
@media (max-width: 1200px) {
  .ex-cg .cg-wrap {
    display: block;
    max-width: 1000px;
  }
  .ex-cg .cg-wrap .photo {
    width: 100%;
    margin-left: 0;
  }
  .ex-cg .cg-wrap .tips {
    width: 100%;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  #case-detail .case-info {
    padding-top: 25px;
    padding-bottom: 19px;
    border-top: 1px solid var(--color_primary_bl);
    border-bottom: 1px solid var(--color_primary_bl);
    margin-bottom: 30px;
  }
  #case-detail .case-info .num {
    font-size: 73px;
    line-height: 0.7;
    width: 145px;
  }
  #case-detail .case-info .num span {
    font-size: 12px;
    display: inline-block;
    padding-left: 0px;
    vertical-align: top;
    padding-right: 7px;
  }
  #case-detail .case-info .box {
    width: calc(100% - 150px);
    margin-top: -8px;
  }
  #case-detail .case-info .box dl dt {
    text-align: left;
    font-size: 11px;
    width: 65px;
  }
  #case-detail .case-info .box dl dd {
    width: calc(100% - 75px);
    padding-left: 0;
    margin-left: 0;
    border-left: none;
    font-size: 14px;
  }
  #case-detail .case-info-ttl {
    line-height: 1.3;
    font-weight: var(--fw-bold);
    font-size: 30px;
    margin-bottom: 33px;
  }
  #case-detail .main-photo {
    height: 60vw;
    margin-bottom: 75px;
  }
  #case-detail .big-ttl {
    font-size: 65px;
    line-height: 0.7;
    margin-bottom: 50px;
  }
  #case-detail .concept {
    margin-bottom: 60px;
  }
  #case-detail .concept .tips .catch {
    font-size: 25px;
    margin-bottom: 25px;
  }
  .ex-customer-voice {
    margin-bottom: 90px;
  }
  .ex-customer-voice .box {
    padding: 20px;
    padding-bottom: 35px;
  }
  .ex-customer-voice .box .photo {
    height: 200px;
    margin-bottom: 30px;
  }
  .ex-customer-voice .box .photo .ttl p {
    font-size: 45px;
  }
  .ex-customer-voice .box .photo .ttl p span {
    font-size: 13px;
    padding: 4px 6px;
    margin-left: 11px;
    vertical-align: 9px;
  }
  .ex-customer-voice .box .tips {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .ex-customer-voice .box .tips span {
    width: 30px;
    height: 23px;
  }
  .ex-customer-voice .box .tips .txt p {
    width: 100%;
    line-height: 1.6;
    font-size: 14px;
  }
  .ex-gallery {
    margin-bottom: 60px;
  }
  .ex-gallery .slide-items li {
    padding: 6px;
  }
  .ex-gallery .slick-dots {
    bottom: -35px;
  }
  .ex-gallery .slick-dots li {
    margin: 0;
  }
  .ex-gallery .slick-dots li button:before {
    width: 8px;
    height: 8px;
  }
  .ex-youtube {
    margin-bottom: 80px;
  }
  .ex-youtube .youtube-wrap p + p {
    margin-top: 30px;
  }
  .ex-cg {
    margin-bottom: 50px;
  }
  .ex-cg .cg-wrap .tips .catch {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .ex-cg .cg-wrap .tips .txt {
    font-size: 15px;
    line-height: 1.6;
  }

  #single-example #case-list {
    margin-bottom: 100px;
  }
  #single-example #case-list .sec-ttl-box {
    width: 100%;
    margin-bottom: 35px;
  }
  #single-example .case-list .list-wrap {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
  #single-example .case-list .list-wrap ul .case + .case {
    margin-top: 50px;
  }
  #single-example .case-list .list-wrap ul li a .photo {
    height: 240px;
  }
}

/* interview --------------- */

#interview-list {
  margin-bottom: 200px;
}
#archive-interview .interview-list-ttl {
  background: var(--color_primary_wh);
  line-height: 1.3;
  border-radius: 3px;
  position: relative;
  padding-top: 17px;
  padding-bottom: 17px;
  padding-left: 25px;
  font-weight: var(--fw-bold);
  margin-bottom: 65px;
  font-size: 30px;
}
#archive-interview .interview-list-ttl::before {
  content: "";
  display: block;
  width: 5px;
  height: 60%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin-top: auto;
  margin-bottom: auto;
  background: var(--color_theme01);
}
#interview-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
#interview-list ul li {
  width: calc(33.3% - 20px);
  margin-bottom: 20px;
}
#interview-list ul li a {
  display: block;
  transition: var(--transition);
}
#interview-list ul li a .photo {
  position: relative;
  height: clamp(250px, 20vw, 380px);
  border-radius: 3px;
  overflow: hidden;
}
#interview-list ul li a .photo::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--bg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.6s ease;
  z-index: 0;
}
#interview-list ul li a:hover .photo::after {
  transform: scale(1.08);
}
#interview-list ul li a .photo .interview-category {
  position: absolute;
  top: 20px;
  left: 20px;
  color: var(--color_theme01);
  font-weight: var(--fw-black);
  background: var(--color_primary_wh);
  border-radius: 3px;
  line-height: 1;
  padding: 9px 13px;
  font-size: 17px;
  z-index: 2;
}
#interview-list ul li a .tips {
  background: var(--color_primary_wh);
  border-radius: 3px;
  padding: 22px;
  margin-top: 7px;
  transition: var(--transition);
}
#interview-list ul li a .tips .ttl-box {
  padding-bottom: 20px;
  margin-bottom: 13px;
  border-bottom: 1px solid var(--color_primary_bl);
}
#interview-list ul li a .tips .ttl-box .ttl {
  font-size: var(--fs-l);
  line-height: 1.4;
  margin-bottom: 15px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  font-weight: var(--fw-bold);
  transition: var(--transition);
}
#interview-list ul li a .tips .ttl-box .family-name {
  color: var(--color_primary_wh);
  background: var(--color_primary_bl);
  font-weight: var(--fw-bold);
  line-height: 1;
  padding: 10px 17px;
  font-size: 15px;
  border-radius: 50px;
  width: fit-content;
}
#interview-list ul li a .tips .detail-box {
  display: flex;
  flex-wrap: wrap;
}
#interview-list ul li a .tips .detail-box .composition {
  font-size: 13px;
  transition: var(--transition);
}
#interview-list ul li a .tips .detail-box .interview-day {
  font-size: 13px;
  margin-left: 20px;
  width: 170px;
  transition: var(--transition);
}
@media (max-width: 1350px) {
  #interview-list ul li a .tips .detail-box {
    justify-content: space-between;
  }
  #interview-list ul li a .tips .detail-box .composition {
    width: calc(100% - 190px);
  }
}
@media (max-width: 1200px) {
  #interview-list ul li {
    width: calc(50% - 15px);
  }
}
@media (max-width: 768px) {
  #archive-interview .interview-list-ttl {
    font-size: 20px;
    padding-left: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 50px;
  }
  #interview-list {
    margin-bottom: 100px;
  }
  #interview-list ul li {
    width: 100%;
    margin-bottom: 0;
  }
  #interview-list ul li a .photo {
    height: clamp(215px, 20vw, 380px);
  }
  #interview-list ul li a .photo .interview-category {
    top: 15px;
    left: 15px;
    padding: 7px 9px;
    font-size: 14px;
  }
  #interview-list ul li a .tips {
    margin-top: 4px;
    padding: 14px 17px;
  }
  #interview-list ul li a .tips .ttl-box {
    padding-bottom: 16px;
  }
  #interview-list ul li a .tips .ttl-box .ttl {
    white-space: inherit;
    overflow: inherit;
    text-overflow: inherit;
    margin-bottom: 12px;
  }
  #interview-list ul li a .tips .ttl-box .family-name {
    padding: 9px 14px;
    font-size: 13px;
  }
  #interview-list ul li a .tips .detail-box {
    display: block;
  }
  #interview-list ul li a .tips .detail-box .composition {
    width: 100%;
    font-weight: var(--fw-bold);
  }
  #interview-list ul li a .tips .detail-box .interview-day {
    width: 100%;
    font-weight: var(--fw-bold);
  }
}

/* single-interview --------------- */

#single-interview .lower-ttl {
  padding-bottom: 35px;
}
.data-interview {
  margin-left: 170px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 55px;
  font-weight: var(--fw-bold);
}
.data-interview .family-name {
  font-size: 24px;
}
.data-interview .other-info {
  margin-left: 45px;
}
.data-interview .other-info .composition {
  font-size: 20px;
  line-height: 1.6;
}
.data-interview .other-info .date {
  font-size: 20px;
  line-height: 1.6;
}
#interview-wrap {
  margin-bottom: 250px;
}
#interview-wrap .main-photo {
  margin-bottom: 150px;
}
#interview-wrap .int-single-content {
  max-width: 1700px;
}
#interview-wrap .int-single-content .box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
#interview-wrap .int-single-content .box + .box {
  margin-top: 150px;
}
#interview-wrap .int-single-content .box .photo {
  width: 48.23%;
}
#interview-wrap .int-single-content .box.no-photo .photo {
  display: none;
}
#interview-wrap .int-single-content .box:nth-child(even) .photo {
  order: 2;
}
#interview-wrap .int-single-content .box .tips {
  width: 47%;
}
#interview-wrap .int-single-content .box.no-photo .tips {
  width: 100%;
}
#interview-wrap .int-single-content .box:nth-child(even) .tips {
  order: 1;
}
#interview-wrap .int-single-content .box .tips .question {
  font-size: var(--fs-xxl);
  font-weight: var(--fw-bold);
  line-height: 1.3;
  margin-bottom: 50px;
  text-indent: -1.4em;
  margin-left: 1.4em;
}
#interview-wrap .int-single-content .box .tips .answer {
  font-size: var(--fs-m);
  line-height: 2;
}
#interview-wrap .int-single-content .more {
  margin-top: 100px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  left: -20px;
}
@media (max-width: 1200px) {
  #interview-wrap .int-single-content {
    max-width: 1000px;
  }
  #interview-wrap .int-single-content .box {
    display: block;
  }
  #interview-wrap .int-single-content .box + .box {
    margin-top: 120px;
  }
  #interview-wrap .int-single-content .box .photo {
    width: 100%;
    margin-bottom: 60px;
  }
  #interview-wrap .int-single-content .box .tips {
    width: 100%;
  }
}
@media (max-width: 768px) {
  #single-interview .lower-ttl h2 {
    font-size: 28px;
  }
  .data-interview {
    margin-left: auto;
    margin-bottom: 30px;
  }
  .data-interview .family-name {
    font-size: 16px;
  }
  .data-interview .other-info {
    margin-left: 30px;
  }
  .data-interview .other-info .composition {
    font-size: 14px;
  }
  .data-interview .other-info .date {
    font-size: 14px;
  }
  #interview-wrap {
    margin-bottom: 79px;
  }
  #interview-wrap .main-photo {
    margin-bottom: 60px;
  }
  #interview-wrap .int-single-content .box + .box {
    margin-top: 55px;
  }
  #interview-wrap .int-single-content .box .photo {
    width: 100%;
    margin-bottom: 30px;
  }
  #interview-wrap .int-single-content .box .tips .question {
    font-size: var(--fs-l);
    margin-bottom: 20px;
  }
  #interview-wrap .int-single-content .box .tips .answer {
    font-size: 14px;
  }
  #interview-wrap .int-single-content .more {
    margin-top: 50px;
  }
}

/* privacy-policy --------------- */

#page-privacy-policy .lower-ttl {
  max-width: fit-content;
}
#privacy-intro {
  margin-bottom: 80px;
}
#privacy-intro p {
  font-size: 22px;
  text-align: center;
}
.privacy-wrap {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 200px;
}
.privacy-wrap .policy-list ul li + li {
  margin-top: 30px;
}
.privacy-wrap .policy-list ul li h3 {
  font-weight: var(--fw-bold);
}
.privacy-wrap .policy-list ul li .privacy-contact {
  margin-top: 30px;
}
@media (max-width: 768px) {
  #privacy-intro {
    margin-bottom: 50px;
  }
  #privacy-intro p {
    font-size: 16px;
    text-align: left;
  }
  .privacy-wrap {
    margin-bottom: 100px;
  }
  .privacy-wrap .policy-list ul li p {
    font-size: 13px;
  }
}

/* disclaimer --------------- */

#page-disclaimer .lower-ttl {
  max-width: fit-content;
}
#disclaimer-intro {
  margin-bottom: 80px;
}
#disclaimer-intro p {
  font-size: 22px;
  text-align: center;
}
.disclaimer-wrap {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 200px;
}
.disclaimer-wrap .disclaimer-list ul li + li {
  margin-top: 30px;
}
.disclaimer-wrap .disclaimer-list ul li h3 {
  font-weight: var(--fw-bold);
}

@media (max-width: 768px) {
  #disclaimer-intro {
    margin-bottom: 50px;
  }
  #disclaimer-intro p {
    font-size: 16px;
    text-align: left;
  }
  .disclaimer-wrap {
    margin-bottom: 100px;
  }
  .disclaimer-wrap .disclaimer-list ul li p {
    font-size: 13px;
  }
}

/* news --------------- */

#news-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#news-filter {
  width: 290px;
  position: relative;
  order: 1;
  padding-bottom: 100px;
}
#news-filter .fix-box {
  position: relative;
}
#news-filter .filter-title {
  font-size: 30px;
  font-weight: var(--fw-bold);
  margin-bottom: 20px;
  border-top: 1px solid var(--color_primary_bl);
  padding-top: 20px;
}

#news-filter .archive-list {
  margin-bottom: 40px;
}
#news-filter .archive-list > li {
  margin-bottom: 5px;
}
#news-filter .archive-link {
  display: flex;
  align-items: center;
  gap: 15px;
  background: transparent;
  color: var(--color_theme01);
  line-height: 1;
  padding: 5px 0;
  font-size: 18px;
  font-weight: var(--fw-bold);
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
  width: fit-content;
}
#news-filter .archive-link .arrow-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color_primary_wh);
  transition: var(--transition);
  flex-shrink: 0;
}
#news-filter .archive-link .arrow-icon::before {
  content: "";
  position: relative;
  display: block;
  width: 14px;
  height: 2.5px;
  background-color: var(--color_theme01);
  transition: var(--transition);
}
#news-filter .archive-link .arrow-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 11px;
  width: 10px;
  height: 2.5px;
  background-color: var(--color_theme01);
  transform: translateY(-50%) rotate(45deg);
  transform-origin: right center;
  transition: var(--transition);
}
#news-filter .archive-link .arrow-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--color_theme01);
  transition: var(--transition);
  flex-shrink: 0;
  top: 0.5px;
}
#news-filter .archive-link .arrow-wrapper .arrow-line {
  position: relative;
  display: block;
  width: 11px;
  height: 2.5px;
  background-color: var(--color_primary_wh);
  transition: var(--transition);
}
#news-filter .archive-link .arrow-wrapper .arrow-line::before,
#news-filter .archive-link .arrow-wrapper .arrow-line::after {
  content: "";
  position: absolute;
  right: -1px;
  width: 8px;
  height: 2.5px;
  background-color: var(--color_primary_wh);
  transform-origin: right center;
  transition: var(--transition);
}
#news-filter .archive-link .arrow-wrapper .arrow-line::before {
  top: 1px;
  transform: rotate(45deg);
}
#news-filter .archive-link .arrow-wrapper .arrow-line::after {
  bottom: 1px;
  transform: rotate(-45deg);
}
#news-filter .archive-link:hover {
  opacity: 0.7;
}
#news-filter .archive-year {
  border-bottom: none;
}
#news-filter .year-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  background: transparent;
  border: none;
  font-size: 20px;
  font-weight: var(--fw-bold);
  padding: 5px 0;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
  text-align: left;
}
#news-filter .year-btn:hover,
#news-filter .year-btn.is-active {
  color: var(--color_theme01);
}
#news-filter .year-btn .arrow-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--color_primary_wh);
  transition: var(--transition);
  flex-shrink: 0;
  top: 0.5px;
}
#news-filter .year-btn .arrow-wrapper .arrow-line {
  position: relative;
  display: block;
  width: 11px;
  height: 2.5px;
  background-color: var(--color_theme01);
  transition: var(--transition);
}
#news-filter .year-btn .arrow-wrapper .arrow-line::before,
#news-filter .year-btn .arrow-wrapper .arrow-line::after {
  content: "";
  position: absolute;
  right: -1px;
  width: 8px;
  height: 2.5px;
  background-color: var(--color_theme01);
  transform-origin: right center;
  transition: var(--transition);
}
#news-filter .year-btn .arrow-wrapper .arrow-line::before {
  top: 1px;
  transform: rotate(45deg);
}
#news-filter .year-btn .arrow-wrapper .arrow-line::after {
  bottom: 1px;
  transform: rotate(-45deg);
}
#news-filter .year-btn.is-active .arrow-wrapper {
  background-color: var(--color_theme01);
  transform: rotate(90deg);
}
#news-filter .year-btn.is-active .arrow-line,
#news-filter .year-btn.is-active .arrow-line::before,
#news-filter .year-btn.is-active .arrow-line::after {
  background-color: var(--color_primary_wh);
}
#news-filter .month-list {
  padding-left: 45px;
  margin-top: 5px;
  margin-bottom: 20px;
  display: none;
}

#news-filter .month-list li {
  margin-bottom: 3px;
}

#news-filter .month-link {
  display: inline-block;
  color: var(--color_primary_bl);
  font-size: 18px;
  font-weight: var(--fw-medium);
  transition: all 0.3s;
  text-decoration: none;
  background: transparent;
  line-height: 1.3;
}

#news-filter .month-link:hover,
#news-filter .month-link.is-active {
  color: var(--color_theme01);
}

#news-filter .filters li + li {
  margin-top: 10px;
}
#news-filter .filters li:first-child .filter-link {
  display: none;
}
#news-filter .filters li .filter-link {
  display: block;
  background: var(--color_primary_wh);
  color: var(--color_theme01);
  line-height: 1;
  padding: 15px 20px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: var(--fw-medium);
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
  width: fit-content;
}
#news-filter .filters li .filter-link.is-active {
  background: var(--color_theme01);
  color: var(--color_primary_wh);
}
#news-filter .filters li .filter-link:hover {
  background: var(--color_theme01);
  color: var(--color_primary_wh);
}

#news-wrap .news-list {
  width: calc(100% - 400px);
  max-width: 1640px;
  padding-bottom: 200px;
  order: 2;
}
#news-wrap .news-list ul li {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid #aaa;
}
#news-wrap .photo {
  width: 450px;
  border-radius: 5px;
  min-height: 270px;
}
#news-wrap .photo.no-photo {
  background: url(img/common/pc/no-photo.jpg) center;
  background-size: cover;
}
#news-wrap .tips {
  width: calc(100% - 520px);
}
#news-wrap .news-category {
  color: var(--color_primary_wh);
  background: var(--color_theme01);
  font-size: 17px;
  padding: 10px 20px;
  border-radius: 50px;
}
#news-wrap .date {
  margin-left: 20px;
  color: var(--color_theme01);
  font-weight: var(--fw-bold);
  display: inline;
  font-size: 20px;
}
#news-wrap .news-ttl {
  font-weight: var(--fw-bold);
  font-size: var(--fs-xl);
  margin-top: 55px;
  margin-bottom: 25px;
  line-height: 1.4;
  display: block;
  transition: var(--transition);
}
#news-wrap .news-ttl:hover {
  color: var(--color_theme01);
}
#news-wrap .more-simple {
  margin-left: auto;
}

.news-pagination {
  margin-top: 80px;
  text-align: center;
}
.pagination-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: helvetica-neue-lt-pro, sans-serif;
  font-weight: var(--fw-bold);
  font-size: var(--fs-m);
}
.pagination-first,
.pagination-last,
.pagination-prev,
.pagination-next,
.pagination-wrapper a,
.pagination-wrapper .current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 50px;
  padding: 0 12px;
  text-decoration: none;
  border-radius: 50%;
  color: var(--color_primary_bl);
  transition: all 0.3s;
}
.pagination-first,
.pagination-last {
  border-radius: 20px;
}
.pagination-prev,
.pagination-next {
  background-color: var(--color_primary_wh);
}
.pagination-prev:hover,
.pagination-next:hover {
  background-color: var(--color_theme01);
  color: var(--color_primary_wh);
}
.pagination-prev {
  margin-right: 10px;
}
.pagination-next {
  margin-left: 10px;
}
.pagination-wrapper .current {
  color: var(--color_theme01);
}
.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}
.arrow-left,
.arrow-right {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}
.arrow-left {
  transform: rotate(-135deg);
  margin-right: -3px;
}
.arrow-right {
  transform: rotate(45deg);
  margin-left: -3px;
}

@media (max-width: 1500px) {
  #news-filter {
    width: 235px;
  }
  #news-wrap .news-list {
    width: calc(100% - 330px);
  }
}
@media (max-width: 1270px) {
  #news-wrap .photo {
    width: 350px;
    max-height: 240px;
    min-height: inherit;
  }
  #news-wrap .tips {
    width: calc(100% - 400px);
  }
  #news-wrap .news-ttl {
    font-size: var(--fs-l);
    margin-top: 50px;
  }
}
@media (max-width: 1080px) {
  #news-wrap {
    display: block;
  }
  #news-wrap .news-list {
    width: 100%;
    padding-bottom: 100px;
  }
  #news-filter {
    width: 100%;
  }
  #news-filter .fix-box {
    display: flex;
  }
  #news-filter .fix-box .box + .box {
    margin-left: 60px;
  }
}
@media (max-width: 768px) {
  #news-wrap .news-list ul li {
    display: block;
  }
  #news-wrap .photo {
    width: 100%;
    height: 200px;
    margin-bottom: 30px;
  }
  #news-wrap .tips {
    width: 100%;
  }
  #news-wrap .news-list {
    padding-bottom: 70px;
  }
  #news-wrap .news-list ul li {
    margin-bottom: 30px;
    padding-bottom: 35px;
    border-bottom: none;
  }
  #news-wrap .news-category {
    padding: 6px 14px;
  }
  #news-wrap .news-ttl {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .news-pagination {
    margin-top: 40px;
  }
  .pagination-first,
  .pagination-last,
  .pagination-prev,
  .pagination-next,
  .pagination-wrapper a,
  .pagination-wrapper .current {
    min-width: 30px;
    height: 30px;
    padding: 0 6px;
    font-size: 13px;
  }
  .arrow-left,
  .arrow-right {
    width: 8px;
    height: 8px;
  }

  #news-filter .fix-box {
    display: block;
    width: 100%;
  }
  #news-filter .filter-title {
    font-size: 25px;
    margin-bottom: 15px;
    padding-top: 15px;
  }
  #news-filter .archive-link {
    font-size: 16px;
    gap: 14px;
  }
  #news-filter .year-btn {
    font-size: 17px;
  }
  #news-filter .month-link {
    font-size: 15px;
  }
  #news-filter .fix-box .box + .box {
    margin-left: auto;
  }
  #news-filter .filters li .filter-link {
    padding: 10px 15px;
    font-size: 16px;
  }
}

/* single --------------- */

.single-wrap {
  width: calc(100% - 400px);
  max-width: 1640px;
  padding-bottom: 200px;
  order: 2;
}
.single-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
.single-info .category {
  color: var(--color_primary_wh);
  background: var(--color_theme01);
  font-size: 17px;
  padding: 5px 17px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
}
.single-info .date {
  margin-left: 0;
}
.single-wrap h1 {
  font-size: clamp(24px, 3vw, 60px);
  font-weight: var(--fw-bold);
  line-height: 1.5;
  margin-bottom: 60px;
}
.single-content {
  font-size: 18px;
  line-height: 2;
  margin-bottom: 100px;
}
.single-content p {
  font-size: var(--fs-m);
  line-height: 2;
}
.single-content h2 {
  font-size: 24px;
  line-height: 1.6;
  font-weight: var(--fw-bold);
  margin-top: 60px;
  margin-bottom: 40px;
  padding-bottom: 25px;
  border-bottom: 2px solid #aaa;
}
.single-content img {
  max-width: 100%;
  height: auto;
  margin: 40px 0;
}
.single-content a {
  color: var(--color_theme01);
  font-weight: var(--fw-bold);
  word-break: break-all;
  overflow-wrap: anywhere;
  white-space: normal;
}
.post-navigation {
  margin-top: 60px;
  text-align: center;
}
.post-navigation .nav-links {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  font-family: helvetica-neue-lt-pro, sans-serif;
  font-weight: var(--fw-bold);
  font-size: var(--fs-m);
}
.post-navigation .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px; /* 既存 .nav-links の gap と整合 */
}
.post-navigation .nav-prev,
.post-navigation .nav-next,
.post-navigation .nav-first,
.post-navigation .nav-last {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 50px;
  padding: 0 12px;
  text-decoration: none;
  border-radius: 50%;
  color: var(--color_primary_bl);
  transition: all 0.3s;
}
.nav-first,
.nav-last {
  border-radius: 20px;
  min-width: auto;
  padding: 0 20px;
}
.nav-prev,
.nav-next {
  background-color: var(--color_primary_wh);
}
.nav-prev:hover,
.nav-next:hover {
  background-color: var(--color_theme01);
  color: var(--color_primary_wh);
}
.nav-prev {
  margin-right: 10px;
}
.nav-next {
  margin-left: 10px;
}
.nav-first:hover,
.nav-last:hover {
  color: var(--color_theme01);
}
.post-navigation .nav-link.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}
.post-navigation .arrow-left,
.post-navigation .arrow-right {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}
.post-navigation .arrow-left {
  transform: rotate(-135deg);
  margin-right: -3px;
}
.post-navigation .arrow-right {
  transform: rotate(45deg);
  margin-left: -3px;
}
.post-navigation .nav-link:hover .nav-prev,
.post-navigation .nav-link:hover .nav-next {
  background-color: var(--color_theme01);
  color: var(--color_primary_wh);
}
.post-navigation .nav-link:hover .nav-first,
.post-navigation .nav-link:hover .nav-last {
  color: var(--color_theme01);
}

@media (max-width: 1500px) {
  .single-wrap {
    width: calc(100% - 330px);
  }
}
@media (max-width: 1080px) {
  .single-wrap {
    width: 100%;
    padding-bottom: 100px;
  }
}
@media (max-width: 768px) {
  #news-wrap .date {
    margin-left: 0;
  }
  .single-wrap {
    padding-bottom: 70px;
  }
  .single-info {
    margin-bottom: 30px;
    gap: 15px;
  }
  .single-info .category {
    font-size: 15px;
    padding: 8px 16px;
  }
  .single-info .date {
    font-size: 16px;
  }
  .single-wrap h1 {
    font-size: 22px;
    margin-bottom: 40px;
    padding-bottom: 20px;
  }
  .single-content {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .single-content h2 {
    font-size: 17px;
    margin-top: 40px;
    margin-bottom: 20px;
  }
  .single-content p {
    font-size: 15px;
  }
  .post-navigation {
    margin-top: 30px;
  }
  .post-navigation .nav-links {
    gap: 3px;
    font-size: 13px;
  }
  .nav-first,
  .nav-last,
  .nav-prev,
  .nav-next {
    min-width: 30px;
    height: 30px;
    padding: 0 6px;
  }
  .nav-first,
  .nav-last {
    padding: 0 12px;
  }
  .post-navigation .arrow-left,
  .post-navigation .arrow-right {
    width: 8px;
    height: 8px;
  }
  .post-navigation .nav-prev,
  .post-navigation .nav-next,
  .post-navigation .nav-first,
  .post-navigation .nav-last {
    min-width: 30px;
    height: 30px;
  }
}

/* contact --------------- */

.form-wrap {
  padding-top: 60px;
  padding-bottom: 120px;
  border-top: 1px solid var(--color_primary_bl);
  max-width: 1240px;
}
.invisible-placeholder {
  display: none !important;
}
.form-wrap dl + dl {
  margin-top: 50px;
}
.form-wrap dt {
  width: 100%;
  font-size: 30px;
  font-weight: var(--fw-bold);
  position: relative;
  margin-bottom: 13px;
}
.form-wrap dt.req .req-txt {
  color: var(--color_primary_wh);
  font-weight: var(--fw-bold);
  line-height: 1;
  padding: 10px 20px;
  background: var(--color_theme01);
  border-radius: 100px;
  margin-left: 20px;
  font-size: 16px;
  vertical-align: 4px;
}
.form-wrap dt p {
  padding-top: 2px;
}
.form-wrap dd {
  width: 100%;
  font-size: 20px;
}
.form-wrap .item-message .item-wrap {
  height: 400px;
}
.form-wrap .item-wrap {
  border: 1px solid var(--color_border);
  padding: 25px;
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  border-top: 2px solid #d8b7b7;
  border-left: 2px solid #d8b7b7;
  line-height: 1.7;
}
.form-wrap .protection {
  padding-top: 35px;
  margin-bottom: 30px;
  text-align: center;
}
.form-wrap .wpcf7-acceptance .wpcf7-list-item-label {
  padding-left: 5px;
  vertical-align: -1.5px;
  font-size: 13px;
}

.form-wrap .item-subject .item-wrap {
  padding: 0;
  border: none;
  background: none;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 7px;
}
.form-wrap .item-subject .item-wrap span.wpcf7-list-item {
  margin: 0;
  display: block;
  width: calc(50% - 12.5px);
  background: rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  padding: 20px 25px;
  margin-bottom: 25px;
  font-weight: var(--fw-black);
}
.form-wrap .item-subject .wpcf7-list-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 36px;
  height: 37px;
  left: 0;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  box-shadow: none;
}
.form-wrap .item-subject .wpcf7-list-item label {
  display: inline-block;
  position: relative;
  padding-left: 50px;
  line-height: 37px;
  cursor: pointer;
}
.form-wrap .item-subject .wpcf7-list-item label .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 37px;
  background: url("img/contact/pc/contact-check-no.png") center/contain no-repeat;
  transition: background-image 0.2s ease;
}
.form-wrap .item-subject .wpcf7-list-item label input[type="checkbox"]:checked + .wpcf7-list-item-label::before {
  background-image: url("img/contact/pc/contact-check-yes.png");
}
.form-wrap .item-subject .wpcf7-list-item label input[type="checkbox"]:focus + .wpcf7-list-item-label::before {
  outline: 2px solid #999;
  outline-offset: 2px;
}
.form-wrap .item-subject .wpcf7-list-item input[type="checkbox"]:focus,
.form-wrap .item-subject .wpcf7-list-item input[type="checkbox"]:active {
  outline: none;
  box-shadow: none;
  background: transparent;
}
.form-wrap .item-subject .wpcf7-list-item label,
.form-wrap .item-subject .wpcf7-list-item .wpcf7-list-item-label {
  -webkit-tap-highlight-color: transparent;
  font-size: 20px;
}
#email-mismatch-msg {
  font-size: 18px !important;
}

.submit-wrap {
  position: relative;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  margin-top: 90px;
  margin-bottom: 50px;
  padding: 0;
}
input[type="submit"],
input[type="button"] {
  background: none;
}
#form .wpcf7 .wpcf7-submit {
  cursor: pointer;
  color: rgba(255, 255, 255, 0);
  width: 344px;
  height: 70px;
  background: url(img/common/pc/btn-submit.png) center;
  background-size: cover;
}
#form .wpcf7-spinner {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  margin-right: auto;
  margin-left: auto;
}
.contact-reCAPTCHA-txt p {
  font-size: 10px;
  text-align: center;
  letter-spacing: 1px;
  line-height: 1.6;
}
.contact-reCAPTCHA-txt p a {
  letter-spacing: 1px;
  text-decoration: underline var(--color_theme01);
  color: var(--color_theme01);
}
.contact-caution {
  margin-top: 50px;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}
.contact-caution li + li {
  margin-top: 5px;
}
.contact-caution li p {
  font-size: var(--fs-xs);
  line-height: 1.6;
  margin-left: 1.5em;
  text-indent: -1.5em;
  letter-spacing: 1px;
}
.form-wrap .wpcf7 form.sent .wpcf7-response-output {
  font-size: 16px;
  background: #46b450;
  color: var(--color_primary_wh);
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  margin-top: 50px;
}
.grecaptcha-badge {
  visibility: hidden;
}
@media (max-width: 768px) {
  .form-wrap {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .form-wrap dt {
    width: fit-content;
    max-width: inherit;
    padding-right: 20px;
    margin-bottom: 5px;
    font-size: 22px;
    margin-bottom: 8px;
  }
  .form-wrap dd {
    font-size: 15px;
  }
  .form-wrap dl + dl {
    margin-top: 37px;
  }
  .form-wrap dt.req .req-txt {
    padding: 6px 14px;
    font-size: 13px;
    margin-left: 13px;
  }
  .form-wrap .item-wrap {
    padding: 15px 13px;
  }
  .form-wrap .item-subject .item-wrap {
    display: block;
  }
  .form-wrap .item-subject .item-wrap span.wpcf7-list-item {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 12px;
  }
  .form-wrap .item-subject .wpcf7-list-item label,
  .form-wrap .item-subject .wpcf7-list-item .wpcf7-list-item-label {
    font-size: 17px;
    padding-left: 42px;
  }
  .form-wrap .item-subject .wpcf7-list-item label .wpcf7-list-item-label::before,
  .form-wrap .item-subject .wpcf7-list-item input[type="checkbox"] {
    width: 28px;
    height: 29px;
  }

  .submit-wrap {
    margin-top: 30px;
    margin-bottom: 40px;
  }
  #form .wpcf7 .wpcf7-submit {
    width: 200px;
    height: 41px;
  }
  .contact-reCAPTCHA-txt p {
    font-size: 8px;
    letter-spacing: 0.5px;
  }
  .form-wrap .wpcf7 form.sent .wpcf7-response-output {
    font-size: 12px;
    margin-top: 30px;
    padding: 10px 20px;
  }
}

/* 404 --------------- */

#page-404 .lower-ttl {
  max-width: fit-content;
}
.notfound-wrap {
  margin-bottom: 180px;
}
.notfound-wrap .caution {
  margin-bottom: 80px;
}
.notfound-wrap .caution h3 {
  font-weight: var(--fw-bold);
  text-align: center;
  font-size: 35px;
  margin-bottom: 40px;
}
.notfound-wrap .caution ul {
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 50px;
  padding-bottom: 50px;
  border-top: 1px solid var(--color_primary_wh);
  border-bottom: 1px solid var(--color_primary_wh);
}
.notfound-wrap .caution ul li {
  position: relative;
}
.notfound-wrap .caution ul li + li {
  margin-top: 20px;
}
.notfound-wrap .caution ul li::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  position: absolute;
  top: 12.5px;
  left: 0;
  border-radius: 50%;
  background: var(--color_theme01);
}
.notfound-wrap .caution ul li p {
  font-size: 20px;
  padding-left: 25px;
}
.notfound-wrap .tips {
  text-align: center;
}
.notfound-wrap .tips p {
  margin-bottom: 50px;
  font-size: 16px;
  line-height: 2;
}
.notfound-wrap .tips .more {
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 768px) {
  .notfound-wrap {
    margin-bottom: 100px;
  }
  .notfound-wrap .caution {
    margin-bottom: 40px;
  }
  .notfound-wrap .caution h3 {
    font-size: 22px;
  }
  .notfound-wrap .caution ul {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .notfound-wrap .caution ul li + li {
    margin-top: 10px;
  }
  .notfound-wrap .caution ul li p {
    font-size: 14px;
    padding-left: 18px;
  }
  .notfound-wrap .caution ul li::before {
    width: 6px;
    height: 6px;
    top: 9.5px;
  }
  .notfound-wrap .tips p {
    margin-bottom: 35px;
    font-size: 14px;
  }
}
