@charset "utf-8";
/* CSS Document */

/****************************
   MAIN IMAGE
*****************************/
.mainContent-headerContainer{
	height:500px;
	overflow:hidden;
    position:relative;
    background-image: url('/assets/image/index/main_image.jpg');
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}
.header-title{
    width:1100px;
    margin: 50px auto;
    padding-left: 10px;
    color:#FFFFFF;
    letter-spacing: 5px;
}
@media screen and (max-width: 1100px) {
    .header-title{
        padding-left: 25px;
    }
}
@media screen and (max-width: 978px) {
    .mainContent-headerContainer{
        height:475px;
    }
    .header-title{
        font-size: 4.3rem;
    }
}
@media screen and (max-width: 479px) {
    .mainContent-headerContainer{
        height:300px;
    }
    .header-title{
        font-size: 2.5rem;
    }
}

.ap-notice{
	text-align: center;
	color: #ff0101;
	line-height: 2;
	font-size: 1.8rem;
	font-weight: bold;
	margin-top: 70px;
	padding: 35px;
	background-color: rgb(255, 255, 255,0.7);
}

/****************************
   AP
*****************************/
.mainContent-apContainer{
    background-color: #95ccdc;
    overflow: hidden;
    padding-bottom: 45px;
}
.ap{
    max-width:1150px;
    width:100%;
    margin: auto;
}
.ap-title{
    margin:65px 0 65px 0;
    font-weight: 900;
    font-size:3.2rem;
    color:#000000;
    text-align:center;
    overflow: hidden;
}
@media screen and (max-width: 800px) {
	.ap-title{
    font-size:2.0rem;
		margin:55px 0 50px 0;
		padding: 0 15px;
}
}
.ap-currentAddress{
	width: 47%;
	display: inline-block;
	box-sizing: border-box;
	padding: 25px;
	background-color: #FFFFFF;
	position: relative;
	margin: 5px;
}
@media screen and (max-width: 1150px) {
	.ap-currentAddress{
		width: 95%;
		margin: auto;
		float: none;
		display: block;
	}
}
.ap-movingAddress{
	width: 47%;
	display: block;
	box-sizing: border-box;
	padding: 25px;
	float: right;
	background-color: #FFFFFF;
	position: relative;
	margin: 5px;
}
@media screen and (max-width: 1150px) {
	.ap-movingAddress{
		width: 95%;
		margin: 10px auto;
		float: none;
		display: block;
	}
}
.ap-currentAddress__title{
	font-size: 2.8rem;
	text-align: center;
}
@media screen and (max-width: 800px) {
	.ap-currentAddress__title{
		font-size: 2.3rem;
	}
}
.ap-movingAddress__title{
	font-size: 2.8rem;
	text-align: center;
}
@media screen and (max-width: 800px) {
	.ap-movingAddress__title{
		font-size: 2.3rem;
	}
}
.ap-currentAddress__typeWrapper,.ap-movingAddress__typeWrapper{
	display: flex;
	margin: 15px 15px 45px 15px;
}
@media screen and (max-width: 800px) {
	.ap-currentAddress__typeWrapper,.ap-movingAddress__typeWrapper{
		display: block;
	}
}
@media screen and (max-width: 414px) {
	.ap-currentAddress__typeWrapper,.ap-movingAddress__typeWrapper{
		margin: 0;
	}
}
.type{
	border: #95ccdc 15px solid;
	border-radius: 30px;
	height: 470px;
	padding: 15px;
	text-align: center;
	/* cursor: pointer; */
	/*transition:transform 0.1s ease 0s;*/
}
.type:hover{
	/* box-shadow:0px 0px 5px 3px rgba(0, 0, 0, 0.2)
	,0px 0px 5px 3px rgba(224, 224, 224, 0.2);
	background-color: #dcf2fa; */
}
.type--1{
	width: 100%;
	margin: auto;
	position: relative;
}
@media screen and (max-width: 1150px) {
	.type--1{
		width: 70%;
	}
}
@media screen and (max-width: 800px) {
	.type--1{
		width: 100%;
	}
	.type--1:last-child{
		margin-top: 35px;
	}
}
@media screen and (max-width: 414px) {
	.type--1{
		max-width: 300px;
		width: 100%;
	}
}
.type__recommended{
	position: absolute;
	background-color: #ff0101;
	font-size: 2.0rem;
	padding: 3px 5px;
	color: #ffffff;
	left: 0;
	bottom:38%;
}
.type--2{
	max-width: 100%;
	width: 97%;
	margin: auto;
}
@media screen and (max-width: 1150px) {
	.type--2{
		width: 70%;
	}
}
@media screen and (max-width: 800px) {
	.type--2{
		width: 100%;
	}
}
@media screen and (max-width: 414px) {
	.type--2{
		max-width: 300px;
		width: 100%;
	}
}
.type__figure{
	height: 250px;
	display: block;
	position: relative;
}

.type__image{
	position: absolute;
	left: 0;
  right: 0;
	top: 0;
	bottom: 0;
  margin: auto;
}
.type__text{
	font-size: 14px;
	line-height: 2;
}
.type__text > span{
	display: block;
	text-decoration: underline!important;
}
.type__prefecture{
	position: absolute;
	background-color: #FFFFFF;
	width: 250px;
	right: 4px;
	bottom: -100px;
	border: #95ccdc 3px solid;
	border-radius: 15px;
	padding: 15px;
	z-index: 5;
	display: none;
}
.type__prefecture::before{
	content: '';
  position: absolute;
  left: 110px;
  top: -15px;
  display: block;
  width: 0;
  height: 0;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #95ccdc;
  border-left: 15px solid transparent;
}

.type__guide{
	position: absolute;
	bottom: 35px;
	right:65px;
}
@media screen and (max-width: 800px) {
	.type__guide{
		position:unset;
		text-align: center;
	}
}
.type__link{
	text-decoration: underline!important;
}

.type-notice{
	color: #ff0101;
	text-align: center;
	font-size: 1.8rem;
}

.ap__links,.ap__links2{
	margin-top: 75px;
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
	letter-spacing: 5px;
	color: #7a7a7a;
}
@media screen and (max-width: 700px) {
	.ap__links{
		font-size: 1.4rem;
		padding: 0 25px;
		line-height: 2;
	}
	.ap__link2{
		font-size: 1.6rem;
		padding: 0 10px;
		line-height: 2;
		color: red;
	}
}
.ap__links span{
	text-decoration: underline;
}

.ap-SPmovingAddress{
	width: 95%;
	margin: auto;
	padding: 25px;
}
.ap-SPmovingAddress--list{
	list-style: none;
	padding: 0;
	margin: 0;
}
.as-currentAddress,.as-movingAddress{
	display: none;
}
.ap-subtitle{
	font-size: 1.8rem;
	font-weight: bold;
	cursor: pointer;
	border-bottom: 1px #000000 dotted;
	border-left: 7px #000000 solid;
	position: relative;
	background-color: #ffffff;
	padding: 10px 0 10px 10px;

}
.ap-subtitle::after{
	position: relative;
	display: inline-block;
	right: -5px;
	content: '▼';
	font-size: 1.5rem;
	margin-left: 5px;
	color: #ff0101;
}
.ap-subtitle.is-active::after{
	position: relative;
	content: '▲';
	right: -5px;
	font-size: 1.5rem;
	margin-right: 5px;
}
.ap-subtitle.last{
	margin-top: 45px;
}
.ap-SPmovingAddress--button{
	display: table;
	border: #95ccdc 7px solid;
	width: 100%;
	padding: 10px;
	margin-bottom: 15px;
	border-radius: 15px;
	position: relative;

}
.ap-SPmovingAddress--button > .sp_type__image,.ap-SPmovingAddress--button > span{
	display: table-cell;
	vertical-align: middle;
	font-size: 1.4rem;
	font-weight: bold;
}
.sp_type__image{
	width: 50px;
	vertical-align: middle;
}
.sp_type__image.cell{
	width: 40px;
	margin: 0 7px;
}
.ap-SPmovingAddress--button > .sp_type__image img{
	width: 100%;
}

.ap-SPmovingAddress--button > span{
	padding: 0 25px;
}
.ap-SPmovingAddress--button > span > span{
	display: block;
	margin-top: 10px;
}

.ap-SPmovingAddress--button > span > span.text{
	font-size: 1.3rem;
}
.ap-SPmovingAddress--button > span > span.text2{
	font-size: 1.2rem;
	background-color: #e5f4fa;
	padding: 10px;
}
.ap-SPmovingAddress--button > span.recommended{
	position: absolute;
	display: inline;
	right: -5px;
	top: -10px;
	background-color: #ff0101;
	color: #FFFFFF;
	padding: 5px 5px;
	border-radius: 15px;
	font-size: 1.4rem;
}
.ap-SPmovingAddress--button > span.text{
	display: block;
	background-color: aqua;
}

.pc-only{
	display:block;
}
.sp-only{
	display:none;

}
@media screen and (max-width: 767px) {
	.sp-only{
		display:block;
			background-color: #ffffff;
	margin-top: 15px;
	}
	.pc-only{
			display:none;
	}
}

.pc-only--inline{
	display:inline-block;
}
.sp-only--inline{
	display:none;
}
@media screen and (max-width: 1150px) {
	.pc-only--inline{
		display:block;
	}
}
@media screen and (max-width: 767px) {
	.sp-only--inline{
		display:inline-block;
	}
	.pc-only--inline{
			display:none;
	}
}