@charset "UTF-8";
html, body {
  width: 100%;
}
body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  position: relative;
  font-size: 16px;
  color: #000;
  line-height: 1.7;
}
*, *::before, *::after {
    box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6{
  margin: 0;
  padding: 0;
}
p{
  width: 100%;
  margin: 0;
  padding: 0;
}
img{
  width: 100%;
  height: auto;
}
a {
  color: #000;
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  opacity: 0.8;
}
a:hover > img {
  opacity: 0.8;
}
button{
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}
ul{
  padding-inline-start: 0;
}
.br_pc{
  display: block;
}
.br_sp{
  display: none;
}
.red{
  color: #F00;
}
.gray{
  color: #888;
}
.bold{
  font-weight: bold;
}
.small{
  font-size: 13px;
}
.txt_center{
  text-align: center;
}
.txt_left{
  text-align: left;
}
.txt_right{
  text-align: right;
}
@media screen and (max-width: 896px) {
  .br_pc{
    display: none;
  }
  .br_sp{
    display: block;
  }
}

/* ---------------------------------
 .playfair-display : google font
--------------------------------- */
.playfair-display-extrabold {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}
/* ---------------------------------
 間隔調整用
--------------------------------- */
.mt10{ margin-top: 10px; }
.mt20{ margin-top: 20px; }
.mt30{ margin-top: 30px; }
.mt40{ margin-top: 40px; }
.mt50{ margin-top: 50px; }
.mt60{ margin-top: 60px; }
.mt70{ margin-top: 70px; }
.mt80{ margin-top: 80px; }
.mt90{ margin-top: 90px; }
.mt100{ margin-top: 100px; }
.mb10{ margin-bottom: 10px; }
.mb20{ margin-bottom: 20px; }
.mb30{ margin-bottom: 30px; }
.mb40{ margin-bottom: 40px; }
.mb50{ margin-bottom: 50px; }
.mb60{ margin-bottom: 60px; }
.mb70{ margin-bottom: 70px; }
.mb80{ margin-bottom: 80px; }
.mb90{ margin-bottom: 90px; }
.mb100{ margin-bottom: 100px; }

/* ---------------------------------
 基本色の設定
--------------------------------- */
/* 文字色 */
.col_base{
  color: #004225;
}
.col_subcolor{
  color: #D4AF37;
}
.col_pickup{
  color: #800020;
}
.white{
  color: #fff;
}
/* 背景色 */
.bg_col_base{
  background-color: #F3EFE2;
}
.bg_col_dark{
  background-color: #004225;
}
.bg_col_subcolor{
  background-color: #F9F6EB;
}
.bg_col_white{
  background-color: #fff;
}
/* リンク */
.link{
  color: #004225;
  text-decoration: underline;
}
.link:hover{
  text-decoration: none;
}

/* ---------------------------------
 リンクボタン
--------------------------------- */
.more_link_btn {
  margin-top: 50px;
  width: 100%;
}
.more_link_btn a{
  width: 80%;
  max-width: 400px;
  padding: 15px;
  text-align: center;
  display: block;
  border-radius: 99999px;
  background: linear-gradient(to right, #004225, #17764C);
  color: #fff;
  margin: 0 auto;
  position: relative;
  transition: 0.3s;
}
/* 左寄せにしたい場合 */
.more_link_btn a.morebtn_left{
  margin: 0 0;
}
.more_link_btn a::after {
  position: absolute;
  top: 50%;
  right: 1em;
  width: 0.5em;
  height: 0.5em;
  transform: translateY(-50%) rotate(45deg);
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  content: "";
}
.more_link_btn a:hover {
  opacity: 1;
  background: linear-gradient(to right, #17764C, #4d9474);
}
@media screen and (max-width: 896px) {
  .more_link_btn {
    margin-top: 25px;
  }
  .more_link_btn a.morebtn_left{
    margin: 0 auto;
  }
}

/* ---------------------------------
 wrapper
--------------------------------- */
.wrapper {
  width: 100%;
  max-width:100%;
  margin: 0 auto;
}

/* ---------------------------------
 main
--------------------------------- */
main{
  width: 100%;
}

/* ---------------------------------
 contents
--------------------------------- */
.contents{
  width: 100%;
}
.contents_inner{
  width: 94%;
  max-width: 1400px;
  margin: 150px auto;
}
@media screen and (max-width: 896px) {
  .contents_inner{
    margin: 75px auto;
  }
}

/* ---------------------------------
 h3_title
--------------------------------- */
h3.h3_title{
  margin-bottom: 20px;
}
h3.h3_title span.h3_title_en{
  font-size: 4.0rem;
  line-height: 1.2;
  display: inline-block;
}
h3.h3_title span.h3_title_jp{
  font-size: 1.2rem;
  line-height: 1.7;
  margin-top: 15px;
  display: inline-block;
}
@media screen and (max-width: 896px) {
  h3.h3_title span.h3_title_en{
    font-size: 3.0rem;
  }
  h3.h3_title span.h3_title_jp{
    font-size: 1.2rem;
    margin-top: 15px;
  }
}

/* ---------------------------------
 h4_subtitle
--------------------------------- */
h4.h4_subtitle{
  font-size: 1.3rem;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}
h4.h4_subtitle::before{
  position: absolute;
  top: 10px;
  left: 0;
  width: 15px;
  height: 15px;
  content: '';
  border-radius: 50%;
  background: #D4AF37;
}
@media screen and (max-width: 896px) {
  h4.h4_subtitle{
    font-size: 1.2rem;
  }
  h4.h4_subtitle::before{
    top: 7px;
  }
}

/* ---------------------------------
 ul_style
--------------------------------- */
ul.ul_style{
  width: 100%;
  list-style: none;
  padding-left: 20px;
  margin: 0;
}
ul.ul_style li{
  margin: 5px 0;
  position: relative;
}
ul.ul_style li::before{
  content: '';
  background-color: #004225;
  position: absolute;
  top: 9px;
  left: -1em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

/* ---------------------------------
 table_style
--------------------------------- */
table.table_style{
  width: 100%;
  margin: 15px 0;
  border-collapse: separate;
  border-spacing: 5px;
}
table.table_style th{
  width: 30%;
  padding: 15px;
  background-color: #F3EFE2;
}
table.table_style td{
  width: 70%;
  padding: 15px;
  background-color: #fff;
  border: 1px solid #F3EFE2;
}
@media screen and (max-width: 896px) {
  table.table_style th{
    width: 100%;
    display: block;
    text-align: left;
  }
  table.table_style td{
    width: 100%;
    display: block;
  }
}

/* ---------------------------------
 header & navi
--------------------------------- */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transition: 0.3s;
}
/* ヘッダーロゴ */
.header__title {
  position: fixed;
  top: 0;
  left: 0;
  width: 40%;
  max-width: 200px;
  z-index: 1000;
  background-color: #fff;
  padding: 10px 15px;
  border-radius: 0 0 15px 0;
}
.header__title img {
  display: block;
  width: 100%;
}
@media screen and (min-width: 896.02px) {
  .header__title {
    width: 250px;
    padding: 15px 20px;
    max-width: initial;
  }
}
/* メニュー */
.header__menu {
  padding: 0;
  display: flex;
  align-items: center;
  height: inherit;
  position: relative;
  flex-direction: row-reverse;
  z-index: 1001;
}
/* ナビ部分 */
.header__nav {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  background-color: #006633;
  background-image: url("../img/common/spmenu_bg.png");
  background-position: top left;
  background-size: 100% auto;
  background-repeat: no-repeat;
  transition: ease .4s;
  color: #fff;
  overflow-y: auto;
}
@media screen and (min-width: 896.02px) {
  .header__nav {
    width: 50%;
    max-width: 500px;
    border-radius: 0 0 0 30px;
  }
}
.nav-items {
  width: 100%;
  margin: 37% auto 0 auto;
}
.nav-items__item a {
  color: #F3EFE2;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 18px;
  line-height: 1.0;
  margin-bottom: 20px;
  font-weight: bold;
}
.nav-items__item a span{
  font-size: 13px;
  font-weight: normal;
  letter-spacing: 2px;
}
.nav-items__item:last-child a {
  margin-bottom: 0;
}
.nav-items__insta a img{
  width: 30px;
}

a.head_nav_item_reserve{
  display: block;
  width: 80%;
  margin: 20px auto 10px auto;
  padding: 18px 10px 12px 10px;
  text-align: center;
  color: #F3EFE2;
  background-color: #004225;
  border-radius: 15px;
  line-height: 1.0;
}
a.head_nav_item_reserve span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
a.head_nav_item_reserve span::before{
  content: "";
  background-image: url('../img/common/icon_camp.svg');
  background-size: cover;
  background-repeat: no-repeat;
  width: 25px;
  height: 25px;
  margin-top: -5px;
}
.header_nav_btn{
  width: 80%;
  margin: 10px auto 20px auto;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content:space-between;
}
.header_nav_btn a{
  display: block;
  width: 49%;
  background-color: #F3EFE2;
  border-radius: 15px;
  padding: 13px 10px 7px 10px;
  text-align: center;
  color: #000;
  line-height: 1.0;
  font-size: 14px;
}
.header_nav_btn a span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
.header_nav_btn a.header_nav_btn_qa span::before{
  content: "";
  background-image: url('../img/common/icon_qa.svg');
  background-size: cover;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  margin-top: -3px;
}
.header_nav_btn a.header_nav_btn_mail span::before{
  content: "";
  background-image: url('../img/common/icon_mail.svg');
  background-size: cover;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  margin-top: -5px;
}

.header_nav_attraction{
  width: 80%;
  margin: 20px auto 20px auto;
}
.header_nav_attraction a.header_nav_attraction_btn{
  display: block;
  width: 100%;
  height: 70px;
  border-radius: 10px;
  background-image: linear-gradient(
			to bottom right,
			rgba(0, 102, 51, 0.5),
			rgba(0, 102, 51, 0.5)
		),
		url('../img/common/af.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
}
.header_nav_attraction .header_nav_attraction_txt{
  display: block;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  text-align: center;
  color: #fff;
  font-size: 20px;
}

@media screen and (min-width: 896.02px) {
  a.head_nav_item_reserve{
    margin: 20px auto;
  }
  .header_nav_btn{
    margin: 20px auto;
  }
  .header_nav_btn a{
    font-size: 16px;
  }
  .header_nav_attraction a.header_nav_attraction_btn{
    height: 100px;
    border-radius: 20px;
  }
}
/* ハンバーガーメニュー */
.header__hamburger {
  position: fixed;
  top: 8px;
  right: 8px;  
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #D4AF37;
  padding: 0 15px;
}
.hamburger {
  z-index: 9999;
}
@media screen and (min-width: 896.02px) {
  .header__hamburger {
    top: 10px;
    right: 10px;  
    width: 70px;
    height: 70px;
    padding: 0 15px;
  }
}
/* ハンバーガーメニューの線 */
.hamburger span {
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: relative;
  transition: ease .4s;
  display: block;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  margin: 5px 0;
}
.hamburger span:nth-child(3) {
  top: 0;
}
.hamburger span {
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: relative;
  transition: ease .4s;
  display: block;
}
/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  transform: translateX(0);
}
.hamburger.active span:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  top: -7px;
  transform: rotate(-45deg);
}
@media screen and (min-width: 896.02px) {
  .hamburger span:nth-child(2) {
    margin: 8px 0;
  }  
  .hamburger.active span:nth-child(1) {
    top: 10px;
  }
  .hamburger.active span:nth-child(3) {
    top: -10px;
  }
}

/* ---------------------------------
 ヴィラ特設ページへのリンク
--------------------------------- */
.villa_link{
  width: 100%;
  margin: 100px 0;
}
.villa_link .villa_link_box{
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  background-color: #fff;
  position: relative;
  border: 1px solid #D4AF37;
}
.villa_link .villa_link_box .villa_link_img{
  width: 30%;
  height: auto;
  background-image: url('../img/common/villa_link.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.villa_link .villa_link_box .villa_link_note{
  width: 70%;
  padding: 3% 5%;
}
.villa_link .villa_link_box .villa_link_note .villa_link_name{
  font-size: 2.0rem;
  font-weight: bold;
}
.villa_link .villa_link_box a{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.villa_link .villa_link_box:hover{
  opacity: 0.5;
  transition: 0.3s;
}
@media screen and (max-width: 896px) {
  .villa_link{
    margin: 50px 0;
  }
  .villa_link .villa_link_box{
    width: 100%;
  }
  .villa_link .villa_link_box .villa_link_note p{
    font-size: 0.8rem;
  }
   .villa_link .villa_link_box .villa_link_note .villa_link_name{
    font-size: 1.5rem;
  }
}

/* ---------------------------------
 footer
--------------------------------- */
/* フッター高さ調整用 コンテンツの最後に必ず入れる */
.foot_just_before_wave{
  width: 100%;
  padding-bottom: 400px !important;
  background-image: url("../img/common/footer_headwave.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: left bottom;
}
@media screen and (max-width: 896px) {
  .foot_just_before_wave{
    padding-bottom: 150px !important;
  }
}
/* footer --------------------------- */
footer{
  width: 100%;
  margin: -1px auto 0 auto; /* 調整用 */
  padding: 100px 0 50px 0;
  background-color: #C1CEC8;
  position: relative;
}
footer::before{
  position: absolute;
  top:-200px;
  left: 50%;
  transform: translateX(-50%);
  content: '';
  display: block;
  width: 500px;
  height: 167px;
  background-image: url('../img/common/glamping_img.svg');
  background-size: contain;
  background-repeat: no-repeat;
}
footer .footer_box{
  width: 94%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
footer .footer_box .footer_logo{
  width: 35%;
}
footer .footer_box .footer_navi{
  width: 65%;
}
footer .footer_box .footer_logo_img{
  width: 80%;
  margin-bottom: 20px;
}
footer .footer_box .foot_qa,
footer .footer_box .foot_mail{
  width: 100%;
  margin-top: 15px;
}
footer .footer_box .foot_qa a,
footer .footer_box .foot_mail a{
  display: block;
  width: 80%;
  max-width: 300px;
  padding: 7px 10px 3px 10px;
  text-align: center;
  transition: 0.3s;
  background-color: #fff;
  border-radius: 99999px;
}
footer .footer_box .foot_qa a{
  color: #279F1C;
}
footer .footer_box .foot_qa a span,
footer .footer_box .foot_mail a span{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
footer .footer_box .foot_qa a span::before{
  content: "";
  background-image: url('../img/common/icon_qa.svg');
  background-size: cover;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  margin-top: -2px;
}
footer .footer_box .foot_mail a span::before{
  content: "";
  background-image: url('../img/common/icon_mail.svg');
  background-size: cover;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  margin-top: -2px;
}
/* menuリスト */
footer ul.footer_menu{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  justify-content: flex-end;
  padding-left: 0;
}
footer ul.footer_menu li{
  list-style: none;
  margin: 0 10px;
}
footer ul.footer_menu li a{
  color: #000;
}
footer ul.footer_menu li a:hover{
  color: #004225;
}
/* LINKリスト */
footer .footer_reserve_link{
  margin-bottom: 30px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
footer .footer_reserve_link a.footer_linkbtn{
  display: block;
  width: 400px;
  padding: 15px 10px 12px 10px;
  text-align: center;
  background-color: #004225;
  color: #fff;
  border-radius: 99999px;
  border: 1px solid #004225;
  position: relative;
}
footer .footer_reserve_link a.footer_linkbtn:hover{
  background-color: #F3EFE2;
  color: #004225;
}
footer .footer_reserve_link a.footer_linkbtn::after {
  position: absolute;
  top: 50%;
  right: 1em;
  width: 0.5em;
  height: 0.5em;
  transform: translateY(-50%) rotate(45deg);
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  content: "";
}
footer .footer_reserve_link a.footer_linkbtn span{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
footer .footer_reserve_link a.footer_linkbtn span::before{
  content: "";
  background-image: url('../img/common/icon_camp.svg');
  background-size: cover;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  margin-top: -2px;
}
/* 利用規約リスト */
footer .footer_term_txt{
  margin-top: 20px;
  text-align: right;
}
footer .footer_term{
  margin: 10px 0 10px 0;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
footer .footer_term a.footer_termbtn{
  display: block;
  width: 150px;
  padding: 5px 10px;
  text-align: center;
  border: 1px solid #004225;
  color: #004225;
  border-radius: 10px;
  margin-left: 10px;
}
footer .footer_term a.footer_termbtn:hover{
  background-color: #F3EFE2;
  color: #004225;
}
/* copy */
footer .copy{
  width: 94%;
  text-align: center;
  max-width: 1400px;
  margin: 50px auto 0 auto;
  font-size: 14px;
}
/* foot_img */
.foot_img{
  display: none;
}
@media screen and (max-width: 896px) {
  footer{
    padding: 50px 0 120px 0;
  }
  footer::before{
    display: none;
  }
  footer .footer_box .footer_logo{
    width: 100%;
    text-align: center;
  }
  footer .footer_box .footer_logo_img{
    width: 80%;
    margin: 0 auto 30px auto;
  }

  footer .footer_box .footer_navi{
    width: 100%;
  }
  footer .footer_box .foot_qa a{
    margin: 0 auto;
  }
  footer .footer_box .foot_mail a{
    margin: 0 auto;
  }
  footer .footer_reserve_link a.footer_linkbtn{
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 400px;
  }
  footer ul.footer_menu{
    justify-content: center;
  }
  footer .copy{
    text-align: center;
  }
  footer .footer_term_txt{
    text-align: center;
  }
  footer .footer_term{
    margin: 10px 0 20px 0;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  footer .footer_term a.footer_termbtn{
    display: block;
    width: 150px;
    padding: 5px 10px;
    margin-left: 5px;
    margin-right: 5px;
  }
  footer .foot_img{
    display: block;
    width: 100%;
    text-align: center;
    margin: 40px 0;
  }
  footer .foot_img img{
    width: 70%;
  }
}

/* ---------------------------------
 breadcrumb
--------------------------------- */
.breadcrumb_area{
  width: 100%;
  padding: 10px 0;
  font-size: 14px;
}
.breadcrumb {
  width: auto;
  max-width: 94%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding-inline-start: 0;
  margin-block-start: 0;
  margin-block-end: 0;
}
.breadcrumb li:not(:last-of-type)::after {
	margin: 0 10px;
	font-family: "Font Awesome 6 Free";
	font-weight:900;
  content: "\f054";
  color: #004225;
}

/* ---------------------------------
 div_frame - 囲う用
--------------------------------- */
.div_frame{
  width: 100%;
  margin: 15px 0;
  background-color: #f2f3f7;
  padding: 15px;
}
/* ---------------------------------
 TOPへ戻る
--------------------------------- */
.pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #004225;
  border: 1px solid #fff;
  border-radius: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2;
  cursor: pointer;
}
.pagetop__arrow {
  display: block;
  height: 10px;
  width: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: translateY(20%) rotate(-45deg);
}
@media screen and (max-width: 896px) {
  .pagetop {
    right: 20px;
    bottom: 85px;
  }
}
/* ---------------------------------
 foot_follow_menu
--------------------------------- */
.foot_follow_menu{
  display: none;
}
@media screen and (max-width: 896px) {
  .foot_follow_menu{
    display: block;
    width: 94%;
    position: fixed;
    bottom: 10px;
    left: 3%;
    z-index: 334;
  }
  .foot_follow_menu img{
    width: 100%;
    filter: drop-shadow(3px 3px 3px rgb(0, 0, 0, 0.3) );
  }
}

/* ---------------------------------
 side_nav_access
--------------------------------- */
.side_nav_access{
  display: block;
  width: 70px;
  background-color: #004225;
  position: fixed;
  top:200px;
  right: 0;
  padding: 10px;
  z-index: 20;
  border-radius: 10px 0 0 10px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 12px;
  box-shadow: 2px 2px 4px rgb(0, 0, 0, 0.3);
  cursor: pointer;
}
.side_nav_access img.side_nav_access_icon{
  display: block;
  width: 65%;
  margin: 0 auto;
}
@media screen and (max-width: 896px) {
  .side_nav_access{
    display: none;
  }
}
/* ---------------------------------
 side_nav_reserve
--------------------------------- */
.side_nav_reserve{
  display: block;
  width: 70px;
  background-color: #fff;
  position: fixed;
  top:300px;
  right: 0;
  padding: 15px 10px;
  z-index: 21;
  border-radius: 10px 0 0 10px;
  color: #000;
  font-weight: bold;
  text-align: center;
  box-shadow: 2px 2px 4px rgb(0, 0, 0, 0.3);
  cursor: pointer;
}
.side_nav_reserve img.side_nav_reserve_icon{
  display: block;
  width: 65%;
  margin: 0 auto;
}
.side_nav_reserve p{
  text-align: center;
  writing-mode: vertical-rl;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 10px 0;
}
@media screen and (max-width: 896px) {
  .side_nav_reserve{
    display: none;
  }
}

/* ---------------------------------
 slickの矢印のカスタマイズ
--------------------------------- */
/*.slick-arrow {
  display: block;
  position: absolute;
  top: 28px;
  bottom: 0;
  margin: auto;
  padding: 0;
  width: 20px;
  height: 38px;
  color: transparent;
  z-index: 1;
  transition: opacity 0.5s;
  z-index: 1;
}
.slick-arrow:hover {
  opacity: 0.7;
}
.slick-next::before,
.slick-next::after,
.slick-prev::before,
.slick-prev::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.slick-next::after,
.slick-prev::after {
  width: 26px;
  height: 26px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.next_black .slick-next::after,
.next_black .slick-prev::after {
  width: 26px;
  height: 26px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}
.slick-next {
  right: 26px;
}
.slick-next::after {
  right: 4px;
  transform: rotate(45deg);
}
.slick-prev {
  left: 26px;
}
.slick-prev::after {
  left: 4px;
  transform: rotate(-135deg);
}
@media screen and (max-width: 767px) {
  .slick-next::after,
  .slick-prev::after {
    width: 20px;
    height: 20px;
  }
  .slick-next {
    right: 8px;
  }
  .slick-prev {
    left: 8px;
  }
  .slick-next::after {
    right: 2px;
  }
}
*/
/* ---------------------------------
 ページネーション
--------------------------------- */
.pagination {
  width: 100%;
}
.pagination .nav-links ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.pagination .nav-links li > * {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  height: 45px;
}
.pagination .nav-links li > *:not(.dots) {
  width: 45px;
  border-radius: 50%;
  color: #000000;
  background: #efefef;
  transition: color 0.3s ease, background 0.3s ease;
}
.pagination .nav-links li > .current,
.pagination .nav-links li > a:hover {
  color: #ffffff;
  background: #003350;
}