@charset "utf-8";

/*
============================================================
基本レイアウト設定
------------------------------------------------------------

■ デフォルトリセット
■ floatクリア
■ スクロール
■ テキストリンク
■ 汎用パーツ
■ レイアウトベース
■ ヘッダー
■ フッター
■ コンテンツ


============================================================
*/
.sp{display: none;}
.pc{display: block;}
/* ---------------------------------------------------------
■ デフォルトリセット
--------------------------------------------------------- */
h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, th, td, img, form {
	margin: 0;
	padding: 0;
	font-weight: normal;
	font-style: normal;
	font-size: 100%;
	line-height: 1.6;
	border: none;
	list-style-type: none;
}
img {
		vertical-align: top;
    -webkit-backface-visibility: hidden;
}


/* ---------------------------------------------------------
■ floatクリア
--------------------------------------------------------- */
span.clear {
	height: 1px;
	margin: 0;
	padding: 0;
	font-size: 1px;
	line-height: 1px;
	display: block;
	clear: both;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}
/* ---------------------------------------------------------
■ スクロール
--------------------------------------------------------- */
body {
	scrollbar-arrow-color:#ffffff;
	scrollbar-face-color:#ffffff;
	scrollbar-3dlight-color:#ffffff;
	scrollbar-darkshadow-color:#ffffff;
	scrollbar-highlight-color:#ffffff;
	scrollbar-shadow-color:#ffffff;
	scrollbar-track-color:#ccc;
}

/*スクロールバーの横幅指定*/
body::-webkit-scrollbar {
    width: 15px;
}
/*スクロールバーの背景色・角丸指定*/
body::-webkit-scrollbar-track {
	background: #eee;
}
/*スクロールバーの色・角丸指定*/
body::-webkit-scrollbar-thumb {
	border-radius: 0;
	background:#6ABBC2;
}





/* ---------------------------------------------------------
■ リンク
--------------------------------------------------------- */
a:link    { color: #008ac8; text-decoration: none; font-weight: bold; }
a:visited { color: #008ac8; text-decoration: none; font-weight: bold; }
a:hover   { opacity: 0.7; text-decoration: none; font-weight: bold; }
a:active  { opacity: 0.7; text-decoration: none; font-weight: bold; }

a:hover img{
	opacity: 0.8;
}



/* ---------------------------------------------------------
■ 汎用パーツ
--------------------------------------------------------- */
.red{color: red;}
.green{color: #0A6F6F;}
.yellow{color: #f5e642;}
.pink_thin{color: #fa949f;}
.pink_bright{color: #fb7483;}
.brown{color: #CD3F1A;}
.white{color: #fff;}
.bg_red{background: red;}

.small {font-size: 70%;}
.small_90 {font-size: 90%;}
.big {font-size: 120%}

.bold {font-weight: bold;}

.tx_center{text-align: center;}
.tx_right{text-align: right;}

.sen {text-decoration: line-through;}

.mgb_10{margin-bottom: 10px;}
.mgb_20{margin-bottom: 20px;}
.mgb_30{margin-bottom: 30px;}

.pdg_25{padding: 25px;}

p {
	text-align: justify;
	text-justify: inter-ideograph;
	margin-bottom: 20px;
}
.strong{
  font-weight: bold;
  background-color:#CD3F1A;
  color:#fff;
	font-size: 150%;
	padding: 5px;
}
.box_brown{
	width: 90%;
	background-color: rgba(205,63,26, 0.205);
	padding: 20px 20px 5px 20px ;
	margin: auto;
}
.round_box{
	border: #cd3f1a solid 5px;
	padding: 15px;
	padding-bottom: 0;
	font-size: 120%;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	max-width: 570px;
	margin: auto;
}
.round_box .brown{
	color: #CD3F1A;
	font-weight: bold;
}

ul{
	background-color: #fffceb;
	padding: 20px;
	padding-left: 40px;
	max-width: 870px;
	margin: auto;
	margin-bottom: 20px;
}
li{
	text-align: left;
	position: relative;
	color: #333333;
}

/*li::before {
	display: block;
  content: '';
  position: absolute;
  top: .4em;
  left: -1.2em;
  width: 8px;
  height: 5px;
  border-left: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}*/

.readmore{
  background-color: #fa949f;
  color: #fff;
  font-weight: bold;
  padding: 1px;
  padding-left: 5px;
  white-space: nowrap;
}

/* ---------------------------------------------------------
■ レイアウトベース
--------------------------------------------------------- */
body {
	margin: 0;
	padding: 0;
	text-align: center; /* 中央レイアウト */
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	color:#1b1b1b;
	font-size: 15px;
  background-color: #ffffff;
}

div#content_base {
	width: 100%;
	margin: 0 auto; /* 中央レイアウト */
	text-align: center;
	overflow: hidden;
}

div.contents{
	width: 900px;
	height: auto;
	margin: 0 auto; /* 中央レイアウト */
	text-align: left;
	position: relative;
	z-index: 2;
}
section{
	margin-bottom: 20px;
	clear: both;
}

img{
	width:100%;
	height:auto;
}

/* ---------------------------------------------------------
■ ヘッダー
--------------------------------------------------------- */

header {
    width: 100%;
    margin: 0 auto;
    text-align: center;
	background-color: #100964;
    /*background-color: #f5d53e;*/
    padding: 0;
	position: fixed;
	height: auto;
    z-index: 1;
    transition:0.2s;
}

header .wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    transition: height 0.3s;
}

.sanaru_logo{
	height:50px;
	margin: 5px 10px;
}

.sanaru_logo img{
	height:100%;
	width:auto;
	transition:0.2s;
}

/* ---------------------------------------------------------
■ フッター
--------------------------------------------------------- */
footer {
	width: 100%;
	margin: 50px 0 0; 
	height: 200px;
	text-align: center;
  background-color: #100964;
}

footer .foot_bg{
	width: 100%;
	height: 100%;

}

footer div#footlogo {
    width: 100%;
	max-width: 900px;
	height: 100%;
	text-align: center;
	margin: 0 auto ; /* 中央レイアウト */
	position: relative;
}

footer div#footlogo img{
	position: absolute;
	width: auto;
	height: auto;
	left: 50%;
	top: 50%;
	-webkit-transform: translate3d(-50%, -50%, 0);
	transform: translate3d(-50%, -50%, 0);
}

/* ---------------------------------------------------------
■ フェードイン
--------------------------------------------------------- */
.fadein {
	visibility: hidden;
}

.fadeInDown {
	visibility: visible !important;
	-webkit-animation-fill-mode:both;
	-ms-animation-fill-mode:both;
	animation-fill-mode:both;
	-webkit-animation-duration:1s;
	-ms-animation-duration:1s;
	animation-duration:1s;
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;

}

@-webkit-keyframes fadeInDown {
 0% { opacity: 0; -webkit-transform: translateY(30px); }
 100% { opacity: 1; -webkit-transform: translateY(0); }
}
@keyframes fadeInDown {
 0% { opacity: 0; -webkit-transform: translateY(30px); -ms-transform: translateY(30px); transform: translateY(30px); }
 100% { opacity: 1; -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); }
}

/* ---------------------------------------------------------
■ トップへ戻るボタン
--------------------------------------------------------- */

#page-top {
    position: fixed;
    bottom: 20px;
    right: 5px;
	z-index: 100;
	animation: gotop 3s linear infinite;
	width: 80px;
	height: 350px;
	transition: 0.2s;
}

#page-top img{
	float: right;
}

#page-top a:hover img{
	opacity: 1;
}

@keyframes gotop {
  0% { transform: translateY(0) }
  50% { transform: translateY(-10px) }
  100% { transform: translateY(0) }
}



.youtube {
	position: relative;
	float: right;
	width: 100%;
	padding-top: 56.25%;
}
.youtube iframe {
	position: absolute;
	top: 0;
	bottom:0;
	right: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
	filter: drop-shadow(15px 15px 10px rgba(0,0,0,0.3));
	-webkit-transform: scale(1.0);
}