@charset "utf-8";  

/* ------------------------------------------- CSS Information 
 File Name:      default.css 
 Author:         S.Yoshizawa
 Style Info:     ブラウザスタイルのリセットと基本設定 
----------------------------------------------------------- */  
  
/* ----------------------- Browser Default Initialization */  
html {  
    overflow-y: scroll;  
}
  
/* ----------------------- Basic Style */  
/* ------------ Font Style */  
body, a, table, td, th, div, pre, form, fieldset, dl, dt, dd, ul, ol, li, h1, h2, h2, h3, h5, h6, textarea, p, blockquote, input  {  
    font-family: "メイリオ",Meiryo,verdana,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック","MS PGothic",Sans-Serif;  
}  
  
/* ------------ A Style */
/* 未訪問リンクの色をblueにする。*/
a:link { text-decoration: underline; color: blue; }

/* 訪問済みリンクの色を薄い青にする。*/
a:visited { text-decoration: underline; color: #6666FF; }

/* マウスカーソルを乗せたリンクの色をblueにする */
a:hover { text-decoration: underline; color: blue ; }

/* 選択リンクの色を濃い青にする */
a:active { text-decoration: underline; color: #333399; } 


/* ------------ A Style white */

/* 未訪問リンクの色をblueにする。*/
a.white:link { text-decoration: underline; color: white; }

/* 訪問済みリンクの色を薄い青にする。*/
a.white:visited { text-decoration: underline; color: #eeeeff; }

/* マウスカーソルを乗せたリンクの色をblueにする */
a.white:hover { text-decoration: underline; color: white; }

/* 選択リンクの色を濃い青にする */
a.white:active { text-decoration: underline; color: white; } 


/* Corners rounded area */
.CornersRound {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
}

body{
	-ms-overflow-style: none;
	scrollbar-width: none;
}
body::-webkit-scrollbar{
	display:none;
}

.title{
	z-index: 2;
	width: 100%;
	height: 100%;
	border: none;
	background-color: white;
	color: navy;
	text-align: center;
	font-family: "Playfair Display",serif !important;
}
.titleL{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.naviContainer{
	position: absolute;
	width: 100%;
	background-color: navy;
	display: none;
	justify-content: space-evenly;
	opacity: 0;
	transition: opacity 2s ease-in-out;
	padding:20px 0;
	z-index: 4;
	border: none;
	top: 83px;
	border-radius: 10px;
}

.naviContainer.show{
	display: flex;
	z-index: 4;
	opacity: 1;
}


.navi{	
	width: fit-content;
	margin: 10px;
	cursor: pointer;
	font-family: "Playfair Display",serif;
	color: white;
	font-size: 17px;
	position: relative;
	padding-bottom: 5px;
}
.naviW{
	width: fit-content;
	margin: 10px;
	cursor: pointer;
	font-family: "Playfair Display",serif;
	color: navy;
	font-size: 17px;
	position: relative;
	padding-bottom: 5px;
}
.navi:hover{
	color: white;
	text-decoration: none;
}
.naviW:hover{
	color: navy;
	text-decoration: none;
}
.navi::before{
	content:'';
	background: white;
	width: 100%;
	height: 2px;
	position: absolute;
	left: 0;
	bottom: 0;
	margin:auto;
	transform-origin: right top;
	transform: scale(0,1);
	transition: transform .3s;
}
.naviW::before{
	content:'';
	background: navy;
	width: 100%;
	height: 2px;
	position: absolute;
	left: 0;
	bottom: 0;
	margin:auto;
	transform-origin: right top;
	transform: scale(0,1);
	transition: transform .3s;
}
.navi:hover::before{
	transform-origin: left top;
	transform: scale(1,1);
}
.naviW:hover::before{
	transform-origin: left top;
	transform: scale(1,1);
}
.search{
	position: absolute;
	right:12px;
	top:40px;
	color: black;
}
.titleTable{
	position: relative;
	padding: 0;
	margin:0;
	border: none;
	z-index: 5;
}
.titleWrap{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	background-color: navy;
	color: white;
}
.image{
	display: flex;
	width: 100%;
	height: auto;
	max-height: 450px;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	object-fit: cover;
	margin-bottom: 20px;
	filter: drop-shadow(0 2px 2px #000);
}
.content{
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	margin:50px 0;
	height:auto;
	opacity: 0;
	transform: translateY(15px);
	transition: all 0.5s linear;
}
.content.show{
	opacity: 1;
	transform: translateY(0);
}
.pictureL{
	display: flex;
	justify-content: center;
	align-items: center;
	flex:1;
	aspect-ratio: 12 / 10;
	height: auto;
	max-height:400px;
	overflow: hidden;
	border-bottom-right-radius: 15%;
	border-top-right-radius: 15%;
	box-shadow: 5px 10px 20px rgba(0, 0, 0,0.25 );
}
.pictureLW{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: auto;
	overflow: hidden;
	border-bottom-right-radius: 15%;
	box-shadow: 5px 10px 20px rgba(0, 0, 0,0.25 );
}
.pictureR{
	display: flex;
	justify-content: center;
	align-items: center;
	flex:1;
	aspect-ratio: 12 / 10;
	height:auto;
	max-height:400px;
	overflow: hidden;
	border-bottom-left-radius: 15%;
	border-top-left-radius: 15%;
	box-shadow:-5px 8px 15px rgba(0,0,0.25);
}
.pictureRW{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height:auto;
	overflow: hidden;
	border-bottom-left-radius: 15%;
	box-shadow:-5px 8px 15px rgba(0,0,0.25);
}
.pictureL img{
	display: block;
	width: auto;
	height: auto;
	object-fit: cover;
}
.pictureR img{
	display: block;
	width: auto;
	height: auto;
	object-fit: cover;
}
.textContent{
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	flex:1;
	margin:10px;
	padding: 20px 0;
	height: auto;
	min-height: 300px;
}
.textContent:before,.textContent:after{
	content:'';
	width: 30px;
	height:40px;
	position: absolute;
	display: inline-block;
}
.textContent:before{
	border-left: solid 1px black;
	border-top:  solid 1px black;
	top: 0;
	left:0;
}
.textContent:after{
	border-right: solid 1px black;
	border-bottom: solid 1px black;
	bottom: 0;
	right:0;
}
/*p{
	display: flex;
	align-items: center;
	width: fit-content;
	font-size: 12px;
	height: 8px;
	font-family: "Roboto",sans-serif;
	padding: 5px;
	border: 1px solid black;
	border-radius: 20px;
	transition: all 0.5s ease;
}
*/
p:hover{
	transform: scale(1.2);
	transition:all 0.3s ease;
}
.return{
	display: flex;
	align-items: center;
	width: fit-content;
	font-size: 12px;
	height: 8px;
	font-family: "Roboto",sans-serif;
	justify-content: center;
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 5px;
	padding-bottom: 5px;
	border: 1px solid black;
	border-radius: 20px;
	transition: all 0.5s ease;
	margin:0 10px;
	box-shadow: 4px 4px skyblue;
}
.return:hover{
	background-color: navy;
	color: aliceblue;
	border: 1px solid white;
	cursor: pointer;
	box-shadow:2px 2px skyblue;
}
.learn{
	display: flex;
	align-items: center;
	width: fit-content;
	font-size: 12px;
	height: 8px;
	font-family: "Roboto",sans-serif;
	justify-content: center;
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 5px;
	padding-bottom: 5px;
	border: 1px solid black;
	border-radius: 20px;
	transition: all 0.5s ease;
	margin:0 10px;
	box-shadow: 4px 4px skyblue;
}
.learn:hover{
	transform: scale(1.05);
	background-color: navy;
	color: aliceblue;
	border: 1px solid white;
	cursor: pointer;
	box-shadow:2px 2px skyblue;
}
.wideimage{
	border: none;
	height: fit-content;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	position: relative;
}
.menuBtn{
	width: 20px;
	height: 20px;
	border: 1px solid black;
	transition: transform 1s ;
}
.menuBtn:hover{
transform: scale(1.5);
}
.overlay{
	display: none;
	position: fixed;
	width:100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: white;
	color: navy;
	z-index: 1000;
	justify-content: flex-start;
	align-items: flex-start;
	text-align: center;
	overflow-y: auto;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.overlay::-webkit-scrollbar{
	display:none;
}
.overlay nav ul{
	list-style: none;
	padding: 0;
}
.overlay nav ul li{
	margin:20px 0;
}
.overlay nav ul li a{
	color: navy;
	font-size: 20px;
	text-decoration: none;
	font-family: "Playfair Display",serif ;
}
#closeMenu{
	position: absolute;
	top:30px;
	right:20px;
	font-size: 18px;
	background: none;
	border: none;
	color: navy;
	cursor: pointer;
	transition: .3s;
}
#closeMenu:hover{
	transform: scale(1.1);
}
#menuBtn{
	position: absolute;
	top:10px;
	right: 20px;
	font-size: 18px;
	background: none;
	border: none;
	color: black;
	cursor: pointer;
}
.navWrapper{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
}
#search{
	display: flex;
	flex-direction: row;
	cursor: pointer;
	width: 100%;
	height: 50px;
}
.navW{
	width:100%;
	justify-content: left;
}
.lang{
	position: absolute;
	top: 120px;
	right:20px;
	z-index: 3;
}
.list-item{
	display: block;
	text-align: left;
}
.mainImage{
	width: 100%;
	max-width: 1900px;
	height: auto;
	/*max-height: 900px;*/
	overflow: hidden;
	object-fit: cover;
	margin-bottom: 20px;
	/*filter:blur(10px)*/
}
.short{
	max-height:450px;
}