@charset "UTF-8";

:root {
	--basic: #114D79;
	--blue: #4EA0DD;
	--bg: #FDEFD3;
	--white: #ffffff;
}
body {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 500;
	color: var(--basic);
	min-width: 1200px;
}
.page {
	background-color: #FCF6E7;
}
@media (max-width: 767px) {
	body {
		min-width: 320px;
	}
}
a, a:hover {
	color: var(--basic);
	text-decoration: none;
	transition: 0.3s;
}
a:hover {
	text-decoration: none;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	line-height: 1.6;
	font-weight: 900;
}
strong, .strong {
	font-weight: 900;
}
dl, dt, dd {
	font-weight: normal;
	margin: 0;
}
.en {
	font-family: "Roboto", sans-serif;
	font-weight: 700;
	letter-spacing: 0;
}
.relative {
	position: relative;
}
.container {
	max-width: 1100px;
	padding-left: 50px;
	padding-right: 50px;
}

@media (min-width: 768px) {
	a:hover {
		transition: 0.3s;
		opacity: 0.5;
	}
	.row {
		margin: 0 -25px;
	}
	.row > * {
		padding: 0 25px;
	}
}
@media (max-width: 767px) {
	.container {
		max-width: 480px;
		padding: 0 16px;
	}
}

/* ------------------------------ */
/* p, ul, ol, img */
/* ------------------------------ */

ul.row {
	padding: 0;
	list-style-type: none;
}
img {
	max-width: 100%;
}

/* ------------------------------ */
/* .btn */
/* ------------------------------ */

/*----------------------------------------*/
/* .header */
/*----------------------------------------*/

.header .container {
	width: 100%;
	max-width: 100%;
	padding: 18px 20px 0 20px;
}
.header .row-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #ffffff;
	border-radius: 50px;
	box-shadow: 0 2px 40px rgba(74,53,19,0.16);
	width: 100%;
	height: 92px;
	padding: 0 14px 0 43px;
}
@media (max-width: 991px) {
	
}
@media (max-width: 767px) {
	.header .container {
		padding: 12px 10px 0;
	}
	.header .row-wrap {
		height: 58px;
		padding: 10px 10px 10px 15px;
		box-shadow: 0 2px 40px rgba(19,50,74,0.16);
	}
}

/* .col-left */
.header .col-left h1 {
	font-size: 28px;
	margin: 0;
}
.header .col-left p {
	font-size: 13px;
	margin: 0;
}
@media (max-width: 767px) {
	.header .col-left {
		flex-shrink: 0;
	}
	.header .col-left h1 {
		font-size: 16px;
		line-height: 1.5;
	}
	.header .col-left p {
		font-size: 9px;
	}

}

/* .col-right*/
.header .col-right .nav-wrap ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	align-items: center;
}
.header .col-right .nav-wrap ul li {
	margin-left: 10px;
}
@media (max-width: 767px) {
	.header .col-right .nav-wrap ul {}
	.header .col-right .nav-wrap ul li {
		margin-left: 4px;
	}
	.header .col-right .nav-wrap ul li img {
		width: 40px;
	}
}

/* ------------------------------ */
/* .main */
/* ------------------------------ */

.main {
	font-size: 15px;
	line-height: 2;
}
.main .section {
	overflow: hidden;
	padding: 120px 0 0 0;
}
.main .section-title {
	color: var(--blue);
	margin-bottom: 35px;
}
.main .section-title .en {
	position: relative;
	font-size: 24px;
	line-height: 1;
	padding-bottom: 10px;
	margin-bottom: 10px;
}
.main .section-title .en::after {
	position: absolute;
	left: 0;
	bottom: 0;
	content: "";
	width: 40px;
	height: 3px;
	background-color: #FFAD12;
	border-radius: 3px;
}
.main .section-title.text-center .en::after {
	left: 50%;
	transform: translateX(-50%);
}
.main .section-title .title {
	font-size: 36px;
	line-height: 1.4;
	margin: 0;
}
.main .section-title .title .small {
	display: block;
	font-size: 22px;
	font-weight: 700;
}
.main .lead {
	font-size: 48px;
	font-weight: 900;
	line-height: 1.5;
	margin-bottom: 50px;
}
@media (min-width: 768px) {
	
}
@media (max-width: 767px) {
	.main .section {
		padding: 95px 0 0;
	}
	.main .section-title {
		margin-bottom: 20px;
	}
	.main .section-title .en {
		font-size: 16px;
		padding-bottom: 7px;
		margin-bottom: 11px;
	}
	.main .section-title .en::after {
		width: 30px;
	}
	.main .section-title .title {
		font-size: 28px;
	}
	.main .section-title .title .small {
		font-size: 18px;
	}
	.main .lead {
		font-size: 22px;
		margin-left: -0.25em;
		margin-right: -0.25em;
	}
}

/* ------------------------------ */
/* .wave */
/* ------------------------------ */

.main .wave {
	position: relative;
}
.main .wave .bg-wave {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: -1px;
	width: 100%;
	height: 200px;
	z-index: 0;
}

.main .wave .container {
	position: relative;
	z-index: 1;
}
@media (min-width: 768px) {
	
}
@media (max-width: 767px) {
	.main .wave .bg-wave {
		height: auto;
	}
}


/* ------------------------------ */
/* .row-list */
/* ------------------------------ */

.main ul.row-img-list h3 {
	font-size: 20px;
	margin: 15px 0 10px 0;
}
.main ul.row-img-list li {
	margin-bottom: 40px;
}
@media (max-width: 767px) {
	.main ul.row-img-list {
		padding: 0 22px;
		margin-bottom: 0;
	}
	.main ul.row-img-list li {
		margin-bottom: 30px;
	}
	.main ul.row-img-list li:last-child {
		margin-bottom: 0;
	}
}

/* ------------------------------ */
/* .mv */
/* ------------------------------ */

.main .mv {
	overflow: hidden;
	padding: 40px 0 75px 0;
}
.main .mv .title-wrap {
	position: relative;
	font-size: 50px;
	line-height: 1.3;
	margin: 0;
	padding-left: 200px;
}
.main .mv .title-wrap img {
	position: absolute;
	top: 10px;
	left: -150px;
}
.main .mv .title-wrap .txt-01 {
	font-size: 52px;
}
.main .mv .title-wrap .txt-01 strong {
	font-size: 77px;
}
.main .mv .mv-wrap {
	position: relative;
	padding-top: 40px;
}
.main .mv .mv-wrap p {
	font-size: 18px;
	line-height: 2;
	margin: 0;
}
.main .mv .mv-wrap .mv-txt {
	position: relative;
}
.main .mv .mv-wrap .mv-txt .character {
	position: absolute;
	left: -98px;
	top: 80px;
}
.main .mv .mv-wrap .mv-card {
	padding: 5px 0 0 10px;
}
.main .mv .mv-wrap .mv-card p {
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 5px;
}
@media (min-width: 768px) {
	.main .mv .mv-wrap .mv-txt {
		margin-left: -17px;
	}
	.main .mv .mv-wrap .mv-img {
		position: absolute;
		top: 15px;
		right: -215px;
	}
}
@media (max-width: 767px) {
	.main .mv {
		padding-bottom: 0;
	}
	.main .mv .container {
		/* max-width: 100%; */
	}
	.main .mv .title-wrap {
		font-size: 26px;
		font-size: min(6.93vw, 32px);
		padding-left: 0;
		padding-top: 92px;
		padding-top: min(24.53vw, 110px);
		margin-right: -1em;
		z-index: 1;
	}
	.main .mv .title-wrap .txt-01 {
		font-size: 27px;
		font-size: min(7.2vw, 35px);
	}
	.main .mv .title-wrap .txt-01 strong {
		font-size: 39px;
		font-size: min(10.4vw, 50px);
	}
	.main .mv .title-wrap img {
		top: -40px;
		left: -16px;
		width: 214px;
		width: min(57.07vw, 270px);
		z-index: -1;
	}
	.main .mv .mv-wrap p {
		font-size: 15px;
		font-size: min(4vw, 20px);
	}
	.main .mv .mv-wrap .mv-txt {
		margin-bottom: 30px;
		margin-bottom: min(8vw, 35px);
	}
	.main .mv .mv-wrap .mv-txt img {
		width: 100%;
	}
	.main .mv .mv-wrap .mv-txt .character {
		left: -16px;
		top: 70%;
		width: 85px;
		width: min(22.67vw, 100px);
	}
	.main .mv .mv-wrap .mv-img {
		margin: 0 -16px 0 -12px;
	}
	.main .mv .mv-wrap .mv-card {
		padding: 0;
	}
}

/*----------------------------------------*/
/* .aboutus */
/*----------------------------------------*/

.main .aboutus {
	padding: 120px 0 160px 0;
}
.main .aboutus .inner {
	position: relative;
	max-width: 760px;
	margin: 0 auto;
}
.main .aboutus .h3 {
	font-size: 28px;
	font-weight: 700;
	margin: 0 0 30px 0;
}
.main .aboutus p {
	font-size: 18px;
}
@media (min-width: 768px) {
	.main .aboutus .inner .img-01 {
		position: absolute;
		left: -310px;
		top: 160px;
	}
	.main .aboutus .inner .img-02 {
		position: absolute;
		right: -290px;
		top: 207px;
	}
	.main .aboutus .title {
		font-size: 42px;
	}
}
@media (max-width: 767px) {
	.main .aboutus {
		padding: 95px 0 60px;
	}
	.main .aboutus .h3 {
		font-size: 22px;
		margin-bottom: 16px;
	}
	.main .aboutus .h3 br {
		display: none;
	}
	.main .aboutus p {
		font-size: 15px;
		margin-bottom: 5px;
	}
	.main .aboutus p br {
		display: none;
	}
	.main .aboutus .img-sp {
		margin: 0 -16px;
		max-width: calc(100% + 32px);
	}
}

/*----------------------------------------*/
/* .service */
/*----------------------------------------*/

.main .service {
	background-color: var(--bg);
	padding: 130px 0 50px 0;
}
.main .service .lead {
	text-align: center;
}
.main .service .lower-wrap {
	position: relative;
	font-size: 22px;
	line-height: 1.8;
	max-width: 740px;
	margin: 40px auto 0 auto;
}
@media (min-width: 768px) {
	.main .service .lead img {
		position: absolute;
		left: -70px;
		top: -60px;
	}
	.main .service .lower-wrap img {
		position: absolute;
		left: -240px;
		top: -70px;
	}
}
@media (max-width: 767px) {
	.main .service {
		padding: 100px 0 50px;
	}
	.main .service .section-title {
		margin-bottom: 30px;
	}
	.main .service .lead {
		position: relative;
		margin-bottom: 30px;
	}
	.main .service .lead img {
		position: absolute;
		left: -16px;
		top: 33px;
		transform: translateY(-100%);
		width: 72px;;
	}
	.main .service .lower-wrap {
		font-size: 18px;
		margin-top: 0;
	}
	.main .service .lower-wrap img {
		width: 114px;
		margin-bottom: 15px;
	}
}

/*----------------------------------------*/
/* .price */
/*----------------------------------------*/

.main .price {
	padding: 280px 0 100px 0;
}
.main .price .section-title {
	margin-bottom: 30px;
}
.main .price .price-table {
	font-size: 20px;
	text-align: center;
	width: 100%;
}
.main .price .price-table th,
.main .price .price-table td {
	padding: 17px 10px;
	line-height: 2.2;
}
.main .price .price-table thead th {
	background-color: #FBD375;
	font-weight: 900;
	padding: 10px 10px;
}
.main .price .price-table tbody th {
	font-weight: 500;
	background-color: var(--bg);
	border-bottom: 1px solid #FBD375;
	border-right: 1px solid #FBD375;
}
.main .price .price-table tbody td {
	border-bottom: 1px solid #FBD375;
}
.main .price .lower-wrap {
	text-align: center;
	margin: 50px 0 130px 0;
}
.main .price .row-items {
	background-image: url("../img/item-bg.png");
	background-repeat: no-repeat;
	background-position: center top;
	text-align: center;
	margin: 0 0 20px 0;
}
.main .price .row-items li {
	padding: 0;
}
.main .price .row-items dl {
	padding: 20px 0;
}
.main .price .row-items dl dd {
	font-size: 20px;
	font-weight: 900;
}
@media (min-width: 768px) {
	.main .price .lead {
		padding-left: 205px;
	}
	.main .price .lead .img-01 {
		position: absolute;
		left: -20px;
		top: -15px;
	}
	.main .price .lead .img-02 {
		position: absolute;
		right: 125px;
		top: -145px;
	}
	.main .price .price-table tbody tr td:nth-child(2),
	.main .price .price-table tbody tr td:nth-child(5) {
		width: 20%;
	}
	.main .price .lead .img-03 {
		position: absolute;
		left: 0;
		top: -75px;
	}
	.main .price .row-items > *:nth-child(1) dl,
	.main .price .row-items > *:nth-child(2) dl,
	.main .price .row-items > *:nth-child(3) dl,
	.main .price .row-items > *:nth-child(4) dl {
		padding: 10px 0 30px 0;
	}
}
@media (max-width: 767px) {
	.main .price {
		padding: 135px 0 100px 0;
	}
	.main .price .section-title {
		margin-bottom: 5px;
	}
	.main .price .lead {
		display: flex;
		flex-wrap: wrap;
		align-items: flex-end;
		margin-left: 0;
		margin-right: -0.5em;
		margin-bottom: 10px;
	}
	.main .price .lead .img-01 {
		max-width: 148px;
		margin-left: -14px;
	}
	.main .price .lead .img-02 {
		max-width: 88px;
	}
	.main .price .lead p {
		flex-basis: 100%;
		max-width: 100%;
		flex-shrink: 0;
		flex-grow: 0;
	}
	.main .price .price-table {
		font-size: 14px;
		line-height: 1.9;
	}
	.main .price .price-table th,
	.main .price .price-table td {
		padding: 12px 5px;
		line-height: 1.9;
	}
	.main .price .price-table thead th {
		padding: 3px 5px;
	}
	.main .price .price-table tbody th {
		font-size: 16px;
	}
	.main .price .price-table tbody th .text-rotate-sp {
		transform: rotate(90deg);
		display: block;
		line-height: 1;
		font-size: 13px;
		width: fit-content;
		margin: -4px auto;
	}
	.main .price .price-table tbody td {
		font-size: 16px;
	}
	.main .price .lower-wrap {
		margin: 30px 0 50px;
	}
	.main .price .lead2 {
		padding: 100px 0 0;
		margin: 0 0 25px;
	}
	.main .price .lead2 .img-03 {
		position: absolute;
		left: -16px;
		top: -7px;
		width: 142px;
	}
	.main .price .lead2 p {
		max-width: 198px;
		margin: 0 auto;
	}
	.main .price .row-items {
		background-image: none;
		margin-left: -2px;
		margin-right: -2px;
	}
	.main .price .row-items li {
		position: relative;
		padding-left: 2px;
		padding-right: 2px;
		min-height: 90px;
	}
	.main .price .row-items li::before,
	.main .price .row-items li::after {
		content: "";
		position: absolute;
		background-image: url(../img/dotted-blue.svg);
		background-position: center;
		background-size: 6px;
	}
	.main .price .row-items li::before {
		top: 7px;
		right: -1px;
		bottom: 7px;
		width: 2px;
	}
	.main .price .row-items li::after {
		right: 7px;
		bottom: -1px;
		left: 7px;
		height: 2px;
	}
	.main .price .row-items li:nth-child(3n)::before {
		display: none;
	}
	.main .price .row-items li:nth-last-child(-n+3)::after {
		display: none;
	}
	.main .price .row-items dl {
		display: flex;
		flex-direction: column;
		justify-content: center;
		padding: 5px 0;
		height: 100%;
	}
	.main .price .row-items dl dt img {
		width: 65%;
	}
	.main .price .row-items dl dd {
		font-size: 14px;
		line-height: 1.2;
	}
	.main .price .note-text {
		font-size: 13px;
		line-height: 1.77;
	}
}

/*----------------------------------------*/
/* .case */
/*----------------------------------------*/

.main .case {
	padding-top: 160px;
	background-color: var(--bg);
	overflow: visible;
}
.main .case .section-title {
	margin-bottom: 25px;
}
.main .case .section-title img {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: -155px;
}
.main .case .slide-cover {
	overflow: hidden;
	padding: 30px 0 80px;
}
.main .case .slide-wrap {
	width: 555px;
	margin: 0 auto;
}
.main .case .case-slider .slide {
	padding: 0 20px;
}
.main .case .case-slider .inner {
	position: relative;
	min-height: 380px;
	background-color: #F8F8F8;
	padding: 33px 45px 29px;
	box-shadow: 0 0 30px rgba(74,53,19,0.1);
}
.main .case .case-slider .inner dl {}
.main .case .case-slider .inner dt {
	padding-bottom: 3px;
	margin-bottom: 15px;
	background-image: url(../img/dotted-blue.svg);
	background-size: 10px;
	background-position: bottom;
	background-repeat: repeat-x;
}
.main .case .case-slider .inner h3 {
	font-size: 24px;
	font-weight: 900;
	padding-bottom: 5px;
	margin: 0;
}
.main .case .case-slider .inner dd {}
.main .case .case-slider .inner .detail {
	margin-bottom: 7px;
}
.main .case .case-slider .inner .detail ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
}
.main .case .case-slider .inner .detail ul li {
	display: flex;
	align-items: center;
	flex-grow: 0;
	flex-shrink: 0;
	padding: 0;
	margin: 0 0 14px;
}
.main .case .case-slider .inner .detail ul li:nth-child(odd) {
	flex-basis: 48%;
}
.main .case .case-slider .inner .detail ul li:nth-child(even) {
	flex-basis: 52%;
}
.main .case .case-slider .inner .detail ul li .title {
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1;
	font-size: 16px;
	font-weight: 700;
	width: 88px;
	height: 28px;
	margin-right: 20px;
	border-radius: 28px;
	padding: 5px 10px;
}
.main .case .case-slider .inner .detail ul li .body {
	line-height: 1;
	font-size: 18px;
	font-weight: 700;
}
.main .case .case-slider .inner .detail ul li.floor .title {
	background-color: #EFC0A7;
}
.main .case .case-slider .inner .detail ul li.floor .body {}
.main .case .case-slider .inner .detail ul li.people .title {
	background-color: #81C0E9;
}
.main .case .case-slider .inner .detail ul li.people .body {}
.main .case .case-slider .inner .detail ul li.time .title {
	background-color: #FBD375;
}
.main .case .case-slider .inner .detail ul li.time .body {}
.main .case .case-slider .inner .detail ul li.fee .title {
	background-color: #C4DB89;
}
.main .case .case-slider .inner .detail ul li.fee .body {
	font-size: 24px;
}
.main .case .case-slider .inner .voice {}
.main .case .case-slider .inner .voice .title {
	line-height: 1.4;
	font-size: 18px;
	font-weight: 700;
}
.main .case .case-slider .inner .voice .body {
	padding: 27px 45px;
	min-height: 136px;
	background-image: url(../img/voice-fukidashi.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	font-size: 16px;
	line-height: 1.8;
}
.main .case .case-slider .inner img {
	position: absolute;
	right: 30px;
	bottom: 0;
}

/* slickカスタマイズ */
.main .case .case-slider .slick-list {
	overflow: visible;
}
.main .case .case-slider .slick-arrow {
	top: 100%;
	right: auto;
	bottom: auto;
	left: auto;
	width: 43px;
	height: 43px;
	z-index: 1;
}
.main .case .case-slider .slick-prev {
	right: 50%;
	transform: translate(-7px, 35px);
}
.main .case .case-slider .slick-next {
	left: 50%;
	transform: translate(7px, 35px);
}
.main .case .case-slider .slick-arrow::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	transition: 0.3s;
	opacity: 1;
}
.main .case .case-slider .slick-prev::before {
	background-image: url(../img/slick-prev.svg);
}
.main .case .case-slider .slick-next::before {
	background-image: url(../img/slick-next.svg);
}
@media (max-width: 767px) {
	.main .case {
		padding: 75px 0 60px;
	}
	.main .case .section-title img {
		width: 90px;
		top: -125px;
	}
	.main .case .slide-wrap {
		max-width: calc(100% - 50px);
	}
	.main .case .case-slider .slide {
		padding: 0 9px;
	}
	.main .case .case-slider .inner {
		padding: 32px 22px 50px;
	}
	.main .case .case-slider .inner h3 {
		font-size: 22px;
	}
	.main .case .case-slider .inner dd {
		padding: 0 10px;
	}
	.main .case .case-slider .inner .detail {
		margin-bottom: 10px;
	}
	.main .case .case-slider .inner .voice {}
	.main .case .case-slider .inner .detail ul li:nth-child(odd),
	.main .case .case-slider .inner .detail ul li:nth-child(even) {
		flex-basis: 100%;
	}
	.main .case .case-slider .inner .detail ul li:not(:last-child) {
		margin-bottom: 9px;
	}
	.main .case .case-slider .inner .detail ul li .title {
		font-size: 14px;
		width: 74px;
		height: 26px;
		margin-right: 10px;
		padding: 3px 5px;
	}
	.main .case .case-slider .inner .detail ul li .body {
		font-size: 16px;
	}
	.main .case .case-slider .inner .detail ul li.fee .body {
		font-size: 22px;
	}
	.main .case .case-slider .inner .voice .title {
		font-size: 16px;
		margin-bottom: 5px;
	}
	.main .case .case-slider .inner .voice .body {
		display: flex;
		align-items: center;
		justify-content: stretch;
		font-size: 14px;
		min-height: 118px;
		margin: 0 -15px;
		padding: 10px 15px;
	}
	.main .case .case-slider .inner img {
		right: 10px;
		width: 165px;
	}
	.main .case .case-slider .slick-prev {
		transform: translate(-7px, 30px);
	}
	.main .case .case-slider .slick-next {
		transform: translate(7px, 30px);
	}
}

/*----------------------------------------*/
/* .flow */
/*----------------------------------------*/

.main .flow {
	padding-top: 250px;
	padding-bottom: 140px;
}
.main .flow .bg-wave {
	height: 140px;
	object-fit: cover;
	object-position: bottom;
}
.main .flow ol.flow-list {
	position: relative;
	max-width: 950px;
	margin: 55px auto 0;
	padding: 0;
	list-style-type: none;
}
.main .flow ol.flow-list::after {
	position: absolute;
	left: 35px;
	top: 20px;
	content: "";
	width: 10px;
	height: 440px;
	background-image: url("../img/flow-border.png");
	background-repeat: no-repeat;
	background-position: center top;
	z-index: 0;
}
.main .flow ol.flow-list li {
	position: relative;
	padding-left: 95px;
	z-index: 1;
}
.main .flow ol.flow-list li + li {
	margin-top: 40px;
}
.main .flow ol.flow-list li img {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 80px;
}
.main .flow ol.flow-list li dl dt h3 {
	font-size: 20px;
	font-weight: 900;
	margin: 0;
}
@media (min-width: 768px) {
	.main .flow ol.flow-list li dl {
		display: flex;
		align-items: center;
		width: 100%;
	}
	.main .flow ol.flow-list li dl dt {
		width: 255px;
	}
	.main .flow ol.flow-list li dl dd {
		flex: 1;
	}
}
@media (max-width: 767px) {
	.main .flow {
		padding: 140px 0 90px;
	}
	.main .flow .bg-wave {
		height: auto;
	}
	.main .flow ol.flow-list {
		max-width: calc(100% - 32px);
		margin-top: 50px;
	}
	.main .flow ol.flow-list::after {
		display: none;
	}
	.main .flow ol.flow-list li {
		padding-left: 65px;
	}
	.main .flow ol.flow-list li:not(:last-child)::after {
		position: absolute;
		left: 20px;
		top: 20px;
		bottom: -30px;
		content: "";
		width: 10px;
		background-image: url("../img/flow-border.png");
		background-repeat: no-repeat;
		background-position: center top;
		z-index: -1;
	}
	.main .flow ol.flow-list li + li {
		margin-top: 17px;
	}
	.main .flow ol.flow-list li img {
		width: 55px;
		top: 0;
		transform: translateY(-25%);
	}
	.main .flow ol.flow-list li dl dt h3 {
		font-size: 18px;
		margin-bottom: 8px;
	}
}

/* ------------------------------ */
/* .contact */
/* ------------------------------ */

.main .contact {
	padding: 95px 0;
	background-color: #FFFFFF;
}
.main .contact .inner {
	max-width: 950px;
	margin: 0 auto;
}
.main .contact .text-tell .left-col {}
.main .contact .text-tell h2 {
	font-size: 35px;
	line-height: 1.46;
	margin-bottom: 30px;
}
.main .contact .text-tell .contact-wrapper .tell-text {
	line-height: 1.4;
	font-size: 20px;
	font-weight: 700;
	color: #C60000;
	margin-bottom: 0;
}
.main .contact .text-tell .contact-wrapper .text-tel a img {
	object-fit: cover;
	height: 64px;
}
.main .contact .mail-btn {
	max-width: 792px;
	margin: -30px auto 0;
}
.main .contact .mail-btn .row {
	align-items: flex-end;
	margin: 0 -16px;
}
.main .contact .mail-btn .row > * {
	padding: 0 16px;
}
.main .contact .mail-btn .line-wrapper {}
.main .contact .mail-btn .line-wrapper p {
	line-height: 1.4;
	font-size: 21px;
	font-weight: 900;
	color: #4CC764;
	text-align: center;
	margin-bottom: 2px;
}
@media (min-width: 768px) {
	.main .contact .text-tell .right-col {
		max-width: 42%;
	}
	.main .contact .text-tell .right-col img {
		width: 537px;
		max-width: 537px;
		margin-left: 50%;
		transform: translateX(-50%);
	}
}
@media (max-width: 767px) {
	.main .contact {
		padding: 55px 0 70px;
	}
	.main .contact .container {
		padding: 0 30px;
	}
	.main .contact .text-tell h2 {
		font-size: 22px;
		margin-right: -1em;
		margin-bottom: 20px;
	}
	.main .contact .text-tell .contact-wrapper .tell-text {
		font-size: 14px;
	}
	.main .contact .text-tell .contact-wrapper .text-tel a img {
		width: auto;
		height: auto;
	}
	.main .contact .text-tell .right-col img {
		height: auto;
		margin: 0 -45px 0 -5px;
		width: calc(100% + 40px);
		max-width: calc(100% + 40px);
	}
	.main .contact .mail-btn {
		margin: 10px auto 0;
		padding: 0 10px;
	}
	.main .contact .mail-btn img {
		height: auto;
	}
	.main .contact .mail-btn .line-wrapper p {
		font-size: 18px;
		margin: 15px 0 2px;
	}
}

/*----------------------------------------*/
/* .attention */
/*----------------------------------------*/

.main .attention {
	padding-bottom: 105px;
}
.main .attention .attention-box {
	position: relative;
	border-radius: 36px;
	background-image: url(../img/attention-bg.svg);
	background-size: 54px;
	background-position: 0 50px;
	padding: 65px 30px 75px;
	border-style: solid;
	border-width: 19px 18px;
	border-color: transparent;
}
.main .attention .attention-box::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #FFFFFF;
	border-radius: 36px;
}
.main .attention .attention-box .box-inner {
	position: relative;
	max-width: 720px;
	margin: 0 auto;
}
.main .attention h2 {
	position: relative;
	padding-left: 125px;
	line-height: 1.4;
	margin-bottom: 30px;
}
.main .attention h2 img {
	position: absolute;
	top: 50%;
	left: 15px;
	transform: translateY(-50%);
}
.main .attention h2 span {
	display: inline-block;
}
.main .attention h2 span.small {
	font-weight: 700;
	font-size: 32px;
}
.main .attention h2 span.big {
	font-weight: 900;
	font-size: 41px;
}
.main .attention .attention-num {
	margin-bottom: 13px;
}
.main .attention .attention-num span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 136px;
	height: 28px;
	line-height: 1;
	font-size: 20px;
	font-weight: 700;
	border: solid 3px #4D4D4D;
	border-radius: 28px;
	padding: 5px;
	background-color: #FFCE31;
}
.main .attention h3 {
	position: relative;
	line-height: 1.4;
	margin-bottom: 20px;
}
.main .attention h3 span {
	display: inline-block;
}
.main .attention h3 span.primary {
	font-weight: 900;
	font-size: 30px;
}
.main .attention h3 span.secondary {
	font-weight: 700;
	font-size: 24px;
}
.main .attention .body-text {
	margin-bottom: 35px;
}
.main .attention .link-list {}
.main .attention .link-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.main .attention .link-list li {
	padding: 0;
	margin: 0;
}
.main .attention .link-list a {
	display: flex;
	width: fit-content;
}
.main .attention .link-list a .text-underline {
	text-decoration: underline;
}
.main .attention .box-inner > *:last-child {
	margin-bottom: 0;
}
@media (max-width: 767px) {
	.main .attention {
		padding: 80px 0 115px;
	}
	.main .attention .attention-box {
		padding: 28px 23px 40px;
		background-image: url(../img/attention-bg-sp.svg);
		border-width: 16px 19px;
		background-size: 19px;
		border-radius: 20px;
	}
	.main .attention .attention-box::before {
		border-radius: 20px;
	}	
	.main .attention h2 {
		font-size: 21px;
		padding-left: 55px;
		margin-right: -1em;
		margin-bottom: 20px;
	}
	.main .attention h2 img {
		transform: translateY(0%);
		top: 5px;
		left: -10px;
		width: 54px;
		height: auto;
	}
	.main .attention h2 span.small {
		font-size: 21px;
	}
	.main .attention h2 span.big {
		font-size: 28px;
	}
	.main .attention .attention-num {
		margin-bottom: 10px;
	}
	.main .attention .attention-num span {
		font-size: 15px;
		width: 106px;
		height: 22px;
		padding: 2px;
	}
	.main .attention h3 {
		line-height: 1.7;
		margin-bottom: 13px;
	}
	.main .attention h3 span.primary {
		display: block;
		font-size: 18px;
		margin-bottom: 5px;
	}
	.main .attention h3 span.secondary {
		display: block;
		font-size: 16px;
	}
	.main .attention .body-text {
		margin-bottom: 30px;
	}
}

/*----------------------------------------*/
/* .reason */
/*----------------------------------------*/

.main .reason {
	padding-top: 140px;
	background-color: var(--bg);
}
.main .reason .section-title {
	margin-bottom: 55px;
}
@media (min-width: 768px) {
	.main .reason .section-title img {
		position: absolute;
		right: 95px;
		bottom: -55px;
	}
}
@media (max-width: 767px) {
	.main .reason {
		padding: 90px 0 50px;
	}
	.main .reason .section-title {
		padding-bottom: 40px;
		margin-bottom: 0;
	}
	.main .reason .section-title img {
		position: absolute;
		right: -16px;
		bottom: 0;
		width: 87px;
	}
}

/*----------------------------------------*/
/* .message */
/*----------------------------------------*/

.main .message {
	padding-top: 240px;
	padding-bottom: 30px;
}
.main .message .section-title {
	margin-bottom: 25px;
}
.main .message .bg-wave {
	height: 130px;
	object-fit: cover;
	object-position: bottom;
}
.main .message .row {
	margin: 0;
}
.main .message .row > * {
	padding: 0;
}
.main .message .fukidashi {
	display: flex;
	align-items: center;
	background-image: url(../img/message-fukidashi.png);
	background-size: 100%;
	background-repeat: no-repeat;
	min-height: 330px;
	padding: 20px 50px 30px 95px;
	filter: drop-shadow(0 0 30px rgba(74, 53, 19, 0.1));
}
.main .message .fukidashi p {
	margin: 0;
}
@media (min-width: 768px) {
	.main .message .row > .left-col {
		max-width: 265px;
	}
	.main .message .img {
		transform: translateX(26px);
	}
}
@media (max-width: 767px) {
	.main .message {
		padding: 140px 0 40px;
	}
	.main .message .bg-wave {
		height: auto;
	}
	.main .message .section-title {
		margin-bottom: 15px;
	}
	.main .message .img img {
		display: block;
		width: 198px;
		height: auto;
		margin: 0 auto;
	}
	.main .message .fukidashi {
		margin-top: -20px;
		padding: 70px 40px 50px;
		background-image: url(../img/message-fukidashi-sp.png);
		background-size: 100% 100%;
	}
}

/*----------------------------------------*/
/* .area */
/*----------------------------------------*/

.main .area {
	padding: 50px 0 120px;
}
.main .area .inner p {
	font-size: 22px;
	line-height: 1.8;
}
.main .area .inner p.red {
	font-size: 16px;
	color: #C60000;
}
.main .area .inner img {
	filter: drop-shadow(0 4px 22px rgba(74,53,19,0.1));
}
@media (min-width: 768px) {
	.main .area .inner {
		padding-left: 450px;
		margin-top: 50px;
	}
	.main .area .inner img {
		position: absolute;
		left: -70px;
		top: -35px;
	}
}
@media (max-width: 767px) {
	.main .area {
		padding: 30px 0 60px;
	}
	.main .area .section-title {
		margin-bottom: 0px;
	}
	.main .area .inner img {
		margin-bottom: 40px;
	}
	.main .area .inner p {
		font-size: 18px;
	}
	.main .area .inner p br {
		display: none;
	}
	.main .area .inner p.red {
		font-size: 15px;
	}
}

/*----------------------------------------*/
/* .company */
/*----------------------------------------*/

.main .company {
	padding: 170px 0 150px;
	background-color: var(--bg);
}
.main .company .section-title {
	position: relative;
	margin-bottom: 50px;
}
.main .company .section-title .odeikun-illust {
	position: absolute;
	top: 64%;
	left: 50%;
	transform: translate(-288px, -50%);
}
.main .company .detail {}
.main .company .detail dl {
	margin-bottom: 10px;
}
.main .company .detail dt {
	font-size: 20px;
	font-weight: 900;
	line-height: 1.7;
}
.main .company .detail dd {}
.main .company .btn-wrap {
	margin-top: 25px;
}
.main .company .btn-wrap .btn {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 900;
	width: 300px;
	height: 64px;
	padding: 10px;
	color: #114D79;
	border: solid 2px #114D79;
	border-radius: 64px;
	background-color: #FFFFFF;
}
.main .company .map-wrap {
	border: solid 1px #C2CAD0;
}
.main .company .map-wrap iframe {
	display: block;
	width: 500px;
	height: 320px;
}
@media (min-width: 768px) {
	
}
@media (max-width: 767px) {
	.main .company {
		padding: 90px 0 70px;
	}
	.main .company .section-title {
		margin-bottom: 40px;
	}
	.main .company .section-title .odeikun-illust {
		top: 0;
		left: 40px;
		transform: translate(0%, -60%);
		width: 87px;
		height: auto;
	}
	.main .company .map-wrap {
		margin: 13px 0 20px;
	}
	.main .company .map-wrap iframe {
		border: 0;
		width: 100%;
		height: auto;
		aspect-ratio: 1 / 0.63;
	}
	.main .company .btn-wrap .btn {
		margin: 0 auto;
		max-width: 100%;
	}
}

/*----------------------------------------*/
/* .faq */
/*----------------------------------------*/

.main .faq {
	padding: 130px 0 100px;
	background-color: #ffffff;
}
.main .faq .section-title {
	position: relative;
	margin-bottom: 30px;
}
.main .faq .section-title .faq-illust {
	position: absolute;
	top: 20%;
	left: 50%;
	transform: translate(-305px, -50%);
}
.main .faq .faq-list {
	max-width: 840px;
	margin: 0 auto;
}
.main .faq .faq-list dl {
	border-bottom: solid 1px #C2CAD0;
}
.main .faq .faq-list dt {
	position: relative;
	display: flex;
	padding: 35px 70px 35px 30px;
}
.main .faq .faq-list dt::before {
	content: "Q.";
	line-height: 1;
	font-size: 36px;
	font-family: "Roboto", sans-serif;
	font-weight: 700;
	margin-right: 30px;
	color: #81C0E9;
}
.main .faq .faq-list dt h3 {
	display: flex;
	align-items: center;
	min-height: 36px;
	font-size: 18px;
	font-weight: 900;
	line-height: 1.4;
	margin: 0;
}
.main .faq .faq-list dt .icon {
	position: absolute;
	top: 50%;
	right: 13px;
	transform: translate(0,-50%);
	width: 48px;
	height: 48px;
	border-radius: 48px;
	background-color: #81C0E9;
	transition: transform 0.5s;
}
.main .faq .faq-list dt .icon::before,
.main .faq .faq-list dt .icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 13px;
	height: 2px;
	background-color: #FFFFFF;
}
.main .faq .faq-list dt .icon::before {
	transform: translate(-50%, -50%);
	transition: opacity 0.5s;
}
.main .faq .faq-list dt .icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}
.main .faq .faq-list dt.active .icon {
	transform: translate(0,-50%) rotate(90deg);
}
.main .faq .faq-list dt.active .icon::before {
	opacity: 0;
}
.main .faq .faq-list dd {
	display: flex;
	padding: 25px 30px;
	background-color: #EDF3F7;
}
.main .faq .faq-list dd::before {
	content: "A.";
	line-height: 1;
	font-size: 36px;
	font-family: "Roboto", sans-serif;
	font-weight: 700;
	margin-right: 30px;
	color: #114D79;
}
.main .faq .faq-list dd p {
	display: flex;
	align-items: center;
	min-height: 36px;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.9;
	margin: 0;
}
@media (min-width: 768px) {
	.main .faq .faq-list dl:last-child {
		border-bottom: 0;
	}
}
@media (max-width: 767px) {
	.main .faq {
		padding: 90px 0 75px;
	}
	.main .faq .section-title {
		margin-bottom: 30px;
	}
	.main .faq .section-title .faq-illust {
		top: -10px;
		left: 0;
		transform: translate(0px, -0%);
		width: 78px;
		height: auto;
	}
	.main .faq .faq-list dt {
		padding: 20px 60px 20px 10px;
	}
	.main .faq .faq-list dt::before {
		font-size: 28px;
		margin-right: 5px;
	}
	.main .faq .faq-list dt h3 {
		font-size: 16px;
	}
	.main .faq .faq-list dt .icon {
		width: 35px;
		height: 35px;
	}
	.main .faq .faq-list dt .icon::before,
	.main .faq .faq-list dt .icon::after {
		width: 9px;
	}
	.main .faq .faq-list dd {
		padding: 20px 10px;
	}
	.main .faq .faq-list dd::before {
		font-size: 28px;
		margin-right: 5px;
	}
}

/*----------------------------------------*/
/* footer */
/*----------------------------------------*/

footer {}
footer .footer-nav {}
footer .footer-nav .takayama-logo {
	margin-bottom: 10px
}
footer .footer-nav .talayama-link {
	text-align: center;
}
footer .footer-nav .link-list {
	font-size: 14px;
	width: 700px;
	max-width: 100%;
	margin-left: auto;
}
footer .footer-nav .link-list ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0 -1em;
}
footer .footer-nav .link-list ul li {
	padding: 0 1em;
	margin: 8px 0;
	flex-shrink: 0;
	flex-grow: 0;
}
footer .footer-nav .link-list ul li a {}
@media (min-width: 768px) {
	
}
@media (max-width: 767px) {
	footer .footer-nav .container {
		padding: 0 45px;
	}
	footer .footer-nav .takayama-logo {
		margin-bottom: 20px;
	}
	footer .footer-nav .talayama-link {
		text-align: left;
		margin-bottom: 20px;
	}
	footer .footer-nav .link-list ul li {
		margin: 6px 0;
	}
}

/* .copyrite-wrap */
footer .copyrite-wrap {
	position: relative;
	margin-top: 30px;
	padding: 40px 0;
	color: #FFFFFF;
	background-color: #114D79;
}
footer .copyrite-wrap .copyrite-text {
	text-align: center;
}
footer .copyrite-wrap .copyrite-text .en {
	font-weight: 400;
}
footer .copyrite-wrap .odeikun {
	position: absolute;
	bottom: 100%;
	right: 50%;
	transform: translate(500px, 7px);
}
@media (max-width: 767px) {
	footer .copyrite-wrap {
		margin-top: 50px;
		padding: 15px 0;
	}
	footer .copyrite-wrap .container {
		position: relative;
	}
	footer .copyrite-wrap .copyrite-text .en {
		font-size: 15px;
	}
	footer .copyrite-wrap .odeikun {
		right: 16px;
		transform: translate(0, -8px);
	}
}

/* ------------------------------ */
/* .small-header */
/* ------------------------------ */

.small-header {
	position: fixed;
	right: 20px;
	top: 25px;
	transition: 0.5s;
	transform: translateY(-20px);
	z-index: 100;
	display: flex;
	align-items: center;
	background-color: #ffffff;
	box-shadow: 0 2px 40px rgba(74,53,19,0.16);
	border-radius: 50px;
	width: fit-content;
	height: 68px;
	padding: 0 10px 0 30px;
	visibility: hidden;
	opacity: 0;
}
.small-header.visible {
	visibility: visible;
	transform: translateY(0px);
	opacity: 1;
}
.small-header .nav-wrap ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	align-items: center;
	margin: 0 -3.5px;
}
.small-header .nav-wrap ul li {
	padding: 0 3.5px;
}
@media (max-width: 767px) {
	.small-header {
		top: 10px;
		right: 12px;
		left: 12px;
		width: auto;
		height: 58px;
		padding: 10px 12px 10px 15px;
	}
	.small-header .nav-wrap {
		width: 100%;
	}
	.small-header .nav-wrap ul li {
		padding: 0 0 0 4px;
		margin-left: 0;
	}
	.small-header .nav-wrap ul li img {
		width: 40px;
	}
	.small-header .nav-wrap ul li:first-child {
		padding-left: 10px;
		margin-left: 0;
		margin-right: auto;
	}
	.small-header .nav-wrap ul li:first-child img {
		width: 180px;
		max-width: 100%;
	}
	.small-header .nav-wrap ul li:nth-child(2) {
		margin-left: auto;
	}
}

/* ------------------------------ */
/* .to-top */
/* ------------------------------ */

.to-top {
	visibility: hidden;
	position: fixed;
	bottom: 30px;
	right: 30px;
	border-radius: 50%;
	box-shadow: 0 0 20px rgba(74,53,19,0.16);
	transition: 0.5s;
	transform: translateY(20px);
	filter: blur(10px);
	opacity: 0;
	z-index: 100;
}
.to-top.visible {
	visibility: visible;
	transform: translateY(0px);
	filter: blur(0);
	opacity: 1;
}
.to-top a {
	position: relative;
	display: block;
	width: 64px;
	width: 64px;
	border-radius: 50%;
}
@media (min-width: 768px) {
	.to-top a:hover {
		opacity: 0.5;
	}
}
@media (max-width: 767px) {
	.to-top {
		bottom: 15px;
		right: 15px;
	}
	.to-top a {
		width: 50px;
		width: 50px;
	}
}


.grecaptcha-badge {
	bottom: 110px !important;
	z-index: 100;
}
@media (max-width: 767px) {
	.grecaptcha-badge {
		bottom: 75px !important;
	}
}