@charset "UTF-8";
/* Scss Document */
/* Scss Document */
@import url("https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap");
/*---------------------------------------------
    all
---------------------------------------------*/
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-feature-settings: "palt";
}

@media screen and (min-width: 750px) {
  .u-sp {
    display: none !important;
  }
}
@media screen and (max-width: 750px) {
  .u-pc {
    display: none !important;
  }
}
.wrap {
  margin: auto;
  position: relative;
  overflow: clip;
  background: #fff;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 750px) {
  .wrap {
    min-width: 1200px;
  }
}
@media screen and (max-width: 750px) {
  .wrap {
    font-size: 3.73vw;
  }
}

.-mincho {
  font-family: "Zen Old Mincho", serif;
}

.-en {
  font-family: "Bodoni Moda", serif;
}

.-crimson {
  font-family: "Crimson Text", serif;
}

.inner {
  margin: auto;
  position: relative;
  width: 94%;
}
@media screen and (min-width: 750px) {
  .inner {
    max-width: 1120px;
  }
}
@media screen and (max-width: 750px) {
  .inner {
    max-width: 90vw;
  }
}

.min_inner {
  margin: auto;
  position: relative;
  width: 94%;
}
@media screen and (min-width: 750px) {
  .min_inner {
    max-width: 1060px;
  }
}
@media screen and (max-width: 750px) {
  .min_inner {
    max-width: 90vw;
  }
}

main {
  display: block;
  position: relative;
  z-index: 1;
}

/* フェードイン */
.is-fadeIn {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition: opacity 1s, transform 1s;
}

.is-fadeIn.is-scrollIn {
  opacity: 1;
  transform: translate(0, 0);
}

/* underline */
@-webkit-keyframes underline-link {
  0% {
    background-size: 0% 1px;
  }
  to {
    background-size: 100% 1px;
  }
}
@keyframes underline-link {
  0% {
    background-size: 0% 1px;
  }
  to {
    background-size: 100% 1px;
  }
}
/**/
.slidemotion {
  position: relative;
}
.slidemotion::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 15;
  background: rgb(255, 255, 255);
  transition: left 1s ease-in-out;
  overflow: hidden;
}

.is-scrollIn.slidemotion::before {
  left: 100%;
}

.js-loading {
  background: #fff;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.js-loading svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/*---------------------------------------------
    header
---------------------------------------------*/
header {
  padding: 0 100px 9px 50px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  font-size: 1.5rem;
  min-width: 1200px;
  background: #fff;
  box-shadow: 0 4px 10px #D9D9D9;
  transition: 0.4s;
}
@media screen and (max-width: 1500px) {
  header {
    padding: 0 20px 0 10px;
  }
}
@media screen and (max-width: 750px) {
  header {
    padding: 2.6vw;
    min-width: 1px;
    font-size: 3.73vw;
  }
}

.head_inner {
  max-width: 1440px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
}
@media screen and (max-width: 750px) {
  .head_inner {
    justify-content: flex-end;
  }
}

.headLogo {
  width: 308px;
  display: block;
}
@media screen and (max-width: 1300px) {
  .headLogo {
    width: 248px;
  }
}
@media screen and (max-width: 750px) {
  .headLogo {
    width: 49.8vw;
    position: absolute;
    left: -3vw;
    top: 2vw;
    z-index: 1000;
  }
}

.head_content {
  display: flex;
  align-items: center;
}

@media screen and (min-width: 750px) {
  .headNav {
    margin: 0 30px 0 0;
    display: block !important;
  }
}
@media screen and (min-width: 1500px) {
  .headNav {
    margin: 0 70px 0 0;
  }
}
@media screen and (max-width: 750px) {
  .headNav {
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    right: 0;
    z-index: 999;
    background: #F7F4F0;
    padding: 24vw 5vw 13vw;
    overflow: auto;
  }
}

.headNav_inner {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media screen and (max-width: 750px) {
  .headNav_inner {
    flex-direction: column-reverse;
    align-items: center;
  }
}

.headNav_info {
  display: flex;
  align-items: center;
  color: #3D4F72;
  margin: 0 0 0.5em;
}
@media screen and (max-width: 750px) {
  .headNav_info {
    display: block;
    margin: 0;
  }
}

.headNav_info_list {
  display: flex;
  font-weight: 500;
  font-size: 1.3rem;
  border-left: 1px solid #3D4F72;
  line-height: 1;
  margin: 0 2em 0 0;
}
@media screen and (max-width: 750px) {
  .headNav_info_list {
    font-size: 3.46vw;
    margin: 0 0 8vw;
    justify-content: center;
    border: none;
  }
}
.headNav_info_list > li {
  border-right: 1px solid #3D4F72;
}
@media screen and (max-width: 750px) {
  .headNav_info_list > li {
    border-left: 1px solid #3D4F72;
  }
}
.headNav_info_list > li > a {
  display: block;
  padding: 0 2em;
}
@media screen and (max-width: 750px) {
  .headNav_info_list > li > a {
    padding: 0 8vw;
  }
}
.headNav_info_list .toggleItem {
  display: block;
  padding: 0 2em;
}
@media screen and (max-width: 750px) {
  .headNav_info_list .toggleItem {
    padding: 0 8vw;
  }
}

.toggleItem {
  cursor: pointer;
}

.head_tel {
  margin: 0 1.5em 0 0;
}
@media screen and (max-width: 750px) {
  .head_tel {
    margin: 0 0 10.6vw;
    text-align: center;
  }
}

.head_tel_link {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 750px) {
  .head_tel_link {
    font-size: 8vw;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .head_tel_link::before {
    content: "";
    display: block;
    width: 9.6vw;
    height: 5.3vw;
    background: url("../img/common/head_tel.svg") no-repeat;
    background-size: contain;
    margin: 0 2.6vw 0 0;
  }
}

.head_tel_txt {
  font-size: 3.2vw;
  text-align: left;
}

.head_snsList {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .head_snsList {
    justify-content: center;
  }
}
.head_snsList li {
  width: 25px;
}
@media screen and (max-width: 750px) {
  .head_snsList li {
    width: 9.6vw;
  }
}
.head_snsList li:not(:last-child) {
  margin: 0 20px 0 0;
}
@media screen and (max-width: 750px) {
  .head_snsList li:not(:last-child) {
    margin: 0 10vw 0 0;
  }
}
.head_snsList a {
  display: block;
  line-height: 1;
}

.headNav_list {
  text-align: center;
}
@media screen and (min-width: 750px) {
  .headNav_list {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .headNav_list .mr0 {
    margin-right: 0 !important;
  }
}
@media screen and (max-width: 750px) {
  .headNav_list {
    width: 100%;
    text-align: left;
    border-top: 1px solid #3D4F72;
    margin: 0 0 13vw;
  }
}
@media screen and (max-width: 750px) {
  .headNav_list > li {
    border-bottom: 1px solid #3D4F72;
  }
}
.headNav_list > li:not(:last-child) {
  margin: 0 40px 0 0;
}
@media screen and (max-width: 1570px) {
  .headNav_list > li:not(:last-child) {
    margin: 0 20px 0 0;
  }
}
@media screen and (max-width: 750px) {
  .headNav_list > li:not(:last-child) {
    margin: 0;
  }
}
@media screen and (max-width: 750px) {
  .headNav_list > li > a {
    padding: 1.3em 0;
    display: flex;
    align-items: center;
  }
}
@media screen and (min-width: 750px) {
  .headNav_list > li > a {
    display: block;
    padding: 0 0 0.2em;
    background: linear-gradient(#3D4F72, #3D4F72) 0 100%/0 1px no-repeat;
  }
  .headNav_list > li > a:hover {
    opacity: 1;
    animation: underline-link 0.6s forwards;
  }
}

.headNav_list_ja {
  font-weight: 500;
}
@media screen and (max-width: 750px) {
  .headNav_list_ja {
    width: 10em;
  }
}

.headNav_list_en {
  font-size: 1rem;
  font-weight: 700;
  color: #3D4F72;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 750px) {
  .headNav_list_en {
    font-size: 2.6vw;
  }
}

.headNav_list_tit {
  padding: 1.3em 0;
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (min-width: 750px) {
  .headNav_list_tit {
    display: block;
    padding: 0 0 0.2em;
    background: linear-gradient(#3D4F72, #3D4F72) 0 100%/0 1px no-repeat;
  }
  .headNav_list_tit:hover {
    opacity: 1;
    animation: underline-link 0.6s forwards;
  }
}
.headNav_list_tit .-plus {
  position: absolute;
  display: inline-block;
  width: 5.3vw;
  height: 1px;
  background: #3D4F72;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.headNav_list_tit .-plus::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
  transition: 0.4s;
}
.headNav_list_tit.-active .-plus::after {
  transform: rotate(180deg);
}

.headNav_sp_content {
  display: none;
  font-size: 1.4rem;
  color: #3D4F72;
  font-weight: 500;
}
@media screen and (max-width: 750px) {
  .headNav_sp_content {
    padding: 2.6vw 0 5.3vw;
    font-size: 3.2vw;
  }
}
@media screen and (min-width: 750px) {
  .headNav_sp_content {
    position: absolute;
    left: 0;
    top: 100%;
    padding: 50px 0 30px;
    background: #fff;
    width: 100%;
  }
}

@media screen and (min-width: 750px) {
  .headNav_sp_content_inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
  }
}

@media screen and (min-width: 750px) {
  .headNav_sp_content_list {
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.75;
  }
}
@media screen and (min-width: 750px) {
  .headNav_sp_content_list li:first-child {
    margin: 0 80px 0 0 !important;
    border-bottom: 1px solid #3D4F72;
    min-width: 170px;
  }
}
.headNav_sp_content_list li:not(:last-child) {
  margin: 0 0 1.5em;
}
@media screen and (min-width: 750px) {
  .headNav_sp_content_list li:not(:last-child) {
    margin: 0;
  }
}
.headNav_sp_content_list a {
  display: inline-flex;
  position: relative;
  align-items: center;
}
@media screen and (min-width: 750px) {
  .headNav_sp_content_list a {
    display: flex;
    justify-content: space-between;
  }
}
.headNav_sp_content_list a::after {
  content: "";
  display: block;
  width: 2.3vw;
  height: 2.1vw;
  background: url("../img/common/icon_link.svg") no-repeat;
  background-size: contain;
  margin-left: 1em;
  background-position: center center;
}
@media screen and (min-width: 750px) {
  .headNav_sp_content_list a::after {
    width: 10px;
    height: 10px;
  }
}

@media screen and (min-width: 750px) {
  .headNav_sp_content_list_item {
    margin: 0;
    border-left: 1px solid #D9D9D9;
  }
  .headNav_sp_content_list_item:last-child {
    border-right: 1px solid #D9D9D9;
  }
  .headNav_sp_content_list_item a {
    padding: 0 30px;
  }
  .headNav_sp_content_list_item a::after {
    display: none;
  }
}

.headNav_houseList {
  display: flex;
}
@media screen and (max-width: 750px) {
  .headNav_houseList {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media screen and (min-width: 750px) {
  .headNav_houseList {
    border-left: 1px solid #D9D9D9;
  }
}
@media screen and (max-width: 750px) {
  .headNav_houseList li {
    width: 49%;
    margin: 0 0 6.6vw;
  }
}
@media screen and (min-width: 750px) {
  .headNav_houseList li {
    border-right: 1px solid #D9D9D9;
  }
}
.headNav_houseList a {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 750px) {
  .headNav_houseList a {
    display: block;
    padding: 0 30px;
    white-space: nowrap;
  }
}

.headNav_houseList_img {
  width: 100px;
  margin: 0 auto 5px;
}
@media screen and (max-width: 750px) {
  .headNav_houseList_img {
    width: 13vw;
    margin: 0 1.6vw 0 0;
  }
}

.head_cv_list {
  color: #fff;
  font-weight: 500;
  display: flex;
  position: relative;
  z-index: 1002;
}
@media screen and (max-width: 750px) {
  .head_cv_list {
    font-size: 2.6vw;
    margin: 0 0 16vw;
  }
}
.head_cv_list li:not(:last-child) {
  margin: 0 10px 0 0;
}
@media screen and (max-width: 750px) {
  .head_cv_list li:not(:last-child) {
    margin: 0 2.6vw 0 0;
  }
}
.head_cv_list a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 100px;
}
@media screen and (max-width: 1300px) {
  .head_cv_list a {
    width: 96px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 750px) {
  .head_cv_list a {
    width: 26vw;
    height: 24vw;
    font-size: 4vw;
    line-height: 1.1;
  }
}
.head_cv_list a img {
  height: 100%;
  width: auto;
  transition: 0.4;
}
@media screen and (min-width: 750px) {
  .head_cv_list a:hover img {
    opacity: 0;
  }
}
.head_cv_list .-reserve {
  background-color: #D0B005;
  border: 1px solid #D0B005;
}
@media screen and (min-width: 750px) {
  .head_cv_list .-reserve {
    transition: 0.4s;
  }
  .head_cv_list .-reserve .head_cv_list_icon {
    background-image: url("../img/common/icon_reserve_h.svg");
  }
  .head_cv_list .-reserve:hover {
    opacity: 1;
    background-color: #fff;
    color: #D0B005;
  }
}
.head_cv_list .-request {
  background-color: #3D4F72;
  border: 1px solid #3D4F72;
}
@media screen and (min-width: 750px) {
  .head_cv_list .-request {
    transition: 0.4s;
  }
  .head_cv_list .-request .head_cv_list_icon {
    background-image: url("../img/common/icon_request_h.svg");
  }
  .head_cv_list .-request:hover {
    opacity: 1;
    background-color: #fff;
    color: #3D4F72;
  }
}
.head_cv_list .-miele {
  background-color: #8C0014;
  border: 1px solid #8C0014;
  letter-spacing: -0.1em;
}
@media screen and (min-width: 750px) {
  .head_cv_list .-miele {
    transition: 0.4s;
  }
  .head_cv_list .-miele .head_cv_list_icon {
    background-image: url("../img/common/icon_miele_h.svg");
  }
  .head_cv_list .-miele:hover {
    opacity: 1;
    background-color: #fff;
    color: #8C0014;
  }
}

.head_cv_list_icon {
  height: 34px;
  width: auto;
  margin: 0 0 5px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media screen and (max-width: 750px) {
  .head_cv_list_icon {
    height: 8.5vw;
    margin: 0 0 1.2vw;
  }
}

@media screen and (max-width: 750px) {
  .head_cv_list_tit {
    min-height: 2.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}

.menu_wrap {
  width: 13.3vw;
  height: 16vw;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0 2.6vw;
  z-index: 1000;
  flex-direction: column;
}

.menu-trigger {
  position: relative;
  width: 8vw;
  height: 5.3vw;
}

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all 0.4s;
  cursor: pointer;
  z-index: 1000;
}
@media screen and (min-width: 750px) {
  .menu-trigger,
  .menu-trigger span {
    display: none;
  }
}

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333333;
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
}

.menu-trigger span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}

.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

.active .menu-trigger span:nth-of-type(1) {
  transform: translateY(2.4vw) rotate(-30deg);
}

.active .menu-trigger span:nth-of-type(2) {
  opacity: 0;
}

.active .menu-trigger span:nth-of-type(3) {
  transform: translateY(-2.5vw) rotate(30deg);
}

.menu_txt {
  font-size: 3.1vw;
}
.menu_txt::before {
  content: "Menu";
}

.active .menu_txt::before {
  content: "Close";
}

/*---------------------------------------------
    footer
---------------------------------------------*/
footer {
  background: #F7F4F0;
  font-size: 1.5rem;
  margin: 250px 0 0;
}
@media screen and (max-width: 750px) {
  footer {
    font-size: 3.73vw;
    margin: 32vw 0 0;
  }
}

/* reserve */
.foot_reserve {
  padding: 70px 0;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .foot_reserve {
    padding: 9vw 0 21vw;
  }
}

.foot_sec_tit {
  color: #D0B005;
  font-size: 15rem;
  line-height: 1;
  position: absolute;
  left: 50%;
  top: -70px;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 750px) {
  .foot_sec_tit {
    font-size: 13.3vw;
    top: -9vw;
  }
}

.foot_sec_subTit {
  font-size: 2rem;
  margin: 0 0 0.7em;
}
@media screen and (max-width: 750px) {
  .foot_sec_subTit {
    font-size: 5.3vw;
    margin: 0 0 8vw;
  }
}

.foot_sec_txt {
  margin: 0 0 45px;
  line-height: 2;
}
@media screen and (max-width: 750px) {
  .foot_sec_txt {
    text-align: left;
    margin: 0 0 10vw;
  }
}

/* access */
.foot_access_list {
  display: flex;
}
@media screen and (max-width: 750px) {
  .foot_access_list {
    display: block;
  }
}
.foot_access_list li {
  width: 50%;
  position: relative;
}
@media screen and (max-width: 750px) {
  .foot_access_list li {
    width: 100%;
  }
}
.foot_access_list li::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, 0.5);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  transition: 0.4s;
}
.foot_access_list .-info {
  background: url("../img/common/foot_img.jpg") no-repeat;
  background-size: cover;
  background-position: center center;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media screen and (max-width: 750px) {
  .foot_access_list .-info {
    display: block;
    background-image: url("../img/common/foot_img_sp.jpg");
  }
}
@media screen and (min-width: 750px) {
  .foot_access_list .-map:hover::after {
    opacity: 0;
    visibility: hidden;
  }
}
@media screen and (max-width: 750px) {
  .foot_access_list .-map {
    height: 53.3vw;
  }
  .foot_access_list .-map::after {
    display: none;
  }
}
.foot_access_list .-map iframe {
  width: 100%;
  height: 100%;
}

.foot_access_list_content {
  position: relative;
  z-index: 2;
  color: #fff;
  font-weight: 500;
  text-align: center;
  padding: 90px 0 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .foot_access_list_content {
    padding: 10.6vw 0 14.6vw;
    display: block;
    text-align: left;
  }
}

.foot_access_logo {
  width: 563px;
  margin: 0 auto 4px;
}
@media screen and (max-width: 750px) {
  .foot_access_logo {
    width: 94vw;
    margin: 0 auto;
  }
}

.foot_access_address {
  display: block;
  margin: 0 0 30px;
}
@media screen and (max-width: 750px) {
  .foot_access_address {
    text-align: left;
    display: inline-block;
    margin: 0 10vw 2.6vw;
    font-size: 3.2vw;
  }
}

.foot_access_tel {
  font-size: 5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 750px) {
  .foot_access_tel {
    font-size: 8vw;
    justify-content: flex-start;
    margin: 0 10vw;
  }
}
.foot_access_tel::before {
  content: "";
  display: block;
  width: 65px;
  height: 36px;
  background: url("../img/common/foot_tel.svg") no-repeat;
  background-size: contain;
  margin: 0 20px 0 0;
}
@media screen and (max-width: 750px) {
  .foot_access_tel::before {
    margin: 0 3.4vw 0 0;
  }
}

.foot_access_txt {
  margin: 0 0 50px;
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  text-align: left;
}
@media screen and (max-width: 750px) {
  .foot_access_txt {
    margin: 0 10vw 13vw;
    font-size: 3.2vw;
  }
}

/* sitemap */
.foot_sitemap {
  padding: 80px 0;
  font-weight: 500;
  line-height: 2.8;
  color: #3D4F72;
  font-size: 1.4rem;
}
@media screen and (max-width: 750px) {
  .foot_sitemap {
    font-size: 3.73vw;
    padding: 12vw 0 8vw;
  }
}
.foot_sitemap .inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 750px) {
  .foot_sitemap .inner {
    max-width: 1362px;
  }
}
@media screen and (max-width: 750px) {
  .foot_sitemap .inner {
    display: block;
    padding: 0;
    border-bottom: none;
    max-width: 100%;
    border-top: 1px solid #3D4F72;
  }
}

@media screen and (max-width: 750px) {
  .foot_sitemapList > li {
    border-bottom: 1px solid #3D4F72;
  }
}
@media screen and (max-width: 750px) {
  .foot_sitemapList > li > a {
    padding: 2.6vw 0;
  }
}
@media screen and (max-width: 750px) {
  .foot_sitemapList a {
    display: block;
  }
}
@media screen and (min-width: 750px) {
  .foot_sitemapList a {
    transition: 0.4s;
  }
  .foot_sitemapList a:hover {
    opacity: 1;
    color: rgba(51, 51, 51, 0.5);
  }
}

@media screen and (min-width: 750px) {
  .foot_sitemapList_subList {
    line-height: 2.2;
  }
}
@media screen and (min-width: 750px) {
  .foot_sitemapList_subList li::before {
    content: "ー";
    display: inline-block;
    margin: 0 0.2em 0 0;
  }
}

.foot_sitemapList_tit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 2.6vw 0;
}
.foot_sitemapList_tit .-plus {
  position: relative;
  display: inline-block;
  width: 5.3vw;
  height: 1px;
  background: #3D4F72;
}
.foot_sitemapList_tit .-plus::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
  transition: 0.4s;
}
.foot_sitemapList_tit.-active .-plus::after {
  transform: rotate(180deg);
}

@media screen and (min-width: 750px) {
  .foot_sitemapList_content {
    display: block !important;
  }
}
@media screen and (max-width: 750px) {
  .foot_sitemapList_content {
    padding: 0 0 2.6vw 1em;
    display: none;
  }
}

.foot_sitemap_cv {
  margin: 13.3vw 0 0;
  text-align: center;
}

.foot_sitemap_cvList li {
  margin: 0 0 13.3vw;
}

.foot_sitemap_cv_link {
  font-size: 3.2vw;
  display: inline-block;
  border-bottom: 1px solid #3D4F72;
}

/**/
.foot_area {
  background: #3D4F72;
  padding: 40px 0;
  font-weight: 500;
  color: #fff;
  line-height: 2.3;
}
@media screen and (max-width: 750px) {
  .foot_area {
    padding: 5.3vw 0;
  }
}

.copyright {
  padding: 10px 0;
  display: block;
  background: #fff;
  text-align: center;
  font-size: 1.2rem;
}
@media screen and (max-width: 750px) {
  .copyright {
    padding: 2.6vw 0;
    font-size: 2.6vw;
  }
}

.floatLink {
  display: flex;
  justify-content: center;
  font-size: 4vw;
  position: fixed;
  left: 50%;
  color: #fff;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 500;
}
.floatLink li {
  width: 30vw;
}
.floatLink a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.6vw;
}
.floatLink .-reserve {
  background: #D0B005;
}
.floatLink .-contact {
  background: #3D4F72;
}
.floatLink.-head {
  position: relative;
  left: auto;
  bottom: auto;
  transform: none;
  z-index: 1001;
}

.floatLink_icon {
  width: 4vw;
  margin: 0 2vw 0 0;
  line-height: 1;
}

.lower_flowting {
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0;
  background: #F3EBC1;
  border-top: 2px solid #D0B005;
  padding: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 500;
}

@media screen and (max-width: 750px) {
  .lower_flowting {
    padding: 4vw 2.6vw;
    display: block;
  }
  .lower_flowting::after {
    content: "";
    display: block;
    background: url("../img/common/arrow_cv_circle.svg") no-repeat;
    background-size: contain;
    width: 4vw;
    height: 4vw;
    position: absolute;
    top: 50%;
    right: 2.6vw;
    transform: translateY(-50%);
  }
}
@media screen and (min-width: 750px) {
  .lower_flowting:hover {
    opacity: 1;
  }
  .lower_flowting:hover .lower_flowting_link {
    background: #D54103;
  }
}
.lower_flowting_txt {
  width: 731px;
  margin: 0 23px 0 0;
}

@media screen and (max-width: 750px) {
  .lower_flowting_txt {
    margin: 0;
    width: 88vw;
  }
}
.lower_flowting_link {
  font-weight: 700;
  border-radius: 100px;
  padding: 8px 30px;
  background: #D0B005;
  font-size: 1.6rem;
  color: #fff;
  transition: 0.4s;
}

/*---------------------------------------------
    common
---------------------------------------------*/
.mainDetail {
  padding: 210px 0 0;
  display: block;
}
@media screen and (max-width: 750px) {
  .mainDetail {
    padding: 32vw 0 0;
  }
}

.archive_article {
  margin: 140px 0 0;
}
@media screen and (max-width: 750px) {
  .archive_article {
    margin: 14vw 0 0;
  }
}

/* page */
.page_titArea {
  padding: 50px 0 55px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 750px) {
  .page_titArea {
    padding: 9vw 0 7vw;
  }
}
.page_titArea::after {
  content: "";
  display: block;
  width: 1px;
  height: 60px;
  background: #D0B005;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 750px) {
  .page_titArea::after {
    height: 8vw;
  }
}
.page_titArea.-bg {
  background: #F7F4F0;
  padding: 80px 0 45px;
}
@media screen and (max-width: 750px) {
  .page_titArea.-bg {
    padding: 12vw 0 8vw;
  }
}
.page_titArea.-bg::after {
  height: 120px;
}
@media screen and (max-width: 750px) {
  .page_titArea.-bg::after {
    height: 16vw;
  }
}

.page_tit {
  font-size: 7rem;
  letter-spacing: 0.2em;
  margin: 0 0 0.3em;
  color: #3D4F72;
  line-height: 1;
}
@media screen and (max-width: 750px) {
  .page_tit {
    font-size: 10vw;
  }
}

.page_subTit {
  font-size: 2rem;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 750px) {
  .page_subTit {
    font-size: 3.73vw;
  }
}

/* sec */
.secNav {
  padding: 70px 0 0;
  margin: 0 0 50px;
}
@media screen and (max-width: 750px) {
  .secNav {
    margin: 0 0 8vw;
    padding: 15vw 0 0;
  }
}

.linkList {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 750px) {
  .linkList {
    display: block;
  }
}
.linkList li:not(:last-child) {
  margin: 0 35px 0 0;
}
@media screen and (max-width: 750px) {
  .linkList li:not(:last-child) {
    margin: 0 0 6vw;
  }
}

.titArea {
  position: relative;
  margin: 0 0 40px;
}
@media screen and (max-width: 750px) {
  .titArea {
    margin: 0 0 10vw;
  }
}
.titArea::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 150%;
  bottom: 0;
  left: -1.5em;
  background: #3D4F72;
}
@media screen and (max-width: 750px) {
  .titArea::before {
    height: 150%;
    bottom: 0;
    left: -0.5em;
  }
}

.sec_subTit {
  font-size: 2rem;
  color: #D0B005;
}
@media screen and (max-width: 750px) {
  .sec_subTit {
    font-size: 5.3vw;
  }
}

.sec_tit {
  font-size: 2.5rem;
  font-weight: 500;
}
@media screen and (max-width: 750px) {
  .sec_tit {
    font-size: 5.3vw;
  }
}

.border_tit {
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
  margin: 0 0 30px;
  background: #3D4F72;
  padding: 0.25em 1em;
}
@media screen and (max-width: 750px) {
  .border_tit {
    font-size: 4vw;
    margin: 0 0 1em;
  }
}

.deco_tit {
  font-family: "Zen Old Mincho", serif;
  position: relative;
  font-size: 2.5rem;
  font-weight: 400;
  padding-left: 1em;
  margin: 0 0 20px;
}
@media screen and (max-width: 750px) {
  .deco_tit {
    font-size: 5vw;
    margin: 0 0 0.5em;
  }
}
.deco_tit::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: #D0B005;
  position: absolute;
  left: 0;
  top: 17px;
}
@media screen and (max-width: 750px) {
  .deco_tit::before {
    width: 2vw;
    height: 2vw;
    top: 3.5vw;
  }
}

/* breadcrumb */
.breadcrumb {
  padding: 10px 0;
  font-size: 1.3rem;
}
@media screen and (max-width: 750px) {
  .breadcrumb {
    font-size: 3vw;
    padding: 2vw 0;
  }
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media screen and (max-width: 750px) {
  .breadcrumb__list {
    justify-content: flex-start;
  }
}
.breadcrumb__list li {
  position: relative;
}
.breadcrumb__list li:not(:last-child) {
  margin: 0 3em 0 0;
}
.breadcrumb__list li:not(:last-child)::after {
  content: "|";
  width: 1em;
  text-align: center;
  position: absolute;
  left: calc(100% + 1em);
  top: 0;
}
@media screen and (min-width: 750px) {
  .breadcrumb__list a {
    transition: 0.4s;
  }
  .breadcrumb__list a:hover {
    opacity: 1;
    color: #D0B005;
  }
}

#booking-package button,
.linkBtn {
  display: inline-block;
  background: #3D4F72;
  border: 1px solid #3D4F72;
  text-align: center;
  width: 300px;
  color: #fff;
  font-weight: 500;
  padding: 13px;
  font-size: 1.5rem;
  line-height: 1.75;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  #booking-package button,
  .linkBtn {
    width: 80vw;
    padding: 0.9em;
    font-size: 4vw;
    display: block;
    margin: auto;
  }
}
@media screen and (min-width: 750px) {
  #booking-package button,
  .linkBtn {
    transition: 0.4s;
  }
  #booking-package button:hover,
  .linkBtn:hover {
    opacity: 1;
    background: none;
    color: #3D4F72;
  }
}
#booking-package button.-wh,
.linkBtn.-wh {
  background: none;
  border-color: #fff;
}
@media screen and (min-width: 750px) {
  #booking-package button.-wh,
  .linkBtn.-wh {
    transition: 0.4s;
  }
  #booking-package button.-wh:hover,
  .linkBtn.-wh:hover {
    color: #3D4F72;
    background: #fff;
  }
}
#booking-package button.return_form_button, #booking-package button.return_button, #booking-package button.-border,
.linkBtn.return_form_button,
.linkBtn.return_button,
.linkBtn.-border {
  background: none;
  color: #3D4F72;
}
@media screen and (min-width: 750px) {
  #booking-package button.return_form_button, #booking-package button.return_button, #booking-package button.-border,
  .linkBtn.return_form_button,
  .linkBtn.return_button,
  .linkBtn.-border {
    transition: 0.4s;
  }
  #booking-package button.return_form_button:hover, #booking-package button.return_button:hover, #booking-package button.-border:hover,
  .linkBtn.return_form_button:hover,
  .linkBtn.return_button:hover,
  .linkBtn.-border:hover {
    color: #fff;
    background: #3D4F72;
  }
}
@media screen and (min-width: 750px) {
  #booking-package button.-min,
  .linkBtn.-min {
    width: 220px;
  }
}
@media screen and (min-width: 750px) {
  #booking-package button.-max,
  .linkBtn.-max {
    width: 350px;
  }
}
#booking-package button.-accent,
.linkBtn.-accent {
  background: #D0B005;
  border-color: #D0B005;
}
#booking-package button.book_now_button, #booking-package button.-cv,
.linkBtn.book_now_button,
.linkBtn.-cv {
  background: #D54103;
  border-color: #D54103;
}
@media screen and (min-width: 750px) {
  #booking-package button.book_now_button, #booking-package button.-cv,
  .linkBtn.book_now_button,
  .linkBtn.-cv {
    transition: 0.4s;
  }
  #booking-package button.book_now_button:hover, #booking-package button.-cv:hover,
  .linkBtn.book_now_button:hover,
  .linkBtn.-cv:hover {
    color: #D54103;
    background: #fff;
  }
}
#booking-package button.-arrow,
.linkBtn.-arrow {
  position: relative;
}
#booking-package button.-arrow::before,
.linkBtn.-arrow::before {
  content: "";
  display: block;
  width: 10px;
  height: 8px;
  background-image: url("../img/common/arrow_cv.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.4s;
}
@media screen and (min-width: 750px) {
  #booking-package button.-arrow:hover::before,
  .linkBtn.-arrow:hover::before {
    background-image: url("../img/common/arrow_cv_h.svg");
  }
}

/* booking */
@media screen and (min-width: 750px) {
  #bottomPanel {
    padding: 40px 0 10px !important;
    justify-content: center !important;
  }
}
@media screen and (max-width: 750px) {
  #bottomPanel {
    padding: 5vw 0 !important;
    justify-content: space-between;
  }
}

@media screen and (max-width: 750px) {
  #bottomPanel > button {
    margin: 0 auto 3vw !important;
  }
}

@media screen and (max-width: 750px) {
  #booking-package button {
    font-size: 3.2vw !important;
    width: 32% !important;
  }
}

@media screen and (min-width: 750px) {
  #booking-package_inputFormPanel .book_now_button, #booking-package_inputFormPanel .next_page_button, #booking-package-subscription_form .book_now_button,
  #booking-package_inputFormPanel .return_form_button {
    width: 300px !important;
    display: block;
    margin: auto;
  }
}
@media screen and (max-width: 750px) {
  #booking-package_inputFormPanel .book_now_button, #booking-package_inputFormPanel .next_page_button, #booking-package-subscription_form .book_now_button,
  #booking-package_inputFormPanel .return_form_button {
    width: 80vw !important;
    display: block;
    margin: auto;
  }
}

@media screen and (min-width: 750px) {
  #booking-package_inputFormPanel .cartPanel {
    margin: 40px 0 0 !important;
  }
}
@media screen and (max-width: 750px) {
  #booking-package_inputFormPanel .cartPanel {
    margin: 8vw 0 0 !important;
  }
}

#booking-package_inputFormPanel .row {
  padding: 0 !important;
}
@media screen and (min-width: 750px) {
  #booking-package_inputFormPanel .row {
    display: table;
  }
}

#booking-package_inputFormPanel .name {
  background: #F7F4F0;
  vertical-align: middle;
}
@media screen and (min-width: 750px) {
  #booking-package_inputFormPanel .name {
    display: table-cell !important;
    width: 300px;
    padding: 20px 50px !important;
  }
}
@media screen and (max-width: 750px) {
  #booking-package_inputFormPanel .name {
    text-align: left;
    padding: 1em !important;
    width: 100%;
    display: block !important;
  }
}

#booking-package_inputFormPanel .value {
  vertical-align: middle;
}
@media screen and (min-width: 750px) {
  #booking-package_inputFormPanel .value {
    display: table-cell !important;
    padding: 20px 50px !important;
    width: 820px;
  }
}
@media screen and (max-width: 750px) {
  #booking-package_inputFormPanel .value {
    padding: 1.3em 1em 2em;
    width: 100%;
    display: block !important;
  }
}

#booking-package_inputFormPanel .required {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 750px) {
  #booking-package_inputFormPanel .required {
    justify-content: flex-start;
  }
}
#booking-package_inputFormPanel .required::after {
  content: "必須" !important;
  color: #fff !important;
  display: inline-block !important;
  background: #D54103;
  padding: 0.4em 0.8em;
  line-height: 1;
  position: static !important;
}
@media screen and (min-width: 750px) {
  #booking-package_inputFormPanel .required::after {
    margin: 0 0 0 12px !important;
  }
}
@media screen and (max-width: 750px) {
  #booking-package_inputFormPanel .required::after {
    font-size: 3.43vw;
    padding: 0.6vw 1.3vw;
    margin: 0 0 0 2vw !important;
  }
}

#booking-package input[type=text], #booking-package textarea {
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid #C4C4C4;
  width: 100%;
  padding: 1.2em 20px;
  background: #F5F5F5;
  box-shadow: none;
}
@media screen and (max-width: 750px) {
  #booking-package input[type=text], #booking-package textarea {
    padding: 4vw;
    border-radius: 3px;
  }
}

@media screen and (min-width: 750px) {
  #booking-package_inputFormPanel .title_in_form {
    padding: 0 0 30px;
  }
}
@media screen and (max-width: 750px) {
  #booking-package_inputFormPanel .title_in_form {
    padding: 0 0 7vw !important;
  }
}

#booking-package_schedulePage .selected_day_slot {
  background: #3D4F72 !important;
  color: #fff !important;
}

/* nav */
.categoryNav_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 0 -20px;
}
@media screen and (max-width: 750px) {
  .categoryNav_list {
    justify-content: flex-start;
    margin: 0 0 -3vw;
  }
}
.categoryNav_list li {
  margin: 0 30px 20px 0;
}
@media screen and (max-width: 750px) {
  .categoryNav_list li {
    margin: 0 4vw 3vw 0;
  }
}
.categoryNav_list a {
  padding: 5px 10px;
  display: block;
  color: #fff;
  background: #C4C4C4;
}
@media screen and (max-width: 750px) {
  .categoryNav_list a {
    padding: 1.3vw 2.6vw;
  }
}
.categoryNav_list a.-current {
  background: #D0B005;
}
@media screen and (min-width: 750px) {
  .categoryNav_list a {
    transition: 0.4s;
  }
  .categoryNav_list a:hover {
    opacity: 1;
    background: #D0B005;
  }
}

.pageNav {
  margin: 0 0 40px;
}
@media screen and (max-width: 750px) {
  .pageNav {
    margin: 0 0 10vw;
  }
}
.pageNav .inner {
  border-bottom: 1px dashed #333333;
  padding: 0 0 100px;
}
@media screen and (max-width: 750px) {
  .pageNav .inner {
    padding: 0 0 16vw;
  }
}

.wp-pagenavi,
.pageNav_list {
  display: flex;
  justify-content: center;
  align-items: center;
}
.wp-pagenavi span, .wp-pagenavi a,
.pageNav_list span,
.pageNav_list a {
  margin: 0 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  color: #3D4F72;
  background: #F7F4F0;
  border-radius: 50%;
  border: none;
  order: 1;
}
@media screen and (max-width: 750px) {
  .wp-pagenavi span, .wp-pagenavi a,
  .pageNav_list span,
  .pageNav_list a {
    margin: 0 2.5vw;
    width: 8vw;
    height: 8vw;
  }
}
.wp-pagenavi .extend,
.pageNav_list .extend {
  width: auto;
  height: auto;
  background: none;
}
.wp-pagenavi .current,
.pageNav_list .current {
  background: #3D4F72;
  color: #fff;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink,
.pageNav_list .previouspostslink,
.pageNav_list .nextpostslink {
  font-size: 0px;
  width: 13px;
  height: 25px;
  background-position: center center;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}
@media screen and (max-width: 750px) {
  .wp-pagenavi .previouspostslink,
  .wp-pagenavi .nextpostslink,
  .pageNav_list .previouspostslink,
  .pageNav_list .nextpostslink {
    width: 3.5vw;
    height: 7vw;
  }
}
.wp-pagenavi .previouspostslink,
.pageNav_list .previouspostslink {
  order: 0;
  background-image: url("../img/common/prev.svg");
}
.wp-pagenavi .nextpostslink,
.pageNav_list .nextpostslink {
  order: 2;
  background-image: url("../img/common/next.svg");
}

/* num */
.numList {
  padding: 30px 0 0;
}
@media screen and (max-width: 750px) {
  .numList {
    padding: 6vw 0 0;
  }
}
.numList li {
  padding: 30px 0 0 65px;
}
@media screen and (max-width: 750px) {
  .numList li {
    padding: 11vw 0 0;
  }
}
.numList li:not(:last-child) {
  margin: 0 0 60px;
}
@media screen and (max-width: 750px) {
  .numList li:not(:last-child) {
    margin: 0 0 8vw;
  }
}

.numList_titArea {
  position: relative;
}

.numList_num {
  position: absolute;
  font-style: italic;
  font-weight: 600;
  color: rgba(217, 217, 217, 0.6);
  left: -65px;
  top: -30px;
  font-size: 12rem;
  line-height: 1;
}
@media screen and (max-width: 750px) {
  .numList_num {
    left: -5vw;
    top: -11vw;
    font-size: 32vw;
  }
}

.numList_tit {
  font-size: 3.5rem;
  margin: 0 0 25px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 750px) {
  .numList_tit {
    font-size: 6.4vw;
    margin: 0 0 4.5vw;
  }
}

/*--20250929 新規 各エリアページ作成--*/
.areaList .areaGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

@media screen and (min-width: 750px) {
  .areaList .headNav_sp_content {
    position: absolute;
    left: 0;
    top: 100%;
    padding: 50px 0 30px;
    background: rgba(255, 255, 255, 0.8);
    width: 100%;
  }
  .areaList li {
    padding: 0 20px;
  }
}
.catalog_bnr {
  width: 800px;
  margin: 5% auto 0;
  display: block;
}

@media screen and (max-width: 750px) {
  .catalog_bnr {
    width: 82.6vw;
  }
}/*# sourceMappingURL=common.css.map */