@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
*/

.cast-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start; /* 左寄せに変更 */
}

    .cast-item {
        text-align: center; /* 真ん中 */
        width: 200px; /* 要素の幅を指定 */
        margin: 10px;
        display: inline-block; /* または display: inline-flex; */
    }

    .cast-item img {
        width: 100%; /* 画像の幅を100%にして親要素にフィットさせる */
        height: auto; /* 高さは自動調整 */
    }

/* リストアイテムからドットを削除するスタイル */
ul, ol {
    list-style: none; /* リストアイテムのマーカー（ドット）を削除 */
    padding: 0;
    margin: 0;
}
/* 通常の画面幅用のスタイル */
li::marker {
    content: ""; /* ドット（または番号）を非表示にする */
}

/* スマートフォン用のスタイル（例えば、画面幅が768px以下の場合） */
@media only screen and (max-width: 768px) {
    li::marker {
        content: ""; /* ドット（または番号）を非表示にする */
    }
}
/* リストアイテムのマーカーを非表示にする */
li {
    list-style-type: none;
}

.tag-box {
    border: 2px solid black;
    background-color: white;
    padding: 5px 10px;
    display: inline-block;
    margin: 5px;
    border-radius: 5px; /* 角を丸める値を指定（ピクセル単位で指定） */
    text-decoration: none; /* テキストの下線を削除 */
    text-align: left; /* 左寄せを追加 */
}


.cell-centered {
  display: flex;
  justify-content: center;
  align-items: center;
}

/************************************
** お問い合わせフォームの入力
************************************/


/* フォームとテーブルのスタイリング */
.form-container table,
.form-container form {
    max-width: 100%; /* コンテナの幅に対して最大幅を100%に設定 */
}


.form-field-slug {
    background-color: #f2f2f2; /* グレーアウトの背景色 */
    color: #666; /* グレーアウトのテキスト色 */
	pointer-events: none; /* 入力を無効にする */
}

.form-label {
    background-color: #e0eaf1; /* 薄い青背景色 */
    padding: 10px; /* 必要に応じて余白を追加 */
}

.form-field {
    background-color: #ffffff; /* 白背景色 */
    padding: 10px; /* 必要に応じて余白を追加 */
}

