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

/*--------------------
base
---------------------*/
@font-face {
    font-family: '游ゴシック';
    font-style: normal;
    font-weight: 400;
 }
html{
    font-size: 62.5%;
}
body{   
    color:#333333;
    font-family: "游ゴシック Medium",'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
    font-feature-settings: "palt";
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-size: 1.6rem;
    line-height: 1;
}
a{
    color: #333;
    text-decoration: none;
    transition: all .2s;    
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
}
a:hover{
    opacity:0.5;
}
img{
    width:100%;
    height:auto;
}
input,textarea{
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;
    outline:none;
    color:#333333;
    font-size: 1.6rem;
}
p{
	text-indent: 1em;
}
/*--------------------
parts
---------------------*/
.text_center{
    text-align:center;
}
.text_left{
	text-align: left;
}
.text_right{
	text-align: right;
}
.img_pc{
	display: none;
}
.inner{
	padding: 0 4%;
	margin: 0 auto;
	box-sizing: border-box;
}
.inner2{
	padding: 0 4%;
	margin: 0 auto;
	box-sizing: border-box;	
}
.br_pc{
	display: none;
}
/*--------------------
header,nav
---------------------*/
/* header*/ 
.header{
	position: fixed;
	top:0;
	left:0;
	width: 100%;
	height: 70px;
	z-index: 100;
	box-sizing: border-box;
	border-bottom: 1px solid #f3f3f3;
	background-color: #fff;
}
.logo{
	width: 96px;
	height: auto;
	margin-left: 20px;
}

/* nav */
.header_nav{
    display: none;
    position: fixed;
    top:0;
    right:0;
    z-index: 140;  
    box-sizing: border-box; 
    width:45%;
    height: 120%;
    padding: 80px 10px 0;
    background-color: rgba(255,255,255,0.97);
}
	.nav_item{
		margin-bottom: 40px;
		font-size: 1.4rem;
		text-transform: uppercase;
	}
.nav_item.current a{
	color: #EC85B4;
}
 .btn_trigger{
		-moz-appearance: none;
		-webkit-appearance: none;
		appearance: none;
		border: none;
		background-color: #fff;
		display: block;
		position: fixed;
		top: 6px;
		right: 12px;
		z-index: 150;
    width: 40px;
    height: 60px;
	}
	.btn_trigger>span{
		display: block;
		position: absolute;
		width: 28px;
		height: 2px;
		background-color: #EC85B4;
		transition: all 0.5s;
	}
  .btn_trigger>span:first-of-type{
		top: 28%;
  }
  .btn_trigger>span:nth-of-type(2){
    top: 48%;
  }
  .btn_trigger>span:last-of-type{
    top: 68%;
  } 
	.btn_trigger.active>span:first-of-type{
		transform: rotate(45deg);
		top: 48%;
  }
  .btn_trigger.active>span:nth-of-type(2){
    opacity: 0;
  }
  .btn_trigger.active>span:last-of-type{
		transform: rotate(-45deg);
    top: 48%;
  }
	.form_search{
		padding: 4px;
		position: relative;
		margin-bottom: 40px;
		font-size: 1.4rem;
		border: solid 1px #b7b3b3;
		box-sizing: border-box;
	}
	.form_parts{
		width: 100%;
		border: none;
		box-sizing: border-box;
	}
	.btn_search{
		position: absolute;
		top: 6px;
		right: 4px;
		padding: 0;
		color: #b7b3b3;
		font-size: 1.6rem;
		background-color: #fff;
		border: none;
	}
	.sns{
		display: flex;
		justify-content: space-between;
	}
/*--------------------
hero-image
---------------------*/
.slider{
	width: 100%;
	height: 160vw;
}
.slider img{
	width: 100%;
	height: 160vw;
	object-fit:cover;
	overflow: hidden;
	position: relative;
	font-family: 'object-fit: cover;'; 
}
/*.ofi{
	font-family: 'object-fit: cover;';
}*/
	.slider::after{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000000;
    opacity: 0.2;
    display:block;
		mix-blend-mode: luminosity;
}
.hero_ad{
	position: absolute;
	bottom: 4%;
	right: 9%;
	color: #fff;
	z-index: 180;
	text-shadow:0 0 30px #000,0 0 5px #000;
	font-size: 1.4rem;
}
.hero_img{
/*	height: 100vh;
	width: auto;
	min-width: 460px;*/
	position: relative;
	margin: 70px auto 80px auto;
	box-sizing: border-box;
}
.hero_info{
	position: absolute;
	top: 15%;
	left: 9%;
	right: 9%;
	z-index: 90;
	color: #fff;
}
.hero_title{
	width: 160px;
	padding-bottom: 50px;
	margin: 0 auto;
}
.hero_text{
	text-shadow:0 0 30px #000,0 0 5px #000;
	margin-bottom: 20px;
	line-height: 1.7;
	font-family: "游明朝 Demibold","小塚明朝 Pro M", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "serif";
}
/*--------------------
main_nav
---------------------*/
.main_nav_item{
	display: flex;
	margin-bottom: 40px;
}
.main_nav_item.reverse{
	flex-direction: row-reverse;
	align-items: center;
	text-align: left;
}
.main_nav_img{
	width: 50%;
	overflow: hidden;
}
.main_nav_title{
	width: 50%;
	height: calc(50vw - 20px);
	display: flex;
	flex-direction: column;
	text-align: center;
}
.main_nav_title.reverse{
	text-align: left;
}
.main_nav_icon img{
	height: calc(50vw - 80px); 
	width: auto;
	padding-bottom: 10px;
}
.btn_more{
	font-size: 1.4rem;
	border: solid #333 1px;
	text-align: center;
	padding: 10px 8px;
	margin: 0 8px;
}
/*--------------------
footer
---------------------*/
.footer{
	background-color:  #F3F3F3;
	padding-bottom: 50px;
	box-sizing: border-box;
}
.footer_nav{
	padding: 50px 0;
}
.footer .nav_list{
	margin-bottom: 40px;
}
.footer .nav_item{
	font-size: 1.4rem;
	margin-bottom: 16px;
}
.footer .nav_item:last-of-type{
	margin-bottom: 0;
}
.bar{
	margin: 20px auto;
	width: 30px;
}
.copy{
	font-size: 1.4rem;
	line-height: 1.4;
	margin: 0 auto;
}
/*--------------------
btn-top
---------------------*/
.btn_top{
	display: none;
	position: fixed;
	right: 30px;
	bottom: 10px;
	width: 60px;
	height: 60px;
	transition: all .2s ease;
}
.btn_top a{
	opacity: 1;
}
.btn_top:hover{
	transform: translateY(-10px);
}
/*---------------------------------------------------------
SP/lower pageここから      ::::::::::::::christ:::::::::::::
------------------------------------------------------*/
/*--------------------
hero-image
---------------------*/
.lower .slider{
	height: 60vw;
}
.lower .slider img{
	height: 60vw;
}
.lower .hero_info{
	position: absolute;
	top: 70px;
	right: 0;
}
.lower .hero_title{
	width: 100%;
	margin: 0;
	padding: 0;
}
/*--------------------
navigation
---------------------*/
.nav_small_list{
	margin-bottom: 40px;
}
.nav_small_item{
	margin-bottom: 20px;
	padding-left: 3em;
	font-size: 1.2rem;
}
/*--------------------
section
---------------------*/
.contents{
	line-height: 1.6;
}
.sub_title{
	margin-bottom: 40px;
}
h4{
	padding-top: 50px;
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.4;
}
h4 span {
	display: block;
	font-size: 1.2rem;
}
h4 span img{
	display: block;
	height: 12px;
	width: auto;;
	margin: 0 auto;
}
hr{
	border:solid 2px #EC85B4; 
	width: 115px;
}
.float_img{
	padding-right: 4%;
	padding-bottom: 50px;
	width: 50%;
	overflow: hidden;
	float: left;
}
.float:after{
  display: block;
  content: "";
  clear: both;
}
h5{
	font-size: 1.7rem;
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 2.0;
	text-align: center;
}
h5.mb0{
	line-height: 1;
	margin-bottom: 0;
}
h6{
	padding: 8px 4%;
	line-height: 1.6;
	font-weight: bold;
	text-align: center;
}
.info_cont{
	padding-bottom: 30px;
	border-bottom: solid 1px #f3f3f3;
	margin-bottom: 30px;
}
.chapter{
	font-size: 1.6rem;
	line-height: 1.6;
}
.icons{
	width: 28px;
	padding: 6px 6px 0;
}
.question dt{
	padding-left: 3.8rem;
	text-indent: -3.8rem;
}
.question dd{
	padding-left: 3.8rem;
	text-indent: -3.8rem;
}
.chronology{
	margin-bottom: 40px;
}
.chronology .img_pc{
	display: none;
}
.info_item{
	display: flex;
	flex-direction: column;
	padding-bottom: 30px;
	border-bottom: solid 1px #f3f3f3;
	margin-bottom: 30px;
}
.info_item:last-of-type{
	margin-bottom: 0;
}
/*.info_item.reverse{	
	flex-direction: column-reverse;
}*/
.info_item .info_cont{;
	margin-bottom: 0;
	padding-bottom: 0;
}
.info_item.vertical{
	flex-direction: row;
}
.info_item.vertical.reverse{
	flex-direction: row-reverse;
}
.boys .info_item{
	border-bottom: none;
}
.boys .info_img{
	width: 50%;
	padding-right: 4%;
}
.info_item.vertical.reverse .info_img{
	padding-right: 0;
	padding-left: 4%;
}
.boys .info_text{
	width: 50%;
}
.spot_item{
	display: flex;
	flex-direction: column;
	margin-bottom: 30px;
}
.spot_title{
	color: #EC85B4;
	font-weight: bold;
	text-align: center;
}
.spot_item.bg_white{
	padding: 0;
	margin-bottom: 4%;
}
.spot_item.bg_white:last-of-type{
	margin-bottom: 0;
}
.red{
	color: red;
}
.bg_grey{
	background: #f3f3f3;
}
.bg_grey_gra{
	background: linear-gradient(to bottom, #f3f3f3 99%, #FFF);
}
.bg_grey .info_item{
	border-bottom: none;
	margin-bottom: 0;
}
.bg_white{
	background-color: #fff;
	margin-bottom: 20px;
	padding-top: 20px;
}
.bg_white:last-of-type{
	margin-bottom: 50px;
}
.bg_white p{
	padding:  4% 4% 20px;
}
.bg_white p:last-of-type{
	position: relative;
}
.spot .bg_white p{
	padding: 0 4%;
}
.illust3{
	width: 50px;
	position: absolute;
	bottom: -30px;
	right: 20px;
}
.nanban{
	background-image: url(../images/swirl_sp.png);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	padding: 30px 0;
}
.picture{
	margin-bottom: 16px;
}
.loop{
	position: relative;
	z-index: 1;
	bottom: -15px;
	width: 70px;
	animation: wave 20s linear infinite;
	transform: translateX(100vw);
	overflow: hidden;
}
@keyframes wave {
	100% {
			transform: translateX(0);
	}
}
.ship{
	animation: ship 3s ease-in infinite;
	overflow: hidden;
}
@keyframes ship{
	50%  { transform: rotate(10deg) translateY(-5px);}
}
.wave{
	position: relative;
	z-index: 5;
	overflow: hidden;
}
.bg_font img{
	overflow: hidden;
	width: 100%;
	object-fit: cover;
	height: 13vw;
	display: inline-block;
}
.tensyo{
	background-image: url(../images/boys-bg.png);
	background-size: 60%;
	background-repeat: no-repeat;
	background-position: center;
}
.text_small{
	font-size: 1.4rem;
}
.bg_pink{
	background-image: url(../images/bg_pink_sp.png);
	background-size: 80%;
	background-repeat: no-repeat;
	background-position: bottom;
	padding: 60px 4% 80px;
	box-sizing: border-box;
	overflow: hidden;
}
/*-------------------------------------------------------------------------------------------------------------------
SP::::::::::::::castle:::::::::::::::::::::::::::::::::::::::
--------------------------------------------------------------------------------------------------------------------*/
.bb_none{
	border-bottom: none;
}
.question.shogun{
	background-image: url(../images/castle_bg01.png);
	background-repeat: no-repeat;
	background-position: center;	
}
.h_pc{
	display: none;
}
.address{
	display: flex;
}
.address dt{
	width: 4.5em;
}
.address dd{
	width: calc(100% - 4.5em);
}
.fa-train{
	padding: 0 3px;
}
.fa-bus{
	padding: 0 3px;
}
.f_pink{
	color: #EC85B4; 
}
.f_pink dt{
	display: inline-block;
	width: 5em;
	margin-left: 2em;
}
.f_pink dd{
	display: inline-block;
}
.castle{
	background-image: url(../images/castle_illust.png);
	background-repeat: no-repeat;
	/*animation: castle 5s ease 1s 5 reverse;
	opacity: 0*/
}

/*@keyframes castle { 
  100% { opacity: 1;}
}*/

.bg_fence{
	background-image: url(../images/castle_bg_fence.png);
	background-repeat: no-repeat;
	padding: 120px 0 50px;
}
.half_text.bg_white{
	margin-bottom: 0;
}
.half_image.bg_white{
	margin: 0;
}
.bg_white dl{
	padding: 0 4%;
}
.bg_white dl:last-of-type{
	padding-bottom: 4%;
}
/*-------------------------------------------------------------------------------------------------------------------
SP::::::::::::::street:::::::::::::::::::::::::::::::::::::::
--------------------------------------------------------------------------------------------------------------------*/
.question.hotel{
	background-image: url(../images/street_bg.png);
	background-repeat: no-repeat;
	background-position: center;	
	background-size: contain;
}
.loop2{
	animation: walking 30s linear infinite;
	transform: translateX(100vw);
	overflow: hidden;
}
@keyframes walking {
	100% {
			transform: translateX(-100vw);
	}
}
/*-------------------------------------------------------------------------------------------------------------------
SP::::::::::::::great_people:::::::::::::::::::::::::::::::::::::::
--------------------------------------------------------------------------------------------------------------------*/
.people05{
	background-image: url(../images/great_05.png);
	background-position: right bottom;
	background-repeat: no-repeat;
	background-size: 40%;
}
.people08{
	background-image: url(../images/great_08.png);
	background-position: right bottom;
	background-repeat: no-repeat;
	background-size: 50%;
}
.people09{
	background-image: url(../images/great_09.png);
	background-position: right bottom;
	background-repeat: no-repeat;
	background-size: 60%;
}
/*-------------------------------------------------------------------------------------------------------------------
タブレット版ここから
--------------------------------------------------------------------------------------------------------------------*/
@media screen and (min-width: 640px) {
/*--------------------
parts
---------------------*/

/*--------------------
header,nav
---------------------*/	
	.header_nav{
		padding: 100px 20px 20px 20px;
		width: 30%;
	}
	.nav_item{
		font-size: 1.6rem
	}
	
/*--------------------
hero-image
---------------------*/
	.slider{
		height: 80vw;
}
	.slider img{
		height: 80vw;
}
/*--------------------
main_nav
---------------------*/
	.main_nav_title{
		height: 335px;
	}
	.main_nav_icon img{
		height: calc(50vw - 250px); 
		padding: 20px 0;
		min-height: 220px;	
	}
	.main_nav_item{
		margin: 0 auto 60px auto;
		max-width: 680px;
	}
/*--------------------
footer
---------------------*/
	.footer_nav{
		padding: 100px 0 80px;
	}
	.footer .nav_list{
		display: flex;
		justify-content: center;
	}
	.footer .nav_item{
		font-size: 1.5rem;
		margin-right: 20px;
		margin-bottom: 0;
	}
	.footer .nav_item:last-of-type{
		margin-right: 0;
	}	
/*---------------------------------------------------------
タブレット/lower pageここから      ::::::::::::::christ:::::::::::::
------------------------------------------------------*/
	/*--------------------
hero-image
---------------------*/
.lower .slider{
	height: 30vw;
}
.lower .slider img{
	height: 30vw;
}
	h3 .img_pc{
		display: block;
	}
	h3 .img_sp{
		display: none;
	}
	h4{
		font-size: 2.8rem;
	}
	hr{
		width: 240px;
	}
	.lower .hero_title {
		width: 50%;
		position: absolute;
		top: 0;
		right: 0;
	}
/*--------------------
section
---------------------*/
	.float{
		display: flex;
	}
	.float_img{
		width: 40%;
	}
	.float_text{
		width: 60%;
	}
	.info_cont{
		border-bottom: none;
		margin-bottom: 50px;
		padding-bottom: 50px;
	}
	.chronology .chronology_img{
		padding: 0 4% 120px;
		background-image: url(./../images/chronology_bg_pc.jpg);
		background-size: 100%;
		background-repeat: no-repeat;
		background-position: bottom ;
	}
	.chronology .img_pc{
		/*padding: 0 4% 120px;*/
		margin: 0 auto;
		display: block;
	}
	.chronology .img_sp{
		display: none;
	}
	.question{
		width: 60%;
		padding: 50px 0;
		margin: 0 auto;
	}
	.info_item{
		flex-direction: row;
		padding-bottom: 50px;
		margin-bottom: 50px;
		border-bottom: none;
	}
	.info_item.reverse{
		flex-direction: row-reverse;
	}
	.half_image{
		width: 50%;
		margin: auto 0;
	}
	.half_text{
		width: 50%;
		margin: auto 0;
		padding: 0 4%;
	}
	d1{
		width: 70%;
		margin: 0 auto;
	}
	.bg_font img{
		object-fit: cover;
		height: 6vw;
		overflow: hidden;
		width: auto;
	}
	.loop{
		width: 140px;
		bottom: -29px;
	}
	.box3{
		display: flex;
		margin-right: -3%;
	}
	.bg_white:last-of-type{
		margin-bottom: 20px;
	}
	.box3 .bg_white{
		width: 33.333%;
		margin-right: 3%;
		display: flex;
		flex-direction: column;
	}
	.treasure{
		margin-top: auto;
		font-family: 'object-fit: contain;'; 
	}
	.illust3{
		bottom: -160px;
	}
	.nanban{
		padding: 100px 0;
	}
	.boys.row2{
		display: flex;
		flex-wrap: wrap;
		margin-right: -4%;
		box-sizing: border-box;
	}
	.boys.row2 .info_item{
		width: 50%;
		flex-direction: row;
		padding-right: 4%;
		box-sizing: border-box;
	}
	.boys .info_text{
		padding-left: 4%;
	}
	.boys .info_img{
		padding-right: 0;
	}
	.info_item.vertical.reverse .info_img{
		padding-left: 0;
	}
	.bg_pink{
		padding: 30px 16% 60px;
		background-image: url(../images/bg_pink_pc.jpg);
		background-position: center;
		background-size: 95%;
	}
	.spot2{
		display: flex;
		margin-right: -4%;
		flex-flow: wrap;
		box-sizing: border-box;
	}
	.spot2 .spot_item{
		width: 46%;
		margin-right: 4%;
		box-sizing: border-box;
	}
	.spot2 .bg_white{
		padding: 0;
		margin-right: -4%;
	}
	.spot2 .bg_white.spot_item{
		width: 46%;
		margin-right: 4%;
	}
	.spot2 img{
		height: 30vw;
		object-fit:cover;
		font-family: 'object-fit: cover;'; 
	}

/*---------------------------------------------------------
タブレット/::::::::::::::castle:::::::::::::
------------------------------------------------------*/
	.family_tree{
		width: 80%;
		margin: 0 auto;
	}
	.spot_item.bg_white.mb0{
		margin-bottom: 0;
	}
	.castle{
		background-size: cover;
	}
	.bg_fence{
		padding: 130px 0 50px
	}
	.half_text.bg_white{
		margin: 0;
		padding: auto;
	}
	.half_text.bg_white .f_pink{
		padding-top: 4%;
	}
	.half_image.bg_white{
		margin: 0;
		padding: auto;
	}
} 
/*-------------------------------------------------------------------------------------------------------------------
PC版ここから
--------------------------------------------------------------------------------------------------------------------*/
@media screen and (min-width:1025px){
/*--------------------
parts_PC(small)
---------------------*/
	.inner{
		max-width: 1024px;
		margin:0 auto;
		padding: 4%;
		box-sizing: border-box;
	}
	.main_title.inner{
		padding-bottom: 0;
	}
	.img_pc{
		display: block;
	}
	.img_sp{
		display: none;
	}
	.br_pc{
		display: block;
	}
	.layout_outer{
		display: flex;
	}
	.layout_right{
		flex: 1;
		overflow: hidden;
	}
	.layout_left{
		width: 230px;
	}
	.mr1em{
		margin-right: 1em;
	}
	
/*--------------------
header,nav_PC(small)
---------------------*/
	.header{
		width: 230px;
		height:100%;
		border-right: solid 1px #f3f3f3;
		box-shadow: 0 2px 4px rgba(243,243,243,0.3);
		display: flex;
		flex-direction: column;
	}
	.logo{
		width: 220px;
		padding-top: 30px;
		margin: 0;
		height: 20%;
	}
	.btn_trigger{
		display: none;
	}
	.header_nav{
		display: block;
		position: static;
		padding: 0 20px 20px 20px;
		height: 80%;
		width: 100%;
	}


/*--------------------
hero-image_PC(small)
---------------------*/	
	.slider{
		width: calc(100vw - 230px);
		height: 768px;
	}
	.slider img{
		width: 100%;
		height: 768px;
		object-fit:cover;
		overflow: hidden;
		font-family: 'object-fit: cover;'; 
}
	.hero_info{
		top: 10%;
		left: calc(230px + 9%);
	}
	.hero_img{
		margin-top: 0;
		height: 100%;
		overflow: hidden;
		width: auto;
		margin-bottom: 40px;
	}
	.hero_title{
		width: 268px;
		padding-bottom: 80px;
	}
	.hero_text{
		font-size: 1.8rem;
		line-height: 2.0;
	}
/*--------------------
main_nav_PC(small)
---------------------*/
	.main_nav_item{
		margin-bottom: 80px;
		max-width: 780px;
}
	.main_nav_img{
		width: 450px;
		height: 300px;
		overflow: hidden;
	}
	.main_nav_img img{
		width: 450px;
		height: 300px;
		transition: all 2s ease;
	}
	.main_nav_img img:hover{
		transform: scale(1.1);
	}
	.main_nav_title{
		margin: 0 auto;	
		width: 330px;
		height: 307px;
	}
	.main_nav_icon img{
		padding: 24px 0;
		height: 200px;
		width: auto;
	}
/*--------------------
btn_more_PC(small)
---------------------*/
	.btn_more{
		width: 100px;
		font-size: 1.6rem;
		padding: 10px 80px;
		margin: 0 auto;
		overflow: hidden;
		transition: all .5s ease;
	}
	.main_nav_title a{
		opacity: 1;
	}
	.btn_more:hover{
		color: #fff;
		background-color: #333;
		border: none;
	}

	
/*--------------------
footer_PC(small)
---------------------*/
	.footer_nav{
		padding: 160px 0 80px;
	}
	.footer .nav_item{
		font-size: 1.6rem;
		margin-right: 30px;
	}
  
/*-------------------------------------------------------------------------------------------------------------------
PC/CHRIST PAGEここから
--------------------------------------------------------------------------------------------------------------------*/
/*--------------------
hero-image_PC(small)
---------------------*/	
.lower .slider{
	height: 20vw;
	min-height: 200px;
	}
.lower .slider img{
	height: 20vw;
	min-height: 200px;
	}
.lower .hero_title {
	width: 60%;
	position: absolute;
	top: -70px;
	right: 0;
}
/*--------------------
section_PC(small)
---------------------*/
.inner{
		width: 780px;
	}
.inner2{
	padding: 0 4%;
}
h4{
	font-size: 3.6rem;
}
h5{
	font-size: 2.4rem;
}
.float_img{
	width: 30%;
	margin-bottom: 80px;
}
.float_text{
	width: 70%;
}
.float .info_cont{
	margin-bottom: 0;
}
.chronology_img .img_pc{
	width: 780px;
	margin: 0 auto;
}
.icons{
	width: 40px;
}
.question{
	width: 640px;
	padding: 50px 0;
	line-height: 2.4;
	padding-left: 5rem;
	text-indent: -5rem;
}
.info_cont{
	margin-bottom: 80px;
}
.info_item{
	margin-bottom: 80px;
}
.info_item:last-of-type{
	margin-bottom: 80px;
}
.bg_font{
	height: 80px;
	overflow: hidden;
	width: auto;
}
.bg_font img{
	height: 80px;
	object-fit: cover;		
}
.loop{
	width: 160px;
	bottom: -42px;
}
.boys .info_item{
	margin-bottom: 0;
}
.spot2{
	padding-bottom: 50px;
}
.spot2.row3 .spot_item.bg_white{
	width: 29.333%;
}
.picture{
	width: 800px;
}
.picture.right{
	margin: 0 0 0 auto;
}
.spot2 img{
	height: 20vw;
}
.bg_pink{
	width: 780px;
	background-size: 780px;
	margin: 0 auto;
	padding: 50px 120px;
	/*padding: 10% 16% 10%;*/
}
	/*---------------------------------------------------------
PC/::::::::::::::castle:::::::::::::
------------------------------------------------------*/
	.h_pc{
		display: block;
	}
	.info_item.reverse.inner.mb30{
		margin-bottom: 30px;
	}
/*---------------------------------------------------------
PC/::::::::::::::street:::::::::::::
------------------------------------------------------*/
	.question{
		padding-left: 0;
	}
	.question h5{
		padding-left: 0;
		text-indent: 0;
	}
	}


@media screen and (min-width:1440px){
	.inner{
		width: 1100px;
	}
/*--------------------
hero_image_PC(big)
---------------------*/
	.slider{
		height: 50vw;
	}
	.slider img{
		height: 50vw;
	}	
/*--------------------
main_nav_PC(big)
---------------------*/
	.main_nav_item{
		margin-bottom: 80px;
		max-width: 1100px;
}
	.main_nav_img{
		width: 650px;
		height: 440px;
	}
	.main_nav_img img{
		width: 650px;
		height: 440px;
	}
	.main_nav_title{
		margin: 0 auto;	
		width: 374px;
		height: 444px;
	}
	.main_nav_icon img{
		padding: 53px 0;
		height: 300px;
		width: auto;
	}

/*-------------------------------------------------------------------------------------------------------------------
PC/HRIST PAGEここから
--------------------------------------------------------------------------------------------------------------------*/
.inner{
	max-width: 1100px;
}
.lower .hero_title{
	width: 50%;
}
/*--------------------
section_PC(big)
---------------------*/
.chronology_img .img_pc{
	width: 1100px;
	padding: 0;
	background-size: contain;
}
.question{
	width: 700px;
}
.loop{
	width: 200px;
	bottom: -66px;
}
.picture{
	width: 1100px;
}
.bg_pink{
	width: 1100px;
	margin: 0 auto;
	padding: 70px 200px;
	background-size: 1100px;
}
.spot2 .spot_item img{
	height: 360px;
}
.spot2 .bg_white img{
	height: 18vw;
}
}

