body {
	color: #fff;
	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%;
    font-weight: 500;
    background: #000;
}
a{
    color: #fff;
	transition: all  0.2s ease-out;
    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;
}
.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: #16bfbb;
    --gradation: linear-gradient(to right, #00c6ff 0, #000081 100%);
}
a.viewall{
    width: 195px;
    height: 84px;
    display: flex;
    align-items: center;
    margin: 50px auto;
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    line-height: 130%;
    white-space: nowrap;
    position: relative;
}
a.viewall:before{
    position: absolute;
    content: "";
    width: 84px;
    height: 84px;
    right: 0;
    top: 0;
    background: url(../images/common/view-bg.svg) no-repeat;
    background-size: cover;
    z-index: -1;
    animation: rotate 20s infinite linear;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
a.viewall span{
    display: block;
    width: 150px;
    border-bottom: 2px solid #fff;
    position: relative;
}
a.viewall span:before{
    content: "";
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 16px;
    height: 2px;
    border-radius: 9999px;
    background-color: #ffffff;
    transform: rotate(45deg);
    transform-origin: calc(100% - 1px) 50%;
}
/***********************************************
 wrapper
************************************************/
#wrapper{
    overflow: hidden;
}
/***********************************************
 sideNavi
************************************************/
#sideNavi{
    position: fixed;
    width: 50px;
    height: 100vh;
    right: 0;
    top: 0;
    background: #000;
    z-index: 999;   
}
#sideNavi .inner{
    display:flex;
    flex-flow: column;
    justify-content: space-between;
    height: calc(100vh - 40px);
    margin: 20px 0;
}
#sideNavi .social{
    width: 24px;
    height: 105px;
    display:flex;
    flex-flow: column;
    justify-content:space-between;
    margin: 0 auto;
    position: relative;
    z-index: 999;
}
#sideNavi .up-bt{
    width: 30px;
    height: 27px;
    margin: 0 auto;
    position: relative;
    z-index: 999;
}
/************************************************************
hm_menu_check
*************************************************************/
.hm_menu_check {
	display: none;
}
.hm_wrap {
	display: inline-block;
	position :fixed;
	top :0;
	left :0;
	width :100%;    
}
.hm_btn {
	position: absolute;
	top:calc(50vh - 50px);
	right:16px;
	width: 13px;
	height: 100px;
	cursor: pointer;
	display: block;
	float: right;
	z-index: 2;
	margin :0;
    color: #fff;
}
.hm_btn span{
    position: absolute;
    content: "";
    bottom: 0;
    display: block;
    background: url(../images/common/menu.svg) no-repeat;
    width: 13px;
    height: 54px;
    background-size: cover;
}
.hm_btn::after {
	right: 0;
    top:0;
}
.hm_btn::before,
.hm_btn::after {
	width: 3px;
	height: 35px;
	background: #fff;
	display: block;
	content: '';
	position: absolute;
	-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%;
	position: absolute;
	left: 100%;
	top: 0;
	-webkit-transition: left 0.4s;
	transition: left 0.4s;
	background-color:#000;
	height: 100vh !important;
	background-size:cover!important;
}
.hm_menu_check:checked ~ .hm_title {
	opacity: 1;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
}
.hm_menu_check:checked ~ .hm_btn::before {
	background: #fff;
	-webkit-box-shadow: transparent 0 0 0;
	box-shadow: transparent 0 0 0;
	-webkit-transform: rotate(45deg) translate3d(6px, 0 0);
	transform: rotate(45deg) translate3d(6px, 0, 0);
}
.hm_menu_check:checked ~ .hm_btn::after {
	background: #fff;
	-webkit-transform: rotate(-45deg) translate3d(-6px, 0px, 0);
	transform: rotate(-45deg) translate3d(-6px, 0px, 0);
}
.hm_menu_check:checked ~ .hm_menu_wrap {
	left: 0;
}
.hm_menu_wrap .menu-cover{
    position: relative;
    z-index: 1;
}
.hm_menu_wrap .menu-cover:before{
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 80%;
    padding-top: 35%;
    background: url(../images/common/menu-bg.webp) no-repeat;
    background-size: cover;
    background-position: right top;
}
.hm_menu_inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 50px);
    height: 100vh;
}
.hm_menu_inner .row{
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}
.hm_menu_inner .row .column-l{
    width: 300px;
}
.hm_menu_inner .row .column-l ul li {
    font-size: 15px;
    line-height: 130%;
    margin-bottom: 2em;
}
.hm_menu_inner .row .column-l ul li:nth-of-type(2){
    font-family: "Outfit", sans-serif;
    font-size: 50px;
    font-weight: 400;
    line-height: 130%;
    white-space: nowrap;
    margin-bottom: 20px;
}
.hm_menu_inner .row .column-l ul li:nth-of-type(2) a{
    position: relative;
    display: inline-block;
    padding-right: 50px;
}
.hm_menu_inner .row .column-l ul li:nth-of-type(2) a:before{
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background: url(../images/common/ar-l.svg) no-repeat;
    width: 18px;
    height: 36px;
    background-size: cover;
}
.hm_menu_inner .row .column-l .search-box input#feas_0_1{
    border: 2px solid #fff;
    border-radius: 20px;
    background: #fff;
    font-size: 15px;
    padding: 7px 10px;
    width:200px;
    color: #fff;
    margin-right: 5px;
}
.hm_menu_inner .row .column-l .search-box input#feas-submit-button-0{
    border: none;
    background: var(--gradation);
    font-size: 15px;
    padding: 7px 10px;
    color: #fff;
    border-radius: 3px;
    cursor: pointer;
    font-weight: 500;
}
.hm_menu_inner .row .column-l .search-box input[type="text"]:focus {
    border: 1px solid #403f44;
    outline: 0;
}
.hm_menu_inner .row ol li {
    font-size: 15px;
    line-height: 130%;
    margin-bottom: 2em;
}
.hm_menu_inner .row ol li a{
    cursor: pointer;
}
.hm_menu_inner .row .navi-social{
    display: none;
}
/***********************************************
 ft-contact
************************************************/
#ft-contact {
    width: calc(100% - 50px);
    margin-bottom: 90px;
}
#ft-contact .inner{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
#ft-contact .inner ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#ft-contact .inner ul li a{
    display: block;
    background: rgba(255, 255, 255, 0.7);
    color: #000;
    font-size: clamp(1.25rem, 0.679rem + 1.43vw, 1.75rem);
    font-weight: 600;
    line-height: 120%;
    padding: 60px 0;
}
#ft-contact .inner ul li a:hover{
    background: rgba(255, 255, 255, 1);
}
#ft-contact .inner ul li {
    width: 48%;
    text-align: center;
}
#ft-contact .inner ul li span{
    position: relative;
    padding-top: 90px;
    display: block;
}
#ft-contact .inner ul li span:before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    width: 70px;
    height: 70px;
}
#ft-contact .inner ul li:first-child span:before {
    background: url(../images/common/mail-ic.svg) no-repeat;
    background-size: cover;
}
#ft-contact .inner ul li:last-child span:before {
    background: url(../images/common/about-ic.svg) no-repeat;
    background-size: cover;
}
/***********************************************
 footer
************************************************/
#footer {
    position: relative;
    overflow: hidden;
    padding: 150px 0;
    width: calc(100% - 50px);
}
#footer:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000;
    transform: skewY(-5deg) translateY(90px);
    z-index: -1;
}
#footer .inner{
    max-width: 980px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}
#footer .inner:before{
    position: absolute;
    content: "";
    right: -5%;
    top: -5%;
    width: 45%;
    padding-top: 50%;
    background: url(../images/common/footer-bg.svg) no-repeat;
    background-size: cover;
    z-index: -1;
}
#footer .inner .column-l{
    width: calc(100% - 40px);
    padding-top: 50px;
}
#footer .inner .column-l dl dt{
    max-width: 415px;
    margin-bottom: 15px;
}
#footer .inner .column-l dl dd{
    margin: 0;
    max-width: 250px;
    font-size: clamp(0.875rem, 0.732rem + 0.36vw, 1rem);
}
#footer .inner .column-l dl dt img,
#footer .inner .column-l dl dd img{
    width: 100%;
    height: auto;
    margin-top: 10px;
}
#footer .inner .column-l p{
    font-size: 15px;
    line-height: 220%;
    margin-top: 40px;
}
#footer .inner .column-l ol{
    font-size: 15px;
    line-height: 130%;
    margin-top: 20px;
}
#footer .inner .column-l ol li{
}
#footer .inner .column-l span{
    font-size: 15px;
    display: block;
    margin: 40px 0 15px 0;
}
#footer .inner .column-r{
    width: 30px;
}
#footer .inner .column-r img{
    width: 100%;
    height: auto;
    max-width: 30px;
}
#footer .ft-logo{
    display: flex;
    overflow: hidden;
}
#footer .ft-logo ul{
    display: flex;
    animation: logoslideShow 50s infinite linear;
}
#footer .ft-logo ul li{
    width: 120px;
}
#footer .ft-logo ul li img{
    width: 120px;
    height: 60px;
}
@keyframes logoslideShow {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}
#footer #ft-navi{
    max-width: 980px;
    width: 90%;
    margin: 80px auto 0 auto;
}
#footer #ft-navi ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#footer #ft-navi ul li{
    font-size: 15px;
    line-height: 130%;
    margin-bottom: 20px;
}
#up-bt-ph img{
    display: none;
}
@media screen and (max-width: 980px) {
}
@media screen and (max-width: 850px) {
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 640px) {
a.viewall{
    width: 155px;
    height: 70px;
    margin: 30px auto;
    font-size: 16px;
}
a.viewall:before{
    width: 70px;
    height: 70px;
}
a.viewall span{
    width: 130px;
}
/***********************************************
 sideNavi
************************************************/
#sideNavi{
    height: 50px;
}
#sideNavi .inner{
    display:block;
    height: 50px;
    margin: 0;
}
#sideNavi .social{
    display: none;
}
#sideNavi .up-bt{
    display: none;
}
/************************************************************
hm_menu_check
*************************************************************/
.hm_btn {
	position: absolute;
	top:10px;
	right:10px;
	width: 30px;
	height: 25px;
	cursor: pointer;
	display: block;
	float: right;
	z-index: 2;
	margin :0;
    color: #fff;
}
.hm_btn span{
    display: none;
}
.hm_btn::after {
    top: auto;
	bottom: 15px !important;
}
.hm_btn::before {
	top: 15px !important;
}
.hm_btn::before,
.hm_btn::after {
	width: 30px;
	height: 3px;
	background: #fff;
	display: block;
	content: '';
	position: absolute;
	-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_check:checked ~ .hm_btn::before {
	background: #fff;
	-webkit-box-shadow: transparent 0 0 0 !important;
	box-shadow: transparent 0 0 0 !important;
	-webkit-transform: rotate(45deg) translate3d(0, -5px, 0) !important;
	transform: rotate(45deg) translate3d(0, -5px, 0) !important;
}
.hm_menu_check:checked ~ .hm_btn::after {
	background: #fff;
	-webkit-transform: rotate(-45deg) translate3d(-1px, 5px, 0) !important;
	transform: rotate(-45deg) translate3d(-1px, 5px, 0) !important;
}
.hm_menu_wrap .menu-cover:before{
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    padding-top: 55%;
    background: url(../images/common/menu-bg.webp) no-repeat;
    background-size: cover;
    background-position: left bottom;
}
.hm_menu_inner{
    width: 100%;
    align-items: flex-start;
}
.hm_menu_inner .row{
    padding-top: 60px;
}
.hm_menu_inner .row .column-l{
    width: 250px;
}
.hm_menu_inner .row .column-l ul li {
    margin-bottom: 1em;
}
.hm_menu_inner .row .column-l ul li:nth-of-type(2){
    font-size: 40px;
}
.hm_menu_inner .row .column-l ul li:nth-of-type(2) a:before{
    width: 15px;
    height: 30px;
}
.hm_menu_inner .row .column-l .search-box input#feas_0_1{
    width:170px;
}
.hm_menu_inner .row .column-l .search-box input#feas-submit-button-0{
    padding: 7px 5px;
}
.hm_menu_inner .row ol {
    width: 100%;
    margin-top: 1.5em;
}
.hm_menu_inner .row .navi-social{
    display: flex;
    justify-content: space-between;
    width: 120px;
}
/***********************************************
 ft-contact
************************************************/
#ft-contact {
    width: 100%;
    margin-bottom: 50px;
}
#ft-contact .inner ul li a{
    padding: 30px 0;
}
#ft-contact .inner ul li {
    width: 100%;
    margin-bottom: 15px;
}
/***********************************************
 footer
************************************************/
#footer {
    width: 100%;
    padding: 150px 0 75px 0;
}
#footer .inner:before{
    position: absolute;
    content: "";
    right: auto;
    left: auto;
    top: -10px;
    margin: auto;
    width: 100%;
    padding-top: 110%;
    background: url(../images/common/footer-bg.svg) no-repeat;
    background-size: cover;
    background-position: center top;
}
#footer .inner .column-r{
    width: 100%;
    order: 1;
    padding-left: 15%;
    box-sizing: border-box;
}
#footer .inner .column-l{
    width: 100%;
    padding-top: 20px;
    order: 2;
}
#footer .inner .column-l p{
    font-size: 14px;
    line-height: 180%;
}
#footer #ft-navi{
    margin: 40px auto 0 auto;
}
#footer #ft-navi ul li{
    width: 50%;
    font-size: 14px;
    margin-bottom: 2em;
}
#footer .inner .column-r img{
    max-width: 25px;
}
#up-bt-ph{
    position: fixed;
    content: "";
    z-index: 99;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background:  rgba(0, 0, 0, 0.5);
}
#up-bt-ph img{
    display: block;
}
}
@media screen and (max-width: 540px) {
}
@media screen and (max-width: 450px) {
}
@media screen and (max-width: 400px) {
/***********************************************
 footer
************************************************/
#footer #ft-navi ul li{
    width: 100%;
}
}
@media screen and (max-width: 300px) {
}