@charset "utf-8";
/* CSS Document */

/***フォント
font-family: 'Noto Sans JP', sans-serif; wght@400;500;700;900
font-family: 'Noto Serif JP', serif; :wght@600;700;900

英字
font-family: "pf-venue", sans-serif;
font-weight: 700;
font-style: normal;
***/

/***色
黄　#fff104;
青　#0780db;
***/


html {  
    overflow-y:scroll;
	margin: 0;
	padding: 0;
	font-size: 6.25%; /* sets the base font to 10px for easier math */
    -webkit-text-size-adjust: none;
    
    height: 100%; /*フッター固定7/7*/
}  

body{
	margin: 0;
	padding: 0;
	background-color: #02243d;

	font-size: 18em;
	line-height:2;
	color:#fff;
	font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background: #02243d;
}

html,body { /*背景色用*/
/*  height: 100vh*/
}

body:after {
    z-index: -1;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-image: url("../images/bg_pc.jpg");
    background-repeat: no-repeat;
    background-position: top;
    background-size: auto;  
    background-color: #02243d;
}

@media screen and (max-width: 768px){
	html {font-size: 5%;}
	body {font-size: 16em;}    
}


.wrap {
	width: 100%;
	margin: 0 auto;
	padding: 0 1em;
	text-align: center;
	flex: 1 0 auto; /* Prevent Chrome, Opera, and Safari from letting these items shrink to smaller than their content's default minimum size. */
} 

.move {
	animation-name: fadein;
    animation-duration: 2s;
    
 }


@keyframes fadein {
from {
    opacity: 0;
    transform: translateY(20px);
}
to {
    opacity: 1;
    transform: translateY(0);
}	
}

.main{
	max-width: 900px;
	margin: 0 auto;
}

.btn_close {
	margin: 2em auto 0;
    padding: 0 1em;
}
.btn_close .item {
    display: inline-block;
}
.btn_close .item a {
    text-decoration: none;
	color: #fff;
}


.footer{
/*	width: 100%;*/
	margin: 0 auto 10px;
	text-align: center;
	font-size: 16rem;
	flex-shrink: 0; /* Prevent Chrome, Opera, and Safari from letting these items shrink to smaller than their content's default minimum size. */
	padding: 20px;
}


/****************************************

　フッター

*****************************************/

/****　ページトップへ戻る　****/
#pagetop{
    position: fixed;
    right: 15px;
    bottom: 5px;
	z-index: 1000;
	line-height: 1;
}

#pagetop a {
	text-decoration: none;
	color: #fff;
}

#pagetop a::after {
	font-family: "Font Awesome 5 Free";	
	content: "\f106";
	font-weight: 900;
	font-size: 4em;
}

footer{
	width: 100%;
	margin: 0 auto;
    padding: 2em 0 0;
	color: #fff;
	text-align: center;
	font-size: 18rem;
	bottom: 0;
}

footer .copy {
	display: block;
	padding: 1em;
    font-weight: 700;
	font-style: normal;
	line-height: 1.5;
}

footer .sns_link {
    margin-top: 40px;
}

footer .sns_link li {
    display: inline-block;
    margin: 1em 0.5em;
    text-align: center;
    vertical-align: top;
}

footer .sns_link li img {
    width: 100%;
}

footer .sns_link li.icon_toho {
    width: 45px;
}

footer .sns_link li.icon_x {
	position: relative;
	top: 5px;
    width: 35px;
}

footer .policy_link {
	margin: 1em auto 0;
}

footer .policy_link li {
	display: inline-block;
	margin: 0 auto 1em;
}

footer .policy_link li:not(:last-of-type)::after {
	content: "｜";
	margin: 0 0.5em;
}

footer .policy_link li a {
	text-decoration: none;
	color: #fff;
	font-size: 16rem;
	font-weight: 500;
}

footer .policy_link li a:hover {
	text-decoration: underline;
}


/********リンク********/
a{ color:#02243d;}
a:hover{}


a:hover img{
  opacity: 1;
  -webkit-animation: flash 1.5s;
  animation: flash 1.5s;
}
@-webkit-keyframes flash {
  0% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}
@keyframes flash {
  0% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}


/********テキスト********/

.uline {text-decoration: underline;}
.bold {font-weight: bold;}
.italic {font-style: italic;}

.right {text-align: right;}
.left {text-align: left;}
.cen {text-align: center;}

.point {color:rgb(213, 8, 86);}


/********共通********/

.floatL {float: left;}
.floatR {float: right;}
.clear {float: clear;}

.clearfix::after{
  content: "";
  display: block;
  clear: both;
}


/********改行********/

.pk {
	display: inline-block;
}

header {
    margin: 1.5em auto 0.5em;
    padding: 0 1em;
}

header .day {
	display: block;
	font-weight: 500;
	font-size: 24rem;
}

header .logo {
    display: block;    
    width: 60%;
    max-width: 360px;
    margin: 0.5em auto 0;
}

header .logo img {
    max-width: 100%;
}

/*header .title {
    margin: 0.5em auto 0;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.05em;
    line-height: 1.5;
	font-size: 40rem;
}*/

@media screen and (max-width: 500px) {
	header .day {
		font-size: 20rem;
	}
/*	header .title {
		font-size: 30rem;
	}*/
}



.box {
	width: 100%;
	margin: 1em auto 0;
	padding: 1em;
	background: #fff104;
	color: #02243d;
}

.title {
    margin: 0.5em auto 0;
	font-weight: 900;
	color: #02243d;
	letter-spacing: 0.05em;
    line-height: 1.5;
	font-size: 40rem;
}

@media screen and (max-width: 500px) {

	.title {
		font-size: 30rem;
	}
}

.lead {
	padding: 2em;
    text-align: left;
	font-weight: 500;

}

.lead .list_detail {
	margin: 2em auto;
}

.lead .list_detail li {
	margin-bottom: 0.5em;
	padding-left: 1em;
	text-indent: -1em;
	line-height: 1.5;
}
	
.entry > dt{
	padding: 0.5em 1em;
	background: #02243d;
    font-size: 24rem;
    text-align: center;
	line-height: 1.5;
	color: #fff;
	font-weight: 700;
}

.entry > dd{
	padding: 1em 2em 2em;
	border-top: none;	
	text-align: left;
}

@media screen and (max-width: 500px) {
	.lead {
		padding: 1.5em 1em;
	}
	.entry > dt{
		font-size: 20rem;
	}	
	.entry > dd{
		padding: 1em 1em 1.5em;
	}
}

.entry .link {
	display: block;
	margin: 0 auto 1em;
	padding: 0.5em;
	border: 2px solid #02243d;
	background: rgba(255,255,255,0.9);
	color: #02243d;
	text-align: center;
	font-size: 24rem;
	font-weight: 900;
	line-height: 1.5;
	word-break: break-all;
	text-decoration: none;
}
.entry .link:hover {
	text-decoration: underline;
}

@media screen and (max-width: 500px) {
	.entry .link {
		font-size: 22rem;
	}
}

.entry .note,
.entry .note2 {}

.entry .note {
	margin-bottom: 1em;
}

.entry .caution {
	margin: 1em auto 0;
}

.entry .caution li {
	margin-bottom: 0.5em;
	padding-left: 1em;
	text-indent: -1em;
	line-height: 1.5;
}

.entry .contact {
	text-align: center;
}

.entry .contact .tel {
	display: inline-block;
	margin: 0 0.5em;
}

.entry .contact .office {
	display: inline-block;
	margin: 0 0.5em;
}

.entry .contact .tel a {
	color: #02243d;
}


