/* ===============
 # base
=============== */
:root{
  --contentWidth: 1048px;
}

/* tag */
html{
  scroll-behavior: smooth;
}
body{
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.9;
  color: #000;
  position: relative;
  width: 100%;
  overflow-x: hidden;
  font-feature-settings: 'palt' on;
  background: #f0f0f0;
}
a{
  text-decoration: none;
  color: #000;
}
figure img{width: 100%;}

:target, [id] {
  scroll-margin-top: 65px; 
}

/* class */
.spb{
  display: none;
  @media screen and (max-width:767px){
    display: block;
  }
}
.pcb{
  display: block;
  @media screen and (max-width:767px){
    display: none;
  }
}
.spi{
  display: none;
  @media screen and (max-width:767px){
    display: inline-block;
  }
}
.pci{
  display: inline-block;
  @media screen and (max-width:767px){
    display: none;
  }
}
.spb-t{
  display: none;
  @media screen and (max-width:920px){
    display: block;
  }
}
.pcb-t{
  display: block;
  @media screen and (max-width:920px){
    display: none;
  }
}
.en{
  font-family: futura-pt, sans-serif;
}
.bg-black{
  background: #000;
}
.bg-white{
  background: #fff;
}
.size-s{
  font-size: 14px;
}
.text-c{
  text-align: center;
}
.tar{
  text-align: right;
}


.breadcrumblist{
  margin-top: 63px;
  margin-left: 24px;
  padding-top: 8px;
  font-size: 10px;
}
.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  color: #666;
  a{
    color: #666;
    &:hover{
      text-decoration: underline;
    }
  }
}
.breadcrumb-item:not(:last-child)::after {
  content: "＞";
  margin-left: 0.5em;
}


.page-title,
.page-info{
  width: 100%;
  max-width: var(--contentWidth);
  margin: 0 auto;
  @media screen and (max-width: 767px){
    padding: 0 16px;
  }
}
.page-title{
  margin-top: 92px;
  @media screen and (max-width: 767px){
    margin-top: 40px;
  }
}
.page-main_title{
  font-size: 36px;
  font-family: futura-pt, sans-serif;
  line-height: 1;
  @media screen and (max-width: 767px){
    font-size: 32px;
  }
}
.page-main_disc{
  font-size: 20px;
  margin-top: 8px;
  @media screen and (max-width: 767px){
    font-size: 18px;
  }
}
.page-info{
  margin-top: 24px;
  margin-bottom: 120px;
  @media screen and (max-width: 767px){
    margin-top: 32px;
    margin-bottom: 60px;
  }
}
.page-info-title{
  font-size: 48px;
  line-height: 1.5;
  @media screen and (max-width: 767px){
    font-size: 40px;
  }
}
.page-info-read{
  margin-top: 16px;
  @media screen and (max-width: 767px){
    font-size: 14px;
  }
}

.page-anq_links{
  margin-bottom: 80px;
  @media screen and (max-width: 767px){
    margin-bottom: 40px;
  }
  .col-item{
    background: #ffff;
    border-radius: 6px;
    transition: all .4s;
    &:hover{
      background: #000;
    }
    a{
      display: block;
      padding: 12px 0;
      font-weight: 700;
      transition: all .4s;
      &:hover{
        color: #fff;
      }
      &.icon-blank{
        &::after{
          content: "";
          display: inline-block;
          width: 20px;
          height: 20px;
          background: url(/_assets/common/images/icon-blank.svg) no-repeat 0 0;
          vertical-align: middle;
          margin-left: 8px;
          margin-top: -2px;
        }
      }
    }
  }
  .is-current{
    background: #000;
    a{
      color: #fff;
    }
  }
}

.btn-base{
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #808080;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px;
  &:after{
    content: "";
    display: block;
    width: 18px;
    height: 8px;
    background: url(/_assets/common/images/arrow-right.svg) no-repeat 0 0;
    background-size: cover;
  }
  span{
    display: inline-block;
    overflow: hidden;
  }
  &.btn-black{
    span{
      color: #fff;
    }
    &::after{
      background: url(/_assets/common/images/arrow-right-white.svg) no-repeat 0 0;
    }
  }
}
.btn-revers{
  padding: 8px 16px 8px 20px;
  position: relative;
  border: 1px solid #000;
  transition: all 0.4s cubic-bezier(.42, 0, .58, 1) 0s;
  span{
    font-size: 16px;
    color: #000;
    transition: all 0.4s cubic-bezier(.42, 0, .58, 1) 0s;
  }
  &::before{
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    z-index: -1;
    content: '';
    color: #fff;
    background: #000;
    border-radius: 999px;
    transition: all .4s cubic-bezier(.42, 0, .58, 1) 0s;
  }
  &:hover{
    span{
      color: #fff;
      z-index: 1;
    }
    &::before {
      left: 0%;
      right: auto;
      width: 100%;
    }
    &::after{
      background: url(/_assets/common/images/arrow-right-white.svg);
      background-size: cover;
    }
  }
  &.btn-white{
    border: 1px solid #f0f0f0;
    position: relative;
    span{
      color: #fff;
    }
    &::after{
      background: url(/_assets/common/images/arrow-right-white.svg);
      background-size: cover;
    }
    &::before{
      z-index: 0;
      color: #fff;
      background: #f0f0f0;
    }
    &:hover{
      span{
        color: #000;
      }
      &::after{
        background: url(/_assets/common/images/arrow-right.svg);
        background-size: cover;
        z-index: 1;
      }
    }
  }
}
.btn-blank{
  border: 1px solid #808080;
  border-radius: 999px;
  padding: 4px 48px 8px 16px;
  font-size: 20px;
  position: relative;
  @media screen and (max-width: 767px){
    display: block;
    font-size: 18px;
  }
  &::after{
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(/_assets/common/images/icon-blank.svg) no-repeat 0 0;
    background-size: cover;
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
  }
}
.circle-arrow{
  display: inline-block;
  span{
    display: flex;
    align-items: center;
    gap: 8px;
    &::after{
      content: "";
      display: inline-block;
      width: 40px;
      height: 40px;
      background: url(/_assets/common/images/arrow-right-circle.svg) no-repeat 0 0;
      background-size: cover;
      transition: all .4s;
    }
    &:hover{
      &::after{
        transform: rotate(360deg);
      }
    }
  }
}

.contents-block{
  width: 100%;
  max-width: var(--contentWidth);
  margin: 0 auto;
  @media screen and (max-width: 767px){
    padding: 0 16px;
  }
}

.contents-title{
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1.4px;
  border-bottom: 2px solid #000;
  margin-bottom: 24px;
  position: relative;
  @media screen and (max-width: 767px){
    font-size: 20px;
  }
  &::after{
    content: "";
    width: 100%;
    height: 1px;
    background: #808080;
    position: absolute;
    bottom: -6px;
    left: 0;
  }
  span{
    font-family: futura-pt, sans-serif;
  }
}

.inner-social_icons{
  display: flex;
  justify-content: end;
  gap: 8px;
  margin-top: 8px;
}

.col-2{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  @media screen and (max-width: 767px){
    gap: 8px
  }
  .col-item{
    width: calc((100% - 20px) / 2);
    @media screen and (max-width: 767px){
      width: 100%;
    }
  }
}
.col-3{
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  @media screen and (max-width: 767px){
    gap: 30px
  }
  .col-item{
    width: calc((100% - 60px) / 3);
    @media screen and (max-width: 767px){
      width: 100%;
    }
  }
  @media screen and (max-width: 767px){
    &.sp-col-2{
      gap: 12px;
      justify-content: start;
      .col-item{
        width: calc((100% - 24px) / 2);
      }
    }
  }
}
.col-4{
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  @media screen and (max-width: 767px){
    gap: 30px
  }
  .col-item{
    width: calc((100% - 90px) / 4);
    @media screen and (max-width: 767px){
      width: 100%;
    }
  }
  @media screen and (max-width: 767px){
    &.sp-col-2{
      gap: 12px;
      .col-item{
        width: calc((100% - 24px) / 2);
      }
    }
  }
}
.gap-8{
  gap: 8px;
  .col-item{
    width: calc((100% - 24px) / 4);
    @media screen and (max-width: 767px){
      width: 100%;
    }
  }
}
.gap-12{
  gap: 12px;
}
.align-c{
  align-items: center;
}
.justify-c{
  justify-content: center;
}
.direction-r{
  flex-direction: row-reverse;
  @media screen and (max-width: 767px){
    flex-direction: column;
  }
}

