@charset "UTF-8";
:root {
    --color-blk: #231815;
    --color-red: #c93928;
    --color-red2: #e60012;
    --color-brn: #3a1014;
    --color-dark-brn: #3a1014;
    --color-yel: #fff262;
    --color-green: #526b5e;

    --font-maru: "Zen Maru Gothic", sans-serif;
}

.wrapper {
  overflow-x: hidden;
  color: var(--color-blk);
}

.wrapper * {
  box-sizing: border-box;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

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

.wrapper a {
  transition: all 0.2s;
}

.wrapper img {
  vertical-align: bottom;
}

.visually_hidden {
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  border: 0 !important;
  padding: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  margin: -1px !important;
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100dvw;
  height: 100dvh;
  background-color: #fff;
  z-index: 99999;
}

.campaign_end {
  text-align: center;
  margin: 0 0 50px;
}

.end_bnr {
  text-align: center;
  background: #000;
  padding: 40px 0;
  color: #fff;
  margin: 0 0 50px;
  font-weight: 700;
}

.end_bnr .em {
  font-size: 200%;
  margin: 0 0 10px;
}

.sp_only {
  display: none !important;
}

.inner {
  width: clamp(0px, 100vw, 1200px);
  margin: auto;
}

.inner_s {
  width: clamp(0px, 83.3vw, 1000px);
  margin: auto;
}

.ib {
  display: inline-block;
}

.indent_1 {
  text-indent: -1em;
  padding-left: 1em;
}


/* list_note */
.list_note > li {
  font-size: 87.4%;
  position: relative;
  line-height: 1.4;
  padding-left: 1.2em;
}

.list_note > li:not(:first-child) {
  margin-top: 0.5em;
}

.list_note > li::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

.list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2em 1em;
}

.list > li::before {
  content: "●";
  color: #a3c4c2;
}

.btn_base {
  width: 396px;
  margin: auto;
  text-align: center;
  background: #ee7800;
  box-shadow: 0 0 10px 5px #fff;
}

.btn_base.btn_green {
  background-color: #489f36;
}

.btn_base a,
.btn_base > span {
  display: block;
  line-height: 60px;
  background: url(../img/arrow_right.svg) no-repeat right 20px center;
  background-size: 23px auto;
  color: #fff;
  font-size: 112.5%;
  font-weight: 500;
  transition: all 0.3s;
}

.btn_base a:hover,
.btn_base > span:hover {
  background-position: right 10px center;
}

a.hover,
.hover a {
    display: block;
    opacity: 1;
}

a.hover:hover,
.hover a:hover {
    opacity: 0.7;
}

main {
  position: relative;
  z-index: 0;
}

/*--------------------------------------------------*/
header .logo {
    width: 14%;
    position: absolute;
    left: 40px;
    top: 50px;
    z-index: 100;
    line-height: 0;
}

header .logo img {
  width: 100%;
}

header #side-fixed {
    width: clamp(0px, 23.8vw, 285px);
    position: fixed;
    right: clamp(0px, 2.2vw, 30px);
    bottom: clamp(0px, 5vw, 60px);
    z-index: 1000;
    transition: all .5s;
}

header #side-fixed a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

header #side-fixed a:hover {
  opacity: 0.7;
}

header #side-fixed a > span {
  display: inline-block;
  line-height: 1;
}

body.scroll__menu header #side-fixed {
  opacity: 0;
  bottom: -200px;
}

/*--------------------------------------------------*/
footer {
  padding: 50px 0;
}

footer .f-logo {
  width: 320px;
  margin: 0 auto 40px;
}

footer .f-box {
  overflow: hidden;
  width: 850px;
  margin: auto;
}

footer .f-box .box-left {
  float: left;
  width: 60%;
  font-size: 115%;
}

footer .f-box .box-right {
  float: left;
  width: 40%;
  font-size: 88%;
}

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

.scroll_down {
    width: 100px;
    max-width: 8%;
    position: relative;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-top: clamp(0px, 6.2vw, 85px);
}

.scroll_down_text {
    font-size: 93.8%;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-align: center;
    line-height: 1;
    margin-bottom: 30px;
    color: #fff;
}

.scroll_down_img {
  line-height: 1;
  -webkit-animation: scroll 2s infinite;
          animation: scroll 2s infinite;
}

/* scroll_arrow */
@-webkit-keyframes scroll {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
  }
}
@keyframes scroll {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
  }
}

/*--------------------------------------------------*/
.block_contact {
  padding: 80px 0;
  background-color: #fff;
}

.block_contact .inner {
  max-width: 950px;
}

.contact_head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(0px, 4.2vw, 50px);
    margin-bottom: clamp(0px, 8.3vw, 100px);
}

.block_contact .contact-title,
.block_thanks .contact-title {
    text-align: center;
    font-size: 220%;
    margin: 0 0 30px;
    position: relative;
}

.block_contact .contact_title {
    margin: 0;
    line-height: 1;
    padding-bottom: 0.7em;
    position: relative;
}

.block_contact .contact_title::after {
    content: "";
    width: 100%;
    height: clamp(0px, 0.4vw, 5px);
    background-color: var(--color-blk);
    position: absolute;
    bottom: 0;
    left: 0;
}

.contact_head .text_1 {
    font-size: clamp(0px, 1.8vw, 22px);
    letter-spacing: 0.14em;
}

.list_form {
  border: solid 1px #4c4948;
  margin: 0 0 90px;
}

.list_form li {
  overflow: hidden;
  display: table;
  width: 100%;
}

.list_form li + li {
  border-top: solid 1px #4c4948;
}

.list_form .area_label {
  display: table-cell;
  padding: 14px;
  background: #eeeee8;
  box-sizing: border-box;
  width: 20%;
  border-right: solid 1px #4c4948;
  vertical-align: top;
  position: relative;
}

.list_form li.hissu .area_input::after {
  content: "必須";
  display: inline-block;
  background: #D23F3E;
  color: #fff;
  position: absolute;
  top: 20px;
  left: 15px;
  padding: 5px;
  margin: auto;
  line-height: 1;
  text-align: center;
  font-weight: 500;
}

.list_form li.address .area_input::after {
  content: none;
}

.list_form li.past_campaign .area_label {
  /* padding: 14px 14px 40px; */
  text-align: left;
}

.list_form li.past_campaign .area_label.hissu::after {
  right: 0;
  left: 0;
  bottom: 10px;
  top: auto;
  margin: auto;
  width: 2em;
}

.list_form .area_input {
  display: table-cell;
  /* padding: 12px 20px; */
  padding: 15px 20px 15px 75px;
  box-sizing: border-box;
  position: relative;
}

.list_form li.past_campaign .area_input {
  vertical-align: middle;
}

.list_form .area_input p + p {
  margin: 10px 0 0;
}

.list_form .area_input.radio-box label {
  display: inline-block;
  width: 32%;
  cursor: pointer;
  margin: 3px 0;
}

.list_form .area_input.radio-box label input, .list_form .area_input.radio-box2 label input, .list_form .area_input.radio-box3 label input {
  margin: 0 5px 0 0;
  display: inline-block;
}

.list_form .area_input.radio-box2 label {
  display: inline-block;
  cursor: pointer;
  margin: 3px 0;
  padding: 0 20px 0 0;
}

.list_form .area_input.radio-box3 label, .list_form .area_input.radio-box3 .wpcf7-list-item {
  display: block;
  cursor: pointer;
}

.list_form .area_input.radio-box4 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px 0;
}

.list_form .area_input.radio-box4 label {
    width: 47%;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0 5px;
}

.list_form .area_input.radio-box4 label .radio_right {
    flex: 1;
    width: 100%;
}

.radio-box4 input[type="radio"] {
    width: 20px;
    height: 20px;
}

.radio_right .text_1 {
    text-justify: inter-word;
    letter-spacing: 0.24em;
    font-size: 106.3%;
    font-weight: 500;
    margin-bottom: 0.5em;
}

.radio_right .img {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 280 / 180;
}

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

.radio_right .text_2 {
    font-size: 85%;
    line-height: 1.7em;
    margin-top: 0.5em;
    white-space: nowrap;
}

.list_form .area_input.radio-box4 .error {
    width: 100%;
}

.list_form .area_input .small {
  font-size: 75%;
  margin: 10px 0 0;
}

.list_form .area_input .small small {
  display: inline-block;
}

.list_form input[type=text], .list_form input[type=email], .list_form input[type=tel], .list_form textarea {
  width: 100%;
  background-color: #ecebeb;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  padding: 10px;
}

.list_form input[type=text].short {
  width: 20%;
}

.list_form input[type=text].mt {
  margin-top: 20px;
}

.list_form input[type=email], .list_form input[type=text].long {
  width: 100%;
}

.list_form input[type=text]#datepicker {
  width: 140px;
  cursor: pointer;
}

.list_form textarea {
  width: 100%;
}

.list_form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #ecebeb;
  padding: 10px 40px 10px 15px;
  border: none;
  font-size: 16px;
  width: 300px;
}

.list_form span.select-arrow {
  position: relative;
  display: inline-block;
}

.list_form span.select-arrow::after {
  content: "";
  width: 10px;
  height: 10px;
  box-sizing: border-box;
  border-top: solid 1px #4c4948;
  border-right: solid 1px #4c4948;
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(135deg);
}

.list_form .check__on {
  display: none;
}

.list_form .check__on.check__start {
  display: table;
}

.block_contact .policy-title {
  font-size: 150%;
  font-weight: 600;
  margin: 0 0 10px;
  text-align: center;
}

.block_contact .policy-title strong {
  color: #b5464c;
}

.block_contact .policy-text {
  font-size: 93.8%;
  font-weight: 500;
  margin-top: 1.5em
}

.block_contact .policy-text a {
  text-decoration: underline;
}

.block_contact .policy-text a:hover {
  text-decoration: none;
  opacity: 0.7;
}

.block_contact .area_policy {
  height: 220px;
  overflow-y: scroll;
  border: solid 1px #4c4948;
  box-sizing: border-box;
  padding: 30px;
  -webkit-overflow-scrolling: touch;
  margin: 0 0 40px;
}

.block_contact .area_policy p + p {
  margin: 15px 0 0;
}

.list_disc li {
  list-style: disc;
  margin: 0 0 0 1.3em;
}

.block_contact .area_policy dl {
  margin: 20px 0 0;
}

.block_contact .area_policy dt {
  font-weight: 600;
  margin: 0 0 5px;
  font-size: 110%;
}

.block_contact .area_submit {
  text-align: center;
  margin: 0 0 50px;
}

.block_contact .area_submit button {
  display: inline-block;
  background: #fff;
  border: solid 1px #231815;
  line-height: 70px;
  margin: 0;
  padding: 0 75px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 125%;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.block_contact .area_submit button:hover {
  background: #b5464c;
  color: #fff;
}

.block_contact .area_error .error-title {
  text-align: center;
  color: #fff;
  background: #578b29;
  padding: 20px 0;
  font-size: 150%;
  font-weight: 600;
  line-height: 1.5;
}

.block_contact .area_error .error-box {
  background: #ecebeb;
  padding: 30px;
  margin: 0 0 20px;
}

.dl_error + .dl_error {
  margin: 20px 0 0;
}

.dl_error dt {
  font-size: 150%;
  font-weight: 600;
  margin: 0 0 10px;
}

.dl_error dd p + p {
  margin: 15px 0 0;
}

.block_contact .error-message {
  text-align: center;
  background: #578b29;
  padding: 15px 0;
  color: #fff;
  font-size: 135%;
  font-weight: 600;
  line-height: 1.5;
}

.list_btn {
  text-align: center;
}

.list_btn li {
  width: 350px;
  margin: 20px auto 0;
  background: #4c4948;
}

.list_btn img {
  vertical-align: top;
}

.list_formSteps {
  display: flex;
  justify-content: center;
  position: relative;
  margin-bottom: 30px;
}

.list_formSteps::before {
  content: "";
  width: 400px;
  height: 1px;
  background: #231815;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.list_formSteps > li {
  width: 120px;
  height: 120px;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 150%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: relative;
  z-index: 5;
  margin: 0 28px;
}

.list_formSteps > li:nth-child(1) {
  background-image: url("../img/steps01.svg");
}

.list_formSteps > li:nth-child(2) {
  background-image: url("../img/steps02.svg");
}

.list_formSteps > li:nth-child(3) {
  background-image: url("../img/steps03.svg");
}

.list_formSteps > li.active:nth-child(1) {
  background-image: url("../img/steps01_on.svg");
}

.list_formSteps > li.active:nth-child(2) {
  background-image: url("../img/steps02_on.svg");
}

.list_formSteps > li.active:nth-child(3) {
  background-image: url("../img/steps03_on.svg");
}

.formWaku {
  padding: 100px 0 0;
  position: relative;
}

.formWaku .formSticky {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  /* z-index: 1000; */
}

.formWaku .formSticky.none {
  display: none;
}

.formWaku .formSticky .sticky_wrap {
  position: -webkit-sticky;
  position: sticky;
  top: 30px;
  right: 0;
  border: solid 1px #231815;
  border-radius: 5px;
  overflow: hidden;
  z-index: 1000;
}

.formWaku .form_nokori {
  position: relative;
  background: #FFF799;
  text-align: center;
  padding: 10px 100px 10px 35px;
  margin: 0 0 0 auto;
  font-size: 93.75%;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.formWaku .form_nokori::before {
  content: "";
  width: 31px;
  height: 17px;
  background: url("../img/next02.webp") no-repeat;
  background-size: contain;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.formWaku .form_nokori span.text {
  display: inline-block;
  vertical-align: middle;
}

.formWaku .form_nokori span#num {
  font-size: 180%;
  font-weight: 500;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0 5px;
}

.formWaku .form_last {
  background: #fff;
  box-sizing: border-box;
  padding: 0 10px;
}

.formWaku .form_last p {
  font-size: 88%;
  font-weight: 700;
}

.formWaku .form_last p a {
  display: block;
  padding: 2px 0;
}

.form_last {
  display: none;
}

.form_last p.none {
  display: none;
}

/* == contact ==============================================*/
#page_thanks header {
  background: #333;
  position: relative;
  text-align: center;
  padding: 20px 0;
}

#page_thanks header h1 {
  width: 300px;
  margin: auto;
}

#page_thanks header h1 img {
  vertical-align: top;
}

#formWrap {
  padding: 50px 0 0;
}

#formWrap .confirm-text-box {
  text-align: center;
}

#formWrap .confirm-text-box .confirm-title {
  font-size: 150%;
  margin: 0 0 15px;
}

#formWrap .form_base .formTable {
  width: 80%;
  margin: 20px auto 50px;
}

#formWrap .form_base .formTable th {
  text-align: left;
  padding: 10px;
  background: #f5f5f5;
  width: 25%;
  border: solid 1px #eee;
}

#formWrap .form_base .formTable td {
  padding: 10px;
  border: solid 1px #eee;
}

#formWrap .area_submit {
  text-align: center;
}

#formWrap .area_submit input {
  width: 200px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background: #ffe900;
  color: #333;
  font-weight: 600;
  padding: 10px 0;
  display: inline-block;
  margin: 0 10px;
  cursor: pointer;
}

#formWrap .area_submit input.back {
  background: #ccc;
}

.block_thanks {
  margin: 100px auto;
}

.block_thanks .inner {
  max-width: 900px;
}

.block_thanks .thanks-title {
  font-size: 125%;
  margin: 0 0 5px;
  font-weight: 600;
}

.block_thanks .thanks-text {
  margin: 20px 0 0;
}

.bnr_present {
  margin: 0 0 100px;
}

.bnr_present .present-title {
  background: #ee7800;
  text-align: center;
  padding: 20px 0 10px;
}

.bnr_present .present-title img {
  vertical-align: top;
}

.bnr_present .present-text {
  text-align: right;
  font-size: 88%;
}

.confirm_list_form {
  border: solid 1px #4c4948;
  margin: 0 0 40px;
}

.confirm_list_form li {
  overflow: hidden;
  display: table;
  width: 100%;
}

.confirm_list_form li + li {
  border-top: solid 1px #4c4948;
}

.confirm_list_form .area_label {
  display: table-cell;
  padding: 14px;
  background: #eeeee8;
  box-sizing: border-box;
  width: 20%;
  vertical-align: top;
  position: relative;
}

.confirm_list_form li.hissu .area_input::after {
  content: "必須";
  display: inline-block;
  background: #D23F3E;
  color: #fff;
  position: absolute;
  top: 16px;
  left: 15px;
  padding: 5px;
  margin: auto;
  line-height: 1;
  text-align: center;
  font-weight: 500;
}

.confirm_list_form li.past_campaign .area_label {
  text-align: left;
}

.confirm_list_form li.past_campaign .area_label.hissu::after {
  right: 0;
  left: 0;
  bottom: 10px;
  top: auto;
  margin: auto;
  width: 2em;
}

.confirm_list_form .area_input {
  display: table-cell;
  /* padding: 12px 20px; */
  padding: 15px 20px 15px 75px;
  box-sizing: border-box;
  position: relative;
}

.confirm_list_form li.past_campaign .area_input {
  vertical-align: middle;
}

.confirm_list_form .area_input p + p {
  margin: 10px 0 0;
}

.confirm_list_form .area_input .small {
  font-size: 75%;
  margin: 10px 0 0;
}

input,
select,
button[type=submit],
button[type=button] {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

.check_txt {
  text-align: center;
  text-decoration: underline;
  transition: all 0.3s;
}

.block_contact .area_submit button.check_txt {
  border: none;
  background: none;
  line-height: 1.25;
  padding: 0;
  margin-top: 1em;
}

.block_contact .area_submit button.check_txt:hover {
  text-decoration: none;
  color: #000;
}

#page_confirm .block_contact .area_submit {
  margin-bottom: 0;
}

#page_confirm .block_contact {
  padding-bottom: 100px;
}

.contact_head_txt {
  margin-bottom: 2em;
  text-align: center;
}

.area_input .error {
  display: block;
  font-size: 93%;
  color: #B70000;
}

/* == animation ==============================================*/
.block_dream .area_campaign.scroll--anime::before, .block_dream .area_campaign.scroll--anime::after, .block_dream .area_att.scroll--anime::before, .block_dream .area_att.scroll--anime::after {
  opacity: 0;
  transform: translateY(100px);
  transition: all 1s ease 1s;
}

.block_dream .area_campaign.scroll--start::before, .block_dream .area_campaign.scroll--start::after, .block_dream .area_att.scroll--start::before, .block_dream .area_att.scroll--start::after {
  opacity: 1;
  transform: translateY(0);
}


/* 2025.02.28 更新分 ここから */

footer .f-logo {
  text-align: center;
}

.close footer .f-box .box-left {
  float: none;
  width: auto;
  text-align: center;
}

.close .end_bnr {
  padding: 110px 0;
}

.close .end_bnr .em {
  font-size: 375%;
}

.close .end_bnr .em > span {
  font-weight: 900;
  display: inline-block;
  letter-spacing: 0.18em;
  text-indent: 0.18em;
  font-feature-settings: "palt";
}

.close .end_bnr .normal {
  font-size: 218.75%;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.list_form .area_ttl {
  font-size: 106.3%;
  font-weight: 500;
  margin: 0.7em 0 0.2em;
  position: relative;
}

.list_form .area_ttl.mt0 {
  margin-top: 0;
}

.list_form .area_ttl::after {
  content: "必須";
  display: inline-block;
  background: #D23F3E;
  color: #fff;
  position: absolute;
  top: calc(100% + 5px);
  right: calc(100% + 15px);
  padding: 5px;
  margin: auto;
  line-height: 1;
  text-align: center;
  font-weight: 500;
  white-space: nowrap;
}

.list_form .area_ttl.no_icon::after {
  content: none;
}

.list_form .size_s select {
  width: 140px;
}


/*==============================
common
==============================*/
.bg_red {
    background-color: var(--color-red);
}


/*==============================
mv
==============================*/
.mv {
    width: 100%;
    position: relative;
}

.main_ttl {
    width: 100vw;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.main_ttl img {
    width: clamp(0px, 160vw, 1920px);
    max-width: initial;
}

.btn_top {
    width: clamp(0px, 36.3vw, 435px);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.button_yel {
    width: 100%;
}


/*==============================
lead
==============================*/
.block_lead {
    width: 100vw;
    display: flex;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.block_lead .inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.block_lead .lead_bg {
    width: 100vw;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.block_lead .lead_bg img {
    width: clamp(0px, 160vw, 1920px);
    max-width: initial;
}

.lead_text {
    width: clamp(0px, 100vw, 1200px);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
}


/*==============================
detail
==============================*/
.block_detail {
    width: clamp(0px, 98.3vw, 1170px);
    height: clamp(0px, 106.7vw, 1280px);
    margin: 0 auto;
    position: relative;
}

.block_detail .detail_box {
    width: 100%;
    padding: clamp(0px, 7.1vw, 85px) clamp(0px, 7.1vw, 85px) clamp(0px, 11.3vw, 135px);
    background-color: #fff;
    position: absolute;
    top: clamp(-230px, -19.2vw, 0px);
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.block_detail .detail_box .deco {
    width: clamp(0px, 10vw, 120px);
}

.block_detail .detail_box .text_1 {
    font-size: clamp(0px, 4.5vw, 54px);
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1;
    text-align: center;
}

.block_detail .detail_box .text_2 {
    font-size: clamp(0px, 3.3vw, 40px);
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.75em;
    text-align: center;
    white-space: nowrap;
    margin-bottom: clamp(0px, 5.8vw, 70px);
}

.block_detail .detail_box .text_2 .em1 {
    font-weight: 800;
    font-size: 1.3em;
}

.block_detail .detail_box .text_2 .em2 {
    font-weight: 800;
}

.block_detail .detail_box .text_2 .em3 {
    font-weight: 800;
    font-size: 0.7em;
}

.block_detail .detail_box .text_2 .line {
    position: relative;
    display: inline-block;
}

.block_detail .detail_box .text_2 .line::after {
    content: "";
    width: 100%;
    height: clamp(0px, 0.3vw, 4px);
    background-color: var(--color-red);
    position: absolute;
    top: 1.6em;
    left: 0;
}

.block_detail .detail_box .text_3 {
    font-size: clamp(0px, 1.5vw, 18px);
    line-height: 1.9em;
    letter-spacing: 0.08em;
    margin-bottom: clamp(0px, 7.5vw, 90px);
}

.block_detail .detail_box .text_4 li {
    font-size: clamp(0px, 1.9vw, 23px);
    font-weight: bold;
    padding-left: 5.4em;
    text-indent: -5.4em;
}

.block_detail .detail_box .text_4 li.note {
    font-size: clamp(0px, 1.3vw, 15px);
    font-weight: 500;
    text-indent: 0;
    padding-left: 8.5em;
    margin-top: 1em;
}

.block_detail .detail_box .text_4 li.note + .note {
    margin-top: 0;
}

.block_detail .detail_box .button_ora {
    width: clamp(0px, 34.2vw, 410px);
    position: absolute;
    bottom: clamp(-32px, -2.7vw, 0px);
    left: 0;
    right: 0;
    margin: auto;
}


/*==============================
special
==============================*/
.block_special {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(0px, 8.3vw, 100px) 0;
    padding-bottom: clamp(0px, 16.7vw, 200px);
}

.block_special .special_title {
    width: clamp(0px, 68.3vw, 820px);
}

.block_special .special_cont {
    width: clamp(0px, 99.2vw, 1290px);
}

.block_special .button_whi {
    width: clamp(0px, 30vw, 360px);
}


/*==============================
house
==============================*/
.block_house {
    width: 100vw;
    background: url("../img/house_bg.jpg") no-repeat top center / cover;
    padding-top: clamp(0px, 10vw, 120px);
    padding-bottom: clamp(0px, 16.7vw, 200px);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.block_house .house_cont {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(0px, 10.8vw, 130px) 0;
}

.block_house .house_box {
    width: clamp(0px, 106.7vw, 1280px);
    display: flex;
    justify-content: center;
    position: relative;
/*    width: clamp(0px, 84.2vw, 1010px);
    background-color: #fff;
    border-radius: clamp(0px, 8.3vw, 100px);*/
}

.block_house .house_box img {
    width: 100%;
}

.block_house .house_box.point1 .deco {
    width: 100%;
    position: absolute;
    top: clamp(-90px, -7.5vw, 0px);
    left: 0;
}


/*==============================
award
==============================*/
.block_award {
    width: 100%;
    background-color: var(--color-yel);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(0px, 16.7vw, 200px) 0;
}

.block_award .award_cont {
    width: clamp(0px, 91.7vw, 1100px);
    margin-bottom: clamp(0px, 7.5vw, 90px);
}

.block_award .text_1 {
    font-size: clamp(0px, 2.1vw, 25px);
    line-height: 1.6em;
    font-weight: 500;
    text-align: center;
}


/*==============================
stamp
==============================*/
.block_stamp {
    width: 100%;
    padding: clamp(0px, 12.9vw, 155px) 0 clamp(0px, 60vw, 720px);
    background: url("../img/stamp_bg.jpg") repeat top center / clamp(0px, 24.8vw, 297px) auto;
}

.stamp_cont {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stamp_cont .stamp_title {
    width: clamp(0px, 78.8vw, 945px);
    margin-bottom: clamp(0px, 7.1vw, 85px);
}

.stamp_cont .text_1 {
    font-size: clamp(0px, 3.8vw, 45px);
    line-height: 1.8em;
    font-weight: bold;
    letter-spacing: 0.08em;
    text-align: center;
    margin-bottom: 1em;
}

.stamp_cont .text_1 .em1 {
    font-size: clamp(0px, 4.2vw, 50px);
    color: var(--color-red2);
}

.stamp_cont .text_1 .em2 {
    font-size: 1.3em;
    font-weight: bold;
    line-height: 1;
}

.stamp_cont .text_2 {
    width: clamp(0px, 113.83vw, 1366px);
    aspect-ratio: 1366 / 84;
    font-size: clamp(0px, 2.7vw, 32px);
    letter-spacing: 0.08em;
    line-height: 1;
    font-weight: bold;
    color: #fff;
    background-color: var(--color-brn);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: clamp(0px, 4.6vw, 55px);
}

.stamp_cont .text_3 {
    font-size: clamp(0px, 1.7vw, 20px);
    line-height: 1;
    letter-spacing: 0.04em;
    text-align: center;
    margin-bottom: clamp(0px, 5vw, 60px);
}

.stamp_house_list {
    width: clamp(0px, 90.8vw, 1090px);
    margin-bottom: clamp(0px, 6.7vw, 80px);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0;
}

.stamp_house_list.col2 {
    width: clamp(0px, 58.3vw, 700px);
}

.stamp_house_list li {
    width: clamp(0px, 24.2vw, 290px);
    position: relative;
}

.stamp_house_list li.all_li {
    width: 100%;
    padding-top: clamp(0px, 5vw, 60px);
}

.stamp_house_list li.build_2::before {
    content: "";
    width: clamp(0px, 7.5vw, 90px);
    aspect-ratio: 90 / 100;
    background: url("../img/stamp_house_deco.svg") no-repeat center center / contain;
    position: absolute;
    top: 0;
    left: clamp(0px, 11.3vw, 135px);
    z-index: 3;
}

.stamp_house_list li.build_3::before {
    content: "";
    width: clamp(0px, 7.5vw, 90px);
    aspect-ratio: 90 / 100;
    background: url("../img/stamp_house_deco.svg") no-repeat center center / contain;
    position: absolute;
    top: 0;
    left: clamp(0px, 32.5vw, 390px);
    z-index: 3;
}

.stamp_house_list li a {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stamp_house_list li .text_4 {
    width: 100%;
    height: clamp(0px, 3.8vw, 45px);
    font-size: clamp(0px, 1.7vw, 20px);
    line-height: 1;
    font-weight: bold;
    background-color: #e9473f;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: clamp(0px, 1vw, 12px);
    margin-bottom: clamp(0px, 3.1vw, 37px);
}

.stamp_house_list li.all_li .text_4 {
    margin-bottom: 0;
}

.stamp_house_list li .list_img {
    width: 100%;
    border-bottom: 1px solid var(--color-blk);
    padding-bottom: clamp(0px, 1.3vw, 15px);
    margin-bottom: clamp(0px, 0.8vw, 10px);
}

.stamp_house_list li .text_5 {
    font-size: clamp(0px, 1.33vw, 16px);
    font-weight: 500;
    text-align: center;
    line-height: 1.2em;
    white-space: nowrap;
}

.stamp_house_list li .text_6 {
    font-size: clamp(0px, 2.2vw, 26px);
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
}

.stamp_house_list li .text_6 span {
    font-size: 0.5em;
}

.stamp_house_list li .text_7 {
    font-size: clamp(0px, 1.1vw, 13px);
    margin: 1em 0 0;
}

.stamp_house_list li .text_8 {
    font-size: clamp(0px, 1.3vw, 15px);
    font-weight: 500;
    line-height: 1;
    padding: 0.8em 0;
}

.stamp_house_list li .also {
    width: 100%;
    text-align: center;
}

.stamp_map {
    width: clamp(0px, 82.5vw, 990px);
}



/*==============================
catch
==============================*/
.block_catch {
    width: 100%;
    padding: clamp(0px, 35vw, 420px) 0 clamp(0px, 17.9vw, 215px);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.block_catch .catch_cont {
    width: clamp(0px, 100vw, 1300px);
    position: absolute;
    top: clamp(-700px, -53.85vw, 0px);
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1;
}

.block_catch .button_bro {
    width: clamp(0px, 30.8vw, 370px);
    position: relative;
    z-index: 2;
}

.block_catch .button_bro a {
    display: block;
}


/*==============================
qa
==============================*/
.block_qa {
    width: 100%;
    padding-top: clamp(0px, 8.3vw, 100px);
}

.block_qa .qa_cont {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qa_title {
    font-size: clamp(0px, 2.9vw, 35px);
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0.1em;
    color: #fff;
    position: relative;
    padding-bottom: 0.7em;
    margin-bottom: clamp(0px, 8.3vw, 100px);
}

.qa_title::after {
    content: "";
    width: 80%;
    height: clamp(0px, 0.4vw, 5px);
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

#qa_list {
    width: clamp(0px, 75vw, 900px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(0px, 8.3vw, 100px) 0;
}

.qa_block {
    width: 100%;
    background-color: #fff;
    border-radius: clamp(0px, 4.2vw, 50px);
}
.qa_q_cont {
    width: 100%;
    cursor: pointer;
    padding: clamp(0px, 2.5vw, 30px) clamp(0px, 8.3vw, 100px)  clamp(0px, 2.5vw, 30px) clamp(0px, 2.5vw, 30px);
    position: relative;
    color: #fff;
    background-color: var(--color-red);
    border: clamp(0px, 0.5vw, 6px) solid #fff;
    border-radius: clamp(0px, 4.2vw, 50px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.qa_q_cont::after {
    content: "";
    width: clamp(0px, 3.3vw, 40px);
    aspect-ratio: 40 / 93;
    background: url("../img/qa_arrow.svg") no-repeat center center / contain;
    display: block;
    transition: transform 0.3s ease;
    position: absolute;
    top: 0;
    bottom: 0;
    right: clamp(0px, 2.9vw, 35px);
    margin: auto;
}

.qa_block.open .qa_q_cont::after {
    transform: rotate(-180deg);
}

.qa_q_cont .icon_area {
    width: clamp(0px, 4.6vw, 55px);
}

.qa_q_cont .text_area {
    width: 100%;
    flex: 1;
}

.qa_q_cont .text_area p {
    font-size: clamp(0px, 1.9vw, 23px);
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
}

.qa_a_cont {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.qa_a_cont .cont_inner {
    display: flex;
    align-items: flex-start;
    padding: clamp(0px, 5.8vw, 70px) clamp(0px, 6.3vw, 75px) clamp(0px, 7.9vw, 95px) clamp(0px, 2.5vw, 30px);
}

.qa_a_cont .icon_area {
    width: clamp(0px, 9.2vw, 110px);
    padding-top: clamp(0px, 0.8vw, 10px);
}

.qa_a_cont .text_area {
    width: 100%;
    flex: 1;
}

.qa_a_cont .text_area p {
    font-size: clamp(0px, 1.7vw, 20px);
    font-weight: 500;
    line-height: 2.2em;
    letter-spacing: 0.1em;
}


/*==============================
block_special2
==============================*/
.block_special2 {
    display: flex;
    justify-content: center;
    padding: clamp(0px, 16.7vw, 200px) 0;
}

.block_special2 img {
    width: clamp(0px, 99.2vw, 1290px);
}


/*==============================
popup
==============================*/
.open_btn {
    width: clamp(0px, 30vw, 360px);
    cursor: pointer;
    display: block;
    opacity: 1;
    transition: opacity 0.3s;
}

.open_btn:hover {
    opacity: 0.7;
}

.popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 9999;
}

.popup.show {
    opacity: 1;
    visibility: visible;
}

.popup_inner {
    width: clamp(0px, 78.3vw, 940px);
    max-height: 100vh;
    background: #fff;
    border: 1px solid var(--color-blk);
    border-radius: clamp(0px, 7.1vw, 85px);
    padding: clamp(0px, 6.7vw, 80px) clamp(0px, 6.7vw, 80px) clamp(0px, 5vw, 60px);
    position: relative;
    transform: translateY(-10px);
    transition: transform 0.4s ease;
}

.popup_cont {
    height: auto;
    overflow: auto;
    padding-bottom: clamp(0px, 3.3vw, 40px);
    max-height: calc(90vh - clamp(0px, 13.3vw, 160px));
}

.popup.show .popup_inner {
    transform: translateY(0);
}

.close_btn {
    position: absolute;
    right: clamp(0px, 8.3vw, 100px);
    top: clamp(-40px, -3.3vw, 0px);
    width: clamp(0px, 7.5vw, 90px);
    cursor: pointer;
}

.popup_cont .cont_title {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    margin-bottom: clamp(0px, 5.8vw, 70px);
}

.popup_cont .cont_title::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--color-blk);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

.popup_cont .cont_title span {
    font-size: clamp(0px, 2.3vw, 28px);
    font-weight: bold;
    line-height: 1;
    background-color: #fff;
    display: inline-block;
    padding: 0 2.5em;
    z-index: 2;
}

.area_tel_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: clamp(0px, 6.7vw, 80px) 0;
}

.area_tel_list li {
    width: 47%;
}

.area_tel_list li .text_2 {
    font-size: clamp(0px, 2vw, 24px);
    line-height: 1;
    letter-spacing: 0.2em;
    margin-bottom: 1em;
}

.area_tel_list li .text_3 {
    font-size: clamp(0px, 2.1vw, 25px);
    line-height: 1;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.2em;
}

.area_tel_list li .text_3 a {
    font-size: 1.5em;
    line-height: 1;
}


/*==============================
page top
==============================*/
#pagetop_button {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 9;
}

#pagetop_button a {
    width: clamp(0px, 4.2vw, 50px);
    aspect-ratio: 1 / 1;
    background-color: var(--color-dark-brn);
    display: flex;
    justify-content: center;
    align-items: center;
}

#pagetop_button img {
    width: 50%;
    transform: rotate(-90deg);
}
