@charset "UTF-8";
*{
  --tc: #1359E8;
  --zindex-humberger: 102;
  --z-index-gmenu: 101;
  --header-menu-margin: 72px;

  box-sizing: border-box;
}
@font-face {
  font-family: 'LINE Seed JP_OTF Thin';
  src: url('../font/LINESeedJP_OTF_Th.otf');
} 
@font-face {
  font-family: 'LINE Seed JP_OTF Reguler';
  src: url('../font/LINESeedJP_OTF_Rg.otf');
}
@font-face {
  font-family: 'LINE Seed JP_OTF Bold';
  src: url('../font/LINESeedJP_OTF_Bd.otf');
} 
@font-face {
  font-family: 'LINE Seed JP_OTF ExtraBold';
  src: url('../font/LINESeedJP_OTF_Eb.otf');
}
html{
  --header-height: 100px;
  
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}
body{
  width: 100%;
  color: #333;
  background-color: #EFEFEF;

  font-family: 'LINE Seed JP_OTF Reguler';
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
}
a{
  text-decoration: none;
}
img,svg{
  max-width: 100%;
  height: auto;
}
address{
  font-style: normal;
}
.jcc{
  display: flex;
  justify-content: center;
  width: 100%;
}
.jcr{
  display: flex;
  justify-content: right;
  width: 100%;
}
.m-b-4{
  margin-bottom: 4px;
}
.m-b-8{
  margin-bottom: 8px;
}
.m-b-16{
  margin-bottom: 16px;
}
.m-b-24{
  margin-bottom: 24px;
}
.m-b-32{
  margin-bottom: 32px;
}
.m-b-40{
  margin-bottom: 40px;
}
.m-b-48{
  margin-bottom: 48px;
}
.m-b-56{
  margin-bottom: 56px;
}
.btn{
  position: relative;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 360px;
  padding: 24px 16px;

  color: #fff;
  border: solid 2px #fff;
  background: transparent;
  transition: 0.3s all linear;
  user-select: none;
  
  -webkit-box-shadow: 0px 10px 20px -6px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0px 10px 20px -6px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 10px 20px -6px rgba(0, 0, 0, 0.12);

  picture{
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
  }
}
#video-wrapper img {
  display: none;
}
#video-wrapper.video-error video {
  display: none;
}
#video-wrapper.video-error img {
  display: block;
}
/*header*/
header{
  position: fixed;
  z-index: 100;

  width: 100%;
  height: var(--header-height);
}
header .header-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;

  padding-left: 16px;
  padding-right: calc(var(--header-menu-margin) + 2dvw);

  ul.header-menu{
    display: flex;
    align-items: center;
  
    >li{
      font-family: 'LINE Seed JP_OTF Bold';
      line-height: 1;
    }
    #header-tel{
      font-size: 23px;
      color: #fff;
    }
    *:is(#header-line,#header-contact,#header-entry){
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 192px;
      height: 48px;
      padding: 4px .5em;
  
      font-size: 16px;

      border-style: solid;
      border-width: 2px;
      box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
    }
    #header-contact{
      color: var(--tc);
      background: #fff;
      border-color: var(--tc);
    }
    #header-entry{
      color: #fff;
      background: #DD7926;
      border-color: #DD7926;
    }
    >*+*{
      margin-inline-start: 12px;
    }
  }
}
header .header-inner.scrolled{
  background: #fff;

  #header-tel{
    color: var(--tc)!important;
  }
}
label#humMenu{
  --hum-color: #fff;

  position: fixed;
  z-index: var(--zindex-humberger);
  top: 0;
  left: calc(99dvw - var(--header-height));

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: var(--header-height);
  height: var(--header-height);

  color: var(--hum-color);
  text-align: center;
  font-weight: 700;

  p.gmenu-before{
    display: inline-block;
  }
  p.gmenu-after{
    display: none;
  }
  .hum-wrap{
    position: relative;
    display: inline-block;
    width: 50px;
    height: 29px;
    margin-bottom: 4px;

    span{
      position: absolute;

      display: inline-block;
      width: 50px;
      height: 2px;

      background: var(--hum-color);

      transition: 0.3s all linear;
    }
    span.top{
      top: 0;
      left: 0;
    }
    span.middle{
      top: 50%;
      transform: translateY(-50%);
      left: 0;

      background: linear-gradient(to right, transparent 50%,var(--hum-color) 50%, var(--hum-color) 100%);
    }
    span.bottom{
      bottom: 0;
      left: 0;

      width: 0px;
    }
  }
}
body:has(.scrolled) label#humMenu{
  --hum-color: var(--tc);
}
body:has(#gmenu-cb:checked) label#humMenu{
  --hum-color: #fff;
  
  p.gmenu-before{
    display: none;
  }
  p.gmenu-after{
    display: inline-block;
  }
  .hum-wrap{
    span.top{
      top: 50%;
      transform: translateY(-50%);

      transform: rotate(30deg);
    }
    span.middle{
      background: transparent;
    }
    span.bottom{
      top: 50%;
      transform: translateY(-50%);

      transform: rotate(-30deg);
      width: 100%;
    }
  }
}
.forsp{
  display: none;
}
/*gmenu*/
#gmenu-cb{
  display: none;
}
div#gmenu{
  display: none;
}
body:has(#gmenu-cb:checked){
  overflow: hidden;
}
#gmenu-cb:checked ~ div#gmenu{
  position: fixed;
  z-index: var(--z-index-gmenu);

  display: block;
  width: 100%;
  height: 100dvh;
}
div#gmenu-inner{
  width: 100%;
  min-height: 100dvh;

  padding: 20px 5.5vw;
  padding-top: calc(20px + var(--header-height));
  background: #0C2A67;
}
/*single.php*/
#single .ariticle{
  width: min(1120px,100%);
  min-height: 48rem;
  padding: 64px 16px;
  margin-inline: auto;

  .title{
    padding-bottom: 8px;
    margin-bottom: 8px;
  
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
  
    border-bottom: solid 1px #B5B5B5;
  }
  time{
    display: block;
    margin-bottom: 16px;
    font-size: 15px;
    color: #B5B5B5;
  }
  .content{
    margin-bottom: 120px;
  
    line-height: 1.6;
    white-space: pre-wrap;
  }
  a.btn{
    background: #939393;
    border-color: #939393;
  }
}
.swiper{
  width: 100%;

  picture,img{
    width: 100%;
    max-width: none;
  }
}
@media (min-width : 1200px){
  .btn:hover{
    background: #E2EBFF;
    color: var(--tc);
    transition: 0.3s all linear;
    border: solid 2px var(--tc);
    transform: none!important;
  }
  #nav-li-hover:hover{
    color: var(--tc);

    span picture{
      /*arrow*/
      transform: rotate(180deg);
      transition: 0.3s all linear;
    }
  }
  #nav-li-hover:hover .hover-menu{
    position: absolute;
    z-index: 101;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    flex-direction: column;

    width: 22em;
    padding: 16px 16px;

    background: #E6FFED;
    border: solid 1px var(--tc);

    >*+*{
      margin-block-start: 8px;
    }
    a{
      display: grid;
      grid-template-columns: auto 1fr;
      align-items: center;
      column-gap: 4px;
      padding: 0 4px;

      color: #333;
    }
    a:hover{
      background: #fff;
    }
  }
}
@media (max-width : 1200px){
  body{
    --header-height: 60px;
  }
  header{
    padding-right: 0;

    h1 img{
      width: auto;
      height: 36px;
    }
    .header-right{
      display: none;
    }
  }
  header .header-inner{
    padding-right: calc(var(--header-menu-margin) + 2dvw);
  
    ul.header-menu{
      #header-tel{
        font-size: 18px;
      }
      *:is(#header-line,#header-contact,#header-entry){
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 140px;
        height: 48px;
        padding: 4px .5em;
    
        font-size: 14px;
      }
      #header-contact{
        color: var(--tc);
        background: #fff;
        border-color: var(--tc);
      }
      #header-entry{
        color: #fff;
        background: #DD7926;
        border-color: #DD7926;
      }
      >*+*{
        margin-inline-start: 12px;
      }
    }
  }
  label#humMenu{
    top: 0;
    left: auto;
    right: 2dvw;
  }
  body:has(#gmenu-cb:checked) #header-navhum .navhum-inner{
    span:nth-child(1){
      position: absolute;

      top: 50%;
      transform: translateY(-50%)rotate(30deg);
    }
    span:nth-child(2){
      background: transparent;
    }
    span:nth-child(3){
      position: absolute;

      top: 50%;
      transform: translateY(-50%)rotate(-30deg);
    }
  }
  #contact-fixed{
    display: none;
  }
}
@media (max-width : 599px){
  .forsp{
    display: block;
  }
}