@charset "UTF-8";
html{
  font-size: 62.5%;

}
body{
  --header-height: 7.2rem;

  width: 100%;
  color: #333;

  font-size: 1.6rem;
  font-family: "zen-old-mincho", sans-serif;
  font-weight: 400;
  font-style: normal;

  background-color: #fff;

}
body.has-annotation header{
  margin-top: 2.4rem;
}
main{
  width: 100%;
  margin-bottom: 8rem;
  overflow-x: hidden;
  background-color: #fff;
}
a{
  text-decoration: none;
}
img,svg{
  max-width: 100%;
  height: auto;
}
.main-width{
  width: min(112rem, 100%);
  margin-inline: auto;
}
.btn{
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 12rem;
  padding: 1.6rem 1em;

  font-size: 1.5rem;
  color: #fff;
}
.btn-color-mc{
  background-image: linear-gradient(45deg, #2299FF,#01CAFC);
}
.ta-right{
  text-align: right;
}
.text-red{
  color: #f00;
}
.jcc{
  display: flex;
  justify-content: center;
}


/*header*/
#header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  padding-left: 1vw;

  background: #E9F5FF;
}
header nav{
  position: relative;
  padding-right: calc(12rem * 2 + 4.8rem);
}
header nav > ul li{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 12rem;
  height: var(--header-height);
  padding: 0 1em;

  font-weight: 600;
}
header nav > ul li a{
  color: #333;
  font-weight: 600;
}
h1 a{
  display: inline-block;
  width: auto;
  height: 6rem;
}
h1 a img{
  height: 100%;
}
#nav-float{
  position: absolute;
  top: 0;
  right: 2.4rem;
  z-index: 5;
}
#nav-float-inner{
  display: grid;
  grid-template-columns: 12rem 12rem;
  column-gap: 2.4rem;

  width: calc(12rem * 2 + 2.4rem);
}
#nav-contact,
#nav-document{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;

  width: 100%;
  height: calc(var(--header-height) + 2.4rem);

  color: #fff;
  border-radius: 0 0 1.6rem 1.6rem;
}
#nav-contact{
  background: #0B55BA;
}
#nav-document{
  background: #24B3FF;
}


#header-annotation{
  display: none;
  width: 100%;
}
#header-annotation-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: .8rem 2vw;

  background: #FDF150;
}
#header-annotation-inner a{
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 600;
  color: #333;
  margin-left: 1.6rem;
}
#header-annotation-news{
  display: flex;
  align-items: center;
  max-width: 60rem;
}
#header-annotation-deletebtn{
  display: none;
}

#globalnav-check-label{
  position: relative;
  display: none;
  width: 4.8rem;
  height: 4.8rem;

  cursor: pointer;
}
#globalnav-check-label span{
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);

  display: inline-block;
  width: 3.2rem;
  height: 3px;

  background: #333;

  transition: 0.3s all ease-in;
}
#globalnav-check-label span:nth-child(1){
  top: 35%;
}
#globalnav-check-label span:nth-child(2){
  top: 50%;
}
#globalnav-check-label span:nth-child(3){
  top: 65%;
}
#glonav-logo{
  width: min(40rem,62.5%);
  margin-inline: auto;
  margin-bottom: 4rem;
}
/*footer*/
footer{
  padding: 2.4rem 1.6rem 4rem;
  background: #E5F5FF;
}
.footer-inner{
  display: grid;
  grid-template-columns: 30rem 1fr;
  column-gap: 6.4rem;
}
#footer-logo{
  display: inline-block;
  width: 24rem;
  height: auto;
  margin-bottom: 1.6rem;
}
#footer-logoBlock{
  line-height: 1.4;
}
#footer-address{
  font-size: 15px;
  margin-bottom: 2.4rem;
}
#copyright{
  font-size: 1.3rem;
}
#footer-links{
  display: flex;
  gap: 4rem;
}
.footer-links-column a{
  color: #333;
}
.footer-links-column a:hover{
  text-decoration: underline;
}
.footer-links-column ul > * + li{
  margin-block-start: 1.2rem;
  color: #333;
}
.footer-links-column ul li:has(.lowerpage-item){
  margin-block-start: .8rem;
}
.lowerpage-item{
  color: #959595 !important;
}
#globalnav-check{
  display: none;
}
#globalnav-wrap{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;

  display: none;
  justify-content: center;
  
  width: 100%;
  height: 100%;
  height: 100dvh;

  opacity: 0;

  background: #46AAFF;

  overscroll-behavior: contain;
  overflow-y: scroll;
  scrollbar-width: none;
}
#globalnav-wrap::-webkit-scrollbar {
  display: none;
}
#globalnav-check:checked ~ #globalnav-wrap{
  display: flex;
  animation: glonavanime 0.3s ease-in forwards;
}
@keyframes glonavanime{
  100%{
    opacity: 1;
  }
}
#globalnav-wrap::before{
  content: '';
  display: flex;
  width: 1px;
  height: calc(100dvh + 1px);

  background: transparent;
}
#globalnav{
  position: relative;
  display: flex;
  flex-direction: column;

  width: 100%;
  margin-inline: auto;

  color: #333;
}
#globalnav label{
  position: relative;

  display: inline-block;
  width: 6rem;
  height: 6rem;

  align-self: flex-end;
}
#globalnav label::before,
#globalnav label::after{
  content: '';

  position: absolute;
  top: 50%;
  left: 50%;

  width: 50%;
  height: 3px;
  background: #fff;
}
#globalnav label::before{
  transform: translate(-50%,-50%)rotate(45deg);
}
#globalnav label::after{
  transform: translate(-50%,-50%)rotate(-45deg);
}
#globalnav ul{
  display: flex;
  flex-direction: column;
  align-items: center;

  font-size: 1.8rem;
  line-height: 1.4;
}
#globalnav ul > *+*{
  margin-block-start: 2.4rem;
}
#globalnav ul a{
  color: #fff;
}


#contact-block{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6.4rem 8rem;

  color: #fff;

  background-image: url(../img/contact-block.png);
  background-size: cover;
  border-radius: 4.8rem 0 4.8rem 0;
}
#contact-block > .title{
  margin-bottom: 3.2rem;

  font-size: 1.7rem;
  text-align: center;
  line-height: 1;
}
#contact-block > .title::before{
  content: attr(data-text);
  display: block;
  margin-bottom: .2em;

  font-size: 4rem;
}
#contact-block .contents{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  width: 100%;
  margin-top: 2.4rem;

  color: #333;
  background: #fff;
}
#contact-block .contents-toForm,
#contact-block .contents-contact{
  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 4rem;

  line-height: 1.4;
}
#contact-block .contents-toForm .title,
#contact-block .contents-contact .title{
  margin-bottom: .8rem;
  font-weight: 600;
}
#contact-block .contents-toForm{
  border-right: solid 1px #6EBCFF;
}
#contact-block .contents-toForm .btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: min(28rem,100%);
  padding: 1em 0;

  color: #fff;

  background-image: linear-gradient(90deg,#46AAFF, #75CAFE);
}
#contact-block .contents-toForm .btn img{
  margin-left: .4rem;
}
#contact-block .contents-contact .phonenumber-wrap{
  margin-bottom: 1.6rem;

  text-align: center;
}
#contact-block .contents-contact .phonenumber{
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 3.6rem;
  line-height: 1;
}
#contact-block .contents-contact .phonenumber img{
  display: inline-block;
  width: auto;
  height: 100%;
  margin-right: .4rem;
}

/*paginator*/
.paginator{
  width: 100%;
  display: flex;
  justify-content: center;
}
.wp-pagenavi{
  /*ul*/
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.wp-pagenavi > *{
  font-size: 1.6rem;

  display: inline-block;
  padding: 0 10px;
  line-height: 2;

  color: #333;

  border: solid 1px #ccc;
  border-radius: 4px;
}
.wp-pagenavi > span{
  color: #999;
}
.wp-pagenavi > a:hover{
  background-color: #338aff;
  color: #fff;
  border-radius: 5px;
}

@media (max-width : 1200px){
  #header-inner{
    padding: .6rem 1vw;
  }
  #globalnav-check-label{
    display: inline-block;
  }
  h1 a{
    height: auto;
  }
  h1 a img{
    height: 100%;
    max-height: 4.8rem;
  }
  header nav{
    display: none;
  }
  footer{
    padding: 2.4rem 3vw 8rem;
    background: #E5F5FF;
  }
  .footer-inner{
    display: grid;
    grid-template-columns: repeat(1,1fr);
    column-gap: auto;
    row-gap: 6rem;
  }

  .main-width{
    width: min(112rem, 100%);
    margin-inline: auto;

    padding-left: 3vw;
    padding-right: 3vw;
  }

  #contact-block{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6.4rem 8rem;
  
    color: #fff;
  
    background-image: url(../img/contact-block.png);
    background-size: cover;
    /*bdrs削除*/
    border-radius: 0;
  }
}
@media (max-width : 599px){
  #footer-links{
    display: flex;
    flex-direction: column;
  }

  #contact-block{
    padding: 6.4rem 5vw;
  }
  #contact-block .contents{
    display: grid;
    grid-template-columns: repeat(1,1fr);
  }
  #contact-block .contents-toForm,
  #contact-block .contents-contact{
    display: flex;
    flex-direction: column;
    align-items: center;
  
    width: 100%;
    padding: 4rem 0;
  }
  #contact-block .contents-toForm{
    border-right: solid 0px #6EBCFF;
  }
}