@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

/* =========================================
   Contact Form 7 - お問い合わせフォーム
   ========================================= */

.comform-wrap {
    /* max-width: 800px; */
    margin: 0 auto;
    padding: 40px 20px;
}

.comform-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 0 32px;
    padding: 0 0 12px;
    border-bottom: 2px solid #3498db;
}

/* フォーム行 */
.comform-container {
    border-top: 1px solid #ddd;
}

.comform-row {
    display: flex;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

/* ラベル列 */
.comform-row .itemTitle {
    flex: 0 0 30%;
    font-weight: bold;
    font-size: 0.9rem;
    padding: 8px 16px 0 0;
    line-height: 1.4;
}

/* 必須マーク */
.req-mark {
    display: inline-block;
    background: #c0392b;
    color: #fff;
    font-size: 0.7rem;
    font-weight: normal;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 6px;
    vertical-align: middle;
    line-height: 1.4;
}

/* 入力列 */
.comform-row .itemInput {
    flex: 1;
    min-width: 0;
}

/* テキスト・メール入力 */
.comform-row .itemInput input[type="text"],
.comform-row .itemInput input[type="email"],
.comform-row .itemInput input[type="tel"],
.comform-row .itemInput select,
.comform-row .itemInput textarea {
    width: 100%;
    max-width: 400px;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: inherit;
    background: #fff;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.comform-row .itemInput input[type="text"]:focus,
.comform-row .itemInput input[type="email"]:focus,
.comform-row .itemInput input[type="tel"]:focus,
.comform-row .itemInput select:focus,
.comform-row .itemInput textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

/* ふりがな・お名前フィールド */
.comform-row .itemInput input#your-name,
.comform-row .itemInput input#your-furigana {
    max-width: 300px;
}

/* メールアドレス */
.comform-row .itemInput input[type="email"] {
    max-width: 360px;
}

/* 電話番号（3分割） */
.phone-wrap {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.phone-wrap input[type="text"] {
    max-width: 80px !important;
    width: 80px !important;
    text-align: center;
}

.phone-sep {
    color: #555;
    font-size: 1rem;
    padding: 0 2px;
}

/* 都道府県セレクト */
.comform-row .itemInput select#prefecture {
    max-width: 270px;
}

/* テキストエリア */
.comform-row .itemInput textarea#your-message {
    max-width: 100%;
    height: 180px;
    resize: vertical;
}

/* 注釈テキスト */
.annot {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin: 6px 0 0;
}

/* ラジオボタン */
.comform-row .itemInput .wpcf7-radio {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 4px 0;
}

.comform-row .itemInput .wpcf7-radio .wpcf7-list-item {
    margin: 0;
}

.comform-row .itemInput .wpcf7-radio .wpcf7-list-item label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.95rem;
}

.comform-row .itemInput .wpcf7-radio input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #aaa;
    border-radius: 50%;
    background: #fff;
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
    transition: border-color 0.15s;
}

.comform-row .itemInput .wpcf7-radio input[type="radio"]::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3498db;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.15s;
}

.comform-row .itemInput .wpcf7-radio input[type="radio"]:checked {
    border-color: #3498db;
}

.comform-row .itemInput .wpcf7-radio input[type="radio"]:checked::after {
    transform: translate(-50%, -50%) scale(1);
}

.comform-row .itemInput .wpcf7-radio .wpcf7-list-item label:hover input[type="radio"] {
    border-color: #3498db;
}

/* CF7 バリデーション */
.wpcf7-not-valid-tip {
    display: block;
    font-size: 0.8rem;
    color: #c0392b;
    margin: 4px 0 0;
}

.wpcf7-response-output {
    margin: 16px 0 0;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.wpcf7-mail-sent-ok {
    border-color: #2ecc71 !important;
    background: #f0faf4;
    color: #27ae60;
}

.wpcf7-mail-sent-ng,
.wpcf7-validation-errors {
    border-color: #e74c3c !important;
    background: #fdf5f5;
    color: #c0392b;
}

/* 送信ボタン */
.form-buttons {
    margin: 32px 0 0;
    text-align: center;
}

.form-buttons .deco-button-std,
.form-buttons input[type="submit"],
.form-buttons .wpcf7-submit {
    display: inline-block;
    background: #3498db;
    color: #fff;
    border: none;
    padding: 14px 48px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    letter-spacing: 0.05em;
    transition: background 0.2s, transform 0.1s;
}

.form-buttons .deco-button-std:hover,
.form-buttons input[type="submit"]:hover,
.form-buttons .wpcf7-submit:hover {
    background: #2980b9;
}

.form-buttons .deco-button-std:active,
.form-buttons input[type="submit"]:active,
.form-buttons .wpcf7-submit:active {
    transform: translateY(1px);
}

/* スピナー（送信中） */
.wpcf7 .wpcf7-spinner {
    margin-left: 12px;
    vertical-align: middle;
}

/* レスポンシブ */
@media (max-width: 640px) {
    .comform-row {
        flex-direction: column;
        gap: 8px;
        padding: 16px 0;
    }

    .comform-row .itemTitle {
        flex: none;
        padding: 0;
    }

    .comform-row .itemInput input[type="text"],
    .comform-row .itemInput input[type="email"],
    .comform-row .itemInput select {
        max-width: 100%;
    }
}

/* =========================================
   Page Title（l-topTitleArea ベース）
   ========================================= */

/* 全幅タイトルエリア：青背景・最小高さを抑制 */
body #top_title_area,
body #top_title_area.l-topTitleArea {
    background: #3498db !important;
    background-color: #3498db !important;
    background-image: none !important;
    min-height: 0 !important;
    padding: 28px 0 !important;
    align-items: flex-start !important;
}

@media (min-width: 600px) {

    body #top_title_area,
    body #top_title_area.l-topTitleArea {
        min-height: 0 !important;
        padding: 32px 0 !important;
    }
}

/* c-filterLayer の ::before / ::after オーバーレイを完全無効化 */
body #top_title_area::before,
body #top_title_area::after {
    display: none !important;
    content: none !important;
    opacity: 0 !important;
    background: none !important;
    background-color: transparent !important;
}

/* 背景画像要素を非表示 */
body #top_title_area .l-topTitleArea__img,
body #top_title_area .c-filterLayer__img {
    display: none !important;
}

/* h1：SWELLデフォルトを全上書き */
#top_title_area .c-pageTitle,
#top_title_area .c-pageTitle[data-style],
#top_title_area .c-pageTitle[data-style="b_bottom"] {
    color: #fff !important;
    font-size: 1.5rem !important;
    font-weight: bold !important;
    line-height: 1.4 !important;
    text-align: left !important;
    border: none !important;
    border-bottom: none !important;
    padding: 0 !important;
    margin: 0 !important;
    position: static !important;
    background: transparent !important;
    text-shadow: none !important;
}

@media (min-width: 600px) {

    #top_title_area .c-pageTitle,
    #top_title_area .c-pageTitle[data-style],
    #top_title_area .c-pageTitle[data-style="b_bottom"] {
        font-size: 2rem !important;
    }
}

/* clearfix・疑似要素を無効化 */
#top_title_area .c-pageTitle::before,
#top_title_area .c-pageTitle::after {
    display: none !important;
}

/* .c-pageTitle__inner のボーダーを無効化 */
#top_title_area .c-pageTitle .c-pageTitle__inner,
#top_title_area .c-pageTitle[data-style="b_bottom"] .c-pageTitle__inner {
    color: #fff !important;
    border: none !important;
    border-bottom: none !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: inline !important;
}

/* タイトルエリア直後のアイキャッチ画像の上余白を除去 */
.l-mainContent__inner>.p-articleThumb:first-child,
.l-mainContent__inner>.w-pageTop:first-child {
    margin-top: 0 !important;
}

/* l-content の padding-top を除去（パンくずとの隙間をなくす） */
.l-content {
    padding-top: 0 !important;
}

/* =========================================
   Footer guide
   ========================================= */

#before_footer_widget .swell-block-fullWide {
    color: #333;
}

#before_footer_widget .swell-block-column {
    font-size: 15px;
}

#before_footer_widget .wp-block-heading {
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.4;
}

#before_footer_widget .wp-block-heading a {
    color: #1590d4;
    text-decoration: none;
}

#before_footer_widget .wp-block-heading a:hover {
    text-decoration: underline;
}

#before_footer_widget .swell-block-button {
    margin: 0 0 1rem;
}

#before_footer_widget .swell-block-button__link {
    box-sizing: border-box;
    justify-content: center;
    min-width: 100%;
    text-align: center;
}

#before_footer_widget .is-style-btn_normal.blue_ .swell-block-button__link {
    background: #3498db;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

#before_footer_widget .is-style-btn_line .swell-block-button__link {
    background: #fff;
    border: 1px solid #3498db;
    color: #2477af;
    text-decoration: none;
}

#before_footer_widget .is-style-btn_line .swell-block-button__link:hover {
    background: #3498db;
    color: #fff;
}

#before_footer_widget .is-style-btn_normal.blue_ .swell-block-button__link span::before {
    content: "\e92e";
    font-family: icomoon;
    font-style: normal;
    font-weight: 400;
    margin-right: 0.4em;
}

#before_footer_widget .swell-block-button__link[href="/contact/"] span::before {
    content: "\e92c";
    font-family: icomoon;
    font-style: normal;
    font-weight: 400;
    margin-right: 0.4em;
}

#before_footer_widget .yutaka-footer-phone,
#before_footer_widget .yutaka-footer-fax {
    display: flex;
    align-items: center;
    gap: 0.45em;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

#before_footer_widget .yutaka-footer-phone::before {
    content: "\e942";
    font-family: icomoon;
    font-size: 0.85em;
    line-height: 1;
}

#before_footer_widget .yutaka-footer-fax .fa-fax {
    font-size: 0.9em;
    flex-shrink: 0;
    line-height: 1;
}

#before_footer_widget .c-listMenu a {
    padding: 0.75em 0.5em 0.75em 1.8em;
}

#before_footer_widget .c-listMenu a::before {
    left: 0.35em;
}

#before_footer_widget .c-listMenu a:hover {
    padding-left: 2em;
    padding-right: 0.3em;
}

/* =========================================
   Hotel card link list
   ========================================= */

.post_content .swell-block-columns .swell-block-column>ul.yutaka-hotel-link-list,
.post_content .swell-block-columns .swell-block-column>ul.is-style-check_list {
    margin: 1.15rem 0 0;
    padding: 0;
    border-top: 1px solid #dcdcdc;
    list-style: none;
}

.post_content .swell-block-columns .swell-block-column>ul.yutaka-hotel-link-list>li,
.post_content .swell-block-columns .swell-block-column>ul.is-style-check_list>li {
    position: relative;
    margin: 0;
    padding: 0 !important;
    border-bottom: 1px solid #dcdcdc;
    list-style: none;
}

.post_content .swell-block-columns .swell-block-column>ul.yutaka-hotel-link-list>li::before,
.post_content .swell-block-columns .swell-block-column>ul.is-style-check_list>li::before {
    content: none !important;
}

.post_content .swell-block-columns .swell-block-column>ul.yutaka-hotel-link-list>li>a,
.post_content .swell-block-columns .swell-block-column>ul.is-style-check_list>li>a {
    position: relative;
    display: block;
    padding: 0.72em 0.5em 0.72em 1.7em;
    color: #0070c9;
    line-height: 1.5;
    text-decoration: none;
}

.post_content .swell-block-columns .swell-block-column>ul.yutaka-hotel-link-list>li>a::before,
.post_content .swell-block-columns .swell-block-column>ul.is-style-check_list>li>a::before {
    content: "\e921";
    position: absolute;
    top: 50%;
    left: 0.35em;
    color: #0b3f55;
    font-family: icomoon;
    font-size: 0.8em;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    transform: translateY(-50%);
}

.post_content .swell-block-columns .swell-block-column>ul.yutaka-hotel-link-list>li>a:hover,
.post_content .swell-block-columns .swell-block-column>ul.is-style-check_list>li>a:hover {
    background: #f5fbff;
    color: #005fa8;
}

.post_content .yutaka-hotel-cards .wp-block-buttons .wp-block-button:first-child .wp-block-button__link {
    background: #3498db;
    border-color: #3498db;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.post_content .yutaka-hotel-cards .wp-block-buttons .wp-block-button:first-child .wp-block-button__link:hover {
    background: #2477af;
    border-color: #2477af;
    color: #fff;
}

/* =========================================
   Section heading (.is-style-section_ttl)
   ========================================= */

.wp-block-heading.is-style-section_ttl {
    font-size: 2rem;
}

@media (max-width: 782px) {
    .wp-block-heading.is-style-section_ttl {
        font-size: 1.4rem;
    }
}

/* =========================================
   Floating Banner
   ========================================= */

.yutaka-fb {
    position: fixed;
    top: 0;
    right: 16px;
    z-index: 9000;
    width: 420px;
    background: #fff;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
    padding: 16px 16px 14px;
    text-align: center;
    font-size: 0.85rem;
    line-height: 1.5;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.yutaka-fb.is-visible {
    transform: translateY(0);
}

/* 旅館名 */
.yutaka-fb__title {
    font-weight: bold;
    font-size: 0.95rem;
    color: #333;
    padding: 0 0 8px;
    margin: 0 0 8px;
    border-bottom: 1px solid #e8e8e8;
}

/* 電話番号 */
.yutaka-fb__phone {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 0 4px;
}

.yutaka-fb__phone::before {
    content: "\e942";
    font-family: icomoon;
    font-size: 0.85em;
    font-weight: 400;
    line-height: 1;
    margin-right: 0.3em;
    vertical-align: -0.05em;
}

.yutaka-fb__phone a {
    color: #1a1a1a;
    text-decoration: none;
}

.yutaka-fb__phone a:hover {
    color: #1590d4;
}

/* FAX */
.yutaka-fb__fax {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4em;
    font-size: 0.85rem;
    color: #444;
    margin: 0 0 8px;
}

/* .yutaka-fb__fax::before {
  content: "FAX";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 2px;
  font-size: 0.65em;
  font-weight: 700;
  padding: 1px 3px;
  line-height: 1;
} */

.yutaka-fb__fax .fa-fax {
    font-size: 0.9em;
}

/* お問い合わせ */
.yutaka-fb__inquiry {
    font-size: 0.82rem;
    color: #555;
    margin: 4px 0 0;
}

.yutaka-fb__inquiry::before {
    content: "\e92c";
    font-family: icomoon;
    font-size: 0.85em;
    font-weight: 400;
    line-height: 1;
    margin-right: 0.3em;
}

.yutaka-fb__inquiry a {
    color: inherit;
    text-decoration: none;
}

.yutaka-fb__inquiry a:hover {
    text-decoration: underline;
}

/* 予約ボタン */
.yutaka-fb__btn {
    display: block;
    background: #3498db;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 8px 10px;
    border-radius: 4px;
    margin: 8px 0 0;
    line-height: 1.4;
    transition: background 0.2s;
}

.yutaka-fb__btn::before {
    content: "\e92e";
    font-family: icomoon;
    font-weight: 400;
    line-height: 1;
    margin-right: 0.35em;
}

.yutaka-fb__btn:hover {
    background: #2477af;
}

/* 予約ボタングリッド（トップページ：2カラム） */
.yutaka-fb__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    margin: 8px 0 0;
}

.yutaka-fb__grid .yutaka-fb__btn {
    margin: 0;
    font-size: 0.75rem;
    padding: 6px 4px;
}

@media (max-width: 959px) {
    .yutaka-fb {
        display: none;
    }
}

/* =========================================
   SP Floating Banner
   ========================================= */

.yutaka-fb-sp {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9001;
    background: #3498db;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding-bottom: env(safe-area-inset-bottom);
}

.yutaka-fb-sp.is-visible {
    transform: translateY(0);
}

.yutaka-fb-sp__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: auto;
    padding: 14px 6px;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1;
    white-space: nowrap;
    border-left: 1px solid rgba(255, 255, 255, 0.35);
    box-sizing: border-box;
}

.yutaka-fb-sp__item:first-child {
    border-left: none;
}

.yutaka-fb-sp__item i {
    font-size: 1.1rem;
    line-height: 1;
    flex-shrink: 0;
}

.yutaka-fb-sp__item:hover,
a.yutaka-fb-sp__item:hover {
    background: rgba(0, 0, 0, 0.12);
    color: #fff !important;
}

@media (max-width: 959px) {
    .yutaka-fb-sp {
        display: flex;
    }

    #body_wrap.has-sp-fb {
        padding-bottom: calc(56px + env(safe-area-inset-bottom));
    }
}



.gt_float_switcher.notranslate {
    width: 100% !important;
}

.gt_float_switcher {
    box-shadow: none !important;
    border: 1px solid rgb(215, 215, 215);
}

.gt_options.gt-open {
    max-width: 100% !important;
}

.gt-current-lang {
    display: flex;
    align-items: center;
}

.gt-lang-code {
    flex: 1;
}


.top-hotel-list img {
    aspect-ratio: 5 / 3;
    object-fit: cover;
}


#wpadminbar{
    display: none !important;
}