@charset "UTF-8";
/* ================================================= */
/* CSS Document - T&G - PET WEDDINNG 2023 */
/* ================================================= */

/* ====================================================
Common Elements
==================================================== */
:root {
  --black: #222;
  --cream: #f9f5ef;
  --gold: #edd7a4;
  /* --gold2: #c1a25b; */
  --gold2: #cab67d;
  --pink: #bf3c69;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  /* scroll-behavior: smooth; */
}
body {
  margin: 0;
  padding: 0;
  color: var(--black);
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

a, button {
  color: var(--black);
  text-decoration: none;
  cursor: pointer;
  transition: all 400ms;
}
a:hover {
  color: var(--pink);
  text-decoration: none;
  opacity: 0.75;
  transition: all 400ms;
}
a.btn {
  display: inline-block;
  background-color: var(--gold2);
  background-image: url(../img/icon_arrow-r.svg);
  background-size: 0.4em;
  background-repeat: no-repeat;
  background-position: 94%,50%;
  border-radius: 2em;
  margin-top: 1em;
  padding: 1em 2em 1em 1.5em;
  color: #fff;
  font-size: min(3.725vw, 18px);
  font-weight: 500;
  line-height: 1;
  box-shadow: 1px 2px 2px rgba(140, 110, 30, .1)
}
a.btn:hover {
  background-color: #947828;
}

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

h1,h2,h3,h4 {
  margin: 0 0 1em;
  font-weight: 500;
}
p:not(:last-child) {
  margin: 0 0 1em;
}
p:last-child {
  margin: 0 0 0;
}

.serif {
  font-family: 'Hiragino Mincho Pro', '游明朝', 'Yu Mincho', YuMincho, serif;
}
.hd {
  font-size: min(1.4em, 40px);
}

.center {
  text-align: center;
}
.left {
  text-align: left;
}
.right {
  text-align: right;
}

@media screen and (max-width: 767px) {
  body {
     font-size: 1.3rem;
  }
  img {
    width: 100%;
  }
}

/* Breakpoints */
@media screen and (min-width: 768px) {
  .pc_hide {
     display: none;
  }
}
@media screen and (max-width: 767px) {
  .sp_hide {
     display: none;
  }
}

/* Animation */
.fade_in {
  opacity: 0;
  transform: translate(0, 10px);
  transition: all .8s ease;
  animation-delay: calc(0.15s + 0.1s * var(--index)), calc(0.1s * var(--index));
  animation-iteration-count: 1;
}

.fade_in.animate__animated {
  transform: translate(0, 0);
}


/* ==================================================
Base Layout
==================================================== */
header {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: #fff;
  z-index: 0;
}
header::before {
  content: '';
  position: absolute;
  top: -5%;
  bottom: -5%;
  left: -5%;
  right: -5%;
  width: 120%;
  height: 120%;
  background-image: url(../img/fv.jpg);
  background-position: 50%;
  filter: blur(20px) brightness(1);
  opacity: 0.75;
  z-index: -1;
}
header .header_inner {
  max-width: 1100px;
  margin: auto;
}
header .fv {
  position: relative;
  z-index: 0;
}

header .fade_in {
  filter: blur(10px) brightness(3);
  transform: scale(1.1) translate(0,0);
}
header .fade_in.animate__animated {
  filter: blur(0) brightness(1);
  transform: scale(1) translate(0,0);
  transition: all 2s cubic-bezier(0.3, 0.5, 0.6, 1);
}


footer {
  display: flex;
}
footer .footer_inner {
  width: 100%;
  font-family: serif;
  text-align: center;
}
footer .footer_inner .pagetop {
  width: 100%;
  padding: 1em;
  background: #fff;
}
footer .footer_inner ol.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  padding: 0 2em;
  line-height: 1;
}
footer .footer_inner ol.breadcrumb li:not(:last-of-type)::after {
  content: "›";
  margin: 0 .5em;
  color: #777;
  font-size: 1.6em;
}
footer .footer_inner .copyrights {
  background: var(--black);
  width: 100%;
  padding: 2em 0 7em;
  color: #fff;
  font-size: min(2.725vw, 12px);
}


main {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 400;
  letter-spacing: 0.024em;
}

.container {
  background: var(--cream);
  width: 100%;
  font-size: 1em;
  line-height: 1.8em;
  position: relative;
  overflow: hidden;
}
.container .inner {
  position: relative;
  max-width: 1000px;
  margin: auto;
}
.container .row {
  position: relative;
}
.container h2 {
  font-size: min(5.725vw, 36px);
}
.container p {
  font-size: min(3.725vw, 18px);
}

@media screen and (max-width: 767px) {
  .container {
    width: 100%;
    font-size: min(3.257vw, 24px);
  }
  .container .inner {
    padding: 0;
  }
  .container h2 {
    font-size: min(5.725vw, 36px);
  }
  .container p {
    font-size: min(3.525vw, 16px);
  }
}


.to_next {
  position: relative;
  z-index: 2;
  top: 0;
  height: 25vw;
}
.to_next::before {
  position: absolute;
  content: '';
  width: 1px;
  height: 5vw;
  background: var(--black);
  top: -8vw;
  left: 50%;
  z-index: 1;
}
.to_next.fade_in.animate__animated::before {
  height: 35vw;
  transition: all 1s ease;
}
@media screen and (max-width: 767px) {
  .to_next {
    height: 50vw;
  }
  .to_next::before {
    height: 10% !important;
  }
  .to_next.fade_in.animate__animated::before {
    height: 130% !important;
    transition: all 1s ease;
  }
  .reasons_hd + .to_next.fade_in.animate__animated::before {
    height: 120% !important;
    top: -5vw;
    transition: all 1s ease;
  }
}

.ank_link {
  width: 100%;
  margin: 10% 0 0;
  padding-right: 1em;
  text-align: right;
}
.ank_link a {
  position: relative;
  display: inline-block;
  height: 3em;
  font-size: min(2.275vw, 0.84em);
}
.ank_link a::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 2em;
  height: 0;
  transform: translate(-50%, 0);
  border-style: solid;
  border-right: 0.5em solid transparent;
  border-left: 0.5em solid transparent;
  border-top: 0.7em solid var(--black);
  border-bottom: 0;
}
.ank_link a:hover, .ank_link a:active {
  color: var(--black);
}
@media screen and (max-width: 767px) {
  .ank_link {
    margin: 15% 0 0;
  }
  .ank_link a {
    font-size: min(2.275vw, 0.84em);
  }
  .ank_link a::after {
    top: 2.5em;
    border-right: 1.5vw solid transparent;
    border-left: 1.5vw solid transparent;
    border-top: 2vw solid var(--black);
  }
}

/* ==================================================
Section Contents
==================================================== */
#lead {
  background-color: #fff;
  padding: 4em 1em;
  text-align: center;
}
#lead h2 {
  margin-bottom: 2em;
  font-size: 1.4em;
  line-height: 1.6em;
}
#lead p {
  margin-bottom: 2em;
}

#lead .lead_imgs {
  position: relative;
  max-width: 1000px;
  height: 92vw;
  max-height: 960px;
  margin: auto;
}
#lead .lead_img_01 {
  position: absolute;
  top: 0;
  left: 0;
  width: 49%;
}
#lead .lead_img_02 {
  position: absolute;
  top: 15%;
  right: 0;
  width: 50%;
}
#lead .lead_img_03 {
  position: absolute;
  top: 54%;
  left: 4%;
  width: 45%;
}


#reasons {
  background-color: var(--cream);
}
.reasons_border {
  position: relative;
  text-align: center;
  font-size: 2em;
  background: #fff;
  z-index: 2;
}
.reasons_border::after {
  position: absolute;
  top: 0.5em;
  left: 5%;
  content: '';
  width: 90%;
  height: 1px;
  background: var(--black);
}

.reasons_hd {
  position: relative;
  margin-bottom: -5%;
  padding: 3em 3em 5em;
  z-index: 1;
  overflow: hidden;
}
.reasons_hd::after {
  position: absolute;
  content: '';
  background: #fff;
  width: 160%;
  height: 160%;
  bottom: 0;
  left: -30%;
  border-radius: 100%;
  z-index: -1;
}
.reasons_hd + .to_next::before {
  height: 5vw;
  top: 2vw;
}
.reasons_hd + .to_next.fade_in.animate__animated::before {
  height: 25vw;
  top: 2vw;
  transition: all 1s ease;
}
.reasons_hd img {
  width: 90%;
  max-width: 400px;
  margin: auto;
  display: block;
}

@media screen and (max-width: 768px) {
  .reasons_hd + .to_next {
    top: 0;
  }
  .reasons_hd + .to_next::before {
    height: 5vw;
    top: -5vw;
  }
  .reasons_hd + .to_next.fade_in.animate__animated::before {
    height: 120%;
    top: -5vw;
    transition: all 1s ease;
  }

  #lead .lead_imgs {
    position: relative;
    height: 130vw;
    max-height: 1000px;
  }
  #lead .lead_img_01 {
    top: 0;
    left: -17%;
    width: 70%;
  }
  #lead .lead_img_02 {
    top: 20%;
    right: -10%;
    width: 55%;
  }
  #lead .lead_img_03 {
    top: 54%;
    left: 10%;
    width: 43%;
  }
}


/* ==================================================
Section Reasons 123
==================================================== */
#reasons >[id^='reason'] {
  padding: 0 0 5%;
}
#reasons >[id^='reason'] > * {
  max-width: 1000px;
  margin: auto;
}

#reason1 .reason1_hd {
  position: relative;
  padding: 5em 2em 0;
  z-index: 1;
  overflow: hidden;
  background: #fff;
}
#reason1 .reason1_hd img {
  display: block;
  width: 100%;
  max-width: 453px;
  margin: 0 auto;
}
#reason1 .mv {
  position: relative;
  margin: 0 auto;
}
#reason1 .mv img.large {
  position: relative;
  left: 5%;
  width: 80%;
  max-width: 700px;
  margin-top: 1em;
}
#reason1 .mv .row {
  display: flex;
  width: 100%;
  margin: 1.5% 0 2em 30%;
}
#reason1 .mv img.small1 {
  width: 30%;
  margin-right: 1.5%;
}
#reason1 .mv img.small2 {
  width: 30%;
}
#reason1 .text {
  margin-left: 5%;
  padding: 2em 2em 4em;
  line-height: 2;
}

#reason1 .reason1_imgs {
  position: relative;
  height: 135vw;
  max-height: 1350px;
  z-index: 2;
}
#reason1 img.reason1_01 {
  position: absolute;
  width: 55%;
  left: 2%;
}
#reason1 img.reason1_02 {
  position: absolute;
  width: 50%;
  top: 13.8%;
  right: -8.5%;
}
#reason1 img.reason1_03 {
  position: absolute;
  width: 40%;
  top: 38%;
  left: 17%;
}
#reason1 img.reason1_04 {
  position: absolute;
  width: 35%;
  top: 60%;
  left: 3.4%;
}
#reason1 img.reason1_05 {
  position: absolute;
  width: 60%;
  top: 60%;
  right: 0;
}
#reason1 img.reason1_06 {
  position: absolute;
  width: 50%;
  top: 77%;
  left: 32%;
}

#reason1 .reason1_merit {
  position: relative;
  z-index: 1;
  margin-bottom: 4em;
}
#reason1 .reason1_merit::before {
  position: absolute;
  content: '';
  top: -30%;
  left: 0;
  width: 75%;
  height: 135%;
  background: #fff;
  z-index: -1;
}
#reason1 .merit_hd {
  padding: 2em 2em 2em;
  text-align: center;
}
#reason1 .merit_hd img {
  width: 100%;
  max-width: 450px;
}
#reason1 ul.merit_list {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  max-width: 700px;
}
#reason1 ul.merit_list li {
  list-style-type: none;
  background-image: url(../img/icon_check.svg);
  background-repeat: no-repeat;
  background-position: 0 0.2em;
  background-size: 1.5em auto;
  padding: 0 0 1.6em 2em;
  font-size: min(3.25vw, 16px);
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  #reason1 .mv img.large {
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    margin-top: 0;
  }
  #reason1 .mv .row {
    display: flex;
    width: 100%;
    margin: 0;
  }
  #reason1 .mv img.small1,
  #reason1 .mv img.small2 {
    width: 50%;
    margin: 0;
  }
  #reason1 .text {
    margin-left: 0;
  }
  #reason1 .reason1_imgs {
    height: 160vw;
  }
  #reason1 img.reason1_01 {
    width: 64%;
    left: -5%;
  }
  #reason1 img.reason1_02 {
    width: 60%;
    top: 15.2%;
    right: -22%;
  }
  #reason1 img.reason1_03 {
    width: 52%;
    top: 38%;
    left: 7%;
  }
  #reason1 img.reason1_04 {
    width: 40%;
    top: 62.5%;
    left: 0;
  }
  #reason1 img.reason1_05 {
    width: 57.2%;
    top: 62.5%;
    right: 0;
  }
  #reason1 img.reason1_06 {
    width: 50%;
    top: 78.5%;
    left: 32%;
  }
  #reason1 ul.merit_list {
    width: 86%;
  }
}


#reason2 .reason2_hd {
  position: relative;
  padding: 5em 2em 0;
  z-index: 1;
  overflow: hidden;
  background: #fff;
}
#reason2 .reason2_hd img {
  display: block;
  width: 100%;
  max-width: 453px;
  margin: 0 auto;
}
#reason2 .mv {
  position: relative;
  margin: 0 auto;
}
#reason2 .mv img.large {
  position: relative;
  left: 5%;
  width: 80%;
  max-width: 700px;
  margin-top: 1em;
}
#reason2 .mv .row {
  display: flex;
  width: 100%;
  margin: 1.5% 0 2em 30%;
}
#reason2 .mv img.small1 {
  width: 30%;
  margin-right: 1.5%;
}
#reason2 .mv img.small2 {
  width: 30%;
}
#reason2 .text {
  margin-left: 10%;
  padding: 2em 2em 4em;
  line-height: 2;
}
#reason2 .reason2_imgs {
  position: relative;
  z-index: 2;
  height: 155vw;
  max-height: 1550px;
}
.reason2_img_01 {
  position: absolute;
  top: 9.65%;
  left: 15%;
  width: 40%;
}
.reason2_img_02 {
  position: absolute;
  top: 0;
  left: 56.75%;
  width: 32%;
}
.reason2_img_03 {
  position: absolute;
  top: 34%;
  left: 20%;
  width: 75%;
}
.reason2_img_04 {
  top: 63%;
  left: 14%;
  position: absolute;
  width: 26%;
}
.reason2_img_05 {
  position: absolute;
  top: 63%;
  left: 42%;
  width: 48%;
}

#reason2 .reason2_merit {
  position: relative;
  z-index: 1;
  margin-bottom: 4em;
}
#reason2 .reason2_merit::before {
  position: absolute;
  content: '';
  top: -33%;
  right: 0;
  width: 75%;
  height: 140%;
  background: #fff;
  z-index: -1;
}
#reason2 .merit_hd {
  padding: 2em 2em 2em;
  text-align: center;
}
#reason2 .merit_hd img {
  width: 100%;
  max-width: 450px;
}
#reason2 ul.merit_list {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  max-width: 700px;
}
#reason2 ul.merit_list li {
  list-style-type: none;
  background-image: url(../img/icon_check.svg);
  background-repeat: no-repeat;
  background-position: 0 0.2em;
  background-size: 1.5em auto;
  padding: 0 0 1.6em 2em;
  font-size: min(3.25vw, 16px);
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  #reason2 .mv img.large {
    left: 0;
    width: 100%;
    max-width: 100%;
    margin-top: 0;
  }
  #reason2 .mv .row {
    display: flex;
    width: 100%;
    margin: 0;
  }
  #reason2 .mv img.small1,
  #reason2 .mv img.small2 {
    width: 50%;
    margin: 0;
  }
  #reason2 .text {
    margin-left: 0;
  }
  #reason2 .reason2_imgs {
    height: 200vw;
  }
  .reason2_img_01 {
    top: 11%;
    left: 5%;
    width: 50%;
  }
  .reason2_img_02 {
    left: 58%;
    width: 42%;
  }
  .reason2_img_03 {
    top: 35%;
    left: 0%;
    width: 100%;
  }
  .reason2_img_04 {
    top: 65%;
    left: 0%;
    width: 30%;
  }
  .reason2_img_05 {
    top: 65%;
    left: 33%;
    width: 60%;
  }
  #reason2 ul.merit_list {
    width: 86%;
    max-width: 400px;
  }
}


#reason3 .reason3_hd {
  position: relative;
  padding: 5em 2em 0;
  z-index: 1;
  overflow: hidden;
  background: #fff;
}
#reason3 .reason3_hd img {
  width: 100%;
  max-width: 453px;
  margin: auto;
  display: block;
}
#reason3 .mv {
  position: relative;
  margin: 0 auto 0;
}
#reason3 .mv img.large {
  position: relative;
  left: 50%;
  width: 80%;
  max-width: 700px;
  margin-top: 1em;
  transform: translate(-50%, 0);
}
#reason3 .text {
  margin: 5% 0 0 10%;
  padding: 2em 2em 4em;
  line-height: 2;
  letter-spacing: 0.04em;
}

#reason3 .reason3_imgs {
  position: relative;
  height: 45vw;
  max-height: 450px;
  z-index: 2;
}
#reason3 img.reason3_01 {
  position: absolute;
  width: 50%;
  left: 0;
}
#reason3 img.reason3_02 {
  position: absolute;
  width: 50%;
  top: 25%;
  left: 52%;
}
#reason3 .reason3_merit {
  position: relative;
  z-index: 1;
  margin-bottom: 4em;
}
#reason3 .reason3_merit::before {
  position: absolute;
  content: '';
  top: -50%;
  left: 10%;
  width: 75%;
  height: 160%;
  background: #fff;
  z-index: -1;
}
#reason3 .merit_hd {
  padding: 2em 2em 2em;
  text-align: center;
}
#reason3 .merit_hd img {
  width: 100%;
  max-width: 450px;
}
#reason3 ul.merit_list {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  max-width: 700px;
}
#reason3 ul.merit_list li {
  list-style-type: none;
  background-image: url(../img/icon_check.svg);
  background-repeat: no-repeat;
  background-position: 0 0.2em;
  background-size: 1.5em auto;
  padding: 0 0 1.6em 2em;
  font-size: min(3.25vw, 16px);
  line-height: 1.6;
}


@media screen and (max-width: 767px) {
  #reason3 .mv img.large {
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    transform: none;
    margin-top: 0;
  }
  #reason3 .text {
    margin: 0;
    padding-right: 1.5em;
  }
  #reason3 .reason3_imgs {
    height: 108vw;
    max-height: 100%;
  }
  #reason3 img.reason3_01 {
    width: 80%;
    left: 0;
  }
  #reason3 img.reason3_02 {
    width: 80%;
    top: 49%;
    left: auto;
    right: 0;
  }
  #reason3 ul.merit_list {
    width: 86%;
    max-width: 400px;
  }
}


/* ==================================================
Section Contents FAQ
==================================================== */
#faq {
  background: #fff;
  position:relative;
  max-width: 100%;
}

#faq .faq_hd {
  position: relative;
  padding: 5em 2em 0 6em;
  z-index: 1;
  overflow: hidden;
}
#faq .faq_hd::before {
  content: '';
  position: absolute;
  width: 3000px;
  height: 1800px;
  bottom: 80px;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: var(--cream);
  border-radius: 100%;
  z-index: -1;
}
#faq .faq_hd img {
  width: 100%;
  max-width: 400px;
  margin: auto;
  display: block;
}

#faq dl.faq_list {
  width: 90%;
  max-width: 700px;
  margin: 1em auto 4em;
  font-size: min(3.525vw, 16px);
}
#faq dl.faq_list > *:last-child {
  margin-bottom: 0;
}

#faq .faq_list .faq_q,
#faq .faq_list .faq_a {
  position: relative;
  display: flex;
  align-items: flex-start;
  min-height: 2em;
}

#faq .faq_list .faq_q {
  font-weight: 500;
}
#faq .faq_list .faq_a {
  margin: 0 0 20px;
}

#faq .faq_list .icon {
  width: 12%;
  padding: 0 1em 0.5em 0;
}
#faq .faq_list .icon img {
  width: 100%;
  max-width: 50px;
}
#faq .faq_list .txt {
  font-size: min(3.525vw, 16px);
}
#faq .faq_list .faq_q .txt {
  width: 88%;
  padding-top: 0.5em;
  font-size: min(3.525vw, 20px);
  border-top: 1px solid var(--black);
}
#faq .faq_list .faq_a .txt {
  width: 88%;
  margin-bottom: 20px;
  color: #555;
  font-size: min(3.257vw, 16px);
  line-height: 1.8;
}

#faq .faq_imgs {
  position: relative;
  max-width: 1000px;
  height: 96vw;
  max-height: 960px;
  margin: auto;
}
#faq .faq_img_01 {
  position: absolute;
  top: 0;
  left: 10%;
  width: 44%;
}
#faq .faq_img_02 {
  position: absolute;
  top: 15%;
  right: -5.5%;
  width: 50%;
}
#faq .faq_img_03 {
  position: absolute;
  top: 49%;
  left: 16%;
  width: 38%;
}

@media screen and (max-width: 767px) {
  #faq .faq_hd::before {
    content: '';
    position: absolute;
    width: 150vw;
    height: 50vw;
    top: -43%;
    left: 50%;
    transform: translate(-50%, 0);
    background-color: var(--cream);
    border-radius: 100%;
    z-index: -1;
  }
  #faq .faq_list .icon {
    width: 15%;
    padding: 0 1em 0.5em 0;
  }
  #faq .faq_list .icon img {
    width: 100%;
    max-width: 50px;
  }
  #faq .faq_list .txt {
    font-size: min(3.525vw, 16px);
  }
  #faq .faq_list .faq_q .txt {
    width: 85%;
    padding-top: 0.5em;
    font-size: min(3.525vw, 20px);
    border-top: 1px solid var(--black);
  }
  #faq .faq_list .faq_a .txt {
    width: 85%;
    margin-bottom: 20px;
    font-size: min(3.257vw, 16px);
  }
  #faq .faq_imgs {
    position: relative;
    height: 130vw;
    max-height: 1000px;
  }
  #faq .faq_img_01 {
    top: 0;
    left: -17%;
    width: 70%;
  }
  #faq .faq_img_02 {
    top: 20%;
    right: -10%;
    width: 55%;
  }
  #faq .faq_img_03 {
    top: 57%;
    left: 8%;
    width: 45%;
  }
}

/* ==================================================
Section Contents List
==================================================== */
#house_lists {
  padding-block: 5em 2em;
  background: #fff;
  /*padding-bottom: 4em;*/
}
#house_lists .hl_hd {
  margin-bottom: 2.25em;
  padding-inline: 3em 2em;
  /*position: relative;
  padding: 5em 2em 0 3em;
  z-index: 1;
  overflow: hidden;
  background: #fff;*/
}
#house_lists .hl_hd img {
  display: block;
  width: 100%;
  max-width: 460px;
  margin: auto;
}
/*#house_lists .hl_lead {
  padding: 0 2em 2em;
}*/
/*.hl_list {
  padding: 3em 0 2em;
  background: var(--cream);
}*/
.hl_list h3,
.hl_list2 h3 {
  margin: 0 0 2em;
  font-size: min( 5.275vw, 24px );
  text-align: center;
}
.hl_list .houseLists {
  padding-inline: 1.5em;
}
@media screen and (min-width:768px) {
  .hl_list .houseLists {
    font-size: min( 3.275vw, 16px );
  }
}
@media screen and (max-width:767.9px) {
  .hl_list .houseLists {
    font-size: clamp( 13px, 3.275vw, 14px );
  }
}
.hl_list .houseFilter {
  -ms-align-items: center;
      align-items: center;
  list-style: none;
  margin-block: 0 1.5em;
  padding: 0;
}
@media screen and (min-width:768px) {
  .hl_list .houseFilter {
    justify-content: space-between;
    gap: 1em;
  }
}
@media screen and (max-width:767.9px) {
  .hl_list .houseFilter {
    -webkit-flex-wrap: wrap;
       -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
         -o-flex-wrap: wrap;
            flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1.5em;
  }
}
.hl_list .houseFilter {
  display: -webkit-flex;
  display:    -moz-flex;
  display:     -ms-flex;
  display:      -o-flex;
  display:         flex;
}
@media screen and (max-width:767.9px) and (min-width:375px)  {
  .hl_list .houseFilter li {
    width: calc( ( 100% - ( 1.5em * 2 ) ) / 3 );
  }
}
@media screen and (max-width:374.9px) {
  .hl_list .houseFilter li {
    width: calc( ( 100% - 1.5em ) / 2 );
  }
}
.hl_list .houseFilter span {
  cursor: pointer;
}
@media screen and (min-width:768px) {
  .hl_list .houseFilter li span {
    display: block;
  }
}
@media screen and (max-width:767.9px) {
  .hl_list .houseFilter li span {
    display: -webkit-flex;
    display:    -moz-flex;
    display:     -ms-flex;
    display:      -o-flex;
    display:         flex;
    justify-content: flex-start;
    -ms-align-items: center;
        align-items: center;
    gap: .5em;
  }
}
.hl_list .houseFilter li span:before {
  display: block;
  width: .5em;
  height: 2px;
  background-color: var(--pink);
}
@media screen and (max-width:767.9px) {
  .hl_list .houseFilter li span:before {
    content: " ";
  }
}
.hl_list .houseFilter li.isActive span {
  color: var(--pink);
  font-weight: bold;
}
.houseResult {
  display: none;
  margin-bottom: 1.5em;
  text-align: end;
  text-transform: uppercase;
}
.houseResult.isShow {
  display: block;
}
.houseResult span {
  display: inline-block;
  margin-right: .5em;
}
.hl_list .houseList {
  display: -webkit-flex;
  display:    -moz-flex;
  display:     -ms-flex;
  display:      -o-flex;
  display:         flex;
  -webkit-flex-wrap: wrap;
     -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
       -o-flex-wrap: wrap;
  justify-content: flex-start;
  -ms-align-items: stretch;
      align-items: stretch;
  gap: 1.5em;
  list-style: none;
  margin: 0;
  padding: 0;
  /*margin: 0 auto 2em;
  font-size: min( 3.275vw, 16px );*/
}
/*@media screen and (max-width:767.9px) {
  .hl_list .houseList {
    margin: 0 auto 2em;
    padding: 0 1.5em;
    font-size: min( 3.275vw, 14px );
  }
}*/
.hl_list .houseList li {
  display: none;
  -webkit-flex: none;
     -moz-flex: none;
      -ms-flex: none;
       -o-flex: none;
          flex: none;
  /*display: flex;
  max-width: 45%;
  margin: 1.5em 2.5%;
  padding-bottom: 1.5em;
  border-bottom: 1px solid #888;*/
}
@media screen and (min-width:768px) {
  .hl_list .houseList li {
    width: calc( ( 100% - ( 1.5em * 3 ) ) / 4 );
  }
  /*.hl_list .houseList li:nth-last-of-type(2),
  .hl_list .houseList li:last-of-type {
    padding-bottom: 0;
    border: none;
  }*/
}
@media screen and (max-width:767.9px) and (min-width:600px) {
  .hl_list .houseList li {
    width: calc( ( 100% - ( 1.5em * 2 ) ) / 3 );
    /*width: 100%;
    max-width: 100%;
    margin: 1em 0;*/
  }
  /*.hl_list .houseList li:nth-last-of-type(2){
    padding-bottom: 1.5em;
    border-bottom: 1px solid #888;
  }*/
}
@media screen and (max-width:599.9px) {
  .hl_list .houseList li {
    width: calc( ( 100% - 1.5em ) / 2 );
  }
}
.hl_list .houseList li.isShow {
  display: block;
}
.hl_list .thumb {
  /*width: 40%;
  margin-right: 5%;*/
  background-color: rgb( 45, 47, 51 );
}
.hl_list .thumb a {
  display: block;
  opacity: .8;
  aspect-ratio:1 / 1;
  background-position: 50%;
  -webkit-background-size: cover;
          background-size: cover;
  background-repeat: no-repeat;
}
.hl_list .detail {
  /*display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 60%;*/
  margin-top: 10px;
  line-height: 1.5;
}
.hl_list .detail .area {
  /*color: var(--gold2);
  line-height: 1;*/
  font-size: .8125em;
}
.hl_list .detail .name {
  /*margin-top: 0.4em;
  line-height: 1.4;*/
  font-size: .9375em;
}
.hl_list .detail .button {
  margin-top: 10px;
  font-size: .875em;
}
.hl_list .detail .button a {
  display: -webkit-inline-flex;
  display:    -moz-inline-flex;
  display:     -ms-inline-flex;
  display:      -o-inline-flex;
  display:         inline-flex;
  justify-content: flex-start;
  -ms-align-items: center;
      align-items: center;
  gap: 5px;
  position: relative;
  color: #bb5c7d;
  line-height: inherit;
  -webkit-transition: opacity .3s;
       -o-transition: opacity .3s;
          transition: opacity .3s;
}
.hl_list .detail .button a:before ,
.hl_list .detail .button a:after {
  display: block;
  -webkit-flex: 1;
     -moz-flex: 1;
      -ms-flex: 1;
       -o-flex: 1;
          flex: 1;
  aspect-ratio:1 / 1;
  width: 1.5em;
  text-align: center;
}
.hl_list .detail .button a:before {
  border: 1px solid #bb5c7d;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  content: " ";
}
.hl_list .detail .button a:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "+";
}
.hl_list .detail .button a:hover {
  opacity: .8;
}
/*.hl_list .detail .access {
  color: #888;
  font-size: .84em;
}*/
/*.hl_list .detail a.btn {
  display: block;
  width: 100%;
  padding: 0.8em 2em 0.8em 1.5em;
  font-size: min(3.275vw, 14px);
  text-align: center;
}*/
/*.hl_list a.btn + a.btn {
  margin-top: 0.6em;
  background-color: #bb5c7d;
}*/
/*.hl_list a.btn + a.btn:hover {
  background-color: var(--pink);
  opacity: 1;
}*/

.hl_list .lightbox {
  display: none;
}
.lightbox {
  line-height: 1.4;
  letter-spacing: .03em;
}
.lightboxHeader {
  font-size: 1.71428584em;
  margin-bottom: 1em;
}
.lightboxHeader__cover {
  aspect-ratio: 16 / 9;
  margin-bottom: 1em;
  background-position: 50%;
  -webkit-background-size: cover;
          background-size: cover;
  background-repeat: no-repeat;
}
.lightboxHeader__title {
  inline-size: fit-content;
  margin-inline: auto;
  text-indent: .03em;
  text-align: center;
  text-wrap: pretty;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.address {
  display: grid;
  grid-template-rows: auto;
  row-gap: .71428583em;
  margin: 0;
  line-height: 1.7;
}
@media (min-width:768px) {
  .address {
    grid-template-columns: 90px 1fr;
  }
}
@media (max-width:767.9px) {
  .address {
    grid-template-columns: 80px 1fr;
  }
}
.address__title {
  font-weight: bold;
}
.address__title[lang="en"] {
  text-transform: uppercase;
}
.address__detail {
  margin: 0;
}
.address__detail p {
  margin: 0;
}
.address__detail p.map[lang="en"] {
  text-transform: uppercase;
}
.address__detail p.map svg {
  display: inline-block;
  height: .95em;
  margin-right: .35714291em;
  vertical-align: baseline;
  fill: var(--black);
  -webkit-transition: all .4s;
       -o-transition: all .4s;
          transition: all .4s;
}
.address__detail p.map a:hover svg {
  fill: var(--pink);
  -webkit-transition: all .4s;
       -o-transition: all .4s;
          transition: all .4s;
}
.lightboxFooter {
  margin-top: 2.14285723em;
}
.moreView {
  display: -webkit-flex;
  display:    -moz-flex;
  display:     -ms-flex;
  display:      -o-flex;
  display:         flex;
  justify-content: flex-start;
  -ms-align-items: stretch;
      align-items: stretch;
  gap: 1.25em;
  font-size: .85714291em;
  text-align: center;
}
.moreView:has( > .moreView__item:nth-of-type(2) ) {
  -webkit-flex-wrap: wrap;
     -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
       -o-flex-wrap: wrap;
          flex-wrap: wrap;
}
.moreView:has( > .moreView__item:nth-of-type(2) ) .moreView__item {
  -webkit-flex: none;
     -moz-flex: none;
      -ms-flex: none;
       -o-flex: none;
          flex: none;
  width: calc( ( 100% - 1.25em ) / 2 );
}
.moreView .moreView__item:nth-of-type(2n+1):last-of-type {
  flex-basis: 100%;
}
.moreView__item a {
  display: block;
  padding: .5em;
  border: 1px solid #ccc;
  -webkit-transition: all .4s;
       -o-transition: all .4s;
          transition: all .4s;
}
.moreView__item a[lang="en"] {
  text-transform: uppercase;
}
.moreView__item a:hover {
  border-color: var(--pink);
  -webkit-transition: all .4s;
       -o-transition: all .4s;
          transition: all .4s;
}
.hl_list2 {
  padding: 3em 1.5em 2em;
}
.hl_list2 .areas {
  position: relative;
  background: var(--cream);
  margin-bottom: 2px;
  padding: 1em 1em;
  line-height: 1;
}
.hl_list2 .areas::before,
.hl_list2 .areas::after {
  position: absolute;
  top: 50%;
  right: 1em;
  content: '';
  width: 1em;
  height: 1px;
  background: #947828;
  opacity: 0.5;
  transition: all 400ms ease;
}
.hl_list2 .areas::before {
  transform: rotate(90deg);
  transition: all 400ms ease;
}
.hl_list2 .areas.open::before {
  transform: rotate(0deg);
  transition: all 400ms ease;
}
.hl_list2 .areas.open {
  font-weight: 500;
}
ul.areas_list {
  list-style-type: none;
  margin: 1em 0 1em 1em;
  padding: 0;
}
ul.areas_list li {
  position: relative;
  padding: 0 0 1em 1.5em;
  font-size: min(3.257vw, 16px);
  line-height: 1.4;
}
ul.areas_list li::before {
  position: absolute;
  top: .75em;
  left: 0;
  content: '';
  width: 1em;
  height: 1px;
  background: var(--gold2);
}
@media screen and (max-width: 767px) {
  .hl_list2 .areas {
    padding: 1.4em 1em;
  }
}

/* ==================================================
Section Campaign
==================================================== */
#spl_present {
  background: #f4d8e0;
  padding: 4em;
}
#spl_present .bnr {
  max-width: 500px;
  margin: auto;
  box-shadow: 2px 2px 8px rgba(200, 130, 155, 0.2);
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #spl_present {
    padding: 4em 2em;
  }
}


/* ==================================================
Section About
==================================================== */
#about {
  background: url(../img/about_bg.jpg);
  background-size: cover;
  background-position: 50% 0;
  margin-top: 10vw;
  padding: 75vw 2em 12vw;
}
#about .line {
  position: absolute;
  width: 1px;
  height: 16vw;
  top: -20vw;
  left: 50%;
  background: var(--black);
}
#about .logo {
  position: relative;
  width: 60%;
  max-width: 300px;
  margin: 0 auto 2em;
}
#about p {
  margin-bottom: 2em;
  letter-spacing: .075em;
  line-height: 2;
}
#about p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  #about {
    padding: 95vw 1em 20vw;
  }
  #about .line {
    height: 28vw;
    top: -30vw;
  }
}
@media screen and (max-width: 1000px) {
  #about {
    margin-top: 0;
  }
}

/* ==================================================
Section Epilogue
==================================================== */
#ep {
  background: url(../img/ep_bg.jpg);
  background-size: cover;
  background-position: 50% 50%;
  padding: 8em 3em 8em;
  text-align: center;
}
#ep img {
  max-width: 450px;
}

@media screen and (max-width: 767px) {
  #ep  {
    padding: 12em 3em;
  }
  #ep img {
    margin: auto;
  }
}


.house_lists-link_box {
  position: fixed;
  bottom: 24px;
  left: 0;
  right: 0;
  margin: auto;
  padding: 0 16px;
  text-align: center;
  z-index: 3;
  display: none;
}

.house_lists-link {
  padding: 10px 70px 10px 55px;
  background-color: #bb5c7d;
  color: #fff;
  font-size: 24px;
  border-radius: 6px;
  white-space: nowrap;
}

.house_lists-link:hover {
  color: #fff;

}

/*
.house_lists-link_arrow {
  position: absolute;
  top: 50%;
  margin: 0 0 0 16px;
  transform: translateY(-50%);
  font-size: 10px;
}
*/

.house_lists-link_nikukyu img {
  position: absolute;
  top: 50%;
  margin: 0 0 0 16px;
  transform: translateY(-60%) rotate(20deg);
  width: 0.9em;
  height: 0.9em;
}