@charset "utf-8";

/************************************************
 General settings
*************************************************/

@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@700&display=swap');
 
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500&display=swap'); 

.wf-active * {
	font-style: normal;
	font-weight: 500;
	font-family: "Noto Sans Japanese",source-han-sans-japanese, sans-serif;
	font-display: swap;
}

.wf-active .vdl-logojr {
	font-style: normal;
	font-weight: 400;
	font-family: vdl-logojr, sans-serif;
	font-display: swap;
}

.wf-active ."M PLUS Rounded 1c",fot-tsukuardgothic-std,
.wf-active ."M PLUS Rounded 1c",fot-tsukuardgothic-std td,
.wf-active ."M PLUS Rounded 1c",fot-tsukuardgothic-std span,
.wf-active .post-wrap."M PLUS Rounded 1c",fot-tsukuardgothic-std *,
.wf-active .plan-wrap."M PLUS Rounded 1c",fot-tsukuardgothic-std *,
.wf-active .item-txt."M PLUS Rounded 1c",fot-tsukuardgothic-std *,
.wf-active ."M PLUS Rounded 1c",fot-tsukuardgothic-std *,
.wf-active .faq-link-inner p,
.wf-active .pr-plan-box .pr-plan-wrap .pr-plan-info-box::after {
	font-style: normal;
	font-weight: 700;
	font-family: "M PLUS Rounded 1c",fot-tsukuardgothic-std, sans-serif;
	font-display: swap;
}

.mincho {
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

*,
*:before,
*:after {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}

html {
	width: 100%;
	line-height: 1.15;
	overflow-x: hidden;
}

body {
	position: relative;
}

a {
	color: #0071b7;
	text-decoration: underline;
}

a:hover {
	color: #4d96c7;
	text-decoration: none;
}

a.red-link {
	color: #e81c24;
}

/* img {
	max-width: 100%;
	width: 100%;
	height: auto;
} */

.animation a,
.animation,
.animation img,
.animation::after,
.animation::before,
.arrow > a,
.arrow > a::after,
.arrow > a::before,
.look-btn > a::after,
.toggle_title,
td.remarks > a,
input[type="submit"].submit {
	transition-duration: 0.3s;
	transition-property: all;
}

.txt-center,
.has-text-align-center {
	text-align: center;
}

.txt-red {
	color: #e71c24;
}

a:hover.txt-red {
	color: #e71c24;
}

.txt-line {
	text-decoration: underline;
}

.txt-blu {
	color: #0071b6;
}

span.red {
	color: #e71c24;
}

.txt-white {
	color: #fff;
}

.orange {
	color: #ff8d1e;
}

.darkorange {
	color: #eb5a24;
}

.green {
	color: #008c45;
}

.lightblu {
	color: #0071b6;
}

.darkblu {
	color: #0048b6;
}

.lightgreen {
	color: #39af4a;
}

.emeraldgreen {
	color: #00a296;
}

.txt24 {
	font-size: 1.5em;
}

/* .txt22 {
    font-size: 1.375em;
} */

.txt-large {
	font-size: 1.2em;
}

.txt-min {
	font-size: 0.85em;
}

.line {
	text-decoration: underline;
}

.center-img {
	text-align: center;
	margin: 0 auto 3em;
}

.embed-youtube {
	position: relative;
	overflow: hidden;
	margin: 1em 0;
	padding-bottom: 56.25%;
	max-width: 100%;
	height: 0;
}

.embed-map {
	position: relative;
	overflow: hidden;
	margin: 0;
	padding-bottom: 150%;
	/*padding-bottom: 120%;*/
	/*padding-bottom: 35%;*/
	max-width: 100%;
	height: 0;
	box-sizing: border-box;
}

.embed-map img{
	width: 100%;
	height: auto;
}

.embed-youtube iframe,
.embed-map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.busroot a.center-btn-orange{
	margin-bottom: 0.25em !important;
}

.pc_hide{
	
}

.sp_hide{
	display: none !important;
}

iframe {
	vertical-align: bottom;
}

.full-width {
	position: relative;
	max-width: none;
	margin: 0 calc(50% - 50vw);
	overflow: hidden;
}

.full-width iframe {
	width: 100vw;
}

/*メニューを開いた時スクロールを固定する*/
.scroll-prevent {
	position: fixed;
	z-index: -1;
	width: 100%;
	height: 100%;
}

/****************************************
    ローディング画面
*****************************************/
#loading {
	display: flex;
	z-index: 10000;
	position: fixed;
	top: 0;
	left: 0;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100vh;
	background-color: #fff;
	transition: all 1s;
}

.load-wrap {
	display: flex;
	position: relative;
	justify-content: center;
	width: 90%;
	max-width: 660px;
}

.loading-img {
	z-index: 1;
}

.spinner {
	position: absolute;
	bottom: 0;
	width: 44%;
	height: auto;
	margin: auto;
	border-radius: 100%;
	animation: 16s linear infinite rotation1;
}
/* ローディングアニメーション */
@keyframes rotation1 {
	0% {
		transform: rotate(0);
	}

	100% {
		transform: rotate(360deg);
	}
}

.loaded {
	opacity: 0;
	visibility: hidden;
}

/****************************************
  Normalize
*****************************************/

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
section,
summary {
	display: block;
}

/* Remove default padding */
ul[class],
ol[class] {
	padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
	margin: 0;
}

/* Set core body defaults */
body {
	min-height: 100vh;
	scroll-behavior: smooth;
	text-rendering: optimizeSpeed;
}

/* Safari用のハックは、Chromeに適用されないようにする */
@supports (-webkit-touch-callout: none) {
	body {
		/* Safari用のハック */
		height: -webkit-fill-available;
	}
}


html {
    visibility: hidden;
}

html.wf-active,
html.loading-delay {
    visibility: visible;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
	list-style: none;
}

/* Make images easier to work with */
img {
	display: block;
	max-width: 100%;
	height: auto;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
	margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
	font: inherit;
}

button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
}

/************************************************
  Basic layout
*************************************************/

html {
	color: #151515;
}

/* webフォントのちらつき対策 */
/* html {
	visibility: hidden;
}

html.wf-active,
html.loading-delay {
	visibility: visible;
} */
/* webフォントのちらつき対策 */

body {
	margin: 0;
	background: #fff;
	letter-spacing: 0.024em;
	font-size: 16px;
	/* overflow-x: hidden; */
}

.content-width {
	margin-right: auto;
	margin-left: auto;
	max-width: calc(1100px + 3.2em);
}

.content-width-large {
	margin-right: auto;
	margin-left: auto;
	max-width: 1200px;
}

/* !wrapper
---------------------------------------------------------- */
#wrapper {
	position: relative;
	min-height: 100vh;
	width: 100%;
	-webkit-font-feature-settings: "pkna" 1;
	font-feature-settings: "pkna" 1;
	font-kerning: normal;
	overflow-x: hidden;
}

#main {
	/* overflow-x: hidden; */
}

/* header
---------------------------------------------------------- */
#header {
	width: 100%;
	height: auto;
	background-color: #fff;
}

#headerlogo {
	display: inline-block;
	width: 64%;
	padding: 0.4em 0.5em 0.2em;
}

#headerlogo > a {
	display: block;
}

/* OVERLAY-navi
---------------------------------------------------------- */
.menu-btn {
	display: block;
	z-index: 9997;
	position: fixed;
	top: 0.5em;
	right: 0.5em;
	width: 75px;
	height: 75px;
}

.bar {
	position: absolute;
	left: 50%;
	display: block;
	width: 32px;
	height: 2px;
	background-color: #fff;
	transform: translateX(-50%);
}
.bar_top {
	top: 27%;
	transform: translate(-50%, -50%);
}
.bar_mid {
	top: 42%;
	transform: translate(-50%, -50%);
}
.bar_bottom {
	top: 55%;
	transform: translate(-50%, -50%);
}

.btn-close .bar_top {
	transition: transform 0.3s;
	transform: translate(-50%, 1px) rotate(45deg);
}
.btn-close .bar_mid {
	opacity: 0;
	transition: opacity 0.3s;
}
.btn-close .bar_bottom {
	transition: transform 0.3s;
	transform: translate(-50%, -19px) rotate(-45deg);
}

.btn-close .bar {
	background-color: #ff8d1e;
}

.menu-btn button {
	display: inline-block;
	width: 4em;
	height: 100%;
	line-height: 1;
	text-decoration: none;
}

.btn-open {
	position: relative;
	height: 100%;
	border: solid 2px #fff;
	border-radius: 50%;
	cursor: pointer;
	background: #ff8d1e;
}

.btn-close {
	position: relative;
	height: 100%;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	background: rgba(255, 255, 255, 0);
}

.btn-close::before {
	display: block;
	position: absolute;
	left: 50%;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	content: "";
	background: #fff;
	transform: translateX(-50%);
}

.btn-open:after,
.btn-close:after {
	position: absolute;
	top: 64%;
	left: 50%;
	color: #fff;
	font-size: 12px;
	transform: translateX(-50%);
	/* font-style: normal;
    font-weight: 700;
    font-family: "M PLUS Rounded 1c",fot-tsukuardgothic-std, sans-serif; */
}

.btn-open:after {
	content: "MENU";
}

.btn-close:after {
	content: "閉じる";
}

/* OVERLAY */
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9996;
	display: none;
	overflow: auto;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, 0.4);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
}

.slidein-nav {
	z-index: 2;
	width: 80%;
	margin-left: 20%;
	height: auto;
	/* background: #ff8d1e; */
	background: #fff;
	transition: 0.3s;
	transform: translateX(100%);
}

.slidein-nav.slide-in {
	transition: 0.32s;
	transform: translateX(0);
}
/*
.slidein-nav > .sp {
    width: calc(100% - 24%);
} */

.search-form {
	margin: 0 auto 3.2em;
	width: 100%;
}

.menu-layout {
	display: flex;
	flex-direction: column;
	padding: 3.6em 0 0;
	width: 100%;
	height: 100%;

	align-items: center;
}

.main-nav {
	width: 100%;
}

.smenu-title {
	padding: 0.8em 0.4em;
	color: #fff;
	font-size: 30px;
	background-color: #ff8d1e;
}

.sp-navi-li {
	border-bottom: solid 1px #999999;
}

a.sp-navi-link {
	display: block;
	padding: 1em 2em 1em 0.6em;
	color: #4d4d4d;
	font-size: 19px;
	text-decoration: none;
	background-image: url(../img/sp-nav-ico.svg);
	background-position: center right 0.6em;
	background-size: 1.6em;
	background-repeat: no-repeat;
}

a:hover.sp-navi-link {
	color: #878787;
}

.sp-sub-btn-inner {
	position: relative;
	padding: 1em 2em 4em;
}

.sp-sub-btn-inner::before {
	display: block;
	position: absolute;
	top: 1.1em;
	left: 50%;
	width: 92px;
	height: 96px;
	content: "";
	background-image: url(../img/bear.png);
	background-repeat: no-repeat;
	background-size: cover;
	transform: translateX(-50%);
}

a.sp-sub-btn {
	display: block;
	z-index: 2;
	position: relative;
	margin: 0 0 1em;
	padding: 1em 2.6em;
	border-radius: 1em;
	color: #fff;
	font-size: 19px;
	line-height: 1;
	text-decoration: none;
	background: #333;
	background-size: 1.6em;
	background-repeat: no-repeat;
	background-position: center left 1em;
}

a.sp-sub-btn::after {
	display: block;
	position: absolute;
	top: 50%;
	right: 1em;
	width: 28px;
	height: 28px;
	content: "";
	background-image: url(../img/circle-arrow.svg);
	background-size: cover;
	transform: translateY(-50%);
}

a.sp-sub-btn:first-child {
	margin-top: 4em;
}

a.sp-sub-btn.orange {
	background-color: #f18d1e;
	background-image: url(../img/ioc-document.svg);
}

a.sp-sub-btn.red {
	background-color: #f23420;
	background-image: url(../img/ioc-check.svg);
}

a.sp-sub-btn.green {
	background-color: #008c45;
	background-image: url(../img/ioc-mail.svg);
}

.school-bus-wrap {
	z-index: 4;
	position: absolute;
	bottom: -0.6em;
	left: 1.6em;
	width: 100px;
}

a.school-bus {
	display: inline-block;
	position: relative;
}

a:hover.school-bus {
	color: #fc8f1d;
}

ul.sns-list-btn {
	z-index: 3;
	position: absolute;
	top: 20%;
	right: 8em;
}

ul.sns-list-btn > li {
	width: 48px;
	height: 48px;
	margin: 0 0 1em;
}

ul.sns-list-btn > li > a {
	display: inline-block;
	opacity: 1;
}

ul.sns-list-btn > li > a:hover {
	opacity: 0.6;
}

/* Heading
---------------------------------------------------------- */
h1 {
	font-size: 20px;
}

h2 {
	font-size: 18px;
}

h3 {
	font-size: 16px;
}

h4 {
	font-size: 16px;
}

h1,
h2,
h3,
h4 {
	line-height: 1.32;
}

h2,
h3,
h4,
h5 {
	margin: 0 0 1.2em;
	color: #666;
}

p + h2:not(.no-margin),
table + h2:not(.no-margin),
img + h2:not(.no-margin),
figure + h2:not(.no-margin),
div + h2:not(.no-margin),
ul + h2:not(.no-margin),
pre + h2:not(.no-margin),
blockquote + h2:not(.no-margin),
p + h3:not(.no-margin),
table + h3:not(.no-margin),
img + h3:not(.no-margin),
figure + h3:not(.no-margin),
div + h3:not(.no-margin),
ul + h3:not(.no-margin),
pre + h3:not(.no-margin),
blockquote + h3:not(.no-margin),
p + h4:not(.no-margin),
table + h4:not(.no-margin),
img + h4:not(.no-margin),
figure + h4:not(.no-margin),
div + h4:not(.no-margin),
ul + h4:not(.no-margin),
pre + h4:not(.no-margin),
blockquote + h4:not(.no-margin) {
	margin-top: 2.4em !important;
}

/* Slider
---------------------------------------------------------- */
#slide_wrapp {
	position: relative;
	height: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
}

#slide_wrapp .slide_item {
	opacity: 0;
	transform: scale(1);
	transition: opacity 2s linear, transform 7.5s linear;
	position: relative;
	z-index: 1;
	height: 100%;
}

#slide_wrapp .slide_item:not(:first-child) {
	position: absolute;
	top: 0;
	left: 0;
}

#slide_wrapp .slide_item.show_ {
	opacity: 1;
}

#slide_wrapp .slide_item.zoom_ {
	transform: scale(1.1);
}

#slide_wrapp .slide_item img {
	display: block;
}

li.slide_item {
	list-style: none;
	overflow: hidden;
}

/* fadeIn Animation
---------------------------------------------------------- */
.list-mv {
	/*overflow: hidden;*/
	position: relative;
}

.list-mv01 {
	opacity: 0;
	-webkit-transition: 0.6s ease-out;
	transition: 0.6s ease-out;
	-webkit-transition-delay: 160ms;
	transition-delay: 160ms;
	-webkit-transform: translate(0, 24px);
	transform: translate(0, 24px);
}

.mv01 {
	opacity: 1;
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
}

.list-mv02 {
	opacity: 0;
	-webkit-transition: 0.8s;
	transition: 0.8s;
}

.mv02 {
	opacity: 1;
}

.list-mv03 {
	opacity: 0;
	-webkit-transition: 0.6s ease-out;
	transition: 0.6s ease-out;
	-webkit-transition-delay: 240ms;
	transition-delay: 240ms;
	-webkit-transform: scale3d(1.2, 1.2, 1);
	transform: scale3d(1.2, 1.2, 1);
}

.mv03 {
	opacity: 1;
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
}

.list-mv04 {
	opacity: 0;
	-webkit-transition: 0.6s ease-out;
	transition: 0.6s ease-out;
	-webkit-transition-delay: 160ms;
	transition-delay: 160ms;
	-webkit-transform: translate(-24px, 0);
	transform: translate(-24px, 0);
}

.mv04 {
	opacity: 1;
	-webkit-transform: translate(0, 0) rotate(0deg);
	transform: translate(0, 0) rotate(0deg);
}

/* Main image
---------------------------------------------------------- */
.main-img-wrap {
	position: relative;
	margin: 0;
	height: 280px;
	background: url("../img/main-img1_sp.webp")no-repeat;
	background-size: cover;
}

.main-img-wrap::after {
	z-index: 1;
	position: absolute;
	right: 0;
	bottom: -2px;
	width: 0;
	height: 0;
	border-width: 0 0 12rem 14rem;
	border-style: solid;
	border-color: transparent transparent #ff8d1e transparent;
	content: "";
}

/* @media screen and (max-width: 1190px) {
    .main-img-wrap {
        min-height: 555px;
    }
} */

img.main-img {
	margin: 0 auto;
	max-width: unset;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.message-area {
	z-index: 3;
	position: absolute;
	right: 2%;
	bottom: -4px;
	width: 100%;
	max-width: 240px;
}
/*
.message-title {
    margin: 0 0 0.4em;
    font-size: 64px;
    letter-spacing: 0.04em;
}

.message-title,
.message-jp {
    color: #ff8d1e;
    text-align: center;
}

.message-jp {
    letter-spacing: 0.04em;
    font-size: 0.6em;
}

.message-txt {
    padding: 0 0 4em 1.6em;
} */

a.scroll-btn {
	z-index: 2;
	position: absolute;
	right: 14em;
	bottom: 0;
	height: 5em;
	padding-top: 2.2em;
	padding-right: 1em;
	color: #fff;
	text-decoration: none;
}

a.scroll-btn::after {
	display: block;
	position: absolute;
	right: 0;
	bottom: 0;
	width: 1px;
	height: 5.6em;
	content: "";
	background: #fff;
}

a.scroll-btn::after {
	animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes sdl {
	0% {
		transform: scale(1, 0);
		transform-origin: 0 0;
	}
	50% {
		transform: scale(1, 1);
		transform-origin: 0 0;
	}
	50.1% {
		transform: scale(1, 1);
		transform-origin: 0 100%;
	}
	100% {
		transform: scale(1, 0);
		transform-origin: 0 100%;
	}
}

/* News
---------------------------------------------------------- */
.news-wrap {
	position: relative;
	padding: 2em 0 0.5em;
	background-color: #ff8d1e;
	background-image: url(../img/bg-pattern-left1.svg);
	background-repeat: no-repeat;
	background-position: top 0.5em left -6.5em;
	background-size: 230px 230px;
}

.news-wrap .c_bnr{
	margin: 0 10px 17px;
}


.news-wrap .c_bnr.mb0{
	margin-bottom: 0;
}


.news-wrap .c_bnr img{
	width: 100%;
	height: auto;
}

.news-wrap .online_btn{
	margin: 5px 15px 23px;
}

.news-wrap .online_btn img{
	width: 100%;
	height: auto;
}

.news-wrap .online_btn.bnrfour a{
	display: block;
}

.news-wrap .online_btn.bnrfour a:not(:last-child){
	margin-bottom: 10px;
}


.news-wrap .online_btn.bnrfour a:nth-child(1) img,
.news-wrap .online_btn.bnrfour a:nth-child(2) img{
	width: calc(100% - 15px);
	height: auto;
	margin: 0 auto;
}



.news-wrap::before {
	display: block;
	z-index: 1;
	position: absolute;
	top: -5em;
	right: -12em;
	width: 440px;
	height: 16px;
	content: "";
	background-image: url(../img/bg-line.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transform: rotate(-40deg);
}

.news-title {
	margin: 0 0 0.4em;
	color: #fff;
	font-size: 32px;
	line-height: 1;
}

.news-subtitle {
	position: relative;
	padding: 0 0 0.8em;
	color: #fff;
	font-size: 18px;
	letter-spacing: 0.05em;
}

@media only screen and (max-width: 375px) {
	.news-subtitle {
		font-size: 17px;
		letter-spacing: 0;
	}
}

.news-subtitle::after {
	display: block;
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 2.4em;
	height: 2px;
	border-radius: 1px;
	content: "";
	background: #fff;
	transform: translateX(-50%);
}

a.post-list-link {
	display: inline-block;
	z-index: 1;
	position: absolute;
	bottom: 1em;
	left: 50%;
	padding: 0.6em 2.4em;
	border-radius: 0.8em;
	color: #151515;
	font-size: 16px;
	text-decoration: none;
	background: #fff;
	transform: translateX(-50%);
}

a:hover.post-list-link {
	opacity: 0.6;
}

.news-post-wrap {
	display: flex;
	position: relative;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 94%;
	margin-top: 1.1em;
	padding-bottom: 4em;
}

.news-post-wrap::before {
	display: block;
	z-index: 0;
	position: absolute;
	top: -94px;
	left: 0;
	width: 76px;
	height: 120px;
	content: "";
	background-image: url(../img/kuma-sp.png);
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: cover;
}

.news-post {
	z-index: 2;
	padding: 0.4em 0.56em;
	background: rgba(255, 255, 255, 0.8);
	margin: 0 0 0.6em;
	width: calc(98% / 2);
}

/* .news-post:nth-child(n + 4) {
	display: none;
} */

a.news-post-link {
	display: block;
	color: #151515;
	text-decoration: none;
}

a:hover.news-post-link {
	opacity: 0.6;
}

.news-post-img {
	border: solid 5px #fff;
}

.post-info-box-inner {
	display: flex;
	align-items: center;
	padding: 0.4em 0;
}

span.date {
	display: inline-block;
	font-size: 12px;
	margin: 0 0.4em 0 0;
}

a.post-act {
	display: inline-block;
	width: 100%;
	padding: 0.4em 0;
	border-radius: 0.3em;
	color: #fff;
	font-size: 12px;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	background: #ff8d1e;
}

a:hover.post-act {
	opacity: 0.6;
	color: #fff;
}

.post-info-box {
	margin-top: 0;
}

h3.post-title {
	display: -webkit-box;
	overflow: hidden;
	color: #151515;
	font-size: 14px;
	line-height: 1.6;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

a.news-list-link {
	font-size: 1em;
	cursor: pointer;
}

a:hover.news-list-link {
	opacity: 0.6;
}

/* 教習料金のご案内
---------------------------------------------------------- */
#price {
	position: relative;
	padding: 2em 0 0;
	overflow-x: hidden;
}

#price::before {
	display: block;
	z-index: -1;
	position: absolute;
	top: -6.2em;
	right: -11em;
	width: 374px;
	height: 306px;
	content: "";
	background-image: url(../img/bg-pattern-right-orange.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 60%;
}

#price::after {
	display: block;
	z-index: -1;
	position: absolute;
	top: 8em;
	left: -15em;
	width: 440px;
	height: 16px;
	content: "";
	background-image: url(../img/bg-line-orange.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transform: rotate(-40deg);
}

.h2-title {
	margin: 0 0 0.2em;
	color: #ff8d1e;
	font-size: 32px;
}

.h2-title.pt128 {
	padding-top: 120px;
}

.h2-subtitle {
	font-size: 20px;
	position: relative;
	color: #333;
	margin-bottom: 2em;
}

.h2-subtitle::after {
	display: block;
	position: absolute;
	bottom: -0.8em;
	left: 50%;
	width: 6em;
	height: 2px;
	border-radius: 1px;
	content: "";
	background: #ff8d1e;
	transform: translateX(-50%);
}

.h2-subtitle.price {
	margin-bottom: -0.4em;
}

.charge-guidance-wrap {
	position: relative;
}

.charge-guidance-wrap .discount_btn{
	width: 277px;
	position: absolute;
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
}

.charge-guidance-wrap .discount_btn a{
	display: block;
	width: 100%;
	line-height: 67px;
	border-radius: 15px;
	border: 2px solid #ff8d1e;
	box-sizing: border-box;
	background: url(../img/arrow-icon-darkorange.svg)no-repeat #fff;
	background-size: 20px auto;
	background-position: right 14px center;
	font-style: normal;
	font-weight: 700;
	font-family: "M PLUS Rounded 1c",fot-tsukuardgothic-std, sans-serif;
	font-size: 17px;
	letter-spacing: -0.05em;
	color: #4d4d4d;
	text-decoration: none;
	padding-left: 55px;
	position: relative;
	transition: 0.3s;
}

.charge-guidance-wrap .discount_btn a span{
	font-style: normal;
	font-weight: 700;
	font-family: "M PLUS Rounded 1c",fot-tsukuardgothic-std, sans-serif;
	font-size: 22px;
	letter-spacing: -0.05em;
	position: relative;
	top: 3px;
}

.charge-guidance-wrap .discount_btn a::before{
	content: '';
	display: inline-block;
	background: url("../img/ico_p.png")no-repeat;
	background-size: contain;
	width: 26px;
	height: 34px;
	position: absolute;
	top: 50%;
	left: 17px;
	transform: translateY(-50%);
}


.charge-guidance-box {
	position: relative;
	padding: 1em 1.6em;
}

.charge-guidance-box.mt150 {
	margin-top: 150px;
}

.charge-guidance-box::before {
	display: block;
	z-index: -2;
	position: absolute;
	top: 0;
	left: 50%;
	width: 100%;
	height: 100%;
	content: "";
	background-color: #fffaeb;
	transform: translate(-50%, 0%);
}

img.plan-img {
	position: absolute;
	bottom: 0.4em;
	left: 0;
	width: 73px;
	height: auto;
	border-radius: 50%;
}

a.plan-link {
	display: block;
	position: relative;
	margin-bottom: 1em;
	padding: 0.8em 1em;
	border: solid 1px #939393;
	border-radius: 0.5em;
	color: #333;
	font-size: 18px;
	line-height: 1;
	text-decoration: none;
	background-color: #fdfdfd;
}

a.plan-link::after {
	position: absolute;
	top: 43%;
	right: 1em;
	content: ">";
	transform: translateY(-50%);
}

a:hover.plan-link {
	opacity: 0.6;
}

/* Accordion
---------------------------------------------------------- */

.gassyukuryokin_txt{
	margin: 0 auto;
	font-size: 14px;
	line-height: 1.5;
	color: #e71c24;
}


.toggle_contents {
	margin: 1.6em 0;
}

.toggle_contents2 {
	margin: 0;
}

.toggle_title {
	display: flex;
	position: relative;
	align-items: center;
	height: 50px;
	margin: 0;
	padding: 0 3em 0.6em 0.6em;
	border-bottom: solid 2px #c5c5c5;
	/* color: #4d4d4d; */
	color: #333;
	font-size: 18px;
	line-height: 1.4;
	cursor: pointer;
}

.toggle_title2 {
	display: flex;
	position: relative;
	align-items: center;
	height: 84px;
	margin: 0.8em 0;
	padding: 0 3em 0.6em 5em;
	border-bottom: solid 2px #c5c5c5;
	color: #4d4d4d;
	font-size: 21px;
	line-height: 1.4;
	cursor: pointer;
}

dt.toggle_title2.red {
	border-bottom: solid 2px #e71c24;
}

dt.toggle_title2.green {
	border-bottom: solid 2px #006837;
}

dt.toggle_title2.lightgreen {
	border-bottom: solid 2px #008c45;
}

dt.toggle_title2.lightblu {
	border-bottom: solid 2px #29a5dc;
}

dt.toggle_title2.darkorange {
	border-bottom: solid 2px #eb5a24;
}

dt.toggle_title2.blu {
	border-bottom: solid 2px #0071b6;
}

span.indent {
	margin: 0 0 0 1.3em;
}

@media only screen and (max-width: 375px) {
	.toggle_title,
	.toggle_title2 {
		font-size: 16px;
	}
}

/* .toggle_title:hover,
.toggle_title2:hover {
    opacity: 0.5;
} */

/* .toggle_title span,
.toggle_title2 span {
    display: block;
} */

.toggle_title.pconly .toggle_title2.pconly {
	cursor: default;
	pointer-events: none;
}

.toggle_contents dd.pc-display,
.toggle_contents2 dd.pc-display {
	display: block;
	margin: 0 auto 2.4em;
	text-align: left;
}

.toggle_btn {
	display: block;
	z-index: 1;
	position: absolute;
	right: 0;
	bottom: 0.5em;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	background: #666666;
}

.toggle_btn {
	background-image: none;
	background-color: #666666;
}

dt.toggle_title2 .toggle_btn {
	bottom: 1.5em;
}

.toggle_btn.darkorange {
	background-color: #eb5a24;
}

.toggle_btn.green {
	background-color: #39af4a;
}

.toggle_btn.lightblu {
	background-color: #0071b6;
}

dt.selected .toggle_btn {
	transform: rotateZ(180deg);
}

.toggle_btn:before,
.toggle_btn:after {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	background-color: #fff;
	content: "";
	transform: translate(-50%, -50%);
}

.toggle_btn:before {
	width: 2px;
	height: 1.1em;
}

.toggle_btn:after {
	width: 1.1em;
	height: 2px;
}

.toggle_title.selected .toggle_btn:before,
.toggle_title2.selected .toggle_btn:before {
	content: normal;
}

.toggle_contents dd,
.toggle_contents2 dd {
	display: none;
}

.toggle_contents p,
.toggle_contents2 p {
	line-height: 2;
}

.toggle_contents > dd > p,
.toggle_contents2 > dd > p {
	text-align: justify;
}

span.toggle_btn span {
	display: none;
}

.accordion-inner {
	padding: 0.6em 0;
	margin: 0 auto;
}

.accordion-inner.link {
	max-width: 92%;
	padding: 0 0 1.6em;
}

.accordion-inner.ig {
	max-width: 100%;
}

.accordion-inner.link p {
	font-size: 14px;
}

ul.related-link-list li {
	padding: 1.2em 0;
	border-bottom: solid 1px #bababa;
	line-height: 1.6;
}

.com-name {
	display: block;
	width: 100%;
}

ul.related-link-list.other {
	margin: 1em 3%;
}

ul.related-link-list.other a {
	overflow-wrap: break-word;
}

.accordion-inner-box {
	border: solid 1px #949494;
	padding: 1.2em;
	line-height: 2;
}

.accordion-inner-box-title {
	padding: 0 0 0.5em;
	border-bottom: solid 1px #949494;
	margin-bottom: 0.8em;
}

ul.redcircle-list {
	padding: 0 1.6em;
}

ul.redcircle-list li {
	display: inline-block;
	margin-bottom: 1.6em;
	position: relative;
}

ul.redcircle-list li::before {
	position: absolute;
	top: 0.5em;
	left: -1.5em;
	display: block;
	width: 1em;
	height: 1em;
	border-radius: 50%;
	background: #e81c24;
	content: "";
}

ul.redcircle-list.gray {
	padding: 0 2em;
}

ul.redcircle-list.gray li::before {
	top: 0.15em;
	background: #949494;
}

ul.redcircle-list.black {
	padding: 0 2em;
	font-size: 14px;
}

ul.redcircle-list.black li {
	margin-bottom: 0.6em;
}

ul.redcircle-list.black li::before {
	top: 0.15em;
	background: #4d4d4d;
}

ul.asterisk,
ul.dot-list {
	color: #4d4d4d;
	font-size: 12px;
}

ul.asterisk li,
ul.dot-list li {
	position: relative;
	margin: 0 0 0.4em;
	padding: 0 0 0 1em;
	line-height: 1.4;
	letter-spacing: 0.1em;
}

ul.asterisk li::before {
	position: absolute;
	top: 0;
	left: 0;
	content: "※";
}

ul.dot-list li::before {
	position: absolute;
	top: 0.5em;
	left: 0.3em;
	display: block;
	width: 2px;
	height: 2px;
	border-radius: 50%;
	background: #4d4d4d;
	content: "";
}

span.dot-w {
	display: inline-block;
	width: 10em;
}

.toggle_title.red,
.toggle_title2.red {
	color: #e71c24;
}

.toggle_title.red .toggle_btn,
.toggle_title2.red .toggle_btn {
	background-color: #e71c24;
}

.toggle_title.green,
.toggle_title2.green {
	color: #006837;
}

.toggle_title.green .toggle_btn,
.toggle_title2.green .toggle_btn {
	background-color: #006837;
}

.toggle_title.lightgreen,
.toggle_title2.lightgreen {
	color: #008c45;
}

.toggle_title.lightgreen .toggle_btn,
.toggle_title2.lightgreen .toggle_btn {
	background-color: #008c45;
}

.toggle_title.lightblu,
.toggle_title2.lightblu {
	color: #29a5dc;
}

.toggle_title.lightblu .toggle_btn,
.toggle_title2.lightblu .toggle_btn {
	background-color: #29a5dc;
}

.toggle_title.darkorange,
.toggle_title2.darkorange {
	color: #eb5a24;
}

.toggle_title.darkorange .toggle_btn,
.toggle_title2.darkorange .toggle_btn {
	background-color: #eb5a24;
}

.toggle_title.blu,
.toggle_title2.blu {
	color: #0071b6;
}

.toggle_title.blu .toggle_btn,
.toggle_title2.blu .toggle_btn {
	background-color: #0071b6;
}

/* くま高原自動車教習所について
---------------------------------------------------------- */
#about {
	padding: 1em 0 0;
}

.about-us-bg {
	position: relative;
	width: 100%;
	height: 600px;
	background-image: url(../img/about-us-bg-sp.jpg);
	background-size: cover;
	background-position: center center;
}

.about-us-bg::after {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(29, 147, 221, 0.3);
}

.about-us-inner {
	position: relative;
	z-index: 1;
	padding: 2.4em 0;
}

.about-title,
.about-subtitle {
	color: #fff;
}

.about-title {
	margin-bottom: 0.5em;
	font-size: 30px;
	letter-spacing: 0.04em;
}

.about-subtitle {
	font-size: 18px;
}

.four-reason-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	max-width: 320px;
	margin: 2em auto;
}

.four-reason-wrap.three-item{
	justify-content: center;
}


img.four-reason {
	width: 156px;
	height: 156px;
}

.four-reason-wrap.center-list img.four-reason:last-child{
	margin: 0 auto;
}

.center-btn {
	text-align: center;
}

a.center-btn-link {
	display: inline-block;
	padding: 0.7em 2.7em;
	border-radius: 1.6em;
	color: #ff8d1e;
	font-size: 16px;
	text-decoration: none;
	background: #fff;
	background-image: url(../img/arrow-icon-orange-2.svg);
	background-repeat: no-repeat;
	background-position: center right 0.7em;
	background-size: 1.2em;
}

a:hover.center-btn-link {
	opacity: 0.7;
}

.about-us-bg-orange {
	height: auto;
	background-color: #ff8d1e;
	background-image: url(../img/about-us-bg-photo.jpg), url(../img/bg-pattern-right1.svg);
	background-position: top left, bottom 9em right -6em;
	background-repeat: no-repeat, no-repeat;
	background-size: contain, 60%;
}

.about-us-bg-orange-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	height: 100%;
	padding: 2em 0;
}

.about-link-wrap {
	width: 64%;
	margin: 0 auto 1.4em;
	border: solid 4px #fff;
	border-radius: 1.1em;
	overflow: hidden;
	background-color: #ffffff;
}

a.about-link {
	text-decoration: none;
}

a.about-link .about-info {
	padding: 0.7em 0.4em 0.96em;
	color: #fff;
	font-size: 16px;
	text-align: center;
	margin: 0;
	background-image: url(../img/arrow-icon-white.svg), url(../img/about-link-bg.svg);
	background-size: 1.4em, 80%;
	background-repeat: no-repeat, no-repeat;
	background-position: center right 0.48em, center right -1em;
}

.about-img-wrap {
	overflow: hidden;
	position: relative;
	border-top: solid 4px #fff;
	border-right: solid 4px #fff;
	border-left: solid 4px #fff;
	border-radius: 0.9em 0.9em 0 0;
}

.support-note {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: auto;
	padding: 0.64em 0.8em;
	color: #4d4d4d;
	font-size: 14px;
	line-height: 1.7;
	text-align: center;
	background-color: rgba(255, 255, 255, 0.8);
}

a.about-link .about-img {
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
	border-radius: 0.8em 0.8em 0 0;
}

a:hover.about-link .about-img {
	-webkit-transform: scale3d(1.1, 1.1, 1.1);
	transform: scale3d(1.1, 1.1, 1.1);
}

.about-info-wrap {
	margin: 0;
	background: #fc8c1e;
	position: relative;
	z-index: 1;
}

.banner-area {
	padding: 3em 0 0;
}

a.schoolbus-banner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	width: 86%;
	margin: 0 auto;
	padding: 0.5em;
	border: solid 3px #eb5a24;
	text-decoration: none;
}

.banner-img-wrap {
	width: 542px;
	overflow: hidden;
}

.banner-title-en {
	font-size: 14px;
	margin-bottom: 0.4em;
}

.banner-title {
	font-size: 24px;
	margin-bottom: 0.4em;
}

.banner-title-en.red,
.banner-title.red {
	color: #eb5a24;
}

.schoolbus-info-box {
	width: 100%;
	padding: 1em;
	background-image: url(../img/arrow-icon-darkorange-2.svg);
	background-repeat: no-repeat;
	background-position: top 1.8em right 1em;
	background-size: 1.8em;
}

p.banner-txt {
	width: 100%;
	color: #151515;
	font-size: 16px;
	line-height: 1.87;
}

a.schoolbus-banner .banner-img,
a.min-banner .banner-min-img {
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
}

a:hover.schoolbus-banner .banner-img,
a:hover.min-banner .banner-min-img {
	-webkit-transform: scale3d(1.1, 1.1, 1.1);
	transform: scale3d(1.1, 1.1, 1.1);
}

a.schoolbus-banner .schoolbus-info-box,
a.min-banner .tow-banner-info-box {
	opacity: 1;
	transition-duration: 0.32s;
	transition-property: all;
}

a:hover.schoolbus-banner .schoolbus-info-box,
a:hover.min-banner .tow-banner-info-box {
	opacity: 0.6;
}

.tow-banner-area {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 86%;
	margin: 1em auto;
}

.min-banner-wrap {
	width: 100%;
	margin-bottom: 1em;
}

a.min-banner {
	display: flex;
	padding: 0.5em;
	text-decoration: none;
}

.banner-img-min-wrap {
	overflow: hidden;
	width: 48%;
}

.banner-title-en.blu,
.banner-title.blu {
	color: #29a5dc;
}

.banner-title-en.orange,
.banner-title.orange {
	color: #ff8d1e;
}

.tow-banner-info-box {
	padding: 0.8em;
}

.banner-title.blu,
.banner-title.orange {
	font-size: 20px;
}

a.staff-banner {
	border: solid 3px #29a5dc;
}

a.voice-banner {
	border: solid 3px #ff8d1e;
}

.tow-banner-info-box {
	width: calc(100% - 48%);
	background-repeat: no-repeat;
	background-position: bottom 0.3em right 0.3em;
	background-size: 1.6em;
}

.tow-banner-info-box.blu {
	background-image: url(../img/arrow-icon-blu-2.svg);
}

.tow-banner-info-box.orange {
	background-image: url(../img/arrow-icon-orange-2.svg);
}

/* 入校申込み / 資料請求 / お問い合わせ
---------------------------------------------------------- */
.contact-wrap {
	display: none;
}

/* TOPバナー部分
---------------------------------------------------------- */
.top-banner-area {
	padding: 0 4em 2em;
}

.top-banner-area .txt_head{
	font-size: 15px;
	text-align: center;
	padding-bottom: 8px;
	border-bottom: 1px solid #000;
	margin-bottom: 13px;
}


.top-banner-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

a.top-banner {
	opacity: 1;
	margin-bottom: 1.2em;
}

.tba02 a.top-banner.tb02 {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}


a:hover.top-banner {
	opacity: 0.6;
}

/* footer部分
---------------------------------------------------------- */
#footer {
	width: 100%;
	height: auto;
	margin-top: 2em;
	padding: 1.4em 0;
	padding-bottom: calc(125px + 2em);
	background-color: #ff8d1e;
}
#footer.f100 {
	width: 100%;
	height: auto;
	margin-top: 2em;
	padding: 1.4em 0;
	padding-bottom: calc(160px + 2em);
	background-color: #ff8d1e;
}

.footer-info-wrap {
	position: relative;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}

.kamiukena-add-wrap {
	width: 84%;
	margin: 1em auto;
	color: #fff;
	font-size: 14px;
	line-height: 1.8;
	letter-spacing: 0.08em;
}

.footer-sns-link > a {
	display: block;
	width: 48px;
	height: 48px;
}

.footer-sns-link > a:hover {
	opacity: 0.6;
}

.footer-logo-wrap {
	width: 60%;
	margin: 0 auto;
}

.footer-btn-wrap {
	display: none;
}

.conatct-sp-wrap {
	display: block;
	width: 84%;
	margin: 0 auto 1.6em;
	padding: 1em;
	border-radius: 0.6em;
	background-color: #fff;
}

.conatct-sp-title {
	font-size: 27px;
	margin: 0 0 0.3em;
	color: #ff8d1e;
}

.admission-application-wrap {
	padding: 0 0 1em;
	position: relative;
}

.admission-application-wrap::after {
	display: block;
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 95%;
	height: 1px;
	content: "";
	background-color: #c6c6c6;
	transform: translateX(-50%);
}

a:hover.admission-application-link {
	opacity: 0.6;
}

.freee-dial-sp-wrap {
	margin: 1em;
}

.freee-dial-sp-wrap a{
	display: block;
	width: 100%;
}

.freee-dial-sp-wrap a + a {
	padding-top: 1.5em;
}

.mtop a.footer-link-sp {
	margin-bottom: 0.5em;
}

a.footer-link-sp {
	display: block;
	width: 94%;
	margin: 0 auto 0.7em;
	padding: 1em 3em;
	border: solid 2px #c6c6c6;
	border-radius: 0.4em;
	font-size: 15px;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	background-repeat: no-repeat, no-repeat;
	background-position: center left 1.2em, center right 1em;
	background-size: 1.8em, 1em;
}

.footer-link-sp-wrap.mtop{
	margin-top: 1em;
}

a.footer-link-sp.green {
	color: #008c45;
	background-image: url("../img/ioc-document_green.svg"), url("../img/btn-arrow-green.svg");
}


a.footer-link-sp.orange {
	color: #eb5a24;
	background-image: url(../img/ioc-document-orange.svg), url(../img/btn-arrow-orange.svg);
}

a.footer-link-sp.blu {
	color: #29a5dc;
	background-image: url(../img/question.svg), url(../img/btn-arrow-blu.svg);
}

a.footer-link-sp.red {
	color: #e71c24;
	background-image: url(../img/ioc-mail-red.svg), url(../img/btn-arrow-red.svg);
}

a:hover.footer-link-sp {
	opacity: 0.6;
}

ul.sns-list-sp-btn {
	display: flex;
	justify-content: space-between;
	width: 56%;
	margin: 0 auto 1.6em;
}

ul.sns-list-sp-btn li {
	width: 2.7em;
}

.copyright {
	color: #fff;
	font-size: 13px;
}

#back-to-top {
	z-index: 99;
	position: fixed;
	display: none;
	right: 0.4em;
	bottom: calc(0.4em + 123px) !important;
	width: 70px;
	height: auto;
}

a.back-to-btn {
	display: block;
	width: 100%;
	height: auto;
	color: #333;
	font-size: 10px;
	text-align: center;
	text-decoration: none;
}

/*固定ページ
---------------------------------------------------------- */
.eyecatch-img-wrap {
	position: relative;
	width: 100%;
	/* height: 330px; */
}

.eyecatch-img-wrap::after {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: rgb(0 0 0 / 10%);
}

img.page-img {
	width: 780px;
}

.page-info-wrap,
.page-info-wrap-form {
	z-index: 1;
	position: relative;
	width: 100%;
	height: auto;
	padding: 1em 2em;
	overflow: hidden;
	color: #fff;
	background: #f18d1e;
}

.page-info-wrap::before,
.page-info-wrap-form::before {
	display: block;
	z-index: 1;
	position: relative;
	top: 50%;
	right: -12em;
	width: 440px;
	height: 16px;
	content: "";
	background-image: url(../img/bg-line.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transform: rotate(-45deg) translateY(-50%);
}

.page-info-wrap::after,
.page-info-wrap-form::after {
	display: block;
	z-index: 1;
	position: relative;
	top: 50%;
	left: -17em;
	width: 440px;
	height: 16px;
	content: "";
	background-image: url(../img/bg-line.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transform: rotate(-45deg) translateY(-50%);
}

.page-title-en {
	font-size: 12px;
	text-align: center;
	margin-top: 0;
}

.page-title-jp {
	position: relative;
	padding: 0.6em 0;
	margin-bottom: 0.8em;
	font-size: 24px;
	z-index: 2;
	text-align: center;
}

.page-title-jp::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	content: "";
	background-color: #fff;
}

.page-subtitle-jp {
	font-size: 0.625em;
	display: block;
}

ul.page-anker-link-wrap {
	display: flex;
	position: relative;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	margin: 1em 0;
	font-size: 14px;
	background: #fff;
}

.page-anker-link {
	position: relative;
	width: 45%;
	font-size: 14px;
	text-align: center;
	margin: 0 2.5%;
}

li.page-anker-link.long {
	width: 94%;
}

a.anker-link-btn {
	display: block;
	position: relative;
	padding: 1em 0;
	overflow: hidden;
	color: #333;
	text-decoration: none;
	text-overflow: ellipsis;
	white-space: nowrap;
}

a:hover.anker-link-btn {
	color: #96979a;
}

a.anker-link-btn::after {
	display: block;
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	content: "";
	background-color: #f18d1d;
	transition-property: all;
	transition-duration: 0.4s;
}

.page-wrap {
	padding: 2em 1em 1em;
}

.page-wrap2 {
	padding: 2em 0 1em;
}

.bg-pattern-orange {
	background-image: url(../img/bg-pattern-right-orange.svg), url(../img/bg-pattern-left-orange.svg);
	background-position: top right -38%, top 4em left -44%;
	background-repeat: no-repeat, no-repeat;
	background-size: 48%;
}

.page-subtitle {
	font-size: 24px;
	color: #ff8d1e;
}

.page-underline-subtitle {
	position: relative;
	padding-bottom: 0.6em;
	color: #eb5a24;
	font-size: 20px;
}

.page-underline-subtitle.longline {
	margin-bottom: 2em;
}

.page-underline-subtitle::after {
	display: block;
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 9em;
	height: 3px;
	content: "";
	background-color: #ff8d1e;
	transform: translateX(-50%);
}

.con-underline-subtitle {
	position: relative;
	padding-bottom: 0.6em;
	color: #ff8d1e;
	font-size: 20px;
}

.con-underline-subtitle::after {
	display: block;
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 5em;
	height: 3px;
	content: "";
	background-color: #ff8d1e;
	transform: translateX(-50%);
}

h2.con-underline-subtitle.mail,
h2.con-underline-subtitle.check,
h2.con-underline-subtitle.doc {
	padding-top: 3em;
}

h2.con-underline-subtitle.check {
	padding-top: 1.6em;
}

h2.con-underline-subtitle.mail::before,
h2.con-underline-subtitle.check::before,
h2.con-underline-subtitle.doc::before {
	display: block;
	position: absolute;
	top: 1.5em;
	left: 50%;
	width: 30px;
	height: 24px;
	content: "";
	background-repeat: no-repeat;
	background-position: center;
	transform: translateX(-50%);
	background-size: contain;
}

h2.con-underline-subtitle.check::before {
	top: 0.2em;
}

h2.con-underline-subtitle.mail::before {
	background-image: url(../img/mail-con.svg);
}

h2.con-underline-subtitle.check::before {
	background-image: url(../img/check-orange.svg);
}

h2.con-underline-subtitle.doc::before {
	background-image: url(../img/doc-con.svg);
}

/* h2.con-underline-subtitle.doc {
	margin-bottom: 2.6em;
} */

.reicon {
	position: relative;
}

.reicon::before,
.reicon::after {
	display: block;
	position: absolute;
	top: 1.1em;
	width: 70px;
	height: 65px;
	content: "";
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	transform: translateY(-50%);
}

.reicon::before {
	background-image: url(../img/contact-kuma.png);
	left: 0;
}

.reicon::after {
	background-image: url(../img/car-illust2.svg);
	right: 0;
}

.page-underline-subtitle.longline::after {
	width: 100%;
	color: #eb5a24;
}

.enclosure {
	position: relative;
	max-width: 966px;
	margin: 7em auto 1em;
	padding: 1.6em 1em;
	border: solid 3px #ff8d1e;
	border-radius: 1em;
	background: #fff;
}

.enclosure.illust {
	padding: 4em 1em 1.6em;
	background-image: url(../img/car-illust.svg);
	background-repeat: no-repeat;
	background-position: top 1.5em center;
	background-size: 60%;
}

.kuma {
	position: relative;
}

.kuma::after {
	display: block;
	position: absolute;
	top: -93px;
	left: 50%;
	width: 100px;
	height: 90px;
	content: "";
	background-image: url(../img/contact-kuma.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transform: translateX(-50%);
}

.enclosure-title {
	position: relative;
	width: 100%;
	margin: 0 0 0.8em;
	padding: 0 0 0.8em;
	border-bottom: solid 3px #ff8d1e;
	color: #151515;
	font-size: 19px;
}

p.enclosure-txt {
	color: #333;
	font-size: 15px;
	line-height: 1.7;
	text-align: left;
}

.licence-link-wrap {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 100%;
	max-width: 920px;
	margin: 1.6em auto;
}

a.licence-link {
	display: flex;
	align-items: center;
	width: 48%;
	margin-bottom: 1em;
	padding: 0.8em 3em 0.8em 0.56em;
	border-radius: 1em;
	color: #333;
	font-size: 15px;
	text-decoration: none;
	background: #fff;
	background-image: url(../img/arrow-icon-glay.svg);
	background-repeat: no-repeat;
	background-position: center right 0.64em;
	background-size: 1.1em;
	box-shadow: 0 0 0.3em rgb(0 0 0 / 30%);
}

@media only screen and (max-width: 375px) {
	a.licence-link {
		padding: 0.8em 2em 0.8em 0.56em;
	}
}

a.licence-link.red {
	color: #e71c24;
}

a.licence-link.green {
	color: #006837;
}

a.licence-link.lightblu {
	color: #29a5dc;
}

a.licence-link.lightgreen {
	color: #008c45;
}

a.licence-link.darkorange {
	color: #eb5a24;
}

a.licence-link.blu {
	color: #0071b6;
}

a:hover.licence-link,
a.licence-link.current {
	color: #fff;
	background: #ff8d1e;
	background-image: url(../img/arrow-icon-white.svg);
	background-repeat: no-repeat;
	background-position: center right 0.64em;
	background-size: 1.1em;
}

.plan-min-img {
	width: 38px;
	height: auto;
	margin-right: 0.64em;
	border-radius: 50%;
}

.h3-title {
	position: relative;
	color: #ff8d1e;
	font-size: 20px;
	padding: 0 0 0.6em;
}

.h3-title::after {
	display: block;
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 2.6em;
	height: 3px;
	content: "";
	background-color: #ff8d1e;
	transform: translateX(-50%);
}

.h3-title span.kikan{
	font-size: 0.75em;
	display: block;
	padding-top: 5px;
}

.horizontal-img-txt-wrap {
	display: flex;
	/* flex-direction: column-reverse; */
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	margin-bottom: 1em;
}

figure.horizontal-img-wrap {
	border-radius: 1.2em;
	overflow: hidden;
}

.horizontal-caption {
	text-align: center;
	margin: 0.4em 0;
	font-size: 15px;
}

.horizontal-txt-box {
	width: 100%;
	padding: 0.6em 0.2em;
}

.horizontal-txt-box2 {
	width: 100%;
	padding: 0.6em 0.2em;
}

.horizontal-title {
	font-size: 19px;
	line-height: 1.7;
	color: #333;
}

p.horizontal-txt {
	font-size: 16px;
	line-height: 1.7;
	color: #333;
}

p.horizontal2-txt {
	font-size: 15px;
	line-height: 1.7;
	color: #333;
	margin-bottom: 1em;
}

.mini-castle {
	display: flex;
	position: relative;
	justify-content: flex-start;
	align-items: center;
	margin: 0.56em 0 1.6em;
	padding: 0.8em 0.6em 0.8em 2em;
	border: solid 2px #dcdcdc;
	border-radius: 0.8em;
	color: #333;
	background-color: #fff;
	white-space: nowrap;
	font-size: 15px;
}

.mini-castle.orange {
	border: solid 2px #ff8d1e;
}

.mini-castle.blu {
	border: solid 2px #29a5dc;
}

.mini-castle::after {
	position: absolute;
	content: "";
	display: block;
	width: 0.9em;
	height: 0.9em;
	background: #dcdcdc;
	border-radius: 50%;
	top: 50%;
	left: 0.6em;
	transform: translateY(-50%);
}

.mini-castle.orange::after {
	background: #ff8d1e;
}

.mini-castle.blu::after {
	background: #29a5dc;
}

h3.star-title {
	width: 100%;
	max-width: 1000px;
	margin: 8em auto 1em;
	padding: 0 0 1em;
	border-bottom: solid 3px #fc8c1e;
	color: #151515;
	font-size: 19px;
}

ul.plan-list-ul {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
}

.plan-list-li {
	position: relative;
	margin-bottom: 1.2em;
	padding: 0.9em 2.6em;
	border: solid 2px #e0e0e0;
	border-radius: 0.4em;
}

.plan-list-li::before {
	display: block;
	position: absolute;
	top: 50%;
	left: 1em;
	width: 0.9em;
	height: 0.9em;
	border-radius: 50%;
	content: "";
	background-color: #fc8c1e;
	transform: translateY(-50%);
}

a.plan-list {
	color: #333;
	font-size: 15px;
}

a:hover.plan-list {
	color: #0071b6;
	text-decoration: underline;
}

.orange-bg {
	background-color: #ff8d1e;
}

.enclosure-glay {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 1em 1em 1.6em;
	border: solid 2px #e0e0e0;
	border-radius: 0.4em;
	background-color: #fff;
}

h3.enclosure-glay-title {
	margin-bottom: 0.8em;
	padding-bottom: 0.6em;
	border-bottom: solid 3px #c6c6c6;
	color: #eb5a24;
	font-size: 20px;
}

ul.orangecircle-ul {
	font-size: 15px;
	color: #333;
}

li.orangecircle-li {
	position: relative;
	padding: 0 0 0 1.8em;
	line-height: 1.5;
	margin-bottom: 0.9em;
}

li.orangecircle-li.red {
	margin-bottom: 1.8em;
}

li.orangecircle-li::after {
	display: block;
	position: absolute;
	top: 0.3em;
	left: 0.5em;
	width: 0.9em;
	height: 0.9em;
	border-radius: 50%;
	content: "";
	background-color: #fc8c1e;
}

li.orangecircle-li.red::after {
	background-color: #e61c24;
}

.page-large-txt {
	color: #333;
	font-size: 16px;
	line-height: 1.7;
	text-align: left;
}

.price-table {
	font-size: 20px;
	text-align: center;
	color: #333;
}

.table-border {
	border-collapse: collapse;
	border: 2px solid #c5c5c5;
}

.table-border th,
.table-border td {
	border: 2px solid #c5c5c5;
}

.table-border td {
	padding: 0.6em;
}

.table-border td span{
	font-size: 13px;
}

thead.price-head.at {
	color: #fff;
	background-color: #29a4db;
}

thead.price-head.mt {
	color: #fff;
	background-color: #39ae4a;
}

thead.price-head.ore {
	color: #fff;
	background-color: #f18d1e;
}

thead.price-head.blu {
	color: #fff;
	background-color: #0071b6;
}

thead.price-head.eg {
	color: #fff;
	background-color: #00a397;
}

.price-table {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto 0.6em;
	font-size: 15px;
	text-align: center;
}

.front-segmentation {
	width: 23%;
	height: 78px;
	background-image: url(../img/bunkatu.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}

.scroll-table {
	position: relative;
	padding-top: 1.4em;
}

.scroll-table::before {
	position: absolute;
	top: 0;
	left: 0;
	color: #afafaf;
	content: "この表は左右にスクロールできます";
	font-size: 12px;
}

.scroll-table table {
	display: block;
	overflow-x: scroll;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
}

h4.price-title {
	padding: 0.8em 3em 0.6em;
	color: #151515;
	font-size: 20px;
	text-align: center;
}

h4.price-title.at {
	border-bottom: solid 2px #29a4db;
	background-image: url(../img/at-icon.svg);
	background-size: 2.7em;
	background-repeat: no-repeat;
	background-position: bottom -4px left;
}

h4.price-title.car {
	border-bottom: solid 2px #29a4db;
	background-image: url(../img/at-icon-02.svg);
	background-size: 2.7em;
	background-repeat: no-repeat;
	background-position: bottom -4px left;
}

h4.price-title.mt {
	border-bottom: solid 2px #39ae4a;
	background-image: url(../img/mt-icon.svg);
	background-size: 2.7em;
	background-repeat: no-repeat;
	background-position: bottom -4px left;
}

h4.price-title.bike {
	border-bottom: solid 2px #29a4db;
	background-image: url(../img/bike-ico.svg);
	background-size: auto;
	background-repeat: no-repeat;
	background-position: bottom -4px left 1.4em;
}

h4.price-title.bike-mt {
	border-bottom: solid 2px #39af4a;
	background-image: url(../img/bike-mt-ico.svg);
	background-size: auto;
	background-repeat: no-repeat;
	background-position: bottom -4px left 1.4em;
}

h4.price-title.bike-at {
	border-bottom: solid 2px #29a5dc;
	background-image: url(../img/bike-at-ico.svg);
	background-size: auto;
	background-repeat: no-repeat;
	background-position: bottom -4px left 1.4em;
}

h4.price-title.minibike-at {
	border-bottom: solid 2px #00a397;
	background-image: url(../img/minibike-at-ico.svg);
	background-size: auto;
	background-repeat: no-repeat;
	background-position: bottom -4px left 1.4em;
}

h4.price-title.no-ico {
	background-image: none;
}

ul.asterisk-ul {
	color: #333;
}

.width1000 {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto !important;
}

.width900 {
	width: 100%;
	max-width: 900px;
	margin: 0 auto !important;
}

li.asterisk-li {
	position: relative;
	margin-bottom: 0.6em;
	padding-left: 1.1em;
}

li.asterisk-li::before {
	position: absolute;
	content: "※";
	top: 0;
	left: 0;
}

label.check {
	display: inline-block;
	margin: 0.6em 0;
}

li.asterisk-li.orange::before {
	color: #eb5a24;
}

li.asterisk-li.orange {
	color: #333;
}

li.asterisk-li.color-red::before {
	color: #ff0000;
}


li.asterisk-li.color-red{
	color: #ff0000;
}

.anker-link-block {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

a.anker-block {
	display: flex;
	align-items: center;
	width: 24%;
	min-height: 84px;
	margin: 0 0 0.8em;
	padding: 0.8em 2.4em;
	border-radius: 0.8em;
	color: #333;
	font-size: 20px;
	text-decoration: none;
	background: #fff;
	background-image: url(../img/anker-ico.svg);
	background-repeat: no-repeat;
	background-size: 1.2em;
	background-position: center right 0.8em;
}

a:hover.anker-block {
	color: #96979a;
}

.light-yellow {
	background-color: #fffef3;
}

.reser-link-wrap,
.reser-link-wrap2 {
	position: relative;
	width: 100%;
	max-width: 1000px;
	margin: 9em auto 1em;
	z-index: 2;
}

.reser-link-wrap2 {
	margin: 1em auto 1.2em;
}

.call-contact-info {
	border: solid 3px #e0e0e0;
	background: #fff;
	padding: 1.2em;
}

.kuma-reservation-reception {
	position: relative;
	z-index: 0;
}

.kuma-reservation-reception::before {
	display: block;
	position: absolute;
	top: -116px;
	left: 50%;
	width: 100%;
	height: 100px;
	content: "";
	background-image: url(../img/kuma-reservation-reception-sp.png);
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: contain;
	transform: translateX(-50%);
}

img.call-info-img {
	margin: 0 auto 0.4em;
}

p.call-info-txt {
	line-height: 1.4;
	text-align: left;
}

.call-info {
	padding: 0 0 1em;
	margin-bottom: 1em;
	border-bottom: solid 2px #e0e0e0;
}

.call-info2 {
	padding: 0;
	margin-bottom: 1em;
}

.call-num {
	width: 100%;
	font-size: 20px;
	text-align: center;
	line-height: 1.5;
}

.call-form-info-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.con-form-btn-wrap {
	width: 100%;
	margin-top: 1em;
}

a.form-link-btn {
	display: block;
	position: relative;
	width: 100%;
	padding: 0.7em 2em;
	border-radius: 0.4em;
	color: #fff;
	font-size: 18px;
	text-align: center;
	text-decoration: none;
	background-color: #bfbfbf;
	background-image: url(../img/btn-arrow-white.svg);
	background-repeat: no-repeat;
	background-position: center right 0.4em;
	background-size: 1em;
}

a.form-link-btn.contact {
	background-color: #008c45;
}

a.form-link-btn.request {
	background-color: #ff8d1e;
}

a.form-link-btn.entrance {
	background-color: #eb5a24;
}

a.form-link-btn::before {
	display: block;
	position: absolute;
	top: 50%;
	left: 1em;
	width: 1.4em;
	height: 1.4em;
	content: "";
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	transform: translateY(-50%);
}

a.form-link-btn.contact::before {
	background-image: url(../img/ioc-mail.svg);
}

a.form-link-btn.request::before {
	background-image: url(../img/ioc-document.svg);
}

a.form-link-btn.entrance::before {
	background-image: url(../img/check.svg);
}

a:hover.form-link-btn {
	opacity: 0.6;
}

.form-info-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin-top: 1.6em;
	background-image: url(../img/sp-kuma.png);
	background-repeat: no-repeat;
	background-position: top 3.2em center;
	background-size: 70%;
}

.form-info-wrap.con {
	background-position: top center;
	background-size: 60%;
	padding: 3em 0 0;
}

p.form-info-txt {
	text-align: center;
	width: 100%;
	margin-bottom: 6em;
}

.orange-band-bg {
	position: relative;
}

.orange-band-bg::before {
	display: block;
	z-index: -1;
	position: absolute;
	top: 58%;
	left: 50%;
	width: 100%;
	height: 340px;
	content: "";
	background-color: #f18d1e;
	transform: translate(-50%, -50%);
}

.enclosure-glay-each.right {
	width: 96%;
	margin: 6.4em -1em 0 4%;
}

.page-wrap.jisan {
	padding: 2em 0 1em;
}

.orange-band-bg.jisan::before {
	height: 440px;
	top: 63%;
}

@media only screen and (max-width: 375px) {
	.orange-band-bg.jisan::before {
		height: 480px;
	}
}

.enclosure-glay-each {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 2em 1em 1em;
	border: solid 2px #e0e0e0;
	background-color: #fff;
}

.normal-table {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto 2px;
	border: none;
	border-collapse: collapse;
	line-height: 1.4;
}

.normal-table td,
.normal-table th,
.normal-table tr {
	border: 1px solid #f18d1e;
	border-spacing: 0;
	border-spacing: 0;
	padding: 0.6em 1.2em;
}

.normal-table td {
	width: 100%;
	display: block;
}

.normal-table td {
	background-color: #fff;
}

.normal-table tr td:first-child {
	width: 100%;
	color: #fff;
	text-align: left;
	vertical-align: baseline;
	background-color: #f18d1e;
}

.normal-table tr td > p {
	line-height: 1.5;
	margin: 0.6em 0;
}

ol.ol-list {
	counter-reset: number 0;
}

ol.ol-list.green {
	counter-reset: number 5;
}

ol.ol-list.lightblu {
	counter-reset: number 9;
}

ol.ol-list .ol-list-li::before {
	display: block;
	position: absolute;
	top: 0.25em;
	left: 0.5em;
	width: 1.6em;
	height: auto;
	padding: 0.28em 0;
	border-radius: 50%;
	color: #fff;
	font-size: 20px;
	line-height: 1;
	content: counter(number);
	counter-increment: number 1;
	background: #ff8c1e;
}

ol.ol-list.green .ol-list-li::before {
	background: #39af4a;
}

ol.ol-list.lightblu .ol-list-li::before {
	background: #29a5dc;
}

ol.ol-list .ol-list-li::after {
	position: absolute;
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 12px 8.5px 0 8.5px;
	border-color: #ffe6d1 transparent transparent transparent;
	bottom: -1.1em;
	left: 50%;
	transform: translateX(-50%);
}

ol.ol-list .ol-list-li:last-child::after {
	content: none;
}

li.ol-list-li {
	position: relative;
	margin: 1.6em 0;
	padding: 0.88em 0.88em 0.88em 4em;
	border: solid 2px #f5aa3b;
	border-radius: 0.4em;
	color: #333;
	font-size: 16px;
	text-align: center;
	background-color: #fffbee;
}

ol.ol-list.green li.ol-list-li {
	border: solid 2px #86c03f;
	background-color: #fdfff0;
}

ol.ol-list.lightblu li.ol-list-li {
	border: solid 2px #29a5dc;
	background-color: #f3fcff;
}

.ol-list-li-box {
	background: #fff;
	border: solid 2px #ff8d1e;
	padding: 0.64em;
	margin: 0.8em 0.8em 0.2em;
	text-align: left;
	color: #333;
	border-radius: 0.4em;
	position: relative;
}

.ol-list-li-box.green {
	border: solid 2px #86c03f;
}

.ol-list-li .ol-list-li-box:first-child {
	margin-bottom: 2em;
}

.ol-list-li .ol-list-li-box:first-child::after {
	position: absolute;
	bottom: -0.9em;
	left: 46.5%;
	color: #fc8c1e;
	font-weight: bold;
	font-size: 2em;
	content: "+";
	transform: translateX(-50%);
}

.ol-list-li .ol-list-li-box.green:first-child::after {
	color: #86c03f;
}

.txt20 {
	font-size: 1.25em;
}

.balloon {
	position: relative;
	margin: 1.6em 0;
	padding: 0.88em;
	border: solid 2px #29a5db;
	border-radius: 0.4em;
	color: #333;
	font-size: 20px;
	text-align: center;
	background-color: #f3fcff;
}

.balloon:after,
.balloon:before {
	bottom: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}
.balloon:after {
	border-color: rgba(255, 255, 255, 0);
	border-bottom-color: #f3fcff;
	border-width: 13px;
	margin-left: -13px;
}
.balloon:before {
	border-color: rgba(51, 51, 51, 0);
	border-bottom-color: #29a5db;
	border-width: 16px;
	margin-left: -16px;
}

p.other-txt {
	margin-bottom: 1.6em;
	color: #333;
	font-size: 16px;
	line-height: 1.8;
	text-align: left;
}

.other-privilege-wrap {
	position: relative;
	width: 100%;
	margin: 1.2em auto;
	padding: 1em;
	border: solid 1px #e0e0e0;
	border-radius: 0.8em;
	background: #fff;
}

.privilege-img {
	position: absolute;
	top: 0.3em;
	left: 0.6em;
	width: 88px;
	height: auto;
}

.privilege-ico {
	display: inline-block;
	margin-bottom: 0.4em;
	padding: 0.3em 0.8em 0.4em;
	border-radius: 0.24em;
	color: #fff;
	font-size: 15px;
	background-color: #eb5a24;
}

.privilege-title {
	font-size: 17px;
}

.privilege-title-inner {
	min-height: 4.4em;
	margin: 0 0 0.8em;
	padding: 0 0 0 6em;
}

.privilege-txt {
	font-size: 15px;
	line-height: 1.6;
}

p.accordion-p {
	padding: 1em 0;
	color: #333;
	font-size: 15px;
}

.accordion-inner-wrap {
	width: 100%;
	max-width: 860px;
	margin: 0 auto;
}

table.tpoint-table {
	width: 100%;
	margin: 0 auto 1.6em;
	border: none;
	border-collapse: collapse;
	font-size: 15px;
}

.tpoint-table td,
.tpoint-tableth,
.tpoint-table tr {
	border: 1px solid #29a3da;
	border-spacing: 0;
	padding: 0.6em 1.2em;
}

td.tpoint-title {
	background: #29a3da;
	color: #fff;
}

img.tpoint-img {
	width: 180px;
	margin-bottom: 1em;
}

.tpoint-wrap {
	line-height: 1.4;
}

h4.accordion-min-title {
	position: relative;
	margin: 0;
	padding: 0.4em 0.4em 0.48em 1.6em;
	border-bottom: solid 2px #adadad;
	color: #333;
	font-size: 21px;
}

h4.accordion-min-title::before {
	display: block;
	position: absolute;
	top: 0.7em;
	left: 0.4em;
	width: 0.8em;
	height: 0.8em;
	border-radius: 50%;
	content: "";
	background-color: #eb5a24;
}

.skip-price-wrap {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin: 1em 0 1.6em;
}

img.skip-price-img {
	width: 100%;
	margin: 0 0 0.2em;
}

.skip-price-txt {
	font-size: 18px;
	line-height: 1.4;
}

img.certified-img {
	position: absolute;
	top: -3em;
	left: 50%;
	width: 90%;
	max-width: 940px;
	transform: translateX(-50%);
}

/* 青から黄色 背景グラデーション */
.blu-yellow-gra {
	background: rgb(218, 236, 246);
	background: linear-gradient(90deg, rgba(218, 236, 246, 0.5) 0%, rgba(237, 246, 232, 0.5) 50%, rgba(255, 255, 218, 0.5) 100%);
}

.blu-yellow-gra2 {
	background: rgb(185, 225, 243);
	background: linear-gradient(-90deg, rgba(185, 225, 243, 0.5) 0%, rgba(201, 208, 190, 0.5) 50%, rgba(221, 191, 131, 0.5) 100%);
}

.certified-img-wrap {
	position: relative;
	height: 160px;
	margin-top: 5em;
}

p.certified-txt {
	font-size: 16px;
	line-height: 1.7;
}

.txt-normal-large {
	margin-bottom: 1em;
	font-size: 1.5em;
	line-height: 1.5;
}

.certified-txt {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	color: #333;
	line-height: 1.5;
}

.warning-note-wrap {
	width: 100%;
	max-width: 1000px;
	margin: 3em auto 1.6em;
	padding: 1.2em 1em;
	border: solid 2px #c6c6c6;
	border-radius: 0.8em;
	font-size: 18px;
	line-height: 1.6;
}

.warning-note-title {
	font-size: 20px;
	margin-bottom: 0.4em;
	color: #333;
}

.margin-under {
	margin-bottom: 1.2em;
}

.support-bg {
	width: 100%;
	height: auto;
	padding-top: 32%;
	margin: 0 0 2em;
	background-image: url(../img/support-bg-sp.jpg);
	background-repeat: repeat-x;
	background-position: center left;
	background-size: cover;
}

p.sptxt20 {
	font-size: 20px;
}

p.sp-txt15 {
	padding: 0 1.2em;
}

.support-wrap {
	counter-reset: number 0;
}

.support-con-wrap {
	position: relative;
	height: auto;
	min-height: 340px;
	padding: 2em 3em 2em 42%;
	border-bottom: solid 2px #e0e0e0;
}

img.support-img {
	width: 70%;
	margin: 1em auto;
	height: auto;
}

.support-con {
	/* position: relative; */
	min-height: 3.4em;
	padding: 0 0 0.8em 2.6em;
	background-image: url(../img/num-bg.svg);
	background-repeat: no-repeat;
	background-position: top left;
	background-size: 2.2em;
}

.support-wrap .support-con::before {
	position: absolute;
	top: -0.4em;
	left: 0.68em;
	width: 1.9em;
	color: #f18d1e;
	font-size: 19px;
	text-align: center;
	content: counter(number) " ";
	counter-increment: number 1;
}

@media only screen and (max-width: 375px) {
	.support-wrap .support-con::before {
		top: -0.25em;
		font-size: 17px;
	}
}

p.support-txt {
	font-size: 16px;
	line-height: 1.7;
	margin-bottom: 1.6em;
}

.root-map-wrap {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
}

img.root-map-img {
	margin: 0 auto;
}

.warning-note-orange {
	width: 100%;
	max-width: 1000px;
	margin: 2em auto;
	padding: 2em 2.4em 1em;
	border: solid 2px #ff8d1e;
	border-radius: 0.8em;
	background-color: #fff;
}

.warning-note-orange.bus {
	padding: 1em 1em 0.4em;
}

.center-btn {
	margin: 3em 0;
}

a.center-btn-orange {
	display: inline-block;
	padding: 1.2em 6em 1.2em 1.6em;
	border-radius: 0.8em;
	color: #fff;
	font-size: 15px;
	text-decoration: none;
	background-color: #eb5a24;
	background-image: url(../img/arrow-icon-white.svg);
	background-repeat: no-repeat;
	background-position: center right 1.4em;
	background-size: 1.2em;
}

a:hover.center-btn-orange {
	opacity: 0.6;
}

.wide-img-area {
	display: flex;
	flex-wrap: wrap;
	margin: 1em 0;
}

.wide-img-area.kuma::after {
	left: 4em;
}

figure.wide-img-wrap {
	width: 100%;
}

.four-reason-wrap.pr {
	display: flex;
	position: absolute;
	bottom: 0;
	left: 50%;
	flex-wrap: nowrap;
	align-items: flex-start;
	margin: 0;
	transform: translate(-50%, 50%);
}

.pr-kuma {
	font-size: 20px;
	padding: 0 1.6em 0 30%;
	line-height: 1.6;
	text-align: left;
}

.four-reason-wrap.pr {
	width: 100%;
	bottom: 50%;
	transform: translate(-50%, 50%);
}

.four-reason-wrap.pr img.four-reason {
	width: calc(100% / 4);
	height: auto;
}

.four-reason-wrap.three-item img.four-reason{
	width: calc(100% / 3);
}


.pr-plan-box {
	counter-reset: number 0;
}

.pr-plan-wrap {
	position: relative;
	margin: 0 0 8em;
}

.orange-balloon {
	display: flex;
	top: -4.4em;
	left: 6em;
	justify-content: center;
	position: absolute;
	align-items: center;
	padding-left: 1.4em;
	width: 210px;
	height: 60px;
	color: #fff;
	font-size: 15px;
	text-align: center;
	background-image: url(../img/orange-balloon.svg);
	background-repeat: no-repeat;
	background-size: contain;
}

.pr-plan-info-box {
	position: relative;
	width: 96%;
	min-height: auto;
	margin: 5em -2em 0 4%;
	padding: 2em 4em 10em 1.6em;
	border-radius: 0.8em 0 0 0.8em;
}

@media only screen and (max-width: 375px) {
	.pr-plan-info-box {
		padding: 2em 1.6em 10em 1.6em;
	}
}

.pr-plan-info-box::before {
	display: block;
	position: absolute;
	top: 0;
	left: 1em;
	width: 50px;
	height: 50px;
	content: "";
	background-image: url(../img/num-bg.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transform: translateY(-50%);
}

.pr-plan-box .pr-plan-wrap .pr-plan-info-box::after {
	position: absolute;
	top: 0;
	left: 1.5em;
	color: #f18d1e;
	font-size: 23px;
	line-height: 1;
	content: counter(number) " ";
	counter-increment: number 1;
	transform: translateY(-55%);
}

.pr-plan-title {
	color: #151515;
	font-size: 20px;
}

p.pr-plan-txt {
	color: #151515;
	font-size: 16px;
	line-height: 1.8;
}

figure.pr-plan-img-wrap {
	position: relative;
	width: 80%;
	margin: -8em auto 0;
}

a.darkor-link {
	display: block;
	width: 98%;
	margin: 1em auto;
	padding: 0.8em;
	border: solid 2px;
	border-radius: 0.8em;
	font-size: 1.312rem;
	text-align: center;
	text-decoration: none;
	background: #fff;
	color: #eb5a24;
}

a:hover.darkor-link {
	opacity: 0.6;
	color: #eb5a24;
}

.big-orange-btn-wrap {
	margin: -2em 0 4em;
}

.big-orange-btn-wrap.nomal {
	margin: 0;
}

a.big-orange-btn {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 92%;
	margin: 0 auto;
	padding: 1.4em 4em 1.4em 1em;
	border: solid 2px #f18d1e;
	color: #f18d1e;
	background-color: #fff;
	text-align: left;
	text-decoration: none;
	background-image: url(../img/arrow-icon-darkorange-2.svg);
	background-size: 2em;
	background-repeat: no-repeat;
	background-position: center right 1.6em;
	position: relative;
}

a.big-orange-btn + a.big-orange-btn {
	margin-top: 1.5em;
}

a.big-orange-btn .kikan {
	width: 100%;
	box-sizing: border-box;
	font-size: 0.75em;
	letter-spacing: 0.05em;
	padding: 8px 0 0;
}


.big-orange-btn-en {
	font-size: 16px;
	margin-right: 2em;
}

.big-orange-btn-jp {
	font-size: 24px;
}

@media only screen and (max-width: 375px) {
	.big-orange-btn-en {
		margin-right: 1em;
	}

	.big-orange-btn-jp {
		font-size: 22px;
	}
}

a:hover.big-orange-btn {
	opacity: 0.6;
}

.facility-img-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.facility-img-inner {
	width: calc(97% / 2);
	margin: 0 0 1em;
}

.facility-caption {
	text-align: center;
	font-size: 16px;
	margin: 0.24em 0;
}

p.add-txt {
	margin: 3em;
}

.page-underline-subtitle.truck {
	color: #333;
}

p.page-large-txt.txt-red {
	margin: 1em 0;
	color: #e71c24;
}

.truck-bg {
	width: 100%;
	height: auto;
	padding-top: 32%;
	margin: 0 0 2em;
	background-image: url(../img/truck-bg-sp.jpg);
	background-repeat: repeat-x;
	background-position: center left;
	background-size: cover;
}

.simple-table {
	display: flex;
	width: 90%;
	margin: 1.6em auto;
	font-size: 14px;
	border: solid 2px #ff8d1e;
	border-radius: 0.4em;
	background-color: #fff;
}

.simple-table > div {
	padding: 0.8em 1.2em;
}

.simple-table-th {
	background-color: #ff8d1e;
	color: #fff;
}

.handling-car-wrap {
	position: relative;
	min-height: 288px;
	margin: 5.6em 0 0;
	background-color: #ff8d1e;
}

.handling-car-inner {
	display: flex;
	position: relative;
	flex-wrap: wrap;
	top: -1.2em;
	justify-content: space-between;
	width: 90%;
	max-width: 930px;
	margin: 0 auto;
}

figure.handling-car-img-wrap {
	width: 72%;
	margin: 0 auto 1.6em;
}

img.handling-car-img {
	border-radius: 0.6em;
}

.handling-car-caption {
	text-align: center;
	margin: 0.4em;
	font-size: 16px;
	color: #fff;
}

.camp-table {
	width: 100%;
	border-collapse: collapse;
	margin: 1em 0 1.6em;
}

.camp-table thead {
	background-color: #ff8c1e;
	color: #fff;
	text-align: center;
}

.camp-table thead tr td{
	white-space: nowrap;
}

.camp-table,
.camp-table td,
.camp-table th {
	border: 2px solid #c5c5c5;
}

.camp-table td {
	padding: 0.8em;
	text-align: center;
}

.camp-table td span{
	font-size: 13px;
}

@media only screen and (max-width: 375px) {
	.camp-table td {
		padding: 0.8em 0.4em;
	}
}

td.td-width1 {
	width: 14em;
}

.td-width2 {
	width: 4em;
}

td.td-left {
	text-align: left;
}

p.txt-right {
	text-align: right;
	margin: 0.4em 0 -0.4em;
}

p.txt-margin {
	margin: 1.6em 0;
	text-align: left;
}

.surrounding-environment {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	width: 94%;
	margin: 4em auto;
	padding: 1em 1.2em;
	border: solid 2px #f5aa3b;
	border-radius: 0.8em;
	background-color: #fff;
}

img.surrounding-img {
	width: 40%;
	height: auto;
	margin: 0 1em 1em 0;
}

.surrounding-img-txt {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.surrounding-img-wrap {
	width: 32%;
}

.surrounding-info-wrap {
	width: 100%;
}

h3.surrounding-title {
	font-size: 24px;
	color: #151515;
	padding: 0 0 0.6em;
	position: relative;
}

h3.surrounding-title::after {
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	content: "";
	background-color: #f18d1e;
}

p.surrounding-txt {
	margin: 0 0 1em;
	color: #333;
	font-size: 18px;
	line-height: 1.6;
}

p.surrounding-txt-min {
	color: #333;
	margin: 0 0 1em;
	line-height: 1.6;
}

a.surrounding-link {
	display: inline-block;
	margin: 0 auto 1em;
	padding: 0.7em 3em 0.8em 1.2em;
	border: solid 2px #c6c6c6;
	border-radius: 0.4em;
	color: #333;
	font-size: 18px;
	width: 100%;
	line-height: 1;
	text-decoration: none;
	background-color: #fff;
	background-image: url(../img/btn-arrow-orange.svg);
	background-repeat: no-repeat;
	background-position: center right 0.5em;
	background-size: 1.2em;
}

a.surrounding-link.long {
	width: 100%;
	max-width: 464px;
	margin: 1.6em auto;
}

a:hover.surrounding-link {
	opacity: 0.6;
}

ul.ul-margin {
	margin: 1.2em 0 0;
}

/* DON!DON!ドライブ
---------------------------------------------------------- */
section.page-wrap.dondon {
	margin-bottom: 2em;
	padding: 4em 0;
}

.pv-bgimg {
	padding: 2em 0;
	background-image: url(../img/pv-bgimg.png);
	background-repeat: repeat-x;
	background-size: cover;
	background-position: center center;
}

.pv-title {
	position: relative;
	font-size: 20px;
	color: #fff;
}

.dondon-pv {
	width: 100%;
}

img.dondon-drive-logo {
	width: 76%;
}

.dot-border {
	width: 100%;
	max-width: 1000px;
	margin: 1.6em auto;
	padding: 1em;
	/* border: dashed 6px #f18d1e; */
	border: dotted 6px #f18d1e;
	border-radius: 1.2em;
	background-color: #fff;
}

p.dot-border-txt {
	font-size: 15px;
	margin: 1em auto;
	line-height: 1.7;
}

.chara-info-wrap {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	width: 100vw;
	margin: 0 calc(50% - 50vw);
}

.chara-info-wrap.reverse {
	flex-flow: row-reverse;
}

.chara-bg.pully-bg {
	position: relative;
	width: 45%;
	height: 200px;
	background-image: url(../img/pully_syoukai.jpg);
	background-repeat: no-repeat;
	background-position: center right -1em;
	background-size: cover;
}

.chara-bg.yoritomo-bg {
	position: relative;
	width: 45%;
	height: 220px;
	background-image: url(../img/yorimoto_syoukai.png);
	background-repeat: no-repeat;
	background-position: center left -1em;
	background-size: cover;
}

.chara-info-inner {
	width: 55%;
	padding: 1em;
}

.chara-info-wrap.reverse .chara-info-inner {
	padding: 1em;
}

h3.chara-name {
	font-size: 20px;
	margin: 0 0 0.4em;
}

p.chara-info {
	font-size: 14px;
	line-height: 1.5;
}

.chara-bg iframe {
	position: absolute !important;
	top: 50%;
	transform: translateY(-50%);
	left: 15%;
}

.chara-info-wrap.reverse .chara-bg iframe {
	right: 15%;
	left: unset;
}

a.tweet-link {
	display: inline-block;
	margin: 2em 0 0;
	padding: 0.5em 1em 0.5em 2.8em;
	border: solid 2px #c6c6c6;
	border-radius: 0.8em;
	color: #29a5dc;
	font-size: 14px;
	text-decoration: none;
	background-image: url(../img/tweet-ico.svg);
	background-repeat: no-repeat;
	background-position: center left 0.7em;
	background-size: 1.8em;
}

.dot-border.min-p {
	padding: 1em;
}

.dondon-min-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

h4.dondon-mintitle {
	font-size: 20px;
	margin: 0;
	text-align: center;
}

p.ryou-txt {
	padding-right: 0;
	color: #333;
	font-size: 16px;
	line-height: 1.8;
}

img.ryou-img {
	width: 50%;
	margin: 1.6em auto;
}

.what-dondon {
	width: 100%;
	margin: 0 auto;
}

.dot-border.faq {
	position: relative;
	padding: 3em;
	margin: 2.4em auto;
}

h3.dondon-balloon {
	background-image: url(../img/dondon-balloon.svg);
	width: 920px;
	height: 105px;
	background-repeat: no-repeat;
	font-size: 26px;
	padding: 0.86em 0 0.86em 1.2em;
	color: #fff;
	position: absolute;
	top: -1.6em;
	left: 50%;
	transform: translateX(-50%);
}

.dondon-faq-inner {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
}

.dondon-faq-img-wrap {
	width: 100%;
}

img.faq-img {
	margin: 0 auto;
	width: 120px;
}

p.faq-txt {
	font-size: 16px;
	line-height: 1.7;
	width: 100%;
}

.dot-border.nosp {
	border: none;
	padding: 0;
}

dt.toggle_title.donfaq {
	height: 62px;
	padding: 0.6em 3em 0.6em 2.6em;
	border: none;
	border-radius: 0.4em;
	color: #fff;
	font-size: 15px;
	background-color: #86c03f;
}

span.toggle_btn.dongreen {
	background-color: #fff;
	right: 0.5em;
	bottom: 1em;
}

.toggle_btn.dongreen:before,
.toggle_btn.dongreen:after {
	background-color: #39af4a;
}

.don-faq-wrap {
	counter-reset: number 0;
}

.don-faq-wrap .toggle_title.don-list::before {
	counter-increment: number 1;
	content: "Q" counter(number) " " ".";
	white-space: nowrap;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0.5em;
}

.sp-center {
	text-align: center;
}

.chara2 {
	position: relative;
	max-width: 1000px;
	margin-right: auto;
	margin-left: auto;
	padding: 0;
}

.chara2::before,
.chara2::after {
	position: absolute;
	content: "";
	display: block;
	width: 80px;
	height: 80px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center bottom;
	bottom: 0;
}

.chara2::before {
	left: -0.6em;
}

.chara2::after {
	right: -0.6em;
}

.pully::before {
	background-image: url(../img/small-pully.png);
}

.yoritomo::after {
	background-image: url(../img/small-yoritomo.png);
}

.robo::before {
	background-image: url(../img/small-robo.png);
}

.jiji::after {
	background-image: url(../img/small-jiji.png);
}

.tree::before {
	background-image: url(../img/small-tree.png);
}

.pyo::after {
	background-image: url(../img/small-pully-yoritomo.png);
}

.tawashi::before {
	background-image: url(../img/small-pully-tawashi.png);
}

.puro::after {
	background-image: url(../img/small-pully-puro.png);
}

.motedora::before {
	background-image: url(../img/small-pully-motedora.png);
}

.kiriko::after {
	background-image: url(../img/small-pully-kiriko.png);
}

/* 投稿ページ
---------------------------------------------------------- */
.post-wrap {
	padding: 2em 1em;
	min-height: 400px;
}

h2.post-title {
	font-size: 20px;
	padding: 1em 0;
	border-bottom: solid 2px #ff8d1e;
	color: #333;
}

h1.post-title {
	font-size: 20px;
	padding: 1em 0;
	border-bottom: solid 2px #ff8d1e;
	color: #333;
}


a.news-cat {
	display: inline-block;
	width: 130px;
	padding: 0.24em;
	border-radius: 0.2em;
	color: #fff;
	text-align: center;
	text-decoration: none;
	background-color: #ff8d1e;
}

.news-wrap-box {
	display: flex;
	margin: 4em 0;
	justify-content: flex-start;
	flex-wrap: wrap;
}

figure.post-thumb {
	margin: 1.6em 0;
              display: flex;
       justify-content: center;
}

img.thumbnail-photo {
	margin: 0 auto;
}

.post-wrap p {
	margin: 1.2em 0 1.6em;
	line-height: 1.7;
}

.sentence-width {
	width: 100%;
	margin: 0;
	padding: 0;
}

.pagination-box {
	display: flex;
	position: relative;
	justify-content: center;
	width: 100%;
	margin: 6em auto 3em;
	padding: 0 1.6em;
}

.pagination-box::before {
	display: block;
	position: absolute;
	top: -3em;
	left: 0;
	width: 100%;
	height: 3px;
	border-radius: 2px;
	content: "";
	background-color: #e0e0e0;
}

.prev-btn {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.next-btn {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}

.prev-btn > a,
.next-btn > a {
	display: block;
	width: 53px;
	height: 53px;
	border: solid 2px #c7c7c7;
	border-radius: 0.7em;
	background-position: center center;
	background-size: 1em;
	background-repeat: no-repeat;
}

.prev-btn > a {
	background-image: url(../img/pagenation-ico.svg);
}

.next-btn > a {
	background-image: url(../img/pagenation2-ico.svg);
}

.cat-wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	margin: 2em 0;
}

select.cat-dropdown {
	background-color: #fff;
	border-radius: 0;
	font-size: 15px;
}

.drop-wrap {
	position: relative;
	display: flex;
	padding: 0.3em 1em;
	width: 100%;
	align-items: center;
}

.drop-txt {
	width: 8em;
	text-align: right;
}

select.cat-dropdown.cat,
select.cat-dropdown.arc {
	border-radius: 0.4em;
	width: 240px;
	background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNy42OCAxNS4zMSI+PGcgaWQ9IuODrOOCpOODpOODvF8yIiBkYXRhLW5hbWU9IuODrOOCpOODpOODvCAyIj48ZyBpZD0i44Os44Kk44Ok44O8XzciIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDciPjxwYXRoIGQ9Ik0wLDBIMTcuNjhMOC44NCwxNS4zMVoiLz48L2c+PC9nPjwvc3ZnPg==);
}

.drop-txt {
	white-space: nowrap;
	padding: 0 1em;
}

.archive-bg .cat-wrap {
	margin-bottom: 0;
}

a.box-info-link {
	display: block;
	position: relative;
	margin: 0 auto;
	padding: 1em 2.6em;
	border-radius: 0.96em;
	color: #fff;
	text-decoration: none;
	letter-spacing: 0.1em;
	white-space: nowrap;
	background-color: #f18d1e;
}

a.box-info-link::after {
	position: absolute;
	top: 44%;
	right: 1em;
	content: ">";
	transform: translateY(-50%);
}

a:hover.box-info-link {
	opacity: 0.6;
}

.news-list-link-wrap {
	display: inline-block;
}

.archive-margin {
	margin-bottom: 5em;
}

/* 各種プラン
---------------------------------------------------------- */
.item-area {
	padding: 3em 0;
}

.plan-large-txt {
	margin: 0 0 1em;
	color: #333;
	font-size: 20px;
	text-align: center;
	line-height: 1.4;
}

.plan-subtxt {
	text-align: left;
	font-size: 16px;
}

.plan-img-wrap img {
	margin: 0 auto 1.8em;
	border-radius: 1.2em;
}

.plan-subtxt {
	line-height: 1.6;
	margin-bottom: 1.6em;
}

.item-wrap-box {
	margin: 3em 0;
	padding: 0 2.4em;
}

.item-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.item-photo {
	width: 60%;
	margin: 0 auto;
}

.item-photo img {
	border-radius: 0.8em;
}

.item-info-box {
	width: 100%;
	padding: 0.2em 0 1em;
}

.item-ltxt {
	font-size: 20px;
	padding: 0.2em 0 1em;
	line-height: 1.36;
}

.item-txt {
	font-size: 15px;
	line-height: 1.8;
}

a.item-link-set {
	display: block;
	width: 100%;
	margin: 1.4em 0;
	padding: 0.9em 1.6em;
	border: solid 2px #c6c6c6;
	border-radius: 0.4em;
	color: #333;
	text-decoration: none;
	background-image: url(../img/btn-arrow-orange.svg);
	background-repeat: no-repeat;
	background-position: center right 0.5em;
	background-size: 1.2em;
	background-color: #fff;
}

a:hover.item-link-set {
	opacity: 0.6;
}

.toggle_contents.plan {
	width: 100%;
}

.kyussai-box {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	width: 93%;
	margin: 2.4em auto;
	padding: 5em 1.2em 1.6em;
	border: solid 2px #f4a93b;
	border-radius: 0.8em;
}

.kyusai-img-wrap {
	margin: 0 auto;
	width: 56%;
}

.kyusai-txt-wrap {
	padding: 0.8em 0 0;
	width: 100%;
}

h3.kyusai-title {
	position: absolute;
	top: 1em;
	left: 50%;
	width: 90%;
	margin: 0 0 1em;
	padding: 0.24em 0.6em;
	color: #fff;
	font-size: 18px;
	text-align: center;
	background-color: #f08c1e;
	transform: translateX(-50%);
}

.kyusai-txt {
	font-size: 14px;
	line-height: 1.5;
}

.hs-point-wrap {
	padding: 0 0 2em;
	counter-reset: number 0;
}

h3.early-appli-title {
	font-size: 20px;
}

.point-box {
	position: relative;
	width: 93%;
	margin: 1em auto;
	padding: 1.8em 1.4em 1.2em;
	border: solid 3px #f4a93b;
	border-radius: 0.4em;
	font-size: 20px;
	background-color: #fff;
	line-height: 1.4;
}

.point-box:first-child::after {
	display: block;
	position: absolute;
	top: -72px;
	right: 0;
	width: 70px;
	height: 69px;
	content: "";
	background-image: url(../img/contact-kuma.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.pt-yellow-line {
	display: block;
	font-size: 1.25em;
	position: relative;
}

.pt-yellow-line::after {
	display: block;
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 5px;
	content: "";
	background-color: #f5e721;
}

.hs-point-wrap .point-box::before {
	display: inline-block;
	position: absolute;
	top: -0.4em;
	left: -0.4em;
	padding: 0.3em 1.2em;
	border-radius: 1em;
	color: #fff;
	font-size: 24px;
	line-height: 1;
	text-align: center;
	content: "Point " counter(number) " ";
	counter-increment: number 1;
	background-color: #ea5a24;
}

.two-column {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	position: relative;
	margin: 0 calc(50% - 50vw);
	overflow: hidden;
}

.two-column-table {
	width: 100%;
	border: solid 2px #c5c5c5;
	background-color: #fff;
	margin-bottom: 1em;
}

h3.two-column-title {
	font-size: 20px;
	color: #fff;
	background-color: #333;
	margin: 0;
	padding: 0.4em 0.4em 0.4em 5em;
	text-align: center;
	background-size: 2.8em;
	background-repeat: no-repeat;
	background-position: bottom left 1em;
	border-bottom: solid 2px #c5c5c5;
}

h3.two-column-title.mt {
	background-image: url(../img/mt-icon-white.svg);
}

h3.two-column-title.lightgreen {
	background-color: #39ae4a;
}

h3.two-column-title.at {
	background-image: url(../img/at-icon-white.svg);
}

h3.two-column-title.lightblu {
	background-color: #29a4db;
}

span.two-column-subtitle {
	display: block;
	font-size: 0.6em;
	text-align: center;
}

.two-column-con {
	padding: 0 0.8em;
}

.two-column-con table.camp-table {
	font-size: 14px;
	white-space: nowrap;
}

td.yoyaku {
	width: 32%;
}

.txtbus-normal-large {
	margin-bottom: 1em;
	font-size: 1.4em;
	line-height: 1.5;
}

.course-content {
	counter-reset: number 0;
}

.course-titke {
	position: relative;
	padding: 0.6em 1em 0.6em 3em;
	border-bottom: solid 4px #ff8c1e;
	color: #333;
	font-size: 30px;
}

.toggle_contents.course .toggle_title::before {
	counter-increment: number 1;
	content: counter(number) " " ".";
	display: inline-block;
	margin-right: 0.5em;
}

.course-intro-box {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 0;
}

.course-photo {
	width: 200px;
	margin: 1em auto;
}

.course-photo img {
	border-radius: 1em;
}

.course-intro-info {
	width: 100%;
}

.course-intro-desc {
	font-size: 15px;
	line-height: 1.6;
}

.course-link-set-wrap {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 1.6em;
}

a.item-link-set.half {
	margin: 0 auto 0.8em;
	width: 90%;
}

.flow-list {
	counter-reset: number 0;
	margin: 1em auto;
	font-size: 16px;
}

li.flow-list-li {
	position: relative;
	padding: 0 0 0 3em;
	margin: 0 0 2em;
	line-height: 1.6;
	min-height: 3em;
}

.flow-list .flow-list-li::before {
	display: inline-block;
	position: absolute;
	top: -0.2em;
	left: 0;
	padding: 0.3em 0.5em;
	border-radius: 50%;
	color: #fff;
	font-size: 24px;
	line-height: 1;
	content: counter(number) " ";
	counter-increment: number 1;
	background-color: #ff8c1e;
}

li.flow-list-li::after {
	position: absolute;
	bottom: -0.8em;
	left: 0.75em;
	width: 0;
	height: 0;
	border-width: 11px 8px 0 8px;
	border-style: solid;
	border-color: #ffc392 transparent transparent transparent;
	content: "";
}

li.flow-list-li:last-child:after {
	content: none;
}

span.txtmin {
	display: block;
	font-size: 0.8em;
	margin-top: 0.5em;
}

h4.course-price-title {
	position: relative;
	margin: 1em 0 0.8em;
	padding: 0 0 0.5em;
	font-size: 22px;
}

h4.course-price-title::after {
	display: block;
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 8em;
	height: 2px;
	content: "";
	background-color: #ff8c1e;
	transform: translateX(-50%);
}

.toggle_title.cp {
	padding: 0 3em 0.4em 2.4em;
}

.toggle_title.cp::before {
	display: block;
	position: absolute;
	top: 1em;
	left: 1em;
	width: 0.88em;
	height: 0.88em;
	border-radius: 50%;
	content: "";
	background-color: #333;
}

.toggle_contents:nth-child(1) .toggle_title.cp::before,
.toggle_contents:nth-child(2) .toggle_title.cp::before {
	background-color: #006837;
}

.toggle_contents:nth-child(3) .toggle_title.cp::before,
.toggle_contents:nth-child(4) .toggle_title.cp::before {
	background-color: #00a296;
}

.toggle_contents:nth-child(5) .toggle_title.cp::before,
.toggle_contents:nth-child(6) .toggle_title.cp::before {
	background-color: #29a4db;
}

.toggle_contents:nth-child(7) .toggle_title.cp::before,
.toggle_contents:nth-child(8) .toggle_title.cp::before {
	background-color: #0071b5;
}

.camp-table.cp tbody tr td:first-child {
	width: 40%;
}

.widthMax {
	/* 画面幅いっぱいにしたい要素にあてるクラス */
	margin: 0 calc(50% - 50vw);
	max-width: none;
}

/* CheckBox
---------------------------------------------------------- */

div.checkbox-line {
	display: block;
	margin: 0 0 1em;
}

div.checkbox-sp{
    margin: 0 0 2em;
}

.checkbox-txt{
    font-size: 18px;
    margin: 0 0 1em;
}

.check-txt {
	line-height: 1.4;
}

.checkbox-input2 {
	opacity: 0;
	position: absolute;
}
.checkbox-parts2 {
	display: inline-block;
	position: relative;
	margin-right: 1.6em;
	padding-left: 2em;
	font-size: 15px;
}
.checkbox-parts2::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 24px;
	height: 24px;
	border: 1px solid #f5aa3b;
	background: #fff;
}

.checkbox-input2:checked + .checkbox-parts2::after {
	content: "";
	display: block;
	position: absolute;
	top: 9px;
	left: 4px;
	width: 7px;
	height: 14px;
	transform: rotate(40deg) translateY(-50%);
	border-bottom: 3px solid #f5aa3b;
	border-right: 3px solid #f5aa3b;
}

.checkbox-parts2 span.small_txt{
	font-size: 13px;
	font-weight: 400;
}

span.double {
  text-decoration-line: underline;
  text-decoration-style: double;
}

span.wavy {
  text-decoration-line: underline;
  text-decoration-style: wavy;
  text-decoration-color: #e71c24; /* 任意の色 */
}


/* ページ遷移
---------------------------------------------------------- */
.fade_group div,
.fade_group2 div {
	display: none;
	content: "";
	position: fixed;
	top: 0;
	left: -100vw;
	width: 100vw;
	height: 100%;
	pointer-events: none;
}
.fade_group div {
	z-index: 9999;
	transition: 0.6s;
}
.fade_group2 div {
	z-index: 9998;
	transition: 0.8s;
}
.fade_group div:nth-of-type(1) {
	background: rgba(255, 143, 31, 0.3);
}
.fade_group div:nth-of-type(2) {
	background: rgba(255, 143, 31, 0.5);
	transition-delay: 0.1s;
}
.fade_group div:nth-of-type(3) {
	background: rgba(255, 143, 31, 0.7);
	transition-delay: 0.2s;
}
.fade_group div:nth-of-type(4) {
	background: rgb(255, 249, 235);
	transition-delay: 0.3s;
}
.fade_group2 div:nth-of-type(1) {
	background: rgba(255, 143, 31, 0.8);
	transition-delay: 0.2s;
}
.fade_group2 div:nth-of-type(2) {
	background: rgba(255, 143, 31, 0.8);
	transition-delay: 0.3s;
}
body.fo .fade_group div {
	left: 0;
}
body.fo .fade_group2 div {
	left: 100vw;
}

/* Contact Form
---------------------------------------------------------- */
.form-wrap {
	margin-right: auto;
	margin-left: auto;
	padding: 1.6em 1em;
	background-color: #fff;
	max-width: 1000px;
}

form {
	margin: 1.6em auto;
	max-width: 800px;
	width: 100%;
}

.init label {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

form.init p {
	margin: 0 0 1em;
	font-size: 16px;
}

.form-item-name {
	width: 100%;
	display: block;
	padding: 0.64em 1em;
	border-radius: 0.2em;
	background-color: #fff5ca;
}

.form-sample {
	display: inline-block;
	color: #575757;
	font-size: 15px;
	width: 92%;
	margin: 0 auto;
	line-height: 1.5;
}

.form-sample.email {
	display: block;
	width: 100%;
}

.ques-castle {
	width: 92%;
	margin: 0.5em auto;
	display: block;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="telephone"],
input[type="number"],
input[type="search"],
input[type="password"],
select,
textarea {
	border-radius: 0;
	font-size: 16px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="telephone"],
input[type="number"],
input[type="password"],
select,
textarea {
	padding: 0.48em 1em;
	border: solid 1px #d0dbdf;
	background-color: #f7f7f7;
	line-height: 1.5;
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
	width: 100%;
	margin: 0.5em auto;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: #b8bcbe;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	color: #b8bcbe;
}
input::placeholder,
textarea::placeholder {
	color: #b8bcbe;
}

input:focus::-webkit-input-placeholder {
	color: transparent;
}

input:focus:-moz-placeholder {
	color: transparent;
}

input:focus::-moz-placeholder {
	color: transparent;
}

textarea:focus::-webkit-input-placeholder {
	color: transparent;
}

textarea:focus:-moz-placeholder {
	color: transparent;
}

textarea:focus::-moz-placeholder {
	color: transparent;
}

textarea {
	resize: vertical;
	height: 6em;
}

input[type="search"] {
	padding: 6px 40px 8px 8px;
	width: 100%;
	border: none;
	background: #343434;
	color: #fff;
	font-size: 0.85em;
}

button.button-search.animation {
	position: absolute;
	top: 0;
	right: 0;
	margin: 0 0 0 -7px;
	width: 40px;
	height: 100%;
	border: none;
	background: transparent;
	color: #b8b8b8;
	line-height: 100%;
}

input[type="submit"],
input[type="button"] {
	-webkit-box-sizing: content-box;
	box-sizing: border-box;
	border: 0;
	cursor: pointer;
	appearance: none;
}

.submit-wrap {
	text-align: center;
}

input[type="submit"].submit,
input[type="button"].submit,
a.return_top {
	margin: 2em auto;
	max-width: 240px;
	width: 100%;
	border-radius: 0.6em;
	background: #ff8d1e;
	background-image: url(../img/arrow-icon-white.svg);
	background-position: right 0.8em center;
	background-size: 1.2em;
	background-repeat: no-repeat;
	color: #fdfdfd;
	text-align: center;
	font-size: 16px;
	padding: 1.4em 0;
	letter-spacing: 0.16em;
}

a.return_top {
	text-decoration: none;
}

input[type="submit"].submit:hover,
input[type="button"].submit:hover,
a.return_top:hover {
	opacity: 0.6;
}

input[type="button"].submit.gray {
	background-color: #fff;
	background-image: url(../img/arrow-icon-glay.svg);
	color: #4d4d4d;
	border: solid 1px #4d4d4d;
	margin-top: 0.4em;
}

.submit_area {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	flex-direction: column-reverse;
}

.submit_area input[type="submit"].submit,
.submit_area input[type="button"].submit {
	margin: 1em auto;
}

input:focus,
select:focus,
textarea:focus {
	outline: 0;
	border: solid 1px #76b0ff;
	background-color: #f5f9ff;
	box-shadow: 0 0 0.4em rgba(118, 171, 255, 0.32);
}

.radio-input {
	display: none;
}
.radio-input + label {
	padding-left: 2.6em;
	position: relative;
	margin: 0.6em 3em 0.8em 0;
	display: inline-block;
}
.radio-input + label::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 24px;
	height: 24px;
	border: 1px solid #999;
	border-radius: 50%;
	transform: translateY(-50%);
}
.radio-input:checked + label {
	color: #eb5a24;
}
.radio-input:checked + label::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 6px;
	width: 12px;
	height: 12px;
	background: #eb5a24;
	border-radius: 50%;
	transform: translateY(-50%);
}

select {
	position: relative;
	width: 100%;
	padding: 0.75em 3em 0.75em 0.6em;
	border-radius: 0.5em;
	background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNy42OCAxNS4zMSI+PGcgaWQ9IuODrOOCpOODpOODvF8yIiBkYXRhLW5hbWU9IuODrOOCpOODpOODvCAyIj48ZyBpZD0i44Os44Kk44Ok44O8XzciIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDciPjxwYXRoIGQ9Ik0wLDBIMTcuNjhMOC44NCwxNS4zMVoiLz48L2c+PC9nPjwvc3ZnPg==);
	background-repeat: no-repeat;
	background-position: right 1em center;
	background-size: 0.9em;
}

select::-ms-expand {
	display: none;
}

select::after {
	position: absolute;
	top: 7px;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 12px;
	height: 12px;
	border-top: 1px solid #353535;
	border-right: 1px solid #353535;
	content: "";
	transform: rotate(-45deg);
}

label.check {
	display: inline-block;
	margin: 0.6em 0;
}

.checkbox-input {
	/*    display: none;*/
	opacity: 0;
	position: absolute;
}
.checkbox-parts {
	padding-left: 2em;
	position: relative;
	margin-right: 1.6em;
}
.checkbox-parts::before {
	content: "";
	display: block;
	position: absolute;
	top: 0.68em;
	left: 0;
	width: 24px;
	height: 24px;
	border: 1px solid #999;
	transform: translateY(-50%);
	background: #fff;
}
.checkbox-input:checked + .checkbox-parts {
	color: #eb5a24;
}
.checkbox-input:checked + .checkbox-parts::after {
	content: "";
	display: block;
	position: absolute;
	top: 0.5em;
	left: 5px;
	width: 7px;
	height: 14px;
	transform: rotate(40deg) translateY(-50%);
	border-bottom: 3px solid #eb5a24;
	border-right: 3px solid #eb5a24;
}

.privacy-link-wrap {
	margin-top: 2em;
}

a.privacy-link {
	color: #db4d4d;
}

a:hover.privacy-link {
	color: #f88282;
}

.required-item,
.option-item {
	display: inline-block;
	float: right;
	margin: 0 8px 0 auto;
	padding: 0.4em;
	border-radius: 2px;
	color: #fff;
	text-shadow: 1px 1px 1px rgb(0 0 0 / 16%);
	font-size: 0.72em;
	line-height: 1;
}

.required-item2,
.option-item2 {
	display: inline-block;
	/*float: right;*/
	margin: 0 8px 0 15px;
	padding: 0.4em;
	border-radius: 2px;
	color: #fff;
	text-shadow: 1px 1px 1px rgb(0 0 0 / 16%);
	font-size: 0.875em;
	line-height: 1;
}


.required-item {
	background: #ec2028;
}

.option-item {
	background: #888888;
}
.required-item2 {
	background: #ec2028;
}

.option-item2 {
	background: #888888;
}

.submit_content dl dd p {
	margin: 0;
}

h2.center-line {
	position: relative;
	padding: 0.8em 0;
}

h2.center-line::after {
	position: absolute;
	bottom: 0;
	left: 50%;
	display: block;
	width: 80%;
	height: 1px;
	background-color: #9d9d9d;
	content: "";
	transform: translateX(-50%);
}

.from-step {
	display: inline-block;
	width: 105px;
	height: auto;
	padding: 0.68em 0.8em;
	border: 1px solid #ff8d1e;
	color: #ff8d1e;
	text-align: left;
	background-color: #fff;
	font-size: 13px;
}

.from-step.current {
	background-color: #ff8d1e;
	color: #fff;
}

p.con-text {
	font-size: 15px;
	margin-bottom: 1.6em;
	line-height: 1.5;
}

p.con-text.left {
	text-align: left;
}

span.from-privacy {
	display: block;
	padding: 0.98em;
	background-color: #e6e6e6;
	width: 92%;
	margin: 0.8em auto;
}

.carlicense-checkbox .carlicense-check {
	margin: 0 0 1em;
}

.birthday-top {
	display: flex;
	flex-wrap: wrap;
	width: 92%;
	margin: 0 auto 1.6em;
}

#koumoku2 .birthday-top {
	margin-top: 0.5em;
}

.birthday-top > div {
	margin-bottom: 1.2em;
	width: 100%;
}

.segmentation {
	width: calc(100% - 2em);
	margin-right: 0.5em;
	border-radius: 0;
}

.form-txt {
	display: block;
	width: 92%;
	margin: 0 auto 1em;
	color: #353535;
}

.form-txt.red {
	color: #e71c24;
}

span.carlicense-checkbox {
	margin: 0 0 0 2em;
	display: block;
}

img.center-ymg {
	margin: 0 auto;
	width: 80%;
}

.red-txt-bg-yellow {
	width: 100%;
	margin: 1em auto 1.6em;
	padding: 0.64em;
	border-radius: 0.4em;
	color: #e71c24;
	font-size: 16px;
	text-align: center;
	background-color: #fffa50;
}

/* form
---------------------------------------------------------- */
table.formTable {
	margin: 2em 0;
	width: 100%;
	letter-spacing: 0.05em;
	font-size: 15px;
}

table.formTable th {
	text-align: left;
	width: 30%;
}

table.formTable th,
table.formTable td {
	padding: 1em 0.5em;
	border-bottom: 1px solid #f9f9f9;
}

div#formWrap p {
	margin: 1.6em 0;
}

.thanks-wrap {
	padding: 0;
	font-size: 18px;
	line-height: 2;
	color: #333;
}

.step-margin {
	margin-bottom: 3em;
}

a.return-home {
	display: block;
	width: 90%;
	padding: 1em;
	border-radius: 0.8em;
	color: #fff;
	text-decoration: none;
	background-color: #fc8c1e;
	background-image: url(../img/arrow-icon-white.svg);
	background-position: right 1.6em center;
	background-size: 1.2em;
	background-repeat: no-repeat;
}

a:hover.return-home {
	opacity: 0.6;
}

/* フォームプライバシーポリシー
---------------------------------------------------------- */
.privacy-policy {
	width: 100%;
	max-width: 1000px;
	display: inline-block;
	text-align: left;
	list-style-type: none;
	line-height: 150%;
	color: #151515;
	font-size: 16px;
}

.privacy-policy-box {
	margin: 1.6em auto;
	width: 100%;
	width: auto;
	background-color: #fff;
	text-align: center;
}

h2.text-privacy {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 0 1em;
	border-bottom: solid 2px;
	color: #333;
	font-size: 20px;
	text-align: center;
}

.privacy-policy-li {
	margin: 1.5em 0;
}

.privacy-policy-li > p {
	font-size: 15px;
	line-height: 1.8;
	font-weight: 400;
}

.access-txt-box {
	width: 100%;
	max-width: 1000px;
	display: inline-block;
	text-align: center;
	line-height: 150%;
	font-size: 8px;
	margin: 1.5em 0em 8.5em 0em;
}

.access-txt {
	font-size: 17px;
	border-bottom: solid 1px #949494;
	color: #151515;
	margin: 1.2em 0;
	padding: 0.6em;
}

p.p-access-txt {
	text-align: left;
	display: inline-block;
	color: #151515;
	font-size: 15px !important;
	width: 100%;
	margin: 0 auto;
	line-height: 1.8;
}

/* アーカイブページ
---------------------------------------------------------- */
.archives-wrap-box {
	padding: 2em 1.6em;
}

.faq-link-inner {
	position: relative;
	padding: 1em 0.5em 0 2.6em;
	color: #333;
}

.faq-link-inner::after {
	position: absolute;
	top: 1.4em;
	left: 1em;
	content: "A.";
}

.faq-link-inner.dondon {
	padding: 1em 0.5em 0;
}

.faq-link-inner.dondon::after {
	content: none;
}

.archives-wrap-box.faq {
	counter-reset: number 0;
}

dt.toggle_title.faq {
	padding: 0 3em 0.4em 2.6em;
	border-bottom: solid 2px #ff8d1e;
	height: auto;
}

dt.toggle_title.faq::before {
	position: absolute;
	top: 0.1em;
	left: 0.4em;
	content: "Q" counter(number) ".";
	counter-increment: number 1;
}

.voice-wrap {
	width: 100%;
	max-width: 1000px;
	padding: 0 0 2em;
	margin: 0 auto;
}

img.voice-img {
	text-align: center;
	margin: 0 auto;
}

.voice-date {
	margin-left: 2em;
}

h2.voice-title {
	padding: 0.8em 0.4em 0.8em 1.5em;
	border-bottom: solid 3px #ff8d1e;
	color: #eb5a24;
	position: relative;
	font-size: 20px;
}

h2.voice-title::before {
	position: absolute;
	top: 0.8em;
	left: 0.4em;
	display: block;
	width: 0.5em;
	/* height: calc(100% - 1.6em); */
	height: 2.8em;
	background-color: #f5aa3b;
	content: "";
	border-radius: 0.5em;
}

figure.voice-img-wrap {
	margin-bottom: 3em;
}

p.local-navigation {
	position: relative;
	display: flex;
	justify-content: center;
	margin: 1em 0 2em;
	padding: 0;
}

p.local-navigation::before {
	display: block;
	position: absolute;
	top: -0.9em;
	left: 0;
	width: 100%;
	height: 2px;
	content: "";
	background-color: #bababa;
}

.page-numbers {
	display: inline-block;
	margin: 0.1em;
	padding: 0.8em 1em;
	border-radius: 1.5em;
	color: #fff;
	font-size: 16px;
	line-height: 1;
	text-decoration: none;
	background-color: #dadada;
}

.page-numbers.current {
	background-color: #f18d1e;
}

.prev.page-numbers {
	position: absolute;
	height: 100%;
	left: 0;
}

.next.page-numbers {
	position: absolute;
	height: 100%;
	right: 0;
}

a.prev.page-numbers,
a.next.page-numbers {
	padding: 0;
	border: solid 2px #c7c7c7;
	border-radius: 0.6em;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	background: #fff;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 1.2em;
}

a.prev.page-numbers {
	background-image: url(../img/pagenation-ico.svg);
}

a.next.page-numbers {
	background-image: url(../img/pagenation2-ico.svg);
}

.staff-info-wrap {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	margin: 3em 0;
}

.staff-info-box {
	width: calc(96% / 2);
	margin: 0 1% 1.6em;
}

.staff-img-wrap {
	border: solid 3px #ff8d1e;
	overflow: hidden;
	border-radius: 1em;
}

h2.staff-name {
	margin: 0.4em;
	color: #333;
	font-size: 18px;
	text-align: center;
}

.staff-name-en {
	width: 100%;
	margin: 0;
	padding: 0 0.2em 0.4em;
	border-bottom: solid 2px #e0e0e0;
	color: #f18d1e;
	text-align: center;
}

@media only screen and (max-width: 375px) {
	.staff-name-en {
		font-size: 13px;
	}
}

p.staff-comment {
	padding: 0.6em 0 0;
	/* display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical; */
}

/* タブレイアウト
---------------------------------------------------------- */
.embed-map iframe {
	border: none;
}

.area {
	width: 100%;
	margin: 3em auto;
	flex-wrap: wrap;
	display: flex;
	position: relative;
}

.tab_class {
	display: block;
	order: -1;
	float: left;
	width: calc(100% / 2);
	height: auto;
	/*min-height: 60px;*/
	padding: 1em 0.4em;
	font-size: 12px;
	line-height: 1.5;
	text-align: center;
	background-color: #fff;
	cursor: pointer;
}

input[name="tab_name"] {
	display: none;
}

input:checked + .tab_class {
	background-color: #4c6b77;
	color: aliceblue;
}

.content_class {
	/*display: none;*/
	width: 100%;
	position: absolute;
	left: -999999px;
	top: -999999px;
}

input:checked + .tab_class + .content_class {
	display: block;
	position:relative;
	left: 0px;
	top: 0px;
}

.content_class .embed-map {
	margin: 0;
}

/* PC 非表示
---------------------------------------------------------- */

.pc,
.ankerlink-wrap {
	display: none;
}

.pc-only-nav {
	display: none;
}


/* スマホ固定メニュー
---------------------------------------------------------- */

.bottom_menu_wrap{
	width: 100%;
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 100;
}

.bottom_menu_wrap ul{
	display: flex;
	justify-content: space-between;
	list-style: none;
	margin: 0;
	padding: 0;
}

.bottom_menu_wrap ul li{
	width: 50%;
}

.bottom_menu_wrap ul li a{
	display: block;
	width: 100%;
	height: 60px;
	background-color: #f23420;
	border: 1px solid #000;
	box-sizing: border-box;
	color: #fff;
	text-decoration: none;
	font-size: 1.0em;
	/*padding: 15px 0 0 40px;*/
    padding: 18px 0 0 40px;
	background-image: url("../img/common_check.png");
	background-repeat: no-repeat;
	background-size: 25px auto;
	background-position: left 10px top 20px;
}

.bottom_menu_wrap ul li a span{
	font-size: 0.6em;
}

.bottom_menu_wrap ul li:last-child a{
	font-size: 1.0em;
	border-left: none;
	background-color: #ffc000;
	padding: 18px 0 0 70px;
	background-image: url("../img/common_tel.png");
	background-repeat: no-repeat;
	background-size: 30px auto;
	background-position: left 20px top 15px;
}


.bottom_menu_wrap02{
	width: 100%;
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 100;
	padding: 15px 20px;
	background: #ff8d1e;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.bottom_menu_wrap02 .m_head{
	background: #fff;
	border-radius: 5px;
	padding: 10px 20px;
}

.bottom_menu_wrap02 .m_head .lv1{
	text-align: center;
	font-size: 12px;
}

.bottom_menu_wrap02 .m_head ul{
	list-style: none;
	display: flex;
	justify-content: space-between;
	margin: 10px 0 0;
	padding: 0;
}

.bottom_menu_wrap02 .m_head ul li{
	width: 31%;
}

.bottom_menu_wrap02 .m_head ul li a{
	display: block;
	width: 100%;
	height: 50px;
	background: url("../img/f_ico01.png")no-repeat #008c45 top 6px center;
	background-size: 15px auto;
	border-radius: 8px;
	box-sizing: border-box;
	padding-top: 32px;
	font-size: 13px;
	color: #fff;
	text-align: center;
	text-decoration: none;
}

.bottom_menu_wrap02 .m_head ul li:nth-child(2) a{
	background: url("../img/f_ico02.png")no-repeat #ff8d1e top 6px center;
	background-size: 27px auto;
}

.bottom_menu_wrap02 .m_head ul li:nth-child(3) a{
	background: url("../img/f_ico03.png")no-repeat #eb5a24 top 6px center;
	background-size: 29px auto;
}


/*
.bottom_menu_wrap02 .m_head .lv2{
	width: calc(100% - 100px);
	margin: 10px auto 0;
}

.bottom_menu_wrap02 ul{
	display: flex;
	justify-content: space-between;
	list-style: none;
	margin: 10px 0 0;
	padding: 8px 10px;
	background: #fff;
	border-radius: 5px;
}

.bottom_menu_wrap02 ul li{
	width: 48.5%;
}

.bottom_menu_wrap02 ul li a{
	display: block;
	width: 100%;
	line-height: 28px;
	background: #eb5a24;
	font-size: 11px;
	text-align: center;
	color: #fff;
	text-decoration: none;
}
*/
/* 
---------------------------------------------------------- */


.tba02{
	padding-top: 0;
}

a.tb_b {
	display: block;
	width: 100%;
	line-height: 75px;
	border: 2px solid #333;
	box-sizing: border-box;
	font-size: 16px;
	color: #333;
	text-decoration: none;
	padding-left: 70px;
	background: url("../img/bn_logo01.png")no-repeat left 10px center;
	background-size: 50px auto;
}

a.tb_b:first-child {
	padding: 10px 0 0 70px;
	height: 75px;
	line-height: 1.5;
}


a.tb_b:nth-child(2) {
	background: url("../img/bn_logo02.png")no-repeat left 10px center;
	background-size: 50px auto;
}

a.tb_b:nth-child(3) {
	padding: 10px 0 0 85px;
	height: 75px;
	line-height: 1.5;
	background: url("../img/bn_logo03.png")no-repeat left 15px center;
	background-size: 60px auto;
}


/************************/


.wp-video{
	width: 100% !important;
	height: auto;
}

.wp-video video{
	width: 100% !important;
	height: auto;
}



.osusume_container{
	overflow: hidden;
}

.osusume_container.osusume_lp{
	width: calc(100% - 20px);
	margin: 20px auto 0;
}

.osusume_container .top0{
	margin-top: 20px;
}

.osusume_container .warning-note-orange dl dt{
	font-size: 16px;
	letter-spacing: 0.1em;
}

.osusume_container .warning-note-orange dl dt span.lv2{
	display: block;
	font-weight: 600;
	color: #eb5a24;
	font-size: 14px;
	padding-left: 20px;
}


.osusume_container .warning-note-orange dl dt span{
	color: #fc8c1e;
	font-size: 15px;
	padding-right: 5px;
}

.osusume_container .warning-note-orange dl dt .sub_txt{
	font-size: 15px;
}

.osusume_container .warning-note-orange dl dt .sub_txt + .sub_txt{
	margin-top: 10px;
}

.osusume_container .warning-note-orange dl dd{
	font-size: 14px;
	line-height: 1.75;
	margin-top: 12px;
}

.osusume_container .tyuuiten{
	margin-top: 14px;
	font-size: 14px;
	line-height: 1.75;
}


/**/


.bg_onetime_popup {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.65);
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}

.bg_onetime_popup.js_active {
    opacity: 1;
    visibility: visible;
}

.onetime_popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
	width: calc(100% - 30px);
    background-color: #fff;
    cursor: pointer;
}

.onetime_popup_title {
    position: relative;
}

.onetime_popup_title img{
	width: 100%;
	height: auto;
}

.onetime_popup_title::after {
    position: absolute;
	top: -10px;
	right: -10px;
    width: 29px;
    height: 29px;
	background: url("../img/pop_colose.png")no-repeat;
	background-size: contain;
    content: "";
}

.lp_link_btn{
	width: 90%;
	margin: 0 auto 3em;
}

.lp_link_btn.mtop{
	margin: 3em auto 0;
}

.lp_link_btn a{
	display: block;
	width: 100%;
	height: 70px;
	border: 1px solid #c6c6c6;
	border-radius: 0.6em;
	background-image: url(../img/btn-arrow-orange.svg);
	background-repeat: no-repeat;
	background-size: 1.5em;
    background-position: center right 0.6em;
	text-decoration: none;
	position: relative;
}

.lp_link_btn a p{
	font-size: 16px;
	line-height: 1.5;
	color: #000;
	position: absolute;
	top: 50%;
	left: 1.5em;
	transform: translateY(-50%);
}


.lp_link_btn a p span{
	display: block;
	font-size: 13px;
	padding-bottom: 5px;
}

.ct_txt{
	width: 100%;
	margin: 0 auto;
	font-size: 16px;
	line-height: 1.75;
	letter-spacing: 0.1em;
	color: #e71c24;
	text-align: justify;
}
.ct_txt.mb2{
	margin-bottom: 2em;
}


.tel-link{
	text-decoration: none;
	color: #fff;
}


/* 
---------------------------------------------------------- */


/*追加ページ*/


.reg400{
	font-weight: 400;
}

.bold600{
	font-weight: 600;
}

.et-block01{
	padding: 30px 0 45px;
	position: relative;
}

.et-block01 .block_inner{
	width: calc(100% - 20px);
	margin: 0 auto;
}

.et-block01 .block_inner .large_txt{
	font-size: 16px;
	line-height: 1.40;
	letter-spacing: 0.05em;
	color: #333333;
	text-align: center;
}

.et-block01 .block_inner .large_txt span{
	color: #ea5a24;
	font-weight: 400;
}

.et-block01 .block_inner .img{
	width: 93.8%;
	margin: 20px auto 0;
	position: relative;
}

.et-block01 .block_inner .img::before{
	content: '';
	display: inline-block;
	background: url("../img/et/parts_right.png")no-repeat;
	background-size: contain;
	width: 187px;
	height: 153px;
	position: absolute;
	top: -100px;
	right: -100px;
	z-index: -1;
}

.et-block01 .block_inner .img::after{
	content: '';
	display: inline-block;
	background: url("../img/et/parts_left.png")no-repeat;
	background-size: contain;
	width: 187px;
	height: 153px;
	position: absolute;
	bottom: -25px;
	left: -100px;
	z-index: -1;
}

.et-block01 .block_inner .txt_lv1{
	margin-top: 30px;
	font-size: 14px;
	line-height: 1.48;
	letter-spacing: 0.05em;
	color: #333333;
}

.et-block01 .block_inner .txt_lv2{
	font-size: 13px;
	letter-spacing: 0.05em;
	color: #333333;
	margin-top: 10px;
}

.et-block01 .block_inner .et_table.et01{
	margin-top: 30px;
}

.et-block01 .block_inner .et_table .table_txt{
	font-size: 13px;
	line-height: 1.66;
	letter-spacing: 0.05em;
	color: #333333;
	
}

.et-block01 .block_inner .et_table .table_txt + table{
	margin-top: 5px;
}

.et_table table{
	width: 100%;
	border-top: 2px solid #c5c5c5;
	border-left: 2px solid #c5c5c5;
}

.et_table table tr td{
	border-bottom: 2px solid #c5c5c5;
	border-right: 2px solid #c5c5c5;
	height: 40px;
	text-align: center;
}

.et_table.et01 table tr td{
	width: calc(100% / 3);
	box-sizing: border-box;
}

.et_table table tr td.col01{
	background: #ff8c1e;
}

.et_table table tr td div{
	font-size: 14px;
	letter-spacing: 0.05em;
	color: #333333;
	padding: 0 20px;
}

.et_table table tr td.col01 div{
	font-size: 15px;
	color: #fff;
}

.et-block01 .block_inner .et_table table + .table_txt{
	margin-top: 15px;
}

/****/

.et-block02{
	background: #fffef3;
	padding: 30px 0 50px;
}

.et-block02 .block_inner{
	width: calc(100% - 20px);
	margin: 0 auto;
}

.et-block02 .block_inner .txt01{
	font-size: 14px;
	line-height: 1.66;
	letter-spacing: 0.05em;
	color: #333333;
}

.et-block02 .block_inner .num_area{
	margin-top: 25px;
	display: flex;
	justify-content: flex-start;
}

.et-block02 .block_inner .num_area + .num_area{
	margin-top: 20px;
}

.et-block02 .block_inner .num_area .num_txt{
	width: 32px;
	margin-right: 10px;
}

.et-block02 .block_inner .num_area .num_txt p{
	display: block;
	width: 100%;
	line-height: 32px;
	background: url("../img/et/num_bg.png")no-repeat;
	background-size: cover;
	font-size: 16px;
	color: #f18d1e;
}

.et-block02 .block_inner .num_area dl{
	width: calc(100% - 45px);
	margin-top: 10px;
}

.et-block02 .block_inner .num_area dl dt{
	font-size: 17px;
	letter-spacing: 0.05em;
	color: #333333;
}

.et-block02 .block_inner .num_area dl dd{
	font-size: 14px;
	line-height: 1.66;
	letter-spacing: 0.05em;
	color: #333333;
	margin-top: 10px;
}

/****/

.et-block03{
	padding: 35px 0 26px;
}

.et-block03 .block_inner{
	width: calc(100% - 20px);
	margin: 0 auto;
}

.et_table.et02 table tr td{
	width: calc(100% / 10);
	box-sizing: border-box;
}

.et_table.et02 table tr td div{
	padding: 0 10px;
}


.et_table.et02 table tr td.col01 div{
	text-align: center;
}

.et-block03 .block_inner .et_table .table_txt{
	margin-top: 15px;
	font-size: 13px;
	line-height: 1.66;
	letter-spacing: 0.05em;
	color: #333333;
}

/**/

.et-block04{
	padding: 26px 0 30px;
}

.et-block04 .block_inner{
	width: calc(100% - 20px);
	margin: 0 auto;
}

.et-block04 .block_inner .flow_area{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #f5aa3b;
	border-radius: 8px;
	background: #fffbee;
	box-sizing: border-box;
	position: relative;
	padding: 10px 55px;
}

.et-block04 .block_inner .flow_area + .flow_area::before{
	content: '';
	display: inline-block;
	background: url("../img/et/flow_ico.png")no-repeat;
	background-size: contain;
	width: 9px;
	height: 6px;
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
}

.et-block04 .block_inner .flow_area + .flow_area{
	margin-top: 14px;
}

.et-block04 .block_inner .flow_area .num_txt{
	width: 24px;
	position: absolute;
	top: 50%;
	left: 8px;
	transform: translateY(-50%);
}

.et-block04 .block_inner .flow_area .num_txt p{
	display: block;
	width: 100%;
	line-height: 24px;
	background: #ff8c1e;
	border-radius: 50%;
	font-size: 13px;
	color: #fff;
	text-align: center;
}

.et-block04 .block_inner .flow_area .f_txt{
	font-size: 16px;
	color: #333333;
}

.et-block04 .block_inner .asterisk-ul{
	padding-top: 15px;
}

.et-block04 .block_inner .asterisk-ul li{
	margin-bottom: 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.66;
}

/**/

.et-block05{
	padding: 30px 0 0;
}

.et-block05 .block_inner{
	width: 100%;
}

.et-block05 .block_inner .shikaku_area{
	background: #ff8d1e;
	padding: 20px 0;
}

.et-block05 .block_inner .shikaku_area .area_inn{
	width: calc(100% - 20px);
	margin: 0 auto;
	background: #fff;
	border: 2px solid #e0e0e0;
	border-radius: 7px;
	box-sizing: border-box;
	padding: 15px 20px;
}

.et-block05 .block_inner .shikaku_area .area_inn ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.et-block05 .block_inner .shikaku_area .area_inn ul li{
	padding-left: 15px;
	box-sizing: border-box;
	font-size: 14px;
	line-height: 1.66;
	letter-spacing: 0.05em;
	color: #333;
	text-align: justify;
	position: relative;
}

.et-block05 .block_inner .shikaku_area .area_inn ul li::before{
	content: '';
	display: inline-block;
	background: #f18d1e;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	position: absolute;
	top: 5px;
	left: 0;
}

.et-block05 .block_inner .shikaku_area .area_inn ul li + li{
	margin-top: 7px;
}

/**/

.et-block06{
	padding: 40px 0;
}

.et-block06 .block_inner{
	width: calc(100% - 20px);
	margin: 0 auto;
}

.et-block06 .block_inner .asterisk-ul{
	padding-top: 15px;
}

.et-block06 .block_inner .asterisk-ul li{
	margin-bottom: 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.66;
	letter-spacing: 0.05em;
	color: #333;
}

/**/

.et-block07{
	padding: 35px 0 50px;
	background: #fffef3;
}

.et-block07 .block_inner{
	width: calc(100% - 20px);
	margin: 0 auto;
}

.et-block07 .block_inner{
	counter-reset: number 0;
}

.et-block07 .block_inner .toggle_title{
	border-bottom: 2px solid #ff8d1e;
}

.et-block07 .block_inner .toggle_title span.fot-tsukuardgothic-std{
	padding: 0 0 10px 30px;
	position: relative;
	font-size: 14px;
	line-height: 1.47;
	letter-spacing: 0.05em;
	color: #333;
}

.et-block07 .block_inner .toggle_title span.fot-tsukuardgothic-std::before{
	counter-increment: number 1; 
	content: "Q" counter(number) ".";
	position: absolute;
	top: 0;
	left: 0;
}

.et-block07 .block_inner .toggle_contents dd .ans_txt{
	position: relative;
	padding: 15px 20px 30px 35px;
	box-sizing: border-box;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.55;
	letter-spacing: 0.05em;
	color: #333;
}

.et-block07 .block_inner .toggle_contents dd .ans_txt::before{
	content: 'A.';
	display: inline-block;
	font-size: 16px;
	position: absolute;
	top: 12px;
	left: 10px;
}

/**/

.call-info2 .tel-flexarea{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 1em;
}

.call-info2 .tel-flexarea .left{
	width: 95.0%;
	line-height: 0;
}

.call-info2 .tel-flexarea .left a{
	display: block;
}

.call-info2 .tel-flexarea .left a + a{
	padding-top: 1.5em;
	
}

.call-info2 .tel-flexarea .left a img{
	width: 100%;
	height: auto;
}

.call-info2 .tel-flexarea .right{
	width: 100%;
	line-height: 0;
	margin-top: 1.5em;
}

.call-info2 .tel-flexarea .right img{
	width: 100%;
	height: auto;
}

p.unkyu_txt{
	margin-top: 3em;
	font-weight: bold;
	color: red;
	text-align: center;
}


/**/
.price-table.kuma-d{
	margin-bottom: 0;
}


.price-table.kuma-d tbody tr td:nth-child(4){
	min-width: 158px;
}

.price-table.kuma-d tbody tr td:nth-child(2),
.price-table.kuma-d tbody tr td:nth-child(3){
	min-width: 50px;
}

.ac_container{
	width: 100%;
	max-width: 1000px;
	margin: 0 auto 0.6em;
} 

.ac_container .box{
	width: 100%;
	cursor: pointer;
	position: relative;
}

.ac_container .box p{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 35px;
	border-left: 2px solid #c5c5c5;
	border-right: 2px solid #c5c5c5;
	background: #29a4db;
	font-size: 16px;
	letter-spacing: 0.1em;
	color: #fff;
	text-align: center;
}

.ac_container .box span.minus{
	display: none;
}

.ac_container .box span{
	width: 5.0%;
	position: absolute;
	top: 50%;
	right: 10.0%;
	transform: translateY(-50%);
}

.ac_container .box span img{
	width: 100%;
	height: auto;
}

.ac_container .scroll-table{
	display: none;
}

