@charset "utf-8";
/*========= ぼかしのためのCSS ===============*/

.mainblur{
	filter: blur(8px);
}

/*========= ふわっと上から ===============*/

.fadeDown{
animation-name: fadeDownAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

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

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

.fadeDownTrigger{
    opacity: 0;
}

/*========= 順番に現れる ===============*/

.nav01d li:nth-of-type(1){
    animation-delay: .1s;
}

.nav01d li:nth-of-type(2){
    animation-delay: .15s;
}

.nav01d li:nth-of-type(3){
    animation-delay: .2s;
}

.nav01d li:nth-of-type(4){
    animation-delay: .25s;
}

.nav01d li:nth-of-type(5){
    animation-delay: .35s;
}

.nav01d li:nth-of-type(6){
    animation-delay: .4s;
}

.nav01d li:nth-of-type(7){
    animation-delay: .45s;
}

.nav01d li:nth-of-type(8){
    animation-delay: .5s;
}

.nav01d li:nth-of-type(9){
    animation-delay: .55s;
}

.nav01d li:nth-of-type(10){
    animation-delay: .6s;
}

/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position:fixed;
	z-index: -1;
	opacity: 0;/*はじめは透過0*/
    /*ナビの位置と形状*/
	top:0;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:rgba(6,199,85,0.7);/*背景を少し透過させる*/
    /*動き*/
	transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive{
	opacity: 1;
	z-index:99;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 99; 
    width: 100%;
    height: 100svh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav .nav01d {
    display: none;/*はじめは非表示*/
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
	top: 15%;
	left: 50%;
    transform: translatex(-50%);
    padding: 0;
    width: 310px;
}
@media (min-width: 576px) and (max-width: 991.98px) {
/* タブレット */
	#g-nav .nav01d {
	top: 12%;
}
}
@media (max-width: 575.98px) {
/* モバイル */
	#g-nav .nav01d {
	top: 7%;
}
}

#g-nav.panelactive .nav01d {
    display: block;
}
/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: center; 
}

#g-nav li a{
	font-family: "新ゴ B";
	color: #fff;
	text-decoration: none;
	padding:10px 20px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
	font-size: 1.2rem;
}
@media (max-width: 575.98px) {
/* モバイル */
	#g-nav li a {
	font-size: 1.1rem;
}
}

#g-nav li a span {
	font-family: "新ゴ R";
	color: #fff;
	text-decoration: none;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: .8rem;
	margin-top: -.2rem;
}
@media (max-width: 575.98px) {
/* モバイル */
	#g-nav li a span {
	margin-top: -.3rem;
}
}

#g-nav li a:hover, 
#g-nav li a:hover span {
	color: #ffd700;
}

#g-nav li p {
	font-family: "新ゴ R";
	color: #fff;
	font-size: .8rem;
	letter-spacing: 0.1em;
	margin-top: -.5rem;
}

.g-nav-h2 {
	color: #fff;
	font-size: 56px;
	border: none;
	margin-bottom: 0;
	padding: 0;
}

@media (max-width: 575.98px) {
/* モバイル */
	.g-nav-h2 {
	font-size: 45px;
}
}

/* 子メニュー（第2階層）の初期状態と配置リセット */
.has-child-sp ul {
    display: none; /* アコーディオンの中身は最初は非表示 */
    position: static; /* 中央への絶対配置を解除して通常の並びに */
    transform: none; /* 中央寄せの調整を解除 */
    width: 100%;
    padding: 0;
    margin-top: 10px; /* 親メニューとの間隔 */
}

/* 矢印を配置するために親メニューのaタグを相対配置に */
.has-child-sp > a {
    position: relative;
    cursor: pointer;
}

/* 矢印（くの字）の作成 */
.has-child-sp > a::after {
    content: '';
    position: absolute;
    right: 77px; /* 右端からの距離 */
    top: 40%;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    transition: transform 0.3s ease;
}
.has-child-sp > a:hover::after {
	border-bottom: 3px solid #ffd700;
    border-right: 3px solid #ffd700;
}

/* メニューが開いた時の矢印の向き（上向き） */
.has-child-sp.active > a::after {
    transform: translateY(-50%) rotate(-135deg);
}

/* 子メニューのリンクの文字サイズや色を少し調整（任意） */
.has-child-sp ul li a {
    font-size: 1rem; /* 親より少し小さく */
    padding: 8px 20px;
    color: #eee;
}
.has-child-sp ul li a span {
    font-size: 0.7rem;
}

/*========= ボタンのためのCSS ===============*/

/*ボタン外側*/
.openbtn{
	position:fixed;
    display: block;
	top:10px;
	right: 10px;
	z-index: 999;/*ボタンを最前面に*/
	cursor: pointer;
    width: 50px;
    height:50px;
    background: #ff6900;
	border-radius: 5px;
}

/*ボタン内側*/
.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background: #fff;
  }


.openbtn span:nth-of-type(1) {
	top:15px;	
  	width: 45%;
}

.openbtn span:nth-of-type(2) {
	top:23px;
  	width: 35%;
}

.openbtn span:nth-of-type(3) {
	top:31px;
  	width: 20%;
}

/*activeクラスが付与されると線が回転して×になる*/

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/*Contact Form 7カスタマイズ*/

/* 入力フォーム拡大しないように */
input.wpcf7-form-control.wpcf7-text,
textarea.wpcf7-form-control.wpcf7-textarea {
    font-size: 16px;
}

/* テーブル下サイズ調整 */
.inquiry {
    margin-bottom: 20px;
	border: none;
}

/* メール入力欄下の余白 */
input.wpcf7-form-control.wpcf7-text.wpcf7-email.wpcf7-validates-as-required.wpcf7-validates-as-email {
    margin-bottom: 0;
}

.inquiry p {
    margin-top: 5px;
    margin-bottom: 5px;
}

/* 入力欄のパディング調整 */
input[type=date],
input[type=email],
input[type=number],
input[type=password],
input[type=tel],
input[type=text],
input[type=url],
textarea {
    padding: 15px;
}
@media (max-width: 575.98px) {
/* モバイル */
	/* 入力欄のパディング調整 */
input[type=date],
input[type=email],
input[type=number],
input[type=password],
input[type=tel],
input[type=text],
input[type=url],
textarea {
    padding: 10px;
}
}

/*見出し欄*/
.inquiry th {
    text-align: left;
    font-size: 14px;
    color: #333;
    padding: 30px 5px 30px 16px;
    width: 30%;
	border: none;
}
@media (max-width: 575.98px) {
/* モバイル */
	.inquiry th {
		padding: 23px 0px 23px 10px;
		width: 33%;
}
}

/*通常欄*/
.inquiry td {
    font-size: 13px;
    border: none;
	padding: 0;
}

/* 行に下線 */
.inquiry tr {
	border-bottom: solid 1px #333;
}

input[type=text],
input[type=url],
textarea, input[type="email"] {
    margin-bottom: 0;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', 
                 'Arial', 'Noto Sans', 'メイリオ', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 
                 '游ゴシック体', 'Yu Gothic', sans-serif!important;
}

/*必須の調整*/
.haveto {
    font-size: 10px;
    padding: 5px;
    background: #ff9393;
    color: #fff;
    border-radius: 2px;
    margin-right: 5px;
    position: relative;
    bottom: 1px;
}

/*任意の調整*/
.any {
    font-size: 10px;
    padding: 5px;
    background: #93c9ff;
    color: #fff;
    border-radius: 2px;
    margin-right: 5px;
    position: relative;
    bottom: 1px;
}

/*日付選択の幅を狭くする*/
.wpcf7-form-control.wpcf7-select {
	padding: 10px;
	width: 46px;
}
/*時間選択の幅を狭くする*/
.wpcf7-form-control.wpcf7-select.select_y {
	width: 65px;
}

/*フォームプライバシー*/
#privacy-btn {
    text-align: center;
    margin-top: -10px;
    margin-bottom: 30px;
}

#privacy-btn a {
    text-decoration: none;
}

#privacy-btn a:hover {
    color: #ff6900;
}

@media (max-width: 575.98px) {

    /* モバイル */
    #privacy-btn {
        margin-top: 0px;
        margin-bottom: 30px;
    }
}

/*送信ボタンのデザイン変更*/
.form_btn {
    display: block;
    padding: 15px 0 !important;
    border-radius: 100px !important;
    margin-left: auto;
    margin-right: auto;
    width: 300px;
    color: #333 !important;
    font-size: 18px;
    border: 1px solid #333 !important;
    background: #fff !important;
	transition: all 0.4s ease-out;
}

.form_kb {
    position: relative !important;
    border-radius: 100px !important;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    width: 300px;
}

@media (max-width: 575.98px) {

    /* モバイル */
    .form_btn {
        width: 250px;
    }

    .form_kb {
        width: 250px;
    }
}

/*送信ボタンマウスホバー時*/
.form_btn:hover {
    /*ボタンの形状*/
	border-color: transparent!important;
	color: #fff!important;
	/*背景の色と形状*/
	background: linear-gradient(270deg, #06c755 0%, #ffff00 50%, #06c755 100%)!important;
	background-size: 200% auto!important;
	background-position: right center!important;
	/*ボックスの影*/
	box-shadow: 0 5px 10px rgb(34, 139, 34, 0.4)!important;
}

/*モーダルの全て共通：hideエリアをはじめは非表示*/
.hide-area {
    display: none;
}

/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-close:after,
.modaal-close:before {
    background: #ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
    background: #666;
}

@media only screen and (max-width: 1140px) {
    .modaal-gallery-control {
        bottom: -60px !important;
    }
}

@media (min-width: 992px) {

    /* PC */
    .modaal-gallery-control:after {
        margin: 18px 0 0;
    }

    .modaal-gallery-control:before {
        margin: -18px 0 0;
    }

    .modaal-gallery-control:after,
    .modaal-gallery-control:before {
        top: 19px;
        left: 50px;
        width: 12px;
        height: 60px;
    }

    .modaal-gallery-control {
        width: 100px;
        height: 100px;
    }

    .modaal-gallery-prev:after,
    .modaal-gallery-prev:before {
        left: 35px;
    }

    .modaal-gallery-prev:before {
        margin: 18px 0 0;
    }

    .modaal-gallery-prev:after {
        margin: -18px 0 0;
    }
}