@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%;
  }
}

/* =========================================
   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::before {
  content: "FAX";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3em;
  height: 1.45em;
  border: 1px solid currentColor;
  border-radius: 2px;
  font-size: 0.65em;
  font-weight: 700;
  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;
}
