body {
	color: #323f3d;
	vertical-align: baseline;
	font-family: 'IBM Plex Sans JP',"メイリオ", "Meiryo","Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro",  sans-serif;
	height: 100%;
	margin:0;
	padding:0;
    line-height: 160%;
}
p{
    font-size: 18px;
}
a{
	transition: all  0.2s ease-out;
    color: #323f3d;
    text-decoration: none;
}
a:hover {
	text-decoration:none;
}
@media (min-width: 751px) {
a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
}
}
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}
.description .img-responsive {
  margin-bottom: 1em;
}
.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}
ul,ol{
    list-style: none;
    margin: 0;
    padding: 0;
}
:root {
    --main-color: #0c9b7f;
    --sub-color: #ffffb8;
}
/***********************************************
 wrapper
************************************************/
#wrapper{
    overflow: hidden;
}
/***********************************************
 header
************************************************/
header {
    width: 90%;
    margin: 0 auto;
    max-width: 980px;
    padding: 18px 0;
}
header .row{
    display: flex;
    align-items: flex-end;
}
header .row a.corp-logo {
    width: 125px;
    height: 53px;
    background: url(../images/common/corp-logo.png) no-repeat;
    background-size: contain;
    display: block;
    margin-right: 30px;
}
header .row #globalnavi ul{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
header .row #globalnavi ul li{
    border-left: 1px solid #666;
    border-right: 1px solid #666;
}
header .row #globalnavi ul li+ li{
    border-left: 0;
    border-right: 1px solid #666;
}
header .row #globalnavi ul li a{
    font-family:'メイリオ', 'Meiryo', sans-serif;
    font-size: 13px;
    color: #336699;
    line-height: 100%;
    display: block;
    padding: 4px 15px;
}
header .row #globalnavi ul li a:hover{
    text-decoration: underline;
}
/***********************************************
 smartnavi
************************************************/
#smartnavi{
    position: absolute;
	height:1px;
	width:100%;
	z-index:9997;
    top: 0;
    right: 0;
}
.hm_menu_check {
	display: none;
}
.hm_btn {
	position: relative;
	top:10px;
	right:10px;
	width: 110px;
	height: 109px;
	cursor: pointer;
	display: block;
	margin :0;
    z-index: 2;
    background: url(../images/common/navi.svg) no-repeat;
    background-size: cover;
    transition: all  0.2s ease-out;
    float: right;
}
.hm_btn::after {
	bottom: 60px;
}
.hm_btn::before {
	top: 60px;
}
.hm_btn::before,
.hm_btn::after {
    position: absolute;
	content: '';
    left: 0;
    right: 0;
    margin: auto;
	width: 30px;
	height: 2px;
	background: var(--main-color);
	display: block;
	-webkit-transition: -webkit-box-shadow 0.2s linear, -webkit-transform 0.2s 0.2s;
	transition: box-shadow 0.2s linear, transform 0.2s 0.2s;
}
.hm_menu_wrap {
	width :100%;
	height :auto;
	position: absolute;
	left: -110%;
	top: -110px;
	-webkit-transition: left 0.3s ease-in-out;
	transition: left 0.3s ease-in-out;
	background: #80708d;
	height: calc(100vh - 88px) !important;
	background-size:cover!important;
    overflow-y: scroll;  
    -webkit-overflow-scrolling: touch; 
}
.hm_menu_wrap:before {
	position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 20px;
    background: #fbd3a7;
}
.hm_menu_check:checked ~ .hm_btn::before {
	background: var(--main-color);
	-webkit-box-shadow: transparent 0 0 0;
	box-shadow: transparent 0 0 0;
	-webkit-transform: rotate(45deg) translate3d(-4px, -5px, 0);
	transform: rotate(45deg) translate3d(-4px, -5px, 0);
}
.hm_menu_check:checked ~ .hm_btn::after {
	background: var(--main-color);
	-webkit-transform: rotate(-45deg) translate3d(-5px, 5px, 0);
	transform: rotate(-45deg) translate3d(-5px, 5px, 0);
}
.hm_menu_check:checked ~ .hm_menu_wrap {
	left: 0;
	position:relative;
}
.hm_menu_check:checked ~ .hm_btn {
    background: url(../images/common/navi2.svg) no-repeat;
    background-size: cover;
}
.hm_menu_inner{
    width: 90%;
    max-width: 960px;
    margin: 0 auto;
}
.hm_menu_inner a.smart-logo{
    display: block;
    width: calc(100% - 220px);
    margin: 20px auto;
    text-align: center;
}
.hm_menu_inner a.smart-logo img{
    width: 100%;
    height: auto;
    max-width: 380px;
}
.hm_menu_inner ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.hm_menu_inner ul li{
    width: 49%;
    margin-bottom: 10px;
}
.hm_menu_inner ul li a{
    display: block;
    border: 2px solid #fff;
    font-size: 24px;
    line-height: 130%;
    font-weight: 500;
    color: var(--sub-color);
    padding: 10px;
    border-radius: 10px;
    box-sizing: border-box;
    position: relative;
}
.hm_menu_inner ul li a:before{
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto;
    width: 22px;
    height: 38px;
    background: url(../images/common/ar.svg) no-repeat;
    background-size: cover;
}
.hm_menu_inner ul li a span{
    position: relative;
    padding-left: 84px;
    padding-right: 30px;
    min-height: 74px;
    display: flex;
    align-items: center;
}
.hm_menu_inner ul li a span:before{
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 77px;
    height: 74px;
}
.hm_menu_inner ul li a .pd1:before{
    background: url(../images/common/period-1.svg) no-repeat;
    background-size: cover;
}
.hm_menu_inner ul li a .pd2:before{
    background: url(../images/common/period-2.svg) no-repeat;
    background-size: cover;
}
.hm_menu_inner ul li a .pd3:before{
    background: url(../images/common/period-3.svg) no-repeat;
    background-size: cover;
}
.hm_menu_inner ul li a .pd4:before{
    background: url(../images/common/period-4.svg) no-repeat;
    background-size: cover;
}
.hm_menu_inner ul li a .pd5:before{
    background: url(../images/common/period-5.svg) no-repeat;
    background-size: cover;
}
.hm_menu_inner ul li a .pd6:before{
    background: url(../images/common/period-6.svg) no-repeat;
    background-size: cover;
}
.hm_menu_inner .coming{
    display: block;
    color: #fff;
    text-align: center;
    font-size: 30px;
    margin: 50px 0 0 0;
}
/***********************************************
 footer
************************************************/
#footer{
    padding: 100px 0 50px 0;
    text-align: center;
    position: relative;
}
#footer nav ul{
    width: 90%;
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
#footer nav ul li{
    border-left: 1px solid #666;
    border-right: 1px solid #666;
    margin-bottom: 10px;
}
#footer nav ul li+ li{
    border-left: 0;
    border-right: 1px solid #666;
}
#footer nav ul li a{
    font-family:'メイリオ', 'Meiryo', sans-serif;
    font-size: 12px;
    color: #336699;
    line-height: 100%;
    display: block;
    padding: 4px 15px;
}
#footer nav ul li a:hover{
    text-decoration: underline;
}
#footer small{
    font-size: 11px;
    color: #a0a0a0;
    margin: 35px 0 0 0;
    display: block;
}
#footer #up-bt{
    position: absolute;
    top: -15px;
    right: 15px;
    filter: drop-shadow(0 3px 1px rgba(206,206,206,1));
}
@media screen and (max-width: 900px) {
}
@media screen and (max-width: 850px) {
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 640px) {
/***********************************************
 header
************************************************/
header .row #globalnavi ul{
    display: none;
}
header #subnavi{
    display: none;
}
header .row{
    justify-content: center;
}
header .row a.corp-logo {
    margin-right: 0;
}
/***********************************************
 smartnavi
************************************************/
.hm_btn {
	width: 90px;
	height: 90px;
}
.hm_btn::after {
	bottom: 40px;
}
.hm_btn::before {
	top: 40px;
}
.hm_menu_wrap {
	top: -90px;
}
.hm_menu_check:checked ~ .hm_btn::before {
	-webkit-transform: rotate(45deg) translate3d(4px, 2px, 0);
	transform: rotate(45deg) translate3d(4px, 2px, 0);
}
.hm_menu_check:checked ~ .hm_btn::after {
	-webkit-transform: rotate(-45deg) translate3d(4px, -2px, 0);
	transform: rotate(-45deg) translate3d(4px, -2px, 0);
}
.hm_menu_inner a.smart-logo{
    width: calc(100% - 90px);
    margin: 20px 0;
    text-align: left;
    min-height: 110px;
}
.hm_menu_inner ul li{
    width: 100%
}
.hm_menu_inner ul li a{
    font-size: 22px;
    padding: 5px 10px;
}
.hm_menu_inner ul li a:before{
    width: 16px;
    height: 28px;
}
.hm_menu_inner ul li a span{
    padding-left: 70px;
    padding-right: 20px;
    min-height: 58px;
}
.hm_menu_inner ul li a span:before{
    width: 60px;
    height: 58px;
}
}
@media screen and (max-width: 450px) {
}
@media screen and (max-width: 400px) {
}
@media screen and (max-width: 350px) {
}
@media screen and (max-width: 300px) {
}