@charset "UTF-8";
/*******************************
* 変数
********************************/
/*******************************
* mixin
********************************/
/*******************************
* イージング
********************************/
@media screen and (max-width: 767px) {
  /*******************************
  * 共通設定
  ********************************/
  * {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
    font-size: 62.5%;
  }

  body {
    font-family: "Noto Sans JP", sans-serif;
    color: #333;
    word-wrap: break-word;
    font-size: 1.4rem;
    line-height: 1.7;
  }

  a {
    color: inherit;
    text-decoration: none;
  }

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

  .container {
    position: relative;
    overflow: hidden;
  }

  .inner {
    width: 94vw;
    margin: 0 auto;
  }

  .flex-container {
    display: flex;
    justify-content: space-between;
  }

  .pc {
    display: none;
  }

  .btn {
    display: block;
    width: 160px;
    height: 40px;
    color: #fff;
    text-align: center;
    font-weight: 500;
    padding: 6px 0 0;
  }

  /* IE11用 object-fit */
  .ofIE img {
    width: 100%;
    height: 100%;
    font-family: "object-fit: cover;";
    object-fit: cover;
  }

  /*******************************
  * 共通パーツ
  ********************************/
  /* header */
  header {
    width: 100%;
  }
  header .head-top {
    background: #004098;
    padding: 10px 0;
  }
  header .head-top .inner {
    display: flex;
    justify-content: space-between;
  }
  header .head-top .l_wrap .logo {
    width: 180px;
  }
  header .head-top .l_wrap .logo a {
    display: block;
  }
  header .head-top .l_wrap .logo a img {
    width: 100%;
    height: auto;
    vertical-align: top;
  }
  header .toggle {
    content: "";
    width: 40px;
    height: 40px;
    position: fixed;
    top: 9px;
    right: 10px;
    background-color: #e50012;
    /*bg-colorの指定*/
    z-index: 9999;
    border-radius: 5px;
  }
  header .toggle span {
    position: absolute;
    width: 30px;
    border-bottom: 3px solid #fff;
    /*border-colorの指定*/
    border-radius: 1.5px;
    display: block;
    left: 5px;
    transition: 0.3s all;
  }
  header .toggle span:nth-of-type(1) {
    top: 10px;
  }
  header .toggle span:nth-of-type(2) {
    top: 19px;
  }
  header .toggle span:nth-of-type(3) {
    top: 28px;
  }
  header .toggle.active span:nth-of-type(1) {
    top: 19px;
    transform: rotate(45deg);
  }
  header .toggle.active span:nth-of-type(2), header .toggle.active span:nth-of-type(3) {
    top: 19px;
    transform: rotate(-45deg);
  }
  header .drawer {
    width: 300px;
    position: fixed;
    top: 0;
    right: -120%;
    z-index: 999;
    background: #004098;
    height: 100vh;
    overflow-y: scroll;
    padding: 40px 0;
    transition: 0.3s all;
  }
  header .drawer.active {
    right: 0;
  }
  header .drawer p {
    text-align: center;
    margin: 0 0 20px;
    color: #fff;
  }
  header .drawer .tel_number {
    display: table;
    margin: 0 auto 20px;
  }
  header .drawer .tel_number p {
    color: #fff;
    text-align: right;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 1px;
  }
  header .drawer .tel_number span {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 2.8rem;
    letter-spacing: 0ch;
    line-height: 1;
  }
  header .drawer .tel_number span img {
    margin: 0 5px 0 0;
    vertical-align: baseline;
  }
  header .drawer .tel_number small {
    font-size: 1.3rem;
    line-height: 1.2;
    display: block;
  }
  header .drawer ul {
    width: 100%;
  }
  header .drawer ul li {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    position: relative;
  }
  header .drawer ul li + li {
    border-top: none;
  }
  header .drawer ul li::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto;
    width: 10px;
    height: 10px;
    display: block;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
  }
  header .drawer ul li a {
    display: block;
    padding: 15px 0 15px 20px;
    color: #fff;
  }
  header .black {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99;
    display: none;
  }
  header .black.active {
    display: block;
  }
  header nav {
    width: 100%;
    padding: 20px;
    background: #e50012;
  }
  header nav ul {
    display: flex;
    justify-content: space-around;
  }
  header nav ul li {
    font-weight: bold;
  }
  header nav ul li a {
    color: #fff;
  }
  header nav ul li a i {
    font-size: 2.1rem;
  }

  /* footer */
  footer {
    background: url(../images/common/footer_bg.jpg) 0 0 no-repeat;
    background-size: cover;
    padding: 50px 0 0;
    background-position: top right;
  }
  footer .f_logo {
    display: table;
    margin: 0 auto 20px;
  }
  footer p {
    color: #fff;
    display: table;
    margin: 0 auto 10px;
  }
  footer .charactor {
    text-align: center;
  }
  footer .charactor img {
    width: 80px;
  }
  footer small {
    display: block;
    color: #fff;
    width: 100%;
    padding: 10px 0;
    text-align: center;
  }

  /* トップへ戻る */
  #pageTop {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: fixed;
    bottom: 40px;
    right: 10px;
    background: #004098;
    text-align: center;
    font-family: "Poppins", sans-serif;
    color: #fff;
    padding: 15px 0 0;
    cursor: pointer;
    transition: 0.3s all;
    z-index: 90;
  }
  #pageTop::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    right: 0;
    margin: auto;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(45deg);
  }

  /* 下層タイトル */
  .title {
    height: 160px;
    background: url("../images/common/common_bg_01.jpg") no-repeat center center/cover;
  }
  .title h1,
.title h2 {
    color: #fff;
    font-family: "Noto Serif JP", serif;
    font-weight: 700;
    font-size: 2.6rem;
    padding: 60px 10px;
    text-align: center;
    letter-spacing: 1px;
  }

  /* パンくず */
  .breadcrumb {
    font-size: 1.2rem;
    padding: 5px 0;
    background: #fff;
  }
  .breadcrumb span {
    margin: 0 3px;
  }

  /* 見出し1 */
  .h-01 {
    font-size: 1.6rem;
    width: 80vw;
    margin: 0 auto 25px;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
  }
  .h-01 span {
    font-size: 2.6rem;
    display: block;
    border-bottom: 1px solid #ff3300;
    font-family: "Noto Serif JP", serif;
    line-height: 1.1;
  }

  /* 見出し2（グラデ下線） */
  .h-02 {
    position: relative;
    font-size: 7vw;
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    text-align: center;
    display: block;
    margin: 0 auto 15px;
    width: 90%;
  }
  .h-02::after {
    position: absolute;
    bottom: 19%;
    left: -6%;
    content: "";
    width: 112%;
    height: 2px;
    background: linear-gradient(-90deg, #ff0000 0%, #f7931e 100%);
  }

  /* 見出し3（グラデ下線/2段） */
  .h-03 {
    position: relative;
    font-size: 7vw;
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    text-align: center;
    display: block;
    margin: 0 auto 30px;
    width: 90%;
  }
  .h-03::after {
    position: absolute;
    bottom: 40%;
    left: -3%;
    content: "";
    width: 106%;
    height: 2px;
    background: linear-gradient(-90deg, #ff0000 0%, #f7931e 100%);
  }
  .h-03 span {
    font-size: 5vw;
    display: block;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1;
  }

  /* 本文 */
  .t-01 {
    text-align: center;
    margin: 25px 0 0;
  }
  .t-01 p {
    font-size: 1.5rem;
    font-weight: 500;
    text-align: left;
    line-height: 1.5;
    margin: 0 0 15px;
  }

  /* インナー（94vw） */
  .innerS {
    width: 94vw;
    margin: 0 auto;
  }

  /* スクロールラッパー */
  .swrap {
    position: relative;
    overflow-x: auto;
    -ms-overflow-style: none;
  }
  .swrap::-webkit-scrollbar {
    display: none;
  }

  /* ページネーション */
  .wp-pagenavi {
    text-align: center;
    margin: 80px auto;
  }
  .wp-pagenavi .pages {
    border: 1px solid #004098;
    display: inline-block;
    line-height: 33px;
    height: 36px;
    padding: 0 5px;
    margin: 0 5px 0 0;
    color: #004098;
  }
  .wp-pagenavi .page {
    border: 1px solid #004098;
    width: 26px;
    height: 36px;
    display: inline-block;
    line-height: 33px;
    margin: 0 5px 0 0;
    padding: 0;
  }
  .wp-pagenavi .page:hover {
    opacity: 1;
    color: #fff;
    border: 1px solid #004098;
    background: #004098;
  }
  .wp-pagenavi .current {
    width: 26px;
    height: 36px;
    color: #fff;
    background: #004098;
    border: 1px solid #004098;
    display: inline-block;
    line-height: 33px;
    margin: 0 5px 0 0;
    padding: 0;
  }
  .wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
    display: inline-block;
    width: 26px;
    height: 36px;
    border: 1px solid #004098;
    line-height: 33px;
    margin: 0 5px 0 0;
    padding: 0;
  }
  .wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .nextpostslink:hover {
    opacity: 1;
    color: #fff;
    border: 1px solid #004098;
    background: #004098;
  }

  /* ページナビ */
  .pnav {
    position: relative;
    padding: 60px 0 50px;
  }
  .pnav .pnav_prev {
    position: absolute;
    left: 0;
  }
  .pnav .pnav_next {
    position: absolute;
    right: 0;
  }
  .pnav a:hover {
    opacity: 1;
    color: #004098;
  }

  /* 汎用スタイル */
  .cmn {
    padding: 100px 0 100px;
    background: url("../images/common/common_bg_02.jpg") no-repeat center top/cover;
  }
  .cmn h2 {
    position: relative;
    font-size: 7vw;
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    text-align: center;
    display: block;
    margin: 0 auto 30px;
    width: 90%;
  }
  .cmn h2::after {
    position: absolute;
    bottom: 40%;
    left: -3%;
    content: "";
    width: 106%;
    height: 2px;
    background: linear-gradient(-90deg, #ff0000 0%, #f7931e 100%);
  }
  .cmn h2 span {
    font-size: 5vw;
    display: block;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1;
  }
  .cmn h3 {
    font-size: 1.6rem;
    font-weight: 500;
    border-bottom: 1px solid #004098;
    margin: 40px 0 10px;
    color: #004098;
    font-weight: 700;
  }
  .cmn p {
    margin: 0 0 20px;
  }
  .cmn ul {
    list-style-type: disc;
    padding: 0 0 0 17px;
    margin: 20px 0;
  }
  .cmn ol {
    list-style-type: decimal;
    padding: 0 0 0 17px;
    margin: 20px 0;
  }
  .cmn .h_style03 {
    position: relative;
    font-size: 2.2rem;
    text-align: center;
    color: #fff;
    padding: 7px 10px;
    font-weight: 700;
    margin: 0 0 35px;
    border-bottom: none;
  }
  .cmn .h_style03::before {
    content: "";
    position: absolute;
    top: 0;
    left: 8%;
    width: 84%;
    height: 100%;
    background: linear-gradient(-90deg, #ff0000 0%, #f7931e 100%);
    transform: skewX(-45deg);
    z-index: 0;
  }
  .cmn .h_style03 span {
    position: relative;
    z-index: 10;
  }
  .cmn .table_blue {
    width: 100%;
    margin-bottom: 50px;
  }
  .cmn .table_blue th {
    color: #004098;
    background: #fff;
    padding: 10px;
    border: 1px dashed #999999;
    vertical-align: middle;
    width: 30%;
    text-align: center;
  }
  .cmn .table_blue td {
    background: #fff;
    padding: 10px 15px;
    border: 1px dashed #999999;
    vertical-align: middle;
  }
  .cmn .btn {
    background: #004098;
    margin: auto;
    padding: 10px 0;
  }
  .cmn .mb_40 {
    margin-bottom: 40px;
  }

  /*******************************
  * ページ単位
  ********************************/
  /*** トップページ ******************************************************/
  #top .main-visual {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
  }
  #top .main-visual .swiper-container {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 500px;
    overflow: hidden;
  }
  #top .main-visual .swiper-container .swiper-slide img {
    object-position: center right;
    font-family: "object-fit: cover; object-position: center right;";
  }
  #top .main-visual .catch {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 10;
    width: 90%;
  }
  #top .warning {
    background: url(../images/top/bg_01.png) 0 0 no-repeat;
    background-size: cover;
    padding: 50px 0 70px;
  }
  #top .warning h2 {
    display: block;
    font-weight: bold;
    font-size: 1.6rem;
    text-align: center;
    width: 300px;
    height: 40px;
    color: #fff;
    padding: 6px 0 0;
    background: #e50012;
    margin: 0 auto;
    border-radius: 10px;
    position: relative;
    z-index: 1;
  }
  #top .warning .w_contents {
    width: 90%;
    min-width: 320px;
    margin: -28px auto 0;
    background: #fff;
    border: double 7px #e50012;
    padding: 35px 10px 55px;
  }
  #top .warning .w_contents p {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0 auto 20px;
    max-width: 425px;
  }
  #top .warning .w_contents p br {
    display: none;
  }
  #top .warning .w_contents ul li {
    padding: 0 0 0 30px;
    font-weight: 500;
    margin: 0 0 15px;
    position: relative;
  }
  #top .warning .w_contents ul li::before {
    content: "1";
    position: absolute;
    top: 3px;
    left: 0;
    margin: auto;
    display: block;
    text-align: center;
    color: #fff;
    background: #e50012;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    line-height: 1.5;
    font-family: "Poppins", sans-serif;
  }
  #top .warning .w_contents ul li:nth-child(2)::before {
    content: "2";
  }
  #top .warning .w_contents ul li:nth-child(3)::before {
    content: "3";
  }
  #top .warning .w_contents ul li:nth-child(4) {
    margin: 0;
  }
  #top .warning .w_contents ul li:nth-child(4)::before {
    content: "4";
  }
  #top .warning .w_contents ul li span {
    color: #e50012;
  }
  #top .t_news {
    display: block;
    margin: 0 0 70px;
  }
  #top .t_news .heading-wrap {
    width: 60%;
    height: 100px;
    background: linear-gradient(to right, #f78c1d 0%, #e50012 100%);
    display: block;
    position: relative;
    margin: 0 15px 0 0;
    padding: 13px 0 0;
  }
  #top .t_news .heading-wrap::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0px 130px 45px;
    border-color: transparent transparent #fff transparent;
    top: 0;
    right: 0;
  }
  #top .t_news .heading-wrap .heading {
    display: table;
    margin: 0 auto;
  }
  #top .t_news .heading-wrap .heading h2 {
    color: #fff;
    font-size: 2.6rem;
    font-weight: bold;
  }
  #top .t_news .heading-wrap .heading p {
    font-family: "Poppins", sans-serif;
    color: #fff;
  }
  #top .t_news .news-table {
    width: 90%;
    margin: 0 auto;
  }
  #top .t_news .news-table ul {
    width: 100%;
    margin: 30px 0;
  }
  #top .t_news .news-table ul li {
    width: 100%;
    border-bottom: 2px dotted #333;
  }
  #top .t_news .news-table ul li a {
    display: block;
    padding: 10px 0;
    width: 100%;
  }
  #top .t_news .news-table ul li a time {
    width: 90px;
    display: block;
  }
  #top .t_news .news-table ul li a p {
    line-height: 1;
  }
  #top .t_news .news-table .btn {
    background: #004098;
    margin: 0 0 0 auto;
  }
  #top .contents {
    width: 100%;
    background-image: url(../images/top/bg_02.png);
    background-repeat: no-repeat;
    background-size: cover;
  }
  #top .contents .c_wrap {
    background: url(../images/top/content_bg.jpg) 0 0 no-repeat;
    background-size: cover;
    margin: 0 0 70px;
  }
  #top .contents .c_wrap .img-wrap {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
    width: 100%;
    height: 280px;
  }
  #top .contents .c_wrap .text-wrap {
    margin: -70px 0 0;
    position: relative;
    z-index: 1;
  }
  #top .contents .c_wrap .text-wrap section {
    padding: 0 0 50px;
  }
  #top .contents .c_wrap .text-wrap section h2 {
    margin: 0 0 20px;
  }
  #top .contents .c_wrap .text-wrap section p {
    color: #fff;
    padding: 0 5%;
    margin: 0 0 20px;
  }
  #top .contents .c_wrap .text-wrap section .btn {
    border: 1px solid #fff;
    margin: 0 5% 0 auto;
  }
  #top .notice {
    display: block;
    margin: 0 0 40px;
  }
  #top .notice .event {
    width: 80%;
    min-width: 300px;
    margin: 0 auto 70px;
  }
  #top .notice .event h3 {
    text-align: center;
    margin: 0 0 10px;
  }
  #top .notice .event .from_news {
    border: 1px solid #ccc;
    padding: 22px 20px;
    margin: 0 0 25px;
  }
  #top .notice .event .from_news h4 {
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    margin: 0 0 15px;
  }
  #top .notice .event .from_news p {
    margin: 15px 0;
  }
  #top .notice .event .from_news .img-wrap {
    width: 100%;
  }
  #top .notice .event .btn {
    color: #333;
    border: 1px solid #333;
    margin: 0 auto;
  }
  #top .notice .twitter {
    width: 80%;
    min-width: 300px;
    margin: 0 auto 30px;
  }
  #top .notice .twitter h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 0 18px;
    line-height: 0;
  }
  #top .notice .twitter h3 i {
    color: #1d9bf0;
    font-size: 3.2rem;
    margin: 0 10px 0 0;
    vertical-align: middle;
  }
  #top .notice .twitter .tw_contents {
    border: 1px solid #ccc;
    width: 100%;
    height: 320px;
    overflow-y: scroll;
  }
  #top .map {
    width: 100%;
    height: 380px;
  }
  #top .map iframe {
    width: 100%;
    height: 100%;
  }
  #top .share {
    margin: 0 auto 80px;
    width: 94vw;
  }
  #top .share .share_youtube {
    margin: 0 0 30px;
  }
  #top .share .share_youtube iframe {
    width: 100%;
    height: 53vw;
  }
  #top .share .share_portal {
    display: flex;
    justify-content: space-between;
    border: 1px solid #999999;
    padding: 10px 10px 20px;
  }
  #top .share .share_portal figure {
    width: 50%;
    height: auto;
    margin: 0 20px 0 0;
  }
  #top .share .share_portal figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  #top .share .share_portal figure img {
    object-fit: contain;
  }
  #top .share .share_portal .share_portal_txt {
    width: 50%;
  }
  #top .share .share_portal .share_portal_txt a {
    display: block;
    margin: 10px 0;
    width: 80%;
  }

  /*** 施設案内 **********************************************************/
  #info {
    background: url("../images/common/common_bg_02.jpg") no-repeat center center/cover;
  }
  #info .intro {
    padding: 100px 10px 10px;
    text-align: center;
  }
  #info .intro p {
    font-size: 1.6rem;
    font-weight: 500;
  }
  #info .facility {
    padding: 30px 0 50px;
  }
  #info .facility h3 {
    position: relative;
    font-size: 2.2rem;
    text-align: center;
    color: #fff;
    padding: 7px 10px;
    font-weight: 700;
    margin: 0 0 35px;
  }
  #info .facility h3 span {
    position: relative;
    z-index: 10;
  }
  #info .facility h3::before {
    content: "";
    position: absolute;
    top: 0;
    left: -7%;
    width: 100%;
    height: 100%;
    background: linear-gradient(-90deg, #ff0000 0%, #f7931e 100%);
    transform: skewX(-45deg);
    z-index: 0;
  }
  #info .facility .facility_li li {
    position: relative;
    width: 100%;
    margin: 0 0 35px 0;
    padding: 40px 5% 40px 3%;
  }
  #info .facility .facility_li li h4 {
    position: relative;
    color: #fff;
    text-align: center;
    font-size: 2.2rem;
    z-index: 10;
    font-family: "Noto Serif JP", serif;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
    margin: 0 0 10px 0;
  }
  #info .facility .facility_li li p {
    position: relative;
    background: rgba(255, 255, 255, 0.6);
    z-index: 10;
    line-height: 1.8571428571;
    padding: 10px 15px;
    font-weight: 500;
  }
  #info .facility .facility_li li figure {
    width: 97%;
    height: 100%;
  }
  #info .facility .facility_li li figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  #info .facility .facility_li li figure:first-of-type {
    position: absolute;
    bottom: -3%;
    right: 0;
  }
  #info .facility .facility_li li figure:first-of-type::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
  }
  #info .facility .facility_li li figure:last-of-type {
    position: absolute;
    top: 0;
    left: 0;
  }
  #info .gmap {
    margin: 80px auto;
  }
  #info .gmap iframe {
    width: 100%;
    height: 500px;
  }
  #info .guide {
    padding: 0 0 100px;
  }
  #info .guide .guide_cnt {
    padding: 30px 20px;
    border: 2px solid #e50012;
    background: #fff;
    width: 100%;
    margin: 40px auto;
  }
  #info .guide .guide_cnt h3 {
    font-size: 1.6rem;
    color: #e50012;
    font-weight: 700;
    border-bottom: 1px solid #e50012;
    margin: 0 0 20px;
  }
  #info .guide .guide_cnt p {
    margin: 0 0 20px;
  }
  #info .guide .guide_cnt p strong {
    color: #e50012;
    font-weight: 700;
  }
  #info .guide .guide_cnt ul {
    margin: 0 0 20px;
    padding: 0 0 0 20px;
  }
  #info .guide .guide_cnt ul li {
    list-style-type: disc;
  }
  #info .guide .guide_cnt ul li strong {
    color: #e50012;
    font-weight: 700;
  }
  #info .guide .guide_cnt ol {
    margin: 0 0 20px;
    padding: 0 0 0 20px;
  }
  #info .guide .guide_cnt ol li {
    list-style-type: decimal;
  }
  #info .guide .guide_cnt ol li strong {
    color: #e50012;
    font-weight: 700;
  }

  /*** 施設案内 **********************************************************/
  #price .bathe {
    background: url("../images/common/common_bg_03.png") no-repeat center center/cover;
    padding: 90px 0 80px;
  }
  #price .bathe .bathe_inner {
    position: relative;
    min-height: 460px;
  }
  #price .bathe .bathe_inner .bathe_inner_cnt table {
    font-size: 1.5rem;
    background: #fff;
    width: 100%;
    font-weight: 500;
    margin: 0 0 10px;
  }
  #price .bathe .bathe_inner .bathe_inner_cnt table tbody tr th {
    color: #004098;
    padding: 10px;
    border-bottom: 1px dashed #999999;
    border-right: 1px dashed #999999;
    border-left: 1px dashed #999999;
    vertical-align: middle;
    width: 31%;
  }
  #price .bathe .bathe_inner .bathe_inner_cnt table tbody tr td {
    padding: 10px 10px;
    border-bottom: 1px dashed #999999;
    border-right: 1px dashed #999999;
    vertical-align: middle;
  }
  #price .bathe .bathe_inner .bathe_inner_cnt table tbody tr td:first-of-type {
    font-size: 1.6rem;
    text-align: center;
  }
  #price .bathe .bathe_inner .bathe_inner_cnt table tbody tr td:last-of-type {
    font-size: 1.4rem;
  }
  #price .bathe .bathe_inner .bathe_inner_cnt table tbody tr:first-of-type th {
    border-top: 1px dashed #999999;
  }
  #price .bathe .bathe_inner .bathe_inner_cnt table tbody tr:first-of-type td {
    border-top: 1px dashed #999999;
  }
  #price .bathe .bathe_inner .bathe_inner_cnt p {
    font-size: 1.3rem;
  }
  #price .bathe .bathe_inner figure {
    margin: 20px auto;
  }
  #price .bathe .bathe_inner figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  #price .relax {
    padding: 90px 0 120px;
  }
  #price .relax .relax_inner {
    position: relative;
    min-height: 460px;
  }
  #price .relax .relax_inner .relax_inner_cnt h3 {
    background: #004098;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    padding: 5px 20px;
  }
  #price .relax .relax_inner .relax_inner_cnt table {
    background: #fff;
    width: 100%;
    font-weight: 500;
    font-size: 1.5rem;
    margin: 0 auto 20px;
  }
  #price .relax .relax_inner .relax_inner_cnt table tbody tr th {
    color: #004098;
    padding: 10px;
    border-bottom: 1px dashed #999999;
    border-right: 1px dashed #999999;
    vertical-align: middle;
    width: 110px;
  }
  #price .relax .relax_inner .relax_inner_cnt table tbody tr td {
    padding: 10px 10px;
    border-bottom: 1px dashed #999999;
    border-right: 1px dashed #999999;
    vertical-align: middle;
  }
  #price .relax .relax_inner .relax_inner_cnt table tbody tr td:first-of-type {
    font-size: 1.6rem;
    width: 80px;
    text-align: center;
  }
  #price .relax .relax_inner .relax_inner_cnt table tbody tr td:last-of-type {
    font-size: 1.4rem;
    border-right: none;
  }
  #price .relax .relax_inner .relax_inner_cnt table tbody tr:last-of-type th {
    border-bottom: none;
  }
  #price .relax .relax_inner .relax_inner_cnt table tbody tr:last-of-type td {
    border-bottom: none;
  }
  #price .relax .relax_inner .relax_inner_cnt table:last-of-type tbody tr th {
    border-bottom: 1px dashed #999999;
  }
  #price .relax .relax_inner .relax_inner_cnt table:last-of-type tbody tr td {
    border-bottom: 1px dashed #999999;
  }
  #price .relax .relax_inner figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  #price .relax .relax_inner figure figcaption {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 20px 0 0;
  }

  /*** お食事処 **********************************************************/
  #food .intro {
    padding: 60px 0 40px;
  }
  #food .intro .intro_h {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 0 10px;
    margin: 0 auto 20px;
    border-bottom: 1px solid #ff6600;
  }
  #food .intro .intro_h h2 {
    margin: 0 15px 0 0;
    width: 33%;
  }
  #food .intro .intro_h p {
    font-size: 1.6rem;
    flex: 1;
  }
  #food .intro .intro_txt {
    font-size: 1.5rem;
    text-align: left;
  }
  #food .intro .intro_txt p {
    margin: 0 0 15px;
  }
  #food .over {
    margin: 0 0 80px;
  }
  #food .over .over_one {
    margin: 0 0 50px;
  }
  #food .over .over_one figure {
    position: relative;
  }
  #food .over .over_one figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  #food .over .over_one figure::before {
    content: "";
    background: #333;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: -10px;
    right: -10px;
    z-index: -1;
  }
  #food .over .over_one .over_one_txt {
    padding: 25px 0 0 0;
  }
  #food .over .over_one .over_one_txt h3 {
    margin: 0 0 20px;
  }
  #food .over .over_one .over_one_txt p {
    margin: 0 0 20px;
    font-size: 1.5rem;
  }
  #food .over .over_one:nth-of-type(even) {
    flex-flow: row-reverse;
  }
  #food .over .over_one:nth-of-type(even) figure::before {
    right: auto;
    left: -10px;
  }
  #food .over .over_one:nth-of-type(even) .over_one_txt {
    padding: 25px 0 0 0;
  }
  #food .rcmd {
    padding: 0 0 60px;
  }
  #food .rcmd .rcmd_inner {
    padding: 0 15px;
  }
  #food .rcmd .rcmd_inner .rcmd_inner_col {
    margin: 0 0 60px;
  }
  #food .rcmd .rcmd_inner .rcmd_inner_col h3 {
    margin: 0 0 15px;
  }
  #food .rcmd .rcmd_inner .rcmd_inner_col figure {
    width: 100%;
    height: 55vw;
  }
  #food .rcmd .rcmd_inner .rcmd_inner_col figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  #food .rcmd .rcmd_inner .rcmd_inner_col figure figcaption {
    font-size: 1.6rem;
    text-align: center;
    margin: 5px 0 0;
    font-weight: 700;
  }
  #food .menu {
    background: url("../images/common/common_bg_02.jpg") no-repeat center center/cover;
    padding: 80px 0;
  }
  #food .menu h3 {
    font-size: 2.4rem;
    font-family: "Noto Serif JP", serif;
    border-bottom: 1px solid #333;
    padding: 0 0 0 5px;
    font-weight: 700;
  }
  #food .menu .menu_li {
    margin: 15px 10px 50px;
  }
  #food .menu .menu_li .menu_li_one li {
    display: flex;
    justify-content: space-between;
    font-size: 1.5rem;
    border-bottom: 1px dotted #333;
    padding: 2px 3px;
  }
  #food .menu .menu_li .menu_li_one li p {
    flex: 1;
    font-weight: 700;
  }
  #food .menu .menu_li .menu_li_one li span {
    color: #e50012;
    min-width: 70px;
    text-align: right;
  }
  #food .menu .menu_img {
    display: flex;
    flex-flow: row wrap;
    margin: 0 0 70px;
  }
  #food .menu .menu_img figure {
    width: 48.5%;
    margin: 0 3% 0 0;
    padding: 0 0 40px;
    /*  height: 43vw; */
  }
  #food .menu .menu_img figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  #food .menu .menu_img figure img {
    height: 35vw;
  }
  #food .menu .menu_img figure figcaption {
    text-align: center;
    margin: 5px 0 0;
  }
  #food .menu .menu_img figure:first-of-type {
    width: 100%;
    margin: 0;
    padding: 0 0 40px;
    /* height: 76vw; */
  }
  #food .menu .menu_img figure:first-of-type img {
    height: 68vw;
  }
  #food .menu .menu_img figure:nth-of-type(2n + 1) {
    margin: 0;
  }

  /*** リラクゼーション ***************************************************/
  #relaxation .menu {
    padding: 60px 0 10px;
    background: url("../images/common/common_bg_02.jpg") no-repeat center top/cover;
  }
  #relaxation .menu .menu_blk {
    position: relative;
    margin: 40px auto 30px;
  }
  #relaxation .menu .menu_blk figure {
    width: 100%;
    height: 100%;
  }
  #relaxation .menu .menu_blk figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  #relaxation .menu .menu_blk .menu_blk_txt {
    padding: 20px 0;
    font-size: 1.5rem;
    font-weight: 500;
  }
  #relaxation .menu .menu_blk .menu_blk_txt h3 {
    background: #004098;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    padding: 5px 20px;
  }
  #relaxation .menu .menu_blk .menu_blk_txt table {
    background: #fff;
    width: 100%;
    font-weight: 500;
    font-size: 1.5rem;
    margin: 0 auto 20px;
  }
  #relaxation .menu .menu_blk .menu_blk_txt table tbody tr th {
    color: #004098;
    padding: 10px;
    border-bottom: 1px dashed #999999;
    border-right: 1px dashed #999999;
    vertical-align: middle;
    width: 110px;
  }
  #relaxation .menu .menu_blk .menu_blk_txt table tbody tr td {
    padding: 10px 10px;
    border-bottom: 1px dashed #999999;
    border-right: 1px dashed #999999;
    vertical-align: middle;
  }
  #relaxation .menu .menu_blk .menu_blk_txt table tbody tr td:first-of-type {
    font-size: 1.6rem;
    width: 80px;
    text-align: center;
  }
  #relaxation .menu .menu_blk .menu_blk_txt table tbody tr td:last-of-type {
    font-size: 1.4rem;
    border-right: none;
  }
  #relaxation .menu .menu_blk .menu_blk_txt table tbody tr:last-of-type th {
    border-bottom: none;
  }
  #relaxation .menu .menu_blk .menu_blk_txt table tbody tr:last-of-type td {
    border-bottom: none;
  }
  #relaxation .menu .menu_blk .menu_blk_txt table:last-of-type tbody tr th {
    border-bottom: 1px dashed #999999;
  }
  #relaxation .menu .menu_blk .menu_blk_txt table:last-of-type tbody tr td {
    border-bottom: 1px dashed #999999;
  }
  #relaxation .menu .menu_blk .menu_blk_txt p {
    margin: 20px 0;
    font-size: 1.5rem;
  }
  #relaxation .staff {
    padding: 60px 0;
  }
  #relaxation .staff .staff_li {
    display: flex;
    width: min-content;
    min-width: 100%;
    margin: 50px 20px;
    cursor: pointer;
  }
  #relaxation .staff .staff_li li {
    width: 250px;
    margin: 0 30px 0 0;
  }
  #relaxation .staff .staff_li li figure {
    width: 100%;
    height: 250px;
  }
  #relaxation .staff .staff_li li figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  #relaxation .staff .staff_li li h3 {
    font-size: 1.6rem;
    text-align: center;
    margin: 5px 0 0;
    font-weight: 500;
  }

  /*** お知らせ ***********************************************************/
  #blog .alist {
    padding: 60px 0;
    background: url("../images/common/common_bg_02.jpg") no-repeat center top/cover;
  }
  #blog .alist .alist_li {
    width: 100%;
    margin: 30px auto 40px;
  }
  #blog .alist .alist_li li a {
    display: block;
    padding: 20px 0 5px;
    border-bottom: 1px dashed #999999;
  }
  #blog .alist .alist_li li a figure {
    width: 100%;
    height: 45vw;
  }
  #blog .alist .alist_li li a figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  #blog .alist .alist_li li a .alist_li_txt {
    flex: 1;
    padding: 15px 0;
  }
  #blog .alist .alist_li li a .alist_li_txt span {
    font-size: 1.3rem;
    color: #fff;
    background: #003366;
    display: inline-block;
    padding: 0 15px;
    border-radius: 4px;
    margin: 0 10px 0 0;
    font-weight: 500;
  }
  #blog .alist .alist_li li a .alist_li_txt time {
    font-size: 1.3rem;
    font-weight: 500;
  }
  #blog .alist .alist_li li a .alist_li_txt h3 {
    color: #004098;
    font-weight: 700;
    font-size: 1.6rem;
    margin: 10px 0 5px;
  }
  #blog .single {
    padding: 60px 0 100px;
    background: url("../images/common/common_bg_02.jpg") no-repeat center top/cover;
  }
  #blog .single .single_inner article {
    background: #fff;
    padding: 20px;
  }
  #blog .single .single_inner article .single_title {
    font-size: 2rem;
    font-weight: 700;
    border-bottom: 1px solid #004098;
    padding: 0 0 5px;
  }
  #blog .single .single_inner article .single_title h1 {
    line-height: 1.3;
    margin: 0 0 10px;
  }
  #blog .single .single_inner article .single_title .single_title_cat {
    display: flex;
    flex-flow: row-reverse nowrap;
  }
  #blog .single .single_inner article .single_title .single_title_cat span {
    font-size: 1.3rem;
    color: #fff;
    background: #004098;
    display: inline-block;
    padding: 0 15px;
    border-radius: 4px;
    font-weight: 500;
  }
  #blog .single .single_inner article time {
    text-align: right;
    font-weight: 500;
    display: block;
    margin: 0 0 20px;
  }
  #blog .single .single_inner article figure {
    text-align: center;
    margin: 30px 0;
  }
  #blog .single .single_inner article h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #004098;
    border-bottom: 1px solid #004098;
    border-left: 7px solid #004098;
    padding: 0 0 2px 10px;
    margin: 30px 0 10px;
    line-height: 1.5;
  }
  #blog .single .single_inner article h3 {
    position: relative;
    font-size: 1.8rem;
    font-weight: 700;
    color: #004098;
    margin: 30px 0 10px;
    padding: 0 0 0 25px;
  }
  #blog .single .single_inner article h3::before {
    content: "";
    width: 16px;
    height: 16px;
    position: absolute;
    left: 0;
    top: 50%;
    background: #004098;
    transform: translateY(-50%);
  }
  #blog .single .single_inner article h4 {
    font-size: 1.7rem;
    font-weight: 700;
    color: #004098;
    margin: 30px 0 10px;
  }
  #blog .single .single_inner article h5,
#blog .single .single_inner article h6 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 30px 0 10px;
  }
  #blog .single .single_inner article p {
    margin: 10px 0 20px;
  }
  #blog .single .single_inner aside {
    margin: 50px 0;
  }
  #blog .single .single_inner aside h3 {
    font-size: 1.8rem;
    color: #fff;
    background: #004098;
    text-align: center;
    padding: 5px 5px;
    font-weight: 700;
  }
  #blog .single .single_inner aside .snav {
    background: #fff;
    padding: 0 20px 30px;
    margin: 0 0 50px;
  }
  #blog .single .single_inner aside .snav li a {
    display: block;
    border-bottom: 1px dashed #333;
    padding: 10px 0;
  }
  #blog .single .single_inner aside .snav li a time {
    font-size: 1.2rem;
  }
  #blog .single .single_inner aside .snav li a span {
    display: block;
    color: #004098;
    font-weight: 700;
    line-height: 1.3;
    font-size: 1.3rem;
  }
  #blog .single .single_inner aside .snav.snav-cat {
    padding: 10px 20px 30px;
  }
  #blog .single .single_inner aside .snav.snav-cat li a {
    font-weight: 700;
    color: #004098;
  }
  #blog .single .single_inner aside .snav.snav-cat li a::before {
    content: "・";
  }

  /*** 満喫指南 ***********************************************************/
  #advice .title h1,
#advice .title h2 {
    padding: 36px 10px;
  }
  #advice .howto {
    padding: 60px 0 100px;
    background: url("../images/common/common_bg_02.jpg") no-repeat center top/cover;
  }
  #advice .howto h2 {
    width: 94vw;
    text-align: center;
    margin: 0 auto 40px;
  }
  #advice .howto .howto_blk {
    position: relative;
    margin: 40px auto;
  }
  #advice .howto .howto_blk figure {
    position: relative;
    width: 100%;
    height: auto;
  }
  #advice .howto .howto_blk figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  #advice .howto .howto_blk figure img {
    position: relative;
    z-index: 10;
  }
  #advice .howto .howto_blk figure::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #004098;
    bottom: -7px;
    right: -7px;
    z-index: 0;
  }
  #advice .howto .howto_blk .howto_blk_txt {
    padding: 25px 0 0;
  }
  #advice .howto .howto_blk .howto_blk_txt h3 {
    margin: 0 0 15px;
  }
  #advice .howto .howto_blk .howto_blk_txt .hbt_box {
    background: #fff;
    padding: 20px 20px 60px;
    font-size: 2rem;
    font-weight: 700;
    line-height: 2;
  }
  #advice .howto .howto_blk .howto_blk_txt .hbt_box p {
    font-size: 1.6rem;
  }
  #advice .howto .howto_blk .howto_blk_txt .hbt_box p span {
    border-bottom: 1px dashed #333;
    display: block;
  }
  #advice .howto .howto_blk .howto_blk_txt .hbt_box p.hbt_box_point {
    position: relative;
    font-size: 1.4rem;
    padding: 10px 15px;
    margin: 20px 0 0 90px;
    border: 4px solid #004098;
    border-radius: 20px;
    line-height: 1.5;
  }
  #advice .howto .howto_blk .howto_blk_txt .hbt_box p.hbt_box_point::before {
    position: absolute;
    display: block;
    content: "";
    top: 45%;
    left: -27px;
    width: 24px;
    height: 16px;
    border-right: 24px solid #004098;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
  }
  #advice .howto .howto_blk .howto_blk_txt .hbt_box .hbt_box_icon {
    position: absolute;
    bottom: 15px;
    left: 30px;
    width: 50px;
  }
  #advice .howto .howto_blk:nth-of-type(even) {
    flex-flow: row-reverse nowrap;
  }
  #advice .howto .howto_blk:nth-of-type(even) figure::before {
    left: -7px;
    right: auto;
  }
  #advice .howto .howto_break {
    margin: 40px auto 40px;
    background: #fff;
    text-align: center;
    padding: 30px 10px;
    border-top: 2px solid #ed1c24;
    border-bottom: 2px solid #ed1c24;
  }

  /*** お問合せ ***********************************************************/
  #contact .cform {
    padding: 100px 0 100px;
    background: url("../images/common/common_bg_02.jpg") no-repeat center top/cover;
  }
  #contact .cform form {
    width: 100%;
    margin: 50px auto 0;
  }
  #contact .cform form table {
    display: block;
    background: #fff;
    width: 100%;
    border: 1px solid #ccc;
  }
  #contact .cform form table tbody {
    display: block;
  }
  #contact .cform form table tbody tr {
    display: block;
  }
  #contact .cform form table tbody tr th {
    display: block;
    background: #dce8f5;
    padding: 10px 10px;
    border-bottom: 1px solid #ccc;
  }
  #contact .cform form table tbody tr th span {
    background: #e50012;
    color: #fff;
    font-size: 1rem;
    padding: 0 10px;
    border-radius: 5px;
    margin: 0 0 0 10px;
    display: inline-block;
  }
  #contact .cform form table tbody tr td {
    display: block;
    padding: 10px;
    border-bottom: 1px solid #ccc;
  }
  #contact .cform form table tbody tr td input {
    width: 100%;
    border: 1px solid #ccc;
    padding: 5px;
  }
  #contact .cform form table tbody tr td input[type=radio] {
    width: initial;
  }
  #contact .cform form table tbody tr td textarea {
    width: 100%;
    border: 1px solid #ccc;
    resize: none;
    padding: 5px;
  }
  #contact .cform form .cform_btn {
    margin: 35px auto 0;
  }
  #contact .cform form .cform_btn input[type=submit] {
    transition: all 0.3s;
    background: #e50012;
    padding: 15px 15px;
    color: #fff;
    text-align: center;
    width: 100%;
    border: 1px solid #e50012;
    margin: 15px auto 0;
  }
  #contact .cform form .cform_btn input[type=submit][name=submitBack] {
    background: #004098;
    border: 1px solid #004098;
  }
}
/*# sourceMappingURL=maps/sp.css.map */