@charset "utf-8";



/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");


/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Murecho:wght@100..900&display=swap');


/*slick.cssの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css");


/*テンプレート専用cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("slide.css");
@import url("inview.css");


/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
:root {
    --primary-color: #f89faf;
    /*テンプレートのメインまたはアクセントカラー*/
    --primary-inverse-color: #fff;
    /*上のprimary-colorの対となる色*/

    --global-space: 7vw;
    /*主に余白の一括管理用。画面幅100%＝100vwです。*/
}


/*animation1のキーフレーム設定（開閉ブロックのアニメーションに使用）
---------------------------------------------------------------------------*/
@keyframes animation1 {
    0% {
        right: -100vw;
    }

    100% {
        right: 0px;
    }
}


/*opa1のキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/
@keyframes opa1 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


/*fadeInのキーフレーム設定（テキストのフェードインに使用）
---------------------------------------------------------------------------*/
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0.1) rotate(-30deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}


/*slide1のキーフレーム設定（footer背景に使用）
---------------------------------------------------------------------------*/
@keyframes slide1 {
    0% {
        background-position: center bottom;
    }

    50% {
        background-position: 50px bottom;
    }

    100% {
        background-position: center bottom;
    }
}


/*spin（回転するキーフレーム）
---------------------------------------------------------------------------*/
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/*全体の設定
---------------------------------------------------------------------------*/
body * {
    box-sizing: border-box;
}

html,
body {
    font-size: 13px;
    /*基準となるフォントサイズ。*/
}

/*画面幅900px以上の追加指定*/
@media screen and (min-width:900px) {

    html,
    body {
        font-size: 16px;
        /*基準となるフォントサイズ。*/
    }

}

/*追加指定ここまで*/


body {
    margin: 0;
    padding: 0;
    font-family: "Murecho", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", "Osaka", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;
    /*フォント種類（ゴシック）*/
    font-optical-sizing: auto;
    -webkit-text-size-adjust: none;
    background: #fff;
    /*背景色*/
    color: #777;
    /*文字色*/
    line-height: 2;
    /*行間*/
    overflow-x: hidden;
}

/*トップページのヘッダー下の背景画像*/
body.home {
    background: #fff url("../images/bg_header.png") no-repeat center top / 100%;
}

/*リセット他*/
figure {
    margin: 0;
}

dd {
    margin: 0;
}

nav ul {
    list-style: none;
}

nav,
ul,
li,
ol {
    margin: 0;
    padding: 0;
}

section li {
    margin-left: 1rem;
}

/*table全般の設定*/
table {
    border-collapse: collapse;
}

/*画像全般の設定*/
img {
    border: none;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

/*videoタグ*/
video {
    max-width: 100%;
}

/*iframeタグ*/
iframe {
    width: 100%;
}

/*他*/
input {
    font-size: 1rem;
}

section + section {
    margin-top: var(--global-space);
}


/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
    color: inherit;
    transition: 0.3s;
    /*hoverまでにかける時間。0.3秒。*/
    text-decoration: none;
    /*下線を消す*/
}

/*マウスオン時*/
a:hover {
    text-decoration: underline;
    opacity: 0.9;
    /*色を90%だけ出す*/
}


/*コンテナー（サイト全体を囲むブロック）
コンテンツ内容が少なくてもフッターが画面下に配置される為の指示なので変更不要。
---------------------------------------------------------------------------*/
#container {
    height: 100vh;
    display: flex;
    flex-direction: column;
}


/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
    flex: 1;
    padding: 0 var(--global-space);
    /*上下、左右へのコンテンツ内の余白。左右の余白についてはcss冒頭のglobal-spaceを読み込みます。*/
}


/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
    flex-shrink: 0;
    display: flex;
    /*flexボックスを使う指定*/
    align-items: center;
    justify-items: center;
    /*垂直揃えの指定。天地中央に配置されるように。*/
    justify-content: space-between;
    height: 60px;
    /*ヘッダーの高さ*/
    padding: 0 var(--global-space);
    /*上下、左右へのヘッダー内の余白。左右の余白についてはcss冒頭のglobal-spaceを読み込みます。*/
    font-optical-sizing: auto;
    font-weight: 700;
    /*文字の太さ。100〜900で指定ができます。*/
    background: var(--primary-color);
    /*背景色。css冒頭のprimary-colorを読み込みます。*/
    color: var(--primary-inverse-color);
    /*文字色。css冒頭のprimary-inverse-colorを読み込みます。*/
}

header h1 {
    display: flex;
}

header a {
    color: inherit;
}

/*ロゴ*/
.logo a {
    display: flex text-decoration: none;
}

.logo img {
    display: flex;
}

.logo {
    margin: 0;
    padding: 0;
    width: 400px;
    /*ロゴ画像の幅*/
    font-size: 1.5rem;
    /*ロゴをテキストで使用する場合の文字サイズ*/
    font-weight: 500;
    /*文字の太さ。100〜900で指定ができます。*/
    letter-spacing: 0.1em;
    /*文字間隔をほんの少しだけ広く*/
}

/*画面幅900px以上の追加指定*/
@media screen and (min-width:900px) {

    /*ヘッダーブロック*/
    header {
        height: 120px;
        /*ヘッダーの高さ*/
    }

    /*ロゴ*/
    .logo {
        width: 400px;
        /*ロゴ画像の幅*/
    }

}

/*追加設定ここまで*/


/*ヘッダー内メニュー
---------------------------------------------------------------------------*/
/*900px未満では非表示*/
header nav ul {
    display: none;
}

/*画面幅900px以上の追加指定*/
@media screen and (min-width:900px) {

    /*メニューブロック全体の設定*/
    header > nav > ul {
        display: flex;
        /*横並びにする*/
        font-size: 0.85rem;
        /*文字サイズ。85%。*/
    }

    /*メニュー１個あたりの設定*/
    header nav li a {
        display: block;
        text-decoration: none;
        padding: 0.5rem 1rem;
        /*メニュー内の余白。上下、左右へ。*/
    }

}

/*追加設定ここまで*/


/*ヘッダー内メニュー、開閉メニュー、共通のドロップダウン設定
---------------------------------------------------------------------------*/
header nav ul ul,
.small-screen #menubar ul ul {
    animation: opa1 0.5s 0.1s both;
    /*0.1秒待機後、0.5秒かけてフェードイン表示*/
}


/*ヘッダー内メニューのドロップダウン
---------------------------------------------------------------------------*/
/*ドロップダウンメニューブロック全体*/
header nav ul ul {
    position: absolute;
    z-index: 100;
}

/*メニュー１個あたりの設定*/
header nav ul ul a {
    background: var(--primary-inverse-color);
    /*背景色。css冒頭のprimary-inverse-colorを読み込みます。*/
    color: var(--primary-color);
    /*文字色。css冒頭のprimary-colorを読み込みます。*/
    padding: 0.3em 1em;
    /*上下、左右へのメニュー内の余白*/
    margin-top: 4px;
    /*上に空けるスペース。ドロップダウン同士の隙間です。*/
    border: 1px solid var(--primary-color);
    /*枠線の幅、線種、varは色の事でcss冒頭のprimary-colorを読み込みます。*/
}


/*メニューブロック初期設定
---------------------------------------------------------------------------*/
/*メニューをデフォルトで非表示*/
#menubar {
    display: none;
}

#menubar ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#menubar a {
    display: block;
    text-decoration: none;
}

/*上で非表示にしたメニューを表示させる為の設定*/
.large-screen #menubar {
    display: block;
}

.small-screen #menubar.display-block {
    display: block;
}

/*3本バーをデフォルトで非表示*/
#menubar_hdr.display-none {
    display: none;
}

/*ドロップダウンをデフォルトで非表示*/
.ddmenu_parent ul {
    display: none;
}

/*ddmenuを指定しているメニューに矢印アイコンをつける設定*/
a.ddmenu::before {
    font-family: "Font Awesome 6 Free";
    /*Font Awesomeを使う指示*/
    content: "\f078";
    /*使いたいアイコン名（Font Awesome）をここで指定*/
    font-weight: bold;
    /*この手の設定がないとアイコンが出ない場合があります*/
    margin-right: 0.5em;
    /*アイコンとテキストとの間に空けるスペース*/
}


/*開閉メニュー
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
.small-screen #menubar.display-block {
    position: fixed;
    overflow: auto;
    z-index: 100;
    right: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    padding: 90px 10vw 50px;
    /*ブロック内の余白。上、左右、下への順番。*/
    background: var(--primary-color);
    /*背景色。css冒頭のprimary-colorを読み込みます。*/
    color: var(--primary-inverse-color);
    /*文字色。css冒頭のprimary-inverse-colorを読み込みます。*/
    animation: animation1 0.2s both;
    /*animation1を実行する。0.2sは0.2秒の事。*/
}

/*子メニューの設定*/
.small-screen #menubar ul ul {
    margin: 2rem;
    /*外側に空けるスペース。２文字分。*/
}

/*メニュー１個あたりの設定*/
.small-screen #menubar nav ul li {
    border: 1px solid var(--primary-inverse-color);
    /*枠線の幅、線種、varは色の事でcss冒頭のprimary-inverse-colorを読み込みます。*/
    margin: 1rem 0;
    /*メニューの外側に空けるスペース。上下、左右への順番。*/
    border-radius: 5px;
    /*角を丸くする指定*/
}

.small-screen #menubar a {
    color: inherit;
    padding: 1rem 2rem;
    /*メニュー内の余白。上下、左右へ。*/
}

/*マウスオン時*/
.small-screen #menubar a:hover {
    color: var(--primary-color);
    /*文字色。css冒頭のprimary-colorを読み込みます。*/
    background: var(--primary-inverse-color);
    /*背景色。css冒頭のprimary-inverse-colorを読み込みます。*/
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーを囲むブロック*/
#menubar_hdr {
    animation: opa1 0.3s 0.5s both;
    position: fixed;
    z-index: 101;
    cursor: pointer;
    top: 5px;
    /*上からの配置場所*/
    right: 10px;
    /*右からの配置場所*/
    width: 50px;
    /*幅*/
    height: 50px;
    /*高さ*/
    padding: 15px;
    /*ブロック内の余白*/
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s;
    background: var(--primary-color);
    /*背景色。css冒頭のprimary-colorを読み込みます。*/
    border-radius: 50%;
    /*円形にする。四角形がいいならこの１行を削除。*/
}

/*画面幅900px以上の追加指定*/
@media screen and (min-width:900px) {

    /*３本バーを囲むブロック*/
    #menubar_hdr {
        top: 34px;
        /*上からの配置場所*/
    }

}

/*追加設定ここまで*/


/*マウスオン時に120%にする*/
#menubar_hdr:hover {
    transform: scale(1.2);
}

/*×アイコンになった場合にサイズを大きくする*/
#menubar_hdr.ham {
    width: 80px;
    /*幅*/
    height: 80px;
    /*高さ*/
}

/*ここは変更不要*/
#menubar_hdr div {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/*バーの設定*/
#menubar_hdr div span {
    display: block;
    width: 100%;
    height: 2px;
    /*線の太さ*/
    background-color: var(--primary-inverse-color);
    /*線の色。css冒頭のprimary-inverse-colorを読み込みます。*/
    border-radius: 2px;
    /*コーナーを少しだけ丸く*/
    transition: all 0.5s ease-in-out;
    position: absolute;
}

/*以下変更不要*/
#menubar_hdr div span:nth-child(1) {
    top: 0;
}

#menubar_hdr div span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

#menubar_hdr div span:nth-child(3) {
    bottom: 0;
}

#menubar_hdr.ham div span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

#menubar_hdr.ham div span:nth-child(2) {
    opacity: 0;
}

#menubar_hdr.ham div span:nth-child(3) {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}


/*main
---------------------------------------------------------------------------*/
/*mainブロック*/
main {
    padding: var(--global-space) 0;
    /*上下、左右へのブロック内の余白。上下については、css冒頭のglobal-spaceを読み込みます。*/
}

/*h2(見出し)要素*/
main h2 {
    color: var(--primary-color);
    /*文字色。css冒頭のprimary-colorを読み込みます。*/
    font-size: 1.8rem;
    /*文字サイズ。180%。*/
    font-weight: 500;
    /*文字の太さ。100〜900で指定ができます。*/
}

/*bg1背景上でのh2*/
main .bg1 h2 {
    color: var(--primary-inverse-color);
    /*文字色。css冒頭のprimary-inverse-colorを読み込みます。*/
    border-color: var(--primary-inverse-color);
    /*線色をprimary-inverse-colorにします。*/
}

/*box1背景上でのh2*/
h2.box1 {
    font-size: 2.4rem;
    /*文字サイズを240%*/
    letter-spacing: 0.3em;
    /*文字間隔を広く*/
}

/*h2内の小文字*/
main h2 .small {
    display: block;
    font-weight: normal;
    /*文字の太さを標準に。100〜900の数値での指定も可能です。*/
    font-size: 0.8rem;
    /*文字サイズを80%*/
    letter-spacing: 0.1em;
    /*文字間隔をほんの少し広く*/
}

/*h3(見出し)要素*/
main h3 {
    font-weight: 500;
    /*文字の太さ。100〜900で指定ができます。*/
}


/*box1
---------------------------------------------------------------------------*/
main .box1 {
    border: 1px solid var(--primary-color);
    /*枠線の幅、線種、varは色の事でcss冒頭のprimary-colorを読み込みます*/
    padding: 5vw;
    /*ボックス内の余白。画面幅100% = 100vwです。*/
    margin-bottom: var(--global-space);
    /*ボックスの下（外）に空けるスペース。css冒頭のglobal-spaceを読み込みます*/
}

/*box1の中にある最後のlist-freeの下マージンをなくす*/
.box1 .list-free:last-of-type {
    margin-bottom: 0;
}


/*style1（アクセント画像）
---------------------------------------------------------------------------*/
main .style1 {
    position: relative;
    font-weight: normal;
    /*文字の太さを標準に。100〜900の数値での指定も可能です。*/
    margin-bottom: 2rem;
    /*下に２文字分のスペース*/
}

main .style1::before {
    content: "";
    background: url("../images/bg2.svg") repeat-x left bottom / auto 6px;
    /*アクセント用画像を指定。6pxは高さで、下のheightと数字を合わせます。*/
    display: block;
    position: absolute;
    left: 0px;
    top: 2em;
    /*上から２文字分の所に表示。ここを0pxにしておくとテキストの上に出ます。*/
    width: 102px;
    /*表示させる幅。お好みで変更して下さい。*/
    height: 6px;
    /*高さ。上のbackgroundの最後の数字と合わせます。*/
}


/*pointアイコン
---------------------------------------------------------------------------*/
/*pointブロック全体*/
.point {
    order: -1;
    color: var(--primary-inverse-color);
    /*文字色。css冒頭のprimary-inverse-colorを読み込みます。*/
    width: 20vw;
    /*幅*/
    height: 20vw;
    /*高さ*/
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.8rem;
    /*文字サイズを80%*/
    letter-spacing: 0.1em;
    /*文字間隔をほんの少し広く*/
    line-height: 1.2;
    /*行間を狭く*/
    position: relative;
    background: url("../images/bg1.svg") no-repeat center center / 100%;
    /*アイコンの背景画像の読み込み。幅を100%に。*/
}

/*回転させる場合の指定*/
.point.spin::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: url("../images/bg1.svg") no-repeat center center / 100%;
    /*アイコンの背景画像の読み込み。幅を100%に。*/
    animation: spin 30s linear infinite;
    /*30s（30秒）が１回転する速度です。お好みで変更して下さい。*/
}

/*テキストブロック*/
.point span {
    position: relative;
    z-index: 1;
}

/*大きな文字（1や2などの数字に使用）*/
.point span span {
    display: block;
    font-size: 2rem;
    /*文字サイズを２倍*/
}

/*画面幅600px以上の追加指定*/
@media screen and (min-width:600px) {

    /*pointブロック*/
    .point {
        width: 10vw;
        /*幅を変更*/
        height: 10vw;
        /*高さを変更*/
    }

}

/*追加設定ここまで*/


/*フッター共通
---------------------------------------------------------------------------*/
#footer-contents,
#footermenu {
    padding: 2rem var(--global-space);
    /*上下、左右へのボックス内の余白。左右はcss冒頭で指定しているglobal-spaceを読み込みます*/
}


/*フッターのコンテンツ（住所やマップが入っているブロック）
---------------------------------------------------------------------------*/
/*ブロック全体*/
#footer-contents {
    background: #fff;
    color: #fff;
}

#footer-contents a {
    color: inherit;
}

#footer-contents .logo {
    width: auto;
}

#footer-contents .logo a {
    display: block;
    color: #f89faf;
    font-size: 24px;
    line-height: 1.4;
    text-decoration: none;
}

#footer-contents .logo img {
    display: none;
}

#footer-contents .access {
    font-size: 15px;
    color: #f89faf;
}

/*左側のブロック*/
#footer-contents .left {
    margin-bottom: 50px;
    /*下に空けるスペース*/
    text-align: left;
}

/*ブロック内で使うbtnの設定*/
#footer-contents .btn a {
    border: 2px solid var(--primary-inverse-color);
    /*枠線の幅、線種、色。色についてはcss冒頭の（primary-inverse-color）を読み込みます。*/
}

/*画面幅900px以上の追加指定*/
@media screen and (min-width:900px) {

    #footer-contents {
        display: flex;
        /*直接の子要素を横並びにします*/
        gap: var(--global-space);
        /*左右のボックスの間のマージン的な設定。css冒頭で指定しているglobal-spaceを読み込みます。*/
    }

    /*左側のブロック*/
    #footer-contents .left {
        margin-bottom: 0;
        /*下のマージン（外側への余白）をリセット*/
        width: 50%;
        /*幅。leftとrightで合計100になれば、お好みで変更してもらって構いません。*/
    }

    /*右側のブロック*/
    #footer-contents .right {
        width: 50%;
        /*幅。leftとrightで合計100になれば、お好みで変更してもらって構いません。*/
    }

    #footer-contents .access {
        font-size: 25px;
    }

}

/*追加指定ここまで*/

/*footer-contents内のマップ。レスポンシブにする為のものなので、基本は編集不要です。
---------------------------------------------------------------------------*/
.iframe-box {
    width: 100%;
    height: 0;
    padding-top: 56.25%;
    /*マップの高さを増やしたい場合は、ここの数値を上げてみて下さい。*/
    position: relative;
    overflow: hidden;
}

.iframe-box iframe {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
}

/*フッターメニュー設定
---------------------------------------------------------------------------*/
/*ボックス全体の設定*/
#footermenu {
    background: var(--primary-color);
    /*背景色。css冒頭で指定しているprimary-colorを読み込みます*/
    color: var(--primary-inverse-color);
    /*文字色。css冒頭で指定しているprimary-inverse-colorを読み込みます*/
    font-size: 0.8rem;
    /*文字サイズ。*/
    display: flex;
    /*直接の子要素を横並びにします*/
    justify-content: space-between;
    /*並びかたの種類の指定*/
    align-items: flex-start;
    /*垂直揃えの指定。上に配置されるように。*/
}

/*ボックス内のリンクテキスト設定*/
#footermenu a {
    text-decoration: none;
    color: inherit;
}

/*ulタグ（メニューの１列あたり）*/
#footermenu ul {
    margin: 0;
    list-style: none;
    padding: 0 0.3em;
    flex: 1;
}

/*メニューの見出し(title)*/
#footermenu .title {
    font-weight: bold;
    /*太字にする*/
    padding-bottom: 5px;
    /*下に空けるスペース*/
}


/*フッター
---------------------------------------------------------------------------*/
small {
    font-size: 100%;
}

footer {
    font-size: 0.7rem;
    /*文字サイズ*/
    border-top: 3px solid var(--primary-color);
    /*上の線の幅、線種、varは色の事でcss冒頭のprimary-colorを読み込みます*/
    background: #fff;
    /*背景色*/
    color: var(--primary-color);
    /*文字色。css冒頭のprimary-colorを読み込みます*/
    text-align: center;
    /*内容をセンタリング*/
    padding: 1rem;
    /*ボックス内の余白*/
}

/*リンクテキスト*/
footer a {
    color: inherit;
    text-decoration: none;
}

/*著作部分*/
footer .pr {
    display: block;
}


/*フッター内にあるソーシャルメディアのアイコン
---------------------------------------------------------------------------*/
ul.icons {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1rem;
    /*アイコン同士のマージン的な要素。１文字分。*/
    color: #f89faf;
}

.icons i {
    font-size: 30px;
    /*アイコンサイズ*/
}


/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {
    display: block;
}

/*ボタンの設定*/
.pagetop a {
    display: block;
    text-decoration: none;
    text-align: center;
    z-index: 99;
    position: fixed;
    /*スクロールに追従しない(固定で表示)為の設定*/
    right: 20px;
    /*右からの配置場所指定*/
    bottom: 20px;
    /*下からの配置場所指定*/
    color: #fff;
    /*文字色*/
    font-size: 1.5rem;
    /*文字サイズ*/
    background-color: rgba(248, 159, 175, 0.4);
    /*背景色。0,0,0は黒の事で0.2は色が20%出た状態。*/
    width: 60px;
    /*幅*/
    line-height: 60px;
    /*高さ*/
    border-radius: 50%;
    /*円形にする*/
}



/*テキストのフェードイン設定
---------------------------------------------------------------------------*/
/* 初期状態でテキストを非表示にする */
.fade-in-text {
    visibility: hidden;
}

/* アニメーションを適用するクラス。
animationの行の「0.2s」が文字の出現のなめらかさで、大きいほどなめらかに出てきます。
１文字ずつの出現する際の時差は、js/main.jsの「テキストのフェードイン効果」の中にある「0.1」で調整できます。*/
.char {
    display: inline-block;
    opacity: 0;
    animation: fadeIn 0.2s linear both;
}


/*list-grid1（３カラムボックス）
---------------------------------------------------------------------------*/
.list-grid1 .list * {
    margin: 0;
    padding: 0;
}

/*ボックス１個あたり*/
.list-grid1 .list {
    display: grid;
    margin-bottom: var(--global-space);
    /*下に空けるスペース*/
}

/*ボックス内のp要素*/
.list-grid1 .list p {
    font-size: 0.85rem;
    /*文字サイズを85%に*/
    line-height: 1.5;
    /*行間を狭くする*/
}

/*ボックス１個あたり*/
.list-grid1 .list {
    padding: 1rem;
    /*ボックス内の余白。１文字分。*/
    background: #fff;
    /*背景色*/
    color: #777;
    /*文字色*/
    grid-template-rows: auto 1fr auto;
    /*１つ目（この場合はfigure要素のサイズ）と「詳しくみる」ボタンの高さは自動に、２つ目（この場合はtextブロック））を残った幅で使う*/
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
    /*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
}

/*ボックス内のfigure画像*/
.list-grid1 .list figure {
    margin: -1rem;
    /*画像を枠いっぱいに表示させる為に上の「.list-grid1 .list」のpadding分をネガティブマーインで指定*/
    margin-bottom: 0.5rem;
    /*画像の下に空けるスペース*/
}

/*画面幅800px以上の追加指定*/
@media screen and (min-width:800px) {

    /*listブロック全体を囲むブロック*/
    .list-grid1 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        /*3列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
        gap: 3vw;
        /*ブロックの間に空けるマージン的な指定*/
    }

    /*ボックス１個あたり*/
    .list-grid1 .list {
        margin-bottom: 0;
        /*下に空けるスペースをなくす*/
    }

}

/*追加指定ここまで*/


/*list-free（レイアウトフリー用）
---------------------------------------------------------------------------*/
/*.list-free * {margin: 0;padding: 0;}*/

/*list-freeボックス*/
.list-free {
    display: flex;
    /*直接の子要素を横並びに*/
    flex-direction: column;
    /*一旦縦並びにしておく*/
    margin-bottom: 10vw;
    /*ボックスの下（外側）に空けるスペース*/
    gap: 5vw;
    /*子要素同士に空けるマージン的な要素。画面幅100%＝100vwです。*/
}

/*bg1,bg2背景の中にある最後のlist-freeの下マージンをなくす*/
.bg1 .list-free:last-of-type,
.bg2 .list-free:last-of-type {
    margin-bottom: 0;
}

/*テキストブロック*/
.list-free .text {
    align-self: flex-start;
    flex: 1;
}

/*h3見出し*/
.list-free h3 {
    margin-top: 0;
    letter-spacing: 0.1em;
    /*文字間隔を少しだけ広くする*/
    font-size: 1.5rem;
    /*文字サイズを150%に*/
    color: var(--primary-color);
    /*文字色。css冒頭で指定しているprimary-colorを読み込みます*/
    position: relative;
    /*カギカッコを絶対配置する為に必要な指定*/
}

/*bg1背景上でのh3*/
.bg1 .list-free h3 {
    color: var(--primary-inverse-color);
    /*文字色。css冒頭で指定しているprimary-inverse-colorを読み込みます*/
}

/*縦書きスタイル*/
.list-free .vertical-text {
    margin: auto;
}

.list-free .vertical-text::before,
.list-free .vertical-text::after {
    content: "";
    position: absolute;
    width: 20px;
    /*カギカッコの幅。お好みで。*/
    height: 50px;
    /*カギカッコの高さ。お好みで。*/
    border: 1px solid var(--primary-color);
    /*枠線の幅、線種、varは色の事でcss冒頭で指定しているprimary-colorを読み込みます*/
}

/*bg1背景上で枠線の色のみ変更*/
.bg1 .list-free .vertical-text::before,
.bg1 .list-free .vertical-text::after {
    border-color: var(--primary-inverse-color);
    /*枠線の幅、線種、varは色の事でcss冒頭で指定しているprimary-inverse-colorを読み込みます*/
}

.list-free .vertical-text::before {
    top: -15px;
    /*テキストからの距離。お好みで。*/
    left: -15px;
    /*テキストからの距離。お好みで。*/
    border-right: none;
    /*右の線は消す*/
    border-bottom: none;
    /*下の線は消す*/
}

.list-free .vertical-text::after {
    bottom: -15px;
    /*テキストからの距離。お好みで。*/
    right: -15px;
    /*テキストからの距離。お好みで。*/
    border-left: none;
    /*左の線は消す*/
    border-top: none;
    /*上の線は消す*/
}

/*画像ブロック*/
.list-free .image {
    position: relative;
}

.list-free .image img {
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.1);
    /*ボックスの影。右へ、下へ、ぼかす量。0,0,0は黒のことで0.1は色が10%出た状態。。*/
    margin-bottom: 1rem;
    /*画像の下に空けるマージン。２枚以上画像を配置した場合に間のスペースになります。*/
}

/*iframeを使う場合の設定（shop.htmlのGoogleMapに使用）*/
.iframe-box {
    width: 100%;
    height: 0;
    padding-top: 56.25%;
    /*マップの高さを増やしたい場合は、ここの数値を上げてみて下さい。*/
    position: relative;
}

.iframe-box iframe {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
}

/*画像の上にポイントアイコンを置いた場合の設定*/
.list-free .image.order3 .point {
    position: absolute;
    left: -20px;
    top: -20px;
}

.list-free .image.order1 .point {
    position: absolute;
    right: -20px;
    top: -20px;
}

/*画像ブロック内のdivタグ。テキストを囲むブロックです。*/
.list-free .image > div {
    font-size: 0.7rem;
    /*文字サイズを70%*/
    padding: 1rem 2rem;
    /*上下、左右への余白*/
}

/*画面幅600px以上の追加指定*/
@media screen and (min-width:600px) {

    /*list-freeボックス*/
    .list-free {
        flex-direction: row;
        /*縦並びから横並びにする*/
        align-items: flex-start;
        /*中のボックス類を上に寄せる*/
    }

    .list-free .vertical-text {
        writing-mode: vertical-rl;
        /*縦書きの指定。*/
        text-orientation: upright;
        /*文字の向き*/
        padding: 1rem 0.5rem;
        /*上下、左右へのh3内の余白*/
    }

    /*画像ブロックが３番目（右側）になった場合に画面右側いっぱいまで広げる*/
    .list-free .image.order3 {
        margin-right: calc(-1 * var(--global-space));
    }

    .list-free .image.order3 img {
        border-radius: 30px 0px 0px 30px;
        /*角丸の指定。左上、右上、右下、左下への順番。*/
    }

    /*画像ブロックが１番目（左側）になった場合に画面左側いっぱいまで広げる*/
    .list-free .image.order1 {
        margin-left: calc(-1 * var(--global-space));
    }

    .list-free .image.order1 img {
        border-radius: 0px 30px 30px 0px;
        /*角丸の指定。左上、右上、右下、左下への順番。*/
    }

    /*その他（汎用向け）お好みでもっと追加して使ってもOK*/
    .list-free .w1 {
        width: 30%;
    }

    .list-free .w2 {
        width: 50%;
    }

    .list-free .order1 {
        order: 1;
    }

    .list-free .order2 {
        order: 2;
    }

    .list-free .order3 {
        order: 3;
    }

    .list-free .align-self-start {
        align-self: flex-start;
    }

    .list-free .align-self-center {
        align-self: center;
    }

    .list-free .align-self-end {
        align-self: flex-end;
    }

}

/*追加指定ここまで*/


/*ボタン1、ボタン2の共通設定
---------------------------------------------------------------------------*/
.btn1 a,
.btn2 a,
.btn3 a,
.btn4 a {
    display: block;
    text-decoration: none;
    font-size: 1rem;
    margin-top: 1rem !important;
    /*ボタンの外（上）に空けるスペース*/
}


/*ボタン1（btn1）
---------------------------------------------------------------------------*/
.btn1 a {
    text-align: center;
    /*テキストをセンタリング*/
    background: var(--primary-color);
    /*背景色。css冒頭のprimary-colorを読み込みます。*/
    color: var(--primary-inverse-color);
    /*文字色。css冒頭のprimary-inverse-colorを読み込みます。*/
    padding: 0.5rem !important;
    /*ボタン内の余白*/
}


/*ボタン3（btn3）
---------------------------------------------------------------------------*/
.btn3 a {
    text-align: center;
    /*テキストをセンタリング*/
    background: #fff;
    /*背景色。css冒頭のprimary-colorを読み込みます。*/
    color: #f89faf;
    /*文字色。css冒頭のprimary-inverse-colorを読み込みます。*/
    padding: 0.5rem !important;
    /*ボタン内の余白*/
}

/*ボタン4（btn4）
---------------------------------------------------------------------------*/
.btn4 a {
    text-align: center;
    /*テキストをセンタリング*/
    background: #808080;
    /*背景色。css冒頭のprimary-colorを読み込みます。*/
    color: #fff;
    /*文字色。css冒頭のprimary-inverse-colorを読み込みます。*/
    padding: 0.5rem !important;
    /*ボタン内の余白*/
}


/*ボタン2（btn2）
---------------------------------------------------------------------------*/
.btn2 {
    text-align: right;
    /*テキストを右寄せ*/
}

.btn2 a {
    display: inline-block;
    color: var(--primary-color);
    /*文字色。css冒頭で指定しているprimary-colorを読み込みます*/
    position: relative;
    padding-right: 80px;
    /*矢印のアイコンと重ならないように余白をとる*/
}

/*矢印のアイコン設定*/
.btn2 a::after {
    content: "";
    background: #fff url("../images/arrow1.svg") no-repeat right center / 120px;
    /*アイコン画像の指定。画像の右側を読み込みます。最後の120の数字は、widthの２倍で指定します。*/
    display: block;
    position: absolute;
    right: 0px;
    bottom: -1em;
    width: 60px;
    /*アイコンの幅。ここを変更する場合は、上と下にあるbackgroundの120の数値も調整します。*/
    height: 60px;
    /*アイコンの高さ*/
    border: 1px solid var(--primary-color);
    /*枠線の幅、線種、varは色の事でcss冒頭のprimary-colorを読み込みます*/
    border-radius: 50%;
    /*円形にする指定。この１行を削除すれば正方形になります。*/
    text-align: center;
    transition: 0.3s;
    /*hover時に切り替えをなめらかにする*/
}

/*矢印のマウスオン時*/
.btn2 a:hover::after {
    background: var(--primary-color) url("../images/arrow1.svg") no-repeat left center / 120px;
    /*背景色をprimary-colorに変更し、背景画像の左側を読み込みます。最後の120の数字は、widthの２倍で指定します。*/
}


/*お知らせブロック
---------------------------------------------------------------------------*/
/*お知らせブロック*/
.new {
    flex: 1;
    border-top: 1px solid #ccc;
    /*ブロックの上の線幅、線種、色*/
}

/*日付(dt)設定*/
.new dt {
    padding: 1rem;
    /*dt内の余白*/
}

/*記事(dd)設定*/
.new dd {
    padding: 0 1rem 1rem;
    /*上、左右、下へのdd内の余白*/
    border-bottom: 1px solid #ccc;
    /*下の線の幅、線種、色*/
}

/*ブロック内のspan。日付の横のアイコン的な部分の共通設定*/
.new dt span {
    display: inline-block;
    margin-right: -1rem;
    text-align: center;
    line-height: 1.8;
    /*行間（アイコンの高さ）*/
    border-radius: 3px;
    /*角を丸くする指定*/
    padding: 0 0.5rem;
    /*上下、左右へのブロック内の余白*/
    width: 8rem;
    /*幅。8文字分。*/
    transform: scale(0.8);
    /*80%のサイズに縮小*/
    background: #fff;
    /*背景色*/
    color: #777;
    /*文字色*/
    border: 1px solid #999;
    /*枠線の幅、線種、色*/
}

/*icon-bg1*/
.new .icon-bg1 {
    background: var(--primary-color);
    /*背景色。css冒頭のprimary-colorを読み込みます。*/
    color: var(--primary-inverse-color);
    /*文字色。css冒頭のprimary-inverse-colorを読み込みます。*/
    border-color: transparent;
    /*枠線を出したくないので透明にする*/
}

/*bg1背景の上で使うicon-bg1*/
.bg1 .new .icon-bg1 {
    background: var(--primary-inverse-color);
    /*背景色。css冒頭で指定しているprimary-inverse-colorを読み込みます*/
    color: var(--primary-color);
    /*文字色。css冒頭で指定しているprimary-colorを読み込みます*/
}


/*詳細ページのサムネイル切り替えブロック
---------------------------------------------------------------------------*/
/*大きな画像が表示されるブロック*/
.thumbnail-view {
    max-width: 1000px;
    /*最大幅*/
    margin: 0 auto 1rem;
    /*ブロック要素を中央に配置。下に1文字分のマージンをとる。*/
    text-align: center;
    /*画像が小さい場合でもセンタリングされるように*/
}

/*サムネイル全体を囲むブロック*/
.thumbnail {
    display: flex;
    /*flexを使う指定*/
    justify-content: center;
    /*並びかたの種類の指定。これはセンタリングする指定。*/
    margin-bottom: 2rem;
    /*下に空けるスペース。２文字分。*/
}

/*サムネイル画像*/
.thumbnail img {
    width: 100px;
    /*サムネイルの幅*/
    margin: 2px;
    /*サムネイル間のスペース*/
    cursor: pointer;
    /*リンクタグではないが、クリックできる事をわかりやすくする為にリンクと同じポインターにしておきます。*/
    transition: 0.3s;
    /*マウスオンまでにかける時間。3秒。*/
}

.thumbnail img:hover {
    opacity: 0.8;
    /*マウスオン時に80%だけ色を出す。つまり薄くなります。*/
}


/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
    font-weight: bold;
    /*文字を太字に。100〜900の数値での指定も可能です。*/
    padding: 0.5rem 1rem;
    /*ボックス内の余白*/
    background: #999;
    /*背景色*/
    color: #fff;
    /*文字色*/
    margin-bottom: 1rem;
    /*下に空けるスペース*/
    border-radius: 5px;
    /*角を丸くする指定*/
}

/*ta1テーブルブロック設定*/
.ta1 {
    table-layout: fixed;
    border-top: 1px solid #ccc;
    /*テーブルの一番上の線。幅、線種、色*/
    width: 100%;
    /*幅*/
    margin-bottom: 5rem;
    /*テーブルの下に空けるスペース。5文字分。*/
}

/*tr（１行分）タグ設定*/
.ta1 tr {
    border-bottom: 1px solid #ccc;
    /*テーブルの下線。幅、線種、色*/
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th,
.ta1 td {
    padding: 1rem;
    /*ボックス内の余白*/
    word-break: break-all;
    /*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/
}

/*th（左側）のみの設定*/
.ta1 th {
    width: 30%;
    /*幅*/
    text-align: left;
    /*左よせにする*/
    background: #f5f5f5;
    /*背景色*/
}

/*画面幅900px以上の追加指定*/
@media screen and (min-width:900px) {

    /*th（左側）のみの設定*/
    .ta1 th {
        width: 20%;
        /*幅*/
    }

}

/*追加指定ここまで*/


/*bg1背景
---------------------------------------------------------------------------*/
.bg1 {
    background: var(--primary-color);
    /*背景色。css冒頭のprimary-colorを読み込みます。*/
    color: var(--primary-inverse-color);
    /*文字色。css冒頭のprimary-inverse-colorを読み込みます。*/
    padding: var(--global-space);
    /*ボックス内の余白。css冒頭のglobal-spaceを読み込みます。*/

    /*以下は変更不要*/
    margin-right: calc(-1 * var(--global-space));
    margin-left: calc(-1 * var(--global-space));
}


/*bg2背景
---------------------------------------------------------------------------*/
.bg2 {
    background: #f0f0f0;
    color: var(--primary-color);
    /*文字色。css冒頭のprimary-colorを読み込みます。*/
    padding: var(--global-space);
    /*ボックス内の余白。css冒頭のglobal-spaceを読み込みます。*/

    /*以下は変更不要*/
    margin-right: calc(-1 * var(--global-space));
    margin-left: calc(-1 * var(--global-space));
}


/*marker（マーカー風スタイル）
---------------------------------------------------------------------------*/
.marker {
    display: inline-block;
    background: linear-gradient(transparent 80%, yellow 80%);
}

h3.marker {
    font-size: 2rem;
}


/*その他
---------------------------------------------------------------------------*/
.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

.color-check,
.color-check a {
    color: #ff0000 !important;
}

.bg1 .color-check,
.bg1 .color-check a {
    color: yellow !important;
}

.bg1 .look .color-check,
.bg1 .look .color-check a {
    color: #ff0000 !important;
}

.l {
    text-align: left !important;
}

.c {
    text-align: center !important;
}

.r {
    text-align: right !important;
}

.ws {
    width: 95%;
    display: block;
}

.wl {
    width: 95%;
    display: block;
}

.mb0 {
    margin-bottom: 0px !important;
}

.mb30 {
    margin-bottom: 30px !important;
}

.look {
    display: inline-block;
    padding: 0px 10px;
    background: #eee;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin: 5px 0;
    word-break: break-all;
}

.bg1 .look,
.bg2 .look {
    background: #fff;
}

.small {
    font-size: 0.75em;
}

.large {
    font-size: 2em;
    letter-spacing: 0.1em;
}

.pc {
    display: none;
}

.dn {
    display: none !important;
}

.block {
    display: block !important;
}

/*画面幅900px以上の追加指定*/
@media screen and (min-width:900px) {

    .ws {
        width: 48%;
        display: inline;
    }

    .sh {
        display: none;
    }

    .pc {
        display: block;
    }

}

/*追加指定ここまで*/



/*list-half（トップページの「人気のアクティビティスポット」で使っている左右にわかれた装飾ボックス）
---------------------------------------------------------------------------*/
/*ボックス全体*/
.list-half {
    display: flex;
    /*直接の子要素を横並びにする*/
    flex-direction: column;
    /*一旦縦並びにしておく*/
}

/*list-halfが続く場合に間にマージンを空ける*/
.list-half + .list-half {
    margin-top: 5vw;
    /*画面幅100%＝100vwです。*/
}

/*h3見出し*/
.list-half h3 {
    margin: 0;
    padding: 0;
    text-align: center;
    /*テキストをセンタリング*/
}

/*h4テキスト*/
.list-half h4 {
    font-weight: normal;
    margin: 0;
    font-size: 1.5rem;
    /*文字サイズを1.5倍に*/
    color: var(--primary-color);
    /*文字色。css冒頭で指定しているprimary-colorを読み込みます*/
    position: relative;
    /*下の飾り画像の基点*/
    padding-right: 100px;
    /*右に空けるスペース。テキスト右側の小さな画像と重ならないようにする為です。*/
}

/*h4テキスト右側の飾り画像*/
.list-half h4 .kazari {
    position: absolute;
    right: 0px;
    top: -3rem;
    width: 100px;
    /*画像の幅*/
}

/*左右のラインの装飾*/
.list-half h3::before,
.list-half h3::after {
    content: "|";
    /*このテキストを出力します*/
    display: inline-block;
}

/*左のラインの装飾への追加設定*/
.list-half h3::before {
    transform: rotate(-30deg);
    /*回転角度*/
    margin-right: 0.5rem;
    /*右に空けるスペース*/
}

/*右のラインの装飾への追加設定*/
.list-half h3::after {
    transform: rotate(30deg);
    /*回転角度*/
    margin-left: 0.5rem;
    /*左に空けるスペース*/
}

/*h3テキスト内のアイコン*/
.list-half h3 i {
    margin-left: 0.5rem;
    /*左に0.5文字分のマージンを空ける*/
    font-size: 2rem;
    /*文字サイズ２倍*/
    color: var(--primary-color);
    /*文字色。css冒頭で指定しているprimary-colorを読み込みます*/
    opacity: 0.6;
    /*透明度。60%だけ色を出す。*/
}

/*テキストブロック*/
.list-half .text {
    background: #fff;
    /*背景色*/
    padding: 1rem 2rem;
    /*上下、左右へのブロック内の余白*/
    margin-bottom: 30px;
    /*下に空けるスペース*/
    border-radius: 1vw;
    /*角を丸くする指定。px指定でもOKです。*/
}


/*画面幅599px以下の追加指定（並び順を変更します。数字が小さな順に並びます。）*/
@media screen and (max-width:599px) {

    /*h3見出し*/
    .list-half h3 {
        order: 1;
    }

    /*画像ブロック*/
    .list-half .image {
        order: 2;
    }

    /*テキストブロック*/
    .list-half .text {
        order: 3;
    }

}

/*追加指定ここまで*/


/*画面幅600px以上の追加指定*/
@media screen and (min-width:600px) {

    /*ボックス全体*/
    .list-half {
        flex-direction: row;
        /*縦並びから横並びにする*/
        justify-content: space-between;

        /*以下は変更不要*/
        margin-right: calc(-1 * var(--global-space));
        margin-left: calc(-1 * var(--global-space));
    }

    /*ボックス全体（※reverse用）変更不要*/
    .list-half.reverse {
        flex-direction: row-reverse;
        /*逆向きに並べる*/
        margin-left: calc(-1 * var(--global-space));
    }

    /*h3テキスト*/
    .list-half h3 {
        writing-mode: vertical-rl;
        /*縦書きの指定。*/
        text-orientation: upright;
        /*文字の向き*/
        font-size: 0.50rem;
        /*文字サイズを85%*/
        margin-top: 10vw;
        /*上に空けるスペース。画面幅100%＝100vwです。*/
    }

    /*上のラインの装飾への追加設定*/
    .list-half h3::before {
        transform: rotate(-60deg);
        /*回転角度*/
        margin-bottom: 0.5rem;
        /*下に空けるスペース*/
    }

    /*上のラインの装飾への追加設定（※reverse用）*/
    .list-half.reverse h3::before {
        transform: rotate(60deg);
        /*回転角度*/
    }

    /*下のラインの装飾への追加設定*/
    .list-half h3::after {
        transform: rotate(60deg);
        /*回転角度*/
        margin-top: 0.5rem;
        /*上に空けるスペース*/
    }

    /*下のラインの装飾への追加設定（※reverse用）*/
    .list-half.reverse h3::after {
        transform: rotate(-60deg);
        /*回転角度*/
    }

    /*h3テキスト内のアイコン*/
    .list-half h3 i {
        margin: 0;
        margin-top: 0.5rem;
        /*上に0.5文字分のマージンを空ける*/
    }

    /*テキストブロック*/
    .list-half .text {
        margin-bottom: 0;
        flex: 1;
        align-self: flex-start;
        /*上寄せになります*/
        margin-top: 8vw;
        /*上寄せですが、この分だけ下に下げます。写真とテキストがななめに配置されるイメージで設定しました。*/
        position: relative;
        z-index: 1;
        margin-right: -10vw;
        /*この分だけ画像にテキストブロックが重なります。画面幅100%＝100vwです。*/
        box-shadow: 2vw 2vw rgba(var(--primary-color-rgb), 0.1);
        /*ボックスの影。右へ、下へ。色はcss冒頭のvar(primary-color-rgb)を読み込み、0.1で透明度も指定。*/
    }

    /*テキストブロック（※reverse用）*/
    .list-half.reverse .text {
        margin-right: 0;
        margin-left: -10vw;
        box-shadow: -2vw 2vw rgba(var(--primary-color-rgb), 0.1);
    }

    /*画像ブロック*/
    .list-half .image {
        padding: 0;
        /*余白をリセット*/
        width: 50vw;
        /*幅。画面の50%*/
        border-radius: 3vw 0px 0px 3vw;
        /*角を丸くする指定。左上、右上、右下、左下への順番。*/
        overflow: hidden;
    }

    /*画像ブロック（※reverse用）*/
    .list-half.reverse .image {
        border-radius: 0px 3vw 3vw 0px;
    }

}

/*追加指定ここまで*/


/*FAQ
---------------------------------------------------------------------------*/
/*質問*/
.faq dt {
    border-radius: 3px;
    /*枠を角丸にする指定*/
    margin-bottom: 1rem;
    /*下に空けるスペース*/
    background: #f89faf;
    /*背景色*/
    border: 1px solid #ccc;
    /*枠線の幅、線種、色*/
    text-indent: -2rem;
    /*テキストのインデント。質問が複数行になった際に、テキストの冒頭を揃える為に設定しています。*/
    padding: 0.5rem 1em 0.5rem 3em;
    /*ボックス内の余白。ここを変更する場合、上のtext-indentも調整します。*/
}

/*アイコン（Font Awesome）*/
.faq dt::before {
    font-family: "Font Awesome 6 Free";
    /*Font Awesomeを使う指定*/
    content: "\f059";
    /*アイコンのコード*/
    padding-right: 1rem;
    /*アイコンとテキストとの間のスペース*/
    color: var(--primary-color);
    /*アイコンの色。css冒頭で指定しているprimary-colorを読み込みます*/
}

/*回答*/
.faq dd {
    padding: 0 1rem 1rem 3rem;
    /*ボックス内の余白。上、右、下、左への順番。*/
}

/*opencloseを適用した要素のカーソル*/
.openclose {
    cursor: pointer;
    /*カーソルの形状。リンクと同じスタイルにしてクリックできると認識してもらう。*/
}


/*gallery
---------------------------------------------------------------------------*/
/*list-square-parts
---------------------------------------------------------------------------*/
/*listブロックを囲む外側のボックス*/
.list-square-parts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /*ここの「4」の数字が横に並べる数です。3列がいいなら(3, 1fr)です。*/
    gap: 1rem;
    /*マージン的な数値。サムネイル間を１文字分あけます。*/
}

/*ボックスを正方形にトリミングする為の指定なので変更しない。*/
.list-square-parts .list-parts {
    position: relative;
    overflow: hidden;
    height: 0;
    padding-top: 100%;
    border-radius: 10px;
    /*角を丸くする指定。通常の四角形がよければこの１行削除。*/
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.1);
    /*ボックスの影。右へ、下へ、ぼかし幅。0,0,0は黒の事で0.1は色が10%出た状態。*/
}

.list-square-parts .list-parts a {
    display: block;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
}

.list-square-parts .list-parts img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: 0.5s;
    /*マウスオン時にかける時間。0.5秒。*/
}

/*マウスオン時の画像*/
.list-square-parts .list-parts img:hover {
    transform: scale(1.1);
    /*1.1倍に拡大*/
    filter: contrast(1.3);
    /*コントラストを1.3倍*/
}

/*縦書きバー
---------------------------------------------------------------------------*/
#message-parts a {
    text-decoration: none;
    display: block;
    writing-mode: vertical-rl;
    text-orientation: upright;
    background: #58B2DC;
    /*背景色*/
    color: #fff;
    /*文字色*/
    position: fixed;
    /*スクロールしてもボタンが移動しないようにする指定。移動させたいならfixedをabsoluteにして下さい。*/
    z-index: 1;
    right: 0px;
    /*ボタンの右からの配置場所指定*/
    top: 170px;
    /*ボタンの上からの配置場所指定*/
    padding: 20px 15px;
    /*ボタン内の余白。上下、左右。*/
    border-radius: 10px 0px 0px 10px;
    /*角を丸くする指定。左上、右上、右下、左下の順番。*/
    letter-spacing: 0.1rem;
    /*文字間隔を少しだけ広く*/
}

/*ふきだしアイコン*/
#message-parts i {
    transform: scale(1.3);
    /*1.3倍に*/
    margin-bottom: 10px;
    /*下に空ける余白*/
}

/*ブログページ設定
---------------------------------------------------------------------------*/
.contents1 {
    background: #fff;
}

.contents2 {
    background: #fff;
}

.contents1 {
    width: 50%;
    padding: 20px 15px;
    margin: auto;
}

.contents2 {
    width: 20%;
    padding: 20px 15px;
    margin-right: auto;
    vertical-align: top;
}

.main {
    display: flex;
    flex-wrap: wrap;
}

/*list-partsブロック全体を囲むブロック*/
.list-grid1-parts,
.list-grid2-parts {
    display: grid;
}

/*ボックス１個あたり*/
.list-grid1-parts .list-parts,
.list-grid2-parts .list-parts {
    display: grid;
}

/*list内の全ての要素のmarginとpaddingを一旦リセット*/
.list-grid1-parts .list-parts *,
.list-grid2-parts .list-parts * {
    margin: 0;
    padding: 0;
}

/*ボックス内のp要素*/
.list-grid1-parts .list-parts p,
.list-grid2-parts .list-parts p {
    font-size: 0.85rem;
    /*文字サイズを85%に*/
    line-height: 1.5;
    /*行間を少し狭く*/
}


.list .text {

    margin: 0;
    height: auto;

    /* Optional: better sizing control */

}

/*list-grid2-parts
---------------------------------------------------------------------------*/

/*画面幅600px以上の追加指定*/
@media screen and (min-width:600px) {

    /*listブロック全体を囲むブロック*/
    .list-grid2-parts {
        grid-template-columns: repeat(2, 1fr);
        /*2列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
        gap: 1rem;
        /*ブロックの間に空けるマージン的な指定*/
    }

}

/*追加指定ここまで*/


/*ボックス１個あたり*/
.list-grid2-parts .list-parts {
    grid-template-columns: 100px 1fr;
    /*１つ目（この場合はfigure要素）を100pxに、２つ目（この場合はtextブロック））を残った幅で使う*/
    gap: 1rem;
    /*ブロックの間に空けるマージン的な指定*/
    align-items: center;
    /*画像とテキストブロックについて、天地の中央で揃えるようにする。この１行を削除すると、上に揃う。*/
    margin-bottom: 1rem;
}

/*画面幅600px以上の追加指定*/
@media screen and (min-width:600px) {

    /*ボックス１個あたり*/
    .list-grid2-parts .list-parts {
        margin-bottom: 0;
    }

}

/*追加指定ここまで*/

/*下線
---------------------------------------------------------------------------*/
.under1 {
    border-bottom: solid 2px #000;
}

/*ボックス
---------------------------------------------------------------------------*/
.px {
    font-size: 80％；
}


/*Newsのスライド
---------------------------------------------------------------------------*/
#newsevent {
    height: 400px;
    /*スクロールの高さ*/
    overflow-y: scroll;
}


/*注意事項同意
---------------------------------------------------------------------------*/
form {
    margin: 50px;
    text-align: center;

    input[type=button] {
        background: #ddd;
        border: #aaa solid 1px;
        border-radius: 10px;
        color: #aaa;
        padding: 10px 80px;
        pointer-events: none;
        transition: background-color .3s, color .5s;

        &:focus {
            visibility: hidden;
        }
    }

    &:has(input:checked) input[type=button] {
        background: #fff;
        border: #000 solid 1px;
        color: #333;
        cursor: pointer;
        pointer-events: auto;

        &:focus {
            visibility: visible;
        }
    }

    @media (hover: hover) {
        &:has(input:checked) input[type=button]:hover {
            background: #000;
            color: #fff;
        }
    }
}

/*h4(見出し)要素*/
main h4 {
    font-size: 18px;
    /*文字サイズ*/
}

h4 ~ p {
    margin-left: 1em;
    text-indent: -1em;
}

/*破線
---------------------------------------------------------------------------*/
hr.line5 {
    border: none;
    height: 30px;
    box-shadow: 0 30px 30px -30px #ccc inset;
}

/*ボックス
---------------------------------------------------------------------------*/
.box3 {
    background: #810021;
    /*背景色の指定*/
    color: #ffffff;
    /*テキストの色の指定*/
    padding: 10px;
}

.box3 p {
    margin: 0;
    padding: 0;
}


/*サムネイルの横スライドショー
---------------------------------------------------------------------------*/
/*スライドショー全体を囲むブロック*/
.slide-thumbnail2-parts {
    overflow-x: hidden;
    padding-bottom: 50px;
    /*下に空けるスペース。インジケーター分の確保です。*/
    position: relative;
}

/*リンクテキスト*/
.slide-thumbnail2-parts a {
    text-decoration: none;
    color: inherit;
}

/*１個あたりのボックスの設定と、4列配置する為の指示*/
.slide-thumbnail2-parts .img-parts > div {
    flex: 0 0 23%;
    /*４枚表示する為には25%指定だが、左右のマージン分（計2%）を差し引く。*/
    max-width: 23%;
    /*上記と同じ内容だが念の為追加*/
    margin: 0 1%;
    /*上下、左右へのマージン*/
    padding: 1rem;
    /*ボックス内の余白*/
    background: #fff;
    /*背景色*/
    border: 1px solid #ccc;
    /*枠線の幅、線種、色*/
}

/*画面幅800px以下の追加指定*/
@media screen and (max-width:800px) {

    /*2列配置に変更する*/
    .slide-thumbnail2-parts .img-parts > div {
        flex: 0 0 48%;
        max-width: 48%;
    }

}

/*追加指定ここまで*/


/*画像たちを囲むブロック*/
.slide-thumbnail2-parts .img-parts {
    display: flex;
}

/*画像*/
.slide-thumbnail2-parts .img-parts img {
    width: 100%;
}

/*段落タグ(p)*/
.slide-thumbnail2-parts p {
    font-size: 0.85rem;
    /*文字サイズを85%に*/
    line-height: 1.5;
    /*行間をデフォルトより狭く*/
}


/*現在表示中（インジケーター）のボタン
---------------------------------------------------------------------------*/
/*全体*/
.slide-thumbnail2-parts .slide-indicators-parts {
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 0px;
    /*下からのボタンの配置場所*/
    left: 0px;
}

/*１個あたり*/
.slide-thumbnail2-parts .indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ccc;
    /*未アクティブ時のボタン色*/
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.slide-thumbnail2-parts .indicator.active {
    background: #000;
    /*アクティブ時のボタン色*/
}

/*new
---------------------------------------------------------------------------*/
div.box {
    position: relative;
}

div.box img.new {
    position: absolute;
    width: 35%;
    height: 25%;
    left: -5px;
    top: -6.5px;
}

.timer-image {
    display: none;
}

.timer-image.is-show {
    display: block;
    /* 期間内は表示 */
}
