@charset "utf-8";
/* CSS Document */
html{
	scroll-behavior: smooth;
}
body{
	font-family: Tahoma, Geneva, "sans-serif";
	background-color: #fff;
	
/*====ページフェードイン====*/
    animation: fadeIn 1s ease 0s 1 normal;
    -webkit-animation: fadeIn 1s ease 0s 1 normal;
	
	margin: 0;
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}

}

/*===header_top===*/
header.top-nav{
	width: 100%;
	height: 50px;
	background-color: rgba(56,161,219,0.60);
	margin: 0;
	
}
.logo img{
	margin-left: 10px;
}
.nav-bar{
	display: flex;
	justify-content:space-between;
}
#navlink1{
	list-style-type: none;
	overflow: hidden;
}
#navlink1 li{
	width: 100px;
	height: 40px;
	background-color: #38a1db;
	text-align: center;
	margin: 5px;
	padding: 5px;
	float: left;
	line-height: 15px;
	border-radius: 5px;
	letter-spacing: 0.06em;
	transition: .5s cubic-bezier(0.37, 0, 0.63, 1);
}
#navlink1 li:last-child{
	line-height: 30px;	
}
#navlink1 li a{
	color:#e6b422;
	text-decoration: none;
	font-weight: bold;
	text-align: center;
}
#navlink1 li:hover{
	background: #fff;
  letter-spacing: 0.15em;
}
main{
	display: flex;
}
main img{
	margin-top: 245px;
	margin-left: 10px;
	width: 50%;
}
main h1{
	color: #e6b422;
	margin-left: 10px;
}

/*====ウィンドウサイズ可変文字====*/
@media screen and (min-width: 480px) {
	/* スマホ */
	h1{
		font-size: 1.5rem; 
	}
	p {
		font-size: 1.4rem;
	}
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
	/* タブレット */
	h1{
		font-size: 3.5rem;
	}
	p {
		font-size: 1.5rem;
	}
}
@media screen and (min-width: 1024px) {
	/* PC */
	h1{
		font-size: 4.0rem;
	}
	p {
		font-size: 1.6rem;
	}
}


/*＝＝＝左スクロールnav＝＝＝*/
#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
  top:50px;
    right: -100%;
  width:55%;
    height: 100vh;/*ナビの高さ*/
  background:rgba(56,161,219,0.40);
    /*動き*/
  transition: all 0.8s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 60%;
    height:120vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:45%;
    left:15%;
    transform: translate(-15%,-60%);
	display: flex;
	flex-wrap: wrap;	
}

/*リストのレイアウト設定*/

#g-nav li{
  list-style: none;
    text-align: center;
margin: 10px;
}

#g-nav li a{
  color: #fff;
  text-decoration: none;
	margin-left: 0;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}


/*====ホバーで縮小アニメーション====*/
#g-nav li a:hover{
	box-shadow: 0px 0px 15px 2px rgba(0, 0, 0, 0.2);
  transform: scale(0.9);
	transition: all 0.4s;
	border-radius: 10px;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1{
  position:fixed;
   /* z-index: 9999;*//*ボタンを最前面に*/
  top:280px;
  right:-80px;
  cursor: pointer;
	width:50% ;
	max-width: 500px; /* 最大幅 */
   min-width: 30px; /* 最小幅 */
  transition: .4s cubic-bezier(0.5, 1, 0.89, 1);
}
.openbtn1:hover {
  transform: scale(1.1);
}
.openbtn1 p img{
	width: 50%;
}
  
/*main設定*/
.title figre{
	height: 50%;
}


/*==footer==*/

.pagetop{
	text-align: right;
	margin-bottom: 50px;
}
.wrapper{
    min-height: 100vh;
    position: relative;/*←相対位置*/
	padding-bottom: 120px;/*←footerの高さ*/
    box-sizing: border-box;/*←全て含めてmin-height:100vhに*/
}

footer{
	width: 100%;
    bottom: 0; /*下に固定*/
	height: 30px;
	background-color: #38a1db;
	text-align: center;
	position: fixed;
}
footer p small{
	color: #e6b422;
	line-height:30px;
	
}
/***追従するトップへ戻るボタン***/
#pagetop {
    position: fixed;
    right: 0;
    bottom: 0;
    text-indent: -9999px;
    margin: 0;
}
#pagetop a {
    position: relative;
    display: block;
    width: 45px;
    height: 45px;
    background: rgba(0,0,0,1);
    transition: opacity .6s ease;
	border-radius: 10px;

}
#pagetop a:hover {
    opacity: .3;
}
#pagetop a::before {
    position: absolute;
    top: 7px;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 14px;
    height: 14px;
    margin: auto;
    content: '';
    transform: rotate(-45deg);
    border-top: 1px solid #FFF;
    border-right: 1px solid #FFF;
}
@media screen and (max-width:767px) {
#pagetop a {
    width: 45px;
    height: 45px;
}
#pagetop a:before {
    top: 5px;
    width: 10px;
    height: 10px;
}
}


/***トップへ戻るボタンここまで***/








/*===Rinn Bunner ページ===*/
#Rinn{
	background-color: rgba(0,0,0,0.7);
	background-image: url( "../images/Rinn/02.jpg");
	background-blend-mode:saturation;
	background-size:cover ;
	width: 100%;
	height: 592px;
}
#wrapper01{
	width: 100%;
	text-align: center;
	margin-top: 50px;
	font-family:YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	color: #fff;
}
#wrapper01 h1{
	font-weight: bold;
	font-size: 2.5em;
	margin-bottom: 10px;
}
#wrapper01 p{
	font-weight: bold;
	font-size: 1.2em;
}
#wrapper01 img{
	width: 35%;
}
#wrapper01 figcaption{
	margin-top: 20px;
	font-weight: bolder;
}
#Rinn{
	animation: fadein 3s forwards;
}

@keyframes fadein {
	0% {opacity: 0}
	100% {opacity: 1}
}


/*===Cafe Rovinj ページ===*/
#rovinj{
	background-color: rgba(0,0,0,0.7);
	background-image: url( "../images/rovinj/Rovinj2all.jpg");
	background-blend-mode:screen;
	background-size:cover ;
	width: 100%;
	height: 592px;
}
#wrapper02{
	width: 100%;
	text-align: center;
	margin-top: 50px;
	font-family:YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	color: #fff;
}
#wrapper02 h1{
	font-weight: bold;
	font-size: 2.5em;
	margin-bottom: 10px;
}
#wrapper02 p{
	font-weight: bold;
	font-size: 1.2em;
}
#wrapper02 img{
	width: 35%;
}
#wrapper02 figcaption{
	margin-top: 20px;
	font-weight: bolder;
}
#rovinj {
	animation: fadein 3s forwards;
}

@keyframes fadein {
	0% {opacity: 0}
	100% {opacity: 1}
}


/*===Ohkunoshima ページ===*/
#usagi{
	background-color: rgba(0,0,0,0.7);
	background-image: url( "../images/Ohkunoshima/IMG_2065.JPG");
	background-size:cover ;
	width: 100%;
	height: 592px;
}
#wrapper03{
	width: 100%;
	text-align: center;
	margin-top: 50px;
	font-family:YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	color: #ec6800;
	text-shadow: 1px 1px 1px #000;
}
#wrapper03 h1{
	font-weight: bold;
	font-size: 2.5em;
	margin-bottom: 10px;
}
#wrapper03 p{
	font-weight: bold;
	font-size: 1.2em;
}
#wrapper03 img{
	width:35%;
}
#wrapper03 figcaption{
	margin-top: 20px;
	font-weight: bolder;
}
#usagi {
	animation: fadein 3s forwards;
}

@keyframes fadein {
	0% {opacity: 0}
	100% {opacity: 1}
}

/*===Toyotomi ページ===*/
#toyotomi{
	background-color: rgba(0,0,0,0.7);
	background-image: url("../images/toyotomi/02noroshi3.jpg");
	background-size:cover ;
	background-blend-mode:color-dodge;
	width: 100%;
	height: 592px;
}
#wrapper04{
	width: 100%;
	text-align: center;
	margin-top: 50px;
	font-family:YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	color: #A49824;
	text-shadow: 1px 1px 1px #fff;
}
#wrapper04 h1{
	font-weight: bold;
	font-size: 2.5em;
	margin-bottom: 10px;
}
#wrapper04 p{
	font-weight: bold;
	font-size: 1.2em;
}
#wrapper04 img{
	width: 35%;
}
#wrapper04 figcaption{
	margin-top: 20px;
	font-weight: bolder;
}
#toyotomi {
	animation: fadein 3s forwards;
}

@keyframes fadein {
	0% {opacity: 0}
	100% {opacity: 1}
}

/*===banner PV===*/
#banner-page{
	background-color: #111;
	height: 650px;
}
#banner-page p{
	color: #fff;
}
#banner-page{
	margin-top: 20px;
	width: 100%;
	background-color: #000;
	text-align: center;
	border-radius: 30px;
	border-color: #000;
	box-shadow:  0 10px 25px 0 rgba(60, 194, 235, 0.5);
}
@media(max-width:400px){ 
	.toshi-table{
	width:30%;
}
}
