@charset "UTF-8";

/*CSSDocument*/


/* html body base
===============================================================*/


/*
html ----------------------------------------------------------*/

*{ margin:0px; padding:0px;}

body{
  color:#000000;
  margin:0;
  padding:0;
  background:#FFFFFF;
/*  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;*/
  font-family: 'Noto Sans JP', sans-serif;
  text-align:center;
  font-size:100%;
  -webkit-text-size-adjust: none;
  position:relative;
}

a:link,
a:visited,
a:hover,
a:active { color:#000;text-decoration:none;}

ul{ list-style:none;}

img {
  padding:0px;
  margin:0px;
  vertical-align:bottom;
  max-width: 100%;
  height: auto;
}
a {
  transition: all 0.5s ease-out;
}
a:hover {
  opacity:0.7;
}

/*
html ----------------------------------------------------------*/



/* body base
===============================================================*/

.l-wrap {
  padding-top: 90px;
}
.l-flow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
}
.l-inner {
  max-width: 1080px;
  margin: 0 auto;
  box-sizing: content-box;
  padding: 0 20px;
}
.l-contents {
  max-width: 1080px;
  box-sizing: content-box;
  padding: 0 20px;
  margin: 53px auto 170px auto;
  display : -webkit-box;
  display : -webkit-flex;
  display : -ms-flexbox;
  display : flex;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  text-align: left;
}
.l-contentsMain {
  width: calc(100% - 299px);
}
.l-contentsSide {
  width: 250px;
  padding-top: 5px;
}

@media screen and (max-width: 1500px) {
  .l-wrap {
    padding-top: 70px;
  }
}
@media screen and (max-width: 750px) {
  .l-contents {
    box-sizing: content-box;
    padding: 0 20px;
    margin: 53px auto 170px auto;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .l-contentsMain {
    width: 100%;
  }
  .l-contentsSide {
    display: none;
    width: 100%;
    padding-top: 5px;
  }
}
@media screen and (max-width: 640px) {
  .l-wrap {
    padding-top: 50px;
  }
  .l-contents {
    padding: 0 20px;
    margin: 35px auto 100px auto;
  }
}


/* header
===============================================================*/
.c-header {
  background: #FFF;
  position: relative;
}
.c-headerWrap {
  display : -webkit-box;
  display : -webkit-flex;
  display : -ms-flexbox;
  display : flex;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.c-header__logoOuter {
  padding: 0 20px 0 22px;
  max-width: 300px;
  width: 100%;
}
.c-header__logo {
  max-width: 348px;
}
.c-header__menuOuter {
  max-width: 1080px;
  width: 100%;
/*
  position: relative;
*/
}
.c-header__menuBtnOuter {
  display: none;
}

.c-gNavOuter {
  max-width: 900px;
  margin-left: auto;
}
.c-gNav {
  
}
.c-gNavList {
  display : -webkit-box;
  display : -webkit-flex;
  display : -ms-flexbox;
  display : flex;
  width: 100%;
}
.c-gNavList > li {
/*
  width: 16.666%;
*/
  width: 20%;
}
.c-gNavList > li > a {
  display : -webkit-box;
  display : -webkit-flex;
  display : -ms-flexbox;
  display : flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  height: 90px;
  position: relative;
}
.c-gNavList > li > a:before {
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  width: 1px;
  background: #afafb2;
  top: 0;
  left: 0;
}
.c-gNavList > li > a:after {
  content: '';
  display: block;
  height: 3px;
  position: absolute;
  width: 100%;
  background: #00b7ec;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: all 0.5s ease-out;
}
.c-gNavList > li:hover > a:after {
  opacity: 1;
}
.c-gNavList > li > a > span {
  font-size: 15px;
  line-height: 1.5;
  color: #7f7f7f;
  display: inline-block;
}
.c-gNavList > li.c-gNavList--sub > a > span {
  position: relative;
  padding-right: 23px;
}
.c-gNavList > li.c-gNavList--sub > a > span:before {
  position: absolute;
  top: 0;
  bottom: 7px;
  right: 0;
  margin: auto;
  content: '';
  vertical-align: middle;
  width: 6px;
  height: 6px;
  border-top: 2px solid #7f7f7f;
  border-right: 2px solid #7f7f7f;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.c-gNavList > li.c-gNavList--contact {
  background: #ececec;
}
.c-gNavSubListOuter {
  position: absolute;
  right: 0;
  bottom:0;
  width: 100%;
  max-width: 1100px;
}
.c-gNavList > li.c-gNavList--sub:hover .c-gNavSubListOuter {
/*
  opacity: 1;
  display: block;
*/
}
.c-gNavSubListFrame {
  display: none;
  position: absolute;
  top:0;
  right: 0;
  margin: auto;
  width: 100%;
}
.c-gNavSubList {
  display : -webkit-box;
  display : -webkit-flex;
  display : -ms-flexbox;
  display : flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 47px 11px 47px 54px;
  box-sizing: border-box;
  background: rgba(59,60,79,0.6);
}
.c-gNavSubList > li {
  width: 30%;
  margin-left: 5%;
/*
  border-bottom: #afafb2 1px solid;
  border-right: #afafb2 1px solid;
*/
  box-sizing: border-box;
}
.c-gNavSubList > li:nth-child(n + 4) {
  margin-top: 5px;
}
.c-gNavSubList > li:nth-child(3n + 1) {
  margin-left: 0;
}
.c-gNavSubList > li {
}
.c-gNavSubList > li a {
  font-size: 15px;
  line-height: 1.3;
  color: #FFF;
  position: relative;
  padding: 5px 10px 5px 40px;
  text-align: left;
  display: block;
  
}
/*.c-gNavSubList > li a:before,
.c-gNavSubList > li a:after{
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  content: '';
  vertical-align: middle;
}
.c-gNavSubList > li a:before{
  right: 11px;
  box-sizing: border-box;
  width: 3px;
  height: 3px;
  border: 3px solid transparent;
  border-left: 4px solid #3f3f3f;
}
.c-gNavSubList > li a:after{
  right: 17px;
  width: 11px;
  height: 2px;
  background: #3f3f3f;
}*/
.c-gNavSubList > li a:before {
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f30b";
  position: absolute;
  top: 50%;
  left: 13px;
  font-size: 14px;
  color: #01b4e8;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.c-gNavSubList > li a span i {
  font-size: 12px;
  -webkit-transform: translate(0, -1px);
  transform: translate(0, -1px);
  margin-left: 5px;
}
.c-gNavSubList > li a:hover {
  background: #00b7ec;
  opacity: 1;
}
.c-gNavSubList > li a:hover:before {
  color: #FFF;
}
.c-gNavList__spLink {
  display: none;
}

@media screen and (max-width: 1500px) {
  .c-headerWrap {
  }
  .c-header__logoOuter {
    padding: 0 20px 0 17px;
  }
  .c-header__logo {
    max-width: 300px;
  }
  .c-header__menuOuter {
    max-width: 780px;
  }
  .c-gNavOuter {
    max-width: 650px;
  }
  .c-gNavList {
  }
  .c-gNavList > li {
/*
    width: 16.666%;
*/
    width: 20%;
  }
  .c-gNavList > li > a {
    height: 70px;
  }
  .c-gNavList > li > a > span {
    font-size: 14px;
    line-height: 1.5;
  }
  .c-gNavList > li.c-gNavList--sub > a > span {
    padding-right: 18px;
  }
  .c-gNavList > li.c-gNavList--sub > a > span:before {
    bottom: 7px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #7f7f7f;
    border-right: 2px solid #7f7f7f;
  }
}
@media screen and (min-width: 891px) {
  .c-header__menuOuter {
    display: block !important;
  }
  .c-gNavOuter {
    height: auto !important;
  }
  .c-gNavList > li.c-gNavList--sub > a > span {
    padding-right: 0px;
  }
  .c-gNavList > li.c-gNavList--sub > a > span:before {
    display: none;
  }
}
@media screen and (max-width: 890px) {
  
  .c-header__menuOuter {
/*
    display: block;
*/
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    max-width: none;
  }
  
  .c-header__menuBtnOuter {
    display: block;
  }
  .c-header__menuBtn {
    height: 70px;
    width: 70px;
    background: #ececec;
    display : -webkit-box;
    display : -webkit-flex;
    display : -ms-flexbox;
    display : flex;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    cursor: pointer;
  }
  
  .c-header__menuBtnInner,
  .c-header__menuBtnInner span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
  }
  .c-header__menuBtnInner {
    position: relative;
    width: 36px;
    height: 24px;
  }
  .c-header__menuBtnInner span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #7f7f7f;
  }
  .c-header__menuBtnInner span:nth-of-type(1) {
    top: 0;
  }
  .c-header__menuBtnInner span:nth-of-type(2) {
    top: 11px;
  }
  .c-header__menuBtnInner span:nth-of-type(3) {
    bottom: 0;
  }  
  .c-header__menuBtnInner.is-open span:nth-of-type(1) {
    -webkit-transform: translateY(11px) rotate(-45deg);
    transform: translateY(11px) rotate(-45deg);
  }
  .c-header__menuBtnInner.is-open span:nth-of-type(2) {
    opacity: 0;
  }
  .c-header__menuBtnInner.is-open span:nth-of-type(3) {
    -webkit-transform: translateY(-11px) rotate(45deg);
    transform: translateY(-11px) rotate(45deg);
  }
  
  .c-gNavOuter {
    background: #ececec;
    max-width: none;
    overflow-y: scroll;
    height: 100vh;
  }
  .c-gNav {
    padding-bottom: 50px;
  }
  .c-gNavList {
    display : block;
    width: 100%;
  }
  .c-gNavList > li {
    width: 100%;
    border-bottom: #afafb2 1px solid;
    padding-top: 5px;
  }
  .c-gNavList > li > a {
    height: 45px;
  }
  .c-gNavList > li > a:before {
    display: none;
  }
  .c-gNavList > li > a:after {
    display: none;
  }
  .c-gNavList > li > a > span {
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
    width: 100%;
    display: block;
    box-sizing: border-box;
    padding: 0 0 0 35px;
  }
  .c-gNavList > li.c-gNavList--sub > a > span {
    padding-right: 0;
  }
  .c-gNavList > li.c-gNavList--sub > a > span:before {
    position: absolute;
    top: 2px;
    bottom: 0px;
    right: auto;
    left: 18px;
    margin: auto;
    content: '';
    vertical-align: middle;
    width: 6px;
    height: 6px;
    border-top: 1px solid #7f7f7f;
    border-right: 1px solid #7f7f7f;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .c-gNavList > li.c-gNavList--contact {
    background: #ececec;
  }
  .c-gNavSubListOuter {
    position: relative;
    right: 0;
    bottom:0;
    display: block !important;
    width: 100%;
    opacity: 1 !important;
  }
  .c-gNavSubListFrame {
    display: block !important;
    position: relative;
    top:0;
    right: 0;
  }
  .c-gNavSubList {
    background: none;
    padding: 0 0 15px 0;
  }
  .c-gNavSubList > li {
    width: 100%;
    border-bottom: none;
    border-right: none;
  }
  .c-gNavSubList > li:nth-child(-n + 3) {
    border-top: none;
  }
  .c-gNavSubList > li:nth-child(3n + 1) {
    border-left: none;
    margin-left: 0;
  }
  .c-gNavSubList > li:nth-child(n + 4) {
    margin-top: 0px;
  }
  .c-gNavSubList > li {
    margin-left: 0;
  }
  .c-gNavSubList > li a {
    display : block;
    height: auto;
    font-size: 12px;
    line-height: 1.3;
    color: #7f7f7f;
    position: relative;
    padding: 7px 20px 7px 60px;
    background: none;
  }
  .c-gNavSubList > li a:before {
    display: none;
  }
  .c-gNavSubList > li a:after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: auto;
    left: 41px;
    margin: auto;
    content: '';
    vertical-align: middle;
    width: 6px;
    height: 6px;
    border-top: 1px solid #7f7f7f;
    border-right: 1px solid #7f7f7f;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .c-gNavSubList > li a span i {
    font-size: 11px;
    -webkit-transform: translate(0, -1px);
    transform: translate(0, -1px);
    margin-left: 5px;
  }
  .c-gNavSubList > li a:hover {
    background: none;
  }
  .c-gNavList--top {
    display: none;
  }
  .c-gNavList--contact {
    display: none;
  }
  .c-gNavList__spLink {
    display: block;
  }
  .c-gNavList__spLink--contact {
    padding-top: 50px;
  }
  .c-gNavList__spLink--contact a {
    height: 60px;
    width: 250px;
    background: #00b7ec;
    display : -webkit-box;
    display : -webkit-flex;
    display : -ms-flexbox;
    display : flex;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    font-size: 16px;
    line-height: 1.4;
    color: #FFF;
    margin: 0 auto;
  }
  .c-gNavList__spLink--links {
    margin-top: 25px;
  }
  .c-gNavList__spLink--links li {
    
  }
  .c-gNavList__spLink--links li + li {
    margin-top: 12px;
  }
  .c-gNavList__spLink--links li a {
    font-size: 12px;
    line-height: 1.4;
    color: #7f7f7f;
  }

}
@media screen and (max-width: 640px) {
  .c-header__logoOuter {
    padding: 0 20px 0 10px;
  }
  .c-header__logo {
    max-width: 233px;
  }  
  .c-header__menuOuter {
    top: 50px;
  }
  .c-header__menuBtnOuter {
    display: block;
  }
  .c-header__menuBtn {
    height: 50px;
    width: 50px;
  }
  .c-header__menuBtnInner {
    width: 25px;
    height: 18px;
  }
  .c-header__menuBtnInner span {
    height: 2px;
  }
  .c-header__menuBtnInner span:nth-of-type(1) {
    top: 0;
  }
  .c-header__menuBtnInner span:nth-of-type(2) {
    top: 8px;
  }
  .c-header__menuBtnInner span:nth-of-type(3) {
    bottom: 0;
  }  
  .c-header__menuBtnInner.is-open span:nth-of-type(1) {
    -webkit-transform: translateY(8px) rotate(-45deg);
    transform: translateY(8px) rotate(-45deg);
  }
  .c-header__menuBtnInner.is-open span:nth-of-type(2) {
    opacity: 0;
  }
  .c-header__menuBtnInner.is-open span:nth-of-type(3) {
    -webkit-transform: translateY(-8px) rotate(45deg);
    transform: translateY(-8px) rotate(45deg);
  }
}






.c-footer {
  border-top: #919191 1px solid;
}
.c-footerWrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: content-box;
}
.c-footerMenu {
  display : -webkit-box;
  display : -webkit-flex;
  display : -ms-flexbox;
  display : flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 38px 0 33px 0;
}
.c-footerMenuList {
  width: 25%;
  text-align: left;
  box-sizing: border-box;
  padding-right: 6px;
}
.c-footerMenuBox {
  width: 50%;
  display : -webkit-box;
  display : -webkit-flex;
  display : -ms-flexbox;
  display : flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.c-footerMenuBox .c-footerMenuList {
  width: 50%;
}
.c-footerMenuList__title {
  font-size: 16px;
  line-height: 1.5;
  font-weight: bold;
  color: #5b5b60;
  margin-bottom: 15px;
}
.c-footerMenuList__title a {
  color: #5b5b60;
}
.c-footerMenuList__item {
  
}
.c-footerMenuList__item + .c-footerMenuList__item {
  margin-top: 10px;
}
.c-footerMenuList__item a {
  display: inline-block;
  padding-left: 18px;
  position: relative;
  color: #5b5b60;
  font-size: 15px;
  line-height: 1.5;
}
.c-footerMenuList__item a i {
  font-size: 12px;
  margin-left: 7px;
  display: inline-block;
  -webkit-transform: translate(0, -1px);
  transform: translate(0, -1px);
  color: #898989;
}
.c-footerMenuList__item a:before {
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f061";
  position: absolute;
  top: 6px;
  left: 1px;
  margin: auto;
  font-size: 11px;
}
.c-footerCopyright {
  font-size: 15px;
  line-height: 1.5;
  color: #FFF;
  text-align: center;
  display : -webkit-box;
  display : -webkit-flex;
  display : -ms-flexbox;
  display : flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  background: #5b5b60;
  height: 70px;
}



.c-returnPageTop {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 1000;
}
.c-returnPageTop a {
  width: 70px;
  height: 70px;
  display : -webkit-box;
  display : -webkit-flex;
  display : -ms-flexbox;
  display : flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  background: #313131;
  color: #FFF;
  font-size: 36px;
  line-height: 1;
}

@media screen and (max-width: 840px) {
  .c-footerMenuList {
    padding-right: 10px;
  }
  .c-footerMenu-2 {
    width: 40.31%;
  }
  .c-footerMenu-4 {
    width: 26.34%;
  }
  .c-footerMenuBox {
    width: 33.34%;
  }
  .c-footerMenuBox .c-footerMenuList {
    width: 100%;
  }
  .c-footerMenu-3 {
/*
    margin-top: 40px;
*/
  }
}

@media screen and (max-width: 640px) {
  .c-footerWrap {
    padding: 0 8%;
    box-sizing: border-box;
  }
  .c-footerMenu {
    display : -webkit-box;
    display : -webkit-flex;
    display : -ms-flexbox;
    display : flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 30px 0 28px 0;
  }
  .c-footerMenuList {
    padding-right: 0;
  }
  .c-footerMenuList__title {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 6px;
  }
  .c-footerMenuList__item + .c-footerMenuList__item {
    margin-top: 3px;
  }
  .c-footerMenuList__item a {
    padding-left: 12px;
    font-size: 10px;
    line-height: 1.5;
  }
  .c-footerMenuList__item a i {
    top: 5px;
    left: 1px;
    font-size: 8px;
  }
  .c-footerMenuList__item a:before {
    position: absolute;
    top: 3px;
    left: 0px;
    font-size: 10px;
  }
  
  .c-footerMenuBox {
    width: 100%;
  }
  .c-footerMenuBox .c-footerMenuList {
    width: 100%;
  }
  .c-footerMenuBox .c-footerMenu-1 {
    width: 55%;
  }
  .c-footerMenu-2 {
    width: 55%;
    margin-top: 20px;
  }
  .c-footerMenuBox .c-footerMenu-3 {
    width: 45%;
  }  
  .c-footerMenu-4 {
    margin-top: 20px;
    width: 45%;
  }
  .c-footerCopyright {
    font-size: 10px;
    line-height: 1.5;
    height: 35px;
  }



  .c-returnPageTop {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 1000;
  }
  .c-returnPageTop a {
    width: 35px;
    height: 35px;
    font-size: 18px;
    line-height: 1;
  }
}


.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}