@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700;900&display=swap");

body {
 margin: 0;
 padding: 0;
 font-size: 14px;
 font-family: "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN",
  "Hiragino Kaku Gothic Pro", "メイリオ", "ＭＳ ゴシック", sans-serif;
 color: #000000;
 -webkit-box-sizing: border-box;
 box-sizing: border-box;
 text-size-adjust: 100%;
 -webkit-text-size-adjust: 100%;
 -moz-text-size-adjust: 100%;
 -ms-text-size-adjust: 100%;
 -o-text-size-adjust: 100%;
 overflow-x: hidden;
}

* {
 -webkit-box-sizing: border-box;
 box-sizing: border-box;
}

*::after,
*::before {
 -webkit-box-sizing: border-box;
 box-sizing: border-box;
}

img {
 max-width: 100%;
 height: auto;
}

img.ojf {
 -o-object-fit: cover;
 object-fit: cover;
 font-family: "object-fit: cover;";
}

img.ttl-svg {
 vertical-align: middle;
}

a:hover,
a:focus,
a:visited {
 outline: none;
 border: none;
}

.fml-min {
 font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝",
  "MS PMincho", serif;
}

.cont {
 width: 100%;
 max-width: 1200px;
 margin: 0 auto;
 position: relative;
}

a {
 text-decoration: none;
 color: inherit;
}

.clear {
 clear: both;
}

a[href^="tel:"] {
 cursor: default;
}

a[href^="tel:"]:hover {
 text-decoration: none;
}

.ow {
 width: 100%;
 overflow: hidden;
}

br {
 font-size: 0;
}

.explanation {
 font-size: 18px;
 line-height: 200%;
 color: #231815;
 text-align: center;
 max-width: 940px;
 width: 100%;
 margin: 35px auto 35px;
}

/*
=================
=	Header		=
=================
*/
.wrapHeader {
 position: fixed;
 top: 0;
 left: 50%;
 background: white;
 -webkit-transform: translateX(-50%);
 transform: translateX(-50%);
 z-index: 100;
 width: 100%;
 -webkit-transition: all 1s ease;
 transition: all 1s ease;
 -webkit-transition-property: background;
 transition-property: background;
}

/* scroll on */
.wrapHeader.on-scroll {
 background: rgba(255, 255, 255, 0.75);
}

.wrapHeader.on-scroll .logo {
 -webkit-transform: scale(0.9);
 transform: scale(0.9);
}

.wrapHeader.on-scroll ul.menu > li:last-child > a {
 padding: 12px 0;
}

.grid-1140 {
 max-width: 1140px;
 width: 100%;
 margin-left: auto;
 margin-right: auto;
}

.wpHeader {
 display: flex;
 display: -webkit-box;
 display: -ms-flexbox;
 display: -webkit-flex;
 -webkit-box-pack: justify;
 -ms-flex-pack: justify;
 justify-content: space-between;
 -webkit-box-align: center;
 -ms-flex-align: center;
 align-items: center;
 overflow: visible;
}

.logo {
 padding-left: 30px;
 -webkit-transition: 0.4s ease;
 transition: 0.4s ease;
 -webkit-transition-property: -webkit-transform;
 transition-property: -webkit-transform;
 transition-property: transform;
 transition-property: transform, -webkit-transform;
}

ul.menu {
 font-size: 0;
}

ul.menu > li {
 display: inline-block;
 vertical-align: middle;
 position: relative;
 z-index: 1;
}

ul.menu > li:not(:first-child) {
 margin-left: 50px;
}

ul.menu > li > a {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-align: end;
 -ms-flex-align: end;
 align-items: flex-end;
 -webkit-box-pack: center;
 -ms-flex-pack: center;
 justify-content: center;
 font-size: 14px;
 font-weight: bold;
 color: #4b4b4b;
 line-height: 150%;
 padding: 10px 0 25px;
 text-decoration: none;
 -webkit-transition: ease all 0.35s;
 transition: ease all 0.35s;
 position: relative;
 z-index: 1;
}

ul.menu > li:not(:last-child):hover > a,
ul.menu > li.active > a {
 color: #009fe8;
}

ul.menu > li.hasSubMenu > a {
 background-image: url("../img/hd-img01.png");
 background-position: center bottom 8px;
 background-repeat: no-repeat;
}

ul.menu > li:last-child > a {
 background-color: #009fe8;
 min-width: 160px;
 padding: 24px 0;
 -webkit-transition: ease all 0.35s;
 transition: ease all 0.35s;
 opacity: 1;
 text-align: center;
 color: #fff;
}

ul.menu > li:last-child > a > span > img {
 padding-bottom: 8px;
}

ul.menu > li:last-child > a:hover {
 opacity: 0.75;
}

ul.menu > li.hasSubMenu > ul.subMenu {
 display: none;
 position: absolute;
 left: 50%;
 -webkit-transform: translateX(-50%);
 transform: translateX(-50%);
 z-index: 1;
 top: 100%;
 min-width: 140px;
 -webkit-animation: none;
 animation: none;
}

ul.menu > li.hasSubMenu:hover > ul.subMenu {
 display: block;
 -webkit-animation: menuFade 0.8s;
 animation: menuFade 0.8s;
}

@-webkit-keyframes menuFade {
 0% {
  opacity: 0;
 }

 100% {
  display: block;
  opacity: 1;
 }
}

@keyframes menuFade {
 0% {
  opacity: 0;
 }

 100% {
  display: block;
  opacity: 1;
 }
}

ul.menu > li.hasSubMenu > ul.subMenu > li:not(:last-child) {
 margin-bottom: 3px;
}

ul.menu > li.hasSubMenu > ul.subMenu > li > a {
 background-color: rgba(0, 159, 232, 0.9);
 background-position: center center;
 background-repeat: repeat;
 text-align: center;
 font-size: 14px;
 font-weight: bold;
 color: #fff;
 height: 54px;
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-align: center;
 -ms-flex-align: center;
 align-items: center;
 -webkit-box-pack: center;
 -ms-flex-pack: center;
 justify-content: center;
 text-decoration: none;
 -webkit-transition: ease all 0.35s;
 transition: ease all 0.35s;
 opacity: 1;
}

ul.menu > li.hasSubMenu > ul.subMenu > li > a:hover {
 opacity: 0.75;
}

span.btnStyle01 {
 display: block;
 text-align: center;
}

span.btnStyle01 a {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-align: center;
 -ms-flex-align: center;
 align-items: center;
 -webkit-box-pack: center;
 -ms-flex-pack: center;
 justify-content: center;
 max-width: 580px;
 width: 100%;
 border-radius: 50px;
 border: 1px solid #009fe8;
 padding: 1em 2em;
 margin-left: auto;
 margin-right: auto;
 font-size: 16px;
 font-weight: 500;
 color: #009fe8;
 letter-spacing: 1.2px;
 background-image: url("../img/iconRight.png");
 background-position: center right 60px;
 background-repeat: no-repeat;
 -webkit-transition: ease all 0.35s;
 transition: ease all 0.35s;
}

span.btnStyle01 a:hover {
 background-color: #009fe8;
 color: #fff;
 text-decoration: none;
 background-image: url("../img/iconRightHv.png");
}

span.ttStyle01 {
 display: block;
 text-align: center;
}

span.ttStyle01 span.ttTa {
 display: block;
 font-size: 58px;
 color: #009fe8;
 letter-spacing: 0.6px;
 line-height: 160%;
}

span.ttStyle01 span.ttJp {
 display: block;
 font-weight: bold;
 font-size: 13px;
 color: #231815;
}

/* #hoBussiness{
	padding-top: 125px;
} */
span.btnStyle02 {
 display: block;
 text-align: center;
}

span.btnStyle02 a {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-align: center;
 -ms-flex-align: center;
 align-items: center;
 -webkit-box-pack: center;
 -ms-flex-pack: center;
 justify-content: center;
 max-width: 480px;
 width: 100%;
 border-radius: 50px;
 border: 1px solid #009fe8;
 padding: 1em 2em;
 margin-left: auto;
 margin-right: auto;
 font-size: 16px;
 font-weight: 500;
 color: #009fe8;
 letter-spacing: 1.2px;
 background-image: url("../img/iconR.png");
 background-color: #fff;
 border: 1px solid #009fe8;
 background-position: center right 40px;
 background-repeat: no-repeat;
 -webkit-transition: ease all 0.35s;
 transition: ease all 0.35s;
}

span.btnStyle02 a:hover {
 background-color: #009fe8;
 color: #fff;
 border: 1px solid #fff;
 text-decoration: none;
 background-image: url("../img/iconRHv.png");
}

#main-footer .grid-960 {
 position: relative;
}

#main-footer .logo {
 width: 100%;
 margin: 0;
 padding: 0;
}

#main-footer .wrapFt {
 background-color: #4b4b4b;
 color: #fff;
 padding: 60px 0 20px;
}


#main-footer .info dl {
 width: 100%;
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 margin-top: 15px;
 vertical-align: top;
 font-size: 14px;
 font-weight: 500;
 color: #fff;
 font-family: "Noto Sans JP", sans-serif;
 line-height: 200%;
 flex-wrap: wrap;
}


#main-footer .info dl dt {
 font-size: 14px;
 font-weight: 500;
 color: #fff;
 font-family: "Noto Sans JP", sans-serif;
 line-height: 200%;
 width: 105px;
}

#main-footer .info dl dd {
 font-size: 14px;
 font-weight: 500;
 color: #fff;
 font-family: "Noto Sans JP", sans-serif;
 line-height: 200%;
 text-align: left;
}

#main-footer .info dl .dib {
 display: inline-block;
}


#main-footer .flex {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-align: center;
 -ms-flex-align: center;
 align-items: center;
 -webkit-box-pack: center;
 -ms-flex-pack: center;
 justify-content: center;
 flex-wrap: wrap;
}

#main-footer .footer-btn {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-align: center;
 -ms-flex-align: center;
 align-items: center;
 -webkit-box-pack: center;
 -ms-flex-pack: center;
 justify-content: center;
 /* width: 48%; */
 width: calc((90% - 60px ) / 2);
 min-width: 15em;
 height: 50px;
 margin: 20px auto 0;
 padding: 1em 2em;
 -webkit-box-sizing: border-box;
 box-sizing: border-box;
 border: 1px solid #fff;
 border-radius: 37px;
 color: #fff;
 text-decoration: none;
 -webkit-transition: ease all 0.35s;
 transition: ease all 0.35s;
}

@media screen and (max-width:540px) {
  #main-footer .footer-btn {
    width: 90%;

  }
  
}

#main-footer .footer-btn.insta {
  border: none;
  width: 50px;
  height: 50px;
  min-width: initial;
  padding: 0;

}



#main-footer .footer-btn span.ftCIcon {
 display: inline-block;
 padding-right: 30px;
}

#main-footer .footer-btn span.ftCTxt {
 display: inline-block;
 font-size: 14px;
 
}

#main-footer .footer-btn:hover {
 background: #fff;
 color: #4b4b4b;
}

#main-footer .footer-btn.insta:hover {
 background: transparent;
 opacity: .5;
}

#main-footer .waza {
 display: block;
 max-width: 80vw;
 margin: 0 auto;
 position: absolute;
 right: 2%;
 top: -20px;
 width: 46%;
}

@media screen and (max-width: 880px) {
 #main-footer .waza {
  position: relative;
  width: 90%;
  margin: 2em auto 0;
  top: inherit;
  right: inherit;
 }
}

#main-footer span.copyRight {
 display: block;
 font-family: "Noto Sans JP", sans-serif;
 font-size: 14px;
 font-weight: 500;
 line-height: 140%;
 padding-top: 40px;
}

.scrolltop {
 text-align: center;
 width: 40px;
 height: 40px;
 line-height: 40px;
 color: #fff;
 background-color: #fff;
 display: block;
 position: fixed;
 bottom: 20px;
 right: 20px;
 z-index: 99;
 border: 1px solid #fff;
}

.scrolltop:hover,
.scrolltop:focus {
 color: #fff;
 text-decoration: none;
}

.nvIcon {
 display: none;
}

.brCp {
 display: none;
}

.grid-960 {
 max-width: 960px;
 width: 100%;
 margin-left: auto;
 margin-right: auto;
}

#pageCommon {
 background-size: cover;
 background-position: center center;
 background-repeat: no-repeat;
 position: relative;
 z-index: 1;
 height: 340px;
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-align: end;
 -ms-flex-align: end;
 align-items: flex-end;
 -webkit-box-pack: center;
 -ms-flex-pack: center;
 justify-content: center;
 padding-bottom: 105px;
}

#pageCommon::before {
 content: "";
 background-color: rgba(0, 159, 232, 0.5);
 width: 100%;
 height: 100%;
 position: absolute;
 top: 0;
 left: 0;
 z-index: 1;
}

span.ttPage {
 display: block;
 text-align: center;
 font-size: 30px;
 font-weight: bold;
 color: #fff;
 letter-spacing: 2px;
 position: relative;
 z-index: 2;
}

.navCompany {
 padding-bottom: 80px;
 padding-top: 80px;
}

.navCompany ul {
 font-size: 0;
 text-align: center;
}

.navCompany ul li {
 display: inline-block;
 vertical-align: middle;
 min-width: 160px;
 margin-left: 32px;
 background-color: #4b4b4b;
 position: relative;
 z-index: 1;
}

.navCompany ul li::before {
 width: 0;
 height: 0;
 border-style: solid;
 border-width: 30px 20px 30px 0;
 border-color: transparent #4b4b4b transparent transparent;
 content: "";
 position: absolute;
 top: 0;
 left: -20px;
 z-index: 2;
}

.navCompany ul li a {
 color: #fff;
 font-size: 18px;
 font-weight: bold;
 height: 60px;
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-align: center;
 -ms-flex-align: center;
 align-items: center;
 -webkit-box-pack: center;
 -ms-flex-pack: center;
 justify-content: center;
 letter-spacing: 1px;
 text-decoration: none !important;
}

.navCompany ul li.active,
.navCompany ul li:hover {
 background-color: #009fe8;
}

.navCompany ul li.active::before,
.navCompany ul li:hover::before {
 border-color: transparent #009fe8 transparent transparent;
}

span.grTT {
 display: block;
 font-size: 30px;
 color: #009fe8;
 letter-spacing: 0.6px;
 line-height: 120%;
 margin-bottom: 65px;
 text-align: left;
 position: relative;
 z-index: 1;
 max-width: 740px;
 width: 100%;
 /* float: right; */
}

.ttCom {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -ms-flex-wrap: wrap;
 flex-wrap: wrap;
 -webkit-box-pack: end;
 -ms-flex-pack: end;
 justify-content: flex-end;
}

.ttCom.ttRight {
 -webkit-box-pack: end;
 -ms-flex-pack: end;
 justify-content: flex-end;
}

.ttCom.ttLeft {
 -webkit-box-pack: start;
 -ms-flex-pack: start;
 justify-content: flex-start;
}

span.grTT::before {
 content: "";
 height: 1px;
 left: 0;
 background-color: #009fe8;
 position: absolute;
 z-index: 2;
 bottom: 3px;
 left: 0;
 width: 100%;
}

.show_sp {
 display: none;
}

.hide_sp {
 display: inline-block;
}

.dl_ib {
 display: inline-block;
}
/*

@media all and (-ms-high-contrast: none) {
 span.btnStyle01 a {
  padding-top: 8px;
 }

 span.btnStyle02 a {
  padding-top: 8px;
 }

 .navCompany ul li a {
  padding-top: 8px;
 }

 .ftRight a span.ftCTxt {
  padding-top: 6px;
 }
}
*/
