@charset "UTF-8";
/*header*/
.header {
  position: relative;
}

.box-header {
  position: relative;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
}
.box-header .header_logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5em;
  color: var(--c-txt);
  font-size: clamp(2rem, 2rem + 0.625vw, 4rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.box-header .header_logo .image {
  display: block;
  width: min(48px, 6vw);
  aspect-ratio: 1/1;
}
@media (max-width: 1180px) {
  .box-header {
    top: 0;
    width: 100%;
    padding: 1em;
  }
  .box-header .header_logo {
    font-size: clamp(2rem, 2.2rem + 0.625vw, 2.4rem);
  }
}

/*メニュー*/
.box-menu .menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1em;
}
.box-menu .menu li {
  text-align: center;
}
.box-menu .menu li.btn {
  width: auto;
}
.box-menu .menu a {
  text-decoration: none;
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
@media (max-width: 1180px) {
  .box-menu {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    margin: auto;
    z-index: 1000;
    width: 100%;
    height: 0;
    margin: 0;
    opacity: 0;
    overflow: hidden;
    transition: 0.5s ease-in all;
    overflow: hidden;
  }
  .box-menu.on {
    display: block;
    height: 100vh;
    opacity: 1;
  }
  .box-menu.on .menu {
    padding: 2em;
    width: 100%;
  }
  .box-menu.on .menu li {
    width: 100%;
  }
}

/*header-burger*/
.btn-burger {
  display: none;
  transition: 0.5s ease-in all;
}
@media (max-width: 1180px) {
  .btn-burger {
    position: relative;
    display: block;
    right: 0;
    z-index: 1;
    width: 40px;
  }
  .btn-burger button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    height: 32px;
    background: none;
    border: 0;
    padding: 0;
    margin: 0;
  }
  .btn-burger .burger_line {
    display: block;
    width: 100%;
    height: 4px;
    border-radius: 16px;
    background: var(--c-txt);
  }
  .btn-burger .burger_line:nth-child(2) {
    margin: 0.8em 0;
  }
  .btn-burger.on {
    position: fixed;
    z-index: 1001;
    right: 1em;
  }
  .btn-burger.on .burger_line {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    transform: rotate(45deg);
    background: var(--c-note);
  }
  .btn-burger.on .burger_line:nth-child(2) {
    opacity: 0;
  }
  .btn-burger.on .burger_line:nth-child(3) {
    transform: rotate(-45deg);
  }
}

/*MV*/
.box-mv {
  position: relative;
  margin: 0 auto;
  width: min(1180px, 100%);
  height: min(600px, 140vw);
}
.box-mv_ttl {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  padding: 2em;
  background: var(--c-white);
}
.box-mv img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.box-mv.img {
  height: auto;
}
.box-mv.img .box-mv_ttl {
  position: relative;
  left: unset;
  bottom: unset;
  padding: 0;
  width: 100%;
  height: 100%;
  background: none;
}
.box-mv.img .box-mv_ttl h2 {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/*midashi*/
/*先頭にチェック*/
.ttl_sub.chk {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5em;
}
.ttl_sub.chk::before {
  content: "";
  margin: 0;
  display: inline-block;
  width: 2em;
  height: 2em;
  background-color: var(--c-note);
  -webkit-mask-image: url(../img/check_circle.svg);
          mask-image: url(../img/check_circle.svg);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
}

/*grid*/
.box-grid {
  /*写真とテキストを並べるbox*/
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 2em;
}
.box-grid.left {
  grid-template-columns: 60% 40%;
}
@media (max-width: 896px) {
  .box-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 1em;
  }
  .box-grid.left {
    grid-template-columns: repeat(1, 1fr);
  }
}

/*2カラムのイメージ*/
.box-img {
  aspect-ratio: 5/3;
}
.box-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*カラムリスト*/
.lst-col {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
  color: var(--c-txt);
}
.lst-col.l02 .lst-col_inner {
  width: 36.3636363636%;
}
@media (max-width: 896px) {
  .lst-col.l02 .lst-col_inner {
    width: 100%;
  }
}
.lst-col.l03 .lst-col_inner {
  width: 30.7692307692%;
}
@media (max-width: 896px) {
  .lst-col.l03 .lst-col_inner {
    width: 100%;
  }
}
.lst-col.l04 .lst-col_inner {
  position: relative;
  margin: 0 auto;
  width: 20.8333333333%;
}
.lst-col.box .lst-col_inner {
  border: 1px solid var(--c-txt);
  background: var(--c-white);
  padding: clamp(2em, 6vw, 3em);
}
.lst-col.chk {
  margin: 1em auto 0;
  width: min(1000px, 90%);
}
.lst-col.chk .lst-col_inner {
  font-size: clamp(2.4rem, 3.5vw, 2.8rem);
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
  font-weight: 800;
}
.lst-col.chk .lst-col_inner .txt-sub {
  display: block;
  font-size: clamp(1.6rem, 2vw, 1.8rem);
  letter-spacing: 0.06em;
  font-weight: 500;
}
.lst-col.chk .lst-col_inner .txt-main {
  background: linear-gradient(transparent 80%, var(--c-note) 80%);
}
.lst-col.chk .lst-col_inner::before {
  content: "";
  margin: 0 auto;
  display: block;
  width: 2em;
  height: 2em;
  background-color: var(--c-note);
  -webkit-mask-image: url("../img/check_circle.svg");
          mask-image: url("../img/check_circle.svg");
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
}
.lst-col.step .lst-col_inner:last-child::after {
  content: none;
}
.lst-col.step .lst-col_inner::after {
  content: "";
  position: absolute;
  right: -2.5em;
  top: -5em;
  bottom: 0;
  margin: auto;
  display: inline-block;
  width: 2em;
  height: 2em;
  background-color: var(--c-2ndary);
  -webkit-mask-image: url("../img/ico-arrow.svg");
          mask-image: url("../img/ico-arrow.svg");
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.lst-col.step .lst-col_inner .ttl_sub {
  text-align: center;
}
.lst-col.step .lst-col_inner .img {
  margin: 0 auto;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
}
.lst-col.step .lst-col_inner .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 896px) {
  .lst-col.step {
    gap: 2em;
  }
  .lst-col.step .lst-col_inner {
    margin: 1em auto 0;
    width: 50%;
    text-align: center;
  }
  .lst-col.step .lst-col_inner::after {
    right: 0;
    top: unset;
    bottom: -2em;
    left: 0;
    transform: rotate(90deg);
  }
  .lst-col.step .lst-col_inner .img {
    width: 80%;
  }
}
@media (max-width: 480px) {
  .lst-col.step .lst-col_inner {
    width: 80%;
  }
}

/*リスト-横に並べるだけ-*/
.item_para {
  margin: 1.5em 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.item_para li {
  margin: 0.25em 0;
  padding: 0 1em;
  border-left: 1px solid var(--c-primary);
}
.item_para li:last-child {
  border-right: 1px solid var(--c-primary);
}

.lst-equipment {
  padding: 40px 50px;
  border: 3px double #333;
  margin: 0 auto 50px;
  width: 90%;
}
@media (max-width: 896px) {
  .lst-equipment {
    padding: 30px 15px;
  }
}
.lst-equipment ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
  gap: 12px 0;
}
@media (max-width: 896px) {
  .lst-equipment ul {
    gap: 6px 0;
  }
}
.lst-equipment ul li {
  width: 50%;
  text-indent: -16px;
  padding-left: 16px;
  word-break: break-all;
}
@media (max-width: 896px) {
  .lst-equipment ul li {
    width: 100%;
  }
}
.lst-equipment ul li::before {
  content: "・";
}
.lst-equipment p {
  text-align: right;
}

.lst-gallery {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 1em auto 0;
  width: 90%;
  gap: 1em;
}
.lst-gallery li {
  width: 30.7692307692%;
}
.lst-gallery li .img {
  margin: 0 auto;
  width: 100%;
  aspect-ratio: 4/3;
}
.lst-gallery li .img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lst-gallery li .img figcaption {
  text-align: center;
  line-height: 2;
}
@media (max-width: 896px) {
  .lst-gallery li {
    width: 44.4444444444%;
  }
}
@media (max-width: 480px) {
  .lst-gallery {
    width: 80%;
    gap: 1.5em;
  }
  .lst-gallery li {
    width: 100%;
  }
}

/*地図*/
.box-map iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 5/3;
}
@media (max-width: 896px) {
  .box-map iframe {
    aspect-ratio: 1/1;
  }
}

/*住所用ブロック(dl)*/
.lst-overview {
  display: flex;
  height: -moz-max-content;
  height: max-content;
  gap: 0.5em;
  flex-wrap: wrap;
}
.lst-overview dt {
  width: 40%;
  padding: 1em 0.5em 1.5em;
  border-bottom: 1px solid var(--c-txt);
  font-size: clamp(1.2rem, 1rem + 0.625vw, 1.4rem);
}
.lst-overview dd {
  margin: 0;
  width: 56%;
  padding: 1em 0.5em 1.5em;
  border-bottom: 1px solid var(--c-txt);
  font-size: clamp(1.2rem, 1rem + 0.625vw, 1.4rem);
}
.lst-overview p:not(:last-child) {
  margin-bottom: 10px;
}
.lst-overview ul li {
  text-indent: -14px;
  padding-left: 14px;
}
.lst-overview ul li:not(:last-child) {
  margin-bottom: 6px;
}
@media (max-width: 896px) {
  .lst-overview dt {
    width: -moz-fit-content;
    width: fit-content;
  }
  .lst-overview dd {
    width: 100%;
  }
}

.appeal_text {
  width: 70%;
  margin: 60px auto;
  font-size: 2.4rem;
  border: 3px double #fff;
  color: #fff;
  background: #e75d78;
  text-align: center;
  padding: 20px;
}
@media (max-width: 896px) {
  .appeal_text {
    width: 100%;
    font-size: 1.7rem;
  }
}

@media (max-width: 896px) {
  .box-map {
    width: 100%;
    margin: 1em auto 0;
  }
  .box-map iframe {
    aspect-ratio: 5/3;
  }
}

/*mailform*/
.mailform {
  padding-top: 3em;
}
.mailform dl {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 1em auto 0;
  width: 100%;
  border-spacing: 1em;
}
.mailform dt {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5em;
  padding: 1.5em 1em 2em;
  width: 20%;
  text-align: left;
  font-size: clamp(1.4rem, 1.8vw, 1.6rem);
  line-height: 1.5;
  font-weight: 500;
  border-bottom: 1px solid #333;
}
.mailform dt.inq::after {
  content: "必須";
  display: inline-block;
  font-size: clamp(1.2rem, 1rem + 0.625vw, 1.1rem);
  border-radius: 24px;
  padding: 0.4em 0.5em;
}
.mailform dd {
  margin: 0;
  padding: 1.5em 1em 2em;
  width: 74%;
  font-size: clamp(1.4rem, 1rem + 0.625vw, 1.6rem);
  letter-spacing: 0.06em;
  border-bottom: 1px solid #333;
}
@media (max-width: 896px) {
  .mailform dt {
    padding: 1.5em 1em 0;
    width: 100%;
    border-bottom: 0;
    font-weight: 800;
  }
  .mailform dt::after {
    margin-left: 2em;
  }
  .mailform dd {
    padding: 0 1em 2em;
    width: 100%;
  }
}

/*メール送信ボタン*/
.box-send {
  margin: 1.5em auto 0;
  text-align: center;
  margin-bottom: min(112px, 18vw);
}
.box-send a {
  text-decoration: none;
}
.box-send .btn {
  margin-top: 1.5em;
}

/*メール確認*/
.box-confirm {
  width: min(800px, 90%);
  margin: 0 auto;
  margin-bottom: min(112px, 18vw);
  text-align: center;
}
.box-confirm .note {
  font-weight: 600;
}
.box-confirm a {
  display: inline-block;
  text-decoration: none;
}
.box-confirm a.btn {
  margin: 1em auto;
}
.box-confirm table {
  text-align: left;
  width: min(800px, 100%);
  margin: 1em auto;
  border-collapse: collapse;
}
.box-confirm tr {
  border: 1px solid var(--c-primary);
}
.box-confirm th {
  padding: 2em 1em;
  width: 30%;
  border-right: 1px solid var(--c-primary);
  background: var(--c-2ndary);
}
.box-confirm td {
  padding: 2em 1em;
  width: 70%;
  background: var(--c-white);
}
.box-confirm .box-send {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3vw;
}
.box-confirm .box-send input {
  width: clamp(280px, 25vw, 300px);
}
@media (max-width: 896px) {
  .box-confirm .box-confirm {
    margin: 0;
    width: 100%;
  }
  .box-confirm tr {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .box-confirm th {
    width: 100%;
    border-right: 0;
  }
  .box-confirm td {
    width: 100%;
  }
}

/*footer*/
.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 2vw 1.5em 2vw;
}
.footer .footer_navi {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.footer .copy {
  padding: 2vw;
  width: 100%;
  text-align: center;
  font-size: clamp(1.2rem, 1.2rem + 0.625vw, 1.4rem);
  line-height: 1.75;
  color: var(--c-white);
}
.footer .copy img {
  display: inline;
  padding-left: 1em;
}
.footer .copy a {
  text-decoration: none;
}
@media (max-width: 1180px) {
  .footer {
    justify-content: center;
  }
  .footer .box-menu {
    position: relative;
    right: unset;
    top: unset;
    width: 100%;
    height: auto;
    margin: 0;
    overflow: hidden;
    z-index: 0;
    opacity: 1;
  }
  .footer .menu {
    display: block;
    opacity: 1;
    margin: auto;
    height: auto;
  }
  .footer .menu li {
    margin: 2vw auto 0;
    width: 100%;
  }
  .footer .copy {
    margin: 4vw auto 0;
  }
}
@media (max-width: 480px) {
  .footer {
    padding: 12vw 0 0;
  }
}

.pagetop.visible {
  opacity: 1;
}
.pagetop.on {
  position: absolute;
  bottom: 13em;
}/*# sourceMappingURL=parts.css.map */