@charset "utf-8";
/* CSS Document */


/* =====================基本設定===================== */

body {
	font-size: 18px;
	font-family:Yu Gothic,"游ゴシック",YuGothic,"游ゴシック体","ヒラギノ角ゴ Pro W3","メイリオ",sans-serif;
	color: #333;
	background:#fefef4;
	margin:0;
	padding: 0;
	-webkit-text-size-adjust:100%;
}

header,main,footer,section,article,nav {
  display: block;
}

img {
	border:0;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}


@media (max-width:768px) {

body {
	font-size:16px;
	-webkit-text-size-adjust:100%;
}

}


/* =====================文字設定===================== */

p,ul,li,ol,h1,h2,h3,h4,h5,h6 {
	line-height:1.8;
}


a {
	color:#333;
	font-weight:bold;
	text-decoration:none;
}

a:hover {
	opacity:0.7;
}


/* ===================== CLASS ===================== */


.w-container {
	width:92%;
	max-width:1280px;
	margin:auto;
}

.pc {
	display:block;
}

.sp {
	display:none;
}

.pc_txt_br {
	display:inline;
}

.sp_txt_br {
	display:none;
}

.btn_link {
	display:block;
	width:500px;
	max-width:90%;
	padding:10px 0;
	margin:1.5em auto;
	box-sizing:border-box;
	border-radius:15px;
	box-shadow: 0 2px 2px #366;
	background-color: #099;
	text-align:center;
	font-size:1.1em;
	letter-spacing: 4px;
	font-weight: normal;
	color:#fff;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}

.btn_link a,
.btn_link a:hover {
	color:#fff;
	font-weight: normal;
}

.btn_gm {
	background-image: url("../img/btn_bg_gm.gif");
}

.btn_web {
	background-image: url("../img/btn_bg_web.gif");
}

.btn_web_l {
	background-image: url("../img/btn_bg_web.gif");
	background-position: center left;
}

.btn_tw {
	background-image: url("../img/btn_bg_tw.gif");
}

.btn_twx {
	background-image: url("../img/btn_bg_twx.gif");
}

.btn_ins {
	background-image: url("../img/btn_bg_ins.gif");
}

.btn_fb {
	background-image: url("../img/btn_bg_fb.gif");
}


@media (max-width:768px) {

.pc {
	display:none;
}

.sp {
	display:block;
}

.pc_txt_br {
	display:none;
}

.sp_txt_br {
	display:inline;
}

}



/* ===================== header ===================== */

/* headerのフローティング */
.is-fixed {
	padding-top: 100px;
}

nav {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2;
	width: 100%;
}

nav .site-header {
	width: 100%;
	height: 100px;
	margin: 0 auto;
	background-color:#c4e5df;
	display:flex;
	justify-content:center;
}


/* スマホメニュー */
header {
	position:relative;
}

header .hamburger-menu {
	position:absolute;
	top:10px;
	right:10px;
}



/* ハンバーガーメニュー PC非表示 */

#menu-btn-check {
    display: none;
}

.menu-content {
    width: 40%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #c4e5df;
    transition: all 0.5s;/*アニメーション設定*/
}

/* ハンバーガーメニューボタン */
.hamburger-menu {
	margin-left:auto;
}

.menu-btn {
    position: relative;
    top: 0px;
    right: 0px;
    display: flex;
    height: 80px;
    width: 80px;
	border-radius: 100%;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #c4e5df;
}

.menu-btn img {
	margin-top: -35px;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 80px;
    border-radius: 3px;
    background-color: rgba(255, 255, 255, 0);
    position: absolute;
}
.menu-btn span:before {
	left: 15px;
    width: 50px;
}
.menu-btn span:after {
	left: 15px;
    width: 50px;
}

/* 閉じるボタン */
#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
	background-color: #FFF;
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
	background-color: #FFF;
    top: 0;
    transform: rotate(-45deg);
}

#menu-btn-check:checked ~ .menu-btn span img {
	display: none;
}

/* メニュー */
.menu-content ul {
    padding: 120px 10px 0;
}
.menu-content ul li {
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 18px;
    color:#333;
    text-decoration: none;
    padding: 20px 15px 20px 20px;
    position: relative;
	box-sizing:border-box;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #333;
    border-right: solid 2px #333;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 28px;
}

/* メニューを表示 */
#menu-btn-check:checked ~ .menu-content {
    left: 60%;/*メニューを画面内へ*/
}

	/* メニュー外側コンテンツカバー */
#menu-btn-check:checked ~ .hamburger-demo-closelabel{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 70;
}
#menu-btn-check:checked ~ .hamburger-demo-closelabel .hamburger-demo-cover{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 9997;
	background: rgba(3,3,3,.5);
	display: block;
	cursor: pointer;
}



@media(max-width:820px){

.is-fixed {
	padding-top: 60px;
}

nav .site-header {
	height: 60px;
}

.logo_area img  {
	height: 60px;
	width: auto;
}

.menu-btn img {
	margin-top: -27px;
}

.menu-btn {
	width: 50px;
	height: 50px;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
	width: 50px;
}

.menu-btn span:before {
	left: 10px;
    width: 35px;
}
.menu-btn span:after {
	left: 10px;
    width: 35px;
}

.menu-content {
    width: 70%;
}

#menu-btn-check:checked ~ .menu-content {
    left: 30%;/*メニューを画面内へ*/
}


}



/* ===================== footer ===================== */

.footer {
	width: 100%;
	background-color: #c4e5df;
	position: relative;
	background-image: url("../img/img_logo.png");
	background-repeat: no-repeat;
	background-position: top 20px center;
	background-size: 150px auto;
}

.footer .gotop {
	position: absolute;
	top: 20px;
	right: 20px;
}

.footer .gotop img {
	width: 90px;
}

.footer .txt_area {
	width: 500px;
	max-width: 92%;
	margin: 0 auto;
	padding: 180px 0 0px;
}

.footer .txt_area .ft_msg {
	font-size: 1.2em;
	font-weight: bold;
	line-height: 1.6em;
	padding-bottom: 10px;
}

.footer .txt_area .ft_txt {
	font-weight: bold;
}

.footer .footer-copy {
	font-size: 16px;
	text-align: center;
	padding: 20px 0 50px;
	box-sizing: border-box;
}


@media(max-width:820px){

.footer {
	background-size: 100px auto;
}

.footer .txt_area {
	padding: 130px 0 0px;
}

.footer .gotop img {
	width: 70px;
}

}
