@charset "utf-8";

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

.snone,
.none{
	display: none;
}

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

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

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

html { scroll-behavior: smooth;}



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

#page_up a:hover{
	display: inline-block;
	   animation: hurueru .2s  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)}
}




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


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

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





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

.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:0;
	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: #333333;
  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: #fff;
}

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



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

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

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

nav {
	background: url( "../img/bg02.webp");
}

nav ul{
	width: 100%;
	padding-top: 50px;
}


nav ul a{
	display: block;
	border: 1px solid #fff;
	width: 170px;
	height: 80px;
	color: #fff;
	font-size: 16px;
	text-align: center;
	margin: auto;
	margin-bottom: 20px;
	line-height: 80px;
font-family: kozuka-gothic-pro, sans-serif;
font-weight: 500;
font-style: normal;
}

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

footer{
	width: 100%;
	background: url("../img/bg02.webp");
	padding-top: 50px;
}

footer h2{
	font-size: 30px;
		font-family: kozuka-gothic-pro, sans-serif;
font-weight: 700;
font-style: normal;
	  text-shadow: 3px 4px 3px rgb(61 70 70);
	margin-bottom: 30px;
	text-align: center;
	color: #fff;
}

footer .box_rap ul{
	width: 100%;
	margin: auto;
	padding-bottom: 80px;
}

footer .box_rap ul li{
	text-align: center;
	margin-bottom: 20px;
}

footer .box_rap ul li img{
	width: 90%;
	height: auto;
}

footer .rap{
	background: #fff;
	padding-top: 45px;
	padding-bottom: 5px;
}

footer .rap .box_rap02{
	width: 90%;
	margin: auto;
}

footer .rap .box_rap02 h4{
	max-width: 330px;
	font-size: 20px;
	color: #0059B2;
	font-weight: bold;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin: auto;
	margin-bottom: 25px;
}

footer .rap .box_rap02 h4 img{
	margin-bottom: 10px;
}

footer .rap .box_rap02 .box03{
	margin-bottom: 30px;
}

footer .rap .box_rap02 .box03 ul{
	text-align: center;
	margin-bottom: 25px;
}

footer .rap .box_rap02 .box03 li{
	margin-bottom: 5px;
	font-size: 15px;
}

footer .rap .box_rap02 .box03 li a{
	font-size: 16px;
	font-weight: bold;
}

footer .rap .box_rap02 .box03 p{
	text-align: center;
}

footer .rap .box_rap02 .box03 p img{
	margin-right: 10px;
}

footer .rap .box_rap02 .box04{
	width: 100%;
	margin: auto;
}

footer .rap .box_rap02 .box04 ul{
	max-width: 330px;
	margin: auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

footer .rap .box_rap02 .box04 ul li:nth-child(odd){
	width: 135px;
}

footer .rap .box_rap02 .box04 ul li:nth-child(even){
	width: 180px;
}

footer .rap .box_rap02 .box04 ul li a{
	background: url("../img/footer_icon02.webp") left center no-repeat;
	background-size: 5px;
	padding-left: 10px;
	color: #0059B2;
	font-size: 14px;
}


footer .rap .box_rap02 .box04 ul li a:hover{
	text-decoration: underline;
}


footer #copy{
	display: block;
	font-size: 11px;
	color: #000;
	text-align: center;
	padding-top: 35px;
}