@charset "utf-8";
/* CSS Document */
/*======================================
  
  0.リセット

  1.基本設定

  2.共通パーツ

  3.アニメーションの設定

  4.表示非表示の設定

======================================*/
/* ----------------------------------------
 *
 *  0.リセット
 *
 * ---------------------------------------- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, orm, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-style: normal;
    vertical-align: baseline;
}
main {
    display: block; /*IE用*/
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
}
ol, ul {
    list-style: none;
}
caption, th {
    text-align: left;
}
:focus {
    outline: none;
}
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"], input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration, input[type="button"]::-webkit-search-decoration {
    display: none;
}
input[type="submit"]::focus, input[type="button"]::focus {
    outline-offset: -2px;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    background: transparent;
}
button, input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0;
    border: none;
    outline: none;
    background: transparent;
}
input[type="radio"] {
    display: none;
}
input[type="radio"]:checked + label {
    background: #ff0000;
}
/* ----------------------------------------
 *
 *  1.基本設定
 *
 * ---------------------------------------- */
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    min-width: 0;
    min-height: 0;
}
html, body {
    width: 100%;
    height: 100%;
}
html {
    font-size: 62.5%; /*初期値16pxの62.5%でルートが10px*/
}
@media screen and (min-width:900px) and (max-width:1279px) {
    html {
        font-size: calc(100vw * 10 / 1280);
    }
}
body {
    font-size: 1.6rem;
    font-family: 'Noto Serif JP', serif;
    line-height: 1;
    color: #40322a;
    -webkit-text-size-adjust: 100%;
    /* letter-spacing: 0.1em; */
    font-weight: 500;
}
img {
    border: none;
    outline: none;
    line-height: 1;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
p {
    line-height: 1.8;
}
table {
    width: 100%;
}
/* リンク --------------------- */
a, a:visited {
    text-decoration: none;
    color: #3c2f27;
}
/*背景流れるリンク 上から下*/
.a_link {
    display: block;
    position: relative;
    overflow: hidden;
    padding: .6rem 0;
}
.a_link::after {
    content: "";
    display: block;
    transition: all 0.3s ease-out 0s;
    background: #e0dddb;
    width: 100%;
    height: 100%;
    position: absolute;
    top: -100%;
    left: 0;
}
.a_link::before {
    content: "";
    display: block;
    transition: all 0.5s ease-out 0s;
    background: #e0dddb;
    width: 100%;
    height: 1px;
    opacity: 0;
    position: absolute;
    left: 0;
    bottom: 0;
}
.a_link:hover::after {
    top: 100%;
}
.a_link:hover::before {
    opacity: 1;
}
/*下線*/
.link_blank, .link_blank:visited {
    border-bottom: 1px solid #3c2f27;
    transition: all 0.3s ease-out 0s;
}
.link_blank:hover, .link_blank:active {
    border-bottom: 1px solid transparent;
}
.link_blank span {
    display: inline-block;
    margin-left: .6rem;
    vertical-align: middle;
}
/* フォント --------------------- */ ::selection {
    background: rgba(236, 224, 167, .8);
    color: #433d3c;
}
::-moz-selection {
    background: rgba(236, 224, 167, .8);
    color: #433d3c;
}
.text_height2 {
    line-height: 2;
}
/* シャドウ　------------------ */
.shadow {
    box-shadow: 0px 2px 20px rgba(26, 24, 23, .2);
}
/* box　------------------------ */
.contents1280 {
    width: 100%;
    max-width: 128rem;
    margin: 0 auto;
}
.contents1200 {
    width: 100%;
    max-width: 128rem;
    margin: 0 auto;
    padding: 0 4rem;
}
.contents980 {
    width: 100%;
    max-width: 102rem;
    margin: 0 auto;
    padding: 0 4rem;
}
.bg_brown {
    background: #302924;
}
.bg_gray {
    background: #f2efed;
}
.bg_white {
    background: #fff;
}
.box_brown {
    background: #f2efed;
}
/*--flexbox--*/
.f-container {
/*
    display: -webkit-box;
    display: -ms-flexbox;
*/
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.f-container.roten_bath{
    display:grid!important;
    grid-template-columns: 1fr;
    justify-content: center;
    gap:0 5px;
}
.f-container.roten_bath img{
    width:100%;
    height:auto;
}
.f-container.roten_bath video{
    width:100%;
    height:auto;
}
@media screen and (min-width:768px){
.f-container.roten_bath{
    grid-template-columns: 1fr 1fr;
}
.f-container.roten_bath .swiper-slide{
    width:100%;
    hyeight:auto;
    aspect-ratio:6 / 4;
}
.f-container.roten_bath video{
    width:100%;
    height:100%;
    object-fit: cover;
}
}
.f-container.roten_bath > section{
    width:100%;
}


.f-container02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.f-container03 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.f-container_spcol {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
/*3カラム*/
.col3 {
    width: calc((100% - 4rem) /3);
}
/*2カラム*/
.col2 {
    width: calc((100% - 4rem) /2);
}
/* 見出し　------------------------- */
/*sectiontitle_large_en*/
.sectiontitle_large_en {
    font-family: 'Montserrat Subrayada', sans-serif;
    font-size: 4rem;
    letter-spacing: 0;
}
/*sectiontitle_large_en largest*/
.sectiontitle_large_en.largest {
    font-size: 5rem;
}
/*sectiontitle_en*/
.sectiontitle_en {
    font-family: 'Montserrat', serif;
    font-size: 3rem;
    letter-spacing: 0.2em;
    color: #9e8e82;
    margin-bottom: 1rem;
}
/*sectiontitle 英日二行*/
.sectiontitle_two .sectiontitle_large_en, .sectiontitle_two .sectiontitle_small_ja, .sectiontitle_two .sectiontitle_en, .sectiontitle_two .sectiontitle {
    display: block;
}
/*sectiontitle 左ライン*/
.sectiontitle.line_left {
    position: relative;
    padding-left: 3rem;
}
.sectiontitle.line_left::before {
    content: '';
    width: 2rem;
    height: 1px;
    background: #3c2f27;
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
}
/*sectiontitle middle*/
.sectiontitle.middle {
    font-size: 3rem;
    line-height: 1.8;
}
/*sectiontitle small*/
.sectiontitle.small {
    font-size: 2rem;
    line-height: 1.6;
}
/*sectiontitle_small_ja*/
.sectiontitle_small_ja {
    font-size: 2rem;
    line-height: 1.8;
}
/*sectiontitle middle*/
.subpage_title .sectiontitle.middle {
    line-height: 1.5;
}
/* ボタン　------------------------- */
.btn_white a, .btn_white a:visited {
    display: inline-block;
    color: #3c2f27;
    background: #f2efed;
    border: 2px solid #f2efed;
    border-radius: 30px;
    padding: 1.4rem 2rem;
    transition: all 0.3s ease-out 0s;
    max-width: 100%;
    width: 26rem;
    text-align: center;
    font-family: 'Montserrat', 'Noto Serif JP', serif;
}
.btn_white a:hover, .btn_white a:active {
    color: #f2efed;
    background-color: inherit;
}
.btn_white, .btn_brown {
    text-align: center;
}
.btn_brown a, .btn_brown a:visited {
    display: inline-block;
    color: #3c2f27;
    background-color: transparent;
    border: 2px solid #3c2f27;
    border-radius: 30px;
    padding: 1.4rem 2rem;
    transition: all 0.3s ease-out 0s;
    max-width: 100%;
    width: 26rem;
    text-align: center;
    font-family: 'Montserrat', 'Noto Serif JP', serif;
}
.btn_brown a:hover, .btn_brown a:active {
    color: #f2efed;
    background-color: #3c2f27;
}
.btn_more {
    font-weight: 700;
}
/* リスト　------------------------- */
.list_circle li {
    position: relative;
    padding-left: 1rem;
    line-height: 1.8;
}
.list_circle li:last-child {
    margin-bottom: 0;
}
.list_circle li:before {
    border-radius: 50%;
    width: 3px;
    height: 3px;
    display: block;
    position: absolute;
    left: 0;
    top: 1.4rem;
    content: "";
    background: #40322a;
}
/* 定義リスト　------------------------- */
.dl_amenity{    
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    border-top: 1px solid #9e8e82;
    border-bottom: 1px solid #9e8e82;
    padding: 1.4rem 0;
    font-size: 1.5rem;
}
.dl_amenity dt{
    padding: .6rem 3rem .6rem 0;
    position: relative;
    margin-right: 3rem;
}
.dl_amenity dt::after{
    content: '';
    width: 1px;
    height: 100%;
    background: #9e8e82;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
}
.dl_amenity dd{
    padding: .6rem 0;
}
/* 画像　------------------------- */
/*画像FIT*/
.img_w100 {
    width: 100%;
    max-width: 100%;
    height: auto;
}
.img_h100 {
    width: auto;
    height: 100%;
}
/*画像組*/
.img50_wp p {
    width: 49.5%;
}
.img50_wp p:first-child {
    float: left;
}
.img50_wp p:last-child {
    float: right;
}
/*リンク画像*/
.opacity a {
    transition: all 0.3s linear 0s;
}
.opacity a:hover {
    opacity: .6;
}
/*SVG カラー設定*/
.c_light {
    fill: #e0dddb;
}
.c_dark {
    fill: #3c2f27;
}
/*SVG サイズ*/
.icon_logo {
    width: 20.8rem;
    height: 5rem;
}
.icon_tel {
    width: 2rem;
    height: 1.9rem;
}
.icon_insta {
    width: 2.4rem;
    height: 2.4rem;
}
/* スライダー上書き　------------------ */
/*ページネーション*/
.swiper-pagination {
    position: static;
}
.swiper-pagination-bullets {
    width: auto !important;
}
.swiper-pagination-bullet {
    width: 30px;
    height: 4px;
    border-radius: 0;
    background: #e0dcd9;
}
.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 !important;
    opacity: 1 !important;
}
.swiper-pagination-bullet-active {
    background: #40322a;
}
/*矢印*/
.swiper-prev, .swiper-next {
    border: 1px solid #e0dcd9;
    text-align: center;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    line-height: 4rem;
    cursor: pointer;
    transition: all 0.3s ease-out 0s;
    background: #fff;
}
.swiper-prev {
    transform: scaleX(-1);
}
.swiper-prev:hover, .swiper-next:hover {
    opacity: 0.6;
}
.swiper-prev svg, .swiper-next svg {
    width: 2.2rem;
    height: 1.1rem;
    fill: #40322a;
}
/* ----------------------------------------
 *
 *  3.共通パーツ
 *
 * ---------------------------------------- */
/* header
======================================================*/
.header-fix {
    background: #302924;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1rem 4rem 1rem 3rem;
    z-index: 99;
    font-size: 1.6rem;
}
.header-fix nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    margin-right: 4rem;
    align-items: center;
}
.header-fix nav ul li {
    margin-left: 2rem;
}
.header-fix nav ul a, .header-fix nav ul a:visited {
    color: #e0dddb;
}
.header-fix .nav_reserve a, .header-fix .nav_reserve a:visited {
    display: inline-block;
    background: #e0dddb;
    border: 1px solid #e0dddb;
    color: #302924;
    transition: all 0.3s ease-out 0s;
    padding: .6rem 1rem;
}
.header-fix .nav_reserve a:hover, .header-fix .nav_reserve a:active {
    background: #302924;
    color: #e0dddb;
}

/*ヘッダーのインスタロゴ*/
.header-fix nav ul li .insta_icon img{
    width: clamp(45px,5vw,78px);
    height: auto;
    filter: drop-shadow(2px 2px 1px rgba(255, 255, 255, 0.7)) drop-shadow(-2px -2px 1px rgba(255, 255, 255, 0.7)) drop-shadow(2px -2px 1px rgba(255, 255, 255, 0.7)) drop-shadow(-2px 2px 1px rgba(255, 255, 255, 0.7));
}
 
/*ハンバーガー　------------------ */
.hamburger {
    position: absolute;
    right: 1rem;
    top: 0;
    width: 6.6rem;
    height: 6.6rem;
    cursor: pointer;
    z-index: 300;
}
.hamburger__line {
    position: absolute;
    left: 2rem;
    width: 2.6rem;
    height: 2px;
    background-color: #e0dddb;
    transition: all .6s;
}
.hamburger__line--1 {
    top: 2.6rem;
}
.hamburger__line--2 {
    top: 3.5rem;
}
.hamburger__line--3 {
    top: 4.4rem;
}
/*open*/
header.open .hamburger__line {
    background-color: #f2efed;
}
header.open .hamburger__line--1 {
    transform: rotate(45deg);
    top: 2.8rem;
}
header.open .hamburger__line--2 {
    width: 0;
    left: 50%;
}
header.open .hamburger__line--3 {
    transform: rotate(-45deg);
    top: 2.8rem;
}
/*展開メニュー　------------------ */
.toggle_menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: #302924;
    z-index: 200;
    overflow-y: auto;
    opacity: 0;
    transition: all 0.3s ease-out 0s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #e0dddb;
    font-size: 1.6rem;
    padding-left: 4rem;
    visibility: hidden;
}
.toggle_menu .toggle_left {
    margin-left: auto;
    margin-right: 10rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 60rem;
}
.toggle_menu .toggle_left ul:nth-child(2) {
    padding-right: 6rem;
}
.toggle_menu .toggle_info {
    width: 100%;
    border-top: 1px solid rgba(229, 227, 225, .3);
    padding-top: 6rem;
    margin-top: 2rem;
    opacity: 0;
}
.toggle_menu .toggle_info .toggle_info_detail{
    display:grid;
    grid-template-columns: 0.8fr 1fr;
    place-items:center;
    gap:clamp(2rem,4vw,4rem);
}
@media screen and (max-width:480px){
.toggle_menu .toggle_info .toggle_info_detail{
    grid-template-columns: 1fr;
    gap:1rem;
}    
}
.toggle_menu .toggle_info_logo {
    vertical-align: middle;
/*    margin-right: 4rem;*/
}
.toggle_menu .toggle_info_adress {
    vertical-align: super;
}
.toggle_menu .toggle_info_link {
    margin-top: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.toggle_menu .toggle_info_link div {
    width: calc((100% - 2rem) / 2);
}
.toggle_menu .toggle_info_link div a, .toggle_menu .toggle_info_link div a:visited {
    display: inline-block;
    background: #e0dddb;
    border: 1px solid #e0dddb;
    color: #302924;
    border-radius: 6rem;
    transition: all 0.3s ease-out 0s;
    padding: .8rem 1rem;
    width: 100%;
    text-align: center;
    font-size: 2rem;
}
.toggle_menu .toggle_info_link div a:hover, .toggle_menu .toggle_info_link div a:active {
    background: #302924;
    color: #e0dddb;
}
.toggle_menu .toggle_info_link div a:hover svg, .toggle_menu .toggle_info_link div a:active svg {
    fill: #e0dddb;
}
.toggle_menu .toggle_info_link div span {
    margin-right: 1.2rem;
    display: inline-block;
    vertical-align: sub;
}
.toggle_menu .toggle_right {
    width: 45%;
    height: 100%;
}
.toggle_menu .toggle_right img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
/*グロナビ*/
.gnav li {
    margin-bottom: 4rem;
}
.gnav a, .gnav a:visited {
    transition: all 0.3s ease-out 0s;
    color: #e0dddb;
}
.gnav a:hover, .gnav a:active {
    opacity: .6;
}
.gnav .nav_en {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.6rem;
    letter-spacing: 0.12em;
    margin-bottom: .6rem;
}
.gnav .nav_ja {
    display: block;
    font-size: 1.6rem;
    letter-spacing: 0.075em;
}
/*open*/
header.open .toggle_menu {
    opacity: 1;
    visibility: visible;
}
header.open .toggle_info {
    opacity: 1;
    animation: fadeInUp 1s ease-out forwards;
}
/*背景流れるリンク 左から右*/
header .a_bgtext {
    animation-name: bgtextone;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    position: relative;
    overflow: hidden;
    opacity: 0;
    display: inline-block;
}
header .a_bgtext_inner {
    animation-name: bgtextsecond;
    animation-duration: 1s;
    animation-delay: 0.6s;
    animation-fill-mode: forwards;
    opacity: 0;
}
header .a_bgtext_bg::before {
    animation-name: bgtextthaad;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #e0dddb;
    display: inline-block;
}
/* pagetop
======================================================*/
.pagetop {
    text-align: center;
    border-bottom: 1px solid rgba(229, 227, 225, .3);
    padding: 2rem 0;
    margin-bottom: 8rem;
}
.pagetop svg {
    transition: all 0.3s ease-out 0s;
}
.pagetop svg:hover {
    cursor: pointer;
    opacity: .6;
}
/* footer
======================================================*/
/*footer_plan--------------*/
.footer_plan {
    background: url("../img/common/reserve_bg.jpg") no-repeat top center;
    background-size: cover;
    padding: 8rem 0;
    text-align: center;
    color: #e0dddb;
}
.footer_plan h2 {
    margin-bottom: 6rem;
}
.footer_plan p {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}
.footer_plan_btn a, .footer_plan_btn a:visited {
    display: inline-block;
    background: #e0dddb;
    border: 1px solid #e0dddb;
    color: #302924;
    border-radius: 6rem;
    transition: all 0.3s ease-out 0s;
    padding: 2rem 1rem;
    width: 100%;
    text-align: center;
    font-size: 1.7rem;
}
.footer_plan_btn a:hover, .footer_plan_btn a:active {
    background-color: transparent;
    color: #e0dddb;
}
.footer_plan_btn a:hover svg, .footer_plan_btn a:active svg {
    fill: #e0dddb;
}
.footer_plan_btn span {
    margin-right: 1.2rem;
    display: inline-block;
    vertical-align: sub;
}
.footer_plan .col2:nth-child(2) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.footer_plan .col2:nth-child(2) p {
    width: 100%;
}
.footer_plan .col2:nth-child(2) div {
    width: calc((100% - 2rem) / 2);
}
/*footer_inner--------------*/
.footer_inner {
    background: #302924;
    color: #e0dddb;
    padding-bottom: 2rem;
}
/*footer_detail--------------*/
.footer_detail .footer_adress {
    margin: 3rem 0 6rem 0;
}
.footer_detail .footer_adress p {
    line-height: 2;
}
/*footer_nav--------------*/
.footer_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.footer_nav ul:nth-child(1) {
    margin-right: 10rem;
}
/*Copyright--------------*/
footer .copy {
    font-size: 1rem;
}
footer .copy img {
    display: inline-block;
    vertical-align: sub;
    margin-left: 1rem;
}
/* RSS
======================================================*/
.rss_wp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 6rem;
}
.rss_wp .mini {
    position: relative;
    margin-right: 4rem;
    transition: all 0.3s linear 0s;
}
.rss_wp .mini:last-child {
    margin-right: 0;
}
.rss_wp .mini .rss_img {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-top: 66.66%;
}
.rss_wp .mini .rss_img img {
    transition: all 0.3s ease-out 0s;
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    top: 0;
    left: 0;
    right: 0;
}
.rss_wp a {
    display: block;
}
.rss_wp a:hover .rss_img img {
    transform: scale(1.04);
}
.rss_wp .mini .rss_text h4 {
    font-size: 1.6rem;
    margin: 2rem 0;
}
.rss_wp .mini .rss_text {
    width: 100%;
    font-size: 1.4rem;
    line-height: 1.8;
    position: relative;
}
/* 空室検索
======================================================*/
.search_wp {}
.search_wp .search_inner {
    border-top: 1px solid #e5e3e1;
    border-bottom: 1px solid #e5e3e1;
    padding: 2rem 0;
}
.form_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.form_box .title {
    position: relative;
    margin-bottom: 1rem;
}
.form_box input[type="text"], .form_box select {
    width: 14rem;
    border: none;
    background: #f2efed;
    padding: 6px;
    font-family: 'Noto Serif JP', '游明朝', YuMincho, serif;
    font-weight: 500;
    color: #40322a;
    letter-spacing: 0.1em;
  font-size: 16px;
  transform: scale(0.8);
}
.form_box select {
    -moz-appearance: menulist;
    -webkit-appearance: menulist;
    appearance: menulist;
}
.form_box select::-ms-expand {
    display: block;
}
.form_box .check_in, .form_box .guests, .form_box .type {
    width: 13rem;
    margin-right: 3rem;
}
.form_box .price .kara {
    padding: 0 .4rem;
}
.form_box .undecided {
    width: 8rem;
    margin-right: 4rem;
}
.form_box input[type=checkbox] {
    display: none;
}
.form_box .checkbox {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 5px 30px;
    position: relative;
    width: auto;
}
.form_box .checkbox::before {
    border: 0;
    content: '';
    display: block;
    height: 3rem;
    left: 0;
    margin-top: -8px;
    position: absolute;
    top: 2px;
    width: 3rem;
    background: #f2efed;
}
.form_box .checkbox::after {
    border-right: 3px solid #40322a;
    border-bottom: 3px solid #40322a;
    content: '';
    display: block;
    left: 1rem;
    margin-top: -7px;
    opacity: 0;
    position: absolute;
    top: 52%;
    transform: rotate(45deg);
    width: 10px;
    height: 14px;
}
.form_box input[type=checkbox]:checked + .checkbox::after {
    opacity: 1;
}
.search_btn {
    -ms-flex-item-align: center;
    align-self: center;
}
.search_btn button {
    border: 2px solid #3c2f27;
    background: #fff;
    width: 21.5rem;
    height: 5.4rem;
    border-radius: 6rem;
    transition: all .4s;
    color: #3c2f27;
    font-family: 'Noto Serif JP', '游明朝', YuMincho, serif;
    letter-spacing: 0.2em;
    font-size: 1.6rem;
}
.search_btn button:hover {
    cursor: pointer;
    background: #3c2f27;
    color: #fff;
}
/* ----------------------------------------
 *
 *  3.アニメーションの設定
 *
 * ---------------------------------------- */
.a_fadeinup {
    opacity: 0;
}
.a_fadeinup.a_fade_active {
    opacity: 1;
    -webkit-animation: fadeInUp 1s ease-out forwards;
    animation: fadeInUp 1s ease-out forwards;
    perspective: 1000; /*iOSChrome対策*/
}
@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(2rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(2rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/*背景流れるリンク 左から右*/
.a_bgtext_slide {
    position: relative;
    overflow: hidden;
    display: inline-block;
}
@-webkit-keyframes bgtextone {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes bgtextone {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.bgtext_slide_inner {
    opacity: 0;
}
.a_bgtext_slide.a_bgtext_slide_bg .bgtext_slide_inner {
    -webkit-animation-name: bgtextsecond;
    animation-name: bgtextsecond;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    opacity: 0;
}
@-webkit-keyframes bgtextsecond {
    0% {
        opacity: 0;
    }
    99.99% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}
@keyframes bgtextsecond {
    0% {
        opacity: 0;
    }
    99.99% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}
.a_bgtext_slide_bg::before {
    -webkit-animation-name: bgtextthaad;
    animation-name: bgtextthaad;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #e0dddb;
    display: inline-block;
    perspective: 1000; /*iOSChrome対策*/
}
.a_bgtext_slide_bg.bgtext_dark::before {
    background-color: #302924;
}
.a_bgtext_slide_bg.bgtext_white::before {
    background-color: #fff;
}
.sectiontitle_en .a_bgtext_slide_bg::before {
    background-color: #9e8e82;
}
/*@-webkit-keyframes bgtextthaad{
	0% {
		-webkit-transform-origin:left;
		-webkit-transform:scaleX(0);
	}
	50% {
		-webkit-transform-origin:left;
		-webkit-transform:scaleX(1);
	}
	50.001% {
		-webkit-transform-origin:right;
	}
	100% {
		-webkit-transform-origin:right;
		-webkit-transform:scaleX(0);
	}
}*/
/*@keyframes bgtextthaad{
	0% {
		transform-origin:left;
        transform: translateX(-100%);
	}
	42.5%, 44.5% % {
		transform-origin:left;
        transform: translateX(20%);
	}
	100% {
		transform-origin:right;
        transform: translateX(150%);
	}
}*/
@keyframes bgtextthaad {
    0% {
        left: -100%;
    }
    50% {
        left: 0;
    }
    100% {
        left: 100%;
    }
}
/* ----------------------------------------
 *
 *  4.表示非表示の設定
 *
 * ---------------------------------------- */
.sp_none {}
.pc_none {
    display: none;
}
@media screen and (max-width: 899px) {
    .sp_none {
        display: none !important;
    }
    .pc_none {
        display: block;
    }
    .sp_block {
        display: block !important;
    }
    .sp_br {
        display: inline-block;
    }
    .sp_br_none br {
        display: none;
    }
    .tate.sp_cancell {
        writing-mode: horizontal-tb;
        -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: horizontal-tb;
    }
}

/*決済方法*/

#index .kessai_yohaku .contents04 h2 {
    margin-bottom: 3rem;
}

.kessai_logo{
	width: 900px;
	margin: 0 auto;
	border: 3px solid #e5e3e1;
}

.kessai p {
	width: 100%;
    text-align: center;
    margin-bottom: 3rem;
	font-size: 1.8rem;
}

/*
.logo{
	width: 100%;
}
*/

@media screen and (max-width: 1050px){
	.kessai_logo{
		width: 85%;
	}
}

@media screen and (max-width: 730px){
	.kessai_logo{
		border: 2px solid #e5e3e1;
	}
}