@charset "UTF-8";
html {
  font-size: 62.5%;
}
@media screen and (max-width: 1023px) and (min-width: 768px) {
  html {
    font-size: 1vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.3vw;
  }
}

body {
  font-family: 'Shippori Mincho', serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  color: #fff;
  background-color: #000;
  margin: 0;
}
@media screen and (max-width: 1023px) {
  body {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 12px;
  }
}

* {
  box-sizing: border-box;
}

a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

a:hover {
  cursor: pointer;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
  vertical-align: top;
}

.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pc_none {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp_none {
    display: none;
  }
  .pc_none {
    display: block;
  }
}

.content_width {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

h2 {
  font-size: 3.6rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  h2 {
    font-size: 28px;
  }
}

/* ヘッダー */
header {
  background-color: rgba(0,0,0,0.3);
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  box-sizing: border-box;
  transition: 1s;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  header {
    height: 60px;
  }
}

header .content_width {
  width: 100%;
  max-width: 1920px;
  padding: 13px 20px;
  justify-content: unset;
}
@media screen and (max-width: 767px) {
  header .content_width {
    justify-content: space-between;
    padding: 10px;
  }
}

a:hover {
  cursor: pointer;
}

header .header_logo {
  line-height: 0;
  width: 180px;
  height: 50px;
  margin-right: 12rem;
}
@media screen and (max-width: 767px) {
  header .header_logo {
    width: 150px;
    height: 30px;
    margin-right: auto;
  }
}
@media screen and (max-width: 376px) {
  header .header_logo a {
    width: 130px;
    height: 26px;
    padding-top: 0.3rem;
  }
}

header nav {
  margin-right: auto;
}

header nav ul {
  line-height: calc(42 / 16);
  column-gap: 3.2rem;
}

header a {
  font-weight: 600;
  color: #FFF;
}

.section {
  height: 100%;
}

.section-a {
  background: #FFF;
}

/* スクロールして「scroll-navクラス」がついたときのヘッダーデザイン */
header.scroll-nav,
.lower_header {
  background: #000;
}

/* 「scroll-navクラス」がヘッダーについたときに、ロゴとナビゲーションの文字を黒にする */
#header.scroll-nav .header_logo a {
  background-image: url(../img/top_logo_wh.png);
}
header.scroll-nav ul a,
.lower_header ul a {
  color: #fff;
}
header.scroll-nav .burger_bar,
.lower_header .burger_bar {
  background-color: #fff;
}
/*#F8F5F0*/
.modal__btn {
  width: 170px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  line-height: calc(48 / 16);
  color: #FFF;
  background-color: #af984b;
  padding-right: 37px;
  padding-left: 36px;
}
.modal__btn:hover {
  cursor: pointer;
}
.modal__btn img {
  width: 22px;
}
@media screen and (max-width: 767px) {
  .modal__btn {
    width: 90px;
    height: 25px;
    font-size: 14px;
    padding-right: 6px;
    padding-left: 6px;
    margin-top: 7px;
    margin-right: 6px;
  }
  .modal__btn img {
    width: 15px;
  }
}

#modal-1 {
  display: none;
}
#modal-1.is-open {
  display: block;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255,255,255,0.3);
  padding: 1.5rem;
  z-index: 2;
}

.modal__container {
  width: 100%;
  max-width: 550px;
  text-align: center;
  color: #000;
  background-color: #fff;
  border: #797878 0.5px solid;
  box-shadow: 6px 6px 6px 0px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 25px 60px 90px;
  box-sizing: border-box;
  animation-name: modal__open;
  animation-duration: 1s;
}
@media screen and (max-width: 767px) {
  .modal__container {
    width: 90%;
    padding: 20px 20px 40px;
  }
}

@keyframes modal__open {
  from {opacity: 0}
  to {opacity: 1}
}

.modal__container .modal__close {
  position: absolute;
  top: 0;
  right: 17px;
  font-size: 30px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .modal__container .modal__close {
    top: 10px;
  }
}

.modal__container h2 {
  width: 100%;
  font-size: 20px;
  line-height: calc(34 / 20);
  border-bottom: #E7E7E7 solid 1px;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.form_box {
  position: relative;
}

header label {
  font-size: 16px;
  line-height: calc(27 / 16);
  text-align: left;
  display: block;
  padding-top: 10px;
}

header .form_box:nth-child(3) label {
  line-height: calc(24 / 16);
}
header .form_box:nth-child(3) label span {
  font-size: 14px;
  line-height: calc(24 / 14);
}

header .form_text,
select {
  width: 100%;
  height: 32px;
  font-size: 14px;
  line-height: calc(24 / 14);
  color: #797878;
  display: block;
  border: #E7E7E7 solid 1px;
  padding-left: 10px;
  margin: 8px auto 0;
}

.altInputClass {
  width: 100%;
  height: 32px;
  font-size: 14px;
  line-height: calc(24 / 14);
  border: #E7E7E7 solid 1px;
  padding-left: 10px;
  margin: 8px auto 0;
}

.submit-btn {
  width: 198px;
  height: 42px;
  line-height: calc(27 / 16);
  border: #707070 solid 1px;
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .submit-btn {
    margin-top: 40px;
  }
}

.error {
  width : 100%;
  padding: 0 0 0 10px;
  display: inline-block;
  font-size: 12px;
  color: red;
  text-align: left;
  box-sizing: border-box;
}

@media screen and (max-width: 767px){
  header .burger_btn {
    width: 25px;
    height: 25px;
    position: relative;
  }
  .burger_bar {
    display: block;
    width: 100%;
    height: 4px;
    background-color: #FFF;
    position: absolute;
    left: 0;
  }
  .burger_bar:nth-child(1) {
    top: 0;
    margin-top: 0.25rem;
  }
  .burger_bar:nth-child(2) {
    top: 59%;
    transform: translateY(-50%);
  }
  .burger_bar:nth-child(3) {
    top: 106%;
    transform: translateY(-100%);
  }
  
  .menu_bar {
    display: none;
    text-align: right;
    padding-right: 10px;
  }
  
  .menu_bar.is-active{
    display: block;
  }

  .menu_bar ul {
    width: 60px;
    font-size: 16px;
    background-color: rgba(050,050,050,0.4);
    padding-right: 5px;
    margin: 0 0 0 auto;
  }
}

/* トップページ */
#top .content_width {
  position: relative;
  max-width: 100%;
}

.top_p {
  font-size: 3.4rem;
  font-weight: 600;
  color: #FFFFFF;
  writing-mode: vertical-rl;
  letter-spacing: 0.23em;
  line-height: 0;
  text-shadow: 0.3px 0.3px 1px #AAA,-0.3px 0.3px 1px #AAA,0.3px -0.3px 1px #AAA,-0.3px -0.3px 1px #AAA;
  position: absolute;
  top: 36.2rem;
  z-index: 1;
}
@media screen and (max-width: 1023px) and (min-width: 768px) {
  .top_p {
    top: 200px;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .top_p {
    top: 190px;
    font-size: 18px;
  }
}

.top_p_01 {
  right: 31.8%;
}
.top_p_02 {
  right: 27.4%;
}
@media screen and (max-width: 1023px) and (min-width: 768px) {
  .top_p_01 {
    right: 31.8%;
  }
  .top_p_02 {
    right: 27.4%;
  }
}
@media screen and (max-width: 767px) and (min-width: 375px) {
  .top_p_01 {
    right: 62%;
  }
  .top_p_02 {
    right: 55%;
  }
}
@media screen and (max-width: 374px) {
  .top_p_01 {
    top: 195px;
    right: 73%;
  }
  .top_p_02 {
    top: 195px;
    right: 60%;
  }
}

.top_img_box {
  width: 100%;
  height: 1079px;
  overflow: hidden;
  position: relative; 
}
@media screen and (max-width: 1685px) and (min-width: 1366px) {
  .top_img_box {
    height: 947px;
  }
}
@media screen and (max-width: 1365px) and (min-width: 1024px) {
  .top_img_box {
    height: 768px;
  }
}
@media screen and (max-width: 1023px) {
  .top_img_box {
    height: 575px;
  }
}

.top_image {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  animation: anime 24s linear infinite;
}

.top_image:nth-child(1) {
  background-image: url(../img/mainbg01.jpg);
  animation-delay: -2s; 
}

.top_image:nth-child(2) {
  background-image: url(../img/mainbg02.jpg);
  animation-delay: 6s; 
}

.top_image:nth-child(3) {
  background-image: url(../img/mainbg03.jpg);
  animation-delay: 14s; 
}

@keyframes anime {
  0% {
      opacity: 0;
      transform: scale(1);
    }
    4.16% {
      opacity: 1;
    }
    33.33% {
      opacity: 1;
    }
    41.66% {
      opacity: 0;
      transform: scale(1.2);
    }
    100% { opacity: 0;
  }
}

.bg-black {
  width: 100%;
  height: 50px;
  background-color: #000;
}

/* イントロ */

#intro {
  width: 100%;
  background-image: url(../img/intro-bg.jpg);
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
}

.intro_box {
  color: #000;
  writing-mode: vertical-rl;
  text-orientation: upright;
  padding: 8.5rem 0 16rem 19.2rem;
}
@media screen and (max-width: 1685px){
  .intro_box {
    padding-left: 0;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .intro_box {
    width: 310px;
    writing-mode: unset;
    text-align: left;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 376px) {
  .intro_box {
    width: 90%;
  }
}

.intro_box h4 {
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 2.17;
  letter-spacing: 0.4em;
}
.intro_box h4 span {
  letter-spacing: 0.5em;
  display: block;
  padding-top: 8.5rem;
}
@media screen and (max-width: 767px) {
  .intro_box h4 {
    font-size: 20px;
    letter-spacing: 0.1em;
  }
  .intro_box h4 span {
    letter-spacing: 0.1em;
    line-height: 1.2;
    padding-top: 0;
    padding-right: 0;
  }
}

.intro_box p {
  font-size: 1.6rem;
  line-height: 2.37;
  letter-spacing: 0.375em;
  padding-top: 5.4rem;
  padding-right: 9.6rem;
  padding-bottom: 3rem;
}
@media screen and (max-width: 1023px) {
  .intro_box p {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .intro_box p {
    letter-spacing: 0.1em;
    line-height: 1.8;
    padding-top: 25px;
    padding-right: 0;
  }
}

.intro_box p:nth-child(2) {
  padding-right: 9.1rem;
}
.intro_box p:nth-child(5) {
  font-size: 2.2rem;
  line-height: 2;
  letter-spacing: 0.45em;
  text-align: end;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .intro_box p:nth-child(2) {
    padding-right: 0;
  }
  .intro_box p:nth-child(5) {
    font-size: 16px;
    padding-right: 0;
    text-align: right;
  }
}
@media screen and (max-width: 376px) {
  #intro br {
    display: none;
  }
}

/* メインコンテンツ */
#main_contents {
  width: 100%;
  background-color: #000;
  padding-top: 15rem;
  padding-bottom: 7.8rem;
}
@media screen and (max-width: 767px) {
  #main_contents {
    text-align: center;
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}

#main_contents .content_width {
  max-width: 1920px;
}

.main_box {
  color: #fff;
  justify-content: unset;
}
@media screen and (max-width: 767px) {
  .main_box {
    display: block;
    margin: 10px 0;
  }
}

.main_contents_img {
  width: 105rem;
}
@media screen and (max-width: 767px) {
  .main_contents_img {
    width: 100%;
  }
}

.main_article {
  width: 87rem;
  white-space: nowrap;
  padding-left: 13.7rem;
  padding-bottom: 10.9rem;
}
@media screen and (max-width: 1685px) {
  .main_article {
    padding-left: 5rem;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 1023px) and (min-width: 768px) {
  .main_article {
    padding-right: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .main_article {
    width: 100%;
    white-space: normal;
    padding-top: 30px;
    padding-left: unset;
    padding-bottom: 50px;
  }
}

.main_article h2 {
  font-size: 3.6rem;
  line-height: calc(62 / 36);
  padding-bottom: 5.3rem;
}
@media screen and (max-width: 1365px) and (min-width: 1024px) {
  .main_article h2 {
    font-size: 3rem;
    line-height: 1.6;
    padding-bottom: 3.5rem;
  }
}
@media screen and (max-width: 1023px) and (min-width: 768px) {
  .main_article h2 {
    font-size: 2.4rem;
    line-height: 1.6;
    padding-bottom: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .main_article h2 {
    font-size: 20px;
    line-height: 1.6;
    padding-bottom: 30px;
  }
}

.main_article p {
  line-height: calc(32 / 16);
  padding-bottom: 6.7rem;
}
@media screen and (max-width: 1365px) and (min-width: 768px) {
  .main_article p {
    line-height: 1.6;
    padding-bottom: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .main_article p {
    width: 90%;
    max-width: 250px;
    font-size: 14px;
    text-align: left;
    padding-bottom: 30px;
    margin: 0 auto;
  }
}

.main_box:nth-child(2) {
  flex-direction: row-reverse;
  padding: 12.16rem 0;
}
@media screen and (max-width: 767px) {
  .main_box:nth-child(2) {
    padding: 0;
  }
}
  /*
.main_box:nth-child(2) .main_article {
  padding-top: 4.1rem;
  padding-left: 40.8rem;
}
.main_box:nth-child(2) .main_article div {
  display: inline-block;
  text-align: left;
}
@media screen and (max-width: 1685px) and (min-width: 1366px)   {
  .main_box:nth-child(2) .main_article {
    padding-top: 0;
    padding-left: 13rem;
  }
  .main_box:nth-child(2) .main_article div{
    padding-left: 8rem;
  }
}
@media screen and (max-width: 1365px) and (min-width: 768px) {
  .main_box:nth-child(2) .main_article {
    padding-top: 0;
    padding-left: 5px;
  }
  .main_box:nth-child(2) .main_article div {
    padding-left: 10rem;
  }
}
@media screen and (max-width: 1023px) and (min-width: 768px) {
  .main_box:nth-child(2) .main_article {
    padding-left: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .main_box:nth-child(2) .main_article {
    padding-top: 30px;
    padding-left: unset;
  }
  .main_box:nth-child(2) .main_article div {
    text-align: center;
  }
}

.main_box:nth-child(2) p {
  padding-bottom: 3.5rem;
}
.main_article .below_1365{
  display: none;
}
@media screen and (max-width: 1365px) and (min-width: 768px) {
  .main_box:nth-child(2) h2 {
    padding-bottom: 2rem;
  }
  .main_box:nth-child(2) p {
    padding-bottom: 2.5rem;
  }
  .main_article .above_1366{
    display: none;
  }
  .main_article .below_1365{
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .main_box:nth-child(2) p {
    padding-bottom: 30px;
  }
}
*/
.main_article .click_button {
  width: 20rem;
  height: 5.6rem;
  border: solid 1px #fff;
}
@media screen and (max-width: 767px) {
  .main_article .click_button {
    width: 150px;
    height: 40px;
    margin: 0 auto;
  }
}

.main_article .click_button a {
  color: #fff;
  text-align: center;
  line-height: 3.4;
  display: block;
}
@media screen and (max-width: 1685px) and (min-width: 768px) {
  .main_box:nth-child(2) .click_button a {
    padding-left: 0rem;
    margin-left: -9rem;
  }
}
@media screen and (max-width: 767px) {
  .main_box .click_button a {
    font-size: 14px;
    line-height: 2.8;
  }
}

/* 下層 お部屋 */
.lower_top {
  width: 100%;
  height: 500px;
  max-height: 500px;
  background-image: url(../img/oheya_bg.jpg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .lower_top {
    height: 300px;
    margin-top: 60px;
  }
}

#menu_top.lower_top {
  background-image: url(../img/menu-header.jpg);
}
#onsen_top.lower_top {
  background-image: url(../img/onsen-header.jpg);
}
@media screen and (max-width: 767px) {
  #onsen_top.lower_top {
    background-position: center right -18rem;
  }
}

.lower_top h2 {
  font-size: 34px;
  color: #FFF;
  line-height: calc(42 / 34);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  text-shadow: #000 0px 0 10px
}

.lower_intro {
  color: #000;
  text-align: center;
  line-height: calc(32 / 16);
  background-image: url(../img/access-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 6rem;
  padding-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .lower_intro {
    width: 100%;
    font-size: 14px;
    line-height: 1.8;
    padding: 20px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .lower_main {
    padding: 0 2rem;
  }
}

.lower_main .content_width {
  max-width: 118rem;
  margin-top: 2.8rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .lower_main .content_width {
    width: 100%;
    max-width: 100%;
    margin-top: 2.8rem;
    margin-bottom: 2rem;
  }
}

#onsen_main.lower_main .content_width {
  margin-bottom: 15.6rem;
}
@media screen and (max-width: 767px) {
  #onsen_main.lower_main .content_width {
    max-width: 118rem;
    margin-top: 1rem;
    margin-bottom: 3rem;
  }
}

.lower_main .bread  {
  line-height: calc(32 / 16);
  padding-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .lower_main .bread  {
    padding-bottom: 2rem;
  }
}

.lower_main_box {
  width: 100%;
  height: 43.8rem;
  background-image: url(../img/oheya01.jpg),url(../img/access-bg.jpg);
  background-position:  left top, right bottom;
  background-repeat: no-repeat, no-repeat;
  background-size: 52.5rem 30rem, 81.3rem 38.1rem;
}
.lower_main_box:nth-child(3) {
  background-image: url(../img/oheya02.jpg),url(../img/access-bg.jpg);
  background-position: right top, left bottom;
  background-repeat: no-repeat, no-repeat;
  margin: 8.4rem auto;
}
.lower_main_box:nth-child(4) {
  background-image: url(../img/oheya03.jpg),url(../img/access-bg.jpg);
}
#menu_main .lower_main_box:nth-child(2) {
  background-image: url(../img/menu01.jpg),url(../img/access-bg.jpg);
}
#menu_main .lower_main_box:nth-child(3) {
  background-image: url(../img/menu02.jpg),url(../img/access-bg.jpg);
}
#menu_main .lower_main_box:nth-child(4) {
  background-image: url(../img/menu03.jpg),url(../img/access-bg.jpg);
}
#onsen_main .lower_main_box:nth-child(2) {
  background-image: url(../img/onsen01.jpg),url(../img/access-bg.jpg);
}
#onsen_main .lower_main_box:nth-child(3) {
  background-image: url(../img/onsen02.jpg),url(../img/access-bg.jpg);
}
@media screen and (max-width: 767px) {
  .lower_main_box {
    width: 100%;
    height: 100%;
    background-image: url(../img/oheya01.jpg),url(../img/access-bg.jpg);
    background-position: left top, right bottom;
    background-repeat: no-repeat, no-repeat;
    background-size: 95%, 95% 95%;
  }
  .lower_main_box:nth-child(3) {
    background-image: url(../img/oheya02.jpg),url(../img/access-bg.jpg);
    background-position: left top, right bottom;
    background-repeat: no-repeat, no-repeat;
    margin: 5rem auto;
  }
}

.lower_article {
  color: #000;
  font-weight: 600;
  width: 55%;
  padding: 11.3rem 6rem 11.3rem 7.3rem;;
  margin-right: 0;
  margin-left: auto;
}
.lower_main_box:nth-child(3) .lower_article {
  padding: 11.3rem 6rem 11.3rem 6.1rem;;
  margin-right: auto;
  margin-left: 0;
}
#onsen_main .lower_main_box:nth-child(2) .lower_article {
  padding: 11.3rem 12rem 11.3rem 7.6rem;
}
#onsen_main .lower_main_box:nth-child(3) .lower_article {
  padding: 11.3rem 3rem 11.3rem 6.2rem;
}
@media screen and (max-width: 1179px) {
  .lower_article,
  #onsen_main .lower_main_box:nth-child(2) .lower_article {
    width: 53%;
    padding: 11.3rem 5rem 11.3rem 7.3rem;
    margin-right: 0;
    margin-left: auto;
  }
  .lower_main_box:nth-child(3) .lower_article,
  #onsen_main .lower_main_box:nth-child(3) .lower_article  {
    padding: 11.3rem 6rem 11.3rem 6.1rem;;
    margin-right: auto;
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .lower_article,
  .lower_main_box:nth-child(3) .lower_article,
  #onsen_main .lower_main_box:nth-child(2) .lower_article,
  #onsen_main .lower_main_box:nth-child(3) .lower_article {
    width: 100%;
    padding: 24rem 2rem 2rem 4rem;
    margin-right: unset;
    margin-left: unset;
  }
}

.lower_article h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: calc(32 / 24);
  padding-bottom: 4rem;
}
@media screen and (max-width: 1023px) {
  .lower_article h3 {
    font-size: 20px;
    line-height: 1.2;
    padding-bottom: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .lower_article h3 {
    font-size: 18px;
    padding-bottom: 14px;
  }
}

.lower_article p {
  font-size: 16px;
  line-height: calc(32 / 16);
}
@media screen and (max-width: 1023px) {
  .lower_article p {
    line-height: 1.5;
  }
}
@media screen and (max-width: 767px) {
  .lower_article p {
    font-size: 14px;
  }
}

.lower_article ul {
  font-size: 14px;
  line-height: calc(21 / 14);
  padding-top: 40px;
}
.lower_main_box:nth-child(2) ul{
  padding-left: 0.6rem;
}
@media screen and (max-width: 1023px) {
  .lower_article ul {
    padding-top: 30px;
  }
  .lower_main_box:nth-child(3) .lower_article ul {
  padding-top: 15px;
  }
}
@media screen and (max-width: 767px) {
  .lower_article ul {
    font-size: 12px;
    padding-top: 5px;
  }
  .lower_main_box:nth-child(2) ul{
    padding-left: 0;
  }
}

/* 温泉の効能 */
.onsen_info {
  width: 100%;
  text-align: center;
  border-top: #af984b solid 5px;
  border-bottom: #af984b solid 5px;
  padding-top: 8.2rem;
  padding-bottom: 7.3rem;
  margin: 0 auto 9.6rem;
}
@media screen and (max-width: 767px) {
  .onsen_info {
    border-top: unset;
    border-bottom: unset;
    padding-top: 3rem;
    padding-bottom: 3rem;
    margin: 0 auto 0rem;
  }
}

.onsen_info h3 {
  font-size: 26px;
  padding-bottom: 3.8rem;
  padding-left: 0.5rem;
}
@media screen and (max-width: 767px) {
  .onsen_info h3 {
    font-size: 22px;
    padding-bottom: 2rem;
    padding-left: 0rem;
  }
}

.onsen_info dl {
  width: 88rem;
  border-bottom: #E7E7E7 solid 1px;
  padding-bottom: 0.4rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .onsen_info dl {
    width: 90%;
    border-top: #af984b solid 4px;
    border-bottom: #af984b solid 4px;
  }
}

.onsen_info .onsen_text {
  width: 88rem;
  font-size: 15px;
  line-height: calc(32 / 15);
  text-align: left;
  justify-content: flex-start;
  align-items: unset;
  column-gap: 5.8rem;
  border-top: #E7E7E7 solid 1px;
  padding: 8.7px 0 8.4px;
}
@media screen and (max-width: 767px) {
  .onsen_info .onsen_text {
    width: 100%;
    display: block;
    border-top: unset;
    padding: 0px 0;
  }
}

.onsen_info .onsen_text:last-child{
  line-height: 1.5;
  padding-top: 13.2px;
}

.onsen_info .onsen_text dt {
  width: 20%;
  padding-left: 0.3rem;
}
@media screen and (max-width: 767px) {
  .onsen_info .onsen_text dt {
    width: 100%;
    padding: 5px 0;
  }
}
.onsen_info .onsen_text dd {
  width: 80%;
  padding-left: 0;
}
@media screen and (max-width: 767px) {
  .onsen_info .onsen_text dd {
    width: 100%;
    border-top: #E7E7E7 solid 1px;
    border-bottom: #E7E7E7 solid 1px;
    padding: 5px 0rem;
    margin-bottom: 30px;
  }
}

/* プラン */
#plan {
  width: 100%;
  background-image: url(../img/washi02_bg.jpg);
  background-position: center;
  background-repeat: repeat;
}

#plan .content_width {
  padding-bottom: 13.6rem;
}
@media screen and (max-width: 1365px) {
  #plan .content_width {
    width: 93%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  #plan .content_width {
    width: 100%;
  }
} 

#plan h2 {
  color: #000;
}

.sub_title {
  text-align: center;
  padding-top: 6rem;
  padding-bottom: 6.6rem;
}
@media screen and (max-width: 767px) {
  .sub_title {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.sub_title img {
  width: 6rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .sub_title img {
    width: 35px;
    margin-bottom: 20px;
  }
}

.sub_title h2 {
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .sub_title h2 {
    font-size: 26px;
  }
}

.plan_container {
  align-items: unset;
}
@media screen and (max-width: 1365px) {
  .plan_container {
    column-gap: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .plan_container {
    width: 100%;
    column-gap: unset;
  }
}

.plan_box {
  letter-spacing: -0.06em;
  width: 33.1rem;
  height: 43rem;
  background-color: #af984b;
  padding: 1rem;
}
@media screen and (max-width: 1023px) {
  .plan_box {
    height: 48rem;
  }
}
@media screen and (max-width: 768px) {
  .plan_box {
    height: unset;
  }
}
@media screen and (min-width: 768px) {
  .swiper-slide {
    flex-shrink: unset;
  }
}

.plan_img img {
  width: 100%;
}

.plan_box p:first-of-type {
  font-size: 20px;
  line-height: calc(32 / 20);
  letter-spacing: -0.08em;
  padding-top: 27px;
}
@media screen and (max-width: 1023px) {
  .plan_box p:first-of-type {
    line-height: calc(30 / 20);
    padding-top: 15px;
  }
}
@media screen and (max-width: 767px) {
  .plan_box p:first-of-type {
    font-size: 18px;
  }
}

.plan_box p:last-of-type {
  font-size: 16px;
  line-height: calc(32 / 16);
  padding-top: 21px;
}
@media screen and (max-width: 1023px) {
  .plan_box p:last-of-type {
    line-height: calc(26 / 16);
    padding-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .plan_box p:last-of-type {
    font-size: 14px;
  }
}

.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 5rem;
}

.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  margin: 0.4rem;
  background: #cfd0d1;
  cursor: pointer;
  opacity: 1;
}

.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  transform: scale(1.4);
  border-radius: 50%;
  background-image: radial-gradient(
    #CCC 0% 40%,
    #fff 40% 50%,
    #CCC 50% 100%
  );
}

/* お知らせ */
#news {
  width: 100%;
  height: auto;/*
  background-image: url(../img/kinpaku.png);
  background-position: right;*/

}

#news .content_width {
  padding-bottom: 6rem;
  padding-left: 0.3rem;
}
@media screen and (max-width: 1365px) {
  #news .content_width {
    width: 97%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  #news .content_width {
    width: 95%;
  }
}

#news .sub_title {
  color: #fff;
  padding-bottom: 3.8rem;
}

.tab {
  color: #fff;
  justify-content: center;
  column-gap: 5.3rem;
  padding-right: 2rem;
}

.tab li {
  font-size: 16px;
  cursor: pointer;
  list-style: none;
  transition: .3s;
}
.tab li.active {
  text-decoration: underline;
  cursor: auto;
}

.area ul {
  display: none;
}
.area ul.show {
  display: flex;
  margin-top: 4.1rem;
}

.news_article {
  flex-wrap: wrap;
  row-gap: 2rem;
}

.news_box {
  color: #000;
  width: 57rem;
  height: 13rem;
  background-color: #F6F6F6;
  justify-content: unset;
  column-gap: 3rem;
  align-items: unset;
  padding-top: 1.5rem;
  padding-left: 0.9rem;
}
@media screen and (max-width: 1365px) and (min-width: 768px) {
  .news_box {
    width: 48.5%;
    column-gap: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .news_box {
    height: auto;
    align-items: center;
    column-gap: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 0 auto;
  }
}

.news_article img {
  width: 10.3rem;
  height: 10rem;
}
@media screen and (max-width: 767px) {
  .news_article img {
    width: 5rem;
    height: 4.8rem;
  }
}

.news_text {
  width: 70%;
}
@media screen and (max-width: 1365px) {
  .news_text {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .news_text {
    width: 77%;
  }
}

.news_text p:first-of-type {
  font-size: 14px;
  line-height: 1;
}

.news_text p:last-of-type {
  font-size: 16px;
  line-height: calc(32 / 16);
  padding-top: 2px;
}
@media screen and (max-width: 767px) {
  .news_text p:last-of-type {
    line-height: 1.5;
    padding-top: 2.5px;
  }
}


/* アクセス */
#accsess {
  width: 100%;
  background-image: url(../img/access-bg.jpg);
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 0 2rem 11rem;
}
@media screen and (max-width: 767px) {
  #accsess {
    padding: 0 2rem 5rem;
  }
}

#accsess .sub_title {
  color: #000;
  padding-bottom: 8.4rem;
}
@media screen and (max-width: 767px) {
  #accsess .sub_title {
    padding-bottom: 5rem;
  }
}

.accsess_box {
  color: #000;
  justify-content: start;
  column-gap: 8.4rem;
  margin-bottom: 69px;
}
@media screen and (max-width: 1023px) {
  .accsess_box {
    justify-content: start;
    column-gap: 5rem;
    margin-bottom: 69px;
  }
}
@media screen and (max-width: 767px) {
  .accsess_box {
    width: 100%;
    text-align: center;
    display: block;
    column-gap: 4rem;
    margin-bottom: 3rem;
    margin: 0 auto;
  }
}

.accsess_box img {
  width: 656px;
  height: 370px;
  object-fit: cover;
}
@media screen and (max-width: 1023px) {
  .accsess_box img {
    width: 55%;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .accsess_box img {
    width: 100%;
    margin-bottom: 30px;
  }
}

.accsess_info {
  font-size: 16px;
  line-height: calc( 32/16 ) ;
}
@media screen and (max-width: 767px) {
  .accsess_info {
    width: 90%;
    text-align: left;
    line-height: 1.5;
    margin: 0 auto;
  }
}

.accsess_info dt {
  font-weight: 600;
  padding-top: 8px;
  padding-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .accsess_info dt {
    padding-top: 30px;
  }
}

.accsess_info p {
  max-width: 40.8rem;
  padding-top: 8px;
  padding-bottom: 19px;
}
@media screen and (max-width: 767px) {
  .accsess_info p {
    padding-top: 30px;
    padding-bottom: 50px;
  }
}

.map {
  width: 792px;
  height: 592px;
  position: relative;
  padding-top: 50%;
  margin: 0 auto;
}
@media screen and (max-width: 1023px) {
  .map {
    width: 100%;
    height: 100%;
    aspect-ratio: 12.375/9.25
  }
}

.map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1023px) {
  .map iframe {
    aspect-ratio: 16/9;
  }
}

/* info */
#info {
  width: 100%;
  background-image: url(../img/info_bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 374px) {
  #info {
  padding: 0 2rem;
  }
}

#info .content_width {
  max-width: 1180px;
  text-align: center;
  padding-top: 64px;
  padding-bottom: 20px;
}

.info_menu {
  width: 157px;
  font-size: 18px;
  letter-spacing: 0.8em;
  line-height: 2.9;
  writing-mode: vertical-lr;
  text-align: start;
  margin: 0 auto;
}

#info .content_width h1 {
  width: 145px;
  height: 92px;
  margin: 30px auto 100px;
}


#info .address {
  font-size: 16px;
  line-height: 2.5;
  padding-left: 0.9rem;
  margin: 0 auto;
}
#info p br {
  display: none;
}
@media screen and (max-width: 374px) {
  #info .address {
    max-width: 230px;
    line-height: 2;
    text-align: left;
    padding-left: 0rem;
    margin: 0 auto;
  }
  #info p br {
    display: block;
  }
}

#info p:first-of-type span {
  letter-spacing: 0.18em;
  padding-left: 2rem;
}
#info p:last-of-type span {
  padding-left: 2rem;
}
@media screen and (max-width: 374px) {
  #info p:first-of-type span,
  #info p:last-of-type span {
    padding-left: 0rem;
  }
}

/* フッター */
#footer {
  width: 100%;
  background-color: #000;
}
#footer p {
  font-size: 12px;
  line-height: calc(24 / 12);
  text-align: center;
  color: #FFF;
  padding-top: 20px;
  padding-bottom: 17px;
}
