/* Reset basic link styles */
:root {
    --color-brown: #6d3c23;
    --color-brown-tr: #6d3c2370;
    --color-yellow: #FFDA49; 
    --color-background-white: #FFFDF7;
    --color-background-yellow: #fff8e1;
    --color-black: #333333;
    --color-gray: #999999;
    --color-light-gray: #f2f2f2;
    --color-blue: #007bff;

    --color-red: #d52424;
    --color-green: #28a745;
    --color-asuka-yellow: #ffcb00;
    --color-asuka-yellow-tr: #ffcb0070;
    --color-asuka-blue: #0092e2;
    --color-link-blue: #178AC8;

}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    display: block; 
    box-sizing: border-box;
    font-weight: 400;
    background-color: var(--color-background-white);
    font-family: 'M PLUS Rounded 1c', sans-serif;
    /* font-family: 'Noto Sans JP', 'Yu Gothic', 'Meiryo', sans-serif; */
    color: var(--color-black);
}


/* Windowsの場合だけNoto Sans JPで上書き */
.windows-os {
    font-family: 'Noto Sans JP', 'Yu Gothic', 'Meiryo', sans-serif;
}

h1, h2, h3, h4, h5 {
	font-family: 'M PLUS Rounded 1c', 'Noto Sans JP', 'Yu Gothic', 'Meiryo', sans-serif;
    color: var(--color-black);
}

h3.wp-block-heading,
h4.wp-block-heading,
h5.wp-block-heading {
    margin-top: 2em;
}

a {
    text-decoration: none;
    color: inherit; 
}

a.link {
    color: var(--color-blue);
    text-decoration: underline;
}

.post-content a{
    color: var(--color-link-blue);
    text-decoration: underline;
}

.mobile-br {
    display: none;
}

ul ul {
    margin: 0;
    padding-left: 1.5em;
}

@media (max-width: 1080px) {
    .mobile-br {
        display: block;
    }
}

:root {
    --pc: 1472 * 100vw;
    --sp: 375 * 100vw;
}
@keyframes fade {
    0% { opacity: 0;  }
    100% { opacity: 1; }
}

@media (max-width: 1080px) {
  [id] {
    scroll-margin-top: 65px;
  }
}

.until-400px{
    display: none;
}
@media screen and (max-width: 400px) {
    .until-400px{
        display: block;
    }
}
.until-370px{
    display: none;
}
@media screen and (max-width: 370px) {
    .until-370px{
        display: block;
    }
}
.until-500px{
    display: none;
}
@media screen and (max-width: 500px) {
    .until-500px{
        display: block;
    }
}
.until-620px{
    display: none;
}
@media screen and (max-width: 620px) {
    .until-620px{
        display: block;
    }
}
.until-380px{
    display: none;
}
@media screen and (max-width: 380px) {
    .until-380px{
        display: block;
    }
}
.until-370px{
    display: none;
}
@media screen and (max-width: 370px) {
    .until-370px{
        display: block;
    }
}



/* アニメーション */
/* アニメーションの初期状態（隠れている状態） */
.fade-in-up {
  opacity: 0; /* 透明にする */
  transform: translateY(30px); /* 30px下にずらす */
  transition: opacity 0.8s, transform 0.8s; /* 0.8秒かけて変化させる */
  transition-timing-function: ease-out; /* 動きの緩急をつける（最後が緩やか）*/
}
.fade-in-right {
  opacity: 0; /* 透明にする */
  transform: translateX(-30px); /* 30px下にずらす */
  transition: opacity 0.8s, transform 0.8s; /* 0.8秒かけて変化させる */
  transition-timing-function: ease-out; /* 動きの緩急をつける（最後が緩やか）*/
}
.fade-in-left {
  opacity: 0; /* 透明にする */
  transform: translateX(30px); /* 30px下にずらす */
  transition: opacity 0.8s, transform 0.8s; /* 0.8秒かけて変化させる */
  transition-timing-function: ease-out; /* 動きの緩急をつける（最後が緩やか）*/
}

/* アニメーションの最終状態（表示された状態） */
.fade-in-up.is-visible {
  opacity: 1; /* 不透明にする */
  transform: translateY(0); /* 元の位置に戻す */
}
.fade-in-right.is-visible, .fade-in-left.is-visible {
  opacity: 1; /* 不透明にする */
  transform: translateX(0); /* 元の位置に戻す */
}


/* =========================================================================
   ローディング画面
========================================================================= */

/* ローディング画面全体（白い背景） */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  /* 背景のフェードアウト用アニメーション */
  transition: opacity 0.8s ease-in;
}

/* ★NEW★ 背景をフェードアウトさせるためのクラス */
#loading-screen.is-hidden {
  opacity: 0;
  pointer-events: none; /* クリックを透過させる */
}

/* 画像とテキストのコンテナ */
.loading-content {
  text-align: center;
  /* 初期状態は透明 */
  opacity: 0; 
  /* 表示時と非表示時のアニメーションを設定 */
  transition: opacity 0.8s ease-out, /* 表示時のフェードイン */
              transform 0.8s ease-in; /* 非表示時のスライドアウト */
}

/* コンテンツをふわっと表示させるためのクラス */
.loading-content.is-visible {
    opacity: 1;
}

/* コンテンツをスライドアウトさせる時のスタイル */
.loading-content.is-sliding-out {
  opacity: 0;
  transform: translateX(100px);
}

/* 画像のスタイル */
.loading-content img {
  width: 150px;
  height: auto;
  margin-bottom: 16px;
}

/* テキストのスタイル */
.loading-text {
  color: var(--color-brown);
  font-size: 2rem;
  line-height: 2.3rem;
  margin-top: 1.5rem;
}


/* --------------------------------------------
----------　フォーム　--------------------------
------------------------------------------- */

form h3 {
    margin: 3rem 0 1rem 0;
    padding: 0;
    font-weight: bold;
    font-size: 1.5rem;
}

form h3::before {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    background-color: var(--color-asuka-blue);
    margin-bottom: 1rem;
    border-radius: 999px;
}

form h4 {
    margin: 2rem 0 1rem 0;
    padding: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

form h4::before {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--color-asuka-yellow);
    margin-bottom: 1rem;
    border-radius: 999px;
}

/* --- ▼▼▼ 修正 ▼▼▼ 登録内容選択カスタムボタンのCSS --- */
.form-purpose-selector {
    margin-top: 30px;
    margin-bottom: 40px;
}
.form-purpose-selector .section-title {
    margin: 0 0 15px 0;
    display: block;
    font-weight: bold;
}
.radio-button-group input[type="radio"] {
    /* 元のラジオボタンは非表示にする */
    display: none;
}
.radio-button-group .radio-button-label {
    display: block;
    text-align: center;
    padding: 16px;
    border: 1px solid #999;
    border-radius: 6px;
    cursor: pointer;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.2s, border-color 0.2s;
    /* 非選択状態のスタイル */
    background-color: #FFFFFF;
    color: #333333;
}
/* 選択されているラジオボタンの、次にあるラベル（ボタン）のスタイル */
.radio-button-group input[type="radio"]:checked + .radio-button-label {
    background-color: var(--color-asuka-yellow); /* style.cssで定義した変数を利用 */
    border-color: var(--color-asuka-yellow);
    color: #333333;
    font-weight: bold;
}
/* --- ▲▲▲ 修正 ▲▲▲ --- */

/* 既存のレスポンシブCSSに追記 */
@media screen and (max-width: 1080px) {
    .radio-button-group .radio-button-label {
        padding: 4vw;
        font-size: clamp(14px, 16px, 9999px);
    }
}



.front-page { background-color: #FFFDF7; }
.content { padding: 80px 0; max-width: 1080px; margin: auto; }
.content > h1 { text-align: center; font-weight: 500; font-size: 24px; margin-bottom: 60px; }
.container { display: flex; gap: 50px; }
.form-list-item { margin-bottom: 15px; background-color: #FFFFFF; border: 1px solid #222222; border-radius: 6px; width: 100%; min-height: 44px; display: flex; align-items: center; justify-content: center; text-align: center; padding: 9px 0; cursor: pointer; }
.bg-y { background-color: #FFCB00; }
.form-list { width: 30%; }
.form-div { width: 70%; }
.form-list-details { display: flex; gap: 15px; }
button { color: #333; }
button[type="submit"] { font-size: 18px; }

/* --- サンクスページ用のスタイル --- */
#thank-you-screen { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: #FFFFFF; display: flex; justify-content: center; align-items: center; z-index: 9990; text-align: center; padding: 20px; box-sizing: border-box; }
.thank-you-content { max-width: 600px; }
.thank-you-content img { max-width: 120px; margin-bottom: 30px; }
.thank-you-content h2 { font-size: 22px; font-weight: bold; margin-bottom: 20px; line-height: 1.6; }
.thank-you-content p { font-size: 16px; line-height: 1.8; margin-bottom: 20px; }
.thank-you-contact { font-size: 14px; }
.thank-you-contact a { color: #178AC8; text-decoration: underline; }
.thank-you-buttons { margin-top: 40px; display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.thank-you-buttons button { padding: 12px 24px; font-size: 16px; cursor: pointer; border-radius: 6px; border: 1px solid #222; min-width: 200px; }
#return-home-btn { background-color: #FFCB00; border-color: #FFCB00; }
#fill-again-btn { background-color: #FFFFFF; }
.sp-only { display: none; }
.submitted-email-info { margin-top: 25px; padding: 15px; background-color: #f7f7f7; border-radius: 6px; font-size: 15px; }
.submitted-email-info strong { font-weight: bold; word-break: break-all; }

@media screen and (max-width: 1080px) {
    .content { padding: 5vw; }
    .content > h1 { margin: 0 0 12vw 0; font-size: clamp(14px, 18px, 9999px); }
    .container { flex-direction: column; gap: 0; }
    .form-list, .form-div { width: 100%; }
    .form-list-item { margin-bottom: 4vw; min-height: 10vw; padding: 2.2vw; font-size: clamp(14px, 16px, 9999px); }
    .form-list-details { justify-content: space-between; font-size: clamp(14px, 16px, 9999px); }
    button[type="submit"] { font-size: clamp(14px, 18px, 9999px); background-color: #FFCB00; }
    .thank-you-content h2 { font-size: 18px; }
    .thank-you-content p { font-size: 14px; }
    .thank-you-contact { font-size: 13px; }
    .sp-only { display: inline; }
}


/* 既存のフォームスタイル */
form { display: flex; flex-direction: column; font-size: 16px; }
label { font-weight: 400; display: block; margin: 20px 0 5px 0; }
input[type="text"], input[type="tel"], input[type="email"], input[type="date"], select, textarea {
    display: block; width: 100%; padding: 18px 20px; border: 1px solid #999999; border-radius: 6px;
}
textarea { resize: vertical; }
.description { display: block; font-size: 14px; color: #666; margin-top: 10px; }
.description-top { display: block; font-size: 14px; color: #333333; margin-top: 10px; }
button { width: 50%; font-weight: 700; padding: 10px 20px; background-color: #FFFFFF; border-radius: 6px; cursor: pointer; border: 1px solid #FFCB00; margin: 20px 0 0 0; font-size: 16px; }
button:hover { background-color: #FFCB00; }
button[type="submit"] { background-color: #FFCB00; margin-top: 40px; }
.required-text { display: inline-block; background-color: #FFC2C2; border-radius: 100px; font-weight: 400; font-size: 10px; color: #D52424; padding: 1px 5px; margin-left: 6px; }
.hidden { display: none; }
#toggle-description { display: inline-block; padding: 10px; background-color: #64B4E6; color: #fff; border: none; border-radius: 5px; cursor: pointer; margin-bottom: 10px; }
#toggle-description:hover { background-color: #4a9bbd; }
.close-to-top-label { margin: 4px 0 5px 0; }
.name-row, .kana-row { display: flex; flex-direction: column; gap: 0; }
.field-group { flex: 1; }
.error-border { border: 2px solid #E25700 !important; }
label.error-border, .radio-button-group.error-border {
    outline: 2px solid #E25700; border-radius: 6px; padding: 8px;
}
/* カスタムラジオボタンのスタイル */
.form-purpose-selector { margin: 30px 0 40px 0; }
.form-purpose-selector .section-title { margin: 0 0 15px 0; display: block; font-weight: bold; }
.radio-button-group input[type="radio"] { display: none; }
.radio-button-group .radio-button-label {
    display: block; text-align: center; padding: 16px; border: 1px solid #999; border-radius: 6px; cursor: pointer; margin-bottom: 15px; font-size: 16px; font-weight: 500; transition: background-color 0.2s, border-color 0.2s;
    background-color: #FFFFFF; color: #333333;
}
.radio-button-group input[type="radio"]:checked + .radio-button-label {
    background-color: var(--color-asuka-yellow, #FFCB00); border-color: var(--color-asuka-yellow, #FFCB00); font-weight: bold;
}
@media screen and (min-width: 1080px) {
    .name-row, .kana-row { flex-direction: row; gap: 30px; }
}
@media screen and (max-width: 1080px) {
    label { margin: 4vw 0 1vw 0; }
    input[type="text"], input[type="tel"], input[type="email"], input[type="date"], select, textarea { padding: 4vw; }
    .description { margin-top: 3vw; }
    button { width: 100%; padding: 3vw; }
    .required-text { padding: 0.3vw 1vw; margin-left: 2vw; }
    .description-top { margin-top: 3vw; }
}




form {
    display: flex;
    flex-direction: column;
    font-size: 16px;
}

label {
    font-weight: 400;
    display: block;
    margin: 20px 0 5px 0;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"],
select,
textarea {
    display: block;
    width: 100%;
    padding: 18px 20px;
    border: 1px solid #999999;
    border-radius: 6px;
}

textarea {
    resize: vertical;
}

.description {
    display: block;
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}
.description-top {
    display: block;
    font-size: 14px;
    color: #333333;
    margin-top: 10px;
}

button {
    width: 50%;
    font-weight: 700;
    padding: 10px 20px;
    background-color: #FFFFFF;
    border-radius: 6px;
    cursor: pointer;
    border: 1px solid #FFCB00;
    margin: 20px 0 0 0;
	font-size: 16px;
}

button:hover {
    background-color: #FFCB00;
}

.required-text{
    background-color: #FFC2C2;
    border-radius: 100px;
    font-weight: 400;
    font-size: 10px;
    color: #D52424;
    padding: 1px 5px;
    margin-left: 6px;
}

.radio-options {
    display: flex;
    gap: 10px;
    align-items: center;
}

.highlight {
    background-color: #e0f7fa;
    transition: background-color 0.3s ease;
}

/* Media query for screens wider than 1080px */
@media screen and (min-width: 1080px) {
    .name-row,
    .kana-row {
        display: flex;
        gap: 30px;
    }

    /* Container for label and input to stay in a column */
    .field-group {
        display: flex;
        flex-direction: column;
        flex: 1;
    }
}

@media screen and (max-width: 1080px) {
    form {
        font-size: clamp(14px, 16px, 9999px);
    }
    label {
        margin: 4vw 0 1vw 0;
        font-size: clamp(14px, 16px, 9999px);
    }
    input[type="text"],
    input[type="tel"],
    input[type="email"],
    input[type="date"],
    select,
    textarea {
        font-size: clamp(14px, 16px, 9999px);
        padding: 4vw;
    }
    .description {
        font-size: clamp(14px, 12px, 9999px);
        margin-top: 3vw;
    }
    button {
        width: 100%;
        padding: 3vw;
    }
    .required-text{
        font-size: clamp(14px, 8.8px, 9999px);
        padding: 0.3vw 1vw;
        margin-left: 2vw;
    }
    .description-top{
        font-size: clamp(14px, 16px, 9999px);
        margin-top: 3vw;
    }
}

/* For text/textarea/select inputs */
input.error-border:not([type="radio"]):not([type="checkbox"]),
textarea.error-border,
select.error-border {
    border: 2px solid #E25700 !important;
    border-radius: 6px;
}

/* For radio groups */
.radio-options.error-border {
    outline: 2px solid #E25700;
    border-radius: 6px;
    padding: 8px;
}

/* Prevent double border on radio inputs */
.radio-options.error-border input[type="radio"] {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

label.error-border {
    border: 2px solid #E25700 !important;
    border-radius: 6px;
    padding: 8px;
}





form {
    display: flex;
    flex-direction: column;
    font-size: 16px;
}

label {
    font-weight: 400;
    display: block;
    margin: 20px 0 5px 0;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"],
select,
textarea {
    display: block;
    width: 100%;
    padding: 18px 20px;
    border: 1px solid #999999;
    border-radius: 6px;
}

textarea {
    resize: vertical;
}

.description {
    display: block;
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}
.description-top {
    display: block;
    font-size: 14px;
    color: #333333;
    margin-top: 10px;
}

button {
    width: 50%;
    font-weight: 700;
    padding: 10px 20px;
    background-color: #FFFFFF;
    border-radius: 6px;
    cursor: pointer;
    border: 1px solid #FFCB00;
    margin: 20px 0 0 0;
	font-size: 16px;
}

button:hover {
    background-color: #FFCB00;
}

.required-text{
    background-color: #FFC2C2;
    border-radius: 100px;
    font-weight: 400;
    font-size: 10px;
    color: #D52424;
    padding: 1px 5px;
    margin-left: 6px;
}

/* Hide the description by default */
.hidden {
    display: none;
}

/* Toggle button style */
#toggle-description {
    display: inline-block;
    padding: 10px;
    background-color: #64B4E6;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 10px;
}

#toggle-description:hover {
    background-color: #4a9bbd;
}

.close-to-top-label{
    margin: 4px 0 5px 0;
}

/* Media query for screens wider than 1080px */
@media screen and (min-width: 1080px) {
    .name-row,
    .kana-row {
        display: flex;
        gap: 30px;
    }

    /* Container for label and input to stay in a column */
    .field-group {
        display: flex;
        flex-direction: column;
        flex: 1;
    }
}

@media screen and (max-width: 1080px) {
    form {
        font-size: clamp(14px, 16px, 9999px);
    }
    label {
        margin: 4vw 0 1vw 0;
        font-size: clamp(14px, 16px, 9999px);
    }
    input[type="text"],
    input[type="tel"],
    input[type="email"],
    input[type="date"],
    select,
    textarea {
        font-size: clamp(14px, 16px, 9999px);
        padding: 4vw;
    }
    .description {
        font-size: clamp(14px, 12px, 9999px);
        margin-top: 3vw;
    }
    button {
        width: 100%;
        padding: 3vw;
    }
    .required-text{
        font-size: clamp(14px, 8.8px, 9999px);
        padding: 0.3vw 1vw;
        margin-left: 2vw;
    }
    .description-top{
        font-size: clamp(14px, 16px, 9999px);
        margin-top: 3vw;
    }
    #toggle-description {
        display: inline-block; /* Show toggle button on mobile */
    }
}

/* For text/textarea/select inputs */
input.error-border:not([type="radio"]):not([type="checkbox"]),
textarea.error-border,
select.error-border {
    border: 2px solid #E25700 !important;
    border-radius: 6px;
}

/* For radio groups */
.radio-options.error-border {
    outline: 2px solid #E25700;
    border-radius: 6px;
    padding: 8px;
}

/* Prevent double border on radio inputs */
.radio-options.error-border input[type="radio"] {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

label.error-border {
    border: 2px solid #E25700 !important;
    border-radius: 6px;
    padding: 8px;
    width: fit-content;
}






form {
    display: flex;
    flex-direction: column;
    font-size: 16px;
}

label {
    font-weight: 400;
    display: block;
    margin: 20px 0 5px 0;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"],
input[type="number"],
select,
textarea {
    display: block;
    width: 100%;
    padding: 18px 20px;
    border: 1px solid #999999;
    border-radius: 6px;
}

textarea {
    resize: vertical;
}

.description {
    display: block;
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}
.description-top {
    display: block;
    font-size: 14px;
    color: #333333;
    margin-top: 10px;
}

button {
    width: 50%;
    font-weight: 700;
    padding: 10px 20px;
    background-color: #FFFFFF;
    border-radius: 6px;
    cursor: pointer;
    border: 1px solid #FFCB00;
    margin: 20px 0 0 0;
	font-size: 16px;
}

button:hover {
    background-color: #FFCB00;
}

.required-text{
    background-color: #FFC2C2;
    border-radius: 100px;
    font-weight: 400;
    font-size: 10px;
    color: #D52424;
    padding: 1px 5px;
    margin-left: 6px;
}

.highlight {
    background-color: #e0f7fa;
    transition: background-color 0.3s ease;
}

/* Media query for screens wider than 1080px */
@media screen and (min-width: 1080px) {
    .name-row,
    .kana-row {
        display: flex;
        gap: 30px;
    }

    /* Container for label and input to stay in a column */
    .field-group {
        display: flex;
        flex-direction: column;
        flex: 1;
    }
}

@media screen and (max-width: 1080px) {
    form {
        font-size: clamp(14px, 16px, 9999px);
    }
    label {
        margin: 4vw 0 1vw 0;
        font-size: clamp(14px, 16px, 9999px);
    }
    input[type="text"],
    input[type="tel"],
    input[type="email"],
    input[type="date"],
    select,
    textarea {
        font-size: clamp(14px, 16px, 9999px);
        padding: 4vw;
    }
    .description {
        font-size: clamp(14px, 12px, 9999px);
        margin-top: 3vw;
    }
    button {
        width: 100%;
        padding: 3vw;
    }
    .required-text{
        font-size: clamp(14px, 8.8px, 9999px);
        padding: 0.3vw 1vw;
        margin-left: 2vw;
    }
    .description-top{
        font-size: clamp(14px, 16px, 9999px);
        margin-top: 3vw;
    }
}

/* For text/textarea/select inputs */
input.error-border:not([type="radio"]):not([type="checkbox"]),
textarea.error-border,
select.error-border {
    border: 2px solid #E25700 !important;
    border-radius: 6px;
}

/* For radio groups */
.radio-options.error-border {
    outline: 2px solid #E25700;
    border-radius: 6px;
    padding: 8px;
}

/* Prevent double border on radio inputs */
.radio-options.error-border input[type="radio"] {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

label.error-border {
    border: 2px solid #E25700 !important;
    border-radius: 6px;
    padding: 8px;
}




/* Overlay styling */
#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

/* Spinner styling */
.spinner {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

/* Animation for spinner */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* =========================================================================
   iPhone/iOSでのselect要素の表示崩れを修正
========================================================================= */
select {
    /* iOSのデフォルトスタイルをリセット */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    
    /* 背景色を他の入力欄と合わせて白に指定 */
    background-color: #fff;

    color: var(--color-black);

    /* カスタムの矢印を追加 */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23333' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    background-size: 1em;
    
    /* 右側の矢印スペースを確保するため、padding-rightを少し増やす */
    padding-right: 40px;
}

/* レスポンシブ対応 */
@media screen and (max-width: 1080px) {
    select {
        background-position: right 4vw center;
        padding-right: 10vw;
    }
}




/* 共通 */
.red {
    color: var(--color-red);
}

.nb {
    display: inline-block;
}

.flex {
    display: flex;
} 

.flex-column ,.f-col{
    display: flex;
    flex-direction: column;
}

.flex-center ,.fc{
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-between ,.fb{
    display: flex;
    justify-content: space-between;
}

.flex-around ,.fa{
    display: flex;
    justify-content: space-around;
}

.flex-wrap ,.fw{
    display: flex;
    flex-wrap: wrap;
}

.flex-wrap-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.flex-wrap-between {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.flex-wrap-around {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.flex-column-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.flex-column-between {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.flex-column-around {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.flex-column-wrap {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.flex-column-wrap-center {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
}

.flex-column-wrap-between {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
}

.flex-column-wrap-around {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-around;
}

.flex-column-center-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.flex-column-between-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: wrap;
}

.flex-column-around-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    flex-wrap: wrap;
}

.flex-column-center-wrap-between {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.text-center ,.tc{
    text-align: center;
}
.text-left ,.tl{
    text-align: left;
}
.text-right ,.tr {
    text-align: right;
}
.text-justify ,.tj {
    text-align: justify;
}
.text-nowrap ,.tnw {
    white-space: nowrap;
}  
.text-wrap ,.tw {
    white-space: normal;
}
.gap-1 {
    gap: 1rem;
}

/* テキストを改行 */
.text-break ,.tb {
    word-break: break-all;
}