@charset "UTF-8";
/*-----------------------------------
base
-----------------------------------*/
html {
    overflow-y: auto;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-size: 62.5%;
	overflow-x: hidden;
}
body {
	font-family:'Zen Maru Gothic', "メイリオ", sans-serif;
	font-size: 26px;
    font-size: 2.6em;
	color: #3b3b3b;
    line-height: 1.3em;
	letter-spacing:0.1rem;
	font-weight:500;
	background: #fff6f6;
	margin:0 ;
	width: 100%;
	overflow: hidden;
	box-sizing: border-box;
}
.fw700{
	font-weight: 700;
}
h2,h3,h4{
	font-weight:700;
}
.contents_inner{
	max-width: 750px;
	margin: 0 auto;
}
img {
    max-width: 100%;
    height: auto;
}
a, a:link, a:visited {
    color: #3b3b3b;
	text-decoration:none;
    cursor: pointer;
}
a:hover {
	color:#3b3b3b;
	text-decoration:none;
}
.left{
	float: left;
}
.right{
	float: right;
}
.sp{
		display: none;
	}
@media screen and (max-width: 740px) {
	body {
		font-size: 15px;
		font-size: 1.5rem;
	}
	.over{
		/*overflow:hidden !important;*/
		height:100% !important;
	}
	.sp{
		display: block;
	}
}
/*-----------------------------------
clearfix
-----------------------------------*/
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.clearfix {
    display: inline-block;
}
* html .clearfix {
    height: 1%;
}
.clearfix {
    display: block;
}
/*-----------------------------------
header
----------------------------------*/
header{
	height: 140px;
	padding: 20px 2.5%;
}
header .logo{
	width: 50%;
	max-width: 360px;
}
@media screen and (max-width: 740px) {
	header{
		height: 70px;
		padding: 5px 2.5%;
	}
	header .logo {
		max-width: 180px;
		margin-top: 3px;
	}
	header .txt_p {
		font-size: 1.2rem;
		letter-spacing: 0;
	}
}
/*-----------------------------------
menu_btn
----------------------------------*/
.menu_btn_wrap {
	width: 90px;
	height: 90px;
	cursor: pointer;
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 999;
	border: solid 4px #f09eb5;
	border-radius: 50%;
}
.menu_btn,
.menu_btn:before,
.menu_btn:after{
	width: 50px;
	height: 4px;
	position: absolute;
	transition: all 0.3s;
	background: #f09eb5;
}
.menu_btn {
	display: block;	
	top: 45px;
	right: 18px;
	cursor: pointer;
	box-sizing: border-box;
	z-index: 999;
}
.menu_btn:before {
	content: '';
	top: -12px;
}
.menu_btn:after {
	content: '';
	bottom: -12px;
}
.menu_btn.active {
	background:none;
}
.menu_btn.active:before {
	transform:rotate(-135deg);
	top:0;
	right:0;
}
.menu_btn.active:after {
	transform:rotate(135deg);
	bottom:0;
	right:0;
}
@media screen and (max-width: 740px) {
	.menu_btn_wrap {
		width: 50px;
		height: 50px;
		top: 10px;
		right: 10px;
		border: solid 2px #f09eb5;
	}
	.menu_btn,
	.menu_btn:before,
	.menu_btn:after{
		width: 25px;
		height: 2px;
	}
	.menu_btn {
	  top: 25px;
	  right: 12px;
	}
	.menu_btn:before {
		top: -8px;
	}
	.menu_btn:after {
		bottom: -8px;
	}
	
}
/*-----------------------------------

	nav_sp

-----------------------------------*/
#nav_sp{
	width: 100%;
	position: absolute;
	top: 140px;
	transition: all 0.35s ease;
	padding:40px 2.5%;
	z-index: 998;
	box-sizing: border-box;
	display: none;
}
#nav_sp.toggle{
	right: 0 !important;
	display: block;
}
#nav_sp nav ul li{
	border-bottom: solid 1px #f992af;
	box-sizing: border-box;
}
#nav_sp nav ul li:nth-child(2n){
	border-left: solid 1px #f992af;
}
#nav_sp nav ul li a{
	text-align: center;
	display:block;
	position:relative;
	background: #fff;
	padding: 15px 2.5%;
	transition: 0.3s;
}
#nav_sp nav ul li a:hover{
	color: #fff !important;
	background: #fbbf48;
}
@media screen and (max-width: 740px) {
	#nav_sp{
		width: 100%;
		height: 100%;
		position: fixed;
		overflow-y: scroll;
		top: 70px;
		right: -100%;
		transition: all 0.35s ease;
		padding: 20px 2.5%;
		display: inline-block;
		z-index: 998;
		box-sizing: border-box;
	}
}
/*-----------------------------------

	pagetop

-----------------------------------*/
#pagetop{
  position: fixed;
  right: 20px;
  bottom: 50px;
  cursor: pointer;
  z-index: 999;
  background: #fff;
  border: solid 4px #f09eb5;
  border-radius: 50%;
  transition: 0.3s;
  height: 100px;
  width: 100px;
  text-align: center;
  box-sizing: border-box;
  padding-top: 40px;
  font-size: 18px;
  line-height: 2.0rem;
}
#pagetop:before{
	content: url("../img/common/icon_arrow_top_p.svg");
	width: 40px;
	display: inline-block;
	position: absolute;
	top: 10px;
	left: 0;
	right: 0;
	margin: 0 auto;
}
#pagetop:hover{
	bottom:65px!important;
}
@media screen and (max-width: 740px) {
	#pagetop{
		display:none !important;
	}
}
/*-----------------------------------
footer
----------------------------------*/
footer{
	padding-bottom:180px!important;
}
footer ul li{
	border-bottom: solid 1px #ffe7ee;
	box-sizing: border-box;
}
footer ul li:nth-child(2n){
	border-left: solid 1px #ffe7ee;
}
footer ul li a{
	display: block;
	padding: 20px 0;
}
footer ul li a:hover{
	color: #fff;
	background: #f09eb5;
}
footer .logo{
	width: 60%;
	max-width: 410px;
	margin-left:auto;
	margin-right:auto;
}
footer .tel:before{
	content:url("../img/common/icon_tel.svg");
	width: 14px;
	display: inline-block;
	margin-right: 5px;
}
@media screen and (max-width: 740px) {
	footer{
		padding-bottom: 100px!important;
	}
	footer ul li a {
	  padding: 15px 0;
	}
	footer .tel{
		font-size: 2.4rem;
	}
	footer .tel:before{
		width: 10px;
	}
}
/*-----------------------------------
btn
-----------------------------------*/
.common_btn:after,
.taiken_btn:before{
	position: absolute;
}
.common_btn{
	width: 90%;
	text-align: center;
	color: #fff!important;
	display: block;
	margin: 30px auto 0;
	padding: 25px 2.5%;
	transition: all .4s;
	position: relative;
	border-radius: 20px;
	box-sizing: border-box;
}
.common_btn:after{
	content: url("../img/common/icon_arrow_right_w.svg");
	width: 18px;
	right: 3%;
	top: 20px;
	transition: all .4s;
}
.common_btn:hover:after{
	right: 2%;
}
.link_btn{
	background: #5e5e5e;
}
.link_btn:hover{
	background: #828181;
}
.line_btn{
	background: #61bb00;
}
.line_btn:hover{
	background: #82d42a;
}
.taiken_btn{
	background: #f5a418;
	padding: 40px 2.5%;
	border: solid 4px #fff;
	box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.3);
}
.taiken_btn:hover{
	background: #f7bb51;
}
.taiken_btn:before{
	content: url("../img/common/icon_door_w.svg");
	width: 70px;
	left: 2%;
	top: 35px;
}
.taiken_btn:after{
	top: 40px;
}
.taiken .taiken_btn{
	width: 100%;
	margin-top: 0;
}
.oubo_btn{
	width: 95%;
	max-width: 630px;
	background: #ff7fa3;
	margin: 0 auto;
	border-radius: 30px;
	border: solid 4px #fff;
	box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.3);
}
.oubo_btn:hover{
	background: #fda2bb;
}
.cv_two a{
  padding: 15px 2.5%;
	border-radius: 80px;
}
.cv_two img{
	width: 80%;
	max-width: 300px;
}
.cv_two .mail_btn{
	background: #ffa900;
}
.cv_two .mail_btn:hover{
	background: #fbbf48;
}
@media screen and (max-width: 740px) {
	.common_btn {
	  margin: 15px auto 0;
	  padding: 20px 2.5%;
	}
	.common_btn::after {
	  width: 12px;
	  top: 35%;
	}
	.taiken_btn{
		padding: 20px 2.5%;
	}
	.taiken_btn::before {
		width: 40px;
		top:15px;
	}
	.taiken_btn::after {
	  top: 25px;
	}
	.cv_two a{
		padding: 5px 2.5%;
		border-radius: 80px;
	}
}
/*-----------------------------------
fix
-----------------------------------*/
#fix{
	background: #f1f1f1;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 999;
	padding: 20px 0;
}

@media screen and (max-width: 740px) {
	#fix {
	  padding: 10px 0;
	}
}
/*-----------------------------------
font-size
-----------------------------------*/
.fz24{
	font-size: 2.4rem;
	line-height: 3.0rem;
}
.fz30{
	font-size: 3.0rem;
	line-height: 3.6rem;
}
.fz36{
	font-size: 3.6rem;
	line-height: 4.2rem;
}
.fz42{
	font-size: 4.2rem;
	line-height: 4.8rem;
}
.fz48{
	font-size: 4.8rem;
	line-height: 5.2rem;
}
.fz60{
	font-size: 6.0rem;
	line-height: 1;
}
.fz120{
	font-size: 120px;
	line-height: 1;
}

@media screen and (max-width: 740px) {
	.fz16{
		font-size: 1.2rem;
		line-height: 1.6rem;
	}
	.fz18,.fz20{
		font-size: 1.4rem;
		line-height: 1.8rem;
	}
	.fz24{
		font-size: 1.4rem;
		line-height: 2.1rem;
	}
	.fz30,
	.fz36{
		font-size: 1.8rem;
		line-height: 2.4rem;
	}
	.fz42,
	.fz48{
		font-size: 2.4rem;
		line-height: 2.8rem;
	}
	.fz60,
	.fz120{
		font-size: 4.0rem;
		line-height: 1;
	}
}
/*-----------------------------------
width
-----------------------------------*/
.mx750{
	width: 100%;
	max-width: 750px;
	margin: 0 auto;
}
.mx680{
	width: 95%;
	max-width: 680px;
	margin: 0 auto;
}
.mx630{
	width: 95%;
	max-width: 630px;
	margin: 0 auto;
}
.mgt10{
	margin-top: 10px;
}
.mgt15{
	margin-top: 15px;
}
.mgt30{
	margin-top: 30px;
}
.mgt40{
	margin-top: 40px;
}
.mgt60{
	margin-top: 60px;
}
.pdt25{
	padding-top: 25px;
}
.pdb25{
	padding-bottom: 25px;
}
.pdtb25{
	padding-top:25px;
	padding-bottom: 25px;
}
.pdb40{
	padding-bottom: 40px;
}
.pdtb40{
	padding-top: 40px;
	padding-bottom: 40px;
}
.pdlr25p{
	padding-left: 2.5%;
	padding-right: 2.5%;
	box-sizing: border-box;
}
@media screen and (max-width: 740px) {
	.mgt8{
		margin-top: 8px;
	}
	.mgt30 {
	  margin-top: 15px;
	}
	.mgt40{
		margin-top: 20px;
	}
	.mgt60{
		margin-top: 30px;
	}
	.pdb25{
		padding-bottom: 13px;
	}
	.pdtb25 {
	  padding-top: 13px;
	  padding-bottom: 13px;
	}
	.pdb40{
		padding-bottom: 30px;
	}
	.pdtb40{
		padding-top: 30px;
		padding-bottom: 30px;
	}
}
/*-----------------------------------
radius
-----------------------------------*/
.dspbk{
	display: block;
}
.dspflex{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-between;
}
.dspflex_50p li{
	width: 50%;
}
.dspflex_49p li{
	width: 49%;
}
.dspflex_48p li{
	width: 48%;
}
.txt_w{
	color: #fff;
}
.txt_p{
	color: #f09eb5;
}
.txt_dp{
	color: #f25e88;
}
.txt_v{
	color: #a88ec5;
}
.txt_b{
	color: #578dc9;
}
.txt_o{
	color: #f1752a;
}
.txt_gy{
	color: #9e9e9e;
}
.txt_al{
	text-align: left;
}
.txt_ar{
	text-align: right;
}
.txt_ac{
	text-align: center;
}
/*-----------------------------------
bg
-----------------------------------*/
.bg_w{
	background:#fff;
}
.bg_ly{
	background:#fffde6;
}
.bg_y{
	background:#ffce6e;
}
.bg_lp{
	background:#ffd3df;
}
.bg_p{
	background:#f992af;
}
.bg_lv{
	background:#e8def3;
}
.bg_v{
	background:#a88ec5;
}
.bg_lg{
	background:#effae1;
}
.bg_o{
	background:#eda874;
}
.bg_lo{
	background:#fbd9c0;
}
.bg_lb{
	background:#e4f0fa;
}
.bg_b{
	background:#578dc9;
}
.bg_gry{
	background:#adadad;
}
.bsbb{
	box-sizing: border-box;
}
.bdr10{
	border-radius: 10px; 
}
/*-----------------------------------
position
-----------------------------------*/
.ps_r{
	position: relative;
}
.ps_a{
	position: absolute;
}
/*-----------------------------------
icon_title
-----------------------------------*/
.icon_title{
	position: relative;
	padding-left: 80px;
}
.icon_title:before{
	width: 50px;
	position: absolute;
	left: 15px;
}

@media screen and (max-width:740px){
	.icon_title {
	  padding-left: 50px;
	}
	.icon_title:before{
		width: 25px;
	}
}
/*-----------------------------------
disclist
-----------------------------------*/
.disclist{
	margin-left: 30px;
}
.disclist li{
	list-style: disc;
}
/*-----------------------------------
slide
----------------------------------*/
.slider {
  width: 700px;
  margin: 30px auto 0;
}
.slider .slick-list {
  padding: 0 30% 0 0!important;
}
.slider li {
	margin: 0 10px;
	padding: 20px;
}
.slider li figcaption {
  margin: 10px 0 0;
}
.banner_slider li {
	max-width: 360px;
	margin: 0 10px;
	padding: 0;
}
@media screen and (max-width:740px){
  .slider {
    width: 100%;
	margin-top: 30px;
  }
	.slider li {
	  padding: 13px;
	}
	.banner_slider li {
	  margin: 0px 5px;
	}
}
/*-----------------------------------
choice
----------------------------------*/
#choice .icon_title:before{
	content: url("../img/common/icon_balloon_w.svg");
}
#choice .slider dl{
	margin: 10px 0;
}
#choice .slider dt,
#choice .slider dd{
	display: inline-block;
	padding: 5px 10px;
}
/*-----------------------------------
select
-----------------------------------*/
#select .icon_title:before{
	content: url("../img/common/icon_finger_w.svg");
}
/*-----------------------------------
flash
-----------------------------------*/
.flash{
  animation: flash 2.0s linear infinite;
}
@keyframes flash {
  0%,100% {
    opacity: 1;
  }

  50% {
    opacity: 0.1;
  }
}