@charset "utf-8";

:root{
/* color */
  --main-c:#007FFE;
  --rev-c:#FFF8FA;
  --text-c:#011A33;
}
.grecaptcha-badge { visibility: hidden; }
.pop{
  font-family: 'Poppins', sans-serif;
}
img{
  display: block;
  width: 100%;
}

body{
  background: #E6E2E1;
  font-family: 'Noto Sans JP', sans-serif;
  position: relative;
}
.wrapper{
  overflow: hidden;
  width: 100%;
}
header{
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
}
header.open{
	z-index: 99;
}
.arrow-icon{
  position: relative;
}
.arrow-icon::before{
  content: "";
  display: block;
  width: 24px;
  height: 6px;
  background: url(../image/common/btn-arrow.svg) no-repeat center center;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translate(0%,-50%);
}
.header__inner .logo{
  width: 260px;
}
.header__inner{
  padding: 12px 200px 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  
}
.header__inner nav{
  width: 100%;
}
.header__inner nav ul{
  display: flex;
  justify-content: flex-end;
  column-gap: 60px;
}
.header__inner nav ul li{
  list-style: none;
  cursor: pointer;
}
.header__inner nav ul li.menu-item-has-children{
  position: relative;
}
.header__inner nav ul li.menu-item-has-children:hover > ul.sub-menu,
.header__inner nav ul li.menu-item-has-children:focus > ul.sub-menu{
  visibility: visible;
}
.header__inner nav ul li a{
  color: var(--rev-c);
  cursor: pointer;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  text-shadow: 0px 3px 6px rgba(0,0,0,0.16);
  transition: .3s;
}
.header__inner nav ul li:hover > a{
  color: #A7A7A7;
}
.header__inner nav ul.sub-menu{
  visibility: hidden;
  position: absolute;
  bottom: 0;
  transform: translateY(100%);
  display: flex;
  flex-direction: column;
  left: 0;
  padding: 0 0 0 16px;
  width: 200px;
  gap: 12px 0;
  padding-top: 12px;
}
.fix__btn{
  position: fixed;
  top: 0;
  right: 0;
  width: 160px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--main-c);
}
.fix__btn a{
  color: var(--rev-c);
  text-decoration: none;
  font-weight: 700;
}
@media screen and (max-width:1080px){
  .header__inner{
    padding: 12px 160px 0 24px;
  }
  .header__inner nav ul li a{
    font-size: 14px;
  }
  .header__inner nav ul{
    column-gap: 32px;
  }
  .fix__btn{
    width: 120px;  
  }
  .fix__btn a{
    font-size: 14px;
  }
  .header__inner .logo{
    width: 200px;
  }
}
@media screen and (max-width:768px){
  .header__inner nav{
    visibility: hidden;
    width: 0;
  }
  .fix__btn{
    height: 48px;
  }
  .fix__btn .contact__btn{
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width:600px){
  .fix__btn {
    width: 64px;
  }
  .fix__btn a {
    font-size: 10px;
  }
}

#side{
  position: fixed;
  top: 0;
  right: 0;
  width: 80px;
  height: 100%;
  z-index: 99; 
  background: #E6E2E1;
  transition: .3s;
}
#side.open{
	background: var(--main-c);
  z-index: 999;
}
#side .side__inner{
  position: relative;
  width: 100%;
  height: 100%;
}
#side .hbg__btn{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  cursor:pointer;
}
#side .hbg__btn span{
  width: 1px;
  height: 40px;
  background: var(--text-c);
  display: inline-block;
  margin: 0 2px;
  transition: .3s;
}
#side .hbg__btn.open span:nth-child(1){
  transform: rotate(60deg) translate(0px, -5px);
	background: var(--rev-c);
}
#side .hbg__btn.open span:nth-child(2){
  transform: rotate(-60deg) translate(0px, -5px);
	background: var(--rev-c);
}
#side .hbg__menu{
  position: absolute;
  width: 500px;
  height: 100%;
  top: 0;
  right: -10%;
  transform: translateX(100%);
  background: var(--main-c);
	transition: .3s;
}
#side .hbg__menu.open{
	transform: translateX(-80px);
}
#side .hbg__menu .menu__inner{
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    padding-left: 40px;
}
#side .hbg__menu .menu__inner a{
	color: var(--rev-c);
	text-decoration: none;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.2;
}
#side .hbg__menu .menu__inner ul.menu{
	list-style: none;
	padding: 0;
	column-count: 2;
}
#side .hbg__menu .menu__inner ul.menu li a{
	margin-bottom: 12px;
    display: block;
}
#side .hbg__menu .menu__inner li{
	margin-bottom: 12px;
  page-break-inside: avoid;
break-inside: avoid;
}
#side .hbg__menu .sub-menu {
	padding-left: 2em;
	list-style: none;
	column-count: 1;
}
#side .hbg__menu a{
	position: relative;
	padding-bottom: 18px;
}
#side .hbg__menu a::after {
    content: attr(data-desc);
    display: block;
    font-size: 12px;
    font-weight: 500;
	position: absolute;
	bottom: 0;
	left: 0;
}
#side .e-message{
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
transition: .3s;
}
#side.open .e-message{
	color: var(--rev-c);
}
#side .e-message p{
  font-size: 10px;
  transform: rotate(90deg);
  white-space: nowrap;
  font-weight: 300;
}
@media screen and (max-width:1080px){
  #side{
    width: 64px;
  }
  #side .hbg__btn span{
    height: 32px;
  }
  #side .e-message p {
    font-size: 8px;
  }
  #side .hbg__menu.open{
    transform: translateX(-64px);
  }
}
@media screen and (max-width:768px){
  #side{
    width: 48px;
  }
  #side .hbg__btn{
    top: 48px;
    right: 0;
    left: auto;
    width: 120px;
    transform: none;
    background: var(--rev-c);
    display: flex;
    flex-direction: column;
    padding: 18px 0;
    align-items: center;
  }
  #side .hbg__btn span{
    height: 1px;
    width: 40px;
  }
  #side .hbg__btn span:nth-child(1){
    margin-bottom: 8px;
  }
  #side .hbg__btn.open{
    background: var(--main-c);
    z-index: 2;
  }
  #side .hbg__menu.open{
    transform: translateX(-48px);
  }
  #side .hbg__btn.open span:nth-child(1) {
    transform: rotate(35deg) translate(8px, 0px);
    background: var(--rev-c);
  }
  #side .hbg__btn.open span:nth-child(2) {
    transform: rotate(-35deg) translate(8px, 0px);
    background: var(--rev-c);
  }
}

@media screen and (max-width:600px){
  #side {
    width: 40px;
  }
  #side .hbg__btn{
    width: 64px;
  }
  #side .hbg__btn span {
    width: 32px;
  }
  #side .hbg__menu.open{
    transform: translateX(-40px);
  }
  #side .hbg__menu.open{
    width: 80vw;
  }
  #side .hbg__menu .menu__inner ul.menu{
    column-count: 1;
  }
  #side .hbg__menu .menu__inner{
    height: 100%;
    justify-content: start;
    padding-left: 40px;
    overflow-y: scroll;
     -ms-overflow-style: none;
      scrollbar-width: none;
  }
  #side .hbg__menu .menu__inner::-webkit-scrollbar{
    display: none;
  }
  #side .hbg__menu .menu__inner a{
        font-size: 20px;
  }
  #side .hbg__btn span {
    height: 2px;
    border-radius: 4px;
  }
  
}

#bnr{
  width: calc(100% - 160px);
  margin: 0 auto 180px;
}
#bnr .section__inner{
  background: url(../image/common/bnr-bg.jpg) no-repeat center center / cover;
  padding-top: 4%;
  width: 100%;
  box-sizing: border-box;
  border: solid 14px var(--main-c);
}
#bnr .text__block{
  width: min(90%,820px);
  padding-left: 8%;
  margin-bottom: 12px;
}
#bnr .text__block h4{
  color: var(--rev-c);
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 16px;
}
#bnr .text__block p{
  color: var(--rev-c);
  font-size: 15px;
  line-height: 2.0;
}
#bnr .btn a{
  background: var(--main-c);
  color: var(--rev-c);
  font-weight: 700;
  font-size: 20px;
  padding: 12px 120px 8px 32px;
  display: block;
  text-decoration: none;
  width: fit-content;
  margin: 0 0 0 auto;
}

@media screen and (max-width:1080px){
  #bnr .text__block h4{
    font-size: 24px;
  }
  #bnr .text__block p{
    font-size: 14px;
  }
  #bnr .btn a{
    font-size: 18px;
    padding: 11px 96px 8px 24px;
  }
  #bnr {
    width: calc(100% - 128px);
    margin: 0 auto 120px;
  }
}
@media screen and (max-width:768px){
  #bnr {
    width: calc(100% - 96px);
    margin: 0 auto 80px;
  }
  #bnr .section__inner{
    border: solid 10px var(--main-c);
  }
  #bnr .text__block{
    margin-bottom: 10px;
    width: 94%;
  }
  #bnr .text__block h4{
    font-size: 20px;
  }
  #bnr .text__block p{
    font-size: 13px;
  }
}
@media screen and (max-width:600px){
  #bnr {
    width: calc(100% - 40px);
    margin: 0 40px 64px 0;
  }
  #bnr .text__block p{
    font-size: 12px;
  }
}
#contact{
  background: var(--text-c);
  position: relative;
  z-index: 100;
}
#contact .section__inner{
  width: min(94%,1360px);
  margin: 0 auto;
}
#contact .flex{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#contact .contact-item{
  width: calc(50% - 1px);
  padding: 80px 0 80px 32px;
  display: flex;
  flex-direction: column;
}
#contact .contact-item:nth-child(1){
  background-image: linear-gradient(to bottom, var(--rev-c) 2px, transparent 1px);
  background-size: 1px 6px;
  background-repeat: repeat-y;
  background-position: top right;
  gap: 16px 0;
}
#contact .contact-item:nth-child(2){
  gap: 24px 0;
}
#contact .-left .no-border{
  display: flex;
  flex-wrap: nowrap;
  color: var(--rev-c);
  text-decoration: none;
  font-weight: 700;
  font-size: 24px;
  align-items: center;
}
#contact .-left a.no-border{
  font-size: 32px;
}
#contact .-left .no-border img{
  width: 32px;
  margin-right: 8px;
}
#contact .btn{
  width: min(90%,460px);
}
#contact .btn a{
  display: block;
  width: 100%;
  border: solid 1px var(--rev-c);
  color: var(--rev-c);
  font-weight: 700;
}
#contact .-left .btn a{
  padding: 12px 0 12px 32px;
  font-size: 24px;
  text-decoration: none;
}
#contact .-right .btn{
  margin: 0 auto;
}
#contact .-right .btn a{
  padding: 16px 0 16px 32px;
  font-size: 32px;
    text-decoration: none;
}
#contact .-right p{
  color: var(--rev-c);
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
}

@media screen and (max-width:1080px){
  #contact .-left a.no-border {
    font-size: 28px;
  }
  #contact .-left .no-border img{
    width: 28px;
  }
  #contact .-left .btn a{
    font-size: 20px;
  }
  #contact .contact-item{
    padding: 64px 0 64px 24px;
  }
  #contact .-right .btn a{
    font-size: 28px;
  }
  #contact .-right p{
    font-size: 18px;
  }
}

@media screen and (max-width:900px){
  #contact .contact-item {
    padding: 40px 0 40px 20px;
  }
  #contact .-left .no-border{
    font-size: 18px;
  }
  #contact .-left a.no-border {
    font-size: 20px;
  }
  #contact .-left .no-border img{
    width: 20px;
  }
  #contact .-left .btn a{
    font-size: 18px;
  }
  #contact .-right .btn a{
    font-size: 20px;
  }
}

@media screen and (max-width:768px){
  #contact .contact-item{
    width: 100%;
  }
  #contact .contact-item:nth-child(1){
    width: 100%;
    background-image: linear-gradient(to right, var(--rev-c) 2px, transparent 1px);
    background-size: 6px 1px;
    background-repeat: repeat-x;
    background-position: left bottom;
  }
  #contact .-left a.no-border,
  #contact .-left .no-border{
    justify-content: center;
  }
  #contact .btn{
    margin: 0 auto;
  }
  #contact .-left,
  #contact .-right{
    padding-left: 0;
  }
}
footer{
  padding-top: 72px;
  position: relative;
  z-index: 100;
  background: #E6E2E1;
}
footer .footer__inner{
  width: min(94%,1360px);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .footer__inner .flex{
  display: flex;
  flex-wrap: wrap;
}
footer .footer__inner .flex img{
  width: 120px;
  margin-right: 24px;
}
footer .footer__inner .flex p{
  font-size: 14px;
  line-height: 1.6;
}
footer .-left{
  display: flex;
}
footer .-right {
  
}
footer .-right ul{
  display: flex;
}
footer .-right ul li{
  list-style: none;
}
footer .-right ul li a{
  padding: 19px 32px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  color: var(--text-c);
  background-image: linear-gradient(to bottom, var(--text-c) 2px, transparent 1px);
  background-size: 1px 6px;
  background-repeat: repeat-y;
  background-position: top right;

}
footer .-right ul li:last-child a{
  background: none;
}
footer .copyright{
  padding-top: 64px;
  text-align: center;
}
footer .copyright p{
  font-size: 12px;
}

@media screen and (max-width:1080px){
  footer .-right ul li a{
     padding: 16px 18px;
  }
  footer .footer__inner .flex{
    flex-direction: column;
  }
  footer .footer__inner .flex a{
    margin-bottom: 12px;
  }
  footer .footer__inner .flex p{
    width: 100%;
    font-size: 12px;
  }
  footer {
    padding-top: 64px;
  }
}
@media screen and (max-width:768px){
  footer {
    padding-top: 40px;
  }
  footer .-right ul{
    flex-direction: column;
  }
  footer .-right ul li{
    display: contents;
  }
  footer .-right ul li:first-of-type a{
    position: relative;
  }
  footer .-right ul li:first-of-type a::before{
    content: "";
    width: 100%;
    height: 2px;
    display: block;
    background-image: linear-gradient(to right, var(--text-c) 2px, transparent 1px);
    background-size: 6px 1px;
    background-repeat: repeat-x;
    background-position: left bottom;
    position: absolute;
    top: 0;
    left: 0;
  }
  footer .-right ul li a,
  footer .-right ul li:last-child a{
    background-image: linear-gradient(to right, var(--text-c) 2px, transparent 1px);
    background-size: 6px 1px;
    background-repeat: repeat-x;
    background-position: left bottom;
  }
  footer .footer__inner{
    align-items: center;
  }
  footer .-left{
/*    order: 2;*/
    widows: 240px;
  }
  footer .-right{
/*    order: 1;*/
    width:calc(100% - 240px);
  }
  footer .-right ul{
    padding: 0;
  }
}

@media screen and (max-width:500px){
  footer {
    padding-top: 32px;
  }
  footer .footer__inner{
    flex-direction: column;
    }
  footer .-left{
    order: 2;
    width: 100%;
  }
  footer .-right{
    order: 1;
    width: 100%;
  }
  footer .footer__inner .flex{
    width: 100%;
  }
  footer .footer__inner .flex a{
    display: contents;
  }
  footer .footer__inner .flex a img{
    margin: 0 auto;
  }
  footer .footer__inner .flex p{
    text-align: center;
  }
}