@charset "UTF-8";



body, html{
	margin: 0;
	padding: 0;
	height: 100%;

}

body{
	font-family: fot-tsukuardgothic-std, sans-serif;
    font-weight: 400;
    font-style: normal;
}

img {
    max-width: 100%;
    height: auto;
}



.fv{
   position: relative;
	width: 100%;
   height: 100vh;
	max-height: 2000px;
   overflow: hidden;
   
	
}

.fv::before{
	content: "";
	position: absolute;
	 top:0;
    left: 0;
    width: 100%; /* 最低限画面いっぱいに広がるように */
	height:100%;
    min-height: 100%; /* 最低限画面いっぱいに広がるように */
    background: url('../images/main0401.png') center center no-repeat;
    background-size: cover; /* 画面いっぱいに表示 */
    z-index: -1; /* コンテンツより背面に配置 */
	
}



/*========= ナビゲーションドロップダウンのためのCSS ===============*/
.drawer_menu {
   display: none;
}


/*==ナビゲーション全体の設定*/
#header{
　font-family: katarine-web, sans-serif;
font-weight: 400;
font-style: normal;
  height: 15%;
 display: flex;
 justify-content: space-between;
  align-items: center;
  width: 100%;
  background:#ffffff80;
  color:#000000;
  text-align: center;
	padding: 2%;
	position: fixed; /* ウィンドウを基準に画面に固定 */
    top: 0; /* 上下の固定位置を上から0pxにする */
    left: 0; /* 左右の固定位置を左から0pxにする */
	z-index: 999;
}

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


.image-vw-logo{
	width: 10%;
}

.bold{
	font-family: katarine-web, sans-serif;
font-weight: 400;
font-style: normal;
	color: black;
}

.pc-nav{
	margin: 0 0 0 auto;
}
/*ナビゲーションを横並びに*/
.pc-nav ul{
  list-style: none;
  display: flex;
  justify-content: center;
}

/*2階層目以降は横並びにしない*/
.pc-nav ul ul{
  display: block;
}

/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
.pc-nav ul li{
  position: relative;
}

/*ナビゲーションのリンク設定*/
.pc-nav ul li a{
  display: block;
  text-decoration: none;
  color: #666;
  padding:20px;
  transition:all 0.3s;
}

/*ホバーした時の1層目の色*/
.pc-nav ul li.current a,
.pc-nav ul li a:hover{
  color:#000000; 
}



/*== 2・3階層目の共通設定 */

/*下の階層を持っているulの指定*/
.pc-nav li.has-child ul{
    /*絶対配置で位置を指定*/
  position: absolute;
  left:0;
  top:12vh;
  z-index: 4;
    /*形状を指定*/
  background:#ffffff80;
  width:180px;
    /*はじめは非表示*/
  visibility: hidden;
  opacity: 0;
    /*アニメーション設定*/
  transition: all .3s;
}

/*hoverしたら表示*/
.pc-nav li.has-child:hover > ul,
.pc-nav li.has-child ul li:hover > ul,
.pc-nav li.has-child:active > ul,
.pc-nav li.has-child ul li:active > ul{
  visibility: visible;
  opacity: 1;
}

/*ナビゲーションaタグの形状*/
.pc-nav li.has-child ul li a{
  color: #666;
  border-bottom:solid 1px rgba(255,255,255,0.6);
}

.pc-nav li.has-child ul li:last-child > a{
 border-bottom:none;
}

.pc-nav li.has-child ul li a:hover,
.pc-nav li.has-child ul li a:active{
	color: #fff;
  background:#666;
}



/*SNSアイコン*/

.insta{
	width: 3vw;
	position: absolute;
	top: 45%;
	left:5%;
	
	transition: .3s;
}

.insta:hover{
	box-shadow: 0 15px 30px -5px rgba(0,0,0,.15), 0 0 5px rgba(0,0,0,.1);
	transform: translateY(-4px);
}
.x{
	width: 3vw;
	position: absolute;
	top: 55%;
	left: 5%;
	
	transition: .3s;
}

.x:hover{
	box-shadow: 0 15px 30px -5px rgba(0,0,0,.15), 0 0 5px rgba(0,0,0,.1);
	transform: translateY(-4px);
}

/*スクロールダウン*/
.scroll_down{
  position:absolute;
  top: 60%;
  right: 5%;
}

.scroll_down a{
  position: absolute;
  left: 10px;
  bottom: 87px;
  color: #000;
  font-size: 14px;
  letter-spacing: .2em;
  writing-mode: vertical-lr;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll_down:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background:#000;
  animation:
    circlemove 1.6s ease-in-out infinite,
    cirlemovehide 1.6s ease-out infinite;
}

@keyframes circlemove{
  0%{bottom:160px;}
  100%{bottom:0px;}
}

@keyframes cirlemovehide{
  0%{opacity:0}
  50%{opacity:1;}
  80%{opacity:0.9;}
  100%{opacity:0;}
}

.scroll_down:after{
  content:"";
  position: absolute;
  bottom:0;
  left:0;
  width:2px;
  height: 160px;
  background:#000;
}


.banner_green_pc{
	position: fixed; /* 追従させる為にfixedの値を記述します */
z-index: 99999; /* 他の要素の下に隠れないように全面配置させます */
	top: 25%;
	right: 0%;
	height: 18vh;
	width: 3vw;
}

.banner_red_pc{
	position: fixed; /* 追従させる為にfixedの値を記述します */
z-index: 99999; /* 他の要素の下に隠れないように全面配置させます */
	top: 45%;
	right: 0%;
	width: 3vw;
}

.banner_yellow_pc{
	position: fixed; /* 追従させる為にfixedの値を記述します */
z-index: 99999; /* 他の要素の下に隠れないように全面配置させます */
	top: 65%;
	right: 0%;
	width: 3vw;
}
/*========私たちについて=======*/
.sp-aboutus{
	display: none;
}

.image-title01{
	margin-left: 7%;
	margin-top: 7%;
}


h2{
	font-family: fot-tsukuardgothic-std, sans-serif;
font-weight: 700;
font-style: normal;
	font-size: 2rem;
	text-align: center;
	color: #48483A;
	
}

.nayami{
	animation-timeline: view();
	position: relative;
	top: 10%;

} 

.nayami01{
	position: absolute;
	top: 5%;
	left: 5%;
	width: 20vw;
	
	animation-name: fadeIn500ms;
    animation-delay: 500ms;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    transform: translateX(50px);
    opacity: 0;
}
@keyframes fadeIn500ms {
    0% {
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
.nayami02{
	position: absolute;
	right: 5%;
	width: 20vw;
	
	animation-name: fadeIn1s;
    animation-delay: 1s;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    transform: translateY(-50px);
    opacity: 0;
}
@keyframes fadeIn1s {
    0% {
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
.nayami03{
	position: absolute;
	top: 70%;
	left: 5%;
	width: 20vw;
	
	animation-name: fadeIn1500ms;
    animation-delay: 1500ms;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    transform: translateY(50px);
    opacity: 0;
}
@keyframes fadeIn1500ms {
    0% {
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
.nayami04{
	position: absolute;
	top: 60%;
	right: 5%;
	width: 20vw;
	
	animation-name: fadeIn2s;
    animation-delay: 2s;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    transform: translateX(-50px);
    opacity: 0;
}

@keyframes fadeIn2s {
    0% {
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}


/*ピンクの枠*/
.image-vw-heisya{
	position: relative;
	width: 38vw;
    left: 31%;
	margin-top: 5vh;
	
	
	animation: scroll-anim 4s linear;
  animation-timeline: view();
  animation-range: entry 0% contain 20%;
}

@keyframes scroll-anim {
  from {
    opacity: 0;
    scale: 0.8;
  }
  to {
    opacity: 1;
    scale: 1;
  }
}


.omakase{
	margin-left: 32.5%;
	width: 35vw;
}
.sankou{
	margin-left: 41%;
	margin-bottom: 5vh;
	width: 20vw;
}


/*========選ばれる3つの理由=======*/
.img-wrap-sp{
	display: none;
}

.flex-container {
  display: none;
}

.flex-item {
	display: none;
}

.sp-taiou{
	display: none;
}
.midashi .image-title02, .image-vw-pinkwi{
	display: inline-block;
    vertical-align: top;
}

.image-title02{
	margin-left: 7%;
}


.image-vw-pinkwi{
	margin-left: 29%;
	margin-top: 3%;
	width: 23%;
}


.img-wrap {
  opacity: 0;
}

.img-animation {
  animation: img-opacity 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  overflow: hidden;
  position: relative;
}

.img-animation::before {
  animation: img-animation 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: #fff;
  content: '';
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

@keyframes img-opacity {
  100% {
    opacity: 1;
  }
}

@keyframes img-animation {
  100% {
    transform: translateX(100%);
  }
}

.taiou{
	margin-left: 3%;
	margin-right: 8%;
	margin-bottom: 10%;
}

.taiou-icon{
	display: flex;
	list-style: none;
}


.taiou-icon img{
	position: relative;
}

.taiou-icon img:hover{
	top: -10px;
	transition: 0.5s;
}

/*-----------他社比較-------*/
.image-title06{
	margin-left: 7%;
}

.sp-tasya{
	display: none;
}

.tasya{
	text-align: center;
	margin-bottom: 10%;
}



/*========プランと費用=======*/
.spcpnow{
	display: none;
}

.sp-planprice{
	display: none;
}

.sp-opmitsumori{
	display: none;
}
.image-title03{
	margin-left: 7%;
	margin-bottom: -3vw;
}

.hiyou{
	margin-left:13%;
	margin-top: 1%;
}

.cp{
	width: 30%;
}

.cp img{
	margin-left: 60vw;
	margin-bottom: -8vw;
}
.hiyou .hiyou-img{
	display: inline-block;
	vertical-align: top;
margin-top: 3vw;
margin-bottom: 3vw;
}


.hiyou img{
	width: 70vw;
	top: 10%;
	left: 7%;
	
	 animation: slidein 3s forwards;
  animation-timeline: view();
	
}



@keyframes slidein {
  0% {
    transform: translateX(-150px);
  }
  100% {
    transform: translateX(0);
  }
}


.plan{
	width: 80vw;
}

.kochiramoji{
	width: 20%;
	margin-right: 10%;
}

.jissou{
	width: 80vw;
}

.kinou{
	width: 80vw;
}

.ichiran{
	width: 10%;
	margin-right: 10%;
}

.mitsumori{
	display: flex;
	list-style: none;
	margin-left: 25%;
	margin-bottom: 10%;
}





.mitsumoributton{
	width: 40vw;
	justify-content: center;
	margin-left: 5%;
	margin-top: 5%;
	
	animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-duration: 1.5s;
	animation-name: poyopoyo;
}

@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1.0);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}


/*--------料金比較----*/
.image-title07{
	margin-left: 7%;
}

.sp-hikaku{
	display: none;
}
.p-hikaku{
	text-align: center;
	margin-bottom: 10%;
}

/*========導入の流れ=======*/
.sp-steps{
	display: none;
}
.image-title04{
	margin-left: 7%;

}

.steps li {
    list-style: none;
	margin-left: 2%;
  }

.steps ul {
  display: flex;
	justify-content: center;
}

.steps img{
	width: 25vw;
	transition: 1s all;
}

.steps img:hover{
	transform: scale(1.1,1.1);
	transition: 1s all;
}

.st02{
	margin-bottom: 10%;
}

/*=========こんな方におすすめ========*/
.recommend-sp{
	display: none;
}
.recommend-title{
	width: 100vw;
	margin-bottom: 3vw;
}
.container{
	display: flex;
	justify-content: space-around;
	margin-left: 20vw;
	margin-right: 20vw;
}

.container img{
	width: 18vw;
	height: auto;
}

.recommend p{
	font-family: fot-tsukuardgothic-std, sans-serif;
    font-weight: 700;
	font-style: normal;
	font-size: 1.3vw;
	margin-left: 31vw;
	margin-right: 30vw;
	margin-top: 2vw;
	margin-bottom: 2vw;
}

.people{
	width: 80vw;
	margin-left: 10vw;
	margin-right: 10vw;
	margin-bottom: 2vw;
}

.recommend-phrase{
	width: 70vw;
	margin-left: 15vw;
	margin-right: 15vw;
	margin-bottom: 2vw;
}
/*===========FAQ============*/

.faq{
	background-image: url(../images/YELLOW_メイン透明度18％.png),url("../images/PINK_メイン透明度18%.png");
	background-position: right, left;
	background-size: 30%,30%;
}
.image-title05{
	margin-left: 7%;
}

/*アコーディオン全体*/
.faq-area{
	font-family: fot-tsukuardgothic-std, sans-serif;
font-weight: 700;
font-style: normal;
    list-style: none;
    width: 80%;
    max-width: 2000px;
   margin:0 auto;
}

.faq-area li{
	float: none;
    margin: 10px 0;
	background: #F2F2F2;
}

.faq-area section {
  border: 1px solid #ccc;
}

/*アコーディオンタイトル*/
.title {
	font-family: fot-tsukuardgothic-std, sans-serif;
font-weight: 700;
font-style: normal;
	color: #48483A;
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:1.6rem;
   padding: 3% 3% 3% 50px;
    transition: all .5s ease;
}


/*アイコンの＋と×*/
.title::before,
.title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #333;
    
}
.title::before{
    top:48%;
    right: 10%;
    transform: rotate(0deg);
    
}
.title::after{    
    top:48%;
    right: 10%;
    transform: rotate(90deg);

}
/*　closeというクラスがついたら形状変化　*/
.title.close::before{
  transform: rotate(45deg);
}

.title.close::after{
  transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
    display: none;/*はじめは非表示*/
    background: #ffffff;
  margin:0;
    padding: 3%;
	font-size: 1.6rem;
	color: #48483A;
}

.box p{
	margin-left: 1%;
}


/*===========フッター============*/

.footer{
	font-family: katarine-web, sans-serif;
font-weight: 400;
font-style: normal;
	background-image: url("../images/BLUE_18％.png"),url("../images/RED_18％.png");
	background-position: top right, left;
	background-size: 30%, 30%;
}

.footer h3{
	font-family: fot-tsukuardgothic-std, sans-serif;
    font-weight: 400;
    font-style: normal;
	font-size: 1.6vw;
	line-height: 2vh;
	margin-bottom: 3vh;
}

.foot-wrap .menu01, .menu02, .menu03, .menu04 {
	font-size: 1vw;
	display: inline-block;
    vertical-align: top;
    width: 20%;
    margin: 50px auto;
}

.foot-wrap ul {
    list-style: none;
    padding: 0;
    line-height:40px;
}

.foot-wrap {
    text-align: center;
	margin-bottom: 5%;
}

.foot-wrap a {
	font-family: fot-tsukuardgothic-std, sans-serif;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    color: #48483A;
}
.foot-wrap a:hover{
	text-decoration: underline;
	color: #48483A;
}
/*Contact*/

.contactbox {
	font-family: fot-tsukuardgothic-std, sans-serif;
font-weight: 400;
font-style: normal;
	margin-left: 30%;
	margin-bottom: 10%;
	padding: 3%;
border: #000000 1px solid; /*境界線の指定*/
width:40%;
text-align: center;
}



/*運営元*/
.company{
	display: flex;
  justify-content: center;
	margin-bottom: 2%;
	font-size: 1vw;
}
.company .company-img, .company-3steps{/*画像と3段を横並びに*/
	display: inline-block;
    vertical-align: top;

}

.company-img{
	width: 13vw;
}


.company-3steps{
	margin-left: 2%;
}

.company01{
	font-family: fot-tsukuardgothic-std, sans-serif;
font-weight: 400;
font-style: normal;
}

.company02 li{/*横並びに*/
	font-family: fot-tsukuardgothic-std, sans-serif;
font-weight: 400;
font-style: normal;
	display: inline-block;
    vertical-align: top;
	
}

.company02 li+ li {/*隣との間の縦線*/
  border-left: 1px solid #333;
  padding: 0 10px;
}

.company03 li{
	font-family: fot-tsukuardgothic-std, sans-serif;
font-weight: 400;
font-style: normal;
	
	display: inline-block;
    vertical-align: top;
	margin-top: 4%;
	margin-right: 4%;
}

/* copyright */
.footer-copyright {
  padding: 1rem;
  line-height: 1;
  color: #48483A;
  text-align: center;
  background: #FFEB3E;
}

.footer-copyright a {
  text-decoration: none;
  color: #48483A;
}

@media screen and (max-width: 767px) { /*ウィンドウ幅が最大767pxまでの場合に適用*/
	body, html{
	margin: 0;
	padding: 0;
	height: 100%;

}
body{
	font-family: fot-tsukuardgothic-std, sans-serif;
    font-weight: 400;
    font-style: normal;
}

img {
    max-width: 100%;
    height: auto;
}


#header{
	background: none;
        z-index: 99;
}

.image-vw-logo{
	width: 23vw;
	margin-left: 3%;
	margin-top: -4%;
}	
	
.fv{
   position: relative;
	width: 100%;
   height: 100vh;
	max-height: 2000px;
   overflow: hidden;
   
	
}

.fv::before{
	content: "";
	position: absolute;
	 top:0;
    left: 0;
    width: 100%; /* 最低限画面いっぱいに広がるように */
	height:100vh;
    min-height: 100vh; /* 最低限画面いっぱいに広がるように */
    background: url('../images/main.png') center center no-repeat;
    background-size: cover; /* 画面いっぱいに表示 */
    z-index: -1; /* コンテンツより背面に配置 */
	
}
	
/*~~~~~ハンバーガー---*/
 .pc-nav {
      display: none;
   }
	
	.drawer_menu{
		display: block;
	}
.drawer_bg{
	display: block;	
}

.drawer_button{
	display: block;
}
.drawer_nav_wrapper{
	display: block;	
}
/*
Zarigani Design Office Drawer Menu
Copyright 2018 Zarigani Design Office
Customized by minimalgreen

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

.drawer_menu a {
	color: #000;
	text-decoration: none;
}

.drawer_menu a:visited {
	color: #000;
}
	
.pc-hidden {
	display: none;
	text-align: center;
}
	
/* ドロップダウンメニュー2階層目 */
	.drawer_menu .drawer_nav li ul.second-level {
		visibility: hidden;
		list-style-type: none;
		position: absolute;
		z-index: -1;
		top: 0;
		margin: 0;
		padding-left: 0;
	}

	.drawer_menu .drawer_nav li:hover ul.second-level {
		visibility: visible;
		z-index: 1;
		top: 10px;
		/* PC用メニューの高さに合わせる */
		transition: all .3s;
	}
.drawer_menu .drawer_nav li:hover ul.second-level li {
		width: 230px;
		/* ドロップダウンメニューボタン横幅 */
		height: 40px;
		/* Pドロップダウンメニューボタン高さ */
	}

	.drawer_menu .drawer_nav li:hover ul.second-level li a {
		display: block;
		background-color: #ffffff80;
		/* ドロップダウンメニューの文字の背景色 */
		color: #000;
		/* ドロップダウンメニューの文字色 */
		font-size: 90%;
		text-decoration: none;
		line-height: 40px;
		/* Pドロップダウンメニューボタン高さ */
	}
	
	.drawer_menu .drawer_nav li:hover ul.second-level li a:hover {
		background-color: #999;
		/* ドロップダウンメニューマウスホバー背景色 */
	}

	.touch-btn {
		color: #fff;
		margin-left: 5px;
	}
	
.drawer_menu .drawer_button {
	color: #000;
	/* ハンバーガーメニュー文字色 */
	display: none;
}

.drawer_menu .drawer_button .drawer_bar {
	background-color: #000;
	/* ハンバーガーメニュー三本線の色 */
}

.drawer_menu .drawer_bg {
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 999;
	background-color: transparent;
	display: none;
	top: 0;
	left: 0;
}

.drawer_menu .drawer_button {
	display: block;
	background-color: transparent;
	color: #000;
	border: none;
	padding: 5px;
	width: 50px;
	letter-spacing: 0.1em;
	cursor: pointer;
	position: fixed;
	top: 10px;
	right: 10px;
	z-index: 1001;
	text-align: center;
	outline: none;
}
	
.drawer_menu .drawer_button.active .drawer_bar {
		width: 40px;
	}

	.drawer_menu .drawer_button.active .drawer_bar1 {
		transform: rotate(30deg);
	}

	.drawer_menu .drawer_button.active .drawer_bar2 {
		opacity: 0;
	}

	.drawer_menu .drawer_button.active .drawer_bar3 {
		transform: rotate(-30deg);
	}

	.drawer_menu .drawer_button.active .drawer_menu_text {
		display: none;
	}

	.drawer_menu .drawer_button.active .drawer_close {
		display: block;
	}

.drawer_menu .drawer_bar {
		display: block;
		height: 2px;
		margin: 8px 2px;
		transition: all 0.2s;
		transform-origin: 0 0;
	}

	.drawer_menu .drawer_text {
		text-align: center;
		font-size: 10px;
	}

	.drawer_menu .drawer_close {
		letter-spacing: 0.08em;
		display: none;
	}

	.drawer_menu .drawer_menu_text {
		display: block;
	}

.drawer_menu .drawer_nav_wrapper {
		width: 250px;
		height: 100%;
		transition: all 0.2s;
		transform: translate(250px);
		position: fixed;
		top: 0;
		right: 0;
		z-index: 1000;
		background-color: #FFF;
		/* ドロワーメニュー内背景色 */
		overflow-x: hidden;
		overflow-y: auto;
	}

	.drawer_menu .drawer_nav {
		display: block;
		position: relative;
		margin-top: 40px;
	}

.drawer_menu .drawer_nav li {
		background-color: #fff;
		height: auto;
		line-height: 50px;
		/*  ドロワーメニューリスト項目高さ */
		position: relative;
		border-bottom: 1px solid #eee;
	}

	.drawer_menu .drawer_nav li a {
		background-color: #fff;
		/* ドロワーメニューリスト背景色 */
		color: #555;
		/* ドロワーメニューリスト文字色 */
		display: block;
		text-align: left;
		padding-left: 20px;
	}

	/* スマートフォン2階層目 */
	.drawer_menu .drawer_nav li:hover ul.second-level {
		display: block;
	}

.drawer_menu .drawer_nav li ul.second-level {
		display: none;
		position: relative;
		padding: 0;
		z-index: 1001;
	}

	.drawer_menu .drawer_nav li ul.second-level li a {
		padding-left: 40px;
	}

	.drawer_menu .drawer_nav_wrapper.open {
		transform: translate(0);
	}

	.drawer_menu.left .drawer_button {
		right: auto;
		left: 32px;
	}

	.drawer_menu.left .drawer_nav_wrapper {
		transform: translate(-250px);
		right: auto;
		left: 0;
	}
	
.drawer_menu.left .drawer_nav_wrapper.open {
		transform: translate(0);
	}

	.pc-hidden {
		text-align: center;
	}

	.touch-btn {
		color: #555;
		position: absolute;
		top: .25rem;
		right: 2%;
		display: block;
		z-index: 10;
		width: 50px;
		height: 50px;
		text-align: center;
		vertical-align: middle;
	}

/*SNSアイコン*/

.insta{
	width: 6vw;
	position: absolute;
	top: 4%;
	left: 60%;
        z-index: 99;
}

.x{
	width: 6vw;
	position: absolute;
	top: 4%;
	left: 70%;
        z-index: 99;
}
	
	
/*スクロールダウン*/
.scroll_down{
  position:absolute;
  top: 99%;
  right: 10%;
}

.scroll_down a{
  position: absolute;
  left: 10px;
  bottom: 87px;
  color: #000;
  font-size: 14px;
  letter-spacing: .2em;
  writing-mode: vertical-lr;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll_down:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background:#000;
  animation:
    circlemove 1.6s ease-in-out infinite,
    cirlemovehide 1.6s ease-out infinite;
}

@keyframes circlemove{
  0%{bottom:160px;}
  100%{bottom:0px;}
}

@keyframes cirlemovehide{
  0%{opacity:0}
  50%{opacity:1;}
  80%{opacity:0.9;}
  100%{opacity:0;}
}

.scroll_down:after{
  content:"";
  position: absolute;
  bottom:0;
  left:0;
  width:2px;
  height: 160px;
  background:#000;
}



.banner_green_pc{
	position: fixed; /* 追従させる為にfixedの値を記述します */
z-index: 99999; /* 他の要素の下に隠れないように全面配置させます */
	top: 15%;
	right: 0%;
	height: 18vh;
	width: 8vw;
}

.banner_red_pc{
	position: fixed; /* 追従させる為にfixedの値を記述します */
z-index: 99999; /* 他の要素の下に隠れないように全面配置させます */
	top: 35%;
	right: 0%;
	width: 8vw;
}

.banner_yellow_pc{
	position: fixed; /* 追従させる為にfixedの値を記述します */
z-index: 99999; /* 他の要素の下に隠れないように全面配置させます */
	top: 55%;
	right: 0%;
	width: 8vw;
}

/*========私たちについて=======*/

.image-title01{
	width: 40%;
	margin-left: 7%;
	margin-top: 7%;
}


h2{
	font-family: fot-tsukuardgothic-std, sans-serif;
font-weight: 700;
font-style: normal;
	font-size: 0.9rem;
	text-align: center;
	color: #48483A;
	
}


.nayami{
	display: none;
}
	
.kochira{
	display: none;
}

.sp-aboutus{
	display: block;
	text-align: center;
	}

.sp-omakase{
	width: 95%;	
	}
	
.sp-heisya{
	width: 80%;	
	}
	
.sp-sankou{
	width: 50%;	
	}
/*=========選ばれる3つの理由===*/
	.image-vw-pinkwi{
		display: none;
	}
	.taiou{
		display: none;
	}
	.image-title02{
	width: 55%;
	margin-left: 7%;
	margin-top: 7%;
}
	.img-wrap{
		display: none;
	}
	
	.img-wrap-sp{
		display: block;
	}
	
	.sp-01reason{
		margin-left: 40vw;
	}
	
	.sp-02reason{
		margin-top: -10vh;
		margin-right: 20vw;
	}
	
	.sp-03reason{
		margin-top: -5vh;
		margin-left: 40vw;
	}
	
	.sp-taiou{
		display: block;
		width: 20vw;
		margin-left: 7vw;
	}
	.flex-container {
         display: flex;
		 flex-wrap: wrap;
		 margin-left: 7vw;
}

.flex-item {
	display: flex;
	width: 15vw;
  margin: 5px;
}
/*=======他社比較====*/
	.image-title06{
	width: 30%;
	margin-left: 7%;
	margin-top: 7%;
}
	.tasya{
	display: none;
	text-align: center;
	margin-bottom: 10%;
}
	.sp-tasya{
		display: block;
		text-align: center;
		margin-top: 5vw;
	}
/*=========プランと費用=========*/
	
.hiyou{
	display: none;
}
	.cp{
		display: none;
	}
	
.plan{
	display: none;
}

.kochiramoji{
	display: none;
}
	
.jissou{
	display: none;
}
	
.ichiran{
	display: none;
}
	
.mitsumori{
	display: none;
}
	
.image-title03{
	width: 40%;
	margin-left: 7%;
	margin-top: 7%;
	margin-bottom: -8%;
}
	.spcpnow{
		width: 35vw;
		display: block;
	}
	
	.spcp{
		margin-left: 60vw;
		margin-bottom: -6%;
	}
.sp-planprice{
    display: block;
	text-align: center;
}

	.pricemoji{
		width: 80vw;
margin-top: 5vw;
	}	
.sp-plan{
	margin-top: 10%;
	margin-bottom: 10%;
}

.sp-jissou{
	margin-bottom: 10%;
}
	
.sp-opmitsumori{
	display: block;
	text-align: center;
	position: relative;
	top: 10%;
}

.sp-opmitsumori a{
	color: #48483A;	
}
.sp-opt{
	position: relative;
	width: 70%;
}

.sp-ichiran{
    position: absolute;
	top: 60%;
	left: 40%;
}
.sp-mitsumori{
	width: 70%;	
	margin-bottom: 5%;
	}
	
/*========料金比較======*/
	.image-title07{
	width: 30%;
	margin-left: 7%;
	margin-top: 7%;
}
	.p-hikaku{
		display: none;
	}
	
	.sp-hikaku{
		display: block;
		text-align: center;
	}
	
/*=======導入の流れ=====*/
	.image-title04{
	width: 35%;
	margin-left: 7%;
	margin-top: 7%;
}
	.steps{
		display: none;
	}
	
	.sp-steps{
		display: block;
		margin-left: 5vw;
		margin-right: 5vw;
		text-align: center;
	}
	
/*=========こんな方におすすめ========*/
	.recommend-pc{
		display: none;
	}
.recommend-sp{
	display: block;
}
.recommend-title-sp{
	width: 100vw;
	margin-bottom: 2vw;
}

.container-sp{
	width: 90vw;
	margin-left: 5vw;
}

.recommend-sp p{
	font-family: fot-tsukuardgothic-std, sans-serif;
    font-weight: 700;
	font-style: normal;
	font-size: 3vw;
	margin-left: 7vw;
	margin-right: 5vw;
	margin-top: 2vw;
	margin-bottom: 2vw;
}

.people-sp{
	width: 90vw;
	margin-left: 5vw;
	margin-bottom: 2vw;
}

.recommend-phrase-sp{
	width: 90vw;
	margin-left: 5vw;
	margin-bottom: 2vw;
}
/*======FAQ=======*/
	.image-title05{
	width: 15%;
	margin-left: 7%;
	margin-top: 7%;
}
	.faq{
	background-image: url(../images/YELLOW_メイン透明度18％.png),url("../images/PINK_メイン透明度18%.png");
	background-position: right, left;
	background-size: 50%,50%;
}

/*アコーディオン全体*/
.faq-area{
	font-family: fot-tsukuardgothic-std, sans-serif;
font-weight: 700;
font-style: normal;
    list-style: none;
    width: 80%;
    max-width: 2000px;
   margin:0 auto;
}

.faq-area li{
	float: none;
    margin: 10px 0;
	background: #F2F2F2;
}

.faq-area section {
  border: 1px solid #ccc;
}

/*アコーディオンタイトル*/
.title {
	font-family: fot-tsukuardgothic-std, sans-serif;
font-weight: 700;
font-style: normal;
	color: #48483A;
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:1rem;
   padding: 3% 3% 3% 10px;
    transition: all .5s ease;
}


/*アイコンの＋と×*/
.title::before,
.title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #333;
    
}
.title::before{
    top:48%;
    right: 5%;
    transform: rotate(0deg);
    
}
.title::after{    
    top:48%;
    right: 5%;
    transform: rotate(90deg);

}
/*　closeというクラスがついたら形状変化　*/
.title.close::before{
  transform: rotate(45deg);
}

.title.close::after{
  transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
    display: none;/*はじめは非表示*/
    background: #ffffff;
  margin:0;
    padding: 3%;
	font-size: 1rem;
	color: #48483A;
}

.box p{
	margin-left: 1%;
}

	
/*===========フッター============*/

.footer{
	font-family: katarine-web, sans-serif;
font-weight: 400;
font-style: normal;
	background-image: url("../images/BLUE_18％.png"),url("../images/RED_18％.png");
	background-position: top right, left;
	background-size: 50%, 50%;
}


.foot-wrap {
    display: none;
}

.
/*Contact*/

.contactbox {
	font-family: fot-tsukuardgothic-std, sans-serif;
font-weight: 400;
font-style: normal;
	margin-left: 3%;
	margin-bottom: 10%;
	padding: 3%;
border: #000000 1px solid; /*境界線の指定*/
width:100%;
text-align: center;
}

	.contactbox p{
		font-size: 0.7rem;
	}

/*運営元*/
.company{
	display: flex;
  justify-content: center;
	margin-bottom: 2%;
	font-size:0.7rem;
}
.company .company-img, .company-3steps{/*画像と3段を横並びに*/
	display: inline-block;
    vertical-align: top;

}

.company-img{
	width: 20vw;
}


.company-3steps{
	margin-left: 2%;
}

.company01{
	font-family: fot-tsukuardgothic-std, sans-serif;
font-weight: 400;
font-style: normal;
}

.company02 li{/*横並びに*/
	font-family: fot-tsukuardgothic-std, sans-serif;
font-weight: 400;
font-style: normal;
	display: inline-block;
    vertical-align: top;
	
}

.company02 li+ li {/*隣との間の縦線*/
  border-left: 1px solid #333;
  padding: 0 10px;
}

.company03 li{
	font-family: fot-tsukuardgothic-std, sans-serif;
font-weight: 400;
font-style: normal;

	display: inline-block;
    vertical-align: top;
	margin-top: 4%;
	margin-right: 4%;
}
	.company03 a{
		color: #48483A;
	}
/* copyright */
.footer-copyright {
  padding: 0.8rem;
  line-height: 1;
  color: #48483A;
  text-align: center;
  background: #FFEB3E;
}

.footer-copyright a {
  text-decoration: none;
  color: #48483A;
}	
}
