@charset "utf-8";

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

.snone,
.none{
	display: none;
}

.no-wrap{
	white-space: nowrap;
	display: inline-block;
}

.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 #ECFACF inset;
}

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

html { scroll-behavior: smooth;}


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


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

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

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




/*
.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: flex;
    width: 90%;
    margin: auto;
    padding-top: 15px;
    padding-bottom: 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;
}

.s_btn a{
	position: relative;
	overflow: hidden;
}

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

header #top_btn::after,
.s_btn 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-check {
  display: none;
}
.drawer-hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer-open {
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  position: relative;
  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: #333;
  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);
}

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



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

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


header{
	padding: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header h1 img,
header #title img{
	width: 200px;
	height: auto;
}

header nav ul{
	display: block;
	padding: 50px;
}

header nav li{
	font-size: 20px;
	margin-bottom: 20px;
	border-left: 3px solid #000;
}

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

header nav li a:hover{
	text-decoration: underline;
}

header nav .tell{
	display: block;
	padding-left: 50px;
}

header nav .tell li{
	font-size: 20px;
	border-left: none;
	margin-bottom: 15px;
}

header nav .tell li a{
	padding-left: 0;
	padding-right: 0;
}

footer .footer_rap{
	display: block;
	margin-bottom: 50px;
}

footer .footer_rap .box02,
footer .footer_rap .box01{
	width: 100vw;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 200px;
	color: #fff;
	font-size: 25px;
	text-align: center;
	line-height: 160%;
}

footer .footer_rap .box01{
	background: url("../img/company.webp") center center no-repeat;
	background-size: cover;
}

footer .footer_rap .box02{
	background: url("../img/staff.webp") center center no-repeat;
	background-size: cover;
}

footer #footer_nav ul{
	display: block;
	width: 90%;
	margin: auto;
	margin-bottom: 35px;
}

footer #footer_nav ul li{
	border-left: 3px solid #000;
	/*width: 200px;*/
	margin-bottom: 15px;
}

/*footer #footer_nav ul li:last-child{
	border-right: 1px solid #000;
}*/

footer #footer_nav ul a{
	padding-left: 25px;
	padding-right: 25px;
}

footer #footer_nav ul li:hover{
	text-decoration: underline;
}

footer .center{
	width: 90%;
	margin: auto;
	text-align: left;
}

footer .center img{
	width: 200px;
	height: auto;
}

footer address{
	width: 90%;
	margin: auto;
	text-align: left;
	padding-top: 25px;
	white-space: nowrap;
}

footer .tell{
	width: 90%;
	text-align: left;
	margin: auto;
	margin-bottom: 30px;
}

footer #copy{
	border-top: 1px solid #000;
	text-align: center;
	display: block;
	font-size: 13px;
	padding: 20px;
}