@charset "utf-8";

/*行の高さをフォントサイズと同じにしています*/
body {
    line-height:180%;
	font-size:16px;
	color: #000;
	max-width: 480px;
	background: #fff;
font-family: kozuka-gothic-pr6n, sans-serif;/*Kozuka Gothic Pr6N R*/
font-weight: 400;
font-style: normal;
}


.snone,.none{
	display: none;
}

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

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

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

html { scroll-behavior: smooth;}

@media (max-width: 480px) {
   /* 横幅が480px以下の場合に適用するスタイル */

img{
    max-width: 480px;
	width: 100%;
}
	
}


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

#page_up a:hover{
	display: inline-block;
	   animation: hurueru .2s  infinite;
}
#page_up img{
	width: 60px;
	height: auto;
}

@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)}
}




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


#pan{
    display: flex;
	flex-wrap: wrap;
    width: 90%;
    margin: auto;
    padding-top: 15px;
    padding-bottom: 15px;
}

#pan li a{
    text-decoration: none;
    color: #555;
}

#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;
}

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

header{
	width: 100%;
	height: 50px;
	background: #fff;
	margin: auto;
	padding-top: 15px;
	padding-bottom: 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	z-index: 98;
}

header p#title,
header h1{
	background: url("../img/top_logo.webp") left center no-repeat;
	background-size: 50px;
	padding-left: 60px;
	margin-left: 20px;
	font-family: heisei-maru-gothic-std, sans-serif;
font-weight: 400;
font-style: normal;
	/*padding-top: 15px;
	padding-bottom: 15px;*/
	
}

header h1 .f18{
	font-family: heisei-maru-gothic-std, sans-serif;
font-weight: 800;
font-style: normal;
}


header #top_btn{
	width: 295px;
	height: 50px;
	overflow: hidden;
	position: relative;
	margin-right: 20px;
}

header #top_btns{
	/*display: flex;
	justify-content: space-between;*/
	display: none;
}
/*******************************************/

.drawer-hidden {
  display: none;
}

#hader_rap,
#keyimg_rap{
	position: relative;
}

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

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

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

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

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

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

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



nav{
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;/* メニューを画面の外に飛ばす */
  z-index: 97;
  background: #fff;
  transition: .5s;
}

#drawer-check:checked ~ nav{
  left: 0;/* メニューを画面に入れる */
}

/* ハンバーガーメニュー展開時、背景を固定 */
body.active {
  height: 100%;
  overflow: hidden;
}



nav ul{
	width: 100%;
	padding-top: 80px;
	margin-bottom: 30px;
}


nav ul a{
	display: block;
	border-top: 1px solid #aaa;
	width: 80%;
	color: #333;
	font-size: 16px;
	text-align: center;
	margin: auto;
	line-height: 60px;
	font-family: kozuka-gothic-pr6n, sans-serif;
    font-weight: 500;
    font-style: normal;
}

nav ul li:last-child > a{
	border-bottom: 1px solid #aaa;
}

nav .top_btns{
	width: 100%;
}

nav .top_btns .top_btn,
nav .top_btns .top_btn02{
	width: 220px;
	margin: auto;
	margin-bottom: 20px;
}

nav .top_btns .top_btn img,
nav .top_btns .top_btn02 img{
	width: 100%;
	height: auto;
}
/*******************************************/

.btns{
	width: 1100px;
	margin: auto;
	display: flex;
	justify-content: space-between;
		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;
}




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

#footer_btns{
	display: flex;
	justify-content: center;
	height: 150px;
	align-items: center;
	margin-bottom: 2px;
}


#footer_btns a{
	display: block;
	height: 150px;
	line-height: 150px;
	width: 50%;
	position: relative;
}

#footer_btns a.obj01{
	background: url("../img/guidance01_bt.webp") right center no-repeat;
	background-size: cover;
}
#footer_btns a.obj02{
	background: url("../img/guidance02_bt.webp") right center no-repeat;
	background-size: cover;
}


#footer_btns a span{
		color: #fff;
font-family: kozuka-gothic-pr6n, sans-serif;
font-weight: 700;
font-style: normal;
	font-size: 18px;
	background: url("../img/footer_icon.webp") right center no-repeat;
	background-size: 30px;
	padding-right: 45px;
	height: 55px;
	line-height: 55px;
	display: block;
	position: absolute;
	top: 50px;
}

#footer_btns a.obj01 span{
	right: 50%;
	margin-right: -60px;
}

#footer_btns a.obj02 span{
	right: 50%;
	margin-right: -80px;
}

footer{
	background: #1A9AB6;
	color: #fff;
	padding-top: 50px;
}

footer #footer_rap{
	width: 90%;
	margin: auto;
	margin-bottom: 50px;
}

footer #foote_box01{
	width: 100%;
}

footer #foote_box01 dt{
	font-family: kozuka-gothic-pr6n, sans-serif;
font-weight: 700;
font-style: normal;
	font-size: 16px;
	border-bottom: 1px dashed #ccc;
	padding-bottom: 25px;
	margin-bottom: 25px;
	letter-spacing: 0.1em;
}

footer #foote_box01 dt a{
	font-size: 25px;
}

footer #foote_box01 dd{
	font-family: kozuka-gothic-pr6n, sans-serif;
font-weight: 500;
font-style: normal;
	font-size: 15px;
}

footer #foote_box01 dd ul{
	padding-top: 15px;
}

footer #foote_box01 dd li{
	width: 280px;
	margin-bottom: 15px;
	background: #fff;
	color: #004C66;
	font-size: 16px;
	font-family: kozuka-gothic-pr6n, sans-serif;
font-weight: 500;
font-style: normal;
	text-align: center;
	height: 35px;
	line-height: 35px;
	border-radius: 17px;
}

footer #footer_box02{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 100%;
}

footer #footer_box02 a:hover{
	text-decoration: underline;
}

footer #footer_box02 li{
	margin-bottom: 5px;
}

footer #footer_box02 li li{
	list-style-type: disc;
}

footer #footer_box02 li ul{
	padding-left: 40px;
}

footer div.center{
	background: #fff;
	padding-top: 30px;
}

footer div.center img{
	width: 90%;
}

footer small{
	background: #fff;
	display: block;
	padding-top: 25px;
	text-align: center;
	color: #333;
	font-size: 12px;
}
