/* Theme Name: ihinseiri-rac1122.com */

@charset "UTF-8";

/*-----------------------------
color
-----------------------------*/
/* 
【サイトカラーの変数】
ここの色を変更すると全体の色を変更できます(^)o(^)bたぶん
使用例) color: var(--black-color);
*/
:root {
	--white-color: #ffffff;
	--black-color: #4B362F;
	--gray-color: #F3EDE5;
	--color1: #BFAFA6;
	--color2: #FAC890;
	--theme-color: var(--color2);
	--font-color-base: 4B362F;
	--bg-color: #FFFEF4;
	--bg-image: unset;
	--bg-image-section: url("../images/bg.jpg");
}
/*-----------------------------
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,
footer, 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: "Klee One", cursive;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.8;
	color: var(--black-color);
	overflow-x: hidden;
	word-wrap: break-word;
	overflow-wrap: break-word;
	-webkit-text-size-adjust: 100%;
}
input {
	font-family: "Klee One", cursive;
}
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: 24px;
	margin-top: 10px;
}
h2{
	letter-spacing: 0.2rem;
    font-size: 28px;
    line-height: 1.4;
    font-weight: 900;
	padding-top: 90px;
	color: var(--black-color);
	text-align: center;
	margin-bottom: 40px;
    position: relative;
    z-index: 10;
}
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(--black-color);
	text-decoration: none;
	border-radius: 100px;
}
.btn a:hover{
	background: var(--color1);
}
.btn-center a {
	margin: 0 auto;
}

.position-anchor {
	position: relative;
}

@media screen and (max-width: 768px){
	h2 {
		padding-top: 75px;
		font-size: 24px;
		background-size: 220px !important;
		letter-spacing: 0.1rem;
	}
}

/*-----------------------------
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;
}
@media screen and (max-width: 768px){
	.delay1 {
	  transition-delay: 0s;
	}
	.delay2 {
	  transition-delay: 0s;
	}
}

/*-----------------------------
main
-----------------------------*/
#slider{
	position: relative;
	margin: 0;
	padding: 0;
	height: 100vh;
	overflow: hidden;
}
#slider .slider-wrap {
	width: 100%;
	position: relative;
	overflow: hidden;
	height: 100vh;
}
#slider .slider-wrap img {
	width: 100%;
	height: 100vh;
	object-fit: cover;
}
#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: 8.5%;
	top: 50%;
	transform: translateY(-50%);
	-webkit- transform: translateY(-50%);
	z-index: 400;
	font-weight: bold;
    padding: 85px 0;
    z-index: 10;
}
.slider-message .catch-cnt {
	color: var(--white-color);
	font-size: 42px;
	line-height: 1.4;
	font-weight: bold;
	text-shadow: rgba(0,0,0,.4) 0 0 15px;
}

.slider-message .catch-cnt {
	color: var(--font-color-base);
	text-shadow: unset;
}

.slider-message .en-catch {
	width: 95%;
	opacity: .9;
}
.slider-message .catch {
	color: var(--white-color);
	font-size: 40px;
	text-align: left;
	padding-top: 20px;
	padding-left: 14px;
	letter-spacing: 6px;
	margin-bottom: 70px;
}

.slider-message .catch {
	color: var(--font-color-base);
	margin-bottom: 140px;
}

.slider-message .catch .caption {
	font-size: 72px;
	margin-bottom: 30px;
}

.slider-message .catch .content {
	font-size: 32px;
}

#slider .decolation.lt {
	top: -0.5em;
	left: -4em;
}

.slider-message .en-sub {
	padding-left: 5px;
	width: 95%;
	opacity: .9;
}
.slider-message .sub-catch {
	font-size: 36px;
	padding-left: 14px;
	font-weight: 400;
	letter-spacing: 4px;
}

img.sub-catch.caption {
	position: absolute;
	padding: 0;
	margin: 0;
	top: -2.8em;
	left: -0.5em;
}

.slider-message .sub-catch br:nth-of-type(2) {
	display: none;
}

.slider-message .sub-catch.content {
	padding: 16px;
	font-size: 32px;
	background-color: var(--bg-color);
}

.slider-message .line {
	max-width: 760px;
	width: 100%;
	height: 1px;
	background: var(--white-color);
	margin: 10px 0 15px 10px;
}

#slider .top-slider.slider-wrap {
	width: 80%;
	margin-left: auto;
}

main {
	background-image: var(--bg-image);
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}

main {
	background-image: unset;
}

body {
	background-image: unset;
	background-color: var(--bg-color);
	z-index: -2;
	position: relative;
}

section .inner{
	max-width: 1160px;
	width: 100%;
	margin: 0 auto;
}
section .inner2 {
	max-width: 960px;
	width: 100%;
	margin: 0 auto;
}

section .inner2 {
	/*max-width: 50%;*/
}

.inner .t-text {
	text-align: center;
	margin-bottom: 50px;
}

.fv-wrapper {
	position: relative;
	height: 100vh;
	overflow: hidden;
}

.section-background {
	position: absolute;
	background-image: var(--bg-image-section);
	z-index: -1;
}
.decolation {
	position: absolute;
    z-index: 10;
}
.slider-message .catch img {
	z-index: -1;
}
.title-image-outer {
	display: block;
	position: absolute;
	width: 100%;
	text-align: center;
}


#about {
	padding: 160px 6%;
	display: flex;
    align-items: center;
	position: relative;
}
#about .section-background {
	width: 66%;
	height: 185%;
	left: 0;
}

#about .about-cnt {
    width: 50%;
	background: var(--white-color);
	padding:50px;
	margin-left: -8%;
	position: relative;
	z-index: 1;
}

#about .about-cnt {
	top: 5em;
}

#about .about-cnt h2 {
	text-align: left;
	background: url("../images/text_about.svg") no-repeat;
}

#about .about-cnt p {
	line-height: 2;
	letter-spacing: 0.3px;
}

#about .decolation.rt {
	right: -4em;
	top: -6em;
}

#about .img-about {
    width: 58%;
	flex-shrink: 0;
}

#charm {
	--bg-color-bottom: #BFAFA6;
}

#charm {
	background: linear-gradient(to bottom, var(--bg-color) 50%, var(--bg-color-bottom) 50%);
	padding: 120px 0 30px;
}

#charm {
	position: relative;
}

#charm .decolation.rt {
	right: 2em;
	top: 12em;
}

#charm .decolation.lt {
	top: 0em;
}

#charm .inner {
	max-width: 1680px;
	width: 100%;
}

#charm h2 {
	background: url("../images/text_charm.svg") no-repeat center;
}

#charm .carm-cnt {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

#charm .carm-cnt li {
	position: relative;
	width: 23.2%;
	padding: 30px;
	border-radius: 10px;
	border: 1px solid var(--color1);
	text-align: center;
	background: var(--white-color);
	margin-bottom: 50px;
	font-size: 16px;
	font-weight: 500;
}

#charm .charm-number {
	top: -1.5em;
	left: -1em;
}

#charm .carm-cnt li .caption {
	font-size: 24px;
	line-height: 36px;
	font-weight: 600;
}

#charm .carm-cnt li img {
	margin: 0 auto 20px;
}

#charm .content {
	text-align: left;
}

#lesson-schedule {
	--border-color: #BFAFA6;
}

#lesson-schedule {
	position: relative;
}

#lesson-schedule .schedule.inner {
	position: relative;
	padding: 0 6% 100px;
	width: 100%;
	max-width: unset;
	margin: 0;
}

#lesson-schedule .section-background {
	position: absolute;
	background-image: var(--bg-image-section);
	width: 1280px;
	height: 100%;
	z-index: -1;
}

#lesson-schedule .lesson.inner {
	max-width: 1680px;
    padding: 100px 3%;
}
#lesson-schedule .lesson.inner .title-image-outer {
    top: 0.5em;
}

#lesson-schedule h2 {
	text-align: center;
}

#lesson-schedule .lesson-cnt {
	display: flex;
	position: relative;
}

#lesson-schedule .lesson-caption {
	width: 820px;
	z-index: 1;
	position: relative;
	top: 4.5em;
	background: var(--bg-color);
	height: min-content;
	padding: 50px;
}

#lesson-schedule .lesson-caption-upper {
	display: block;
	font-size: 32px;
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 1px solid var(--theme-color);
}

#lesson-schedule .lesson-caption-lower {
	display: block;
}

#lesson-schedule .lesson-caption .decolation.lt {
	top: -8.75em;
	left: -3.5em;
}

#lesson-schedule .lesson-image {
	width: 1020px;
	margin-left: -100px;
}

#lesson-schedule .lesson-schedule-image {
	padding: 30px 68px;
	background: #FFFEF4;
	border: 1px solid var(--border-color);
	border-radius: 10px;
	max-width: 1160px;
	width: 100%;
	margin: auto;
	margin-top: -3em;
	position: relative;
}

#lesson-schedule .schedule.inner .title-image-outer {
	top: -2.5em;
	left: -1em;
}

#lesson-schedule .schedule-list {
	position: relative;
	justify-items: center;
	width: 1160px;
	margin: auto;
}

#lesson-schedule .schedule-outer {
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin-top: 30px;
}

#lesson-schedule .schedule-outer:first-child {
	margin: 0;
}

#lesson-schedule .schedule-time {
	max-width: 140px;
	width: 100%;
	padding: 20px;
	background: #FFA847;
	border-radius: 40px;
	margin-right: -2em;
	font-size: 24px;
	line-height: 16px;
	color: var(--white-color);
	height: min-content;
	z-index: 1;
	position: relative;
	top: 1.5em;
}


#lesson-schedule .schedule-time-line {
	width: 70px;
	position: absolute;
	border-right: solid 1px var(--theme-color);
	height: 82.5%;
	left: 0;
	top: 3em;
}

#lesson-schedule .schedule-content {
	display: flex;
	max-width: 1040px;
	width: 100%;
	padding: 50px;
	background: var(--bg-color);
	border: 1px solid var(--border-color);
	border-radius: 10px;
}

#lesson-schedule .schedule-content > div {
	margin-left: 50px;
}

#lesson-schedule .schedule-content > div:first-child {
	margin: 0;
}

#lesson-schedule .schedule-detail {
	margin-left: 50px;
	width: 100%;
}

#lesson-schedule .schedule-detail:first-child {
	margin: 0;
}

#lesson-schedule .schedule-detail-upper {
	font-size: 24px;
	line-height: 28px;
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid var(--theme-color);
}

#lesson-schedule .schedule-detail-lower {
	font-size: 16px;
	line-height: 32px;
}

#lesson-schedule .schedule-image {
	max-width: 300px;
}

#voice {
	--bg-color: #F3EDE5;
}

#voice h2 {
	background: url("../images/text_voice.svg") no-repeat center;
}

#voice .voice-cnt {
	position: relative;
	width: 100%;
	padding: 50px;
	background: var(--bg-color);
}

#voice .decolationlt {
	
}

#voice li.voice-staff-outer {
	display: flex;
	margin-bottom: 50px;
}

#voice li.voice-staff-outer:nth-child(even) {
	flex-flow: row-reverse;
}

#voice li.voice-staff-outer:last-child {
	margin-bottom: 0;
}

#voice .staff-image {
	max-width: 460px;
	width: 100%;
	align-self: flex-start;
}

#voice .voice-profile-outer {
	width: auto;
	padding: 0 0 0 50px;
}

#voice li.voice-staff-outer:nth-child(even) .voice-profile-outer {
	padding: 0 50px 0 0;
}

#voice .profile-outer {
	width: 100%;
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid var(--color2);
}

#voice .profile-upper {
	width: 100%;
}

#voice .profile-lower {
	width: 100%;
	display: flex;
	line-height: 28px;
}

#voice .profile-name {
	width: 50%;
	font-size: 28px;
}

#voice .profile-years {
	width: 50%;
	text-align: right;
	font-size: 20px;
	line-height: 24px;
}

#voice .voice-outer {
	
}

#voice .voice-caption {
	font-size: 28px;
	line-height: 42px;
}

#voice .voice-content {
	font-size: 16px;
	line-height: 32px;
}

#voice .decolation.lt {
	left: -8em;
	top: -7.5em;
}
#voice .decolation.rb {
	right: -7.2em;
	bottom: -5.25em;
}

#recruit {
	padding: 160px 0 120px;
	background: url("../images/img_deco.svg") no-repeat top;
}

#recruit {
	background: unset;
}

#recruit h2 {
	background: url("../images/text_recruit.svg") no-repeat center;
}
#recruit .recruit-cnt {
	background: unset;
	border-radius: 10px;
	padding: 50px 50px 0;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	border: 1px solid var(--color1);
}

#recruit .recruit-cnt {
	border-radius: unset;
	padding: unset;
	border: unset;
}

#recruit .recruit-cnt ul {
	width: 46%;
}

#recruit .recruit-cnt ul {
	width: 100%;
}

.recruit-caption {
	width: 30%;
}

#recruit .recruit-cnt ul .recruit-content {
	width: 70%;
	line-height: 32px;
}

#recruit .recruit-cnt ul li {
	margin-bottom: 50px;
}

#recruit .recruit-cnt ul li {
	margin-bottom: unset;
}

#recruit .recruit-cnt ul li .desc-title {
	font-size: 24px;
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid var(--color1);
	font-weight: 500;
}

#recruit .recruit-cnt ul li .desc-title {
	border-bottom: unset;
    padding-bottom: unset;
    margin-bottom: unset;
}

#recruit .recruit-cnt > ul > li {
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 1px solid var(--color1);
}

.recruit-cnt > ul > li {
	display: flex;
	align-items: center;
}

#recruit .recruit-cnt ul li p {
	line-height: 2;
}
#recruit .recruit-cnt ul li iframe {
	width: 100%;
	height: 200px;
	margin-top: 20px;
}
#recruit .recruit-cnt .title {
	width: 100%;
	font-size: 28px;
	padding-bottom: 10px;
	margin: 30px 0 50px;
	border-bottom: 1px solid var(--color1);
	text-align: center;
	font-weight: 500;
}
#recruit .recruit-cnt .sub-title {
	width: 100%;
	font-size: 28px;
	padding-bottom: 15px;
	margin-bottom: 10px;
	text-align: center;
	font-weight: 500;
}

#right-fit {
	padding: 120px 0;
	background: var(--white-color);
	position: relative;
}

#right-fit .inner {
	position: relative;
}

#right-fit .title-image-outer {
	top: 1em;
}

#right-fit .title-image {
	max-width: 34.4%;
	width: 100%;
}

#right-fit h2 {
	background: url("../images/text_right-fit.svg") no-repeat center;
	padding-top: 114px;
}

#right-fit h2 {
	background: unset;
	margin-bottom: 20px;
}

#right-fit .fit-cnt {
	display: flex;
	justify-content: space-between;
	margin-bottom: 80px;
}
#right-fit .fit-cnt li {
	width: 32%;
	line-height: 2;
}
#right-fit .fit-cnt li h3 {
	font-size: 24px;
	margin: 20px 0;
	font-weight: 500;
	letter-spacing: 2px;
}
#right-fit .fit-cnt li img {
	border-radius: 10px;
}

#right-fit .fit-cnt li img {
	border-radius: unset;
}

#entry {
	padding: 120px 0;
	background-image: url("../images/bg_entry.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}
#entry .inner2 {
	background: var(--white-color);
	padding: 120px 50px 80px;
	border-radius: 10px;
}
#entry h2 {
	background: url("../images/text_entry-flow.svg") no-repeat center;
	padding-top: 105px;
	margin-bottom: 50px;
}

#entry h2 {
	padding-bottom: 30px;
}

#entry .entry-flow {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
}

#entry .entry-flow > li {
	position: relative;
}

#entry .entry-flow .decolation-flow-number {
	position: absolute;
	top: -2.5em;
	left: -1.25em;
}

#entry .entry-flow li {
	width: 30%;
	position: relative;
	border: 1px solid var(--color1);
	border-radius: 10px;
	padding: 20px;
}
#entry .entry-flow li:nth-of-type(2n) {
	width: 3%;
	border: none;
	border-radius: 0;
	padding: 20% 0 0;
}
#entry .entry-flow li span {
	display: block;
	width: 100px;
	background: var(--white-color);
	position: absolute;
	top: -20px;
	left: 50%;
    transform: translateX(-50%);
}
#entry .entry-flow li img {
	margin: 0 auto;
	display: block;
}
#entry .entry-flow li .flow-title {
	text-align: center;
	padding-top: 10px;
	font-size: 20px;
	font-weight: 500;
	text-align: center;
	margin-bottom: 20px;
}
#entry .entry-flow li .entry-text {
	margin-top: 20px;
}
#entry .flow-note {
	width: 100%;
	padding-bottom: 40px;
	margin-bottom: 80px;
	border-bottom: 1px solid var(--color1);
}
#entry .title {
    font-size: 28px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 500;
}
#entry .wpcf7-form {
	padding: 0 50px;
}
#entry .wpcf7-form h4 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
}
#entry .wpcf7-form h4 span {
	font-size: 14px;
	margin-left: 10px;
	color: #F86E6E;
}
#entry .wpcf7-form p>span {
	margin-bottom: 50px;
	display: block;
}
#entry .wpcf7-form .wpcf7-checkbox {
	display: flex;
}
#entry .wpcf7-form .wpcf7-checkbox .wpcf7-list-item,
#entry .wpcf7-form .wpcf7-radio>span {
	margin: 0 50px 0 0;
}
#entry .wpcf7-form h4:before {
    margin-right: 10px;
    padding: 3px 5px;
	line-height: 1;
	border-radius: 2px;
    background-color: #B6B6B6;
    color: var(--white-color);
    content: "任意";
    font-size: 12px;
	display: inline-block;
}
#entry .wpcf7-form h4.req:before {
    background-color: #F86E6E;
    content: "必須";
}
#entry .wpcf7-form .wpcf7-checkbox .wpcf7-list-item input,
#entry .wpcf7-form .wpcf7-radio input {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    vertical-align: middle;
}
#entry .wpcf7-form .wpcf7-form-control-wrap select {
    width: 240px;
    padding: 15px 10px;
}
#entry .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(--black-color);
    text-decoration: none;
    border-radius: 100px;
	cursor: pointer;
}
#entry .wpcf7-form .button:hover {
	background: var(--color1);
	transition: all 0.2s;
}
#entry .wpcf7-form p>label {
	margin-top: -70px;
	margin-bottom: 10px;
	font-size: 20px;
	font-weight: bold;
	display: inline-block;
}
#entry .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-table .wpcf7-form select {
    width: 100%;
    padding: 10px;
    border: 1px solid #a9a9a9;
    line-height: 1.8;
	border-radius: 5px;
	font-size: 18px;
}
#entry .wpcf7-form #zip,
#entry .wpcf7-form #pref,
#entry .wpcf7-form #tel {
	width: 50%;
}
#entry .wpcf7-form .file-note {
	margin-top: -60px;
	margin-bottom: 80px;
	font-size: 16px;
}
#entry .wpcf7-form .pp-scroll {
	margin: 0 auto 35px;
	max-width: 800px;
	width: 100%;
	height: 300px;
	overflow-y: scroll;
    padding: 30px 20px;
    border: 1px solid #a9a9a9;
	border-radius: 10px;
	background: var(--white-color);
	line-height: 1.8;
}
#entry .wpcf7-form .pp-scroll .pp-title-b {
	font-size: 24px;
	font-weight: bold;
	color: var(--black-color);
	margin-bottom: 20px;
	text-align: center;
}
#entry .wpcf7-form .pp-scroll .pp-title {
	font-size: 20px;
	font-weight: bold;
	color: var(--black-color);
	border-bottom: 1px solid var(--color1);
	padding-bottom: 10px;
	margin-bottom: 10px;
	margin-top: 50px;
}
#entry .wpcf7-form .pp-scroll ul {
	margin: 20px 0;
	line-height: 2;
}
#entry .wpcf7-form .pp-scroll ul li {
	position: relative;
    padding: 0 0 0 15px;
}
#entry .wpcf7-form .pp-scroll ul li:before {
    background: var(--black-color);
    border-radius: 50%;
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: .7em;
    width: 5px;
    height: 5px;
}
#entry .select-box {
	display: flex;
	align-items: center;
}
#entry .wpcf7-form .back-text {
    margin-left: 10px;
}
#entry .need-box {
	border: 1px solid #F86E6E;
	padding: 30px;
	text-align: center;
	width: 100%;
}
#entry .need-box p span {
	margin-bottom: 0;
}
#entry .need-box .wpcf7-list-item,
#entry .accept label {
	margin: 20px 0 0 0;
	padding: 15px 20px;
	border: 1px solid var(--black-color);
	border-radius: 100px;
	max-width: 280px;
	width: 100%;;
	font-size: 20px;
	font-weight: 500;
}
#entry .need-box .wpcf7-list-item label {
	display: flex;
    align-items: center;
    justify-content: center;
}
#entry .need-box .wpcf7-list-item input,
#entry .accept label>span .wpcf7-list-item input{
	width: 24px;
    height: 24px;
    margin-right: 10px;
    vertical-align: middle;
	cursor: pointer;
}
#entry .accept-box {
	padding: 50px 0;
	max-width: 640px;
	width: 100%;
	border-top: 1px solid var(--black-color);
	border-bottom: 1px solid var(--black-color);
	margin: 50px auto 80px;
}
#entry .accept-text {
  text-align: center;
}
#entry .accept-text a {
	display: inline-block;
	color: #438FFF;
	text-decoration: underline;
	vertical-align: bottom;
}
#entry .accept {
	text-align: center;
	margin-top: 30px;
}
select {
    -webkit-appearance: none;
    appearance: none;
}
#entry .select-box .wpcf7-form-control-wrap {
	position: relative;
}
#entry .select-box .wpcf7-form-control-wrap::after {
    content: "";
    position: absolute;
    top: 15px;
    right: 16px;
    width: 10px;
    height: 10px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(45deg);
}
#entry .contact-box {
	padding: 0 50px;
}

#entry .qr-box {
	--bg-color: #BFAFA6;
	--button-color: #4B362F;
}

#entry .qr-box.instagram {
	--bg-color: #F3EDE5;
}

#entry .qr-box {
	box-sizing: border-box;
	padding: 50px;
	margin: 0 auto 50px;
	border-radius: 10px;
	background: var(--bg-color);
	display: flex;
	justify-content: space-between;
}

#entry .qr-box .left {
	width: 70%;
}
#entry .qr-box .left h3 {
	font-size: 36px;
	letter-spacing: 5px;
	margin-bottom: 15px;
}
#entry .qr-box .left p {
	margin-bottom: 30px;
}

#entry .qr-box .btn a {
	background: var(--button-color);
}

#entry .telbox{
    width: 100%;
	text-align: center;
	border: 1px solid var(--black-color);
	box-sizing: border-box;
	padding: 50px;
	margin: 0 auto;
	border-radius: 10px;
}
#entry .telbox h3{
	font-weight: bold;
	font-size: 36px;
	letter-spacing: 5px;
	margin: 0 0 15px 0;
	display: block;
}
#entry .telbox h4{
	font-size: 48px;
	line-height: 1;
	letter-spacing: 5px;
	padding-left: 50px;
	margin: 0 0 15px 0;
	display: inline-block;
	background: url(../images/img_tel.svg) bottom 3px left no-repeat;
}
#entry .telbox p:first-of-type{
	margin-bottom: 20px;
}
#entry .telbox .time span {
	font-weight: 500;
}

/*--------フォームのカスタマイズ--------*/
.wpcf7-response-output {
    position: fixed;
    top: -25px;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #F86E6E;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    z-index: 9999;
    transition: opacity 1s ease-in-out;
}
.wpcf7-response-output.fixed-success-message {
    top: auto;
    bottom: 80px;
}
.fade-out {
    opacity: 0;
}
.wpcf7-not-valid {
    background-color: #FFD5E4 !important; /* エラーのある入力欄の背景色を変更 */
    border-color: #ff4d6d !important; /* ボーダーも強調 */
}
.wpcf7 form.invalid .wpcf7-response-output, 
.wpcf7 form.unaccepted .wpcf7-response-output, 
.wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #ffb900;
}
.wpcf7 form.sent .wpcf7-response-output {
    background: #46b450;
    border: 0;
    z-index: 999;
}
.wpcf7 form .wpcf7-response-output {
    margin: 0;
    padding: 0.2em 1em;
    border: none;
    width: 80%;
}

/*-----------------------------
page
-----------------------------*/
.breadcrumb {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	align-items: flex-start;
	display: flex;
}
.breadcrumb > li:not(:last-of-type)::after {
	margin: 0 10px;
	content: "/";
	vertical-align: top;
}
.breadcrumb > li a {
	display: inline-block;
	text-decoration: underline;
}
#breadcrumb{
	font-size: 16px;
	line-height: 1;
	color: var(--black-color);
	display: flex;
	justify-content: center;
	align-items: center;
	height: 50px;
	padding: 0 3%;
}
.breadcrumb li {
	display: inline-table;
}
#breadcrumb a:hover {
	color: var(--color1);
}

#page-company {
	padding-top: 90px;
}
#page-company h2 {
	background: url("../images/text_company.svg") no-repeat center;
	padding-top: 105px;
	margin-bottom: 50px;
	margin-top: 20px;
}
#company {
	padding: 0 0 120px;
}
#company .title {
	width: 100%;
    font-size: 28px;
    padding-bottom: 10px;
    margin: 0 0 30px;
	color: var(--white-color);
    border-bottom: 1px solid var(--white-color);
    text-align: center;
    font-weight: 500;
}
#company .company-cnt li {
	display: flex;
	align-items: stretch;
	margin-bottom: 5px;
}
#company .company-cnt li .left {
	background: var(--gray-color);
	width: 30%;
	padding: 20px;
	font-weight: 500;
}
#company .company-cnt li .right {
	width: 70%;
	padding: 20px;
	background: var(--white-color);
}

/*-----------------------------
Media query
-----------------------------*/
@media screen and (max-width: 1680px){
	#charm .inner {
		max-width: 1160px;
		width: 100%;
	}

	#lesson-schedule .lesson.inner {
		max-width: 1160px;
		width: 100%;
	}
	#lesson-schedule .lesson-cnt {
		margin-bottom: 140px;
	}
}

@media screen and (max-width: 1380px){
	.slider-message .en-catch {
    	width: 80%;
	}
	.slider-message .catch {
    	font-size: 32px;
    	padding-top: 15px;
    	margin-bottom: 50px;
	}
	.slider-message {
    	left: 5%;
	}
	.slider-message .en-sub {
    	width: 60%;
	}
	.slider-message .line {
    	max-width: 640px;
	}
	.slider-message .sub-catch {
    	font-size: 28px;
	}
	section .inner {
		width: 100%;
		padding: 0 3%;
	}
	#about,#recruit,#entry {
    	padding: 120px 3%;
	}
	#about .img-about {
    	width: 64%;
	}
	#about .about-cnt {
    	padding: 40px;
	}
	#lesson-schedule .schedule-list {
		display: inline;
	}
	#lesson-schedule .schedule-time {
		margin-right: -1em;
	}
}
@media screen and (max-width: 1180px){
	#right-fit .fit-cnt li h3 {
    	font-size: 20px;
    	margin: 15px 0;
    	letter-spacing: 0;
	}
	.slider-message .sub-catch.content {
    	padding: 15px;
    	font-size: 24px;
	}
}
@media screen and (max-width: 1100px){
	#entry .wpcf7-form {
    	padding: 0;
	}
	#entry .contact-box {
    	padding: 0;
	}
}
@media screen and (max-width: 1000px){
	main{
		padding-top: 70px;
	}
	#entry .inner2 {
    	padding: 100px 30px 50px;
	}
	#recruit .recruit-cnt {
    	padding: 50px 30px 0;
	}
}
@media screen and (max-width: 768px){
	section .inner,section .inner2 {
		width: 100%;
		padding: 0 15px;
	}
	.slider-message {
		top: 48%;
	}
	.slider-message .catch {
        font-size: 20px;
        padding-top: 15px;
        margin-bottom: 50px;
    	padding-left: 7px;
    	letter-spacing: 3px;
    }
	.slider-message .sub-catch.content {
        padding: 10px;
        font-size: 16px;
    }
	.slider-message .catch .content {
    	font-size: 20px;
	}
	.slider-message .catch .caption{
	    font-size: 48px;
		margin-bottom: 30px;
	}
	.slider-message .en-catch {
        width: 95%;
        max-width: 420px;
    }
	.slider-message .en-sub {
        width: 95%;
        max-width: 300px;
    }
	.slider-message .en-sub img {
        display: block;
    }
    .slider-message .sub-catch {
		letter-spacing: 1px;
		line-height: 1.7;
		max-width: 95%;
    }
	.slider-message .sub-catch br:nth-of-type(2) {
		display: block;
	}
	.slider-message .line {
        max-width: 420px;
		width: 90%;
    }
	.slider-message {
        left: 3%;
    }
	#slider .decolation.lt {
		top: -2.5em;
		left: -1em;
		width: 40%;
	}
	img.sub-catch.caption {
		top: -2em;
		left: -0.5em;
		width: 43%;
	}
	#about {
    	display: block;
	}
	#about, #recruit, #entry {
        padding: 100px 15px;
    }
	#about .img-about {
        width: 100%;
    }
	#about .about-cnt {
		width: 100%;
		padding: 30px 20px;
		margin-left: auto;
		margin-right: auto;
		position: relative;
		z-index: 1;
    	top: 0;
	}
	#about .decolation.rt {
		right: -3em;
		top: -1em;
		width: 120px;
	}
	#about .about-cnt h2 {
		text-align: center;
		background: url(../images/text_about.svg) no-repeat center;
	}
	#charm {
	    padding: 80px 0 0;
	}
	#charm .carm-cnt li {
		width: 48%;
		padding: 20px 10px;
		text-align: left;
		margin-bottom: 15px;
		font-size: 16px;
	}
	#charm .carm-cnt li img {
		width: auto;
		height: 70px;
		margin: 0 auto 20px;
		display: block;
	}
	#charm .carm-cnt li p {
		width: 100%;
		text-align: center;
		font-size: 14px;
		margin-top: 20px;
	}
	#charm .carm-cnt li .caption {
		font-size: 20px;
    	line-height: 30px;
	}
	#charm .decolation.lt {
		top: 0em;
		left: -1em;
		width: 140px;
	}
	#charm .decolation.rt {
		right: -1em;
		top: 9em;
		width: 100px;
	}
	#lesson-schedule .lesson-cnt {
		display: flex;
		flex-wrap: wrap;
	}
	#lesson-schedule .lesson-image {
    	width: 100%;
    	margin-left: 0;
        order: 1;
	}
	#lesson-schedule .lesson-caption {
		width: 100%;
		top: 0;
		padding: 20px 20px;
		order: 2;
	}
	#lesson-schedule .lesson-caption .decolation.lt {
		top: -2.75em;
		left: -2.5em;
		width: 140px;
	}
	#lesson-schedule .lesson-caption-upper {
		font-size: 24px;
		padding-bottom: 20px;
		margin-bottom: 20px;
	}
	#lesson-schedule .lesson-cnt {
        margin-bottom: 80px;
    }
	#lesson-schedule .lesson-schedule-image {
   		padding: 15px;
	}
	#lesson-schedule .schedule-time {
		max-width: 100px;
		width: 100%;
		padding: 10px;
		font-size: 16px;
	}
	#lesson-schedule .schedule-time img {
	    width: 20px;
	}
	#lesson-schedule .schedule-time-line {
		width: 40px;
	}
	#lesson-schedule .schedule-content {
		flex-wrap: wrap;
		width: 100%;
		padding: 20px;
	}
	#lesson-schedule .schedule-content > div {
    	margin-left: 0;
	}
	#lesson-schedule .schedule-image {
		max-width: 100%;
		width: 100%;
		order: 1;
		margin-bottom: 20px;
	}
	#lesson-schedule .schedule-image img {
		margin: 0 auto;
		display: block;
	}
	#lesson-schedule .schedule-detail {
		order: 2;
	}
	#voice .inner {
		padding: 100px 15px;
	}
	#voice .decolation.lt {
		left: -4em;
		width: 140px;
		top: -3.5em;
	}
	#voice .decolation.rb {
		right: -4.2em;
		bottom: -5.25em;
		width: 140px;
	}
	#voice li.voice-staff-outer {
		display: flex;
		flex-wrap: wrap !important;
	}
	#voice .voice-cnt {
		padding: 30px;
	}
	#voice .voice-profile-outer {
    	width: auto;
    	padding: 0;
		margin-top: 30px;
	}
	#voice .profile-name {
		font-size: 24px;
	}
	#voice .voice-caption {
		font-size: 20px;
		line-height: 30px;
		margin-bottom: 20px;
	}
	#voice .staff-image {
		display: block;
		margin: 0 auto;
	}
	#recruit .inner2 {
		padding: 0;
	}
	#recruit .recruit-cnt {
        padding: 10px 10px 0;
    }
	#recruit .recruit-cnt ul {
		width: 100%;
	}
	#recruit .recruit-cnt ul li .desc-title {
		font-size: 20px;
	}
	#recruit .recruit-cnt ul li {
    	margin-bottom: 30px;
	}
	#recruit .recruit-cnt .title {
		font-size: 26px;
		margin: 50px 0 30px;
	}
	#recruit .recruit-cnt .sub-title {
		font-size: 24px;
		padding-bottom: 0;
		margin-bottom: 10px;
	}
	#recruit .recruit-cnt .type-cnt {
		border: 1px solid var(--color1);
		padding: 20px 15px;
		border-radius: 10px;
		margin-bottom: 30px;
	}
	#recruit .recruit-cnt .type-cnt li:last-of-type {
		margin-bottom: 0;
	}
	#right-fit {
    	padding: 80px 0;
	}
	#right-fit h2 {
    	padding-top: 65px;
	}
	#right-fit .fit-cnt {
    	display: block;
    	margin-bottom: 80px;
	}
    #right-fit .fit-cnt li {
        width: 94%;
        margin: 0 auto 30px;
        text-align: center;
    }
	#right-fit .fit-cnt li h3 {
        margin: 15px 0 10px;
		line-height: 1.7;
    }
	#right-fit .t-text br {
		display: none;
	}
	#right-fit .title-image {
		max-width: 50%;
		width: 100%;
	}
	#entry .inner2 {
        padding: 30px 20px;
    }
	#entry h2 {
    	padding-top: 70px;
    	margin-bottom: 60px;
	}
	#entry .entry-flow {
    	display: block;
    	margin-bottom: 10px;
	}
	#entry .entry-flow li {
    	width: 100%;
    	padding: 20px;
	}
	#entry .entry-flow li:nth-of-type(2n) {
		width: 100%;
		padding: 10px 0 20px;
	}
	#entry .entry-flow li:nth-of-type(2n) img {
		margin: 0 auto;
		display: block;
		transform: rotate( 90deg );
	}
	#entry .wpcf7-form .wpcf7-checkbox {
		display: block;
	}
	#entry .wpcf7-form .wpcf7-list-item.first {
		margin-bottom: 20px;
	}
	#entry .wpcf7-form h4 {
		font-size: 18px;
	}
	#entry .wpcf7-form h4 span {
		font-size: 12px;
		margin-left: 8px;
	}
	#entry .need-box {
    	padding: 30px 20px;
	}
	#entry .need-box .wpcf7-list-item, #entry .accept label {
		padding: 10px;
		max-width: 200px;
		width: 100%;
		font-size: 18px;
	}
	#entry .accept-box {
    	padding: 50px 0 30px;
		margin: 50px auto;
	}
	#entry .accept-text br {
		display: none;
	}
	#entry .qr-box {
    	padding: 30px 20px;
    	display: block;
	}
	#entry .qr-box .left {
		width: 100%;
	}
	#entry .qr-box .left h3 {
		font-size: 26px;
		text-align: center;
	}
	#entry .qr-box .right {
		display: none;
	}
	#entry .wpcf7-form .button,
	.btn a {
		max-width: 240px;
		font-size: 18px;
		padding: 15px 0;
		margin: 0 auto;
		line-height: 2;
	}
	#entry .wpcf7-form .button {
		margin: 0 auto 30px;
	}
	#entry .telbox {
		padding: 30px 15px;
	}
	#entry .telbox h3 {
		font-size: 24px;
	}
	#entry .telbox h4 {
		font-size: 28px;
		letter-spacing: 2px;
		padding-left: 40px;
		background: url(../images/img_tel.svg) bottom 0px left no-repeat;
		background-size: 30px;
	}
	#entry .telbox .time {
		font-size: 14px;
	}
	#entry .entry-flow .decolation-flow-number {
		position: absolute;
		top: -2.5em;
		left: -1.25em;
		width: 120px;
	}
	#page-company {
    	padding-top: 60px;
	}
	#page-company h2 {
		padding-top: 80px;
		margin-bottom: 30px;
		margin-top: 10px;
	}
	#company .inner2 {
		padding: 0;
	}
	#company .company-cnt li .left {
		padding: 15px 10px;
	}
	#company .company-cnt li .right {
		padding: 15px 10px;
	}
}