<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";


body{
    /*フォントの設定*/
    font-family: 'Hiragino Kaku Gothic Pro','Meiryo',sans-serif;
    font-size: 15px;
    border-top: 23px solid #79a1b1;

}

a{
    /*テキストのアンダーラインを全体としてなくす*/
    text-decoration: none;
    color: black;
}

.logo{
    text-align: center;
    margin-top: 15px;
    margin-bottom: 15px;
}

.logo h1{
    font-size: 25px;
}

.logo img{
    display: inline-block;
    width: 240px;
    height: 165px;
}

.w_inner {
    max-width: 1200px;          /* 最大幅を設定 */
    width: 100%;                /* 画面サイズに応じて幅を調整 */
    padding: 0 0px;            /* 左右に余白を追加 */
    margin: 0 auto;             /* 中央に配置 */
}

.header {
    display: flex;
    flex-direction: column;
    align-items: center;        /* 水平方向に中央揃え */
    text-align: center;         /* テキストも中央揃え */
    
}

.header ul {

    
    display: flex;
    justify-content: center;    /* 子要素を中央揃え */
    flex-wrap: wrap;            /* 必要に応じて折り返す */
    padding: 0;
    margin-top: 15px;
    list-style: none;           /* デフォルトのリストマーカーを無効化 */
    width: 100%;                /* リストが親要素の幅にフィットするように設定 */
    max-width: 100%;            /* 最大幅を設定 */
    box-sizing: border;
    margin-bottom: 10px;
}


.header ul li{
    width: 200px;
    text-align: center;
    border-right: 1px solid #ddd;
    margin-bottom: 10px; 

}

.header ul li:first-child{
    border-left: 1px solid #ddd;
}

.header ul li a{
    /*display blockでliのあたり判定をliの文字でなく全体のブロックにした*/
    display: block;
}

.header_img{
    text-align: center;
}

.header_img img{
    display: inline-block;
    width: 20%;
    height: 20%;
    margin-bottom: 20px;
}

.container_service .service_block{
    display: flex;
    justify-content: space-between;
    margin-left: 40px;
    margin-right: 40px;
}

.container_service .service{
    width: 440px;
    text-align: center;
}

.container_service h2{
    text-align: center;
    font-weight: bold;
    font-size: 22px;
    margin-bottom: 20px;
}

.container_service .service img{
    margin-bottom: 20px;
}

.container_service .service .ttl{
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 15px;
}

.container_service .service .explain{
    margin-bottom: 20px;
}

.container_service .service a{
    background-color: #79a1b1;
    color: #fff;
    padding: 15px 20px 12px;
}

.scroll{
    overflow: auto;
    height: 700px;
}

.container_access h2{
    text-align: center;
    font-weight: bold;
    font-size: 22px;
    margin-bottom: 20px;
}

.container_access .access{
    width: 800px;
    text-align: center;
}

.container_access .access_block{
    text-align: center;
}

.container_access .access_block .explain{
    margin-top: 15px;
    font-weight: bold;
    text-decoration: underline;
    color: #0D6FB8;
    margin-bottom: 15px;
}

.shop{
    
    width: 650px;
    height: 550px;
    display: inline-block;
}

.container_mail{
    text-align: center;
}

.container_mail h1{
    font-size: 20px;
    font-weight: bold;
}

.button-container {
    border: 2px solid #000;  /* 枠線のスタイル（黒色、2pxの太さ） */
    padding: 5px;  /* 内側の余白 */
    display: inline-block;  /* コンテンツに合わせてサイズを調整 */
    border-radius: 5px;  /* 角を少し丸める */
    margin: 5px;  /* 外側の余白 */
}

.input-container {
    border: 1px solid #000;  /* 枠線のスタイル（黒色、2pxの太さ） */
    padding: 10px;  /* 内側の余白 */
    display: inline-block;  /* コンテンツに合わせてサイズを調整 */
    border-radius: 5px;  /* 角を少し丸める */
    margin: 5px;  /* 外側の余白 */
}

/* フォーム全体のスタイル */
.select form {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    max-width: 400px;
    margin: 0 auto;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* ラジオボタンのスタイル */
.select form label {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 16px;
}

.select form input[type="radio"] {
    margin-right: 10px;
    accent-color: #79a1b1; /* ボタンの色 */
}

/* 送信ボタンのスタイル */
.select form button[type="submit"] {
    display: inline-block;
    background-color: #79a1b1;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.select form button[type="submit"]:hover {
    background-color: #5f7f8a;
}

/* ラジオボタンの表示を強制 */
input[type="radio"] {
    appearance: radio; /* ブラウザのデフォルトの外観を強制 */
    -webkit-appearance: radio; /* Safari用 */
    -moz-appearance: radio; /* Firefox用 */
    display: inline-block;
    margin-right: 10px;
}

/* 送信ボタンのスタイル */
.select form button[type="button"] {
    display: inline-block;
    background-color: #79a1b1; /* ボタンの背景色 */
    color: #fff; /* ボタンの文字色 */
    padding: 5px 20px; /* ボタン内の余白 */
    border: none; /* 枠線なし */
    border-radius: 5px; /* 角を少し丸める */
    cursor: pointer; /* マウスカーソルをポインターに変更 */
    font-size: 16px; /* フォントサイズ */
    font-weight: bold; /* 文字を太くする */
    text-align: center; /* 文字を中央揃え */
    transition: background-color 0.3s ease; /* 背景色の遷移 */
    margin-top: 10px; /* ボタンの上に余白を追加 */
}

/* ボタンホバー時のスタイル */
.select form button[type="button"]:hover {
    background-color: #5f7f8a; /* ホバー時の背景色 */
}

/* ボタンフォーカス時のスタイル */
.select form button[type="button"]:focus {
    outline: 2px solid #333; /* フォーカス時のアウトライン */
    outline-offset: 2px; /* アウトラインとボタンの距離 */
}

/* エラーメッセージのスタイル */
.error-message {
    color: red;
    margin-top: 10px;
    text-align: center; /* テキストを中央揃え */
    display: none; /* 初期状態では非表示 */
}

/* 予約内容セクションのスタイル */
.reservation-content {
    display: none;
    margin-top: 20px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
    text-align: center; /* テキストを中央揃え */
    width: 80%; /* コンテンツの幅を設定 */
    max-width: 600px; /* 最大幅を設定 */
    margin-left: auto; /* 左右のマージンを自動にして中央揃え */
    margin-right: auto; /* 左右のマージンを自動にして中央揃え */
}


    /* コンテンツセクションを初期状態で非表示に */
    .reservation-content {
        display: none;
        margin-top: 20px;
        padding: 20px;
        border: 1px solid #ddd;
        border-radius: 5px;
        background-color: #f9f9f9;
    }
    .reservation-content h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .error-message {
        color: red;
        margin-top: 10px;
        display: none; /* 初期状態では非表示 */
    }
    .reservation-form {
        margin-top: 5px;
    
    }
    .reservation-form label {
        display: block;
        margin-bottom: 5px;
    }
    .reservation-form input, .reservation-form textarea {
        margin-bottom: 5px;
        width: 100%;
        padding: 5px;
        margin-top: 3px;
        border: 1px solid #ccc;
        border-radius: 4px;
        text-align: left; /* テキストを左詰めにする */
    }
    .reservation-form textarea {
        resize: vertical; /* 縦方向のリサイズを可能にする */
    }
    .contact-options {
        display: flex; /* 水平方向に並べる */
        gap: 10px; /* 要素間の間隔 */
        margin-bottom: 10px; /* 下の余白 */
    }
    .contact-options label {
        display: flex;
        align-items: center;
        font-size: 10px;
        margin-right: 20px;
    }
    .contact-options input[type="radio"] {
        margin-right: 8px; /* ラジオボタンとラベルテキストの間隔 */
    }

    .trim-option {
        display: flex !important;
        gap: 5px; /* 要素間の間隔 */
        margin-bottom: 10px; /* 下の余白 */
    }
    .trim-option label {
        display: flex !important;
        align-items: center;
        font-size: 10px;
        margin-right: 20px;
    }
    .trim-option input[type="radio"] {
        margin-right: 2px; /* ラジオボタンとラベルテキストの間隔 */
    }

    .contact-details {
        display: none;
        margin-top: 10px;
    }
    
    .contact-details label {
        display: block;
        margin-bottom: 5px;
    }
    
    .contact-details input {
        width: 100%;
        padding: 5px;
        margin-top: 3px;
        border: 1px solid #ccc;
        border-radius: 4px;
    }
    
    .divider {
        border: none;
        border-top: 1px solid #ccc; /* 好みの色に調整 */
        margin: 20px 0; /* 上下の余白を調整 */
    }

    /* sex_select内のラジオボタンを横に並べる */
.sex_select label {
    display: flex;
    align-items: center;
        font-size: 10px;
        margin-right: 20px;
}
.sex_select {
    display: flex; /* 水平方向に並べる */
    gap: 10px; /* 要素間の間隔 */
    margin-bottom: 10px; /* 下の余*/
}

.sex_select input[type="radio"] {
    margin-right: 8px; /* ラジオボタンとラベルテキストの間隔 */
}

/* 性別選択のドロップダウンメニューを囲むスタイル */
.gender-select {
    border: 1px solid #333; /* ボーダーの色と太さ */
    padding: 5px; /* 内側の余白 */
    border-radius: 5px; /* 角を丸くする */
    display: inline-block; /* インラインブロックで囲む */
    background-color: #f9f9f9; /* 背景色 */
}

.gender-select select {
    border: none; /* ドロップダウンのボーダーを削除 */
    outline: none; /* 選択時のアウトラインを削除 */

}

.birthdate-select {
    margin-bottom: 10px;
    border: 1px solid #333; /* ボーダーの色と太さ */
    padding: 5px 8px; /* 内側の余白 */
    border-radius: 5px; /* 角を丸くする */
    display: inline-block; /* インラインブロックで囲む */
    background-color: #f9f9f9; /* 背景色 */
}

.birthdate-select select {
    border: none; /* ドロップダウンのボーダーを削除 */
    outline: none; /* 選択時のアウトラインを削除 */

}

.how-use-select{
    margin-bottom: 10px;
    border: 1px solid #333; /* ボーダーの色と太さ */
    padding: 5px 8px; /* 内側の余白 */
    border-radius: 5px; /* 角を丸くする */
    display: inline-block; /* インラインブロックで囲む */
    background-color: #f9f9f9; /* 背景色 */
}

.how-use-select select{
    border: none; /* ドロップダウンのボーダーを削除 */
    outline: none; /* 選択時のアウトラインを削除 */
}

.other-hotel-use{
    margin-bottom: 10px;
    border: 1px solid #333; /* ボーダーの色と太さ */
    padding: 5px 8px; /* 内側の余白 */
    border-radius: 5px; /* 角を丸くする */
    display: inline-block; /* インラインブロックで囲む */
    background-color: #f9f9f9; /* 背景色 */
}

.other-hotel-use select{
    border: none; /* ドロップダウンのボーダーを削除 */
    outline: none; /* 選択時のアウトラインを削除 */
}

.bite-habit-select{
    margin-bottom: 10px;
    border: 1px solid #333; /* ボーダーの色と太さ */
    padding: 5px 8px; /* 内側の余白 */
    border-radius: 5px; /* 角を丸くする */
    display: inline-block; /* インラインブロックで囲む */
    background-color: #f9f9f9; /* 背景色 */
}

.bite-habit-select select{
    border: none; /* ドロップダウンのボーダーを削除 */
    outline: none; /* 選択時のアウトラインを削除 */
}

.rejected-experience-select{
    margin-bottom: 10px;
    border: 1px solid #333; /* ボーダーの色と太さ */
    padding: 5px 8px; /* 内側の余白 */
    border-radius: 5px; /* 角を丸くする */
    display: inline-block; /* インラインブロックで囲む */
    background-color: #f9f9f9; /* 背景色 */
}

.rejected-experience-select select{
    border: none; /* ドロップダウンのボーダーを削除 */
    outline: none; /* 選択時のアウトラインを削除 */
}

.confirm-check {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 600px;
    margin: auto;
    margin-top: 50px;
}

.confirm-check h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
}

.confirm-content {
    margin-bottom: 20px;
}

.confirm-field {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.confirm-label {
    font-weight: bold;
    color: #333;
}

.confirm-value {
    color: #555;
    text-align: right;
}

.confirm-buttons {
    display: flex;
    justify-content: space-between;
    padding: 30px 30px;
}

.confirm-button {
    display: inline-block;
    background-color: #79a1b1;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease;
}

.confirm-button:hover {
    background-color: #5f7f8a;
}

/* コンテナのスタイル */
.container_info {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* 見出しのスタイル */
.container_info h2 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
    font-weight: bolder;
    font-size: 25px;
}

/* テキスト要素のスタイル */
.container_info .text {
    margin-bottom: 20px;
    text-align: center;
    font-weight: bolder;
}

.container_info h3 {
    margin: 10px 0;
    color: #444;
}

.container_info h3 a{
    text-decoration: underline;
    color: #0D6FB8;
}

/* 画像のスタイル */
.container_info .img {
    text-align: center;
}

.container_info .img img {
    max-width: 40%;
    height: auto;
    border-radius: 10px;
}

.bottom-right-text {
    position: absolute;
    bottom: 10px; /* 下からの距離 */
    right: 10px;  /* 右からの距離 */
    font-size: 14px; /* 文字サイズ */
    color: #999; /* 文字色 */
    font-weight: bolder;
    /* 他のスタイル（必要に応じて調整） */
}</pre></body></html>