@charset "utf-8";

/*行の高さをフォントサイズと同じにしています*/
body {
    line-height:180%;
	font-size:15px;
	color: #000;
	max-width: 480px;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif,"メイリオ", Meiryo, "ＭＳ ゴシック", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ", "ProN W3", "sans-serif";
	background: #fff;
	cursor: default;
	letter-spacing: 0.1em;
}


h2,h3,h4,h5{
	font-family: "メイリオ", Meiryo, "ＭＳ ゴシック", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ", "ProN W3", "sans-serif";
}

.snone,
.none{
	display: none;
}


.en{
	font-family: "Jost",sans-serif;
}


/* スクロールの幅の設定 */
html::-webkit-scrollbar {
width: 15px;
height: 10px;
}

/* スクロールの背景の設定 */
html::-webkit-scrollbar-track {
border-radius: 5px;
box-shadow: 0 0 4px #8FC5E7 inset;
}

/* スクロールのつまみ部分の設定 */
html::-webkit-scrollbar-thumb {
border-radius: 5px;
background: #0059B2;
}

html { scroll-behavior: smooth;}



#page_up{
	position: fixed;
	right: 10px;
	bottom: 20px;
	z-index: 10;
}

#page_up a{
	transform: rotateZ( 0deg ) ;
	transition: .5s ;
	display: inline-block;
}

#page_up a:hover{
	transform: rotateZ( 360deg ) ;
}

#page_up a img{
	width: 58px;
	height: auto;
}


#information a{
	position: fixed;
	width: 100%;
	display: block;
	color: #fff;
	font-size: 20px;
	border-radius: 15px 15px 0 0;
	text-align: center;
	padding-top: 10px;
	padding-bottom: 10px;
	bottom: 0;
	background: #53B2D1 url("../img/arrow04.webp") right 10px center no-repeat;
	font-weight: bold;
}




/*
.btn:hover{
	   animation: hurueru .5s  infinite;
}



@keyframes hurueru {
    0% {transform: translate(0px, 0px) rotateZ(0deg)}
    25% {transform: translate(2px, 2px) rotateZ(1deg)}
    50% {transform: translate(0px, 2px) rotateZ(0deg)}
    75% {transform: translate(2px, 0px) rotateZ(-1deg)}
    100% {transform: translate(0px, 0px) rotateZ(0deg)}
}
*/
/*拡大ボタン*/


.zbtn{
	transition: all  0.3s ease;
}

.zbtn:hover{
	transform: scale(1.05,1.05);
}

/*********************************************************/



#pan{
    display: block;
    margin: auto;
    padding:15px;
	font-family: "メイリオ", Meiryo, "ＭＳ ゴシック", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ", "ProN W3", "sans-serif";
}

#pan li a{
    text-decoration: none;
    color: #555;
	font-size: 14px;
}

#pan li a:hover{
    text-decoration: underline;
}

#pan li{
    color: #555;
}

ol#pan > li:before{
    content: "»";
    padding-right: 10px;
    padding-left: 10px;
}

ol#pan > li:first-child:before {
  content: none;
}

ol#pan br{
	display: none;
}

/**************************************************************************/

#up_btn{
	position: fixed;
	right: 25px;
	bottom: 25px;
	z-index: 9999;
}



/*************************************************/

.btns{
	width: 885px;
	margin: auto;
		position: relative;
    overflow: hidden;
}

@keyframes shiny {
    0% { left: -20%; }
    10% { left: 140%; }
    100% { left: 140%; }
}

header #top_btn::after,
.btns a::after {
    content: '';
    position: absolute;
    top: -10%;
    left: -20%;
    width: 40px;
    height: 100%;
    transform: scale(2) rotate(20deg);
    background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, .5) 100%, rgba(255, 255, 255, 0) 0%);
    
    /* アニメーション */
    animation-name: shiny;
    animation-duration: 3s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}


.line_btn{
	text-align: center;
}

/***********ヘッダー*********************/


header .drawer-hidden{
	display: none;
}


/* ハンバーガーアイコンの設置スペース */
header .drawer-open {
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100;/* 重なり順を一番上に */
  cursor: pointer;
}

/* ハンバーガーメニューのアイコン */
header .drawer-open span,
header .drawer-open span:before,
header .drawer-open span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #333;
  transition: 0.5s;
  position: absolute;
}

/* 三本線のうち一番上の棒の位置調整 */
header .drawer-open span:before {
  bottom: 8px;
}

/* 三本線のうち一番下の棒の位置調整 */
header .drawer-open span:after {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
header #drawer-check:checked ~ .drawer-open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
header #drawer-check:checked ~ .drawer-open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

header #drawer-check:checked ~ .drawer-open span::after {
  top: 0;
  transform: rotate(-45deg);
}



header{
	padding-top: 10px;
}

header #pagetitle{
	text-align: center;
	padding-left: 10px;
	font-weight: bold;
	margin-bottom: 10px;
}

header #pagetitle p,
header #pagetitle h1{
	background: url("../img/logo.webp") left center no-repeat;
	padding-left: 40px;
}

header #pagetitle small,
header #pagetitle span{
	display: block;
}

header #pagetitle small{
	font-size: 13px;
}

header #pagetitle span{
	font-size: 18px;
}

header nav li{
	padding-left: 10px;
	padding-right: 10px;
}

header nav li a{
	display: block;
	font-size: 18px;
	padding: 10px;
	padding-left: 15px;
	border-bottom: 1px solid #ddd;
	background: url("../img/arrow01.webp") right 15px center no-repeat;
}


/********************************/
/*下層キーイメージ*/

#keyimg{
	background: url("../img/keyimg.webp") center center no-repeat;
	background-size: cover;
	height: 320px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}


#keyimg .bg{
	background-color: rgba(255,255,255,0.5);
	width: 390px;
	height: 110px;
	display: flex;
	justify-content: center;
	align-items: center;
}

#keyimg h1{
	font-size: 25px;
	padding-top: 60px;
	font-family: "メイリオ", Meiryo, "ＭＳ ゴシック", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ", "ProN W3", "sans-serif";
}




/*******************************/


footer{
	border-top: 2px solid #000;
	font-family: "メイリオ", Meiryo, "ＭＳ ゴシック", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ", "ProN W3", "sans-serif";
}

footer #footer_rap{
	padding: 10px;
	padding-top: 0;
}

footer #footer_rap .adress{
	padding-top: 45px;
}

footer #footer_rap .ftitale{
	font-size: 20px;
	margin-bottom: 30px;
}

footer #footer_rap .ftitale a{
	display: flex;
	align-items: center;
	justify-content: center;
}

footer #footer_rap .ftitale img{
	margin-right: 15px;
}

footer #footer_rap .ftitale a{
	font-size: 20px;
	line-height: 37px;
}

footer #footer_rap .obj01{
	margin-bottom: 20px;
	text-align: center;
}

footer #footer_rap .adress dl{
	margin-bottom: 10px;
}

footer #footer_rap .adress dt{
	text-align: center;
}

footer #footer_rap .adress dd{
	font-size: 16px;
	text-align: center;
}

footer #footer_rap .adress dd a{
	margin-right: 15px;
}

footer #footer_rap #links .rap{
	padding-left: 40px;
	padding-top: 45px;
	padding-bottom: 45px;
}


footer #footer_rap #links .rap a:hover{
	text-decoration: underline;
}

footer #footer_rap #links .rap dt a{
	background: url("../img/arrow03.webp") left center no-repeat;
	padding-left: 20px;
	color: #0096C7;
}

footer #footer_rap #links .rap dt{
	margin-bottom: 10px;
}

footer #footer_rap #links .rap dd{
	margin-bottom: 15px;
	padding-left: 20px;
}

footer #footer_rap #links .rap dd li{
	margin-bottom: 5px;
}

footer #copy{
	font-size: 14px;
	color: #535353;
	padding: 15px;
	margin-top: 20px;
	display: block;
	text-align: center;
}


