@charset "UTF-8";
/* -------------------------------
画面幅別の表示・非表示
------------------------------- */
.only-m {
    display: none;
    margin: 0;
}

@media screen and (max-width: 767px) {
    .only-pc {
        display: none;
    }

    .only-m {
        display: block;
    }
}

/* -------------------------------
clearfix
------------------------------- */

.clearfix:after {
	content: "";
	display: block;
	clear: both;
}

.clearfix:before {
    content: "";
	display: block;
	clear: both;
}

.clearfix {
	display: block;
}

/* -------------------------------
チェックリスト設定
------------------------------- */

ul.checklist {
    /* border: 1px solid #ccc; */
    list-style: none;
    padding: 1em;
}

ul.checklist li {
    background-image: url(../images/icon-check.png);
    background-position: 0 5px;
    background-repeat: no-repeat;
    background-size: 1.2em;
    padding-left: 1.8em;
    margin-bottom: 0.8em;
}

ul.checklist li:last-child {
    margin-bottom: 0em;
}

/* -------------------------------
テーブル設定
------------------------------- */

table {
    width: 100%;
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    margin: 1em 0;
}

th,
td {
    padding: 0.5em;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

th {
    background-color: #f0f0f0;
    font-weight: bold;
    text-align: center;
}

td {
    background-color: #fff;
    text-align: center;
}

/* -------------------------------
フォーム設定
------------------------------- */

.mailform {
    background-color: #fff;
    margin-bottom: 1em;
    padding: 1em 0 1.5em;
    box-shadow: 0 0 1px #000;
}

.input {
    padding: 0 2em;
}

.input_style {
    background-color: #fffbf0;
    width: 100%;
    height: 60px;
    margin-bottom: 0.5em;
    text-align: center;
    font-size: 1.4em;
}

input[type="image"] {
    width: 100%;
}

.caution {
    text-align: center;
    font-size: 0.8em;
    color: #f00;
}

/* -------------------------------
ページトップリンク
-ページの指定の高さを超えたら下から出現-
https://ugokuweb.coco-factory.jp/ugokuweb/move01/8-1-2/
------------------------------- */

/*リンクの形状*/


/* #page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	background:#942D2F;
	border-radius: 5px;
	width: 60px;
	height: 60px;
	color: #fff;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:0.6rem;
	transition:all 0.3s;
}
 */
#page-top img {
    width: 60px;
}

#page-top a:hover img {
    opacity: 0.8;
}


/*リンクを右下に固定*/
#page-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 2;
    /*はじめは非表示*/
    opacity: 0;
    transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove,
#fix_menu_smartphone.UpMove {
    animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*　下に下がる動き　*/

#page-top.DownMove,
#fix_menu_smartphone.DownMove {
    animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 1;
        transform: translateY(100px);
    }
}

/*==================================================
スライダーのためのcss
https://ugokuweb.coco-factory.jp/ugokuweb/move01/6-1-1/
===================================*/
.slider {
    padding: 0;
    position:relative;
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
	z-index: 3;
    top: 50%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 5px solid #fff;/*矢印の色*/
    border-right: 5px solid #fff;/*矢印の色*/
    height: 25px;
    width: 25px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left:2.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right:2.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
    padding: 0;
	position: relative;
	z-index: 3;
    text-align:center;
	margin:-50px 0 0 0;
}
@media screen and (max-width: 767px) {
    .slick-dots {
        margin:-40px 0 0 0;
    }
}

.slick-dots li {
    display:inline-block;
	margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:12px;/*ドットボタンのサイズ*/
    height:16px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#fff;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:#000;/*ドットボタンの現在地表示の色*/
}

/* -------------------------------
フェードイン
------------------------------- */

/*フェードイン*/
.fadein,
.fadein_bottom,
.fadein_left,
.fadein_right {
    opacity : 0;
    transition: all 1s;
}

/*同一位置でフェードイン*/
.fadein {
    transform: translateY(0px);
}

/*下からフェードイン*/
.fadein_bottom {
    transform: translateY(40px);
}

/*左からフェードイン*/
.fadein_left {
    transform: translateX(-40px);
}

/*右からフェードイン*/
.fadein_right{
    transform: translateX(40px);
}

/*----------------------------------------
	ハンバーガーメニュー by 草野あけみ & ChatGPT
----------------------------------------*/
html,
body {
    width: 100%;
    /* overflow-x: hidden; */
}

.navbtn {
    padding: 0;
    outline: none;
    border: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: transparent;
    cursor: pointer;
}
.hamburger__line {
    position: relative;
    width: 25px;
    height: 2px;
    background: var(--preset--color--contrast);
}
.hamburger__line::before,
.hamburger__line::after {
    position: absolute;
    content: "";
    display: block;
    width: 25px;
    height: 2px;
    background: var(--preset--color--contrast);
    transition: transform 0.3s;
}
.hamburger__line::before {
    top: -8px;
}
.hamburger__line::after {
    bottom: -8px;
}
/* 閉じるボタン */
/* .open .navbtn {
    position: relative;
    z-index: 110;
} */
.open .navbtn {
  position: fixed; /* relative → fixed にすることで常に画面右上に固定 */
  top: 15px;
  right: 15px;
  z-index: 10001; /* .gnav（z-index: 100）より圧倒的に上に */
}
.open .hamburger__line {
    background: transparent;
}
.open .hamburger__line::before {
    top: 0;
    transform: rotate(45deg);
}
.open .hamburger__line::after {
    bottom: 0;
    transform: rotate(-45deg);
}
@media screen and (min-width: 768px), print {
    .navbtn {
        display: none;
    }
}
/*----------------------------------------
	ナビゲーションメニュー
----------------------------------------*/
.gnav li {
    color: var(--preset-color-primary); /* a以外（選択中メニュー） */
    font-weight: 700;
}
.gnav a {
    text-decoration: none;
}
.gnav span {
    font-weight: 400;
}
.gnav_btns_sp {
    display: none;
}
@media screen and (max-width: 767px) {
    .gnav {
        position: fixed;
        inset: 0 -100% 0 100%;
        z-index: 100;
        background-color: #c5334ae6;
        /* background-color: #ffffffe6; */
        transition: transform 0.3s;
    }
    .open .gnav {
        transform: translate(-100%, 0);
    }    
    body.open {
        position: fixed; /* .open bodyだと後ろ側がずれる */
        overflow: hidden;
        width: 100%;
    }
    .gnav ul {
        align-items: center;
        display: flex;
        flex-direction: column;
        gap: 30px;
        height: 100%;
        justify-content: center;
    }
    .gnav ul a {
        color: #fff;
    }

    /* スマホメニュー内購入ボタン */
    .gnav_btns_sp {
        display: block;
        max-width: 80%;
    }
    .gnav_btns_sp .btns_sp {
        display: flex;
        gap: 20px;
        margin: 20px 0 30px;
    }
    .gnav_btns_sp .wrap_tel {
        margin: 0 auto;
        width: 200px;
    }
}
@media screen and (min-width: 768px), print {
    .gnav ul {
        align-items: center;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
        text-align: center;
    }
    .gnav span {
        display: block;
        font-size: 0.75rem;
    }

}
@media screen and (min-width: 1024px) {
    .gnav ul {
        gap: 50px;
    }
}