/* Theme Name: ihinseiri-rac1122.com */

@charset "UTF-8";

/*-----------------------------
color
-----------------------------*/
/* 
【サイトカラーの変数】
ここの色を変更すると全体の色を変更できます(^)o(^)bたぶん
使用例) color: var(--black-color);
*/
:root {
	--white-color: #ffffff;
	--black-color: #333333;
	--gray-color: #F4F4F9;
	--color1: #0663D7;
	--color2: #0C2C6B;
	--color3: #FFFAEC;
	--color4: #E8374A;
}
/*-----------------------------
default
-----------------------------*/
* {
	min-width: 0;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
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, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
html {
	overflow-x: hidden;
}
body{
	font-family: 'Zen Maru Gothic', sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 28px;
	color: var(--black-color);
	overflow-x: hidden;
	word-wrap: break-word;
	overflow-wrap: break-word;
	-webkit-text-size-adjust: 100%;
}
input {
	font-family: 'Zen Maru Gothic', sans-serif;
}
img{
	vertical-align: top;
	max-width: 100%;
    image-rendering: -webkit-optimize-contrast;
    height: auto;
}
a img {
  height: auto;
  max-width: 100%;
  max-height: 100%;
  transition: transform 0.3s ease-out;
}
a img::after {
	width: 100%;
    height: 100%;
    background-color: var(--black-color);
    content: "";
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}
a {
	color: var(--black-color);
	display: block;
	text-decoration: none;
	text-underline-position: under;
	transition: all 0.2s;
	overflow: hidden; /* はみ出した部分を非表示にする */
}

ul,
ol {
  list-style-type: none;
}
.hover {
	transition: all 0.2s;
}
#drawer-navigation{
	display:none;
}
h1{
	font-size: 24px;
	line-height: 30px;
	margin-top: 10px;
}
h2{
    font-size: 42px;
    line-height: 1.5;
    font-weight: 900;
	color: var(--color1);
	text-align: center;
	margin-bottom: 50px;
}
title {
	display: block;
}
table {
    width: 100%;
    border-collapse: collapse;
}
.btn a{
	display: block;
	text-align: center;
	max-width: 320px;
	width: 100%;
	color: var(--white-color);
	font-size: 20px;
	font-weight: 500;
	padding: 20px 0;
	box-sizing: border-box;
	background: var(--color1);
	text-decoration: none;
	border-radius: 100px;
}
.btn a:hover{
	background: var(--color4);
}
.btn-red a{
	display: block;
	text-align: center;
	max-width: 400px;
	width: 100%;
	color: var(--white-color);
	font-size: 20px;
	font-weight: 900;
	padding: 30px 0;
	box-sizing: border-box;
	background: var(--color4);
	text-decoration: none;
	border-radius: 100px;
}
.btn-red a:hover{
	background: var(--color1);
}
.btn-center a {
	margin: 0 auto;
}

@media screen and (max-width: 768px){
	h2 {
		font-size: 24px;
	}
	.btn a {
		max-width: 240px;
	}
	.btn-red a {
		max-width: 280px;
		padding: 25px 0;
	}
}

/*-----------------------------
animation
-----------------------------*/
.fadein {
  opacity: 0;
  transform: translate(0,0);
  transition: all 0.5s;
}
.fadein-left {
  opacity: 0;
  transform: translateX(-120px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}
.fadein-right {
  opacity: 0;
  transform: translate(120px,0);
  transition: opacity 0.5s ease-in-out 0.5, transform 0.5s ease-in-out 0.5;
}
.fadein-right2 {
  opacity: 0;
  transform: translate(240px,0);
  transition: opacity 0.5s ease-in-out 0.75, transform 0.5s ease-in-out 0.75;
}
.fadein-right3 {
  opacity: 0;
  transform: translate(360px,0);
  transition: opacity 0.5s ease-in-out 1, transform 0.5s ease-in-out 1;
}
.fadein-up {
  opacity: 0;
  transform: translate(0,-120px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}
.fadein-bottom {
  opacity: 0;
  transform: translate(0,120px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}
/*.scrollin {
  opacity: 1;
  transform: translateX(0);
}
.scrollout {
  opacity: 0;
  transform: translateX(-50px);
}

.scrollin .fadein-left {
  opacity: 1;
  transform: translateX(0);
}

.slick {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.scrollin .slick {
  opacity: 1;
}*/

.scrollin {
  opacity: 1;
  transform: translate(0,0);
}
.delay1 {
  transition-delay: 0.2s;
}
.delay2 {
  transition-delay: 0.4s;
}
.delay3 {
  transition-delay: 0.6s;
}
@media screen and (max-width: 768px){
	.delay1 {
	  transition-delay: 0s;
	}
	.delay2 {
	  transition-delay: 0s;
	}
	.delay3 {
	  transition-delay: 0s;
	}
}

/*-----------------------------
header
-----------------------------*/
#menu a {
    display: block;
    text-decoration: none;
    font-size: 1rem;
}

.service-lp .header {
	height: 90px;
}
.service-lp #menu {
	padding-right: 50px;
}
.service-lp #menu li:last-of-type a {
	display: block;
    text-decoration: none;
    font-size: 1rem !important;	
    background: var(--color1) !important;
    padding: 10px 15px !important;
    color: var(--white-color) !important;
    height: auto !important;
	border-radius: 100px;
}
.service-lp #menu li:last-of-type a::before {
	display: none !important;
}
.service-lp #menu li:last-of-type a:hover {
  text-decoration: none !important;
  background: var(--color4) !important;
}

@media screen and (max-width: 1320px){
	.service-lp #menu {
		padding-right: 10px;
	}
	.service-lp #menu li {
		margin: 0 0 0 10px;
	}
}
@media screen and (max-width: 1080px){
	#menu a {
		display: block;
		text-decoration: none;
		font-size: 0.8rem;
	}
}
@media screen and (max-width: 768px){
	#menu a {
		display: block;
		text-decoration: none;
		font-size: 16px;
	}
	.service-lp .header {
		height: 60px;
	}
	.service-lp .tel-banner {
		position: fixed;
		z-index: 900;
		bottom: 2%;
		right: 0;
		width: 140px;
	}
	.service-lp #menu li:last-of-type a {
        color: #fff !important;
        padding: 17px 15px !important;
        background: url(../images/img16.png) right 15px center no-repeat !important;
        background-color: var(--color1);
		text-align: left;
    }
	.service-lp #menu li:last-of-type a:hover {
	  text-decoration: none !important;
	  color: #fff !important;
	}
	.service-lp #menu li a:hover {
	  text-decoration: none !important;
	  color: #fff !important;
	}
}

/*-----------------------------
footer
-----------------------------*/
.service-lp .footer-content {
    display: block;
    max-width: 960px;
}
.footer-lp-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 42px;
	font-weight: 900;
	margin-bottom: 50px;
}
.footer-lp-logo img {
	background: var(--white-color);
	padding: 20px 30px;
	margin-right: 20px;
	max-width: 240px;
	width: 100%;
}
.footer-lp-info {
	display: flex;
	justify-content: center;
    flex-wrap: wrap;
}
.footer-lp-info>p {
	width: 60%;
	margin-right: 4%;
}
.footer-lp-info>div {
	width: 36%;
}
.footer-lp-info p {
	font-size: 24px;
	line-height: 1.5;
}
.footer-lp-info>div p {
	margin-bottom: 30px;
}
.footer-copy {
    font-size: 14px;
}
.footer-copy a {
    color: var(--white-color);
	display: contents;
}
.footer-copy a:hover {
	color: var(--color4);
}

@media screen and (max-width: 768px){
	.footer-lp-logo {
		display: block;
		font-size: 32px;
	}
	.footer-lp-logo img {
		background: var(--white-color);
		padding: 10px 20px;
		margin-right: 0;
		max-width: 200px;
		margin-bottom: 20px;
	}
	.footer-lp-info p {
		font-size: 18px;
		line-height: 1.5;
		text-align: center;
	}
	.footer-lp-info>p {
		width: 100%;
		margin-right: 0;
		margin-bottom: 30px;
	}
	.footer-lp-info>div {
		width: 100%;
	}
}

/*-----------------------------
main
-----------------------------*/
#slider{
	position: relative;
	margin: 0;
	height: 860px;
	overflow: hidden;
}
#slider .slider-wrap {
	width: 100%;
	position: relative;
	overflow: hidden;
}
#slider .slider-wrap img {
	width: 100%;
	height: 860px;
	object-fit: cover;
	object-position:center center;
}
#slider .slider-wrap figure {
	position: relative;
	overflow: hidden;
}
#slider .slider-wrap figure::after {
	content:"";
	display:block;
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
	backdrop-filter:blur(8px);
	animation:blur 2s ease-in-out forwards;
}
.slide-animation{
    animation: fadezoom 6s 0s forwards;
	animation-fill-mode:forwards;
}
@keyframes fadezoom {
  0% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1.0);
  }
}
@keyframes blur{
  0%{backdrop-filter:blur(8px);}
  100%{backdrop-filter:none;}
}
.slider-message {
	position: absolute;
	left: 10%;
	top: 50%;
	transform: translateY(-50%);
	-webkit- transform: translateY(-50%);
	z-index: 400;
	font-weight: bold;
}
.slider-message .catch-cnt {
	color: var(--white-color);
	line-height: 1.4;
	font-weight: bold;
	text-shadow: rgba(0,0,0,.4) 0 0 15px;
}
.slider-message .en-sub img {
}
.slider-message .catch {
	color: var(--white-color);
	font-size: 68px;
	text-align: left;
	padding-top: 0px;
	letter-spacing: 5px;
	margin-bottom: 20px;
}
.slider-message .sub-catch {
	font-size: 28px;
	font-weight: 500;
	margin-top: 20px;
	line-height: 1.5;
	letter-spacing: 2px;
    margin-bottom: 30px;
}
.slider-message .sub-catch br:nth-of-type(2) {
	display: none;
}
.slider-deco {
	position: absolute;
	width: 100%;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
}
.slider-deco img {
	width: 100%;
}
.slider-medal {
	position: absolute;
	bottom: 40px;
	right: 10%;
	z-index: 2;
}

main {
	background: var(--white-color);
}
section .inner{
	max-width: 1280px;
	width: 100%;
	margin: 0 auto;
}
section .inner2 {
	max-width: 1180px;
	width: 100%;
	margin: 0 auto;
}
section .inner3 {
	max-width: 960px;
	width: 100%;
	margin: 0 auto;
}
.inner .t-text {
	text-align: center;
	margin-bottom: 50px;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.75;
}

.fv-wrapper {
	position: relative;
	height: 100vh;
	overflow: hidden;
}

#section1 {
	padding: 30px 0 170px;
	background:url("../images/service-lp/bg_deco2.svg") no-repeat bottom center / 100%,linear-gradient(to bottom, #F4F4F9 0%, #F4F4F9 99%, #FFFFFF 99%, #FFFFFF 100%);
}

#section1 h2 {
	margin-bottom: 80px;
}

#section1 .section1-cnt {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

#section1 .section1-cnt li {
	width: 49%;
	padding: 60px;
	border-radius: 20px;
	background: var(--white-color);
	position: relative;
}
#section1 .section1-cnt li img {
	margin: 0 auto 20px;
	border-radius: 10px;
    display: block;
}
#section1 .section1-cnt .list-title {
	position: absolute;
	max-width: 420px;
	width: 100%;
	font-size: 20px;
	font-weight: 900;
	color: var(--white-color);
	text-align: center;
	padding: 15px 0;
	top: -30px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--color2);
}
#section1 .section1-cnt .list-text {
	line-height: 1.8;
}
#section1 .section1-cnt .list-note {
	background: var(--gray-color);
	padding: 20px;
	font-size: 16px;
	border-radius: 10px;
	margin-top: 20px;
}
#section1 .section1-cnt li .service-medal {
	position: absolute;
	right: 20px;
	top: 20px;
	z-index: 1;
}

#section2 {
	padding: 50px 0 170px;
	background:url("../images/service-lp/bg_deco3.svg") no-repeat bottom center / 100%,linear-gradient(to bottom, #FFFFFF 0%, #FFFFFF 99%, #F4F4F9 99%, #F4F4F9 100%);
}
#section2 h2 {
	margin-bottom: 80px;
}
#section2 .section2-list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#section2 .section2-list li {
	width: 23.5%;
	padding: 70px 20px 30px;
	border-radius: 5px;
	background: var(--gray-color);
	position: relative;
	font-weight: 500;
}
#section2 .section2-list li img {
	max-width: 240px;
	width: 100%;
	margin: 0 auto 20px;
}
#section2 .section2-list li .point-medal {
	max-width: 120px;
	width: 100%;
	margin: 0;
	position: absolute;
	top: -50px;
	left: 50%;
	transform: translateX(-50%);
}
#section2 .section2-list li p {
	text-align: center;
}
#section2 .section2-cnt .point-note {
	margin: 20px 0 80px;
}
#section2 .section2-point .pont-title-wide {
	display: flex;
	align-items: center;
	position: relative;
	z-index: 2;
}
#section2 .section2-point .pont-title-wide p {
	font-size: 42px;
	font-weight: 900;
	margin-left: 20px;
}
#section2 .section2-point .line {
	height: 1px;
	width: 97%;
	margin-left: 3%;
	background: var(--black-color);
	margin-top: -20px;
	margin-bottom: 50px;
	position: relative;
	z-index: 1;
}
#section2 .section2-point .text-center {
	text-align: center;
	margin-bottom: 40px;
	font-size: 20px;
	font-weight: 500;
	line-height: 2;
}
#section2 .section2-point>img {
	margin: 0 auto;
	display: block;
	max-width: 960px;
	width: 100%;
}

#section3 {
	padding: 50px 0 120px;
	background: var(--gray-color);
}
#section3 h2 {
	margin-bottom: 30px;
}
#section3 .section3-cnt ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#section3 .section3-cnt ul li {
	width: 49%;
	background: var(--white-color);
	border-radius: 20px;
	padding: 40px;
	margin-bottom: 30px;
}
#section3 .section3-cnt ul li img {
	border-radius: 10px;
	width: 100%;
	margin-bottom: 20px;
}
#section3 .section3-cnt ul li p {
	font-weight: 500;
	line-height: 1.75;
}
#section3 .section3-cnt ul li .r-service-title {
	font-size: 32px;
	font-weight: 900;
	color: var(--color1);
	margin-bottom: 20px;
}

.section-flow {
	padding: 80px 0;
	background: url(../images/service-lp/bg_flow.jpg) center no-repeat;
	background-size: cover;
}
.section-flow h2 {
	color: var(--white-color);
	text-shadow: 0 0 20px var(--color2);
}
.section-flow .inner {
	display: flex;
	justify-content: space-between;
}
.section-flow .inner>div {
	width: 49%;
	background: var(--white-color);
	border-radius: 10px;
	padding: 30px;
	text-align: center;
	color: var(--color1);
}
.section-flow .inner>div h3 {
	font-size: 24px;
	font-weight: 900;
}
.section-flow .inner>div p {
	font-weight: 500;
	font-size: 16px;
}
.flow-telbox h4 {
    position: relative;
    font-size: 64px;
    line-height: 1;
    padding-left: 60px;
    margin: 40px 0 20px 0;
    display: inline-block;
    background: url(../images/service-lp/icon_tel.svg) bottom 3px left no-repeat;
}
.flow-telbox h4 span {
    position: absolute;
    font-size: 14px;
    top: -15px;
}
.flow-telbox h4 .read1 {
    right: 164px;
}
.flow-telbox h4 .read2 {
    right: 20px;
}
.flow-cntbox .btn-red a {
	margin: 20px auto 12px;
}

#section4 {
	padding: 120px 0;
	background: url(../images/service-lp/bg_step-flow.jpg) center no-repeat fixed;
	background-size: cover;
}
#section4 h2 {
	margin-bottom: 70px;
}
#section4 .section4-list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#section4 .section4-list li {
	width: 30%;
	position: relative;
	background: var(--white-color);
	border-radius: 10px;
	padding: 30px;
	margin-bottom: 50px;
	box-shadow: 0 0 20px rgba(0, 0, 0, .10);
}
#section4 .section4-list li.flow-deco {
	width: 3%;
	border: none;
	border-radius: 0;
	background: none;
	padding: 0;
	box-shadow: none;
	display: flex;
}
#section4 .section4-list li.none {
	display: none;
}
#section4 .section4-list li img {
	border-radius: 5px;
}
#section4 .section4-list li span {
	position: absolute;
	display: block;
	top: -20px;
	left: 0;
}
#section4 .section4-list li p {
	text-align: center;
	margin-top: 20px;
	font-size: 20px;
	line-height: 1.5;
	font-weight: 500;
}
#section4 .section4-list li span.red-tag {
	position: absolute;
	right: 10px;
	left: auto;
	top: 10px;
	font-size: 18px;
	font-weight: 900;
	color: var(--white-color);
	padding: 4px 10px;
	background: var(--color4);
	border-radius: 30px;
}

#section5 {
	padding: 120px 0;
}
#section5 h2 {
	margin-bottom: 70px;
}
#section5 .price-cnt {
	position: relative;
	padding: 60px 80px 80px;
	border: 2px solid var(--color2);
	border-radius: 10px;
	text-align: center;
}
#section5 .price-cnt .price-title {
	position: absolute;
	max-width: 420px;
	width: 100%;
	font-size: 20px;
	font-weight: 900;
	color: var(--white-color);
	text-align: center;
	padding: 15px 0;
	top: -30px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--color2);
}
#section5 .price-cnt .t-text {
	display: inline-block;
	font-size: 24px;
	font-weight: 700;
	background: linear-gradient(transparent 60%, #FFCACB 40%);
}
#section5 .price-cnt .price-flex {
	display: flex;
	justify-content: space-between;
}
#section5 .price-cnt .price-flex>img {
	width: 48%;
}
#section5 .price-cnt .price-flex .price-right {
	width: 48%;
}
#section5 .price-cnt .price-flex .price-right .price-right-title {
	font-size:32px;
	font-weight: 700;
	color: var(--color2);
	padding-bottom: 10px;
	margin-bottom: 20px;
	border-bottom: 1px solid var(--color2);
	text-align: left;
}
#section5 .price-cnt .price-caution {
	margin: 30px 0 60px;
	background: var(--gray-color);
	color: var(--color4);
	font-size:20px;
	font-weight: 700;
	padding: 10px 0;
}
#section5 .price-cnt .price-text {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 30px;
}
#section5 .price-service {
	padding: 30px 80px 10px;
	border: 1px solid var(--color1);
	border-radius: 10px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
#section5 .price-service li {
	margin: 0 30px 20px;
	list-style: disc;
	list-style-position:inside;
	font-size: 20px;
	font-weight: 500;
}
#section5 h3 {
	font-size:36px;
	text-align: center;
	margin: 80px 0 40px;
	color: var(--color2);
	font-weight: 700;
}
#section5 .price-table {
	padding: 0 50px;
	margin-bottom: 30px;
}
#section5 .price-table li {
	display: flex;
	justify-content: space-between;
	margin-bottom: 5px;
}
#section5 .price-table li.table-first p {
	color: var(--white-color);
	background: var(--color1);
}
#section5 .price-table li p {
	text-align: center;
	padding: 20px 0;
	font-size: 20px;
	font-weight: 500;
	width: 33%;
}
#section5 .price-table li p br {
	display: none;
}
#section5 .price-table li.bg-gray p {
	background: var(--gray-color);
}
#section5 .price-table li p.price-red {
	color: var(--color4);
	font-weight: 700;
}
#section5 .price-text-note {
	padding: 0 50px;
}

#section6 {
	padding: 120px 0;
	background: var(--gray-color);
}
#section6 ul li {
	background: var(--white-color);
	border-radius: 10px;
	padding: 30px;
	display: flex;
	margin-bottom: 30px;
	align-items: flex-start;
}
#section6 ul li img {
	border-radius: 10px;
}
#section6 ul li div {
	flex: 1;
	margin-left: 30px;
}
#section6 ul li div .age {
	font-size: 18px;
	font-weight: 700;
	background: var(--color2);
	color: var(--white-color);
	padding: 3px 10px;
	margin-bottom: 20px;
	display: inline-block;
}
#section6 ul li div .voice-text {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.8;
}

#section7 {
	padding: 120px 0;
}
.module-accordion li {
	margin-bottom: 30px;
}
.qa-content .accor-title a {
	display: block;
	position: relative;
}
.qa-content .accor-title a:before {
	content: 'Q';
	background: var(--color2);
	width: 58px;
	height: 58px;
	line-height: 58px;
	text-align: center;
	border-radius: 100%;
	display: inline-block;
	color: var(--white-color);
	font-size: 24px;
	position: absolute;
	top: 0;
	left: 0;
	font-weight: 900;
}
.qa-content .accor-title a,
.qa-content .accor-title a:visited,
.qa-content .accor-title a:active,
.qa-content .accor-title a:focus,
.qa-content .accor-title a:hover {
	color: var(--black-color);
}
.qa-content .accor-title .accor-title-inner {
	margin-left: 70px;
	padding: 12px 70px 12px 20px;
	font-size: 18px;
	background: var(--white-color);
	border-radius: 10px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	line-height: 1.8;
	position: relative;
	color: var(--black-color);
	font-weight: normal;
	border: 1px solid var(--color2);
	position: relative;
}
.qa-content .accor-title .accor-title-inner .dli-plus {
	display: inline-block;
	vertical-align: middle;
	color: var(--color2);
	line-height: 1;
	width: 1em;
	height: 2px;
	background: currentColor;
	border-radius: 0.1em;
	position: absolute;
	right: 2%;
	top: 50%;
	transform: translateY(-50%);
}
.qa-content .accor-title .accor-title-inner .dli-plus::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: inherit;
	border-radius: inherit;
	transform: rotate(90deg);
	opacity: 1;
	transition: all 0.2s;
}
.qa-content .accor-title .active .accor-title-inner .dli-plus::before {
	opacity: 0;
}
.qa-content .accor-body {
	margin-top: 20px;
	padding-left: 70px;
	display: none;
	position: relative;
}
.qa-content .accor-body:before {
	content: 'A';
	background: var(--color1);
	width: 58px;
	height: 58px;
	line-height: 58px;
	text-align: center;
	border-radius: 100%;
	display: inline-block;
	color: var(--white-color);
	font-size: 24px;
	position: absolute;
	top: 0;
	left: 0;
	font-weight: 900;
}
.module-accordion li.active .accor-body {
	display: block;
}
.qa-content .accor-body .accor-inner {
	background: var(--gray-color);
	padding: 20px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
    font-size: 18px;
}
.qa-content .accor-body .accor-inner a {
	margin-top: 10px;
	color: var(--color2);
	text-decoration: underline;
}
.qa-content .accor-body .accor-inner a:hover {
	color: var(--color1);
}

#contact-lp {
	padding: 120px 0;
	background-image: url(../images/service-lp/bg_contact.jpg);
	background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
#contact-lp .inner3 {
	background: var(--white-color);
	padding: 80px 50px 30px;
	border-radius: 20px;
}
#contact-lp .wpcf7-form h4 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--color2);
}
#contact-lp .wpcf7-form p>span {
	margin-bottom: 80px;
	display: block;
}
#contact-lp .wpcf7-form p>span .wpcf7-list-item {
	display: block;
	margin: 0 0 20px 0;
}
#contact-lp .wpcf7-form h4:before {
    margin-right: 10px;
    padding: 5px 10px;
    background-color: var(--color1);
    border-radius: 5px;
    color: var(--white-color);
    content: "任意";
    font-size: 18px;
	display: inline-block;
}
#contact-lp .wpcf7-form h4.req:before {
    background-color: var(--color4);
    content: "必須";
}
#contact-lp .wpcf7-form .wpcf7-checkbox .wpcf7-list-item input,
#contact-lp .wpcf7-form .wpcf7-radio .wpcf7-list-item input{
    width: 30px;
    height: 30px;
    margin-right: 10px;
    vertical-align: middle;
}
#contact-lp .wpcf7-form .button {
    display: block;
    text-align: center;
    max-width: 320px;
	width: 100%;
	border: none;
    color: var(--white-color);
    font-size: 20px;
    padding: 20px 0;
	margin: 50px auto 0;
    box-sizing: border-box;
    background: var(--color4);
    text-decoration: none;
    border-radius: 100px;
}
#contact-lp .wpcf7-form .button:hover {
	background: var(--color2);
	transition: all 0.2s;
}
#contact-lp .wpcf7-form .kome {
	margin-bottom: 80px;
	margin-top: -70px;
	color: var(--color4); 
}
#contact-lp .wpcf7-form p>label {
	margin-top: -70px;
	margin-bottom: 10px;
	font-size: 24px;
	font-weight: bold;
	display: block;
}
#contact-lp .wpcf7-form p>label:first-of-type {
	margin-top: 0;
}
input:not([type=submit]):not([type=button]):not([type=reset]):not([type=checkbox]):not([type=radio]), textarea,
#contact-lp .wpcf7-form select {
    width: 100%;
    padding: 10px;
    border: 1px solid #a9a9a9;
    line-height: 1.8;
	border-radius: 5px;
	font-size: 18px;
}
#contact-lp .wpcf7-form #zip,
#contact-lp .wpcf7-form #pref,
#contact-lp .wpcf7-form #tel {
	width: 50%;
}
.wpcf7 .accept-box {
	padding: 50px 0;
	width: 100%;
	border-top: 1px solid #a9a9a9;
	border-bottom: 1px solid #a9a9a9;
	margin-bottom: 80px;
}
.wpcf7 .accept-text {
  text-align: center;
}
.wpcf7 .accept-text a {
  display: inline-block;
  color: var(--color1);
  text-decoration: underline;
  vertical-align: bottom;
}
.wpcf7 .accept-text a:hover {
  color: var(--color2);
  text-decoration: none;
}
.wpcf7 .accept {
  text-align: center;
  margin-top: 30px;
}
.wpcf7 .accept>label {
  padding: 15px 35px;
  display: inline-block;
  border: 1px solid var(--color2);
  color: var(--color2);
  border-radius: 100px;
  cursor: pointer;
  font-size: 20px;
  font-weight: 500;
}
.wpcf7 .accept>label>span {
  margin-right: 15px;
}
.wpcf7 .accept>label>span .wpcf7-list-item {
  display: inline-block;
  margin: 0 0 0 0;
}
.wpcf7 .accept>label>span .wpcf7-list-item input {
  scale: 1.5;
}

/*-----------------------------
Media query
-----------------------------*/
@media screen and (max-width: 1380px){
	.slider-message .en-catch {
    	width: 80%;
	}
	.slider-message .catch {
    	font-size: 56px;
    	padding-top: 15px;
    	margin-bottom: 20px;
	}
	.slider-message {
    	left: 5%;
	}
	.slider-message .en-sub {
    	width: 80%;
	}
	.slider-message .line {
    	max-width: 640px;
	}
	.slider-message .sub-catch {
    	font-size: 24px;
	}
	section .inner {
		width: 100%;
		padding: 0 3%;
	}
	#about,#recruit,#entry {
    	padding: 120px 3%;
	}
	#about .img-about {
    	width: 64%;
	}
	#about .about-cnt {
    	padding: 40px;
	}
}
@media screen and (max-width: 1180px){
	#right-fit .fit-cnt li h3 {
    	font-size: 20px;
    	margin: 15px 0;
    	letter-spacing: 0;
	}
}
@media screen and (max-width: 1100px){
	#entry .wpcf7-form {
    	padding: 0;
	}
	#entry .contact-box {
    	padding: 0;
	}
}
@media screen and (max-width: 1000px){
	#entry .inner2 {
    	padding: 100px 30px 50px;
	}
	#recruit .recruit-cnt {
    	padding: 50px 30px 0;
	}
	#voice .voice-cnt {
		padding: 50px;
	}
}
@media screen and (max-width: 768px){
	section .inner,section .inner2 {
		width: 100%;
		padding: 0 15px;
	}
	#slider {
		height: 640px;
	}
	.slider-message {
		top: 44%;
	}
	.slider-message .catch {
        font-size: 32px;
        padding-top: 0px;
        margin-bottom: 20px;
    	letter-spacing: 2px;
    }
	.slider-message .en-catch {
        width: 95%;
        max-width: 420px;
    }
	.slider-message .en-sub {
        width: 96%;
        max-width: 300px;
    }
	.slider-message .en-sub img {
    	width: 90%;
    	margin-bottom: 10px;
	}
    .slider-message .sub-catch {
        font-size: 15px;
		letter-spacing: 0px;
		line-height: 1.7;
		margin-bottom: 20px;
    }
	.slider-message .sub-catch br:nth-of-type(2) {
		display: block;
	}
	.slider-message .line {
        max-width: 420px;
		width: 90%;
    }
	.slider-message {
        left: 3%;
    }
	.slider-medal {
		position: absolute;
		bottom: 10px;
		right: 3%;
		z-index: 2;
		width: 140px;
	}
	.slider-deco {
		overflow: hidden;
	}
	.slider-deco img {
    	max-width: 800px;
		width: 800px;
	}
	#slider .slider-wrap img {
		height: 640px;
	}
	#section1 {
		padding: 50px 0 60px;
        background: url(../images/service-lp/bg_deco2.svg) no-repeat bottom 15px center / 100%, linear-gradient(to bottom, #F4F4F9 0%, #F4F4F9 99%, #FFFFFF 99%, #FFFFFF 100%);
        background-size: 800px;
	}
	#section1 .section1-cnt {
    	display: block;
	}
	#section1 .section1-cnt li {
		width: 100%;
		padding: 30px 20px 20px;
		border-radius: 10px;
		margin-bottom: 70px;
	}
	#section1 .section1-cnt .list-title {
		position: absolute;
		max-width: 240px;
		width: 100%;
		font-size: 18px;
		padding: 10px 0;
	}
	#section1 .section1-cnt li .service-medal {
    	right: 5px;
    	top: 20px;
    	width: 100px;
	}
	#section1 .section1-cnt .list-text {
    	font-size: 16px;
	}
	#section1 .section1-cnt .list-note {
		padding: 15px;
		font-size: 15px;
		border-radius: 10px;
		margin-top: 20px;
	}

	#section2 {
		padding: 50px 0 100px;
		background: url(../images/service-lp/bg_deco3.svg) no-repeat bottom 10px center / 100%, linear-gradient(to bottom, #FFFFFF 0%, #FFFFFF 99%, #F4F4F9 99%, #F4F4F9 100%);
	}
	#section2 h2 {
    	margin-bottom: 60px;
	}
	#section2 .section2-list li {
		width: 48%;
		padding: 50px 15px 20px;
		margin-bottom: 60px;
	}
	#section2 .section2-list li .point-medal {
    	max-width: 80px;
    	top: -40px;
	}
	#section2 .section2-list li p {
    	font-size: 16px;
	}
	#section2 .section2-cnt .point-note {
    	margin: -20px 0 80px;
    	font-size: 16px;
	}
	#section2 .section2-point .pont-title-wide img {
		max-width: 80px;
	}
	#section2 .section2-point .pont-title-wide p {
		font-size: 22px;
		font-weight: 900;
		margin-left: 15px;
		flex: 1;
		line-height: 1.5;
	}
	#section2 .section2-point .line {
		height: 1px;
		width: 90%;
		margin-left: 10%;
		background: var(--black-color);
		margin-top: -4px;
		margin-bottom: 30px;
	}
	#section2 .section2-point .text-center {
		margin-bottom: 30px;
		font-size: 18px;
	}

	.inner .t-text {
		text-align: center;
		margin-bottom: 30px;
		font-size: 16px;
	}

	#section3 {
		padding: 50px 0 80px;
	}
	#section3 .section3-cnt ul li {
		width: 100%;
		background: var(--white-color);
		border-radius: 10px;
		padding: 20px;
		margin-bottom: 30px;
	}
	#section3 .section3-cnt ul li img {
		border-radius: 5px;
		width: 100%;
		margin-bottom: 20px;
	}
	#section3 .section3-cnt ul li .r-service-title {
		font-size: 24px;
		font-weight: 900;
		color: var(--color1);
		margin-bottom: 20px;
	}
	#section3 .section3-cnt ul li p {
		font-size: 16px;
	}
	.section-flow {
		padding: 80px 15px;
		background: url(../images/service-lp/bg_flow_sp.jpg) center center / cover no-repeat;
	}
	.section-flow h2 {
		font-size: 20px;
    	margin-bottom: 30px;
	}
	.section-flow .inner {
		display: block;
		padding: 0;
	}
	.section-flow .inner>div {
		width: 100%;
		border-radius: 5px;
		padding: 15px;
		text-align: center;
		margin-bottom: 20px;
	}
	.section-flow .inner>div h3 {
		font-size: 18px;
		font-weight: 900;
	}
	.flow-telbox h4 {
		position: relative;
		font-size: 40px;
		line-height: 1;
		padding-left: 34px;
		margin: 30px 0 20px 0;
		display: inline-block;
		background: url(../images/service-lp/icon_tel.svg) bottom 3px left no-repeat;
		background-size: 28px;
	}
	.flow-telbox h4 span {
		font-size: 12px;
	}
	.flow-telbox h4 .read1 {
		right: 96px;
	}
	.flow-telbox h4 .read2 {
		right: 3px;
	}
	.section-flow .inner>div p {
		font-weight: 500;
		font-size: 14px;
	}

	#section4 {
		padding: 80px 0;
	}
	#section4 h2 {
    	margin-bottom: 50px;
	}
	#section4 .section4-list li {
		width: 100%;
		position: relative;
		background: var(--white-color);
		border-radius: 10px;
		padding: 20px;
		margin-bottom: 30px;
		box-shadow: 0 0 20px rgba(0, 0, 0, .10);
	}
	#section4 .section4-list li.none {
		display: flex;
	}
	#section4 .section4-list li.flow-deco {
		width: 100%;
		justify-content: center;
		transform: rotate(90deg);
	}
	#section4 .section4-list li span img {
		width: 120px;
	}
	#section4 .section4-list li>img {
		margin: 0 auto;
		display: block;
	}
	#section5 h2 {
    	margin-bottom: 60px;
	}
	#section5 .price-cnt .price-title {
		max-width: 240px;
		font-size: 18px;
		padding: 10px 0;
		top: -25px;
	}
	#section5 .price-cnt {
		position: relative;
		padding: 50px 20px 30px;
		border: 2px solid var(--color2);
		border-radius: 10px;
		text-align: center;
	}
	#section5 .price-cnt .t-text {
		display: inline-block;
		font-size: 20px;
		font-weight: 700;
		background: none;
	}
	#section5 .price-cnt .price-flex {
    	display: block;
	}
	#section5 .price-cnt .price-flex>img {
		width: 100%;
	}
	#section5 .price-cnt .price-flex .price-right {
		width: 100%;
	}
	#section5 .price-cnt .price-flex .price-right .price-right-title {
		font-size: 24px;
		margin-top: 20px;
	}
	#section5 .price-cnt .price-caution {
		margin: 30px 0 40px;
		font-size: 16px;
	}
	#section5 .price-cnt .price-text {
		font-size: 20px;
		margin-bottom: 20px;
	}
	#section5 .price-service {
		padding: 20px 20px 10px;
		border: 1px solid var(--color1);
		border-radius: 10px;
		display: flex;
		justify-content: flex-start;
	}
	#section5 .price-service li {
		width: 100%;
		margin: 0 0 10px;
		font-size: 18px;
		text-align: left;
	}
	#section5 .price-table {
		padding: 0;
	}
	#section5 h3 {
		font-size: 24px;
		margin: 80px 0 30px;
	}
	#section5 .price-table {
		padding: 0;
		margin-bottom: 30px;
	}
	#section5 .price-table li p {
		padding: 15px 0;
		font-size: 16px;
		width: 33%;
	}
	#section5 .price-text-note {
    	padding: 0;
		font-size: 16px;
	}
	#section5 .price-table li p br {
		display: block;
	}
	
	#section6 {
		padding: 80px 0;
	}
	#section6 ul li {
		border-radius: 10px;
		padding: 20px 15px;
		margin-bottom: 30px;
	}
	#section6 ul li img {
		border-radius: 5px;
		width: 90px;
	}
	#section6 ul li div {
		margin-left: 20px;
	}
	#section6 ul li div .voice-text {
		font-size: 16px;
	}
	#section6 ul li div .age {
		font-size: 16px;
		padding: 2px 10px;
		margin-bottom: 10px;
	}
	#section7 {
    	padding: 80px 0;
	}
	#section7 .inner3 {
		padding: 0 15px;
	}
	.qa-content .accor-body:before {
		width: 44px;
		height: 44px;
		line-height: 44px;
	}
	.qa-content .accor-title a:before {
		width: 44px;
		height: 44px;
		line-height: 44px;
	}
	.qa-content .accor-title .accor-title-inner {
		margin-left: 55px;
		padding: 8px 30px 8px 10px;
		font-size: 16px;
	}
	.qa-content .accor-body .accor-inner {
		padding: 10px;
		font-size: 16px;
	}
	.qa-content .accor-body {
		margin-top: 15px;
		padding-left: 55px;
	}

	#contact-lp {
		padding: 80px 15px;
	}
	#contact-lp .inner3 {
		background: var(--white-color);
		padding: 50px 15px 30px;
		border-radius: 10px;
	}
	#contact-lp .wpcf7-form h4 {
		font-size: 20px;
	}
	#contact-lp .wpcf7-form h4:before {
		margin-right: 10px;
		padding: 3px 10px;
		font-size: 15px;
	}

}