
/*hub-css*/
.responsive-resources-list a {
  text-decoration: none; /* This removes the underline */
  color: #333; /* Default text color */
  display: block; /* Makes the entire line clickable */
  transition: color 0.3s ease; /* Smooth color transition on hover */
  font-size: 18px; /* Fixed pixel size for better control */
}

.responsive-resources-list a:hover {
  color: #5599ff; /* Blue color on hover */
  text-decoration: none; /* Ensures no underline appears on hover */
}

.responsive-resources-list h2 {
  color: #5599ff; /* Blue heading color */
  font-size: 24px; /* Fixed pixel size heading */
  margin-bottom: 1.5rem;
  font-weight: bold;
}

.responsive-resources-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.responsive-resources-list li {
  padding: 0.7rem 0;
  font-size: 18px; /* Fixed pixel size */
  border-bottom: 1px solid #f0f0f0;
}

.responsive-resources-list .arrow {
  color: #5599ff;
  margin-right: 0.5rem;
  font-size: 18px; /* Ensure arrow matches text size */
}

/* Responsive styles */
@media (max-width: 768px) {
  .responsive-resources-list h2 {
    font-size: 22px;
  }
  
  .responsive-resources-list li,
  .responsive-resources-list a,
  .responsive-resources-list .arrow {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .responsive-resources-list h2 {
    font-size: 20px;
  }
  
  .responsive-resources-list li,
  .responsive-resources-list a,
  .responsive-resources-list .arrow {
    font-size: 14px;
  }
}
/* 縮小状態のチャットボット */
.chatbot.minimized {
    width: 50px; /* 縮小時の幅 */
    height: 50px; /* 縮小時の高さ */
    background: #0073aa; /* 背景色 */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%; /* 円形に */
    overflow: hidden; /* 内容が溢れないように */
    cursor: pointer; /* マウスポインタをポインタに */
    position: fixed;
    bottom: 20px; /* 画面下部からの距離 */
    right: 20px; /* 画面右側からの距離 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* 軽い影を追加 */
    transition: all 0.3s ease; /* アニメーションをスムーズに */
}

/* 縮小時のアイコン */
#chatbot-icon {
    font-size: 24px; /* アイコンサイズ */
    color: #fff; /* アイコンの色 */
    text-align: center;
    line-height: 50px; /* 高さに合わせて中央寄せ */
}

/* 展開状態のチャットボット */
.chatbot {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    max-height: 400px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
}

/* チャットボットのヘッダー */
#chatbot-header {
    background: #0073aa;
    color: #fff;
    padding: 10px;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px 10px 0 0;
}

/* 縮小ボタンのスタイル */
#chatbot-minimize {
    background-color: #0073aa; /* ボタンの背景色を青に */
    color: transparent; /* ボタン内のテキストを非表示に */
    border: none; /* 境界線を削除 */
    border-radius: 50%; /* 丸いボタン */
    width: 30px; /* ボタンの幅 */
    height: 30px; /* ボタンの高さ */
    display: flex; /* フレックスボックスで中央揃え */
    justify-content: center; /* 水平方向の中央揃え */
    align-items: center; /* 垂直方向の中央揃え */
    cursor: pointer; /* ポインタを手形に */
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* 軽い影を追加 */
    position: relative; /* 位置調整を可能に */
}

/* ボタン内の「×」記号の位置調整 */
#chatbot-minimize::before {
    content: "×"; /* 「×」記号を表示 */
    font-size: 18px; /* 記号のサイズ */
    color: #fff; /* 記号の色 */
    position: absolute; /* 位置調整を有効に */
    top: 50%; /* 垂直方向の中央 */
    left: 50%; /* 水平方向の中央 */
    transform: translate(-50%, -50%); /* 中央に揃える */
}

/* 縮小ボタンのホバー効果 */
#chatbot-minimize:hover {
    background-color: #005f8d; /* ホバー時の背景色を濃い青に */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* ホバー時の影を強調 */
}

/* チャットボットのメッセージエリア */
#chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
    font-size: 14px;
    background: #f4f4f4; /* メッセージエリアの背景色を明るく */
    border-radius: 10px;
}

/* ユーザーのメッセージスタイル */
.message.user {
    background-color: #e0f7fa; /* 水色の背景 */
    color: #00796b; /* 深い緑色の文字 */
    padding: 10px;
    border-radius: 10px;
    margin: 10px 0;
    align-self: flex-end;
    max-width: 80%;
    word-wrap: break-word;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* チャットボットのメッセージスタイル */
.message.bot {
    background-color: #f9f9f9; /* 明るい背景 */
    color: #333; /* 濃い文字色 */
    padding: 10px;
    border-radius: 10px;
    margin: 10px 0;
    align-self: flex-start;
    max-width: 80%;
    word-wrap: break-word;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* チャットボットの入力エリア */
#chatbot-input-container {
    display: flex;
    padding: 10px;
    background: #fff;
    border-top: 1px solid #ccc;
}

#chatbot-input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}
/* チャットボット内のリンクを青色に設定し、ホバー時に下線を表示 */
.message.bot a {
    color: #0073aa; /* 青色に設定 */
    text-decoration: none; /* 初期状態で下線を消す */
}

.message.bot a:hover {
    text-decoration: underline; /* ホバー時に下線を表示 */
    color: #005f8d; /* ホバー時はやや濃い青色 */
}

/* 送信ボタンのスタイル */
#chatbot-send {
    background-color: #fff; /* 背景色を白に */
    border: 2px solid #0073aa; /* ボタンの境界線を青に */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    background-image: url('https://unitxs.com/wp-content/uploads/2024/12/airplane-icon.png');
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;
    color: transparent;
    text-indent: -9999px;
    overflow: hidden;
    white-space: nowrap;
}

/* 送信ボタンのホバー効果 */
#chatbot-send:hover {
    background-color: #f0f0f0; /* ホバー時の背景色を薄いグレーに */
    border-color: #005f8d; /* ホバー時の境界線色を濃い青に */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* レスポンシブデザイン（スマホ対応） */
@media (max-width: 768px) {
    .chatbot {
        width: 90%;
        bottom: 10px;
        right: 5%;
    }

    .chatbot.minimized {
        width: 40px;
        height: 40px;
    }

    #chatbot-icon {
        font-size: 20px;
        line-height: 40px;
    }

    #chatbot-minimize {
        width: 25px;
        height: 25px;
        font-size: 16px;
        line-height: 1;
    }

    #chatbot-send {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}



/* テーブルを横スクロール可能にする */
@media screen and (max-width: 768px) {
    .responsive-table {
        width: 100%;
        overflow-x: auto;
        display: block;
        -webkit-overflow-scrolling: touch; /* iOSでスムーズスクロール */
    }

    table {
        min-width: 600px; /* 必ず横スクロールが発生するようにする */
    }
}

/* Googleログインボタンの全体スタイル */
.google-register-container {
    text-align: center;
    margin: 20px 0;
}

.google-register-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px 20px;
    background-color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, box-shadow 0.3s, transform 0.2s;
}

.google-register-link:hover {
    background-color: #f1f1f1;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.google-register-link:active {
    background-color: #e8e8e8;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
}

/* Googleアイコンのスタイル */
.google-register-link img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

/* テキストのスタイル */
.google-register-link span {
    color: #333;
}




.custom-profile-edit-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #f9f9f9;
}

.custom-profile-edit-form h2 {
    text-align: center;
    margin-bottom: 20px;
}

.custom-profile-edit-form img {
    display: block;
    margin: 10px auto;
}

.custom-profile-edit-form label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.custom-profile-edit-form input[type="text"],
.custom-profile-edit-form input[type="email"],
.custom-profile-edit-form input[type="file"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
}

.custom-profile-edit-form input[type="submit"] {
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    display: block;
    margin: 10px auto; /* 上下に10pxの余白を追加 */
}

.custom-profile-edit-form input[type="submit"]:hover {
    background-color: #005d8d;
}

.custom-profile-edit-form input[type="submit"][style*="red"] {
    background-color: red;
    margin-top: 30px; /* 保存ボタンとの間隔を広げる */
    margin-bottom: 0; /* 下の余白を削除 */
    padding: 10px 20px;
}
.custom-profile-edit-form input[type="url"],
.custom-profile-edit-form input[type="email"],
.custom-profile-edit-form input[type="text"] {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    margin-top: 5px;
    box-sizing: border-box;
}

.custom-profile-edit-form label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.custom-profile-edit-form p {
    margin-bottom: 15px;
}

.custom-profile-edit-form .profile-image-preview {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: block;
    margin-bottom: 10px;
}


/* 記事2-3カラムの位置調整 */
.wp-block-column {
	margin-top: 20px!important;
}

/*スマホメニューパネルを画面いっぱい*/
@media only screen and (max-width: 480px){
.menuBtn__content{
width:100%;
max-width:480px !important;
}
}


.btn-contact1 a {
  text-decoration: none;
  color: #666;
  font-size: 15px;
  font-weight: bold;
  position: relative;
  display: inline-block;
  transition: 0.3s;
  padding: 2px;
}
.btn-contact1 a::after {
  background-color: #87ceeb;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 0;
  height: 3px;
  transition: 0.3s;
}
.btn-contact1 a:hover::after {
  width: 100%;
}

.btn-contact a {
  text-decoration: none;
  color: #666;
  font-size: 20px;
  font-weight: bold;
  position: relative;
  display: inline-block;
  transition: 0.3s;
  padding: 2px;
}
.btn-contact a::after {
  background-color: #FFDF00;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 0;
  height: 3px;
  transition: 0.3s;
}
.btn-contact a:hover::after {
  width: 100%;
}



@media screen and (max-width:480px) {
.wp-block-table {
    margin: 0 0 1em;
    overflow-x: auto;
    white-space: nowrap;
}
}

.box30 {
    margin: 2em 0;
    background: #f1f1f1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.22);
}
.box30 .box-title {
    font-size: 1.2em;
    background: #5fc2f5;
    padding: 4px;
    text-align: center;
    color: #FFF;
    font-weight: bold;
    letter-spacing: 0.05em;
}
.box30 p {
    padding: 15px 20px;
    margin: 0;
}
.ribbon12-wrapper {  
  display: block;
  position: relative;
  margin: 15px auto;
  padding: 10px 0;
  background: #f1f1f1;
  }

.ribbon12 {
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  padding: 10px;
  margin: 0 0 0 -20px;
  width: calc(100% + 20px);
  font-size: 22px;
  color: white;
  background: #70a6ff;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}

.ribbon12:before {
  position: absolute;
  content: '';
  top: 100%;
  left: 0;
  border: none;
  border-bottom: solid 15px transparent;
  border-right: solid 20px #6081b7;
}

.stepbar {
  margin: 0 auto;
  width: 80%;
}

.stepbar .stepbarwrap {
  margin: 2em 0;
  position: relative;
}

.stepbar .stepbarwrap .steptitle {
  display: inline-flex;
  align-items: center;
}

.stepbar .stepbarwrap .steptitle .stepcircle {
  display: inline-block;
  width: 3em;
  height: 3em;
  content: "";
  border-radius: 50%;
  background-color: #87cefa;
  color: #696969;
  text-align: center;
}

.stepbar .stepbarwrap .steptitle .stepcircle span {
  display: inline-block;
  line-height: 1.2em;
  font-size: 0.8em;
  font-weight: bold;
  position: relative;
  top: 0.9em;
}

.stepbar .stepbarwrap .steptitle .title {
  margin: 0.5em;
  font-weight: bold;
  font-size: 1.2em;
}

.stepbar .stepbarwrap .steptxt {
  padding-left: 3.5em;
}

.stepbar .stepbarwrap .steptxt .txt {
  font-size: 0.9em;
}

.stepbar .stepbarwrap .stepline {
  width: 1px;
  height: calc(100% + 1em);
  background-color: #000;
  position: absolute;
  top: 1em;
  left: 1.5em;
  z-index: -1;
}

.stepbarwrap:last-of-type .stepline:last-of-type {
  display: none;
}

@media screen and (max-width: 960px) {
  .stepbar {
    width: 90%;
  }
}


@media screen and (max-width : 480px){
.tableScroll:before {
	content: "scroll >>>";
	font-size:80%;
	font-weight:800;
	color:#0268b7;
	position: relative;
	position: -webkit-sticky;
	position: sticky;
	left: 0;
	animation: yokoSC 1.5s ease-in-out infinite alternate;
}
}
@keyframes yokoSC{
	0% {opacity:.2;}
	100% {opacity:1;}
}
@-webkit-keyframes yokoSC{
	0% {opacity:.2;}
	100% {opacity:1;}
}
@-moz-keyframes yokoSC{
	0% {opacity:.2;}
	100% {opacity:1;}
}


*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;
}


/* 元のスタイル設定 */
.hotel-card-link {
    display: block;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    text-decoration: none;
}

.hotel-card {
    width: 100%;
    height: 200px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hotel-card-link:hover .hotel-card {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.hotel-name, 
.hotel-plan, 
.hotel-price {
    color: #333;
}

.hotel-name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.hotel-plan,
.hotel-price {
    font-size: 18px;
    margin-bottom: 5px;
}

.hotel-btn {
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #333; /* ボタンの初期背景色は黒 */
    color: #fff;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hotel-card-link:hover .hotel-btn {
    background-color: #3498db; /* ホバー時の背景色を青に変更 */
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .hotel-card {
        height: auto;
        padding: 15px;
    }

    .hotel-name {
        font-size: 20px;
    }

    .hotel-plan,
    .hotel-price {
        font-size: 16px;
    }
}

body {
    font-family: Arial, sans-serif;
}

.itinerary {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

h1, h2 {
    color: #333;
}
ul {
    list-style: none; /* リストスタイルを完全に無効化 */
    padding: 0;
    margin: 0; /* 必要に応じてマージンも削除 */
}

li {
    list-style: none; /* 必要に応じて li にも明示的に設定 */
    padding: 5px 0;
    border-bottom: 1px solid #eee; /* このスタイルはそのままでもOK */
}

time {
    font-weight: bold;
    color: #007bff;
}


/* フォーム全体のコンテナ */
p {
  max-width: 400px;
  margin: 0.5rem auto;
}

/* ラベルとメール入力フィールドのコンテナ */
p:first-of-type {
  margin-bottom: 1rem;
}

/* ラベル */
label {
  display: flex;
  position: relative;
  width: 100%;
}

/* メール入力フィールド */
input[type="email"] {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 9999px;
  font-size: 1rem;
  outline: none;
  box-sizing: border-box;
  transition: all 0.2s;
  background: white;
}

input[type="email"]:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

input[type="email"]::placeholder {
  color: #6b7280;
}

/* 送信ボタン */
input[type="submit"] {
  width: 100%;
  padding: 1rem 1.5rem;
  background: #0066ff;
  color: white;
  border: none;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

input[type="submit"]:hover {
  background: #0052cc;
}

/* 背景画像の追加 */
body {
  background-image: url('https://www.saw-travel.com/wp-content/uploads/2024/11/klviyo-1.jpg');
  background-size: cover; /* 画像をページ全体にカバー */
  background-position: center; /* 画像の位置を中央に */
  background-repeat: no-repeat; /* 繰り返しを防ぐ */
}

/* レスポンシブ対応 */
@media (max-width: 480px) {
  p {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}



/*footer change*/
.bottomFooter {
    padding: 10px 0; /* 縦方向の余白を減らす */
    position: relative;
}

.bottomFooter__topBtn {
    bottom: 10px; /* ボタンの位置調整 */
}

.bottomFooter__copyright {
    font-size: 12px; /* 文字サイズを小さく調整 */
    line-height: 1.5; /* 行間を縮小 */
}

.footer-icon {
  width: 16px; /* アイコンの幅 */
  height: 16px; /* アイコンの高さ */
  transition: transform 0.3s ease; /* 開閉時のアニメーション */
}

/* .footer-toggle p 要素のスタイル */
.footer-toggle p {
  color: #000; /* テキストの色を黒に設定 */
  font-size: 16px; /* フォントサイズを16pxに設定 */
  font-weight: bold; /* 太字に設定 */
  margin: 0; /* 余白をリセット */
  padding: 0; /* 内側の余白をリセット */
  line-height: 1.5; /* 行間を調整 */
  text-align: left; /* テキストを左揃えに設定 */
}


/* ボタン全体のスタイル */
.footer-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 15px; /* ボタン内の余白 */
  background-color: #f9f9f9; /* ボタンの背景色 */
  border: 1px solid #ccc; /* ボタンの境界線 */
  border-radius: 5px; /* 角を丸める */
  font-size: 16px; /* フォントサイズ */
  font-weight: bold; /* 太字 */
  cursor: pointer; /* カーソルをポインターに */
  transition: background-color 0.3s ease; /* 背景色のアニメーション */
}

.footer-toggle:hover {
  background-color: #eaeaea; /* ホバー時の背景色 */
}

/* アイコンのスタイル */
.footer-toggle .footer-icon {/* アイコンのスタイル */
.footer-toggle .footer-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease; /* 回転時のアニメーション */
}

/* 開閉時にアイコンを回転 */
.footer-toggle.open .footer-icon {
  transform: rotate(180deg); /* 回転する */
}

/* トグルコンテンツのスタイル */
.footer-content {
  display: none; /* 初期状態で非表示 */
  padding: 10px 0; /* 上下の余白のみ */
  background: none; /* 背景を透明に */
  border: none; /* ボックスの枠線を削除 */
}

.footer-content ul {
  margin: 0;
  padding: 0;
  list-style-type: none; /* リストのデフォルトスタイルを削除 */
}

.footer-content ul li {
  margin-bottom: 10px;
  font-size: 14px; /* リスト項目のフォントサイズ */
}

/* 開いた状態 */
.footer-toggle.open + .footer-content {
  display: block; /* トグルが開かれたとき表示 */
}

/* トグルボタンのスタイル */
.footer-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 15px; /* ボタンの余白 */
  background: none; /* 背景を透明に */
  border: none; /* ボックスの枠線を削除 */
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.footer-toggle:hover {
  background-color: rgba(0, 0, 0, 0.05); /* ホバー時にわずかに色をつける */
}

/* スマホ（小画面）向けスタイル */
@media (max-width: 767px) {
  .footer-content {
    display: none; /* 初期状態で非表示 */
  }

  .footer-toggle {
    cursor: pointer;
    pointer-events: auto; /* クリック可能 */
	width: 90%; /* ボタンの幅をスマホで広げる */
    margin: 0 auto; /* 中央揃え */
  }

  .footer-toggle.open + .footer-content {
    display: block; /* トグルが開かれた時に表示 */
  }
}

/* PC（大画面）向けスタイル */
@media (min-width: 768px) {
  .footer-content {
    display: block; /* PCでは常に展開 */
  }

  .footer-toggle {
    pointer-events: none; /* クリック無効 */
    cursor: default; /* 通常のカーソル */
  }

  .footer-icon {
    display: none; /* アイコンを非表示 */
  }
}

  width: 16px;
  height: 16px;
  transition: transform 0.3s ease; /* 回転時のアニメーション */
}

/* 開閉時にアイコンを回転 */
.footer-toggle.open .footer-icon {
  transform: rotate(180deg); /* 回転する */
}

/* トグルボタンのスタイル */
.footer-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 15px; /* ボタンの余白 */
  background: none; /* 背景を透明に */
  border: none; /* ボックスの枠線を削除 */
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.footer-toggle:hover {
  background-color: rgba(0, 0, 0, 0.05); /* ホバー時にわずかに色をつける */
}

/* アイコンのスタイル */
.footer-toggle .footer-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease; /* 回転時のアニメーション */
}

/* 開閉時にアイコンを回転 */
.footer-toggle.open .footer-icon {
  transform: rotate(180deg); /* 回転する */
}

/* トグルコンテンツのスタイル */
.footer-content {
  display: none; /* 初期状態で非表示 */
  padding: 10px 0; /* 上下の余白のみ */
}

.footer-content .footer-item {
  padding: 5px 0;
  border-bottom: none; /* 区切り線を追加 */
  font-size: 14px; /* フォントサイズ */
}

/* 最後の項目の区切り線を削除 */
.footer-content .footer-item:last-child {
  border-bottom: none;
}

/* 開いた状態 */
.footer-toggle.open + .footer-content {
  display: block; /* トグルが開かれたとき表示 */
}

/* スマホ（小画面）向けスタイル */
@media (max-width: 767px) {
  .footer-content {
    display: none; /* 初期状態で非表示 */
  }

  .footer-toggle {
    cursor: pointer;
    pointer-events: auto; /* クリック可能 */
  }

  .footer-toggle.open + .footer-content {
    display: block; /* トグルが開かれた時に表示 */
  }
}

/* PC（大画面）向けスタイル */
@media (min-width: 768px) {
  .footer-content {
    display: block; /* PCでは常に展開 */
  }

  .footer-toggle {
    pointer-events: none; /* クリック無効 */
    cursor: default; /* 通常のカーソル */
  }

  .footer-icon {
    display: none; /* アイコンを非表示 */
  }
}
.articles-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px; /* 全体を少し上に移動 */
}

.article-card {
    position: relative;
    display: flex;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 15px;
    align-items: center;
    transition: background-color 0.3s ease; /* 背景色のトランジションを追加 */
}

.article-card:hover,
.article-card:active {
    background: #e6f7ff; /* 薄い青色に変更 */
}

.article-image {
    flex-shrink: 0;
    margin-right: 15px;
}

.article-image img {
    width: 80px; /* 小さいサイズに変更 */
    height: 80px; /* 縦横を揃えて、サムネイルをコンパクトに */
    border-radius: 8px;
    object-fit: cover;
}

.article-content {
    flex-grow: 1;
}

.article-category {
    font-size: 0.8em;
    color: #777;
    text-transform: uppercase;
    font-weight: bold;
}

.article-title {
    font-size: 1em;
    margin: 5px 0;
}

.article-title a {
    color: #333;
    text-decoration: none;
}

.article-meta {
    font-size: 0.8em;
    color: #777;
}



/* リンクボタンを中央に配置するスタイル */
.center-link {
  display: flex;
  justify-content: center; /* 水平方向に中央揃え */
  align-items: center; /* 垂直方向に中央揃え（必要な場合） */
  margin: 1rem auto; /* 上下に余白を追加し中央揃え */
}


.latest-post {
    position: relative;
    margin: 20px 0;
}

.latest-post-image {
    position: relative;
}

.latest-post-image img {
    width: 100%; /* 親要素の幅に収まるように設定 */
    height: auto;
    max-width: 100%;
    display: block; /* 画像の余白を取り除くためにブロック要素に設定 */
    object-fit: cover;
}

.latest-post-meta-image {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px; /* 左右両方を設定して幅を整える */
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 5px;
    box-sizing: border-box; /* paddingを含めた全体のサイズを制御 */
}

.latest-post-title {
    margin: 5px 0;
    font-size: 1.2em;
}

.latest-post-excerpt {
    font-size: 14px;
}

/* スマホ対応のメディアクエリ */
@media (max-width: 768px) {
    .latest-post-meta-image {
        left: 5px;
        right: 5px; /* スマホ表示で左右の余白を狭める */
        bottom: 5px; /* 黒枠を下に寄せるために調整 */
        padding: 8px; /* パディングを少し減らす */
    }

    .latest-post-title {
        font-size: 1em; /* タイトルを少し小さくして調整 */
    }

    .latest-post-excerpt {
        font-size: 12px; /* テキストのサイズを調整 */
    }
}

/*viator*/
.result-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
}

.result-image {
    width: 200px; /* 固定幅 */
    height: 200px; /* 固定高さ */
    object-fit: cover; /* アスペクト比を維持 */
    margin-right: 15px;
    border-radius: 5px;
}

.result-content {
    flex: 1;
}

.result-title {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 10px;
}

.result-description {
    font-size: 14px;
    color: #666;
    margin: 0 0 10px;
}

.result-meta {
    display: flex;
    gap: 10px;
    font-size: 14px;
    color: #333;
}

.result-link {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background-color: #e0ffff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    text-align: center;
}

.result-link:hover {
    background-color: #0056b3;
}

/* スマホ画面（768px以下）向けのスタイル */
@media (max-width: 768px) {
    .result-item {
        flex-direction: column; /* 縦並びに変更 */
        align-items: flex-start;
    }

    .result-image {
        width: 100%; /* 画像を画面幅に合わせる */
        height: auto; /* 高さを自動調整 */
        margin-right: 0;
        margin-bottom: 15px;
    }

    .result-content {
        width: 100%; /* コンテンツ全幅 */
    }

    .result-title {
        font-size: 18px; /* タイトルを少し大きく */
    }

    .result-meta {
        flex-direction: column; /* 縦並びにする */
        gap: 5px;
    }

    .result-link {
        width: 100%; /* ボタンを全幅に */
        text-align: center;
    }
}
/* Reset and base styles viator */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.form-group {
    display: flex;
    max-width: 600px;
    width: 100%;
    margin: 20px auto;
    position: relative;
}

.search-input {
    flex-grow: 1;
    padding: 12px 15px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-right: none;
    border-radius: 4px 0 0 4px;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-color: #4a90e2;
    box-shadow: 0 0 5px rgba(74, 144, 226, 0.3);
}

.search-button {
    padding: 12px 20px;
    font-size: 16px;
    background-color: #4a90e2;
    color: white;
    border: 2px solid #4a90e2;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
}

.search-button:hover {
    background-color: #357abd;
}

.search-button:active {
    transform: scale(0.98);
}

/* Responsive design */
@media screen and (max-width: 600px) {
    .form-group {
        flex-direction: column;
        margin: 10px;
    }

    .search-input {
        width: 100%;
        border-radius: 4px 4px 0 0;
        border-right: 2px solid #ddd;
    }

    .search-button {
        width: 100%;
        border-radius: 0 0 4px 4px;
    }
}

/* Accessibility and additional touches */
.search-input::placeholder {
    color: #999;
}

.search-input:focus::placeholder {
    color: #bbb;
}

/* 親要素（画像全体のスタイル） */
.myClassNameSample1 {
    position: relative;
    display: inline-block;
    width: 100%; /* 幅を画面幅に合わせる */
}

/* 画像のスタイル */
.myClassNameSample1 img {
    display: block;
    width: 100%; /* 親要素にフィット */
    height: auto; /* アスペクト比を維持 */
}

/* テキストを画像の上に表示 */
.myClassNameSample1 .overlay-text {
    position: absolute;
    top: 50%; /* 縦方向中央寄せ */
    left: 50%; /* 横方向中央寄せ */
    transform: translate(-50%, -50%); /* 完全に中央寄せ */
    color: #ffffff; /* テキストカラー（白） */
    font-size: 2.5vw; /* デフォルトで少し小さめ */
    font-weight: bold; /* 太字 */
    text-align: center; /* テキスト中央揃え */
    background-color: rgba(0, 0, 0, 0.5); /* 半透明の背景 */
    padding: 10px 20px; /* テキスト周りの余白 */
    border-radius: 5px; /* 背景の角を丸く */
    max-width: 90%; /* テキストの幅を制限 */
    box-sizing: border-box; /* パディング込みで幅調整 */
}

/* レスポンシブ対応: タブレットサイズ以下で文字をさらに小さく */
@media (max-width: 768px) {
    .myClassNameSample1 .overlay-text {
        font-size: 2vw; /* タブレットではさらに小さく */
        padding: 8px 16px; /* 余白を少し減らす */
    }
}

/* レスポンシブ対応: スマホサイズで文字を小さく */
@media (max-width: 480px) {
    .myClassNameSample1 .overlay-text {
        font-size: 1.8vw; /* スマホではもっと小さく */
        padding: 6px 12px; /* 余白も縮小 */
    }
}

/* コンテナ全体を設定 */
.tour-cards-container {
  width: 100%;
  max-width: 1200px; /* 最大幅を設定してコンテナが広がりすぎないようにする */
  margin: 0 auto; /* コンテナを中央に揃える */
  padding: 20px; /* コンテナ全体に余白を追加 */
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* カード間の間隔を設定 */
  justify-content: space-between;
}

/* 各カードのスタイル設定 */
.tour-card {
  flex: 1 1 calc(50% - 20px); /* 通常は2列で表示（幅の余白を含む） */
  max-width: calc(50% - 20px);
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  padding: 15px;
  background: #ffffff; /* 背景色 */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* カード情報のスタイル設定 */
.tour-card__badge {
  background: #ff5722;
  color: #fff;
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 0.9em;
  margin-bottom: 10px;
  font-weight: bold;
  display: inline-block;
}

.tour-card__category {
  font-size: 0.9em;
  color: #ff5722;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 5px;
}

.tour-card__title {
  font-size: 1.1em;
  margin: 10px 0;
  color: #333;
  line-height: 1.4em;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .tour-card {
    flex: 1 1 calc(100% - 20px); /* スマホでは1列表示 */
    max-width: calc(100% - 20px);
  }
}

/*kiwi*/
.card-container {
  display: flex;
  justify-content: center;
  text-decoration: none;
  color: inherit;
}

.card {
  display: flex;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 900px;
  width: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card-content {
  flex: 1;
  padding: 16px;
  color: inherit;
}

@media (max-width: 768px) {
  .card {
    flex-direction: column;
    max-width: 100%;
  }
}

/*kiwi*/
.kiwi-flight-search-container {
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

#kiwi-flight-results {
    margin-top: 20px;
}

.kiwi-flight {
    background-color: white;
    border: 1px solid #e0e0e0;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
}
.kiwi-flight {
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.kiwi-flight p {
    margin: 5px 0;
}

.kiwi-flight hr {
    margin: 10px 0;
    border: none;
    border-top: 1px solid #ccc;
}
.kiwi-flight {
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.kiwi-flight p {
    margin: 5px 0;
}

.kiwi-flight hr {
    margin: 10px 0;
    border: none;
    border-top: 1px solid #ccc;
}

.booking-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.booking-button:hover {
    background-color: #0056b3;
}

/* 検索結果全体のコンテナ */
#kiwi-flight-results {
    margin: 20px auto;
    padding: 20px;
    max-width: 1200px;
    display: flex;
    flex-direction: column; /* 縦に並べる */
    gap: 20px; /* カード間のスペース */
}

/* 各フライトカード */
.kiwi-flight {
    width: 100%; /* デフォルト幅を100%に設定 */
    max-width: 600px; /* 最大幅を600pxに制限 */
    margin: 0 auto; /* 中央に配置 */
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 15px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

/* ホバー時の効果 */
.kiwi-flight:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* フライト情報の詳細 */
.kiwi-flight-details {
    display: flex;
    justify-content: space-between; /* 横に並べる */
    flex-wrap: wrap; /* スマホ対応: 折り返し */
}

/* 出発日と帰着日のコンテナ */
.kiwi-flight-dates {
    flex: 1 1 48%; /* 幅を調整 */
    text-align: left; /* 左揃え */
}

/* 出発・帰着区間のコンテナ */
.kiwi-flight-summary {
    flex: 1 1 48%; /* 幅を調整 */
    text-align: left; /* 左揃え */
}

/* 価格とボタン */
.kiwi-flight-meta {
    text-align: center; /* 中央揃え */
    margin-top: 10px;
}

/* ボタンのデザイン */
.booking-button {
    display: inline-block;
    padding: 8px 12px; /* 少し小さくする */
    background-color: #007bff;
    color: white !important; /* ボタン文字を白色に */
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    text-align: center;
    font-size: 14px; /* 文字サイズを調整 */
}

.booking-button:hover {
    background-color: #0056b3;
}

/* フライトカードのテキストサイズ */
.kiwi-flight p {
    font-size: 14px; /* 文字サイズを小さくする */
    line-height: 1.5; /* 読みやすさを向上 */
    margin: 5px 0;
}

/* レスポンシブ対応: スマホ画面用 */
@media (max-width: 768px) {
    .kiwi-flight {
        width: 90%; /* スマホ画面では幅を90%に拡大 */
    }
    .kiwi-flight-details {
        flex-direction: column; /* 縦並びに変更 */
    }
    .kiwi-flight-dates,
    .kiwi-flight-summary {
        flex: 1 1 100%; /* 全幅を使用 */
    }
    .booking-button {
        font-size: 13px; /* スマホ画面でボタンの文字サイズをさらに調整 */
    }
    .kiwi-flight p {
        font-size: 13px; /* スマホ画面の文字サイズ */
    }
}
/* フライトカード */
.kiwi-flight {
    position: relative; /* ロゴを絶対位置で配置するために相対位置を設定 */
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 15px;
    margin-bottom: 20px;
}

/* ロゴのスタイル */
.kiwi-flight-logo {
    position: absolute; /* 親要素の右上に配置 */
    top: 10px;
    right: 10px;
    width: 50px; /* ロゴの幅 */
    height: auto;
}

.kiwi-flight-logo img {
    max-width: 100%; /* ロゴが親要素に収まるよう調整 */
    height: auto;
}
/* kiwiカレンダー全体のスタイル */
.custom-calendar {
    position: absolute;
    top: 100%; /* デフォルトでは入力フィールドの下に表示 */
    left: 0;
    width: 300px; /* PC時のデフォルト幅 */
    max-width: 350px; /* PC時の最大幅 */
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 10px;
    z-index: 1000;
    font-family: Arial, sans-serif;
    transition: all 0.3s ease-in-out; /* スムーズな表示切り替え */
}

/* カレンダーのヘッダー */
.custom-calendar .calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 16px;
}

.custom-calendar .calendar-header button {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    padding: 0;
    transition: background-color 0.2s ease;
}

.custom-calendar .calendar-header button:hover {
    background-color: #0056b3;
}

.custom-calendar .calendar-header .calendar-current {
    flex-grow: 1;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
}

/* 曜日ヘッダー */
.custom-calendar .calendar-days-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 5px;
}

.custom-calendar .calendar-days-header > div {
    width: calc(100% / 7); /* 各列を均等に配置 */
    margin: 0 2px; /* 各セル間の横方向スペース */
    text-align: center;
}

/* 日付部分 */
.custom-calendar .calendar-days {
    display: flex;
    flex-wrap: wrap; /* 折り返しを許可 */
    justify-content: space-between;
    text-align: center;
}

.custom-calendar .calendar-days div {
    width: calc(100% / 7); /* 各列を均等に配置 */
    padding: 10px 0;
    margin: 2px 2px; /* 各セル間のスペース */
    box-sizing: border-box;
    border-radius: 4px;
    background-color: #f9f9f9;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.custom-calendar .calendar-days div:hover {
    background-color: #007bff;
    color: white;
}

.custom-calendar .calendar-days div.selected {
    background-color: #0056b3;
    color: white;
    font-weight: bold;
}

/* スマホ用スタイル（画面幅768px以下） */
@media (max-width: 768px) {
    .custom-calendar {
        position: fixed; /* 画面全体に固定 */
        top: 0;
        left: 0;
        width: 100%; /* 幅を画面全体に広げる */
        height: 100%; /* 高さを画面全体に */
        padding: 20px;
        border-radius: 0; /* 角を丸めない */
        box-shadow: none;
        z-index: 10000; /* 最前面に表示 */
        overflow-y: auto; /* 縦スクロールを可能に */
    }

    .custom-calendar .calendar-header {
        padding: 15px;
        font-size: 16px;
    }

    .custom-calendar .calendar-header button {
        width: 36px;
        height: 36px;
    }

    .custom-calendar .calendar-days div {
        padding: 8px;
        font-size: 14px; /* モバイルでは文字サイズを小さく */
    }
}

/* PC用スタイル（画面幅768px以上） */
@media (min-width: 769px) {
    .custom-calendar {
        position: absolute;
        top: 100%; /* フォームの下に表示 */
        left: 0;
        width: 300px; /* カレンダーの幅を固定 */
        max-width: 350px;
        height: auto; /* 必要に応じて高さを調整 */
        padding: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .custom-calendar .calendar-header {
        padding: 10px;
        font-size: 18px; /* ヘッダーの文字サイズを大きめに */
    }

    .custom-calendar .calendar-days div {
        padding: 10px 0;
        font-size: 14px; /* PC用の適切な文字サイズ */
    }
}

/*fight card形式*/
.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.city-card {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 800px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-decoration: none; /* リンクの下線を削除 */
  color: inherit; /* テキストの色を継承 */
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.city-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  background-color: #eaf2ff; /* ホバー時の背景をやや濃い青 */
}

.city-image {
  flex: 0 0 200px; /* 画像の幅 */
  max-width: 200px;
}

.city-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.city-info {
  flex: 1;
  padding: 16px;
}

.city-info p {
  margin: 4px 0;
  font-size: 14px;
}

.city-card:hover .city-info p {
  color: #0056b3; /* ホバー時に濃い青色に変更 */
}

@media (max-width: 768px) {
  .city-card {
    flex-direction: row; /* 横長を維持 */
    max-width: 100%;
  }

  .city-image {
    flex: 0 0 150px;
    max-width: 150px;
  }

  .city-info {
    padding: 12px;
  }

  .city-info p {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .city-card {
    flex-direction: row;
    max-width: 100%;
  }

  .city-image {
    flex: 0 0 100px;
    max-width: 100px;
  }

  .city-info {
    padding: 10px;
  }

  .city-info p {
    font-size: 10px;
  }
}







/* お気に入りリスト全体のスタイル */
.favorite-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 20px 0;
}

/* カードのスタイル */
.favorite-card {
    width: calc(33.333% - 20px); /* 3列のカード */
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.favorite-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

/* カード内のリンク */
.favorite-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* カードの画像 */
.favorite-card-image img,
.favorite-card-image-placeholder img {
    width: 100%;
    height: 200px; /* 固定の高さを設定 */
    object-fit: cover; /* 画像を領域にフィットさせる */
    display: block;
    border-bottom: 1px solid #ddd;
}


/* カードのコンテンツ */
.favorite-card-content {
    padding: 15px;
}

.favorite-card-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 10px;
    color: #333;
}

.favorite-card-excerpt {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .favorite-card {
        width: calc(50% - 20px); /* 2列のカード */
    }
}

@media (max-width: 480px) {
    .favorite-card {
        width: 100%; /* 1列のカード */
    }
}

/* カスタムログインフォームのスタイル */
.custom-login-form {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.custom-login-form h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.custom-login-form label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    color: #555;
    font-weight: bold;
}

.custom-login-form input[type="text"],
.custom-login-form input[type="password"] {
    width: 100%;
    padding: 10px 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

.custom-login-form input[type="text"]:focus,
.custom-login-form input[type="password"]:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 115, 170, 0.3);
}

.custom-login-form input[type="checkbox"] {
    margin-right: 10px;
}

.custom-login-form input[type="submit"] {
    width: 100%;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    background-color: #0073aa;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.custom-login-form input[type="submit"]:hover {
    background-color: #005177;
    transform: scale(1.02);
}

.custom-login-form .login-error {
    color: #d32f2f;
    font-size: 14px;
    margin-bottom: 15px;
    border: 1px solid #f44336;
    background-color: #ffebee;
    padding: 10px;
    border-radius: 4px;
}

/* モバイル対応 */
@media screen and (max-width: 480px) {
    .custom-login-form {
        padding: 15px;
    }

    .custom-login-form h2 {
        font-size: 20px;
    }

    .custom-login-form input[type="text"],
    .custom-login-form input[type="password"],
    .custom-login-form input[type="submit"] {
        font-size: 14px;
    }
}


/* パスワードリセットフォームのスタイリング */
.password-reset-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#password-reset-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

.form-group input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.submit-button {
    background-color: #0073e6;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #005bb5;
}

.error-message {
    color: red;
    font-weight: bold;
    margin-top: 10px;
}

.success-message {
    color: green;
    font-weight: bold;
    margin-top: 10px;
}



.custom-flights-container {
  font-family: Arial, sans-serif;
  margin: 20px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #f9f9f9;
}

.custom-flights-container .custom-title {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}

.custom-flights-container .custom-tabs {
  display: flex;
  border-bottom: 2px solid #007bff;
  margin-bottom: 10px;
}

.custom-flights-container .custom-tab {
  padding: 10px 15px;
  cursor: pointer;
  font-size: 16px;
}

.custom-flights-container .custom-tab.active {
  font-weight: bold;
  color: #007bff;
  
}

.custom-flights-container .custom-content {
  display: flex;
  gap: 20px;
}

.custom-flights-container .custom-domestic-flights {
  width: 100%;
  max-height: 200px; /* 固定の高さを設定 */
  overflow-y: auto; /* 縦スクロールを有効化 */
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 5px;
  background-color: #fff;
}

.custom-flights-container .custom-domestic-flights ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.custom-flights-container .custom-domestic-flights ul li {
  margin: 5px 0;
}

.custom-flights-container .custom-domestic-flights ul li a {
  color: #007bff;
  text-decoration: none;
}

.custom-flights-container .custom-domestic-flights ul li a:hover {
  text-decoration: underline;
}




/*menu*/
.menu-panel {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 350px;
}

.menu-item {
  display: flex;
  align-items: center;
  padding: 10px 0;
}

.menu-item a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: bold;
  margin-left: 10px;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.menu-item a:hover {
  color: #0073e6;
}

.menu-icon {
  width: 32px;
  height: 32px;
}

hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 10px 0;
}






/*menu panel*/
.highlight-item {
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 5px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}



.highlight-item:hover {
  background-color: #f0f8ff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
  width: 32px;
  height: 32px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-icon img {
  width: 24px;
  height: 24px;
}

.highlight-text {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

.weather-card-horizontal {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 10px 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 10px auto;
    font-family: Arial, sans-serif;
    position: relative; /* footerを絶対位置で配置するため */
}

.weather-icon-temp {
    display: flex;
    align-items: center;
    gap: 10px;
}

.weather-icon {
    width: 50px;
    height: 50px;
}

.current-temp {
    font-size: 24px;
    color: #007acc;
    font-weight: bold;
}

.weather-details {
    margin-left: 15px;
    flex-grow: 1; /* 右下に配置するためにスペースを確保 */
}

.location-name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.location-details {
    font-size: 12px;
    color: #666;
}

.condition {
    font-size: 14px;
    color: #555;
    margin: 5px 0;
}

.weather-footer {
    position: absolute;
    right: 15px;
    bottom: 10px;
    text-align: right;
    font-size: 12px;
    color: #777;
}

.feels-like {
    font-size: 12px;
    color: #777;
}

.update-time {
    font-size: 10px;
    color: #999;
    margin-top: 4px;
}






/***************************************************
 * 1. 全体の枠 (myranking-rakuten)
 ***************************************************/
.myranking-rakuten {
  background: #f8f8f8;
  padding: 1rem;
  margin: 1rem 0;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.myranking-rakuten h2 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: #333;
}

/***************************************************
 * 2. 横スクロール用コンテナ (myranking-rakuten__cards)
 ***************************************************/
.myranking-rakuten__cards {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.myranking-rakuten__cards::-webkit-scrollbar {
  height: 8px;
  background: #eee;
}
.myranking-rakuten__cards::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

/***************************************************
 * 3. カード全体 (myranking-card)
 ***************************************************/
.myranking-card {
  flex: 0 0 220px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 0.8rem;
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  
  text-decoration: none; /* リンクの下線除去 */
  color: inherit;
  transition: background-color 0.2s;
}

.myranking-card:hover {
  background-color: #fafafa;
  cursor: pointer;
}

/***************************************************
 * 4. ホテル名＋順位 (myranking-card__header)
 ***************************************************/
.myranking-card__header {
  /* 固定高さ → ホテル名が長くても画像がずれない */
  height: 120px;        /* 適宜調整 */
  overflow: hidden;    /* 長い場合は切り捨て */
}

.myranking-rank {
  margin: 0;
  color: #d00;
  font-weight: bold;
  font-size: 0.95rem;
}

.myranking-name {
  margin: 0;
  font-weight: bold;
  font-size: 0.8rem;
  color: #333;
}

/***************************************************
 * 5. 画像 (myranking-thumbnail, 16:9固定)
 ***************************************************/
.myranking-thumbnail {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 => 9/16=0.5625 */
  overflow: hidden;
  margin: 0.5rem 0;
}

.myranking-thumbnail img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid #ddd;
}

/***************************************************
 * 6. レビュー評価 (myranking-review)
 ***************************************************/
.myranking-review {
  display: inline-block;
  margin: 0.5rem 0;
  color: #fff;
  background-color: #f39c12;
  padding: 0.3em 0.6em;
  font-weight: bold;
  border-radius: 999px;   /* ピル型 */
  font-size: 0.9rem;
}
.myranking-review::before {
  content: "★ ";
  color: #fff;
}

/***************************************************
 * 7. ユーザーコメント (myranking-user-review)
 ***************************************************/
.myranking-user-review {
  font-size: 0.85rem;
  color: #444;
  line-height: 1.5;
  margin: 0.5rem 0;
  background: #f0f0f0;
  padding: 0.5rem;
  border-radius: 4px;
}

/***************************************************
 * 8. カテゴリ (myranking-middle-class)
 ***************************************************/
.myranking-middle-class {
  color: #888;
  font-size: 0.85rem;
  margin: 0.3rem 0;
}

/***************************************************
 * 9. レスポンシブ (max-width: 480px)
 ***************************************************/
@media (max-width: 480px) {
  .myranking-card {
    flex: 0 0 180px; /* スマホ時は幅を狭めて横スクロール */
  }
}

/* フォーム全体のスタイル */
form {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #ffffff; /* 背景色 */
    border: 1px solid #ddd; /* 境界線 */
    border-radius: 10px; /* 角を丸く */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* 軽い影を追加 */
    font-family: Arial, sans-serif; /* フォントの統一 */
}

/* ラベルのスタイル */
form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
    font-size: 14px;
}

/* 入力フィールドとテキストエリア */
form input[type="text"],
form input[type="email"],
form textarea,
form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* フォーカス時のスタイル */
form input[type="text"]:focus,
form input[type="email"]:focus,
form textarea:focus,
form select:focus {
    border-color: #0073aa; /* フォーカス時のボーダー色 */
    outline: none;
    box-shadow: 0 0 5px rgba(0, 115, 170, 0.5); /* フォーカス時の影 */
}

/* テキストエリアのサイズ調整 */
form textarea {
    resize: vertical;
    min-height: 120px;
}

/* プルダウンメニュー（セレクトボックス） */
form select {
    appearance: none; /* デフォルトのスタイルを解除 */
    background-color: #fff;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path fill="black" d="M7 10l5 5 5-5z"/></svg>'); 
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    padding-right: 30px; /* アイコンが重ならないように */
    cursor: pointer;
}

/* ボタン */
form button {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #0073aa;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* ボタンのホバー時 */
form button:hover {
    background-color: #005177;
}

/* ボタンのアクティブ時（クリック時） */
form button:active {
    background-color: #003d5c;
}

/* --- レスポンシブデザイン（タブレット・スマホ対応） --- */
@media (max-width: 768px) {
    form {
        padding: 15px;
        border-radius: 8px;
    }

    form label {
        font-size: 13px;
    }

    form input[type="text"],
    form input[type="email"],
    form textarea,
    form select {
        font-size: 13px;
        padding: 8px;
    }

    form button {
        font-size: 14px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    form {
        padding: 10px;
        box-shadow: none;
    }

    form button {
        font-size: 13px;
    }
}

body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    padding: 20px;
}

.resource-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: #fff;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease-in-out;
}

.resource-link:hover {
    background-color: #f0f0f0;
}

.resource-content {
    margin-bottom: 12px;
}

.resource-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    display: block;
}

.resource-description {
    font-size: 14px;
    color: #666;
    margin-top: 4px;
}

.resource-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: bold;
    color: #0073e6;
}

.arrow-icon {
    width: 28px;
    height: 32px;
    transition: transform 0.3s ease-in-out;
}

.resource-link:hover .arrow-icon {
    transform: translateX(5px);
}



/*****************************
** ■シェアボタン/フォローボタンの【Twitter】を【X】に変更（画像適用版）
*****************************/
.socialList__link.icon-twitter {
    background: url('https://www.saw-travel.com/wp-content/uploads/2025/01/square-x-twitter-brands-solid.png') no-repeat center center;
    background-size: contain; /* 画像をボタン内に収める */
    border-bottom: solid 1px rgba(255, 255, 255, 0.6);
    width: 33px; /* ボタンの幅を調整 */
    height: 33px; /* ボタンの高さを調整 */
    display: inline-block;
    text-indent: -9999px; /* テキストを非表示にする */
    overflow: hidden; /* テキストがはみ出ないように */
}

.socialList__link.icon-twitter:hover {
    background-color: #000; /* ホバー時の背景色を追加 */
    border-bottom-color: #fff; /* ホバー時のボーダーカラー変更 */
}

.widgetProfile__snsLink.icon-twitter {
    color: #000; /* フォローボタンのカラー変更 */
    background: url('https://www.saw-travel.com/wp-content/uploads/2025/01/square-x-twitter-brands-solid.png') no-repeat center center;
    background-size: contain;
    width: 40px; /* 必要に応じてサイズを調整 */
    height: 40px;
    display: inline-block;
    text-indent: -9999px;
    overflow: hidden;
}

.widgetProfile__snsLink.icon-twitter:hover {
    background-color: #000; /* フォローボタンのホバー時の背景色変更 */
}







/*****************************
** ■リンク要素にXアイコンを適用
*****************************/
.profile__link.icon-twitter {
    background: url('https://www.saw-travel.com/wp-content/uploads/2025/01/square-x-twitter-brands-solid.png') no-repeat center center;
    background-size: contain; /* 画像をボタン内に収める */
    width: 33px; /* ボタンの幅 */
    height: 33px; /* ボタンの高さ */
    display: inline-block;
    text-indent: -9999px; /* テキストを非表示 */
    overflow: hidden; /* テキストがはみ出ないように */
}

.profile__link.icon-twitter:hover {
    opacity: 0.8; /* ホバー時のエフェクト */
    background-color: #f0f0f0; /* 必要ならホバー時の背景色を設定 */
    
}



/*****************************
** ■リンク要素にXアイコンを適用
*****************************/
.profile__link.icon-twitter {
    background: url('https://www.saw-travel.com/wp-content/uploads/2025/01/square-x-twitter-brands-solid.png') no-repeat center center;
    background-size: contain; /* 画像をボタン内に収める */
    width: 33px; /* ボタンの幅 */
    height: 33px; /* ボタンの高さ */
    display: inline-block;
    text-indent: -9999px; /* テキストを非表示 */
    overflow: hidden; /* テキストがはみ出ないように */
}

.profile__link.icon-twitter:hover {
    opacity: 0.8; /* ホバー時のエフェクト */
    background-color: #f0f0f0; /* 必要ならホバー時の背景色を設定 */
    
}
