@charset "UTF-8";

/*================================================
 *  CSSリセット
 ================================================*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,var,b,i,dl,dt,dd,ol,ul,li,fieldset,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,main,menu,nav.gnav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;font-weight:normal;}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav.gnav,section{display:block}ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #555;margin:1.5em 0;padding:0}input,select{vertical-align:middle}


/*================================================
 *  一般・共通設定
 ================================================*/
body{
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 15px;
	-webkit-text-size-adjust:100%;
  color: #111;
  background: #fff;
}
#contents,
.wrap {
	max-width: 1100px;
	margin: 0 auto;
}
a{
	color:#d65956;
	text-decoration: none;
}
a:hover, .active{
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
img {
	max-width: 100%;
	vertical-align: bottom;
}
p {
  margin-bottom: 1em;
  line-height: 1.6;
}
strong {
  font-weight: bold;
  line-height: 1.6;
}
small {
	font-size: smaller;
}
ul,ol,dl {
	margin: 0;
}
ul li {
	list-style: none;
}
li {
	margin-left: 0;
}

h2 {
  font-size: 70px;
  font-family: 'Quicksand', sans-serif;
  text-transform: uppercase;
  color: #d65956;
  margin-bottom: 50px;
}
h2 span {
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
}
h3 {
  font-size: 23px;
  margin-bottom: 30px;
  line-height: 1.5;
}
h3 span {
  font-size: 14px;
}

@media screen and (max-width:768px) {
	*, *:before, *:after {
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box
  }
	#contents {
		width: 100%;
		padding-left: 20px;
    padding-right: 20px;
  }
  h2 {
    font-size: 50px;
  }
}

/* ==================================================
	preloader
====================================================*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 1040;
}

#status {
  width: 200px;
  height: 200px;
  position: absolute;
  left: 50%;
  top: 50%;
  background-image: url(../images/loading.gif);
  background-repeat: no-repeat;
  background-position: center;
  margin: -100px 0 0 -100px;
}

/* =======================================================
* ヘッダーメニュー
* ======================================================= */
/* nav_left */
  #mainnav .nav_left {
    width: 30%;
  }
  #mainnav .nav_left h1 img {
    width: 60%;
  }
  #mainnav .nav_left .nav_left__catch {
    font-size: 11px;
    margin-bottom: 10px;
  }

  /* nav_right */
  #mainnav .nav_right {
    width: 70%;
  }
	#mainnav ul{
		text-align: right;
	}
	#mainnav li{
		display: inline-block;
    padding: 0 12px;
    font-size: 14px;
    text-align: center;
    line-height: 1.6;
  }
  #mainnav li span {
    font-family: 'Quicksand', sans-serif;
    text-transform: uppercase;
    letter-spacing: .15em;
    font-size: 12px;
  }
  #mainnav a{
		color: #000;
		text-decoration: none;
	}
	#mainnav.changeNav{
		background:#fff;
    box-shadow: 2px 2px 12px rgba(0,0,0,0.1);
    padding: 5px 50px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
	}
	#mainnav.changeNav li{
		padding: 20px 10px;
  }
  #mainnav li.sp {
    display: none;
  }
  
@media only screen and (min-width: 768px){
  a#menu{
		display:none;
	}
	.panel{
    display:block !important;
  }
  #mainnav{
		position:fixed;
		top: 0;
		width:100%;
    z-index:500;
    padding: 20px 50px;
    box-sizing: border-box;
  }
}

@media only screen and (max-width: 768px){
  a#menu{
  	display: inline-block;
  	position: relative;
  	width: 40px;
  	height: 40px;
  	margin: 20px 0 0 0;
	}

	#menuBtn{
  	display: block;
  	position: absolute;
  	top: 50%;
  	left: 50%;
  	width: 25px;
  	height: 1px;
  	margin: -1px 0 0 -7px;
  	background: #d65956;
    transition: .2s;
    z-index: 999;
	}

	#menuBtn:before, #menuBtn:after{
  	display: block;
  	content: "";
  	position: absolute;
  	top: 50%;
  	left: 0;
  	width: 25px;
  	height: 1px;
  	background: #d65956;
  	transition: .3s;
	}

	#menuBtn:before{
  	margin-top: -7px;
	}

	#menuBtn:after{
  	margin-top: 5px;
	}

	a#menu .close{
  	background: transparent;
	}

	a#menu .close:before, a#menu .close:after{
  	margin-top: 0;
	}

	a#menu .close:before{
  	transform: rotate(-45deg);
  	-webkit-transform: rotate(-45deg);
	}

	a#menu .close:after{
  	transform: rotate(-135deg);
  	-webkit-transform: rotate(-135deg);
	}

	.panel{
		width: 100%;
		display: none;
		overflow: hidden;
		position: relative;
		left: 0;
		top: -100px;
		z-index: 100;
  }

	#mainnav{
    position: fixed;
    padding: 10px 0;
    z-index: 9;
    width: 100%;
  }
  #mainnav.changeNav {
    padding: 0;
  }
  /* nav_left */
  #mainnav .nav_left {
    width: 80%;
    text-align: left;
  }
  #mainnav .nav_left h1 img {
    width: 50%;
  }
  #mainnav .nav_left .nav_left__catch {
    font-size: 10px;
    margin-bottom: 5px;
  }

  /* nav_right */
  #mainnav .nav_right {
    width: 100%;
  }
	#mainnav ul{
		background: #fff;
		text-align: center;
    height: auto;
    padding: 40px 50px 100px 50px;
  }
  #mainnav li,
  #mainnav.changeNav li {
    display: block;
    padding: 10px;
    border-bottom: 1px dotted #d65956;
  }
  #mainnav li span {
    font-size: 10px;
  }
  #mainnav li.sp {
    display: block;
    font-weight: bold;
    font-size: 12px;
  }
  #mainnav li.sp img {
    width: 60%;
  }
  #mainnav li.sp a {
    color: #56ba2e;
  }
}

/* =======================================================
* section
* ======================================================= */
section  {
	padding-bottom: 4rem;
	position: relative;
}
.section {
	padding-top: 4rem;
}
.leaf_left {
  position: fixed;
  top: 100px;
  left: 0;
  z-index: -1;
}
.leaf_right {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.applyBtn {
  display: inline-block;
  text-align: center;
  color: #fff;
  border: 1px solid #d65956;
  background-color: #d65956;
  padding: 15px 40px;
  line-height: 1;
  border-radius: 50px;
  margin-top: 20px;
  font-size: 18px;
  letter-spacing: .1em;
}
.applyBtn span {
  display: block;
  font-size: 14px;
  padding-bottom: 10px;
}
.applyBtn:hover {
  background-color: rgba(255,255,255,0.7);
  color: #d65956;
}
@media screen and (max-width:768px) {
	section {
		padding-bottom: 2rem;
	}
	.section {
		padding-top: 3rem;
  }
  .leaf_left {
    top: 80px;
  }
  .applyBtn {
    display: block;
    font-size: 13px;
    padding: 15px 0;
  }
  .applyBtn span {
    font-size: 11px;
  }
}

/* =======================================================
* concept
* ======================================================= */
#concept {
  max-width: 800px;
  margin: 0 auto;
}
#concept p {
  margin-bottom: 15px;
  line-height: 2.2;
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

@media screen and (max-width:768px) {
  #concept p {
    font-size: 15px;
    line-height: 2;
  }
}

/* =======================================================
* about
* ======================================================= */
.catch_img img {
  width: 550px;
  margin: 30px auto;
}

/* 選ばれる理由 */
.reasonArea li {
  text-align: center;
  width: 30%;
  margin-bottom: 20px;
}
.reasonArea li img {
  border-radius: 50%;
  width: 170px;
  height: 170px;
  object-fit: cover;
}
.reasonArea .reason_num {
  font-family: 'Mr Bedfort', cursive;
  font-size: 23px;
  margin-bottom: 5px;
}
.reasonArea .reason_ttl {
  font-size: 18px;
  margin-bottom: 10px;
}
.reasonArea .reason_txt {
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
}

/* 紹介文 */
.intro {
  background: url(../images/bg-message.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  background-attachment: fixed;
}
.bg_white {
  background-color: rgba(255,255,255,0.8);
  padding: 60px 30px;
  box-sizing: border-box;
  border-radius: 5px;
}
.bg_white img {
  border-radius: 5px;
  width: 70%;
}
.bg_white p {
  line-height: 1.8;
}
/* omoi */
.omoi .omoi_ttl {
  margin-top: 30px;
  text-align: center;
  line-height: 1.4;
  font-size: 16px;
}
.omoi ul li {
  line-height: 1.8;
  margin-bottom: 10px;
  margin-left: 8px;
  position: relative;
}
.omoi ul li::before {
  position: absolute;
  content: "♦︎";
  top: 2px;
  left: -16px;
  font-size: 14px;
  color: #d65956;
}

/* 動画 */
.intro_movie video {
  width: 80%;
}

/* ボタン */
.bg_white p.btnArea {
  line-height: unset;
}

@media screen and (max-width:768px) {
  .reasonArea li {
    width: 100%;
  }
  .reasonArea li img {
    width: 150px;
    height: 150px;
  }
  .reasonArea .reason_ttl {
    font-size: 16px;
  }
  .reasonArea .reason_txt {
    font-size: 13px;
  }
  /* 紹介文 */
  .intro {
    background-attachment: unset;
    padding: 30px 0;
  }
  .intro .wrap {
    padding-left: 10px;
    padding-right: 10px;
  }
  .bg_white {
    padding: 30px 20px 60px;
  }
  .bg_white img {
    width: 60%;
  }
  .bg_white h3 {
    margin-bottom: 10px;
  }
  .intro_movie video {
    width: 100%;
  }
  /* omoi */
  .omoi ul li::before {
    left: -17px;
    top: 1px;
  }
}



/* =======================================================
* price
* ======================================================= */
#price .priceBox {
  max-width: 950px;
  margin: 0 auto;
}
table , td, th {
	border: 1px solid #e2e2e2;
  border-collapse: collapse;
  width: 100%;
  height: 60px;
  vertical-align: middle;
  line-height: 1.6;
  background: rgba(255,255,255,0.8)
}
th {
	padding: 10px 5px;
  width: 200px;
  text-align: center;
  font-size: 16px;
}
th i {
  color: #d65956;
  font-size: 13px;
}
td.price {
  padding: 10px 5px;
  width: 170px;
  text-align: center;
  font-size: 20px;
  font-family: 'Quicksand', sans-serif;
  font-weight: bold;
  color: #333;
}
td.price small {
  font-size: 11px;
}
td.detail {
	padding: 10px;
  width: 500px;
  font-size: 14px;
}
.caption {
  font-size: 14px;
  max-width: 950px;
  margin: 20px auto 0;
}
@media screen and (max-width:768px) {
  #price .priceBox {
    overflow-x: scroll;
  }
  #price .scrollImg img {
    width: 10%;
    padding-right: 5px;
  }
  #price .priceBox table {
    width: 600px;
  }
  th {
    font-size: 15px;
    width: 170px;
  }
  td.price {
    font-size: 18px;
    width: 200px;
  }
}


/* =======================================================
* flow
* ======================================================= */
#flow dl {
  max-width: 800px;
  margin: 0 auto;
}
#flow dl dt {
  width: 17%;
  font-family: 'Mr Bedfort', cursive;
  font-size: 26px;
  line-height: 2.5;
  margin-bottom: 30px;
  color: #d65956;
  position: relative;
}
#flow dl dd {
  width: 83%;
  position: relative;
  font-size: 14px;
}
#flow dl dd h4 {
  font-size: 17px;
  margin-bottom: 10px;
  color: #d65956;
  font-weight: bold;
}
#flow dl dd h4 span {
  display: none;
}
#flow dl dd ul {
  padding-left: 20px;
}
#flow dl dd ul li {
  list-style-type: disc;
  line-height: 2;
}

/* 縦線と○ */
#flow dl dt::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #d65956;
  top: 18px;
  right: 30px;
}
#flow dl dt::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 135%;
  background: #f0c4b9;
  top: 18px;
  right: 37px;
}
@media screen and (max-width:768px) {
  #flow dl dt {
    width: 15%;
    color: transparent;
  }
  #flow dl dt::before {
    height: 120%;
  }
  #flow dl dd {
    margin-bottom: 20px;
    width: 85%;
  }
  #flow dl dd h4 span {
    display: block;
    font-family: 'Mr Bedfort', cursive;
    font-size: 21px;
  }
  #flow dl dd ul {
    padding-left: 0;
  }
}



/* =======================================================
* voice
* ======================================================= */
#voice {
  background: url(../images/bg-voice2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
}
#voice h2 {
  color: #fff;
}
/* お客様の声 */
#voice .flex {
  margin-bottom: 40px;
}
#voice .flex .w30 img {
  border-radius: 5px;
}
#voice .bg_white {
  width: 62%;
  padding: 30px;
  line-height: 1.5;
  font-size: 14px;
  position: relative;
}
#voice .bg_white::before {
    content: "";
    position: absolute;
    top: 7%;
    left: -40px;
    border: 20px solid transparent;
    border-right: 20px solid rgba(255,255,255,0.8);
}
#voice dt,
#voice .color_txt {
  color: #d7605f;
  font-weight: bold;
  margin-bottom: 10px;
}
#voice dd {
  padding-left: 20px;
  margin-bottom: 20px;
}
/* fd-reverse */
#voice .fd-reverse .bg_white::before {
  left: auto;
  right: -20px;
  top: 20%;
  border-right: none;
  border-left: 20px solid rgba(255,255,255,0.8);
}



/* swiper */
#voice .swiper-slide {
  height: 450px;
}
.voice_img img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
}
.voice_txt {
  background-color: rgba(255,255,255,0.9);
  padding: 40px 60px 20px 60px;
  box-sizing: border-box;
  border-radius: 5px;
  max-width: 800px;
  margin: 0 auto;
}
.voice_txt .voice_name {
  text-align: right;
  margin-bottom: 0;
}
@media screen and (max-width:768px) {
  #voice .wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
  #voice .bg_white {
    width: 100%;
    padding: 30px 15px;
    font-size: 13px;
    margin-top: 30px;
  }
  #voice .bg_white::before {
    top: -40px;
    left: 50%;
    transform: rotate(90deg);
    margin-left: -20px;
  }
  #voice .fd-reverse .bg_white::before {
    left: auto;
    right: 50%;
    top: -30px;
    margin-right: -10px;
    transform: rotate(-90deg);
  }
  #voice .flex .w30 img {
    width: 70%;
  }
  #voice dd {
    padding-left: 10px;
  }

  #voice .swiper-slide {
    height: 650px;
  }
  .voice_txt {
    padding: 20px 30px 20px 30px;
    font-size: 14px;
  }
}


/* =======================================================
* question
* ======================================================= */
.cp_qa *, .cp_qa *:after, .cp_qa *:before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.cp_qa {
    max-width: 800px;
    margin: 20px auto 0;
    margin-bottom: 30px;
}
.cp_qa .cp_actab {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 0 .6em 0;
}
.cp_qa .cp_actab input {
  position: absolute;
  opacity: 0;
}

.cp_qa .cp_actab label {
  position: relative;
  display: block;
  margin: 0 0 0 0;
  padding: .5em 2em 1em 2.5em;
  cursor: pointer;
  text-indent: 1em;
  line-height: 1.6;
}
.cp_qa .cp_actab label::before {
  font-size: 23px;
  margin-left: -2em;
  padding-right: 0.5em;
  content: 'Q';
  font-family: 'Quicksand', sans-serif;
}
.cp_qa .cp_actab label:hover {
  transition: all 0.3s;
  color:#d65956;
}

.cp_qa .cp_actab label::after {
  font-size: 2.0em;
  line-height: 2em;
  position: absolute;
  top: 0;
  right: 0;
  content: '+';
  display: inline-block;
  width: 2em;
  height: 2em;
  -webkit-transition: transform 0.4s;
          transition: transform 0.4s;
}

.cp_qa .cp_actab .cp_actab-content {
  position: relative;
  overflow: hidden;
  max-height: 0;
  padding: 0 0 0 1.8em;
  -webkit-transition: max-height 0.2s;
          transition: max-height 0.2s;
  background-color:#fbf0f0;
  border-radius: 5px;
}
.cp_qa .cp_actab .cp_actab-content::before {
  position: absolute;
  top: 17px;
  left: 17px;
  font-size: 23px;
  content: 'A';
  font-family: 'Quicksand', sans-serif;
}
.cp_qa .cp_actab .cp_actab-content p {
  margin: 20px;
}
.cp_qa .cp_actab input:checked ~ .cp_actab-content {
  max-height: 40em;
}
.cp_qa .cp_actab input:checked ~ label {
  color: #d65956;
}
.cp_qa .cp_actab input[type=checkbox]:checked + label::after {
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
.cp_actab-content a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
 .cp_qa .cp_actab label {
    padding: 1em 2.7em 0em 2.5em;
  }
  .cp_qa .cp_actab label::after {
    font-size: 1.5em;
    top: 10px;
    right: -5px;
  }
}


/* =======================================================
*contact
* ======================================================= */
#contact {
  margin-top: -80px;
  padding-top: 80px;
}
#contact .line {
  margin-top: 30px;
}
#contact .line a{
  color: #56ba2e;
  font-size: 13px;
  font-weight: bold;
}
#contact .line img {
  width: 220px;
  padding-top: 5px;
}
#contact .line a:hover {
  opacity: .7;
}
/* フォーム */
form {
    max-width: 700px;
    margin: 40px auto 50px;
}
label {
  display: block;
  width: 100%;
  margin: 25px 0 8px;
}
input[type="email"], input[type="number"],input[type="text"], input[type="tel"],input[type="date"],input[type="time"],select {
  width: 100%;
  display: block;
  border: 1px solid #cecece;
  outline: none;
  height: 3.5rem;
  line-height: 1.4rem;
  background:#fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 15px;
  padding-left: 10px;
  border-radius: 5px;
  box-sizing: border-box;
}
textarea {
	width: 100%;
  display: block;
  border: 1px solid #cecece;
  outline: none;
  background:#fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 15px;
  padding: 10px;
  border-radius: 5px;
  box-sizing: border-box;
  color: #333;
  line-height: 1.7;
  letter-spacing: .05em;
}
sup {
  color:#d65956;
  font-size: 11px;
  padding-left: 5px;
}
button {
  font-size: 14px;
  padding: 10px 70px;
  border-radius: 5px;
  border: 1px solid#d65956;
  background-color:#d65956;
  color: #fff;
  letter-spacing: .2em;
}
button:hover {
  background-color: #fff;
  color:#d65956;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  #contact .line {
    margin-top: 15px;
  }
  #contact .line img {
    width: 180px;
  }
}

/* =======================================================
*footer
* ======================================================= */
#fnav {
  position: relative;
    padding: 100px 0 50px;
    background: #fdefec;
}
#fnav h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 30px;
}
#fnav .ft_inner {
  padding: 0 5%;
	margin: 0 auto;
}
/* ft_img */
#fnav .ft_img {
  width: 18%;
  text-align: center;
}
#fnav .ft_img img {
  border-radius: 5px;
}
/* ft_card */
#fnav .ft_card {
  width: 78%;
}
#fnav .ft_card ul a {
  width: 19%;
}
#fnav .ft_card .note {
  margin-top: 30px;
}
#fnav .note iframe {
  width: 600px;
  height: 250px;
}
.copyright{
  font-size: 11px;
  color: #d65956;
  padding-top: 20px;
  text-align: center;
  letter-spacing: .1em;
}

@media screen and (max-width: 768px) {
  #fnav {
    padding: 60px 0 50px;
    font-size: 13px;
  }
  #fnav h2 {
    font-size: 25px;
    margin-bottom: 20px;
  }
  #fnav .ft_inner {
  	width: 100%;
		padding-left: 20px;
    padding-right: 20px;
  }
  /* ft_img */
  #fnav .ft_img {
    width: 25%;
  }
  /* ft_card */
  #fnav .ft_card {
    width: 70%;
  }
  #fnav .ft_card ul a {
    width: 49%;
    padding: 0 0 5px 0;
  }
  #fnav .note iframe {
    width: 90%;
    height: 230px;
    margin-top: 20px;
  }
}

/*================================================
 *  ページトップへの戻り
 ================================================*/
#pagetop {
    position: fixed;
    right: 15px;
    bottom: 10px;
    cursor: pointer;
    overflow: visible!important;
}
#pagetop .arrow-up {
	width: 20px;
  height: 20px;
  border: 1px solid;
  border-color: #d65956 #d65956 transparent transparent;
  transform: rotate(-45deg);
}

