/*
********************************************************************************
【目次】
■ 01. 共通
■ 02. ヘッダー
■ 03. フッター
■ 04. メイン
********************************************************************************
*/

/*
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■ 01. 共通
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
*/
html,body {
	background-color: #fff;
	font-family: 'Noto Sans JP', sans-serif;
}

img {
	width: 100%;
	height: auto;
}

a {
  transition: color 0.3s;
}

.sp_area10{
  padding-bottom: 10px;
}

.sp_area20{
  padding-bottom: 20px;
  display: inline-block;
}

.sp_area30{
  padding-bottom: 30px;
  display: inline-block;
}

.sp_area40{
  padding-bottom: 40px;
  display: inline-block;
}

.sp_area50{
  padding-bottom: 50px;
}

.sp_area60{
  padding-bottom: 60px;
}

.sp_area70{
  padding-bottom: 70px;
}

.sp_area80{
  padding-bottom: 80px;
}

.sp_area90{
  padding-bottom: 90px;
}

.sp_area100{
  padding-bottom: 100px;
}

/*
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■ 02 ヘッダー
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
*/
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2.5rem;
    background: transparent; /* 初期は透明 */
    transition: background-color 0.3s ease; /* フワッと変化 */
    z-index: 1000;
}

.site-header.scrolled {
    background: rgba(17, 0, 34, 0.5) !important; /* スクロール後の色（半透明黒） */
}

.site-header .logo {
    max-width: 140px;
}

.site-header .sitename {
    text-align: center;
    width: 70%;
    padding-left: 7%;
}

.site-header .sitename p {
    font-size: 25px;
    font-weight: 900;
    color: #d8cd9f;
    letter-spacing: 1.2pt;
    line-height: 1.3;
    display: grid;
    align-items: start;
}

.site-header .sitename p span {
    font-size: 13px;
    font-weight: 500;
}

.site-header .sitename a {
    color: #d8cd9f;
}

.site-header .sitename a:hover {
    color: #d8cd9f;
}

.link_b_th {
    background: #fe0344;
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    padding: 12px 33px 14px;
    display: inline-block;
    transition: 0.3s;
    text-align: center;
}

.link_b_th:visited {
    color: #fff;
}

.link_b_th:hover {
    background: #e20166;
}

#flow .site-header, #reservation .site-header, #faq .site-header, #viewpoint .site-header {
    background-color: #000000;
}

/*----------------- ▼ (SP) ▼ -----------------*/
@media print, screen and (max-width: 767px) {
.site-header {
    height: 70px;
    padding: 1rem 1rem;
    }

.site-header .logo {
    max-width: 80px;
    }

.site-header .sitename {
    width: auto !important;
    padding: 0 !important;
    }

.site-header .sitename p {
    font-size: 13px;
    letter-spacing: 1.1pt;
    }

.site-header .sitename p span {
    font-size: 9px;
    }

.link_b_th {
    font-weight: 700;
    font-size: 13px;
    padding: 7px 12px 8px;
    text-align: center;
    white-space: nowrap;
    }
}
/*----------------- ▲ (SP) ▲ -----------------*/

/*----------------- ▼ (iPad) ▼ -----------------*/
@media screen and (min-width: 768px) and (max-width: 1024px) {
.site-header .logo {
    max-width: 110px;
    }

.site-header .sitename {
    width: 55%;
    padding: 0;
    margin: 0 0 0 10%;
    }

.site-header .sitename p {
    font-size: 16px;
    letter-spacing: 1.1pt;
    }

.site-header .link_b_th {
    font-size: 16px;
    margin-left: auto;
    width: 15%;
    text-align: center;
    white-space: nowrap;
    padding-left: 0;
    padding-right: 0;
    }

.hamburger {
    margin-left: 15px;
    height: 24px;
    }
}
/*----------------- ▲ (iPad) ▲ -----------------*/

/*----------------- ▲ (iPad) ▼ -----------------*/
@media print, screen and (max-width: 1180px) {
.site-header .sitename {
    width: 65%;
    padding-left: 9%;
    }
}

@media print, screen and (max-width: 820px) {
.site-header .sitename {
    padding-left: 0%;
    padding: 2rem 1.3rem;
    }
}

@media print, screen and (max-width: 1024px) {
.site-header .sitename {
    padding-left: 2%;
    }
}
/*----------------- ▲ (iPad) ▲ -----------------*/

/*
--------------------------------------------------
ハンバーガー
--------------------------------------------------
*/

.hamburger {
    position: relative;
    width: 60px;
    height: 32px;
    border: none;
    background: none;
    cursor: pointer;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: all 0.4s ease;
}

/*----------------- ▼ (SP) ▼ -----------------*/
@media print, screen and (max-width: 780px) {
.hamburger {
    width: 40px;
    height: 23px;
    }
}
/*----------------- ▲ (SP) ▲ -----------------*/

/*
--------------------------------------------------
変形アニメーション
--------------------------------------------------
*/

.hamburger.active span:nth-child(1) {
    transform: rotate(30deg) translate(8px, 11px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-30deg) translate(8px, -11px);
}

/*----------------- ▼ (SP) ▼ -----------------*/
@media print, screen and (max-width: 780px) {
.hamburger.active span:nth-child(1) {
    transform: rotate(30deg) translate(5px, 9px) !important;
    }

.hamburger.active span:nth-child(3) {
    transform: rotate(-30deg) translate(5px, -9px) !important;
    }
}
/*----------------- ▲ (SP) ▲ -----------------*/

/*
--------------------------------------------------
ナビゲーション（右から左へスライドイン）
--------------------------------------------------
*/

.site-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  transform: translateX(100%);
  transition: transform 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1050;
}
.site-nav.open {
  transform: translateX(0);
}

.site-nav .nav-inner ul {
  list-style: none;
  text-align: center;
  padding: 0;
  margin: 0;
}
.site-nav .nav-inner li {
  margin: 1.5rem 0;
}
.site-nav .nav-inner a {
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
  transition: color 0.3s;
}
.site-nav .nav-inner a:hover {
  color: #c1a736;
}

/*----------------- ▼ (SP) ▼ -----------------*/
@media print, screen and (max-width: 780px) {
.site-nav {
  width: 100%;
  }
}
/*----------------- ▲ (SP) ▲ -----------------*/

/*
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■ 03 フッター
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
*/

.site-footer {
    background-image: url(../img/bg_footer.jpg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: bottom;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 500px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 0;
    flex-direction: column;
}

.site-footer .logo {
    max-width: 200px;
    padding-top: 130px;
}

.site-footer .copyright {
    bottom: 0;
    padding: 240px 0 20px;
    color: #ffffff;
    font-size: 12px;
}

/*----------------- ▼ (SP) ▼ -----------------*/
@media print, screen and (max-width: 780px) {
.site-footer {
    background-image: url(../img/bg_footer@2x.jpg);
    min-height: 327px;
    }

.site-footer .logo {
    max-width: 110px;
    padding-top: 69px;
    }

.site-footer .copyright {
    padding: 160px 0 20px;
    }
}
/*----------------- ▲ (SP) ▲ -----------------*/

/*
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■ 04. メイン
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
*/

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

#top main {
    background-color: #000;
}

#top main .content {
    position: relative;
    z-index: 2;
    background-image: url(../img/bluecloud.png);
    background-repeat: no-repeat;
    background-position: top;
    background-size: 100%;
    padding: 200px 0 0;
    width: 100%;
    margin: -200px auto 0;
    text-align: center;
}

main .content .catchcopy {
    color: #fff;
    line-height: 2.5;
    font-size: 20px;
    letter-spacing: 2px;
}

main .content .catchcopy h1 {
    font-weight: 500;
}

main .content .an_area {
    position: relative;
    overflow: hidden;
    z-index: 0;
}

main .content .an_area::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 500px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(10, 2, 128, 1) 50%, rgba(70, 3, 117, 1) 80%);
}

main .content .planlist_area {
    padding-top: 140px;
    z-index: 1;
    position: relative;
}

main .content .planlist_area h2 {
    font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho", serif;
    color: #ad9756;
    font-size: 45px;
    font-weight: 500;
}

main .content .planlist_area p {
    color: #fff;
    font-size: 18px;
    width: 36%;
    margin: 60px auto 100px;
    line-height: 2.8;
}

main .content .planlist {
    display: flex;
    width: 85%;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 5%;
    align-items: stretch;
    justify-content: flex-start;
}

main .content .planlist dl {
    width: 30%;
    background-color: #36312d;
    margin-bottom: 50px;
}

main .content .planlist dt {
}

main .content .planlist dd {
    background-color: #36312d;
    padding: 27px 30px 32px;
    text-align: left;
    color: #fff;
}

main .content .planlist dd h3 {
    font-size: 19px;
    padding-bottom: 15px;
}

main .content .planlist dd .attention {
    font-size: 15px;
    font-weight: 400;
}

main .content .planlist dd .cat_p {
    background-color: #e38ad7;
    display: inline-block;
    padding: 2px 10px 4px;
    color: #36312d;
    font-size: 10px;
    vertical-align: text-bottom;
    margin-right: 8px;
}

main .content .planlist dd .cat_b {
    background-color: #90d6ca;
    display: inline-block;
    padding: 2px 10px 4px;
    color: #36312d;
    font-size: 10px;
    vertical-align: text-bottom;
    margin-right: 8px;
}

main .content .planlist dd .cat_y {
    background-color: #93f710;
    display: inline-block;
    padding: 2px 10px 4px;
    color: #36312d;
    font-size: 10px;
    vertical-align: text-bottom;
    margin-right: 8px;
}

main .content .planlist dd p {
    margin: 0;
    line-height: 1.7;
    width: 100%;
    font-size: 15px;
}

/*----------------- ▼ (SP) ▼ -----------------*/
@media print, screen and (max-width: 780px) {
main .content {
    background-size: 140%;
    padding: 130px 0 0;
    width: 100%;
    margin: -130px auto 0;
    }

main .content .catchcopy {
    font-size: 13px;
    letter-spacing: normal;
    }

main .content .planlist_area {
    padding-top: 60px;
    }

main .content .planlist_area h2 {
    font-size: 35px;
}

main .content .planlist_area p {
    font-size: 14px;
    width: 80%;
    margin: 20px auto 40px;
    line-height: 2.3;
    }

main .content .planlist {
    flex-direction: column;
    }

main .content .planlist dl {
    width: 100%;
    margin-bottom: 30px;
    }
}
/*----------------- ▲ (SP) ▲ -----------------*/

/*
--------------------------------------------------
下層ページ
--------------------------------------------------
*/

#illumination main {
    width: 100%;
    background-color: #000;
    padding: 220px 0 0;
    background-image: url(../img/bluecloud.png);
    background-repeat: no-repeat;
    background-position: 0 50px;
    background-size: 100%;
}

#illumination main .content {
    width: 80%;
    margin: 0 auto;
}

#illumination main .content h1 {
    color: #ffffff;
    font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho", serif;
    text-align: center;
    margin: 0 auto;
    font-size: 50px;
    font-weight: 500;
}

#illumination main .content h1 span {
    font-size: 27px;
    display: block;
    margin: -10px 0 0;
}

#illumination main .content h1 .second-line {
    font-size: 30px;
}

.b_top_area {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    padding: 110px 0;
}

.link_b_bk {
    background: #fe0344;
    color: #fff;
    font-weight: 500;
    font-size: 19px;
    padding: 22px 33px 23px;
    display: inline-block;
    transition: 0.3s;
    background-image: url(../img/icon_calendar.png);
    background-repeat: no-repeat;
    background-position: 27% 45%;
    background-size: 5%;
    text-align: center;
    width: 100%;
    margin: 60px 0 0;
}

.link_b_bk:visited {
    color: #fff;
}

.link_b_bk:hover {
    background: #e20166;
    background-image: url(../img/icon_calendar.png);
    background-repeat: no-repeat;
    background-position: 27% 45%;
    background-size: 5%;
}

main .content .t_bottom_area {
    background-color: #ffffff;
    background: linear-gradient(180deg, rgba(70, 3, 117, 1) 0%, rgba(176, 73, 141, 1) 50%, rgba(255, 255, 255, 1) 100%);
    margin-bottom: 100px;
}

main .content .t_bottom_area .t_flow {
    width: 85%;
    margin: 0 auto;
    padding: 100px 0;
}

main .content .t_bottom_area .t_flow h2 {
    font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho", serif;
    color: #ffffff;
    font-size: 45px;
    font-weight: 500;
}

main .content .t_bottom_area .t_flow p {
    color: #ffffff;
    padding: 30px 0 60px;
}

main .content .t_bottom_area .link_b_bk {
    width: 30%;
    background-image: unset;
    background-color: #ad9756;
}

main .content .t_bottom_area .link_b_bk:hover {
    background-color: #866d23;
}

/*----------------- ▼ (SP) ▼ -----------------*/
@media print, screen and (max-width: 780px) {

#illumination main {
    padding: 100px 0 0;
    background-position: center 20px;
    background-size: 200%;
    }

#illumination main .content {
    padding: 0;
    width: 90%;
    }

#illumination main .content h1 {
    font-size: 30px;
    }

#illumination main .content h1 span {
    font-size: 21px;
    margin: -5px 0 0;
    }

.b_top_area {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 30px 0 0;
    }

.link_b_bk {
    font-size: 18px;
    padding: 12px 33px 14px;
    background-position: 50px 14px;
    background-size: 6%;
    margin: 40px 0 0;
    }

.link_b_bk:hover {
    background-position: 50px 14px;
    background-size: 6%;
    }

main .content .t_bottom_area {
    margin-bottom: 30px;
}

main .content .t_bottom_area .t_flow {
    padding: 50px 0;
    }

main .content .t_bottom_area .t_flow h2 {
    font-size: 34px;
    }

main .content .t_bottom_area .t_flow p {
    padding: 25px 0 40px;
    }

main .content .t_bottom_area .link_b_bk {
    width: 100%;
    }
}
/*----------------- ▲ (SP) ▲ -----------------*/

/*
--------------------------------------------------
スライダー
--------------------------------------------------
*/

.b_top_area .slider_area {
    width: 45%;
}

.b_top_area .slider_introduction {
    width: 45%;
}

.b_top_area .slider_introduction h2 {
    font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho", serif;
    color: #ad9756;
    text-align: center;
    font-size: 31px;
    font-weight: 500;
    margin: -8px 0 0;
}

.b_top_area .slider_introduction p {
    color: #ffffff;
    line-height: 1.8;
    padding: 35px 0 45px;
}

.b_top_area .slider_introduction .color_detail {
    color: #ffffff;
    display: flex;
    justify-content: flex-start;
    gap: 30px;
}

.b_top_area .slider_introduction .color_detail dt {
    width: 25%;
    font-size: 19px;
    padding: 25px 10px;
    border-bottom: 1px solid #8c8c8c;
    white-space: nowrap
}

.b_top_area .slider_introduction .color_detail dd {
    width: 75%;
    padding: 25px 10px;
    border-bottom: 1px solid #8c8c8c;
}

.b_top_area .slider_introduction .color_detail .color_detail_price {
    margin: -8px 0 0;
}

.b_top_area .slider_introduction .color_detail dd span {
    display: inline-block;
    font-size: 30px;
    font-weight: 600;
}
.b_top_area .slider_introduction .color_detail dd b {
    font-size: 20px;
}

.slick-prev:before,
.slick-next:before {
  font-size: 0;
  content: "" !important;
}

.b_top_area .slider_area .slider-arrow.prev {
  left: 10px;
  transform: rotate(135deg);
}

.b_top_area .slider_area .slider-arrow.next {
  right: 10px;
  transform: rotate(-45deg);
}

.slick-prev:before {
  content: '';
  border: solid #fff;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 12px;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.slick-next:before {
  content: '';
  border: solid #fff;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 12px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.slick-next {
    right: -8px;
}

.slick-prev {
    left: -15px;
}

.plus-minus {
  position: relative;
  width: 20px;
  height: 20px;
}

.plus-minus::before,
.plus-minus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 2px;
  background-color: #ffffff;
  transition: transform 0.3s ease;
}

.plus-minus::before {
  transform: translate(-50%, -50%) rotate(0deg);
}

.plus-minus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/*----------------- ▼ (SP) ▼ -----------------*/
@media print, screen and (max-width: 780px) {

.b_top_area .slider_area {
    width: 87%;
    margin: 0 7% 0 6%;
    }

.slick-dots li button:before {
    font-size: 10px;
    opacity: .70;
    color: #fff;
    }

.slick-dots li.slick-active button:before {
    opacity: 1;
    color: #ffffff;
    }

.b_top_area .slider_introduction {
    width: 100%;
    margin: 50px auto;
    }

.b_top_area .slider_introduction h3 {
    font-size: 24px;
    }

.b_top_area .slider_introduction p {
    padding: 25px 0 45px;
    font-size: 14px;
    }

.b_top_area .slider_introduction .color_detail dt {
    padding: 20px 5px;
    }

.b_top_area .slider_introduction .color_detail dd {
    padding: 20px 5px;
    }

.slick-dots {
    bottom: unset;
    }

.slick-dots li {
    width: 30px;
    }
}
/*----------------- ▲ (SP) ▲ -----------------*/

/*
--------------------------------------------------
アコーディオン
--------------------------------------------------
*/

.accordion_item {
  width: 100%;
  background-color: #36312d;
  margin: 20px 0;
  color: #ffffff;
  padding: 10px 30px;
}

.accordion_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  cursor: pointer;
}

.b_top_area .slider_introduction .accordion_title h3 {
    margin: 0 auto;
    font-family: 'Noto Sans JP', sans-serif;
    color: #ffffff;
    font-size: 19px;
    white-space: nowrap;
}

.accordion_item.is-active .plus-minus::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion_content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion_item.is-active .accordion_content {
  max-height: 1000px !important;
  padding-bottom: 20px;
  height: 800px !important;
}

.accordion_item.is-active .accordion_content h4 {
    border: 1px solid #fff;
    border-radius: 50px;
    text-align: center;
    padding: 10px 0 12px;
    font-size: 18px;
    font-weight: normal;
    margin: 15px 0 25px;
}

.accordion_item.is-active .accordion_content dl {
    display: flex;
    gap: 8px;
    font-size: 17px;
}

.accordion_item.is-active .accordion_content dl dt {
    background-color: #fff;
    width: 35%;
    color: #262421;
    font-weight: 600;
    padding: 15px 18px 17px;
    margin: 0 0 7px;
}

.accordion_item.is-active .accordion_content dl dd {
    width: 65%;
    background-color: #716755;
    padding: 15px 18px 17px;
    margin: 0 0 7px;
}

.accordion_item.is-active .accordion_content dl dd span {
    font-size: 12px;
    line-height: 1.4;
    display: block;
}

.accordion_item.is-active .accordion_content dl dd a {
    color: #ffffff;
    text-decoration: underline;
    transition: 0.3s;
}

.accordion_item.is-active .accordion_content dl dd a:hover {
    color: #baae95;
}

.accordion_item.is-active .accordion_content ul {
    font-size: 14px;
    line-height: 1.6;
    list-style-type: disc !important;
    list-style: inside;
}

.accordion_item.is-active .accordion_content ul a {
    color: #ffffff;
    text-decoration: underline;
    transition: 0.3s;
}

.accordion_item.is-active .accordion_content ul a:hover {
    color: #baae95;
}

/*----------------- ▼ (SP) ▼ -----------------*/
@media print, screen and (max-width: 780px) {

.b_top_area .slider_introduction .accordion_title h3 {
    font-size: 18px;
    }

.accordion_item {
    margin: 20px 0;
    }

.accordion_item.is-active .accordion_content dl dt {
    width: 35%;
    padding: 12px 12px 13px;
    font-size: 14px;
    }

.accordion_item.is-active .accordion_content dl dd {
    width: 65%;
    padding: 12px 12px 13px;
    font-size: 14px;
    }

.accordion_item.is-active .accordion_content dl dd span {
    font-size: 10px;
    }

.accordion_item.is-active .accordion_content ul {
    font-size: 10px;
    line-height: 1.5;
    }
}
/*----------------- ▲ (SP) ▲ -----------------*/

/*
--------------------------------------------------
共通部分
--------------------------------------------------
*/

.content_b {
	background-color: #ffffff;
}

.content_b .plan_set_area {
	margin: 0 auto;
	width: 80%;
	padding: 80px 0 150px;
}

.content_b .plan_set_area h2 {
	font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho", serif;
	color: #6e5e33;
	text-align: center;
	font-size: 31px;
	font-weight: 500;
	padding-bottom: 40px;
}

.content_b .plan_set_area .tit_img_b {
	text-align: center;
	background-color: #000000;
}

.content_b .plan_set_area .tit_img_b img {
	height: 300px;
	width: auto;
}

.content_b .plan_set_area p {
	text-align: center;
	padding: 25px 0 50px;
}

.content_b .plan_set_area .link_b_bk {
    background-image: none;
    width: 30%;
    text-align: center;
    margin: 0 auto;
    display: block;
    background-color: #ad9756;
}

.content_b .plan_set_area .link_b_bk:hover {
    background-color: #866d23;
}

/*----------------- ▼ (SP) ▼ -----------------*/
@media print, screen and (max-width: 780px) {
.content_b .plan_set_area {
    width: 90%;
    margin: 0 auto;
    padding: 45px 0 80px;
    }

.content_b .plan_set_area h2 {
    padding-bottom: 30px;
    }

.content_b .plan_set_area p {
    text-align: left;
    padding: 20px 0 40px;
    }

.content_b .plan_set_area .link_b_bk {
    width: 100%;
    }
}
/*----------------- ▲ (SP) ▲ -----------------*/

/*
--------------------------------------------------
ご予約の流れ
--------------------------------------------------
*/

#flow main .content {
    width: 80%;
    margin: 0 auto;
    padding: 200px 0 150px;
}

#flow main .content h1 {
    color: #6e5e33;
    font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho", serif;
    text-align: center;
    margin: 0 auto;
    font-size: 50px;
    font-weight: 500;
    padding-bottom: 55px;
}

#flow main .content .flow_area {
}

#flow main .content .flow_area .step_flow {
}

#flow main .content .flow_area .step_flow h2 {
    background-color: #7b5f0c;
    color: #ffffff;
    padding: 18px 20px;
    font-size: 21px;
}

#flow main .content .flow_area .step_flow h2 img {
    width: 30px;
    margin-right: 12px;
}

#flow main .content .flow_area .step_flow p {
    padding: 30px 20px;
    line-height: 1.8;
}

#flow main .content .flow_area .step_flow .link_b_bk {
    width: 50%;
    margin: 20px auto;
    display: block;
}

#flow main .content .flow_area .step_flow .flowcontents {
    width: 60%;
    text-align: center;
    margin: 0 auto;
}

#flow main .content .flow_area .step_flow .flowcontents::before {
    content: "";
    display: block;
    background: url(../img/h_flow.jpg);
    background-size: 100%;
    background-repeat: no-repeat;
    height: 50px;
    background-position: top;
}

#flow main .content .flow_area .step_flow .flowcontents::after {
    content: "";
    display: block;
    background: url(../img/f_flow.jpg);
    background-size: 100%;
    background-repeat: no-repeat;
    height: 60px;
    background-position: top;
}

/*----------------- ▼ (SP) ▼ -----------------*/
@media print, screen and (max-width: 780px) {
#flow main .content {
    width: 90%;
    padding: 100px 0 70px;
    }

#flow main .content h1 {
    font-size: 30px;
    padding-bottom: 20px;
    }

#flow main .content .flow_area .step_flow h2 {
    padding: 15px 20px;
    font-size: 18px;
}

#flow main .content .flow_area .step_flow h2 img {
    width: 22px;
    margin-right: 9px;
    }

#flow main .content .flow_area .step_flow p {
    padding: 15px 0;
    line-height: 1.7;
    }

#flow main .content .flow_area .step_flow .link_b_bk {
    width: 100%;
    margin: 10px auto 0;
    }

#flow main .content .flow_area .step_flow .flowcontents {
    width: 100%;
    }

#flow main .content .flow_area .step_flow .flowcontents::before {
    height: 25px;
    }

#flow main .content .flow_area .step_flow .flowcontents::after {
    height: 35px;
    }
}
/*----------------- ▲ (SP) ▲ -----------------*/

/*
--------------------------------------------------
予約カレンダー
--------------------------------------------------
*/

#reservation main .content {
    width: 80%;
    margin: 0 auto;
    padding: 200px 0 0;
}

#reservation main .content h1 {
    color: #6e5e33;
    font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho", serif;
    text-align: center;
    margin: 0 auto;
    font-size: 50px;
    font-weight: 500;
    padding-bottom: 10px;
}

/*----------------- ▼ (SP) ▼ -----------------*/
@media print, screen and (max-width: 780px) {
#reservation main .content {
    width: 90%;
    padding: 100px 0 0;
    }

#reservation main .content h1 {
    font-size: 30px;
    padding-bottom: 20px;
    }
}
/*----------------- ▲ (SP) ▲ -----------------*/

/*
--------------------------------------------------
ご予約の流れ
--------------------------------------------------
*/

#faq {
    background: url(../img/bg_faq.jpg);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center 110px;
    background-attachment: fixed;
}

#faq main .content {
    width: 80%;
    margin: 0 auto;
    padding: 200px 0 150px;
}

#faq main .content h1 {
    color: #6e5e33;
    font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho", serif;
    text-align: center;
    margin: 0 auto;
    font-size: 50px;
    font-weight: 500;
    padding-bottom: 55px;
}

#faq main .content .faq_area .link_b_bk {
    width: 50%;
    margin: 20px auto;
    display: block;
}

#faq main .content .faq_area {
}

#faq main .content .faq_area .faq_accordion_item {
    width: 70%;
    background: rgba(204, 197, 168, 0.45);
    margin: 0 auto 20px;
    padding: 25px 30px;
}

#faq main .content .faq_area .faq_accordion_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

#faq main .content .faq_area .faq_accordion_title h3 {
    background: url(../img/icon_q.png);
    background-size: 26px;
    background-repeat: no-repeat;
    background-position: left center;
    font-size: 19px;
    font-weight: 500;
    padding: 0 20px 0 37px;
}

#faq main .content .faq_area .faq_accordion_content {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

#faq main .content .faq_area .faq_accordion_inner {
    padding: 20px;
}

.faq_accordion_title .plus-minus::before,
.faq_accordion_title .plus-minus::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 2px;
  background-color: #938869;
  transition: transform 0.3s ease; /* この行が重要 */
}

.faq_accordion_title .plus-minus::before {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq_accordion_title .plus-minus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq_accordion_item.is-active .faq_accordion_title .plus-minus::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

/*----------------- ▼ (SP) ▼ -----------------*/
@media print, screen and (max-width: 780px) {

#faq {
    background-size: 210%;
    background-position: center 100px;
}

#faq main .content {
    width: 90%;
    padding: 100px 0 70px;
    }

#faq main .content h1 {
    font-size: 30px;
    padding-bottom: 20px;
    }

#faq main .content p {
    padding: 15px 0;
    line-height: 1.7;
    }

#faq main .content .faq_area {
    }

#flow main .content .flow_area .link_b_bk {
    width: 100%;
    margin: 10px auto 0;
    }

#faq main .content .faq_area .faq_accordion_item {
    width: 100%;
    margin: 0 0 10px;
    padding: 20px 23px;
    }

#faq main .content .faq_area .faq_accordion_title h3 {
    padding: 0 15px 0 37px;
    }

#faq main .content .faq_area .faq_accordion_inner {
    padding: 0;
    }
}
/*----------------- ▲ (SP) ▲ -----------------*/

/*
--------------------------------------------------
VIEWPOINT
--------------------------------------------------
*/

#viewpoint main .content {
    width: 80%;
    margin: 0 auto;
    padding: 200px 0 150px;
}

#viewpoint main .content .viewpoint_area picture {
    display: block;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

#viewpoint main .content .viewpoint_area picture img {
    width: 60%;
}

#viewpoint main .content h1 {
    color: #6e5e33;
    font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho", serif;
    text-align: center;
    margin: 0 auto;
    font-size: 50px;
    font-weight: 500;
    padding-bottom: 55px;
}

#viewpoint main .content .viewpoint_area h2 {
    background-color: #7b5f0c;
    color: #ffffff;
    padding: 18px 20px;
    font-size: 21px;
    margin-bottom: 50px;
}

#viewpoint main .content .viewpoint_area p {
    padding: 0 0 30px;
    line-height: 1.7;
    text-align: center;
}

#viewpoint main .content .viewpoint_area .vp_attention {
    width: 60%;
    margin: 20px auto 60px;
    background-color: #36312d;
    text-align: left;
    color: #fff;
    padding: 20px 30px;
}

#viewpoint main .content .link_b_bk {
    width: 50%;
    margin: 20px auto;
    display: block;
}

#viewpoint main .content .gallery {
    display: flex;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 5%;
    align-items: stretch;
    justify-content: flex-start;
}

#viewpoint main .content .gallery a {
    width: 30%;
    background-color: #36312d;
    margin-bottom: 50px;
}

#viewpoint main .content .gallery img {
    width: 100%;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

#viewpoint main .content .gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
    border-width: 2px !important;
    border-color: #ffffff !important;
}

/*----------------- ▼ (SP) ▼ -----------------*/
@media print, screen and (max-width: 780px) {
#viewpoint main .content {
    width: 90%;
    padding: 100px 0 40px;
    }

#viewpoint main .content h1 {
    font-size: 30px;
    padding-bottom: 20px;
    }

#viewpoint main .content p {
    padding: 0 0 15px;
    line-height: 1.7;
    }

#viewpoint main .content .viewpoint_area picture img {
    width: 100%;
    }

#viewpoint main .content .viewpoint_area .vp_attention {
    width: 100%;
    margin: 20px auto 40px;
    }

#viewpoint main .content .viewpoint_area h2 {
    margin-bottom: 20px;
    }

#viewpoint main .content .gallery {
    flex-direction: column;
    }

#viewpoint main .content .gallery a {
    width: 100%;
    margin-bottom: 20px;
    }
}

/*----------------- ▲ (SP) ▲ -----------------*/