@charset "UTF-8";
@import url("grid.css");

:root { /* 色変更される場合は、#以降のカラーコードを変更してください IE非対応 */
    --base-color: #000;
    --link-color: #666;
    --linkhover-color: #999;
    --back-color: #f7f7f7;
    --border-color: #ccc;
    --white-color: #fff;
}

img {
	max-width:100%;
	height: auto;/*高さ自動*/
}

.logo_img{
	max-width: 50%;
	margin: auto;
	
}

@media screen and (min-width: 768px){
	
	.logo_img{
	max-width: 50%;
	
}
}


a {
    display:block;
    color: var(--link-color);
    text-decoration-line: none;
}
a:hover { 
    color: #F8FF61;
}

.sp_area{
	display: block;
}
.pc_area{
		display: none;
	}

@media screen and (min-width: 768px){
	.pc_area{
		display: block;
	}
	.sp_area{
	display: none;
}

}



/*ヘッダー
-------------------------------------*/
.header {
	display: flex;
    flex-direction: row;
	    margin: 20px 0;
}
.header-box {
	margin-left: auto;
	margin-top: 8px;
}
.contact-button {
	padding: 1rem;
	border: 2px solid var(--base-color);
}
nav ul {
	display: flex;
    flex-direction: row;
    justify-content: space-around;
    list-style: none;
	margin: 1rem 0 0 0;
}
nav li {
	flex: 1 0 auto;
}
nav li a {
    text-decoration: none;
    text-align: center;
    width: 100%;
}
nav a:hover {
    background-color: var(--back-color);   
}
nav a {
    padding: 0.5rem;
}

@media screen and (min-width: 768px){
/* PC時はMENUボタンを非表示 */
#open,#close {
    display: none !important;
}

#navi {
    display: block !important;
}
}

@media screen and (max-width: 768px){
.header {
	flex-direction: column;
    margin-bottom: 0px;
}
.header #open,#close  {
    position: absolute;
    top: 20px;
    right: 12px;
}
nav ul {
	flex-direction: column;
}
.header li {
	padding-top: 0;
}
/* スマホ時はMENUボタンを表示 */
#open {
    display: block;
    background: url(../img/button.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    border: none;
    position: absolute;
    top: 20px;
    right: 12px;
}
#close  {
    display: block;
    background: url(../img/button2.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    border: none;
    position: absolute;
    top: 20px;
    right: 12px;
}
/* スマホ時はメニューを非表示 */
#navi {
    display: none;
}
}
    
/*メイン画像
-------------------------------------*/
.mainimg img {
    width: 100vw;
	box-shadow: 2px 2px 5px #bebcbc;
}

/*メインコンテンツ
-------------------------------------*/
main {
    margin: 0 0 0 0;
}
section {
	margin:0;
	padding:0 0 25px;
}
.gray-back {
	background-color: var(--back-color);
}

/*キャッチコピー
-------------------------------------*/
.catch {
    text-align: center;
}
.catch h2 {
    padding-bottom: 2rem;
	line-height: 1.3;
	color: #59382a;
}

.catch_tit {
	    width: 75%;
    text-align: left;
    margin: auto;
    margin-bottom: 10px;

}
.under {
    border-bottom: 0.5rem dotted #e1be0b;
    padding:0 0 0.5rem;
}

@media screen and (max-width: 640px) {
	
	
	
	
	.under {
    border-bottom: 0.5rem dotted  #e1be0b;
    padding:0 0 0.5rem;
	font-size:1em;
}
	
	
	
	.catch_tit {
	    width: 95%;
    text-align: left;
    margin: auto;
    margin-bottom: 10px;

}
	
}
.center {
	text-align: center;
	margin-bottom: 4rem;
}

h2 {
  position: relative;
  padding: 1rem 2rem 2rem;
	font-weight: bold;
	color: #59392b;
}

@media screen and (max-width: 640px) {
	h2 {
  position: relative;
  padding: 1rem 0 2rem;
	font-weight: bold;
}
	
	}

h2:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  content: '';
  border-radius: 3px;
  background-image: -webkit-gradient(linear, right top, left top, from(#f8bcbf), to(#e7b8f8));
  background-image: -webkit-linear-gradient(right, #f8bcbf 0%, #e7b8f8 100%);
      background-image: linear-gradient(to left, #eecf0c 0%, #ae7f09 100%);

}
.marker5a-pink {
	position: relative;
}
.marker5a-pink:before{
	background: repeating-linear-gradient(-45deg, #FFE2EF, #FFE2EF 3px, #fff 0, #fff 6px);
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: -2;
}
.marker5a-pink:after{
	background: linear-gradient(rgba(255,255,255,1) 60%, rgba(255,255,255,0) 0%);
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: -1;	
}

.f_r_img{
	float: right; width: 40%;
}

.f_l_img{
	float: left; 
	width: 30%; 
	margin: 0 30px 5px 0;
}



@media screen and (max-width: 640px) {
	
.f_r_img{
	float: none;
	width: 100%;
}
	
.f_l_img{
	float: none; 
	width: 100%; 
	margin-bottom:10px;
}


}




/*申し込みの流れ
-------------------------------------*/
.flow.row {
	margin-bottom: 3rem;
}

/*フッター
-------------------------------------*/
footer {
    background-color: #fff1d9; 
    padding: 3rem 0;
}
footer h4 {
    border-bottom: 1px solid #5a3a2c;
}

/*お問い合わせ
-------------------------------------*/
.contact-box {
	border: 1px solid var(--border-color);
	text-align: center;
	padding: 2rem 0;
}
.table {
	margin: 4rem 0;
}
.table th {
	width: 250px;
}

/*コピーライト
-------------------------------------*/
.copyright {
    text-align: center;
    padding: 1rem 0;
    background-image: linear-gradient(to left, #eecf0c 0%, #ae7f09 100%);
}
.copyright a {
    color: var(--white-color);
    text-decoration: none;
	display: inline;
}

@media screen and (max-width: 640px) {
	.copyright {
		font-size:0.5em;
	}
	
}

/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
    position: fixed;
    bottom: 50px;
    right: 10px;
}
#pagetop a {
    display: block;
    background-color: #e3c006;
    color: var(--white-color);
    width: 60px;
    padding: 5px 10px;
    text-align: center;
}
#pagetop a:hover {
    background-color: var(--link-color);
}

/* 幅768px以下の表示
-------------------------------------*/
@media screen and (max-width: 768px){
	
/*ヘッダー
-------------------------------------*/
.header-box {
	display: none;
}	
/*お問い合わせ
-------------------------------------*/
.table th {
	width: 100%;
	display: block;
}	
.table td {
	display: block;
}
}

/*吹き出し線*/

.fuki {
	margin: 10px auto 30px; text-align: left; width: 75%;
    position: relative;
    padding: 15px;
    outline: 2px solid #999;
    outline-offset: 2px;
    background: #f9fcce;
     color: #59392b;
    font-size: 1.1em;
    font-weight: bold;
}

.fuki:before {
    position: absolute;
    top: calc(100% + 2px);
    left: 30%;
    height: 20px;
    width: 15px;
    background-color: white;
    border-right: 3px solid #999;
    content: "";
}

.fuki p {
    color: white;
    line-height: 1.5;
}


.box1:before{
  content: "\f0eb";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-right: 10px;
  color: #fd9534;
}

/*こんなお悩み*/

ul.nayami{
text-align: left;
  padding: 0;
  margin: auto;
  font: 14px/1.6 'arial narrow', sans-serif;
  width:100%;
  list-style: none;
}
ul.nayami li{
  position: relative;
  padding: 0.5em 1em 0.5em 1.65em;
  margin-bottom:5px;
  color: rgb(35 42 49);
  font-size: 1.8rem;
  font-weight: bold;
  /*border-bottom: 1px solid #6497ca;*/
}
ul.nayami li:after,
ul.nayami li:before{
  content: "";
  position: absolute;
  border-radius: 50%;
}
ul.nayami li:before{
  left: 0.2em;
  width: 17px;
  height: 17px;
  background: #dfbe0b;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
ul.nayami li:after{
  top: 1.1em;
  left: 0.7em;
  width: 14px;
  height: 14px;
  background: #c79e0d7a;
}

.box {
    background: #fdffdf;
    border-left: 8px dotted rgba(0,0,0,.1);
    box-shadow: 0 0 0 5 #f8f0d7;
    padding: 2em;
    margin: 50px auto 5px;
	width: 100%;
	background-image: url(../img/p00.png);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 35%;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.catch_txt{
	width: 70%; margin: auto;
	    padding: 50px 0 0;
}

.item-movie{
	    position: relative;
    width: 100%;
}

@media screen and (max-width: 768px){
	
	.fuki {width: 100%;}

.box {
    margin: 1em auto 5px;
	width: 90%;
	 background-position: bottom right;
            background-size: 50%;
        padding-bottom: 100px;
}
	
	.catch_txt{
	width: 90%; margin: auto;
}
	
	
ul.nayami li{
  position: relative;
  padding: 0.1em 0 0.5em 1.3em;
	}

ul.nayami li:before{
  left: 0em;
  top: 15%;
  
}
	
ul.nayami li:after{
  top: 1em;
  left: 0.4em;
	}

	
}

/**/
.marker1a-yellow {
	background: linear-gradient(#fff 60%, #fff286 0%);
	font-weight: bold;
}

.color-red{
	font-weight: bold;
	color: red;
}

.color-blu{
	font-weight: bold;
	color: #7140ee;
}

.color-bra{
	font-weight: bold;
	color: #59392b;
}


/*写真切り取り*/

.img_txt {
		
	    object-fit: cover;
	    border-radius: 30px;
	margin-left: 20px;
	}

.w_40{
	width: 40%;
}

@media screen and (max-width: 768px){
	
.img_txt {
		
	    object-fit: cover;
	    border-radius: 30px;
	    margin-left:0;
	    margin-bottom: 10px;
	}
	
.w_40{
	width: 80%;
}

}

/*ポップボタン*/
.btn-square-pop {
  position: relative;
  display: inline-block;
  padding: 1em 3em;
  text-decoration: none;
  color: #FFF;
 background: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #ddc56f 70%, #ce9c08 85%
85%, #B67B03 90% 100%);
  border-bottom: solid 2px #b77b02;/*少し濃い目の色に*/
  border-radius: 4px;/*角の丸み*/
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.2), 0 2px 2px rgba(0, 0, 0, 0.19);
  font-weight: bold;
}

.btn-square-pop:active {
  border-bottom: solid 2px #fd9535;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.30);
}

h4{
	font-weight: bold;
}

table{
  border-collapse: collapse;
  width: 100%;
}
.tb01 th,
.tb01 td{
  padding: 10px;
  border: solid 1px #ccc;
  text-align:left;
  box-sizing:border-box;
}
.tb01 th {
  text-align:center;
  background: #fdffdf;
  color: #434044;
  
}
@media screen and (max-width: 640px) {
  .tb01 {
    width: 100%;
  }
  table.tb01 th,
  table.tb01 td {
    display: block;
    width: 100%;
    border-bottom:none;
	  text-align: center;
  }
  .tb01 tr:last-child{
    border-bottom: solid 1px #ccc;
  }
}

.q_waku{
	
	margin:50px auto;width: 60%; text-align: left;
}
.q_list{
	padding: 30px; background-color: #fff; border: solid 1px #ccc; box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);     background-image: url(../assets/img/bg.png);background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 40%;
}

/*--レ点--*/

.checkmark001{
	padding-left:24px;
	position:relative;
}
.checkmark001:before,
.checkmark001:after{
	content:"";
	display:block;
	position:absolute;
}
.checkmark001:before{
	width:16px;
	height:16px;
	background:#ffffff;
    	border:1px solid #000000;
	left:0;top:2px;
}
.checkmark001:after{
	border-left:2px solid #ff0000;
	border-bottom:2px solid #ff0000;
	width:18px;
	height:5px;
	-webkit-transform:rotate(-45deg);
	transform:rotate(-45deg);
	left:5px;
	top:3px;
}

.q_bor{
	border-bottom: dashed 1px #ccc;
}

.koe_waku{
	width: 100%;
	margin: auto;
}

/*--お客様の声--*/
/* 全体 */
.sb-box {
  position: relative;
  overflow: hidden;
}

.staff_huki01{
	padding-bottom: 0px;
}


/* アイコン画像 */
.icon-img {
  position: absolute;
  overflow: hidden;
  top: 0; /* 画像の位置を上から0に */
  width: 100px; /* 画像の幅 */
  height:100px; /* 画像の高さ */
}
/* アイコン画像（左） */
.icon-img-left {
  left: 0; /* 画像の位置を左から0に */
}
/* アイコン画像（右） */
.icon-img-right {
  right: 0; /* 画像の位置を右から0に */
}
/* アイコン画像 */
.icon-img img {
  border-radius: 50% ;/* 画像を丸く表示する */
  border: 2px solid #eee;/* 画像の縁取りの太さとカラー */

}
/* アイコンネーム */
.icon-name {
    position: absolute;
    width: 100px;
    text-align: center;
    top: 100px;
    color: #000;
    font-size: 13px;
}
/* アイコンネーム（左） */
.icon-name-left {
  left: 0; /* ネームの位置を左から0に */
}
/* アイコンネーム（右） */
.icon-name-right {
  right: 0; /* ネームの位置を右から0に */
}
/* 吹き出し */
.sb-side {
  position: relative;
  float: left;
  margin: 0 30px 40px 120px /* 吹き出しの上下左右の余白 */
}

.sb-side2 {
  position: relative;
  float: left;
  /* margin: 0 30px 40px 120px 吹き出しの上下左右の余白 */
}
.sb-side-right {
  float: right;
}

.staff_fuki01{
	margin-right: 0; margin-bottom: 10px;
}


/* 吹き出し内のテキスト */
.sb-txt {
  position: relative;
  border: 2px solid #eee; /* 吹き出しの縁取りの太さとカラー */
  border-radius: 6px; /* 吹き出しを角丸に */
  background: #fff; /* 吹き出しの背景色 */
  color: #333; /* 吹き出し内のテキストのカラー */
  font-size: 16px; /* 吹き出し内のフォントサイズ */
  line-height: 1.9; /* 吹き出し内のテキストが2行以上になった時の行間 */
  padding: 18px; /* 吹き出し内の上下左右の余白 */
  text-align: left;
	
}
.sb-txt > p:last-of-type {
  padding-bottom: 0; /* 吹き出し内のテキストを改行した場合、最後のpタグにpadding-bottomをつけない */
  margin-bottom: 0; /* 吹き出し内のテキストを改行した場合、最後のpタグにmargin-bottomをつけない */
}
/* 吹き出しの三角 */
.sb-txt:before {
  content: "";
  position: absolute;
  border-style: solid;
  top: 16px; /* 吹き出し内の三角の位置 */
  z-index: 3;
	
}
.sb-txt:after {
  content: "";
  position: absolute;
  border-style: solid;
  top: 15px; /* beforeより-1px */
  z-index: 2; /* beforeより-1 */
	
}
/* 吹き出しの三角（左） */
.sb-txt-left:before {
  left: -7px;
  border-width: 7px 10px 7px 0;
  border-color: transparent #fff transparent transparent; /* 背景色と同じカラーに */

}
.sb-txt-left:after {
  left: -10px; /* beforeより-3px */
  border-width: 8px 10px 8px 0; /* beforeより上下+1px */
  border-color: transparent #eee transparent transparent; /* 縁取りと同じカラーに */
}
/* 吹き出しの三角（右） */
.sb-txt-right:before {
  right: -7px;
  border-width: 7px 0 7px 10px;
  border-color: transparent transparent transparent #fff; /* 背景色と同じカラーに */
}
.sb-txt-right:after {
  right: -10px; /* beforeより-3px */
  border-width: 8px 0 8px 10px; /* beforeより上下+1px */
  border-color: transparent transparent transparent #eee; /* 縁取りと同じカラーに */
}

.sb-pa-b{padding-bottom: 20px;}


.staff_fuki02{
	font-size:1.1em; padding: 10px;
}

/* 767px（iPad）以下 */

@media (max-width: 767px) {
	.okomari{
	width: 100%; 
	margin: 0px;
}
	
  /* アイコン画像 */
  .icon-img {
    width: 70px; 
    height: 70px; 
  }
	
.icon-img_staff {
    width: 100px; 
    height: 100px; 
  }
	
	
  /* アイコンネーム */
  .icon-name {
    width: 70px; /* 画像の幅に合わせて-20px */
    top: 65px; /* ネームの位置を上から62に */
    font-size: 12px; /* ネームのフォントサイズを-1px */
  }
	
	.icon-name_staff {
    width: 100px;
    top: 100px;
    font-size: 12px;
	}
	
  /* 吹き出し（左） */
  .sb-side-left {
    margin: 0 0 30px 78px; /* 吹き出し（左）の上下左右の余白を狭く */
  }
	
	.staff_fuki02{
	font-size:0.9em; padding: 10px;
}
  /* 吹き出し（右） */
  .sb-side-right {
    margin: 0 78px 30px 0; /* 吹き出し（右）の上下左右の余白を狭く */
  }
  /* 吹き出し内のテキスト */
  .sb-txt {
    padding: 12px; /* 吹き出し内の上下左右の余白を-6px */
  }
}
/*　スラッシュ　*/
.huki {
	position: relative;
	display: inline-block;
	padding: 0 2.5em;
}
.huki:before,
.huki:after {
	position: absolute;
	display: inline-block;
	content: '';
	top: 60%;
	width: 30px;
    height: 2px;
    background-color: #dae8a7;
	-webkit-transform: rotate(-60deg);
	transform: rotate(-60deg);
}
.huki:before {
	left:0;
}
.huki:after {
	right: 0;
}


.q_waku{
	
	margin:50px auto;width: 100%; text-align: left;
}
.q_list{
	padding: 30px; background-color: #fff; border: solid 1px #ccc; box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);     background-image: url(../img/bg.png);background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 40%;
}


.cp_qa01 {
  border-top: 1px solid #1b2538;
}
.cp_qa01 .cp_actab input {
  display: none;
}
/*質問テキスト*/
.cp_qa01 .cp_actab {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-bottom: 1px;
  color: #1b2538;
}
.cp_qa01 .cp_actab label {
  font-weight: bold;
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 0 0 0;
  padding: 1em 2em 1em 1em;
  cursor: pointer;
  border-bottom: 1px solid #1b2538;
}
.cp_qa01 .cp_actab .cp_actab-content p {
  margin: 1em;
}
.cp_qa01 .cp_actab label:hover {
  color: #7140ee;
}
.cp_qa01 .cp_actab input:checked ~ label {
  color: #7140ee;
}
/*答えテキスト*/
.cp_qa01 .cp_actab .cp_actab-content {
  overflow: hidden;
  max-height: 0;
  color: #000;
  background: rgb(251 252 206);
  transition: max-height 0.5s ease;
}
.cp_qa01 .cp_actab input:checked ~ .cp_actab-content {
  max-height: 40em;
}
/*▼アイコン*/
.cp_qa01 .cp_actab label::after {
  position: absolute;
  content: '';
  right: 10px;
  width: 15px;
  height: 10px;
  background: #1b2538;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  transition: all 0.5s ease;
}
.cp_qa01 .cp_actab label:hover::after {
  background: #00838F;
}
.cp_qa01 .cp_actab input[type=checkbox]:checked + label::after {
  transform: rotateX(180deg);
  background: #7140ee;
}
.que:before,.days:after {
    position: absolute;
    left: 0;
    width: 100%;
    height: 5px;
    content: '';
    background-image: -webkit-linear-gradient(315deg, #704308 0%, #ffce08 40%, #e1ce08 60%, #704308 100%);
    background-image: linear-gradient(135deg, #704308 0%, #ffce08 40%, #e1ce08 60%, #704308 100%);
}

.dots{
  text-emphasis: filled;
  -webkit-text-emphasis: filled;
	color: #5a3a2c;
    font-weight: bold;

}

.dots2{
  text-emphasis: filled;
  -webkit-text-emphasis: filled;
	color: #7140ee;
    font-weight: bold;

}


.jirei-box{
    padding: 2px 8px 15px;
    background: #fafcce;
    border-radius: 10px;
    margin-bottom: 10px;
}

.jirei-box img{
	width: 40%; margin: 0!important;
}

.flow_arrow {
    width: 100%;
    margin: 0 auto 10px;
    text-align: center;
}

.flow_arrow img{
	width: 5%;
}

.kakaku_th{
	width: 50%;
}

.kakaku_td{
	width: 50%;
	text-align: center!important;
}

.kakaku_tit{
	color: #5a3a2c;
	font-weight: bold;
	text-align: center;
}

.kakaku_h{
	text-align: center; width: 90%; margin: auto;
}

.kakaku_tb{
	width: 80%; margin: 20px auto 100px;
}

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


iframe[src*="youtube.com"],
iframe[src*="youtube-nocookie.com"] {
	aspect-ratio: 16 / 9;
	width: 100%;
	height: auto;
}

.logo_img_tit{
width: 25%;

}



@media (max-width: 640px) {
	
	.flow_arrow img {
    width: 20%;
	}
	
	ul.nayami li:after {
        top: 0.7em;
        left: 0.2em;
    }
	
	.box {
    padding: 2em 1em 90px;
	}

	.pa_top{
		padding-top: 20px;
	}
	
	.kakaku_tb {
    width: 100%;
	}
	
	.footer_sp{
		text-align: left;
    margin: 0 10px;
    font-size: 0.9em;
	}
	
.logo_img_tit{
width: 50%;
    margin-right: 10px;
    
}
	
	.mail_btn{
		width: 50px; margin-right: 10px;
	}


}


/*メニューをページ下部に固定*/
#sp-fixed-menu{
   position: fixed;
   width: 100%;
   bottom: 0px;
   font-size: 0;
   opacity: 0.9;
   z-index: 99;
}

/*メニューを横並びにする*/
#sp-fixed-menu ul{
   display: flex;
   list-style: none;
   padding:0;
   margin:0;
   width:100%;
}

#sp-fixed-menu li{
   justify-content: center;
   align-items: center;
   width: 85%;
   padding:0;
   margin:0;
   font-size: 14px;
   border-right: 1px solid #fff;
}

/*左側メニュー*/
#sp-fixed-menu li:first-child{
   background: #71236d;
}

/*左側メニュー*/
#sp-fixed-menu li:last-child{
   background: #b27b15;
}

/*ボタンを調整*/
#sp-fixed-menu li a{
   color: #fff;
   text-align: center;
   display:block;
   width: 100%;
   padding:15px 10px;
   text-decoration: none;
}
