@charset "UTF-8";
*{
  box-sizing: border-box;

  font-size: 1.6rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;

  --main-color: #D6F0FF;
  --CON-color: #2959DD;
  --header-height: 12rem;
  --header-nav-fs: 2.2rem;
  --footer-address-fs: 1.8rem;
  --footer-nav-fs: 1.9rem;
}
html{
  font-size: 62.5%;
}
body{
  color: #333;
}
a{
  text-decoration: none;
}
img,svg{
  max-width: 100%;
  height: auto;
}
input[type="text"],
input[type="search"],
input[type="number"],
input[type="email"],
input[type="date"],
input[type="password"],
textarea,
select{
  width: 44rem;
  padding: 1rem 1.2rem;
  font-size: 1.6rem;

  border: solid 2px #d1d1d1;
  border-radius: 4px;

  transition: 1.3s all;
  outline-color: #2196f3;
}
textarea{
  aspect-ratio: 16/9;
}
::placeholder {
  color: #bbb;
  user-select: none;
}
button,
.btn{
  display: flex;
  min-width: 15.6rem;
  padding: 1em 1em;

  user-select: none;

  justify-content: center;
  align-items: center;

  cursor: pointer;
  user-select: none;

  font-size: 1.6rem;
  line-height: 1.2;

  border: solid 1px transparent;
}
.btn-color-white{
  color: var(--main-color);
  background: #fff;
}
.btn-color-blue{
  color: #fff;
  background: var(--main-color);
}
.btn-color-CONblue{
  color: #fff;
  background: var(--CON-color);
}
.btn-color-orange{
  color: #fff;
  background: #ef4b4b;
}
.font-oswald{
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
}


#header{
  position: fixed;
  z-index: 100;

  display: flex;
  justify-content: space-between;
  align-items: center;

  width: 100%;
  height: var(--header-height);
  padding-left: 2.5%;

  background: rgba(255, 255, 255, 0.9);
}
#header-right{
  display: grid;
  grid-template-rows: 4.8rem 1fr;
  justify-items: end;
}
#header-right-top{
  display: flex;
  gap: 2.4rem;

  height: 100%;
}
#header-sns-icons{
  display: flex;
  align-items: center;
  gap: 1.6rem;

  height: 100%;
}
#header-right-top .btnContainer{
  display: flex;
  height: 100%;

  font-size: 2rem;
}
#header-right-top .contactbtn,
#header-right-top .phonebtn{
  display: flex;
  align-items: center;
  justify-content: center;

  width: 20rem;
  height: 100%;

  color: #fff;

  user-select: none;
}
#header-right-top .contactbtn img,
#header-right-top .phonebtn img{
  margin-right: .8rem;
}
#header-right-top .contactbtn{
  background: #2959DD;
}
#header-right-top .phonebtn{
  background: #EF4B4B;

  font-size: 2.2rem;
  font-family: 'Oswald', sans-serif;
}
#header-nav > ul{
  display: flex;

  font-size: var(--header-nav-fs);
  gap: 2.4rem;
}
#header-nav > ul > li > a{
  display: flex;
  align-items: center;
  justify-content: center;

  height: calc(var(--header-height) - 4.8rem);
  padding: 0 1.6rem;


  color: #333;
  font-weight: 600;
}

#floatmenu{
  display: none;
}
#header-nav ul li:has(#floatmenu){
  display: flex;
  align-items: center;
  justify-content: center;

  height: calc(var(--header-height) - 4.8rem);
  padding: 0 1.6rem;

  color: #333;
  font-weight: 600;
}
#header-nav ul li:has(#floatmenu):hover #floatmenu{
  position: fixed;
  top: var(--header-height);
  left: 0;

  display: block;
  width: 100%;
}
#header-nav ul li:has(#floatmenu) #floatmenu ul{
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding: 4rem 5vw;

  color: #34B4FF;
  background: #2959ddbe;
}
#header-nav ul li:has(#floatmenu) #floatmenu ul >*+*{
  margin-inline-start: 2em;
}
#header-nav ul li:has(#floatmenu) #floatmenu ul a{
  padding: 0.8em 1.5em;

  font-size: 1.5rem;
  color: #34B4FF;
  background: #fff;
}






#header-menu-btn{
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10001;

  display: none;
  height: 6.4rem;
  aspect-ratio: 1/1;
  
  cursor: pointer;
}
#header-menu-btn span{
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);

  display: inline-block;
  width: 40%;
  height: 3px;

  background: var(--CON-color);

  transition: 0.3s all ease-in;
}
#header-menu-btn span:nth-child(1){
  top: 40%;
}
#header-menu-btn span:nth-child(2){
  top: 50%;
}
#header-menu-btn span:nth-child(3){
  top: 60%;
}
body.hum-open #header-menu-btn span:nth-child(1){
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
body.hum-open #header-menu-btn span:nth-child(2){
  opacity: 0;
}
body.hum-open #header-menu-btn span:nth-child(3){
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
#global-menu{
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;

  width: 100%;
  height: 100%;
  height: 100dvh;

  background: #fff;
  opacity: 0;

  overflow-y: scroll;
  pointer-events: none;
  transition: all 0.4s linear;
}
body.hum-open #global-menu{
  z-index: 10000;

  opacity: 1;

  pointer-events: auto;
}
#global-menu-inner{
  width: min(80rem, 100%);
  min-height: 100%;
  padding: 6.4rem;
  margin-inline: auto;
}
#global-menu-logo{
  width: 80%;
}
#global-menu nav{
  width: min(100%, 60rem);
}
#global-menu nav ul{
  display: flex;
  flex-direction: column;
}
#global-menu nav ul li a{
  display: block;
  padding: 2rem 0;

  font-size: 1.6rem;
  font-weight: 600;

  color: #333;
  border-top: solid 1px #ccc;
}
#global-menu nav ul li:last-child a{
  border-bottom: solid 1px #ccc;
}


#footer-pictogram-wrap{
  width: 100%;
}
#footer-pictogram{
  width: 100%;
  vertical-align: bottom;
  max-width: 100%;
}
footer#footer{
  display: grid;
  justify-content: space-between;
  row-gap: 1.6rem;

  width: min(120rem,100%);
  padding: 2.4rem 1% 1.6rem;
  margin-inline: auto;

  border-image-source: linear-gradient(var(--main-color),var(--main-color));
  border-image-slice: 0 fill;
  border-image-outset: 0 100vw;
}
#footer-logo{
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}
#footer-left{
  grid-column: 1 / 2;
  grid-row: 2 / 3;

  display: flex;
  gap: 2.4rem;
  padding-top: 2.4rem;
}
#footer-left address{
  max-width: 28rem;

  font-size: var(--footer-address-fs);
  line-height: 1.4;
  word-break: break-all;
}
#footer-left address span{
  font-weight: 700;
}
#footer-right{
  grid-column: 2 / 3;
  grid-row: 1 / span 2;

  display: flex;
  align-items: flex-end;
  gap: 2.4rem;
}
#footer-right a{
  color: #4D4D4D;
}
#footer-right nav ul{
  display: flex-inline;
  flex-direction: column;

  font-size: var(--footer-nav-fs);
}
#footer-right nav ul li:not(:last-of-type){
  margin-bottom: 1.6rem;
}
#footer-right nav ul li:last-of-type{
  font-size: 1.4rem;
  opacity: 0.6;
}
#footer-sns ul{
  display: flex;
  gap: 1.6rem;
}
#copyright{
  grid-column: 1 / span 2;
  grid-row: 3/ 4;

  font-size: 1.2rem;
  font-weight: 300;
  text-align: right;
}

/*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;
}

/*-----single-----*/
.PE-single{
  background: url(../img/eyecatch/PE-info.png);
}
#single{
  padding-bottom: 8rem;
}
#single article{
  width: 100%;
  padding: 0 1.6rem;/*レスポンシブ記事用*/
  margin-bottom: 8rem;
}
#single article h3{
  width: 100%;
  padding-left: 1.2rem;
  padding-bottom: 1.2rem;
  margin-bottom: 0.8rem;

  font-size: 2.4rem;
  font-weight: 600;
  text-align: left;

  border-bottom: solid 1px #B5B5B5;
}
#single article .desc{
  padding-left: 1.2rem;
  margin-bottom: 3.2rem;
}
#single article .date{
  margin-bottom: 1.6rem;

  font-size: 1.5rem;
  color: #B5B5B5;
}
.article-content .thumbnail{
  width: min(60rem,100%);
  aspect-ratio: 16/9;
  margin-bottom: 2.4rem;

  object-fit: cover;
}
.article-content p{
  line-height: 1.4;
}
#single .btn{
  width: min(16rem, 100%) !important;
  margin-inline: auto;
}


/*-----archive-----*/
ul.sortlink-list{
  display: flex;
  flex-wrap: wrap;

  padding: 0 2.4rem;
  margin-bottom: 6.4rem;
}
.sortlink-list li:not(:last-child){
  margin-right: 1.6rem;
  margin-bottom: 1.6rem;
}
.sortlink-list li a{
  display: inline-block;
  padding: 1.2rem 1.5em;

  font-size: 1.4rem;
  font-weight: 600;

  color: var(--CON-color);
  border: solid 1px var(--CON-color);
  border-radius: .8rem;
}
.current-tag{
  color: #fff !important;
  font-weight: 600 !important;
  
  background: var(--CON-color) !important;
  pointer-events: none;
  cursor: auto;
}
.achievement-list{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  column-gap: 2.4rem;
  row-gap: 3.2rem;

  width: 100%;
  padding: 0 2.4rem;
  margin-bottom: 4rem;
}
.achievement-list .item .thumbnail-wrap{
  position: relative;

  margin-bottom: 0.4rem;
  overflow: hidden;
}
.achievement-list .item .thumbnail-wrap img{
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.achievement-list .item .title{
  position: absolute;
  top: 0;
  left: 0;

  display: inline-block;
  padding: .8rem 1.6rem;

  color: #fff;
  font-weight: 600;
  background: var(--CON-color);
}
.wp-tagContainer{
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}
.wp-tag{
  display: inline-block;
  padding: .6rem 1em;

  font-size: 1.6rem;
  color: #fff;

  background: #34B4FF;
}

@media (min-width : 1024px){
  .sortlink-list li a:hover{
    transition: all 0.3s;
    background: #2959dd2b !important;
  }
  .achievement-list .item .thumbnail-wrap img{
    transition: all 0.3s;
  }
  .achievement-list .item .thumbnail-wrap a:hover img{
    transform: scale(1.03);
  }
}


@media (max-width : 1024px){
  #header{
    position: fixed;
    z-index: 100;
  
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  
    width: 100%;
    height: 6.4rem;
    padding-left: 2.5%;
    padding-right: calc(6.4rem + 2.5%);
  
    background: rgba(255, 255, 255, 0.9);
  }
  #header-logo{
    width: 100%;
    max-width: 32rem;
  }
  #header-right{
    display: none;
  }
  #header-menu-btn{
    display: block;
  }

  .achievement-list{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    column-gap: 2.4rem;
    row-gap: 3.2rem;
  
    width: 100%;
    padding: 0 2.4rem;
    margin-bottom: 4rem;
  }
}
@media (max-width : 599px){
  *{
    --header-height : 9.6rem;
  }
  #footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: stretch;

    padding: 1.6rem !important;
  }
  #footer-logo{
    grid-column: 1 / 2;
    grid-row: 1 / span 1;
  }
  #footer-left{
    grid-column: 1 / 2;
    grid-row: 2 / span 1;
  
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
    padding-top: 2.4rem;
  }
  #footer-right{
    grid-column: 1 / 2;
    grid-row: 3 / span 1;
  
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 2.4rem;
  }
  #copyright{
    grid-column: 1 / 2;
    grid-row: 4 / span 1;
  
    font-size: 1.2rem;
    font-weight: 300;
    text-align: center;
  }

  ul.sortlink-list{
    display: flex;
    flex-wrap: wrap;

    padding: 0;
    margin-bottom: 4rem;
  }
  .sortlink-list li:not(:last-child){
    margin-right: .5em;
    margin-bottom: .5em;
  }
  .sortlink-list li a{
    padding: .8rem .5em;
  
    font-size: 1.6rem;

    border-radius: .8rem;
  }
  .achievement-list{
    display: grid;
    grid-template-columns: repeat(1,1fr);
    column-gap: 2.4rem;
    row-gap: 3.2rem;
  
    width: 100%;
    padding: 0;
    margin-bottom: 4rem;
  }
}