@charset "UTF-8";
* {
	box-sizing: border-box;
	transition: .3s;
}


body,
html {
	-moz-osx-font-smoothing: grayscale;
	-ms-overflow-style: scrollbar;
	-webkit-tap-highlight-color: transparent;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	background-color: #ccc;
	font-size: 1.2rem;
}
.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
}
img {
	/*width: 100%;*/
	height: auto;
	font-size: 1.0rem;
	display: block;
}
body {
	position: relative;
	width: 595px;
	margin: 0 auto;
	background-color: #FFF;
	font-family: 'Avenir','Helvetica Neue','Helvetica','Arial','Hiragino Sans','ヒラギノ角ゴシック',YuGothic,'Yu Gothic','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic';
}
body .base {
	position: relative;
	background: #eee;
	width: 93%;
}


@media print {

@page { 
	size: A4;
	margin: 12.7mm 9.7mm;
 } /* A4縦 */


.sp-hide { display: none; }

/* main */
main {
    position: relative;
    width: 100%;
    font-size: calc(100vw / 37.5)
}
main section {
    width: 100%;
}
main .sec-01,
main .sec-03 {
    background-color: #FFF;
}
main .sec-02,
main .sec-04 {
  background-color: #eee;
  background-image:
    radial-gradient(#fff 10%, transparent 10%),
    radial-gradient(#fff 10%, transparent 10%);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
}
.sec-02 {
    padding: 2vw 0 2vw;
}
.sec-03 {
    padding:2vw 2vw 2vw;
}
.sec-04 {
    padding:2vw 2vw 2vw;
}
.sec-04 h3,
.sec-03 h3,
.sec-02 h3 {
    font-size: 2.333333vw;
    line-height: 1.1667;
    font-weight: bold;
    text-align: center;
    color: #009c00;
}
.sec-04 p,
.sec-03 p,
.sec-02 p {
    font-size: 1.3333333vw;
    font-weight: bold;
    text-align: center;
    color: #009c00;
    padding: 0 0 21px;
}

/* header */
header {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	left: 0;
	background-color: #eee;
	z-index: 2;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
    width: 100%;
}

header article{ 
	width: 100%;
    margin: 0 auto;
 }

header .logo {
	position: absolute;
	width: 10rem;
	height: 10rem;
	padding-top:1vw ;
	border-radius:0 0 1vw 1vw;
	background-color: #FFF;
	z-index: 999;
}
header .logo a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 3px 0 0;
	text-align: center;
}
header .logo a img {
	margin: 0 auto 0.2vw;
	width: 4rem;
}
header .logo a span {
	font-size: 0.8rem;
	line-height: 0.8rem;
	font-weight: bold;
	display: block;
}
header .right {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 100%;
	margin: 0 auto;
	position: relative;
}
header .header-bar {
	width:100%;
	height: 80px;
	padding-bottom: 20px;
}
header .header-bar {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: flex-end;
	align-items: flex-end;
}
header .header-bar .read {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	margin-left: 11rem;
}
header .header-bar .read span {
	font-size: 0.2rem;
	font-weight: bold;
    display: block;
    width: 100%;
    line-height:0.6rem;
    width: 280px;
}
header .header-bar ul {
	display: -wbkit-flex;
	display: flex;
	width: 550px;
	margin-right: 280px;
}
header .header-bar ul li {
	padding: 0 7px;
}
header .header-bar ul li:not(:last-of-type){
	border-right: 1px solid #000;
}
header .header-bar ul li a {
	font-size: 0.2rem;
	color: #000;
	line-height: 0.8rem;
	display: block;
}

header .header-bar ul li a:hover {
	color: #3da0b4;
}

header .tel-box {
	height: auto;
	display: -webkit-flex;
	display: flex;
	padding:;
	-webkit-align-items: center;
	align-items: center;
	position: absolute;
    right: 10px;
}

header .tel-box .tel-logo {
	width: 65px;
	height: 2.33333rem;
	overflow: hidden;
	background-color: #009c00;
}
header .tel-box .tel-logo img {
	object-fit: content;
	object-position: center center;
	width: 100%;
	height: 100%;
}
header .tel-box .tel-num {
	font-size: 1.8rem;
    line-height: 2.33333rem;
    font-weight: bold;
}
header .sp-switch {
	width: 149px;
	height: 149px;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	text-align: center;
	background-color: #009c00;
	color: #FFF;
	margin: 0 0 0 2px;
	display: none;
}
header .sp-switch img {
	width: 80px;
	height: 80px;
	display: block;
}
header .sp-switch img.open {
	display: block;
}
header .sp-switch.active img.open {
	display: none;
}
header .sp-switch img.close {
	display: none;
}
header .sp-switch.active img.close {
	display: block;
}
header .header-menu {
	width: 100%;
    background-color: #FFF;
}
header .header-menu ul {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 100%;
	height: 4rem;
	margin: 0 auto;
	position: relative;
	padding-left: 10rem;
}
header .header-menu ul li {
	padding: 0 2vw;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
}
header .header-menu ul li.link-box {
	padding: 0;
	width: 11rem;
	height: 4rem;
	position: absolute;
	right: 0;
}
header .header-menu ul li.link-box.yellow {
	background-color: #ffe05f;
	right: 0;
}

header .header-menu ul li.link-box.yellow:hover {
	  transform: scale(1.05);
}

header .header-menu ul li.link-box.green {
	background-color: #009c00;
	margin: 0 0 0 0.2vw;
}

header .header-menu ul li.link-box.green:hover {
	  transform: scale(1.05);
}

header .header-menu ul li a {
	font-size: 1rem;
	line-height: 1;
	text-align:  center;
	font-weight: bold;
	color: #000;
}
header .header-menu ul li a:hover {
	color: #3da0b4;
}
header .header-menu ul li.link-box a {
	font-size: 1rem;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}
header .header-menu ul li.link-box.yellow a {
	color: #000;
}
header .header-menu ul li.link-box.green a {
	color: #FFF;
}
/* footer */
footer {
	position: relative;
}
footer .contact {
	padding: 3vw 0 3vw;
	background-color: #000;
	text-align: center;
}
footer .contact .btn-wrap {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: center;
	justify-content: center;
	margin: 0 0 1vw;
}
footer .contact .btn-wrap a {
	display: block;
	width: 30vw;
	height: 5vw;
	border-radius: calc(85px / 2);
	line-height: 5vw;
	font-size: 2vw;
	font-weight: bold;
	text-align: center;
	margin: 0 8px 8px 8px;
}
footer .contact .btn-wrap a.yellow {
	background-color: #yellow;
	color: #000;
}
footer .contact .btn-wrap a.yellow:hover {
	  transform: scale(1.05);
}


footer .contact .btn-wrap a.green {
	background-color: #009c00;
	color: #FFF;
}

footer .contact .btn-wrap a.green:hover {
	  transform: scale(1.05);
}


footer .contact .tel-box {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	margin: 0 auto 12px;
}
footer .contact .tel-box .tel-logo {
	width: 56px;
	height: 38px;
	background-color: #009c00;
	margin: 0 10px 0 0;
}
footer .contact .tel-box .tel-logo img {
	object-fit: cover;
	object-position: center center;
	width: 100%;
	height: 100%;
}
footer .contact .tel-box .tel-num {
	font-size: 36px;
	line-height: 1;
	font-weight: bold;
	color: #FFF;
}

footer .contact .info {
	font-size: 1vw;
	line-height: 1;
	font-weight: bold;
	color: #FFF;
}

footer .contact .tel-box > p {
	color: #FFF;
	font-size: 18px;
	line-height: 1;
	text-align: center;
}
footer .btm-link {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: flex-start;
	align-items: flex-start;
	-webkit-justify-content: center;
	justify-content: center;
	padding: 26px 0;
}
footer .btm-link .link-box {
	margin: 0 4vw;
}
footer .btm-link .link-box .head {
	font-size: 14px;
	font-weight: bold;
	line-height: 26px;
	margin: 0 0 5px;
	color: #333;
	width: 100%;
}
footer .btm-link .link-box .dd_wrap {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
footer .btm-link .link-box .dd {
	font-size: 0.833333vw;
	line-height: 1.3333vw;
	margin: 0;
}
footer .btm-link .link-box .dd li {
	position: relative;
}
footer .btm-link .link-box .dd li a {
	color: #333;
	display: block;
	width: 100%;
	padding: 0 0 0 1.5vw;
	background: url('../images/common/icn_arw-gray.png') .3em center no-repeat;
	background-size: auto .8em;
}

footer .btm-link .link-box .dd li a:hover {
	color: #3da0b4;
}

footer .footer-menu {
	height: 2vw;
	border-top: 2px solid #bdbdbd;
	border-bottom: 1px solid #949494;
	padding: 1vw 0 2vw 0	;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
}
footer .footer-menu ul {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 auto;
}
footer .footer-menu ul li {
	border-right: 2px solid #d9d9d9;
	height: 1vw;
}
footer .footer-menu ul li:last-of-type {
	border-right: none;
}
footer .footer-menu ul li a {
	padding: 0 1vw 0 1.333333vw;
	display: block;
	text-align: center;
	font-size: 1vw;
	line-height: 1vw;
	color: #000;
}

footer .footer-menu ul li a:hover {
	color: #3da0b4;
}

footer .copy {
	height: 53px;
	background-color: #333;
	color: #FFF;
	text-align: center;
	font-size: 0.8rem;
	line-height: 3rem;
}
footer .copy a {
	color: #FFF;
	font-size: 13px;
	line-height: 53px;
}

#page_top{
  width: 90px;
  height: 90px;
  position: fixed;
  right: 40px;
  bottom: 40px;
  background: #3f98ef;
  opacity: 0.6;
  border-radius: 50%;
}

#page_top a{
  position: relative;
  display: block;
  width: 90px;
  height: 90px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
content: '\f102';
font-size: 35px;
color: #fff;
position: absolute;
width: 35px;
height: 35px;
top: -10px;
bottom: 0;
right: 0;
left: 0;
margin: auto;
text-align: center;
}

a:hover {
	color: #3da0b4;
}

/*　以下レスポンシブ　*/
header div.sp-hide { display: none;}

footer .gnav { display: none; }

.gnav,
.gnav--honbu,
.gnav--links {
    display:none;
}


}







