@charset "UTF-8";
/* // // // // // // // // // // // // 共通 // // // // // // // // // // // // */
* {
	/* outline: 1px solid magenta; */
}
img {
    max-width: 100%;
    height: auto;
}
ul{
    list-style-type: none;
}
main.hidern{
    overflow: hidden;
}
/* // // // // font type memo // // // // */
.dela-gothic-one-regular {
    font-family: "Dela Gothic One", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.noto-sans-jp{
    /* // <weight>: Use a value from 100 to 900
    // <uniquifier>: Use a unique and descriptive class name */
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
.dotgothic16-regular {
    font-family: "DotGothic16", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.hina-mincho-regular {
    font-family: "Hina Mincho", serif;
    font-weight: 400;
    font-style: normal;
}
.biz-udpmincho-regular {
    font-family: "BIZ UDPMincho", serif;
    font-weight: 400;
    font-style: normal;
}

/* // // // // // // // // // // // // */
body{
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    /* line-height: 2; */
    line-height: normal;
    /* letter-spacing: 0.1em; */
    background-color: #000;
}
h2{
    font-family: "Dela Gothic One", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.delaGothic{
    font-family: "Dela Gothic One", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.dotGothic{
    font-family: "DotGothic16", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.hinaMincho{
    font-family: "Hina Mincho", serif;
    font-weight: 400;
    font-style: normal;
}
/* header, main{
    background-color: black;
    color: #fff;
} */


/*========= ローディング画面のためのCSS ===============*/
#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	background: #AE3A2E;
	z-index: 9999999;
	text-align:center;
	color:#fff;
}

#splash-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#splash-logo img{
    max-width: 400px;
}
@media screen and (max-width:959px){
    #splash-logo img{
        max-width: 250px;
    }
}

/*========= 画面遷移のためのCSS ===============*/

/*画面遷移アニメーション*/
.splashbg{
    display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg{
    display: block;
    content: "";
    position:fixed;
	z-index: 999;
    width: 100%;
    height: 100vh;
    top: 0;
	left: 0;
    transform: scaleX(0);
    background-color: #AE3A2E;/*伸びる背景色の設定*/
	animation-name:PageAnime;
	animation-duration:1.2s;
	animation-timing-function:ease-in-out;
	animation-fill-mode:forwards;
}

@keyframes PageAnime{
	0% {
		transform-origin:left;
		transform:scaleX(0);
	}
	50% {
		transform-origin:left;
		transform:scaleX(1);
	}
	50.001% {
		transform-origin:right;
	}
	100% {
		transform-origin:right;
		transform:scaleX(0);
	}
}

/*画面遷移の後現れるコンテンツ設定*/
#container{
	opacity: 0;/*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #container{
	animation-name:PageAnimeAppear;
	animation-duration:1s;
	animation-delay: 0.8s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes PageAnimeAppear{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}


/*========= ページトップのためのCSS ===============*/
/*リンクを右下に固定*/
#pageTopBtn {
	position: fixed;
	right: 10px;
	bottom:30px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(150px);
}

/*　上に上がる動き　*/
#pageTopBtn.UpMove{
	animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(150px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/
#pageTopBtn.DownMove{
	animation: DownAnime 0.5s forwards;
}

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

/*画像の切り替えと動き*/
#pageTopBtn a {
    /*aタグの形状*/
	display: block;
	width: 100px;
	height: 100px;
	color: #333;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:0.6rem;
    /*背景画像の指定*/
	background: url("../img/topBtn.png") no-repeat center;
	background-size: contain;
}

#pageTopBtn.floatAnime a{
	width: 100px;
	height: 130px;
    /*背景画像の指定*/
	background: url("../img/topBtn.png") no-repeat center;
	background-size: contain;
    /*アニメーションの指定*/
	animation: floatAnime 2s linear infinite;
	opacity: 0;
}

@keyframes floatAnime {
  0% { transform: translateX(0); opacity: 0; }
  10% { transform: translateY(-3px);opacity: 1; }
  20% { transform: translateY(0) }
  30% { transform: translateY(3px) }
  40% { transform: translateY(0) }
  50% { transform: translateY(-3px) }
  60% { transform: translateY(0) }
  70% { transform: translateY(3px) }
  80% { transform: translateY(-3px) }
  90% { transform: translateY(0) }
  100% { transform: translateY(0) }
}

/*Page Topと書かれたテキストの位置*/
#pageTopBtn span{
    position: absolute;
    bottom: -20px;
    right: 20px;
	/* color: #666; */
}
/*検証のためのCSS*/
/* section{
padding: 500px 0;
} */
@media screen and (max-width:959px){
    /*リンクを右下に固定*/
    #pageTopBtn {
        bottom: 80px;
    }
    #pageTopBtn a {
        width: 60px;
        height: 60px;
    }
    #pageTopBtn.floatAnime a{
        width: 60px;
        height: 70px;
    }
}

/*=============== ページネーションCSS ===============*/
.pagination {
	position:fixed;
	right:20px;
	top: 50%;
    transform: translateY(-50%);
	font-size:1em;
	z-index: 10;
	list-style: none;
}
.pagination a {
	display:block;
	height:20px;
	margin-bottom:5px;
	color:#fff;
	position:relative;
	padding:4px;
}
.pagination a.active:after {
	box-shadow:inset 0 0 0 5px;
}
/*現在地表示のテキストの設定*/
.pagination a .hover-text {
	position:absolute;
	right:15px;
	top:0;
	opacity:0;
	-webkit-transition: opacity 0.5s ease;
	transition: opacity 0.5s ease;
	padding-right: 15px;
}
.pagination a:hover .hover-text {
	opacity: 1;
}
.pagination a:after {
	-webkit-transition:box-shadow 0.5s ease;
	transition:box-shadow 0.5s ease;
	width:10px;
	height:10px;
	display: block;
	border:1px solid;
	border-radius:50%;
	content:"";
	position: absolute;
	margin:auto;
	top:0;
	right:3px;
	bottom:0;
}
/* 959px以下のpagination位置調整 */
@media screen and (max-width:959px){
.pagination {
	/* right:10px; */
	right:0px;
}
}

/*768px以下は現在地表示のテキストを非表示*/
@media screen and (max-width:768px) { 
	.pagination a .hover-text{
		display: none;
	}	
}


/*=============== テキスト左から流れるCSS ===============*/
/*========= 流れるテキスト ===============*/

/*全共通*/

.slide-in {
	overflow: hidden;
    display: inline-block;
}

.slide-in_inner {
	display: inline-block;

}
/*左右のアニメーション*/
.leftAnime{
    opacity: 0;/*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
	animation-name:slideTextX100;
	animation-duration:0.8s;
	animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes slideTextX100 {
  from {
	transform: translateX(-100%); /*要素を左の枠外に移動*/
        opacity: 0;
  }

  to {
	transform: translateX(0);/*要素を元の位置に移動*/
    opacity: 1;
  }
}

.slideAnimeRightLeft {
	animation-name:slideTextX-100;
	animation-duration:0.8s;
	animation-fill-mode:forwards;
    opacity: 0;
}


@keyframes slideTextX-100 {
  from {
	transform: translateX(100%);/*要素を右の枠外に移動*/
    opacity: 0;
  }

  to {
	transform: translateX(0);/*要素を元の位置に移動*/
    opacity: 1;
  }
}

/* // // // // // // // // // // // // // // // // // // // // // // // // // */

/* // // // // // // // // // // // // COMMON// // // // // // // // // // // // */
.forSp{
    display: none;
}
.forTb{
    display: none;
}

@media screen and (max-width:959px){
    .forTb{
        display: block;
    }
    .forPc{
        display: none;
    }
}
@media screen and (max-width:599px){
    .forSp{
        display: block;
    }
    .forTb{
        display: none;
    }
}
section#policy, #service, #howto, #advantage, #faq, #company, #contact{
    /* padding: 350px 0; */
    /* padding: 53vh 0 10vh; */
    /* padding: 30vh 0 10vh; */
    padding: 30vh 0 0 0;
}
.textArea{
    background-color: #AE3A2E;
}
.textBox{
    /* width: 100%; */
    max-width: 900px;
    color: #fff;
    padding: 10vw 0 8vw;
    margin-right: 5%;
}

h2{
    font-size: clamp(6rem, 10vw, 13rem);
    color: #fff;
    position: relative;
}
h2 span{
    position: absolute;
    /* top: -10vw; */
    top: -8vw;
    left: 2%;
}
.sideR{
    padding-left: 40%;
}
#policy .textBox p, #service .textBox p, #howto .textBox p, 
#advantage .textBox p, #faq .textBox p, #company .textBox p, #contact .textBox li, footer{
    /* font-size: 20px; */
    font-size: clamp(14px, 1.45vw, 18px);
    /* text-align: justify; */
}
@media screen and (max-width:959px){
    section#policy, #service, #howto, #advantage, #faq, #company, #contact{
        /* padding: 350px 0; */
        /* padding: 53vh 0 10vh; */
        /* padding: 43vh 0 10vh; */
        padding: 43vh 0 0 0;
    }
    #policy .textBox p, #service .textBox p, #howto .textBox p, 
    #advantage .textBox p, #faq .textBox p, #company .textBox p, #contact .textBox li, footer{
        /* font-size: 20px; */
        font-size: clamp(14px, 2.3vw, 18px);
    }
    .textBox{
        /* padding: 18vw 0; */
        padding: 15vw 0;
        margin: 0 auto;
    }
    .sideR{
        padding-left: 0%;
    }
    h2{
        font-size: clamp(3.8rem, 18vw, 13rem);
        color: #fff;
        position: relative;
    }
    h2 span{
        position: absolute;
        top: -15vw;
        left: 2%;
    }
}

/* // // // // // // // // // // // // // // // // // // // // // // // // // */

/* // // // // // // // // // // // // HEADER // // // // // // // // // // // // */

.headerWrap{
    display: flex;
    position: fixed;
    z-index: 9;
    /* はじめの高さを指定 */
    height: 70px;
    width: 100vw;
    /* position: fixed; */
}
/* heightMinというクラス名が付いたら高さを小さく上部固定に */
.headerWrap.heightMin{
    position: fixed;
    z-index: 9;
    background-color: #000;
    animation: DownAnime .5s forwards;
}
@keyframes DownAnime{
    from{
        opacity: 0;
        transform: translateY(-70px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

.btn{
    position: fixed;
    z-index: 2;
    right: 70px;
    background-color: #AE3A2E;
    padding: 9px 10px 8px 11px;
    width: 70px;
    cursor: pointer;
}
/* .contactBtn:hover{
    background-color: #000;
    transition: ease .5s;
} */
 /* 左から流れるhover設定 */
.bgLeft:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: #000;
    width: 100%;
    height: 100%;
    transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transform: scale(0,1);
    transform-origin: right top;
}
.bgLeft:hover:before{
    transform-origin: left top;
    transform: scale(1,1);
}

.contactBtn svg{
    width: 100%;
    color:#000;
    position: relative;
    z-index: 3;
    transition: all .5s ease-in-out;
}

.contactBtn:hover svg{
    fill: #AE3A2E;
}

/* グローバルナビゲーションのためのCSS */
/* 1.アクティブになったエリアの指定 */
#gNav.panelactive{
    position: fixed;
    z-index: 999;
    top: 0;
    width: 100%;
    height: 100vh;
    
}
/* 2.丸の拡大 */
.circleBg{
    position: fixed;
    z-index: 3;
    /* 丸の形 */
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #AE3A2E;
    /* 丸のスタート位置と形状 */
    transform: scale(0); /*scaleをはじめは0に*/
    top: calc(50% - 50px); /*50%から円の半径を引いた値*/
    left: calc(50% - 50px); /*50％から円の半径を引いた値*/
    transition: all .6s;
}
.circleBg.circleactive{
    transform: scale(50); /*クラスが付与されたらscaleを拡大*/
}
/* 3.ナビゲーション */
#gNav ul{
    display: none;
    opacity: 0; /*はじめは透過0*/
    /* ナビゲーション天地中央揃え※レイアウトによって調整 */
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
/* 4.背景が出現後にナビゲーションを表示 */
#gNav.panelactive ul{
    display: block;
    opacity: 1;
}
/* 5.背景が出現後にナビゲーションliをゆっくり表示 */
#gNav.panelactive ul li{
    animation-name: gnaviAnime;
    animation-duration: 1s;
    animation-delay: .2s;
    animation-fill-mode: forwards;
    opacity: 0;
}
@keyframes gnaviAnime{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
/* 6.リストのレイアウト設定 */
#gNav li{
    text-align: center;
    list-style: none;
}
#gNav li a{
    color: #fff;
    text-decoration: none;
    padding: 10px;
    display: block;
    letter-spacing: .1em;
    font-weight: bold;
    transition: ease .2s;
}
#gNav li a:hover{
    color: #000;
}
/* ボタンのためのCSS */
/* ボタン外側 */
.openBtn{
    position: fixed;
    right: 0;
    /* ボタン内側の基点となるためrelativeを指定。追従するナビの場合はfixed+top,rightといった位置をセットで指定 */
    width: 70px;
    height: 70px;
    cursor: pointer;
    /* background: #222; */
    z-index: 1000;
    transition: ease .2s;
}
/* ボタン内側 */
.openBtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    z-index: 3;
    left: 13px;
    height: 4px;
    background-color: #AE3A2E;
}
.openBtn:hover span{
    background-color: #fff;
}
.openBtn span:nth-of-type(1){
    top: 22px;
    width: 50%;
}
.openBtn span:nth-of-type(2){
    top: 33px;
    width: 30%;
}
/* activeクラスが付与されると線が回転してXに */
.openBtn.active span:nth-of-type(1){
    top: 26px;
    left: 22px;
    transform: translateY(6px)rotate(-45deg);
    width: 35%;
    background-color: #fff;
}
.openBtn.active span:nth-of-type(2) {
    top: 38px;
    left: 22px;
    transform: translateY(-6px) rotate(45deg);
    width: 35%;
    background-color: #fff;
}

/* 左に流れるhover */
.openBtn:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    /* background: #000; */
    width: 100%;
    height: 100%;
    transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transform: scale(0,1);
    transform-origin: right top;
}
.openBtn:hover:before{
    transform-origin: left top;
    transform: scale(1,1);
}

@media screen and (max-width:599px){
    .headerWrap{
        /* はじめの高さを指定 */
        height: 70px;
        width: 100%;
        bottom: 0;
    }
    /* .contactBtn{
        right: 50px;
        padding: 2px 0 0 4px;
        width: 50px;
        height: 50px;
    } */


    /* グローバルナビゲーションのためのCSS */
    /* 1.アクティブになったエリアの指定 */
    #gNav.panelactive{
        position: fixed;
        z-index: 999;
        top: 95%;
        width: 100%;
        height: 100vh;
        
    }



    /* ボタンのためのCSS */
    /* ボタン外側 */
    .openBtn{
        position: fixed;
        right: 0;
        /* ボタン内側の基点となるためrelativeを指定。追従するナビの場合はfixed+top,rightといった位置をセットで指定 */
        width: 70px;
        height: 70px;
        cursor: pointer;
        /* background: #222; */
        z-index: 1000;
        transition: ease .2s;
    }


    #gNav ul{
        top: -45%;
    }
}


/* // // // // // // // // // // // // // // // // // // // // // // // // // */

/* // // // // // // // // // // // // PAGETOP // // // // // // // // // // // // */
#pageTop{
    width: 100%;
    /* height: 75vw; */
    /* border: aqua solid 2px; */
    margin-bottom: 100px;
}
#pageTop .scrollBg{
    height: 100%;
    background-color: #000;
    /* border: orange solid 2px; */
    overflow: hidden;
}
/* 背景文字の自動スクロール */
.scrollList{
    display: flex;
    padding-inline: 0;
    margin-inline: 0;
    gap: 0;
    background-color: #000;
    overflow: hidden;
}
/* liタグ */
.scrollList li{
    color: #393939;
    font-size: clamp( 24px,3.125vw,72px);
    white-space: nowrap;
    padding: 0 .6em 0 0;
    margin: 0;
    line-height: 1.2em;
    height: 100%;
    animation: marquee-left 16s linear infinite;
}
.scrollList.fontsizeL li{
    font-size: clamp( 48px,6.25vw,112px);
    padding: 0 .4em 0 0;
}
.scrollList.fontsizeM li{
    font-size: clamp( 36px,4.687vw,96px);
}
.scrollList.fontsizeS li{
    font-size: clamp( 18px,2.35vw,48px);
}

/* アニメーション */
@keyframes marquee-left{
    100%{
        transform: translateX(-100%);
    }
}

.pageL{
    position: fixed;
    width: 40%;
    max-width: 850px;
    height: 100%;
    /* background-color: #AE3A2E; */
    left: -50px;
    float: left;
    /* z-index: 20; */
    z-index: 1;
    /* border: aqua solid 2px; */
}
.kaneWrap{
    position: relative;
    top: 4%;
    left: 10%;
}
.kane{
    position: absolute;
    width: 100%;
}
.kane img{
    width: 100%;
    height: auto;
}
.souryo{
    position: absolute;
    width: 100%;
    padding-left: 100px;
}
.souryo img{
    width: 50%;
    height: auto;
}
.pageR{
    width: 60%;
    height: 100%;
    float: right;
}
#pageTop .topView{
    position: absolute;
    z-index: 1;
    right: 0;
    /* border: aqua solid 2px; */
}
.enkanWrap{
    position: relative;
    top: 5%;
    width: 57vw;
    max-width: 1080px;
}
.enkanWrap img.enkan{
    width: 60vw;
}
.enkanWrap h1{
    position: absolute;
    z-index: 2;
    color: #fff;
    font-size: clamp(24px,3.125vw,32px);
    top: 40%;
    left: 15%;
    line-height: 1.3;
}
.enkanWrap h1 span{
    /* font-size: 3em; */
    font-size: clamp(1em, 6vw, 3.5em);
}

@media screen and (max-width:959px){
        /* liタグ */
    .scrollList li{
        font-size: clamp( 24px, 10.4vw, 72px);
        white-space: nowrap;
        padding: 0 .6em 0 0;
        margin: 0;
        line-height: 1.2em;
        height: 100%;
        /* animation: marquee-left 16s linear infinite; */
    }
    .scrollList.fontsizeL li{
        font-size: clamp( 48px,14.8vw,112px);
        padding: 0 .4em 0 0;
    }
    .scrollList.fontsizeM li{
        font-size: clamp( 36px,9.6vw,96px);
    }
    .scrollList.fontsizeS li{
        font-size: clamp( 18px,4.8vw,48px);
    }
    #pageTop .scrollBg{
        position: relative;
        z-index: -2;
    }


    .pageL{
        /* position: fixed; */
        width: 100%;
        max-width: 960px;
        /* height: 100%; */
        /* background-color: #AE3A2E; */
        left: 0px;
        /* top: 32%; */
        bottom: 20%;
        float: none;
        z-index: -1;
        /* border: aqua solid 2px; */
    }
    .kaneWrap{
        left: 0%;
    }
    .kane{
        padding: 0 8%;
    }
    .souryo{
        padding: 0 6% 0 12%;
    }
    .pageR{
        width: 100%;
        /* height: 100%; */
        /* float: right; */
    }
    .enkanWrap{
        /* top: 5%; */
        /* width: 90vw; */
        /* 最終変更時確認 */
        top: 35%;
        width: 70vw;
        margin: 0 auto;
    }
    .enkanWrap img.enkan{
        width: 100%;
    }
    .enkanWrap h1{
        font-size: clamp(20px,5vw,32px);
        top: 37%;         /* 最終変更時確認 */
        left: 11%;         /* 最終変更時確認 */
        line-height: 1.3;
    }
    .enkanWrap h1 span{
        font-size: clamp(1em, 8vw, 3.5em);
    }
}



/* // // // // // // // // // // // // // // // // // // // // // // // // // */

/* // // // // // // // // // // // // POLICY // // // // // // // // // // // // */
#policy{
    margin-top: 300px;
}
#policy .textBox{
    max-width: 900px;
    color: #fff;
    padding-left: 3%;
    padding-right: 3%;
    line-height: 2;
}
#policy h2{
    /* padding-left: 3%; */
}
#policy .h2margin{
    margin-top: -20px;
}
@media screen and (max-width:959px){
#policy .textBox{
    /* padding-right: 0%; */
}
}
/* // // // // // // // // // // // // // // // // // // // // // // // // // */

/* // // // // // // // // // // // // SERVICE // // // // // // // // // // // // */
#service h2{
    /* padding-left: 7%; */
}
#service .textBox{
    max-width: 900px;
    color: #fff;
}
#service .textBox ul li{
    border-top: #fff solid 2px;
    /* padding: 40px 0 60px 80px; */
    padding: 5% 3% 7% 10%;
}
#service .textBox ul li:nth-of-type(6){
    border-bottom: #fff solid 2px;
}
#service .textBox ul li h3{
    font-family: "Dela Gothic One", sans-serif;
    font-weight: 100;
    /* font-size: 44px; */
    font-size: clamp(2rem, 3vw, 4rem);
    letter-spacing: 0.1em;
    line-height: 1.2;
    padding-bottom: 3%;
}
#service .textBox .logoList{
    display: flex;
    align-items: center;
    justify-content: end;
}
#service .textBox .logoList span{
    padding: 20px 10px;
}
#service .textBox .logoList img{
    width: 40px;
    height: auto;

}
@media screen and (max-width:959px){
#service .textBox ul li{
    padding: 5% 3% 7% 3%;
}
}

/* // // // // // // // // // // // // // // // // // // // // // // // // // */

/* // // // // // // // // // // // // HOWTO // // // // // // // // // // // // */
#howto h2{
    /* padding-left: 5%; */
}
#howto .textBox{
    margin-left: 5%;
}
#howto .howtoWrap{
    /* border: aqua solid 1px; */
}
#howto .howtoWrap ul{
    display: flex;
    flex-wrap: wrap;
    padding: 2%;
}
#howto .howtoWrap ul li{
    padding: 4% 2% 7% 2%;
    /* border: orange solid 1px; */
    width: 33.333%;
    position: relative;
}
#howto .howtoWrap ul li.howtoArrow:before{
    content: url(../img/howtoArrow_red.png);
    transform: scale(0.4) translate(-110px, 0px);;
    position: absolute;
    bottom: -20px;
    left: 0;
}
.howtoWrap ul li p{
    /* font-size: clamp(14px, 1.45vw, 18px); */
    padding: 10% 0;
}
.howtoWrap ul li span{
    font-family: "BIZ UDPMincho", serif;
    font-size:  clamp(36px, 8.4vw ,64px);
    font-weight: 1000;
}
.pcRight{
    border-right: #fff solid 1px;
}
.pcBottom{
    border-bottom: #fff solid 1px;
}
@media screen and (max-width:959px){
    .pcRight{
        border-right: none;
    }
    .pcBottom{
        border-bottom: none;
    }
    .spRight{
        border-right: #fff solid 1px;

    }
    .spBottom{
    border-bottom: #fff solid 1px;
        
    }

    #howto .howtoWrap ul li{
        width: 50%;
        padding: 5% 3% 10% 3%;
    }
    .howtoWrap ul li p{
        /* font-size: clamp(14px, 3.2vw, 18px); */
    }
    #howto .textBox{
        width: 92%;
        max-width: 700px;
        margin: 0 auto;
    }
}
/* // // // // // // // // // // // // // // // // // // // // // // // // // */

/* // // // // // // // // // // // // ADVANTAGE // // // // // // // // // // // // */
#advantage h2{
    /* padding-left: 5%; */
}
#advantage .textBox div{
    padding: 0 0 0 5%;
}
#advantage .textBox div:nth-of-type(2){
    padding: 7% 0 7% 5%;
}
#advantage .textBox span.pointFont{
    font-family: "Dela Gothic One", sans-serif;
    font-size: clamp(5rem, 8vw, 8rem);
    font-weight: 100;
    /* line-height: 1.4; */
    margin-top: 2%;
    line-height: 1;
    display: flex;
    letter-spacing: 0.1em;
    padding: 0 3%;
}
.spanRight{
    justify-content: end;
}
#advantage .textBox p{
    border-top: #fff solid 1px;
    padding: 3% ;
}
#advantage .floatLeft{
    float: left;
}
#advantage .floatRight{
    float: right;
}

@media screen and (max-width:959px){
    #advantage .textBox div{
        padding: 3%;
    }
    #advantage .textBox div:nth-of-type(2){
        padding: 3%;
    }
    #advantage .textBox span.pointFont{
        font-size: clamp(4rem, 13vw, 8rem);
        padding: 0 3%;
    }
    #advantage .textBox span{
        font-size: clamp(3rem, 15vw, 8rem);
        padding: 0 2%;
        margin-top: 2%;
        /* line-height: 1; */
        line-height: normal;
    }
    #advantage .floatLeft{
        float: left;
    }
    #advantage .floatRight{
        float: right;
    }
    #advantage .textBox p{
        padding: 5% 3% ;
    }
}
/* // // // // // // // // // // // // // // // // // // // // // // // // // */

/* // // // // // // // // // // // // FAQ // // // // // // // // // // // // */
#faq .textBox span{
    width: 100%;
}
#faq h2{
    /* padding-left: 5%; */
}
/* アコーディオン全体 */
.accordionArea{
    list-style: none;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}
.accordionArea li{
    margin: 10px 0;
}
.accordionArea section{
    /* border: 1px solid #ccc; */
}
/* アコーディオンタイトル */
.faqTitle{
    position: relative;
    cursor: pointer;
    /* font-size:1.1rem; */
    font-size: clamp(16px, 2.67vw, 18px);
    font-weight: normal;
    padding: 2% 50px 2% 3%;
    transition: all .5s ease;
    background-color: #fff;
    color: #AE3A2E;
}
/* +と- */
.faqTitle::before,
.faqTitle::after{
    position: absolute;
    content: "";
    width: 15px;
    height: 2px;
    background-color: #AE3A2E;
}
.faqTitle::before{
    top: 48%;
    right: 15px;
    transform: rotate(0deg);
}
.faqTitle::after{
    top: 48%;
    right: 15px;
    transform: rotate(90deg);
}
/*　closeというクラスがついたら形状変化　*/
.faqTitle.close::before{
    transform: rotate(45deg);
}
.faqTitle.close::after{
    transform: rotate(-45deg);
}
/*アコーディオンで現れるエリア*/
.faqAnswer{
    display: none;
    /* background: #f3f3f3; */
    margin: 0 3% 3% 3%;
    padding: 3%;
    font-size: 1rem;
}
@media screen and (max-width:959px){
    /* アコーディオン全体 */
    .accordionArea{
        width: 100%;
        padding: 0 5% 0 2%;
    }
}
/* // // // // // // // // // // // // // // // // // // // // // // // // // */

/* // // // // // // // // // // // // COMPANY // // // // // // // // // // // // */
#company{
    margin-top: 300px;
}
#company h2{
    /* padding-left: 5%; */
}
#company ul li{
    padding: 5px 0;
}
#company .textBox{
    padding-left: 5%;
}
@media screen and (max-width:959px){
    #company .textBox{
        padding-left: 6%;
    }
}
/* // // // // // // // // // // // // // // // // // // // // // // // // // */

/* // // // // // // // // // // // // CONTACT // // // // // // // // // // // // */
#contact h2{
    /* padding-left: 5%; */
}

#contact .textBox span{
    width: 100%;
}
#contact .textBox .contactWrap{
    /* width: 100%; */
    max-width: 800px;
    margin-left: 5%;
}
@media screen and (max-width:959px){
    #contact .textBox span{
        margin: 0 auto;
    }
    #contact .textBox .contactWrap{
        margin-left: 0%;
    }
}
.contactBtn, .contactBtnSp {
    position: fixed;
    z-index: 2;
    right: 70px;
    background-color: #AE3A2E;
    padding: 9px 10px 8px 11px;
    width: 70px;
    cursor: pointer;
}
/* .contactBtn:hover{
    background-color: #000;
    transition: ease .5s;
} */
 /* 左から流れるhover設定 */
.contactBtn:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: #000;
    width: 100%;
    height: 100%;
    transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transform: scale(0,1);
    transform-origin: right top;
}
.contactBtn:hover:before{
    transform-origin: left top;
    transform: scale(1,1);
}

.contactBtn svg, .contactBtnSp svg{
    width: 100%;
    color:#000;
    position: relative;
    z-index: 3;
    transition: all .5s ease-in-out;
}

.contactBtn:hover svg{
    fill: #AE3A2E;
}

@media screen and (max-width:599px){
    .contactBtnSp{
        right: 70px;
        padding: 2px 5px;
        width: calc(100vw - 70px);
        height: 70px;
        border-top: 3px solid #000;
        border-right: 3px solid #000;
        /* background-color: #000; */
    }
    .contactBtnSp a{
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 100%;
    }
    .contactBtnSp p{
        margin: 0 auto;
        color: #000;
        letter-spacing: 0.08em;
        font-weight: 600;
    }
    .contactBtnSp svg{
        width: 20%;
        color:#fff;
        position: relative;
        z-index: 3;
        transition: all .5s ease-in-out;
        padding: 5px;
    }


}
/* -- form#mail_form, dl, dt, dd -------------------------------------------------------------------------------- */

form#mail_form * {
	margin: 0;
	box-sizing: content-box;
}

form#mail_form {
	/* width: 1000px; */
	margin: 50px auto;
	/* background: #ffffff; */
	border: 1px solid #cccccc;
	border-radius: 7px;
	/* box-shadow: 0 0 7px rgba( 0, 0, 0, 0.2 ); */
	line-height: 1.8;
    padding: 30px 0;
}

form#mail_form dl {
	width: 90%;
	margin: 0 auto;
	/* border-bottom: 1px solid #cccccc; */
}

form#mail_form dl:after,
form#mail_form dl dt:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

form#mail_form dl dt {
	width: 30%;
	float: left;
	/* padding: 35px 0 25px; */
	padding: 15px 0 15px;
	text-align: right;
    line-height: 1.4;
}

form#mail_form dl dd {
	width: 65%;
	float: right;
	/* padding: 30px 0 25px 5%; */
	padding: 15px 0 15px 4%;
}

form#mail_form dl dt i {
	float: left;
	position: relative;
	top: -2px;
    padding: 2px 3px;
}


/* -- span.required, span.optional -------------------------------------------------------------------------------- */

form#mail_form dl dt span.required,
form#mail_form dl dt span.optional {
	display: inline-block;
	font-size: 70%;
	color: #fff;
	/* padding: 4px 10px; */
    padding: 2px 5px 2px 0px;
	border-radius: 3px;
    width: 40px;
}

form#mail_form dl dt span.required {
	/* background: #d9534f;
	border: 1px solid #d43f3a; */
    background-color: #d43f3a;
    color: #fff;
    text-align: center;
    /* padding: 3px 5px 3px 1px; */
}

form#mail_form dl dt span.optional {
	/* background: #337ab7;
	border: 1px solid #2e6da4; */
    background-color: #2e6da4;
    color: #fff;
    text-align: center;
    /* display: none; */
}


/* -- error message -------------------------------------------------------------------------------- */

form#mail_form dl dd span.error_blank,
form#mail_form dl dd span.error_format,
form#mail_form dl dd span.error_match {
	display: block;
	/* color: #ff0000; */
    color: #222;
	/* margin-top: 5px; */
}




/* -- loading -------------------------------------------------------------------------------- */

div.loading-layer {
	width: 100vw;
	height: 100vh;
	background: rgba( 0, 0, 0, 0.7 );
	position: fixed;
	left: 0px;
	top: 0px;
	z-index: 10000;
}

span.loading {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border-top: 5px solid rgba( 255, 255, 255, 0.2 );
	border-right: 5px solid rgba( 255, 255, 255, 0.2 );
	border-bottom: 5px solid rgba( 255, 255, 255, 0.2 );
	border-left: 5px solid #ffffff;
	-webkit-transform: translateZ( 0 );
	-ms-transform: translateZ( 0 );
	transform: translateZ( 0 );
	-webkit-animation: load-circle 1.0s linear infinite;
	animation: load-circle 1.0s linear infinite;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -30px;
	margin-left: -30px;
}

@-webkit-keyframes load-circle {
	0% {
		-webkit-transform: rotate( 0deg );
		transform: rotate( 0deg );
	}
	100% {
		-webkit-transform: rotate( 360deg );
		transform: rotate( 360deg );
	}
}

@keyframes load-circle {
	0% {
		-webkit-transform: rotate( 0deg );
		transform: rotate( 0deg );
	}
	100% {
		-webkit-transform: rotate( 360deg );
		transform: rotate( 360deg );
	}
}




/* -- input, select, textarea -------------------------------------------------------------------------------- */

form#mail_form input[type="text"],
form#mail_form input[type="email"],
form#mail_form input[type="tel"] {
	width: calc( 100% - 4% - 2px );
	padding: 7px 2%;
	border: 1px solid #cccccc;
	border-radius: 3px;
	background: #fafafa;
	-webkit-appearance: none;
	font-size: 16px;
	font-family: inherit;
	line-height: normal;
}

form#mail_form input[type="text"]:focus,
form#mail_form input[type="email"]:focus,
form#mail_form input[type="tel"]:focus,
form#mail_form textarea:focus {
	box-shadow: 0px 0px 5px #55ccff;
	border: 1px solid #55ccff;
	background: #ffffff;
}

form#mail_form ul li input[type="radio"],
form#mail_form ul li input[type="checkbox"] {
	margin: 0 10px 0 0;
}

form#mail_form select {
	padding: 7px 2%;
	border: 1px solid #fff;
    background-color: #fff;
    color: #aaa;
    border-radius: 3px;
	font-size: 16px;
	font-family: inherit;
	line-height: normal;
}

form#mail_form textarea {
	display: block;
	width: calc( 100% - 4% - 2px );
	height: 200px;
	padding: 7px 2%;
	resize: vertical;
	border: 1px solid #cccccc;
	border-radius: 3px;
	background: #fafafa;
	-webkit-appearance: none;
	font-size: 16px;
	font-family: inherit;
	line-height: normal;
}




/* -- ul, li -------------------------------------------------------------------------------- */

form#mail_form ul {
	list-style-type: none;
}

form#mail_form ul li label {
	display: block;
	margin-top: 10px;
	padding: 7px 2%;
	border-radius: 3px;
	background: #f0f0f0;
}

form#mail_form ul li:first-child label {
	margin-top: 0px;
}

form#mail_form ul li label:hover {
	cursor: pointer;
	background: #e0e0e0;
}




/* -- input design -------------------------------------------------------------------------------- */

form#mail_form input[name="company"] {
	width: 80%;
}

form#mail_form input[name="name_1"],
form#mail_form input[name="name_2"],
form#mail_form input[name="read_1"],
form#mail_form input[name="read_2"],
form#mail_form input[name="postal"],
form#mail_form input[name="phone"],
form#mail_form input[name="schedule"] {
	width: 30%;
}

form#mail_form input[name="mail_address"],
form#mail_form input[name="mail_address_confirm"] {
	width: 80%;
}

form#mail_form input[name="postal"] + a {
	display: inline-block;
	padding: 7px 20px;
	/* border: 1px solid #46b8da; */
	border-radius: 3px;
	background: #555;
	font-size: 16px;
	line-height: normal;
	color: #ffffff;
	text-decoration: none;
    transition: ease .2s;
}

form#mail_form input[name="postal"] + a:hover {
	cursor: pointer;
	background: #333;
	/* border: 1px solid #269abc; */
}




/* -- button -------------------------------------------------------------------------------- */

form#mail_form p#form_submit {
	width: 90%;
	margin: 0 auto;
	padding: 30px 0;
}

form#mail_form input[type="button"] {
	padding: 7px 20px;
	border-radius: 3px;
	background: #000;
	font-size: 16px;
	color: #ffffff;

	font-family: inherit;
	-webkit-appearance: none;
    transition: ease .2s;
}

form#mail_form input[type="button"]:hover {
	cursor: pointer;

	color: #AE3A2E;

}

form#mail_form input[type="button"] {
	margin-left: 35%;
}








/* -- responsive ----------------------------------------------------------------------------------------------------------------------- */

/* 1000pixel start */
@media screen and ( max-width: 959px ) {


/* -- form#mail_form, dl, dt, dd -------------------------------------------------------------------------------- */

form#mail_form {
	width: 94%;
	font-size: 100%;
    margin-right: 4%;
    margin: 10px auto;
}

form#mail_form dl dt {
	width: auto;
	float: none;
	/* padding: 25px 0 10px; */
	padding: 5px 0 10px;
	text-align: left;
	/* font-weight: bold; */
}

form#mail_form dl dd {
	width: auto;
	float: none;
	/* padding: 0px 0 20px 0px; */
	padding: 0px 0 10px 0px;
}

form#mail_form dl dt i {
	float: none;
	position: static;
	font-weight: normal;
    padding: 2px 3px;
    /* background-color: #fff; */
    width: 40px;
    margin-left: 10px;
}




/* -- span.required, span.optional -------------------------------------------------------------------------------- */

form#mail_form dl dt span.required,
form#mail_form dl dt span.optional {
	margin: 0 15px 0 0;
    width: 40px;
}




/* -- input design -------------------------------------------------------------------------------- */

form#mail_form input[name="phone"],
form#mail_form input[name="schedule"] {
	width: 60%;
}




/* -- button -------------------------------------------------------------------------------- */

form#mail_form p#form_submit {
	padding: 25px 0;
}

form#mail_form input[type="button"] {
	margin-left: 0;
}


}
/* 1000pixel end */


/* // // // // // // // // // // // // // // // // // // // // // // // // // */

/* // // // // // // // // // // // // FOOTER // // // // // // // // // // // // */
footer{
    color: #fff;
    padding: 10% 5%;
    float: right;
}
footer img{
    width: 100%;
    max-width: 500px;
    margin-left: -3%;
}
@media screen and ( max-width: 959px ){
    footer{
        padding: 10% 5% 30% 3%;
    }
}
/* // // // // // // // // // // // // // // // // // // // // // // // // // */



/* // // // // // // // // // // // // // // // // // // // // // // // // // */
/* // // // // // // // // // // // // THANKS PAGE // // // // // // // // // // // // */
/* // // // // // // // // // // // // // // // // // // // // // // // // // */

#thanksPage .headerWrap{
    background-color: #000;
}
#thanksPage #thanks{
    padding: 10vw 0 5vw;
}
#thanks .thanksBox{
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 0;
    line-height: 2;
}
#thanks h2{
    font-size: clamp(4rem, 5vw, 5rem);
}
#thanks .thanksBox .textBox{
    padding: 0;
}

#thanks .thanksBox .textBox a p{
    border: 1px solid #000;
    background-color: #000;
    color: #fff;
    font-weight: 200;
    margin-top: 40px;
    width: 250px;
    text-align: center;
}

/* // // // // // // // // // // // // // // // // // // // // // // // // // */
/* // // // // // // // // // // // // // // // // // // // // // // // // // */
/* // // // // // // // // // // // // // // // // // // // // // // // // // */
