@charset "UTF-8";

/*--------------------------------
reset
--------------------------------*/
html,body,div,p,img,iframe,a,span,blockquote,q,address,cite,
pre,code,em,small,strong,b,i,
header,article,section,nav,figure,figcaption,hgroup,menu,aside,footer,time,
h1,h2,h3,h4,h5,h6,
ul,ol,li,dl,dt,dd,
table,tbody,thead,tfoot,th,tr,td,
form,fieldset,legend,label,select,input,textarea,button{
	margin: 0;
	padding: 0;
	border: 0;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	vertical-align: baseline;
}
header,article,section,nav,figure,figcaption,hgroup,menu,aside,footer{
	display: block;
}
ul li,
ol li{
	list-style-type: none;
}
h1,h2,h3,h4,h5,h6{
	font-weight: 500;
}
body{
	line-height: 1;
}
a{
	text-decoration: none;
}
img{
	vertical-align: middle;
}
table{
	border-collapse: collapse;
	border-spacing: 0;
}
select,option,input,textarea,button{
	font: inherit;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
}
input[type=radio]{
	-webkit-appearance: radio;
	-moz-appearance: radio;
	appearance: radio;
}
input[type=checkbox]{
	-webkit-appearance: checkbox;
	-moz-appearance: checkbox;
	appearance: checkbox;
}
blockquote::before,blockquote::after,q::before,q::after{
	content: '';
	content: none;
}
[type=submit],[type=button],[type=reset],[type=file],button{
	cursor: pointer;
}
:focus{
	outline: none;
}
html{
	font-size: 62.5%;
}
body{
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size: 1.4rem;
	line-height: 1;
	color: #000;
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
}
a {
	color: #006d9e;
	-webkit-tap-highlight-color: rgba(238, 223, 227, 0.2);
}
sup,
sub{
	font-size: xx-small;
}

/*--------------------------------
common
--------------------------------*/
.text-center {
	text-align: center;
}
.text-right {
	text-align: right;
}
.text-left {
	text-align: left;
}
.en-font{
	font-family: garamond-premier-pro-display, serif;
}

.small-text {
	font-size: 75%;
}
.large-text{
	font-size: 150%;
}
.fit-img {
	width: 100%;
	height: auto;
	vertical-align: middle;
}
.has-max {
	height: auto;
	max-width: 100%;
}
.flex-wrapper {
	display: flex;
	flex-wrap: wrap;
}
.flex-nowrap{
	flex-wrap: nowrap;
}
.img-wrapper{
	position: relative;
}
.img-wrapper .caption{
	position: absolute;
	bottom: 0;
	left: 8px;
	right: 8px;
	z-index: 1;
}
.inline-block{
	display: inline-block;
}
.grid-wrapper{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 940px){
	.grid-wrapper{
		grid-template-columns: repeat(2, 1fr);
	}
}
@media screen and (max-width: 767px){
	.grid-wrapper{
		grid-template-columns: 1fr;
	}
}

/*--------------------------------
componet
--------------------------------*/
.primary-heading{
	margin-bottom: .8em;
	font-size: 4.6rem;
	line-height: 1.3;
}
.secondary-heading{
	margin-bottom: .8em;
	font-size: 3rem;
	line-height: 1.3;
}
.tertiary-heading{
	margin-bottom: .8em;
	font-size: 2.4rem;
	line-height: 1.4;
}
.page-heading{
	padding:.4em .8em;
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.3;
	border-left: 4px solid #6366f1;
}
@media screen and (max-width: 767px){
	.primary-heading{
		font-size: 2.9rem;
	}
	.secondary-heading{
		font-size: 2rem;
	}
	.tertiary-heading{
		font-size: 1.6rem;
	}
}
.note{
	margin: 1em 0;
	font-size: 1.6rem;
	line-height: 1.6;
}
@media screen and (max-width: 767px){
	.note{
		font-size: 1.4rem;
	}
}
.caption{
	margin: .4em 0;
	font-weight: 300;
	font-size: 1.2rem;
	line-height: 1.4;
}
.img-wrapper .cap-box{
	margin: 0;
	padding: .2em 8px;
	left: auto;
	right: 0;
	display: inline-block;
	background: rgba(255,255,255,.6);
	color: #333;
	font-size: 1rem;
}
.btn{
	padding: 8px 16px;
	display: inline-block;
	position: relative;
	background: #333;
	color: #fff;
	font-size: 1.6rem;
	transition: all .3s ease-out;
}
.general-btn{
	margin: 8px;
	padding: 0 16px;
	width: 100%;
	max-width: 400px;
	height: 60px;
	position: relative;
	background: #143851;
	font-size: 2.8rem;
	line-height: 60px;
}
.general-btn:hover{
	opacity: .6;
}
@media screen and (max-width: 767px){
	.caption{
		font-size: 1rem;
	}
	.general-btn{
		width: calc(100% - 16px);
		height: 54px;
		font-size: 2.2rem;
		line-height: 54px;
	}
}
.btn span{
	position: relative;
	z-index: 1;
}
.ghost-btn{
	padding: 12px 16px;
	width: 100%;
	max-width: 345px;
	background: transparent;
	color: #333;
	font-size: 2.4rem;
	font-weight: 900;
	border: 2px solid;
}
.ghost-btn:hover{
	color: #fff;
	border-color: #333;
}
@media screen and (max-width: 767px){
	.ghost-btn{
		padding: 10px 12px;
		max-width: 260px;
	}
}
.submit-btn{
	margin: 0;
	padding: 0 16px;
	width: 100%;
	max-width: 110px;
	height: 44px;
	position: relative;
	color: #f5f6fa;
	background: radial-gradient(circle,rgba(102,105,242,1) 75%,rgba(88,91,210,1) 100%);
	font-size: 1.6rem;
	line-height: 44px;
	border-radius: 10px;
}
.cancel-btn{
	margin: 0 auto;
	padding: 0 16px;
	width: 100%;
	max-width: 200px;
	height: 60px;
	position: relative;
	background: #aaa;
	font-size: 2rem;
	line-height: 60px;
	border-radius: 30px;
}
.bg-light{
	background-color: #c9d0d1;
}
.bg-gray{
	background-color: #eee;
}
.nav-link{
	color: #fff;
	transition: color .3s ease-out;
}
.nav-link:hover{
	color: #62a6a1;
}
[type=text],
[type=email],
[type=tel],
[type=password],
select,
textarea{
	margin: 4px 0;
	padding: 8px;
	min-height: 41px;
	background: rgba(241,242,246,.4);
	box-sizing: border-box;
	font-size: 1.3rem;
	font-weight: 300;
	border: 1px solid #ced4da;
	border-radius: 0;
	transition: all .3s ease-out;
}
select{
	padding-right: 55px;
	background: url(../images/common/select-arrow.svg) no-repeat right center #f8f9fa;
	background-size: 30px auto;
}
textarea{
	resize: none;
	height: 180px;
}
::placeholder{
	color: rgba(0, 0, 0, 0.3);
}
[type=text]:focus,
[type=email]:focus,
[type=tel]:focus,
[type=password]:focus,
select:focus,
textarea:focus{
	background-color: #fff;
	border: 1px solid #2b1fd3;
}
.form-parts{
	margin-bottom: 8px;
}
.require{
	color: #de0000;
}
.label-cap{
	font-size: 80%;
	color: #999;
}
.unit{
	margin: 0 4px;
}
.text-80{
	width: 100%;
	max-width: 80px;
}
.text-120{
	width: 100%;
	max-width: 120px;
}
.text-150{
	width: 100%;
	max-width: 150px;
}
.text-240{
	width: 100%;
	max-width: 240px;
}
.text-320{
	width: 100%;
	max-width: 320px;
}
.text-400{
	width: 100%;
	max-width: 400px;
}
.text-540{
	width: 100%;
	max-width: 540px;
}
.text-fit{
	width: 100%;
	flex: 1;
}
.video-wrapper{
	position: relative;
	padding-top: 56.25%;
	height: 0;
	display: block;
	content: "";
}
.video-wrapper iframe,
.video-wrapper video{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}
.loading{
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	content: "";
}
.overlay-lite{
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	content: "";
	background: rgba(255,255,255,.6);
}
@media screen and (max-width: 767px){
	.video-wrapper{
		padding-top: 100%;
	}
}
.general-table{
	margin: 48px 0;
	width: 100%;
	font-size: 1.6rem;
	line-height: 1.4;
	border-top: 1px solid #ddd;
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
}
.general-table th,
.general-table td{
	padding: 16px;
	border-bottom: 1px solid #ddd;
}
.general-table th{
	width: 260px;
	position: relative;
	background: #eee;
	font-weight: 500;
	text-align: right;
}
@media screen and (max-width: 767px){
	.general-table{
		margin: 24px 0;
	}
	.general-table th,
	.general-table td{
		width: 100%;
		display: block;
	}
	.general-table th{
		text-align: left;
	}
}

/*--------------------------------
layout
--------------------------------*/
.general-section .inner{
	margin: 0 auto;
	padding: 80px 0;
	width: calc(100% - 32px);
	max-width: 960px;
}
@media screen and (max-width: 767px){
	.general-section .inner{
		padding: 32px 0;
	}
}
.general-section .inner-fit{
	width: 100%;
	max-width: none;
}
.general-section .inner + .inner{
	padding-top: 0;
}
.general-parts{
	margin-bottom: 32px;
}
.btn-space{
	margin: 32px 0;
	text-align: right;
}
.btn-space:last-child{
	margin-bottom: 0;
}
.col-2{
	gap: 24px;
	justify-content: center;
}
.col-2 > .flex-item{
	flex: 1;
}
@media screen and (max-width: 767px){
	.col-2 > .flex-item{
		flex: 0 0 100%;
	}
}
.col-3{
	gap: 32px;
	justify-content: center;
}
.col-3 > .flex-item{
	flex: 0 1 375px;
}

/*--------------------------------
header
--------------------------------*/
.header{
    padding: 15px 0;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
}
.brand .header,
.project .header{
    background: #fff;
}
.header .inner{
	position: relative;
    max-width: 1680px;
    width: 100%;
    margin: auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.header .logo{
	position: relative;
	z-index: 2;
	width: 22%;
	max-width: 400px;
	min-width: 150px;
}
.header h1 a{
    background: url("../images/common/logo.svg") no-repeat center center;
    background-size: 100%;
    height: 96px;
    display: block;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    z-index: 1000;
}
@media screen and (max-width: 1300px) {

}
@media screen and (max-width: 1000px) {
	.header .logo{
		z-index: 1000;
	}
    .header{
        padding: 15px 0;
    }
    .header .inner{
		position: relative;
        width: 90%;
        padding: 0 0px;
    }
	.header .inner::before{
		content: "";
		position: absolute;
		top: -15px;
		left: 50%;
		transform: translate(-50%,0);
		width: 100vw;
		height: 61px;
		background: #fff;
		z-index: 5;
	}
    .header h1 a{
        /* width: 150px; */
        height: 31px;
    }
}
#header .hamburger {
    width: 44px;
    height: 32px;
    display: none;
    position: absolute;
    right: 35px;
    top: 50%;
    margin-top: -16px;
    z-index: 5; }
@media screen and (max-width: 1000px) {
    #header.is-menu-open nav {
      visibility: visible;
      transform: translateX(0);
    }
}
#header .hamburger {
    width: 50px;
    height: 50px;
    display: none;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -25px;
}
@media screen and (max-width: 1000px) {
    #header .hamburger {
        display: block;
    }
	.plan-detail #header .hamburger{
		display: none;
	}
}
#header .hamburger i,
#header .hamburger::before,
#header .hamburger::after {
    width: 32px;
    height: 3px;
    position: absolute;
    left: 0;
    right: 0;
    display: block;
    background: #333;
    content: "";
}
#header .hamburger i {
    margin: -1px auto 0;
    top: 50%;
    transition: all .2s ease-in-out;
}
#header .hamburger::before {
    margin: 0 auto;
    top: 16px;
    transition: all .2s ease-in-out;
}
#header .hamburger::after {
    margin: 0 9px 0 auto;
    bottom: 16px;
    transition: all .2s ease-in-out;
}
#header.is-menu-open .hamburger i {
    transform: rotate(45deg);
}
#header.is-menu-open .hamburger::before {
    margin-top: -1px;
    top: 50%;
    transform: rotate(-45deg);
}
#header.is-menu-open .hamburger::after {
    opacity: 0;
}
/* navi */
.nav-container {
	margin-left: 40px;
	position: relative;
	top: 0;
	right: 0;
	z-index: 999;
	flex: 1;
}
.plan-detail .nav-container{
	display: none;
}
.nav-container ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-line-pack: stretch;
	align-content: stretch;
	justify-content: flex-end;
	gap: 8px 0.8vw;
	flex-wrap: wrap;
}
.nav-container ul li {
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
	font-size: 1vw;
	line-height: 1.2;
	letter-spacing: -.05em;
	text-align: center;
	position: relative;
}

@media screen and (min-width: 1681px) {
	.nav-container ul li {
		font-size: 1.6rem;
	}
}
@media screen and (max-width: 1400px) {
	.nav-container {
		margin-left: 0;
	}
}
@media screen and (max-width: 1200px) {
	.nav-container ul li {
		font-size: 1.2rem;
	}
}
@media screen and (max-width: 1200px) {
	.nav-container{
		margin-left: -100px;
	}
}
/* @media screen and (max-width: 950px) {
  .nav-container ul li {
		font-size: 1.4rem;
		line-height: 1.3;
	}
} */
/* @media screen and (max-width: 850px) {
  .nav-container ul li {
		font-size: 1.2rem;
	}
} */
.nav-container ul li.entry{
	position: absolute;
	top: -70px;
	right: 220px;
	font-size: 1.5vw;
	margin: 0;
}
.nav-container ul li.entry.reserve-btn{
	right: 0;
}
.nav-container ul li a {
	/*background-color: #fff;*/
	display: table;
	width: 100%;
	-webkit-transition: .5s;
	transition: .5s;
	color: #333;
	white-space: nowrap;
}
.nav-container ul li.entry a{
	background: #143851;
	color: #fff;
	width: 200px;
	text-align: center;
	padding: 5px 0;
}
.nav-container ul li.entry.reserve-btn a{
	background: #0f9aa5;
}
@media screen and (min-width: 1681px) {
	.nav-container ul li.entry{
		font-size: 2.2rem;
	}
}
@media screen and (max-width: 1200px) {
	.nav-container ul li.entry {
		font-size: 1.6rem;
	}
}
.reserve-btn a,
.home .area1 p.link{
	position: relative;
	overflow: hidden;
}
.reserve-btn a::before,
.home .area1 p.link::before{
	content: '';
    height: 100%;
    width: 30px;
    position: absolute;
    top: -180px;
    left: 0;
    background-color: #fff;
    opacity: 0;
    animation: s-btn1 3s ease-in-out infinite;
}
.reserve-btn a::before{
	width: 20px;
}
@keyframes s-btn1 {
    0% { transform: scale(0) rotate(45deg); opacity: 0; }
    80% { transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { transform: scale(4) rotate(45deg); opacity: 1; }
    100% { transform: scale(50) rotate(45deg); opacity: 0; }
}
.nav-container ul li a:hover {opacity: 0.6;}
.nav-container ul li.entry a:hover{
	opacity: 0.6;
}
.nav-container ul li.limited{
	position: absolute;
	top: -50px;
	right: 220px;
	font-size: 2.2rem;
	margin: 0;
}

.nav-container ul li.limited a{
	background: #87c2cc;
	color: #fff;
	width: 280px;
	text-align: center;
	padding: 5px 0;
}
.nav-container ul li.outline-btn,
.nav-container ul li.map-btn{
	position: absolute;
    top: -63px;
}
.nav-container ul li.outline-btn{
	right: 440px;
}
.nav-container ul li.map-btn{
	right: 530px;
}


@media screen and (max-width: 950px) {
	.nav-container ul li.limited a {
		width: 240px;
	}
}
@media screen and (max-width: 1000px){
	.nav-container {
		transform: translateX(100%);
		transition: all .3s ease-in-out;
		width: 100%;
		height: 100vh;
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		z-index: 4;
		background: #fff;
		overflow: auto;
		display: block;
		padding-top: 70px;
	}
	.nav-container ul {
		display: block;
	}
	.nav-container ul li {
		font-size: 1.8rem;
		padding: 1em 0;
		margin: 0;
		border-bottom: 1px solid #ccc;
		line-height: 1;
	}
	.nav-container ul li.entry{
		position: static;
		font-size: 1.8rem;
		border-bottom: none;
		padding: 0;
	}
	.nav-container ul li.entry a{
		width: 100%;
		padding: 15px 0;
	}
	.nav-container ul li.limited{
		position: static;
		font-size: 1.8rem;
		border-bottom: none;
		padding: 0;
	}
	.nav-container ul li.limited a{
		width: 100%;
		padding: 15px 0;
	}
	.nav-container ul li.outline-btn,
	.nav-container ul li.map-btn{
		position: static;
	}
}
.new::before{
	content: "NEW";
	position: absolute;
	top: -12px;
	left: 0;
	font-size: 1.1rem;
	color: #f66;
}
@media screen and (max-width: 1000px){
	.new::before{
		top: 8px;
		left: 8px;
	}
}

/*--------------------------------
footer
--------------------------------*/
.footer-container p.tel{
    padding: 50px 0;
    border-bottom: 1px solid rgba(0,0,0,0.3);
}
.footer-container p.tel a{
    /*pointer-events: none;*/
    display: block;
}
.footer-container p.tel img{
    max-width: 440px;
    width: 90%;
    height: auto;
    margin: auto;
    display: block;
}
.footer-container .logo{
    display: flex;
    justify-content: center;
    padding: 30px 0;
}
.footer-container .logo li{
    margin: 0 30px;
}
.footer-container .logo li a{
    display: block;
}
.footer-container .logo li:nth-of-type(1) img{
    width: 170px;
    height: 60px;
}
.footer-container .logo li:nth-of-type(2) img{
    width: 270px;
    height: 53px;
}
.footer-container .copyright{
	padding: 10px 5px;
	font-size: 1.1rem;
	font-style: normal;
	text-align: center;
    background: #143851;
    color: #fff;
}
@media screen and (max-width: 736px) {
    .footer-container p.tel{
        padding: 5% 0;
    }
    .footer-container p.tel a{
        pointer-events:auto;
    }
    .footer-container .logo{
        margin: 0 auto;
        max-width: 310px;
        display: block;
        padding: 15px 5%;
    }
    .footer-container .logo li{
        margin: auto;
    }
    .footer-container .logo li a{
        display: inline-block;
        text-align: left;
    }
    .footer-container .logo li:nth-of-type(1){
        margin-bottom: 5%;
        margin-left: 10px;
    }
	.footer-container .copyright{
		font-size: 1rem;
	}
}
.copyright{
	padding: 16px;
	font-size: 1.2rem;
	font-style: normal;
	text-align: center;
}
@media screen and (max-width: 767px){
	.copyright{
		font-size: 1rem;
	}
}
.sp-navi{
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 2;
}
@media screen and (min-width: 768px){
	.sp-navi{
		display: none;
	}
}
.sp-navi a{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60px;
	font-size: 1.6rem;
	background: #0f9aa5;
	position: relative;
	overflow: hidden;
	color: #fff;
}
.sp-navi a::before{
	display: flex;content: '';
	height: 100%;
	width: 30px;
	position: absolute;
	top: -180px;
	left: 0;
	background-color: #fff;
	opacity: 0;
	animation: s-btn1 3s ease-in-out infinite;
}


/*--------------------------------
form
--------------------------------*/
.step-wrapper{
	margin: 48px 0 32px;
	gap: 8px;
}
.step-item{
	margin-right: 24px;
	padding: 0 16px;
	height: 50px;
	position: relative;
	flex: 1;
	background: #eee;
	color: #a4a4a4;
	font-size: 1.6rem;
	line-height: 50px;
	white-space: nowrap;
}
.step-item::after{
	width: 0;
	height: 0;
	display: block;
	position: absolute;
	top: 0;
	right: -24px;
	content: "";
	border-style: solid;
	border-width: 25px 0 25px 24px;
	border-color: transparent transparent transparent #eee;
}
.step-item.current{
	background: #333;
	color: #fff;
}
.step-item.current::after{
	border-color: transparent transparent transparent #333;
}
@media screen and (max-width: 767px){
	.step-item{
		margin: 0 0 12px;
		width: 100%;
		flex: 1 1 100%;
	}
	.step-item::after{
		top: auto;
		bottom: -12px;
		right: auto;
		left: 50%;
		border-width: 12px 16px 0 16px;
		border-color: #eee transparent transparent transparent;
		transform: translateX(-50%);
	}
	.step-item.current::after{
		border-color: #333 transparent transparent transparent;
	}
}
.detail-box{
	padding: 0 16px;
	border: 2px solid #333;
}
.form-table{
	margin: 32px 0;
	width: 100%;
}
.form-table tr{
	margin-bottom: 12px;
}
.form-table th,
.form-table td{
	padding: 0 ;
	font-size: 1.6rem;
	line-height: 1.4;
}
.form-table td{
	position: relative;
	text-align: left;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	width: 100%;
}
.form-table td input{
	width: 100%;
}
.form-table td .caption{
	font-size: 1.36rem;
}
.form-table td .caption .small-text{
	font-size: 1rem;
	color: #ed4c67;
	margin-top: 1px;
	margin-left: 4px;
}
@media screen and (max-width: 767px){
	.form-table{
		margin: 24px 0;
	}
	.form-table th,
	.form-table td{
		width: 100%;
		display: block;
	}
}
.form-group{
	margin-bottom: 16px;
	padding-bottom: 16px;
}
.form-group:last-child{
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}
.form-group-title{
	margin-bottom: .4em;
	padding: 8px;
	background: #eee;
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 1.4;
}
.checkbox-label{
	margin: 8px 32px 8px 0;
	display: flex;
	align-items: center;
	gap: 4px;
	cursor: pointer;
}
.form-label{
	width: 100px;
	white-space: nowrap;
	text-align: right;
}
@media screen and (max-width: 767px){
	.form-label{
		margin-top: 24px;
		width: auto;
		text-align: left;
	}
	.form-parts:first-child .form-label{
		margin-top: 0;
	}
}
.checkbox-input{
	width: 16px;
	height: 16px;
}
.announce{
	margin-bottom: 32px;
	padding: 24px 16px;
	border: 1px solid #ddd;
}
.accept-check{
	margin: 0 auto;
	padding: 16px;
	max-width: 400px;
	justify-content: center;
	font-size: 1.8rem;
}
.request-footer{
	display: flex;
	margin: auto 0 0;
	padding: 0;
	border: 0;
	box-sizing: border-box;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1;
	color: #6e6e73;
	background-color: #f5f5f7;
	flex-shrink: 0;
}
.request-footer-inner{
	max-width: 980px;
	width: calc(100% - 22px);
	margin: 0 auto;
}
.request-footer-item:first-child{
	padding: 32px 0;
}
.request-footer-item:last-child{
	border-top: solid 1px #d2d2d7;
	padding: 12px 0 20px;
	font-size: 1.3rem;
}
.request-footer-item:last-child a{
	font-size: 1.2rem;
	color: #424245;
}
.copyright-text{
	margin-right: 32px;
}
.copyright-privacy{
	border-right: 1px solid #d2d2d7;
	margin-right: 7px;
	padding-right: 10px;
	display: inline-block;
	margin-top: 5px;
	white-space: nowrap;
}
.request .main-content{
	min-height: calc(100vh - 145px);
}
@media screen and (max-width: 767px){
	.request .main-content{
		min-height: calc(100vh - 171px);
	}
}
.form-item{
	display: flex;
	flex-direction: column;
}
.form-item .caption{
	order: 1;
}
.form-item input{
	order: 2;
}
.form-item .formError{
	order: 3;
}
.formError + input{
	background: #ed4c671a;
	border-color: #f44336;
}
.formError + input:focus{
	background: #ed4c671a;
	border-color: #f44336;
}
.thanks-note{
	margin-top: 3em;
}
@media screen and (max-width: 767px){
	.copyright-text {
    margin-right: 32px;
    display: block;
	}
}
/*--------------------------------
state
--------------------------------*/
.disabled {
	opacity: 0.1;
	cursor: default;
	pointer-events: none;
}
.none{
	opacity: 0.1;
	cursor: default;
	pointer-events: none;
}
.is-none{
	display: none;
}
.is-light{
	color: #fff;
}
.is-dark{
	color: #333;
}
.is-key{
	color: #62a6a1;
}
.is-gry{
	color: #727171;
}
.is-blu{
	color: #87c2cc;
}
.is-blu2{
	color: rgb(11 116 174 / 70%);
}
.is-nvy{
	color: #1E374F;
}
.is-shadow{
	text-shadow: 0 0 1px rgba(0,0,0,.8), 0 0 4px rgba(0,0,0,.4);
}
.is-alert{
	color: #c90000;
}
@media screen and (max-width: 767px){
	.sp-none{
		display: none;
	}
	.slick-slide img.sp-none{
		display: none;
	}
}
@media screen and (min-width: 768px){
	.pc-none{
		display: none;
	}
	.slick-slide img.pc-none{
		display: none;
	}
}