@charset "utf-8";

/* ==========================================================================
   RESET
   ========================================================================== */
/*
* http://meyerweb.com/eric/tools/css/reset/
* v2.0 | 20110126
* License: none (public domain)
*/
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-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #ccc;
	margin: 1em 0;
	padding: 0;
}

fieldset {
	border: 0;
	margin: 0;
	padding: 0;
}

textarea {
	resize: vertical;
}

* {
	box-sizing: border-box;
}

audio, canvas, iframe, img, svg, video {
	vertical-align: middle;
}

a, a:hover {
	color: inherit;
	text-decoration: none;
}

b {
	font-weight: bold;
}

*:focus {
	outline: none;
}

/* ==========================================================================
   common
   ========================================================================== */
html,body {
  height: 100%
}

body:after {
  position: fixed;
  top: 0;
	left: 0;
  width: 100%;
	height: 100%;
  content: "";
	z-index: -1;
	background: url("../../images/bg.jpg") no-repeat 0 0;
	background-size: cover;
}
a[href*="tel:"] {
	pointer-events: none;
	cursor: default;
}

body{
	font-family: "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
	font-size: 62.5%;
	-webkit-text-size-adjust: 100%;
	color: #000;
}

@media only screen and (max-width: 900px) {
	#wrapper {

	}
}

#wrapper img {
	max-width: 100%;
	height: auto;
}

#wrapper .disp-pc { display: block; }
#wrapper .disp-sp { display: none; }

@media only screen and (max-width: 900px) {
	#wrapper .disp-pc { display: none; }
	#wrapper .disp-sp { display: block; }

	a[href*="tel:"] {
		pointer-events: auto;
	}
}

#wrapper .lyt-inner {
	width: 100%;
	margin: 0 auto;
	max-width: 750px;
	overflow: hidden;
	box-shadow: 0px 0px 15px 2px #777777;
}


/* ====================
   font
   ==================== */
.text{
  font-size: 1.8rem;
	line-height: 1.6;
	font-weight: bold;
	text-align: center;
}

@media only screen and (max-width: 900px) {
	.text{
		font-size: 1rem;
	}
}



/* ====================
   .header
   ==================== */
#wrapper .headnav{
	padding: 0 50px;
	background: #fff;
}

#wrapper .head-inner{
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
  align-items: center;
	height: 90px;
}

#wrapper .head-inner .logo {
	width: 290px;
}

#wrapper .head-inner .head-img{
	width: 250px;
	margin-top: 10px;
}


@media only screen and (max-width: 900px) {
	#wrapper .headnav{
		padding: 0 6vw;
	}
	
	#wrapper .head-inner{
		height: 12vw;
	}
	
	#wrapper .head-inner .logo {
		width: 40vw;
	}

	#wrapper .head-inner .head-img{
		width: 28vw;
	}
}

/* ====================
   btn
   ==================== */
.foot_btnarea{
	width: 100%;
	text-align: center;
	position: fixed;
	bottom: 0;
	background : #52C9F1;
	background : rgba(82, 201, 241, 0.4);
	z-index: 22;
}

.foot_btnarea .btn-inner{
	max-width: 750px;
	margin: 0 auto;
}

.btn-inner{
	padding: 50px 10px;
}

.flex-btn{
	display: flex;
}

.foot_btnarea .btn-inner {
	padding: 10px 30px;
}

.btn-area{
	padding: 12px 0;
    margin: 0 10px;
}

.btn-area:hover{
	opacity: .8;
	transition: all .3s ease;
}


@media only screen and (max-width: 900px) {
	.btn-inner{
		padding: 30px 30px 50px 30px;
	}
	
	.btn-area{
		padding: 6px 0;
        margin: 0 5px;
	}
}


.shiny-btn {
  animation: flash 2s linear infinite;
}

@keyframes flash {
  0% {
		filter: brightness(100%);
  }
	
	1% {
		filter: brightness(150%);
  }
	
	20%,100% {
		filter: brightness(100%);
  }
}

.btnanime {
  animation: bururi 1s infinite;
}

@keyframes bururi {
    50% {
        transform: scale(1, 1);
    }
    52% {
        transform: scale(0.98, 0.95)
    }
    54% {
        transform: scale(1, 1);
    }
    56% {
        transform: scale(0.98, 0.95)
    }
    58% {
        transform: scale(1, 1);
    }
    60% {
        transform: scale(0.98, 0.95)
    }
}

/* ====================
  sec01
   ==================== */
.sec01{
	background: #fff url(../../images/sec01_bg.png) no-repeat 0 28%;
	background-size: contain;	
}

.sec01 .content-box{
	margin: 0;
}

.sec01 .content-box figure{
  margin-bottom: 15px;
}

.sec01 .content-box .sec01-list{
	margin: 15px 0 20px 0;
}


/* ====================
  sec02
   ==================== */
.sec02{
	background: #fff;
	padding-top: 70px;
}

.sec02 .price-wrapper ul{
	display: flex;
	flex-flow: row wrap;
	padding: 0 50px;
}

.sec02 .price-wrapper ul li{
	width: 50%;
	margin-bottom: 20px;
}

.sec02 .price-wrapper ul li a{
	display: block;
	border: 1px solid #AAAAAA;
	margin-bottom: 10px;
}

.sec02 .price-wrapper ul li:nth-of-type(even){
	margin-left: -1px;
}

.sec02 .price-wrapper ul li p{
	width: 96%;
}

@media only screen and (max-width: 900px) {
	.sec02 .price-wrapper ul{
		padding: 5px 30px;
	}
}




/* ====================
  sec03
   ==================== */
.sec03{
	background: #fff url(../../images/sec03_bg.png) no-repeat 0 460px;
	background-size: contain;	
	padding: 0 0 100px 0;
}

.sec03 ul{
	margin-bottom: 100px;
}

.sec03 li{
  margin-bottom: 20px;
}

@media only screen and (max-width: 900px) {
	.sec03{
		background: #fff url(../../images/sec03_bg.png) no-repeat 0 260px;
		background-size: contain;	
	}
}

/* ====================
  sec04
   ==================== */
.sec04{
	background: #F4ECE2;
	padding: 50px 0;
}

.sec04 .point-inner{
	background: #fff;
	margin: 0 50px 50px 50px;
	padding: 30px 50px;
	border: 3px solid #B3B3B3;
}

.sec04 .point-inner li +li{
	margin-top: 45px;
}

@media only screen and (max-width: 900px) {
	.sec04 .point-inner{
		margin: 0 30px 50px 30px;
		padding: 20px 30px 40px 30px;
		border: 2px solid #B3B3B3;
	}
		
	.sec04 .point-inner li +li{
		margin-top: 25px;
	}
}

/* ====================
  sec05
   ==================== */
.sec05{
	background: #fff;
	padding: 50px 0 0 0;
}

.sec05 .faq-inner{
	margin-bottom: 100px;
}

.sec05 .faq-inner li +li{
	margin-top: 40px;
}

.sec05 .btn-inner{
	padding: 100px 50px;
}

/* アコーディオン */
.faq {
    margin: 50px auto;
}

details {
  arrow-size: 18px;
  anime-speed: 0.3s;
    font-size: 1.5em;
}

details summary {
  box-sizing: border-box;
  position: relative;
  display: block;
  font-weight: 700;
  padding: 2em 3.5em;
  background: #fff;
  border: 1px solid #84b1de;
  cursor: pointer;
}

details summary::-webkit-details-marker {
  /* iOSで表示されるデフォルトの三角形アイコンを消す */
  display: none;
}

details summary::before {
  content: "Q.";
  position: absolute;
  top: 2em;
  left: 1.5em;
}

/* ※本来はafter要素の装飾で十分だが、iOSだと疑似要素に「transition」が効かないので、通常のタグを装飾 */
details summary .ico {
  position: absolute;
  top: 0;
  right: 1.5em;
  bottom: 0;
  display: block;
  width: var(--arrow-size);
  height: calc(var(--arrow-size) * 0.6);
  /*aspect-ratio: 1/0.6;*/
  /* ※追記 Windows版Chrome124にてaspect-ratioを指定した要素と、position: absoluteの位置調整の組み合わせに不具合が発生したため、height値をcalcの計算に切り替え */
  margin: auto;
  background: #0a64be;
  clip-path: polygon(100% 13%, 50% 100%, 0 13%, 8% 0, 50% 73%, 92% 0);
  transition: transform var(--anime-speed);
}

details[open] summary .ico {
  transform: rotate(180deg);
}

details .inner {
  position: relative;
  padding: 1.5em 1.5em 1.5em 3.5em;
  background: #dae8f5;
}

details .inner::before {
  content: "A.";
  position: absolute;
  top: 1.5em;
  left: 1.5em;
  font-weight: 700;
}

/* アコーディオンここまで　*/

@media only screen and (max-width: 900px) {
	.sec05 .faq-inner{
		margin-bottom: 60px;
	}
	
	.sec05 .faq-inner li +li{
		margin-top: 20px;
	}
	
	.sec05 .btn-inner{
		padding: 40px 30px;
	}
}


/* ====================
  slide
   ==================== */
.swiper-wrapper {
	transition-timing-function: linear;
}

.slide_inner{
	position: relative;
}

.swiper-pagination-bullet{
	border: 1px solid #A4A4A4;
	background: #fff;
	opacity: 1;
	width: 18px;
	height: 18px;
}

.swiper-pagination-bullet-active {
  background: #A4A4A4;
}

.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: -40px;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image:url("../../images/icon_arrow.png");
  left:78px;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image:url("../../images/icon_arrow.png");
	transform: rotate3d(0, 1, 0, 180deg);
	right:78px;
}

.swiper-button-next, .swiper-button-prev {
  width: 50px;
  height: 50px;
  background-size: 50px 50px;
}

@media only screen and (max-width: 900px) {
	.swiper-button-prev,
	.swiper-container-rtl .swiper-button-next {
		background-image:url("../../images/icon_arrow.png");
		left: 10.5vw;
	}
	
	.swiper-button-next,
	.swiper-container-rtl .swiper-button-prev {
		right: 10.5vw;;
	}
	
	.swiper-button-next, .swiper-button-prev {
		width: 30px;
		height: 30px;
		background-size: 30px 30px;
	}
	
	.swiper-pagination-bullet{
		width: 3vw;
		height: 3vw;
	}
	
	.swiper-container-horizontal > .swiper-pagination-bullets,
	.swiper-pagination-custom,
	.swiper-pagination-fraction {
		bottom: -30px;
	}
}

/* ====================
  modal
   ==================== */
#inline-wrap {
	position: relative;
	margin:10px auto;
	max-width: 700px;
	background: #fff;
	padding: 60px 40px 10px 40px;
}

#inline-wrap .title{
	font-size: 1.2rem;
	line-height: 1.4;
	margin-bottom: 10px;
	font-weight: bold;
}

#inline-wrap .title:first-of-type{
	margin-bottom: -30px;
}

#inline-wrap .s-text {
	font-size: 0.9rem;
	line-height: 1.4;
	text-align: left;
}

#inline-wrap p + p{
	margin-top: 40px;
}

#inline-wrap .popup-modal-dismiss {
	margin-top: 30px;
	text-align: center;
}

#inline-wrap .popup-modal-dismiss span{
	position: relative;
}

#inline-wrap .popup-modal-dismiss span:before,
#inline-wrap .popup-modal-dismiss span:after{
	content: "";
	position: absolute;
	right: -22px;
	top: 10px;
	display: block;
	width: 18px;
	height: 1px;
	background: #000;
}

#inline-wrap .popup-modal-dismiss span:before{
   transform: rotate(-45deg);
}

#inline-wrap .popup-modal-dismiss span:after{
   transform: rotate(45deg);
}

.mfp-figure .mfp-close{
  text-align: right;
  display: block;
  cursor: pointer;
  position: absolute;
  top: -60px;
  right: 0px;
  width: 40px;
  height: 40px;
}

.mfp-figure .mfp-close span{
	position: relative;
}

.mfp-figure .mfp-close span:before,
.mfp-figure .mfp-close span:after{
	content: "";
	position: absolute;
	right: -22px;
	top: 10px;
	display: block;
	width: 18px;
	height: 1px;
	background: #FFF;
}

.mfp-figure .mfp-close span:before{
   transform: rotate(-45deg);
}

.mfp-figure .mfp-close span:after{
   transform: rotate(45deg);
}

.mfp-container {
  padding-left: 60px;
  padding-right: 60px;
}

.mfp-close-btn-in .mfp-close span{
	display: none;
	position: relative;
}

.mfp-close-btn-in .mfp-close{
	opacity: 1;
}

.mfp-close-btn-in .mfp-close:before,
.mfp-close-btn-in .mfp-close:after{
	content: "";
	display: block;
	width: 45px;
	height: 1px;
	background: #FFF;
}

#inline-wrap .mfp-close:before,
#inline-wrap .mfp-close:after{
	width: 30px;
	background: #000;
}

.mfp-close-btn-in .mfp-close:before{
   transform: rotate(-45deg);
	 margin: 20px 0 0 0;
}

.mfp-close-btn-in .mfp-close:after{
   transform: rotate(45deg);
}

.mfp-counter{
	left: 0;
	top: 60px;
	text-align: center;
	font-size: 1.2rem;
	font-weight: bold;
}

img.mfp-img{
	padding: 0;
	border: 5px solid #fff;
}

.mfp-arrow::before {
  border-top-width: 1px;
  border-bottom-width: 1px;
}

button.mfp-arrow {
	background: url("../../images/icon_arrow02.png") no-repeat 0 center;
	background-size: contain;
	width: 15px;
}

.mfp-arrow-right {
  right: 5%;
	transform: rotateY(180deg);
}

.mfp-arrow-left{
	left: 5%;
}

@media only screen and (max-width: 900px) {
	#inline-wrap {
		padding: 60px 20px 10px 20px;
	}
	
	.mfp-container {
		padding-left: 30px;
		padding-right: 30px;
	}

	#inline-wrap .title{
		font-size: 1rem;
	}
	
	#inline-wrap .s-text {
		font-size: 0.8rem;
	}
	
	.mfp-arrow-right {
		width: 12px!important;
		right: 4%;
	}

	.mfp-arrow-left{
		 left: 2%;
	}
}


/* ====================
   #Footer
   ==================== */
.footer {
  padding: 150px 0 250px 0;
	background: #459CDF;
	text-align: center;
	color: #fff;
	font-size: 1.7rem;
	line-height: 1.4;
	font-weight: bold;
}

.footer .gF_logo {
  width: 85%;
  margin: 0 auto 100px auto;
}

.footer .copyright_text {
  margin: 20px 0 0 0;
}


@media only screen and (max-width: 900px) {
	.footer {
		padding: 20vw 0 40vw 0;
		font-size: 0.8rem;
	}
	
	.footer .gF_logo {
		margin: 0 auto 15vw auto;
	}
}







