@charset "UTF-8";
/* CSS Document */
/*////////// reset //////////*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-style:normal;
	font-weight: normal;
	font-size: 100%;
	vertical-align: baseline;
	box-sizing: border-box;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
html{
    overflow-y: scroll;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
input, textarea,{
	margin: 0;
	padding: 0;
}
ol, ul{
    list-style:none;
}
table{
    border-collapse: collapse; 
    border-spacing:0;
}
caption, th{
    text-align: left;
}
a:focus {
	outline:none;
}
.clearfix:after {
	content: "."; 
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
.clearfix {
	min-height: 1px;
}
* html .clearfix {
	height: 1px;
	/*¥*//*/
	height: auto;
	overflow: hidden;
	/**/
}
/*////////// basic //////////*/
html {
	margin: 0;
	padding: 0;
	height: 100%;
	font-size: 16px;
}
body {
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	font-style: normal;
	background: #FDFBFC;
	margin: 0;
	padding: 0;
	height: 100%;
	color: #000;
	-webkit-font-smoothing: antialiased;
}
.font-bold {
  font-weight: 700;
  font-style: normal;
}
/* 
blue #0069A6;
pink #B35695;
light pink #F3EBF2;
 */
h1 { font-size: 2.5rem; }
h2 { font-size: 1.75rem;}
h3 { font-size: 1.125rem;}
h4 { font-size: .875rem; }
h5 { font-size: 1.125rem; color: #B35695;}
p { font-size: 1rem; line-height: 1.9rem; padding-bottom: 1.9rem;}
a {
	text-decoration: none;
	color: #B35695;
}
a:hover {
	color: #0069a6;
	transition: 0.3s;
}
a:hover img{
	opacity: .8;
	transition: 0.3s;
}
summary {
	cursor: pointer;
	color: #B35695;
	font-weight: bold;
}
summary::before {
	content: url(../img/icon-check.svg);
	display: inline-block;
	width: 50px;
	height: 20px;
}
dl {
	display: flex;
	flex-wrap: wrap;
	width: 96%;
	max-width: 960px;
	margin: .5em auto;
	padding: 1em 2% .5em 2%;
	border: solid 1px;
	font-size: .875rem;
}
dt {
	width: 50%;
	border-bottom: solid 1px #f3ebf2;
	margin-bottom: .5em;
	padding-bottom: .5em;
}
dd {
	width: 50%;
	border-bottom: solid 1px #f3ebf2;
	margin-bottom: .5em;
	padding-bottom: .5em;
}
hr {
	width: 100px;
	height: 20px;
	background: url(../img/img-hr.svg);
	border: none;
}
.container {
	width: 94%;
	max-width: 960px;
	margin: 1em auto;
	padding: 1em 3%;
}
.text-center {
	text-align: center;
}
.bg-blue {
	color: #fff;
	text-align: center;
	background: #0069a6;
	padding: 1em .5em;
}
.flex-box {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.flex-box-left {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
}
.bt-cta {
	width: 80%;
	max-width: 400px;
	margin: 1em auto 2em auto;
}
#zetsuen, #yomei, #enpou, #dansei, #hiyou, #what, #yamada, #nagare, #review, #price {
	padding-top: 90px;
}

/*////////// フェードイン //////////*/
.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 1.5s, transform 1s;
}.fade-in.active {
	opacity: 1;
	transform: translateY(0px);
}
/*////////// header //////////*/
.header{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 90px;
  background: #B35695;
  z-index: 9999;
}
.header_inner {
  position: relative;
  top: 0;
  right: 0;
  width: 70%;
}
.logo {
  position: absolute;
  top: 0;
  left: 0;
  margin: 15px;
  width: 70%;
}
.title{
  font-size: 2rem;
  font-weight: 600;
}

/* header固定余白 */
.main{  
  margin-top: 90px;
}
@media only screen and (max-width: 768px) {
  .nav {
    position: fixed;
    right: -320px; /* 右から出てくる */
    top: 0;
    width: 300px; /* スマホに収まるサイズ */
    height: 100vh;
    padding-top: 60px;
    background-color: #f3ebf2;
    transition: all .6s;
    z-index: 200;
    overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  }
  .hamburger {
    position: absolute;
    right: 12px;
    top: 12px;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 300;
  }
  .nav_list {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .nav_item {
    text-align: center;
    padding: 0 14px;
  }
  .nav_item a {
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #fff;
    text-decoration: none;
    color: #333;
  }
  .nav_item a:hover {
    background-color: #fff;
  }
  .hamburger_border {
    position: absolute;
    left: 11px;
    width: 40px;
    height: 4px;
    background-color: #fff;
    transition: all .6s;
  }
  .hamburger_border_top {
    top: 20px;
  }
  .hamburger_border_center {
    top: 30px;
  }
  .hamburger_border_bottom {
    top: 40px;
  }
  .black_bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all .6s;
    cursor: pointer;
  }
  /* 表示された時用のCSS */
  .nav-open .nav {
    right: 0;
  }
  .nav-open .black_bg {
    opacity: .8;
    visibility: visible;
  }
  .nav-open .hamburger_border_top {
    transform: rotate(45deg);
    top: 20px;
  }
  .nav-open .hamburger_border_center {
    width: 0;
    left: 50%;
  }
  .nav-open .hamburger_border_bottom {
    transform: rotate(-45deg);
    top: 20px;
  }
}/* sp */
@media only screen and (min-width: 769px) {
	.main{  
	  margin-top: 150px;
	}
	.header {
		height: 150px;
	}
	.header_inner{
		max-width: 1440px;
		width: 100%;
		height: 150px;
		margin-left: auto;
		margin-right: auto;
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-end;
		align-items: center;
	}
	.logo{
		padding: 12px 5%;
		width: 30%;
	}
	.nav {
		width: 68%;
		padding-right: 2%;
	}
	
	.nav_list{
		text-align: right;
		width: 100%;    
	}
	.nav_list li{
		display: inline-block;
		text-align: right;
		padding-left: 20px;
	}
	.nav_list li a{
		color: #fff;
		font-weight: 600;
	}
}/* pc */


/*////////// section1 //////////*/
.hero-header {
	background: center / cover no-repeat url(../img/bg-sakura.jpg);
	height: 80vh;
	margin-bottom: 2rem;
}
h2.hero-header {
	text-align: center;
	line-height: 2em;
	padding-top: 30vh;
}
/*////////// section2 //////////*/
.point-6 {
	width: 150px;
	height: 150px;
	margin: 10px;
	padding-top: 10px;
	background: #f3ebf2;
	color: #b35695;
	text-align: center;
	border-radius: 50%;
}
.num {
  cursor: pointer;
  height: 45px;
  margin-inline: auto;
  margin-top: 5px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform .7s;
  width: 45px;
}
.num img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  height: auto;
  left: 0;
  position: absolute;
  width: 100%;
}
.num img:last-of-type {
  transform: rotateX( 180deg );
}
.num:hover {
  transform: rotateX( 180deg );
}
.point-6-sub {
	margin-bottom: 2em;
}
.section2 h3 {
	max-width: 260px;
}
/*////////// section3 //////////*/
.plof {
	margin: 1em 0;
	text-align: center;
}
.plof-name {
	background: #f3ebf2;
	padding: 3em 0 2em 0;
	margin-top: -3em;
}
.plof-name h3 {
	font-size: .875rem;
	margin-bottom: .5em;
}
.plof-name h4 {
	font-size: 1.75rem;
}
.plof-name h4 span {
	font-size: .875rem;
	display: block;
}
ul.qualification li {
	margin-bottom: .5em;
}
ul.qualification li::before {
	content: "●";
}
ul.qualification li span {
	font-size: .875rem;
	display: block;
	margin-left: 1rem;
}
.mission p {
	font-size: 1.5rem;
	line-height: 2.7rem;
}
.point-mission {
	width: 110px;
	height: 110px;
	margin: 5px;
	padding: 1.5em 1em;
	background: #f3ebf2;
	color: #b35695;
	text-align: center;
	border-radius: 50%;	
}
/*////////// section4 //////////*/
ol {
	margin-top: 1em;
}
ol li {
	display: flex;
	margin-bottom: 2em;
	align-items: center;
}
ol li img {
	width: 35px;
	margin-right: .5em;
}
.review p {
	font-size: 1.125rem;
	border-bottom: dotted 1px #b35695;
	margin-bottom: 1em;
}
.review p span {
	font-size: .75rem;
	line-height: 1.25rem;
	display: block;
	text-align: right;	
}
.review img {
	width: 100%;
	height: auto;
}
dl.price {
	border: none;
}
.form {
	width: 96%;
	max-width: 450px;
	background: #b35695;
	color: #fff;
	text-align: center;
	border-radius: 20px;
	padding: 2em;
	margin: 2em auto;
}
.form p {
	margin: 0;
	padding: 0;
	font-size: .875rem;
}
.form img {
	margin: .5em 0;
}
/*////////// footer //////////*/
footer {
	text-align: center;
	background: #f3ebf2;
	padding: 3em 0 1em 0;
}
footer p {
	font-size: .875rem;
	line-height: 1.5rem;
}
footer img {
	width: 80%;
	max-width: 480px;
	margin-bottom: 2em;
}
address span {
	font-size: .7rem;
}
.copyright {
	font-size: .6rem;
	color: #b35695;
}