@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@500&display=swap');
* {
	margin:0;
	padding:0;
	box-sizing: border-box;
	list-style:none;
	font-size:16px;
	font-family: 'Noto Serif JP', serif;
}
div#onsen_top {
    overflow: hidden;
}
.d_fex {
	display: flex;
	flex-wrap: wrap;
}
.ju_cntent {
	justify-content: space-between;
}
h2 {
	font-size: 1.8rem;
	line-height: 1;
	margin-bottom: 30px;
}
.w_100 {
	width: 100%;
}
.w_80 {
	width:80%;
}
.w_20 {
	width:20%;
}
.w_1000 {
	max-width: 1000px;
	margin: 0 auto;
}
.pa_100 {
	padding:100px 0;
}
.co_ff {
	color:#fff;
}
.tex_center {
	text-align: center;
}
.main {
	box-sizing: border-box;
}
/*リンクタグ*/
a {
	position: relative;
	display: inline-block;
	text-decoration: none;
	color:#fff;
}
.underline a:hover {
	color: #BBB;
}
.underline a::after { /*アンダーライン*/
 position: absolute;
 bottom: 0;
 left: 0;
 content: '';
 width: 100%;
 height: 1.5px;
 background: #fff;
 transform: scale(0, 1);
 transform-origin: left top;
 transition: transform .3s;
}
/*フェードイン　js絡み*/
.fadein_box {
	opacity: 0;
	transform: translate(0, 100px);
	transition: all 1.5s;
}
.scrollin {
	opacity: 1;
	transform: translate(0, 0);
}
/*なび*/
nav {
	background-color: #333;
	padding: 20px 0;
}
ul.g-nav-menu li {
	width: calc(100%/6);
	border-right: 1px solid #fff;
}
ul.g-nav-menu li a {
	font-size: 0.8rem;
}
ul.g-nav-menu li:first-of-type {
	border-left: 1px solid #fff;
}
ul.g-nav-menu li:last-of-type {
	border-right: none;
}
/*トップナビ　js絡み*/
.fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index:1000;
}
/*共通*/
section.sec02, section.sec03 {
	background-color: #969696;
	position:relative;
}
section.sec02:before, section.sec03:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.7);
	opacity: 0.5;
	display: block;
}
/*コンテンツ1*/
section.sec01 {
	position: relative;
	background-color: #000;
}
section .move {

}

section .move {
padding-top: 56.25%;
	width: 100%;
	position: relative;
}
section .move iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
}


.title_A {
	position: absolute;
	z-index: 10;
	top: 50%;
	left: 50%;
	text-align: center;
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	color:#fff;
}

/*コンテンツ2*/
section.sec02 {
	background: url(./img/01.jpg) no-repeat;
	background-position: center;
	background-size: cover;
}
.title_B h2 {
	margin: 0 0 0 15px;
	line-height: 1.3;
}
.sec02 h2 span {
	display: block;
	text-align: end;
}
/*　数字は全角で縦書き　*/
.title_B {
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	-o-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
	text-align: left;
	line-height: 1.5;
	width: 100%;
	background-color: #f7f7f7;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 30px 0 20px;
	height: 300px;
}
.title_B_02 {
	margin-top: 50px;
}
q {
	color: red;
	font-size: larger;
	font-weight: bold;
}
/*コンテンツ3*/
section.sec03 {
	background: url(./img/02.jpg) no-repeat;
	background-position: center;
	background-size: cover;
}
.sec03 li {
	background-color: rgba(255, 255, 255, 0.3);
	padding: 30px;
	border-radius: 2px;
	margin-bottom: 30px;
}
.phot_content {
	justify-content: space-between;
	align-items: center;
	text-align: left;
}
.link_pin {
	position: relative;
}
.link_pin a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-indent: -999px;
}
.sec03 picture {
	width: 150px;
	height: 150px;
	overflow: hidden;
}
.sec03 picture img {
	width: 100%;
	height: 100%;
}
.sec03 picture img {
	transition: 1s all;
}
.sec03 picture img:hover {
	transform: scale(1.2, 1.2);
	transition: 1s all;
}
.phot_content>div {
	width: calc(100% - 170px);
}
.d_fex.item_A picture {
	order: 2;
}
.d_fex.item_A >div {
	order: 1;
}
/*フッター*/
footer {
	background-color:#050103;
	color: #fff;
}
.f_info {
	justify-content: space-between;
}
.f_info div {
	background-color: rgb(255, 255, 255, 0.3);
	border: 1px solid rgb(255, 255, 255, 0.5);
	padding: 20px;
}
.f_info div:first-of-type {
	margin-left: 0;
}
.f_box_A {
	width:60%;
}
.f_box_B {
	width:30%;
}
.f_box_B li {
	line-height: 2;
}
footer p.copy {
	text-align: center;
	font-size: 0.8rem;
}
@media (min-width: 750px) {
.underline a:hover::after {
　/* headerアンダーライン付加*/
 background: #fff;
 transform: scale(1, 1);
}
.hed_botn {
 display: none;
}
}
 @media (max-width: 750px) {
 .pc_blok {
 display: none;
}
.sp_m10 {
margin: 0 10px;
}
.sp_mbtm10 {
margin-bottom:50px;
}
.f_box_A, .f_box_B {
 width: 100%;
}
.f_box_A {
 order: 2;
}
.f_box_B {
 order: 1;
}

/*スマフォ用ナビ*/
header {
 position: relative;
}
.sp_nav_box ul.g-nav-menu {
display: block;
 margin:30px;
}
.sp_nav_box ul.g-nav-menu li {
 width: 100%;
 text-align: left;
 border: none;
 border-bottom: 1px dashed #fff;
 padding: 10px 0 3px;
}
ul.g-nav-menu li a {
display: block;
}
.underline a:hover::after {
　/*アンダーライン取り消し*/
 transform: scale(0, 1);
}
 .hed_botn a {
 position: absolute;
 right: 15px;
 width: 25px;
 height: 25px;
 top: 20px;
}

/*バーガーメニュー*/
#hed_botn span, #hed_botn span:before, #hed_botn span:after {
 position: absolute;
 height: 3px;/*線の太さ*/
 width: 25px;/*長さ*/
 border-radius: 3px;
 background: #fff;
 display: block;
 content: '';
 cursor: pointer;
}
#hed_botn span:before {
 bottom: -8px;
}
#hed_botn span:after {
 bottom: -16px;
}



/*バーガーメニュー 閉メニュー*/
.sp_nav_box{
 width: 100%;
 position: absolute;
 top: 62px;
 background: rgba(43, 43, 43, 0.8);

}


/*ヘッダー 開メニュー　js付与*/
.sp-open {

z-index: 100;
}
	 
	 
}
