@charset "UTF-8";
/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px
*/
@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  80% {
    transform: translateX(1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }
  80% {
    transform: translateX(-1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

::-moz-selection {
  background-color: pink;
}

::selection {
  background-color: pink;
}

html {
  font-size: 62.5%;
  overflow-x: auto;
}

body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}

a:link,
a:visited {
  color: inherit;
  text-decoration: none;
}

ul {
  padding-left: 0;
}

li {
  list-style: none;
}

textarea {
  resize: none;
}

body {
  font-family: "Noto Sans JP", serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  color: #282828;
}

.container {
  width: 100%;
  max-width: 133rem;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  margin-right: auto;
  margin-left: auto;
}

.is-md-hide {
  display: block;
}
@media screen and (max-width: 760px) {
  .is-md-hide {
    display: none;
  }
}

.is-md-show {
  display: none;
}
@media screen and (max-width: 760px) {
  .is-md-show {
    display: block;
  }
}

.l-footer__container {
  max-width: 1200px;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-right: auto;
  margin-left: auto;
}
.l-footer__up {
  border-top: 1px solid #e0e0e0;
  padding-top: 20px;
  padding-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 760px) {
  .l-footer__up {
    padding-top: 23px;
    padding-bottom: 50px;
  }
}
.l-footer__logo {
  width: 110px;
  display: inline-block;
  transition: all 0.3s;
  margin-bottom: 38px;
}
.l-footer__logo:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 760px) {
  .l-footer__logo {
    width: 70px;
    margin-bottom: 41px;
  }
}
.l-footer__prefectures {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
  margin-bottom: 38px;
}
@media screen and (max-width: 760px) {
  .l-footer__prefectures {
    flex-wrap: wrap;
    margin-bottom: 40px;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 20px;
  }
}
.l-footer__prefecture-li {
  font-size: 14px;
}
@media screen and (max-width: 760px) {
  .l-footer__prefecture-li {
    font-size: 12px;
    width: 33.3333333333%;
  }
}
.l-footer__prefecture {
  color: #282828 !important;
  transition: all 0.3s;
}
.l-footer__prefecture.selected {
  text-decoration: underline !important;
}
.l-footer__prefecture:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
.l-footer__logo-img {
  width: 100%;
}
.l-footer__menu {
  text-align: left;
}
.l-footer__menu:first-of-type {
  margin-bottom: 84px;
}
@media screen and (max-width: 760px) {
  .l-footer__menu:first-of-type {
    margin-bottom: 30px;
  }
}
.l-footer__h3 {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 7px;
}
@media screen and (max-width: 760px) {
  .l-footer__h3 {
    margin-bottom: 10px;
  }
}
.l-footer__ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 18px;
       column-gap: 18px;
}
@media screen and (max-width: 760px) {
  .l-footer__ul {
    flex-wrap: wrap;
    -moz-column-gap: 15px;
         column-gap: 15px;
    row-gap: 3px;
  }
}
.l-footer__li {
  font-size: 12px;
  position: relative;
}
.l-footer__li::after {
  content: "|";
  top: 50%;
  transform: translateY(-50%);
  right: -10px;
  position: absolute;
}
@media screen and (max-width: 760px) {
  .l-footer__li {
    font-size: 11px;
  }
}
.l-footer__a {
  transition: all 0.3s;
}
.l-footer__a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
.l-footer__down {
  padding-top: 38px;
  padding-bottom: 47px;
  background-color: #f6f5f0;
}
@media screen and (max-width: 760px) {
  .l-footer__down {
    padding-top: 48px;
    padding-bottom: 30px;
  }
}
.l-footer__down-ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
  margin-bottom: 27px;
}
@media screen and (max-width: 760px) {
  .l-footer__down-ul {
    row-gap: 15px;
    flex-wrap: wrap;
    -moz-column-gap: 0;
         column-gap: 0;
    margin-bottom: 54px;
  }
}
.l-footer__down-li {
  font-size: 12px;
  font-weight: 400;
  color: #282828;
}
@media screen and (max-width: 760px) {
  .l-footer__down-li {
    font-size: 11px;
    width: 50%;
  }
}
.l-footer__down-a {
  color: #282828 !important;
  transition: all 0.3s;
}
.l-footer__down-a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
.l-footer__flex {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 760px) {
  .l-footer__flex {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 50px;
  }
}
.l-footer__p {
  font-size: 12px;
}
@media screen and (max-width: 760px) {
  .l-footer__p {
    font-size: 11px;
  }
}
.l-footer__copy {
  font-size: 10px;
}

.l-header {
  height: 120px;
  line-height: 120px;
  width: 100%;
  border-bottom: 1px solid #e0e0e0;
}
@media screen and (max-width: 760px) {
  .l-header {
    line-height: 60px;
    height: 60px;
  }
}
.l-header__a {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 217px;
  transition: all 0.3s;
}
.l-header__a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 760px) {
  .l-header__a {
    width: 158px;
  }
}
.l-header__wrap {
  height: 120px;
  line-height: 120px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media screen and (max-width: 760px) {
  .l-header__wrap {
    line-height: 60px;
    height: 60px;
  }
}
.l-header__container {
  height: 120px;
  line-height: 120px;
  padding-left: 50px;
  padding-right: 50px;
}
@media screen and (max-width: 760px) {
  .l-header__container {
    line-height: 60px;
    height: 60px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.l-header__img {
  width: 100%;
}

.p-fv__container {
  max-width: 1300px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.p-fv__wrap {
  display: flex;
  flex-direction: row;
}
@media screen and (max-width: 760px) {
  .p-fv__wrap {
    flex-direction: column;
    row-gap: 30px;
  }
}
.p-fv__left {
  width: 50%;
  padding-top: 60px;
  padding-bottom: 119px;
  padding-right: 80px;
  border-right: 1px solid #e0e0e0;
}
@media screen and (max-width: 760px) {
  .p-fv__left {
    border-right: 0;
    order: 1;
    padding-top: 0;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 0;
    width: 100%;
  }
}
.p-fv__right {
  width: 50%;
  padding-top: 30px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
}
@media screen and (max-width: 760px) {
  .p-fv__right {
    width: 100%;
    padding: 0;
  }
}
.p-fv__image-group {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 10px;
       column-gap: 10px;
  margin-top: 20px;
}
@media screen and (max-width: 760px) {
  .p-fv__image-group {
    margin-top: 10px;
    padding-left: 20px;
  }
}
.p-fv__img-small {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 7px;
  cursor: pointer; /* カーソルをポインターに変更 */
  transition: opacity 0.3s ease; /* スムーズな変化 */
}
.p-fv__img-small.active {
  opacity: 0.7; /* アクティブなサムネイルを少し暗くする */
}
@media screen and (max-width: 760px) {
  .p-fv__img-small {
    width: 60px;
    height: 60px;
    border-radius: 3px;
  }
}
.p-fv__img {
  border-radius: 30px;
  max-height: 440px;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 760px) {
  .p-fv__img {
    border-radius: 0;
    max-height: 260px;
    height: 260px;
  }
}
.p-fv__infos {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 760px) {
  .p-fv__infos {
    row-gap: 6px;
    margin-bottom: 15px;
  }
}
.p-fv__info-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
@media screen and (max-width: 760px) {
  .p-fv__info-group {
    -moz-column-gap: 15px;
         column-gap: 15px;
  }
}
.p-fv__icon {
  width: 24px;
}
@media screen and (max-width: 760px) {
  .p-fv__icon {
    width: 13px;
  }
}
.p-fv__info-text {
  font-size: 12px;
  font-weight: 400;
}
.p-fv__info-text span {
  font-size: 16px;
}
@media screen and (max-width: 760px) {
  .p-fv__info-text span {
    font-size: 12px;
  }
}
.p-fv__features {
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
  margin-bottom: 40px;
}
@media screen and (max-width: 760px) {
  .p-fv__features {
    margin-bottom: 20px;
  }
}
.p-fv__feature {
  font-size: 11px;
  font-weight: 400;
  padding: 6px 15px;
  border-radius: 30px;
  background-color: #f6f5f0;
}
@media screen and (max-width: 760px) {
  .p-fv__feature {
    padding: 5px 10px;
    border-radius: 50px;
  }
}
.p-fv__detail {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 760px) {
  .p-fv__detail {
    font-size: 13px;
  }
}
.p-fv__h1 {
  margin: 0;
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 760px) {
  .p-fv__h1 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 500;
    line-height: 1.6;
  }
}
.p-fv__tag {
  margin-bottom: 10px;
  border-radius: 4px;
  background-color: #e8a2a2;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  height: 24px;
  width: 46px;
}
@media screen and (max-width: 760px) {
  .p-fv__tag {
    border-radius: 0;
  }
}

.p-aside {
  width: 340px;
  flex-shrink: 0;
}
@media screen and (max-width: 760px) {
  .p-aside {
    width: 100%;
  }
}
.p-aside--pc {
  display: block;
}
@media screen and (max-width: 1200px) {
  .p-aside--pc {
    display: none;
  }
}
.p-aside--sp {
  display: none;
}
@media screen and (max-width: 760px) {
  .p-aside--sp {
    display: block;
  }
}
.p-aside__h2 {
  font-size: 16px;
  font-weight: 700;
  color: #282828;
  margin-bottom: 20px;
}
.p-aside__img {
  width: 100px;
}
@media screen and (max-width: 760px) {
  .p-aside__img {
    width: 100%;
  }
}
.p-aside__group {
  padding-bottom: 40px;
}
.p-aside__group:nth-child(2) {
  padding-top: 30px;
}
.p-aside__group:nth-child(3) {
  padding-top: 30px;
}
.p-aside__group:not(:last-child) {
  border-bottom: 1px solid #e0e0e0;
}
@media screen and (max-width: 760px) {
  .p-aside__group {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.p-aside__group--swiper {
  padding-left: 10px;
  padding-right: 0;
  padding-bottom: 75px;
}
.p-aside__swiper-container {
  display: none;
}
@media screen and (max-width: 760px) {
  .p-aside__swiper-container {
    display: block;
  }
}
.p-aside__parent {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
@media screen and (max-width: 760px) {
  .p-aside__parent--pc {
    display: none;
  }
}
.p-aside__parent-2 {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.p-aside__child {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media screen and (max-width: 760px) {
  .p-aside__child {
    flex-direction: column;
    row-gap: 10px;
  }
}
.p-aside__anker-condition {
  width: 320px;
  height: 50px;
  border-radius: 25px;
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 13px;
       column-gap: 13px;
  background-color: #fff;
  position: relative;
  border: 1px solid #282828;
  padding-left: 23px;
  transition: all 0.3s;
}
@media screen and (max-width: 760px) {
  .p-aside__anker-condition {
    width: 100%;
  }
}
.p-aside__anker-condition:hover {
  border: 1px solid #cb6483;
  transition: all 0.3s;
}
.p-aside__anker-condition:hover .p-aside__condition-text {
  color: #cb6483;
  transition: all 0.3s;
}
.p-aside__condition-arrow {
  width: 4px;
  right: 23px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}
.p-aside__icon {
  height: 17px;
}
.p-aside__condition-text {
  font-size: 14px;
  transition: all 0.3s;
  font-weight: 500;
}
.p-aside__text {
  margin-bottom: 10px;
  font-size: 14px;
  transition: all 0.3s;
  color: #282828;
}
.p-aside__text:hover {
  color: #cb6483;
  text-decoration: underline !important;
}
@media screen and (max-width: 760px) {
  .p-aside__text {
    font-size: 12px;
  }
}
.p-aside__place {
  font-size: 11px;
  color: #989898;
}
.p-aside__last {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.p-aside__children {
  width: calc((100% - 10px) / 2);
  border: 1px solid #282828;
  height: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  border-radius: 25px;
}
.p-aside__children:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
.p-aside__lists {
  display: flex;
  flex-direction: column;
  row-gap: 18px;
}
.p-aside__another {
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 12px;
       column-gap: 12px;
  transition: all 0.3s;
}
.p-aside__another:hover .p-aside__texts {
  color: #cb6483;
  transition: all 0.3s;
}
.p-aside__another:hover .p-aside__texts {
  text-decoration: underline;
  transition: all 0.3s;
}
.p-aside__texts {
  font-size: 13px;
  transition: all 0.3s;
}
.p-aside__arrow-2 {
  width: 4px;
}

.p-flex {
  padding-top: 31px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  -moz-column-gap: 80px;
       column-gap: 80px;
}
@media screen and (max-width: 760px) {
  .p-flex {
    padding-top: 40px;
  }
}
.p-flex__main {
  width: calc(100% - 420px);
}
@media screen and (max-width: 1200px) {
  .p-flex__main {
    width: 100%;
  }
}
.p-flex__container {
  max-width: 1330px;
  padding-left: 15px;
  padding-right: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 760px) {
  .p-flex__container {
    padding-left: 0;
    padding-right: 0;
  }
}

.p-articles {
  padding-bottom: 180px;
}
@media screen and (max-width: 760px) {
  .p-articles {
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    padding-bottom: 50px;
  }
}
.p-articles__container {
  max-width: 1280px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (max-width: 760px) {
  .p-articles__container {
    padding-right: 0;
  }
}
.p-articles__h2 {
  margin-bottom: 40px;
  font-weight: 700;
  font-size: 30px;
}
@media screen and (max-width: 760px) {
  .p-articles__h2 {
    margin-bottom: 30px;
    font-size: 20px;
  }
}
.p-articles__places {
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
  margin-bottom: 10px;
}
.p-articles__place {
  font-size: 12px;
  font-weight: 400;
  color: #989898;
}
.p-articles__distance {
  font-size: 12px;
  font-weight: 400;
  color: #989898;
  margin-bottom: 10px;
}
@media screen and (max-width: 760px) {
  .p-articles__distance {
    font-size: 11px;
  }
}
.p-articles__anker:hover .p-articles__h3 {
  color: #cb6483;
  transition: all 0.3s;
}
.p-articles__h3 {
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 1.65;
  transition: all 0.3s;
}
@media screen and (max-width: 760px) {
  .p-articles__h3 {
    font-size: 12px;
  }
}
.p-articles__svg {
  width: 13.5px;
}
@media screen and (max-width: 760px) {
  .p-articles__svg {
    width: 11px;
  }
}
.p-articles__description {
  font-size: 12px;
  color: #989898;
  font-weight: 400;
}
@media screen and (max-width: 760px) {
  .p-articles__description {
    font-size: 11px;
  }
}
.p-articles__swiper-img {
  margin-bottom: 15px;
  height: 150px;
  width: 100%;
}
.p-articles__swiper-container {
  position: relative;
  /* 前へ次への矢印カスタマイズ */
  /* 前へ次への矢印カスタマイズ */
  /* 前への矢印カスタマイズ */
  /* 次への矢印カスタマイズ */
}
.p-articles__swiper-container .swiper-pagination-bullet-active {
  background-color: #e8a2a2 !important;
}
.p-articles__swiper-container .swiper-pagination-bullet {
  background-color: #a7a7a7;
  height: 8px;
  width: 8px;
  margin-right: 6px;
  margin-left: 6px;
}
.p-articles__swiper-container .swiper-button-prev,
.p-articles__swiper-container .swiper-button-next {
  height: 40px;
  width: 40px;
}
@media screen and (max-width: 760px) {
  .p-articles__swiper-container .swiper-button-prev,
  .p-articles__swiper-container .swiper-button-next {
    display: none;
  }
}
.p-articles__swiper-container .swiper-button-prev {
  left: -17px;
}
.p-articles__swiper-container .swiper-button-next {
  right: -17px;
}
.p-articles__swiper-container .swiper-button-prev::after,
.p-articles__swiper-container .swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 40px;
  margin: auto;
  width: 40px;
}
.p-articles__swiper-container .swiper-button-prev::after {
  background-image: url(../img/content/prev.svg);
}
.p-articles__swiper-container .swiper-button-next::after {
  background-image: url(../img/content/next.svg);
}
.p-articles__swiper-container .swiper-pagination-articles {
  text-align: center;
  margin-top: 27px;
}

.p-menu {
  padding-top: 64px;
  border-top: 1px solid #e0e0e0;
}
@media screen and (max-width: 760px) {
  .p-menu {
    padding-top: 56px;
    border-top: 0;
  }
}
.p-menu__a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 13px;
  position: relative;
}
.p-menu__a.selected::after {
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background-color: #e8a2a2;
  content: "";
}
@media screen and (max-width: 760px) {
  .p-menu__a.selected::after {
    width: 22px;
    height: 3px;
  }
}
.p-menu__ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  -moz-column-gap: 80px;
       column-gap: 80px;
}
@media screen and (max-width: 760px) {
  .p-menu__ul {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
.p-menu__icon {
  height: 17px;
}
@media screen and (max-width: 760px) {
  .p-menu__icon {
    display: none;
  }
}
.p-menu__p {
  font-size: 13px;
  color: #282828;
}
.p-menu__p.selected {
  color: #e8a2a2;
}
@media screen and (max-width: 760px) {
  .p-menu__p {
    font-size: 11px;
  }
}

.p-banner {
  padding-bottom: 60px;
}
@media screen and (max-width: 760px) {
  .p-banner {
    padding-bottom: 59px;
  }
}
.p-banner__container {
  max-width: 1140px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (max-width: 760px) {
  .p-banner__container {
    display: none;
  }
}
.p-banner__swiper-container {
  display: none;
  position: relative;
}
@media screen and (max-width: 760px) {
  .p-banner__swiper-container {
    display: block;
  }
}
.p-banner__swiper-container .swiper-pagination-banner {
  text-align: center;
  margin-top: 20px;
}
.p-banner__swiper-container .swiper-pagination-bullet-active {
  background-color: #e8a2a2 !important;
}
.p-banner__swiper-container .swiper-pagination-bullet {
  background-color: #a7a7a7;
  height: 8px;
  width: 8px;
  margin-right: 6px !important;
  margin-left: 6px !important;
}
.p-banner__wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media screen and (max-width: 760px) {
  .p-banner__wrap {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 15px;
  }
}
.p-banner__anker {
  width: calc((100% - 60px) / 3);
  transition: all 0.3s;
}
@media screen and (max-width: 760px) {
  .p-banner__anker {
    width: 100%;
  }
}
.p-banner__anker:hover {
  opacity: 0.7;
  transition: all 0.3s;
}

.p-content {
  padding-bottom: 120px;
}
@media screen and (max-width: 760px) {
  .p-content {
    padding-bottom: 50px;
  }
}
.p-content__h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
}
@media screen and (max-width: 760px) {
  .p-content__h2 {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
.p-content__img {
  width: 100%;
  margin-bottom: 30px;
}
.p-content__h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  margin-top: 30px;
}
@media screen and (max-width: 760px) {
  .p-content__h3 {
    margin-bottom: 12px;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 54px;
  }
}
.p-content__p {
  margin-bottom: 50px;
  font-size: 14px;
  line-height: 1.8;
}
@media screen and (max-width: 760px) {
  .p-content__p {
    font-size: 13px;
    margin-bottom: 31px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.p-content__explain {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 760px) {
  .p-content__explain {
    font-size: 13px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.p-content__flex-img {
  width: 100%;
  max-height: 280px;
}
.p-content__room {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  text-align: left;
  width: calc((100% - 40px) / 2);
}
@media screen and (max-width: 760px) {
  .p-content__room {
    width: 100%;
  }
}
.p-content__flex {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media screen and (max-width: 760px) {
  .p-content__flex {
    flex-direction: column;
    row-gap: 40px;
  }
}
.p-content__swiper-container {
  position: relative;
  /* 前へ次への矢印カスタマイズ */
  /* 前へ次への矢印カスタマイズ */
  /* 前への矢印カスタマイズ */
  /* 次への矢印カスタマイズ */
}
.p-content__swiper-container .swiper-pagination-bullet-active {
  background-color: #e8a2a2 !important;
}
.p-content__swiper-container .swiper-pagination-bullet {
  background-color: #a7a7a7;
  height: 8px;
  width: 8px;
  margin-right: 3px;
  margin-left: 3px;
}
@media screen and (max-width: 760px) {
  .p-content__swiper-container .swiper-pagination-bullet {
    display: none;
  }
}
.p-content__swiper-container .swiper-button-prev,
.p-content__swiper-container .swiper-button-next {
  height: 40px;
  width: 40px;
}
@media screen and (max-width: 760px) {
  .p-content__swiper-container .swiper-button-prev,
  .p-content__swiper-container .swiper-button-next {
    display: none;
  }
}
.p-content__swiper-container .swiper-button-prev::after,
.p-content__swiper-container .swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 40px;
  margin: auto;
  width: 40px;
}
.p-content__swiper-container .swiper-button-prev::after {
  background-image: url(../img/content/prev.svg);
}
.p-content__swiper-container .swiper-button-next::after {
  background-image: url(../img/content/next.svg);
}
.p-content__swiper-img {
  width: 100%;
  max-height: 500px;
}
@media screen and (max-width: 760px) {
  .p-content__swiper-img {
    max-height: 300px;
  }
}

.p-detail__dl {
  flex: 1;
  background-color: #fff;
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid #e0e0e0;
}
.p-detail__dl:first-child {
  border-top: 1px solid #e0e0e0;
}
@media screen and (max-width: 760px) {
  .p-detail__dl:first-child {
    border-top: 0;
  }
}
@media screen and (max-width: 760px) {
  .p-detail__dl {
    flex-direction: column;
    border-bottom: 0;
  }
}
.p-detail__google {
  color: #cb6483 !important;
  text-decoration: underline !important;
}
.p-detail__dt {
  flex-shrink: 0;
  padding-left: 30px;
  width: 280px;
  background-color: #f6f5f0;
  padding-top: 27px;
  padding-bottom: 27px;
  font-size: 14px;
  font-weight: 600;
}
@media screen and (max-width: 760px) {
  .p-detail__dt {
    font-size: 13px;
    padding: 10px;
    width: 100%;
  }
}
.p-detail__dd {
  padding-top: 27px;
  padding-bottom: 27px;
  font-size: 14px;
  font-weight: 400;
  padding-left: 30px;
  line-height: 1.8;
}
@media screen and (max-width: 760px) {
  .p-detail__dd {
    padding-top: 10px;
    padding-bottom: 20px;
    padding-left: 0;
    font-size: 12px;
  }
}
.p-detail__iframe {
  width: 100%;
  height: 480px;
  margin-bottom: 50px;
}
@media screen and (max-width: 760px) {
  .p-detail__iframe {
    height: 240px;
    margin-bottom: 30px;
  }
}
.p-detail__boss {
  padding-top: 40px;
  padding-bottom: 120px;
  border-top: 1px solid #e0e0e0;
}
@media screen and (max-width: 760px) {
  .p-detail__boss {
    padding-top: 20px;
    padding-bottom: 70px;
  }
}
.p-detail__h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
}
@media screen and (max-width: 760px) {
  .p-detail__h2 {
    margin-bottom: 30px;
    font-size: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.p-detail__group--2 {
  margin-top: 40px;
}
@media screen and (max-width: 760px) {
  .p-detail__group {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.p-detail__h3 {
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 760px) {
  .p-detail__h3 {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.p-detail__selects {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 105px;
       column-gap: 105px;
}
@media screen and (max-width: 760px) {
  .p-detail__selects {
    -moz-column-gap: 0;
         column-gap: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.p-detail__sp-button {
  width: 310px;
  height: 50px;
  display: none;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  border-radius: 25px;
  background-color: #e8a2a2;
  margin: 0 auto;
  color: #fff !important;
}
@media screen and (max-width: 760px) {
  .p-detail__sp-button {
    display: flex;
  }
}
.p-detail__ul {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}
@media screen and (max-width: 760px) {
  .p-detail__ul {
    width: 100%;
  }
}
.p-detail__li {
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.p-detail__circle {
  font-size: 14px;
  font-weight: 400;
}
.p-detail__amenity {
  font-size: 14px;
  font-weight: 400;
}

.p-faq {
  padding-bottom: 100px;
}
@media screen and (max-width: 760px) {
  .p-faq {
    padding-bottom: 70px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
  }
}
.p-faq__container {
  max-width: 1216px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.p-faq__wrap {
  max-width: 880px;
  width: 100%;
}
.p-faq__h2 {
  font-weight: 700;
  font-size: 24px;
  color: #282828;
  margin-bottom: 40px;
}
@media screen and (max-width: 760px) {
  .p-faq__h2 {
    font-size: 20px;
    margin-bottom: 30px;
    padding-left: 20px;
  }
}
.p-faq__svg {
  width: 43px;
}
.p-faq__text {
  font-size: 14px;
  font-weight: 500;
}
.p-faq__text--pink {
  color: #cb6483;
}
@media screen and (max-width: 760px) {
  .p-faq__text {
    font-size: 13px;
  }
}
.p-faq__dl {
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
  cursor: pointer;
}
.p-faq__dl:first-child {
  border-top: 1px solid #e0e0e0;
}
.p-faq__dl:not(:last-child) {
  border-bottom: 1px solid #e0e0e0;
}
.p-faq__icon-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  -moz-column-gap: 27px;
       column-gap: 27px;
  width: 100%;
}
@media screen and (max-width: 760px) {
  .p-faq__icon-wrapper {
    -moz-column-gap: 11px;
         column-gap: 11px;
  }
}
.p-faq__toggle {
  position: absolute;
  right: 30px;
  width: 22px;
  height: 22px;
}
.p-faq__toggle::before, .p-faq__toggle::after {
  content: "";
  position: absolute;
  background-color: #cb6483;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-faq__toggle::before {
  width: 2px;
  height: 22px;
  transition: transform 0.3s ease;
  opacity: 1;
}
@media screen and (max-width: 760px) {
  .p-faq__toggle::before {
    height: 12px;
  }
}
.p-faq__toggle::after {
  width: 22px;
  height: 2px;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 760px) {
  .p-faq__toggle::after {
    width: 12px;
  }
}
.p-faq__toggle.is-active::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.p-faq__toggle.is-active::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
@media screen and (max-width: 760px) {
  .p-faq__toggle {
    right: -27px;
    width: 12px;
    height: 12px;
  }
}
.p-faq__dd {
  font-size: 14px;
  font-weight: 500;
  padding-left: 70px;
  transition: all 0.3s ease;
  overflow: hidden;
  opacity: 0;
  max-height: 0;
  margin-top: 23px;
}
@media screen and (max-width: 760px) {
  .p-faq__dd {
    padding: 15px 20px;
    font-size: 12px;
    margin-top: 10px;
    background-color: #f6f5f0;
    margin-left: 15px;
    margin-right: 15px;
  }
}
.p-faq__dt {
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 27px;
       column-gap: 27px;
}
@media screen and (max-width: 760px) {
  .p-faq__dt {
    padding-left: 15px;
    padding-right: 50px;
  }
}
.p-faq__minus {
  width: 22px;
  height: 2px;
  background-color: #cb6483;
}/*# sourceMappingURL=style.css.map */