/* ==============================
// common style
============================== */
:root{
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  color: #111;
}
body{
  position: relative;
  width: 100%;
  overflow-x: hidden;
}

input:focus,
input:focus-visible{
  outline: none;
  border-radius: 0;
  box-shadow: none;
}

img[src$=".svg"] {
  width: 100%;
  height: auto;
}

.hidden{
  display: none !important;
}

.fls{
  border-color: #E5484D !important;
}

.mt16{
  margin-top: 16px!important;
}
.mt40{
  margin-top: 40px!important;
}
.mt80{
  margin-top: 80px!important;
}
.mt120{
  margin-top: 120px!important;
  @media screen and (max-width: 767px){
    margin-top: 80px!important;
  }
}

.pcb{
  display: block;
  @media screen and (max-width: 767px){
    display: none;
  }
}
.spb{
  display: none;
  @media screen and (max-width: 767px){
    display: block;
  }
}

.content-width{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.content-bg{
  background: url(../assets/common/images/fv-bg05.png);
}

.col2{
  display: flex;
  gap: 32px;
  @media screen and (max-width: 767px){
    flex-direction: column;
  }
  .col{
    width: calc((100% - 32px) / 2);
    @media screen and (max-width: 767px){
      width: calc(100% - 32px);
      margin: 0 auto;
    }
  }
}


/* ==============================
// parts style
============================== */
.date{
  font-size: 12px;
  color: #757575;
  margin-top: 8px;
}
.tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  li{
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .6px;
    background: #111;
    padding: 2px 4px;
    &.tags-links{
      padding: 0;
      a{
        padding: 2px 4px;
      }
    }
  }
  a{
    background: #111;
    transition: all .2s;
    display: block;
    text-decoration: none;
    color: #fff;
    width: 100%;
    &:hover{
      background: #003CFF;
    }
  }
}

.line-wrap{
  padding: 16px 0;
  border-top: 2px solid #757575;
  border-bottom: 2px solid #757575;
  @media screen and (max-width: 767px){
    width: calc(100% - 32px);
    margin: 0 auto;
  }
}

/* Title */
.section-title{
  font-size: 40px;
  font-family: Jost, sans-serif;
  line-height: 1;
  text-transform: uppercase;
  @media screen and (max-width: 767px){
    font-size: 32px;
    padding: 0 16px;
  }
  span{
    color: #757575;
    font-size: 16px;
    margin-left: 16px;
    font-weight: 400;
    @media screen and (max-width: 767px){
      display: block;
      font-size: 14px;
      margin-left: 0;
      margin-top: 8px;
    }
  }
}
.title-line{
  &::after{
    content: "";
    display: block;
    width: 32px;
    height: 4px;
    background: #111;
    margin-top: 16px;
  }
  &.title-white{
    &::after{
      background: #d9d9d9;
      margin: 16px auto 0;
    }
  }
}
.add-column{
  .title-white{
    &::after{
      margin: 16px 0 32px;
    }
  }
}

.title-white{
  color: #fff;
  span{
    color: #d9d9d9;
  }
}
.title-vertical{
  text-align: center;
  span{
    display: block;
    margin-bottom: 16px;
  }
  &.title-archive{
    margin-top: 24px;
    @media screen and (max-width: 767px){
      margin-top: 34px;
    }
    span{
      margin-top: 20px;
      margin-left: 0;
    }
  }
}
.section-title-read{
  color: #d9d9d9;
  margin-top: 8px;
  @media screen and (max-width: 767px){
    font-size: 14px;
    margin-top: 16px;
    padding: 0 32px;
  }
}
.tile-title{
  font-size: 16px;
  @media screen and (max-width: 767px){
    margin-top: 8px;
  }
}
.tile-title-white{
  color: #fff;
}
.tile-date{
  font-size: 12px;
  color: #d9d9d9;
  margin-top: 8px;
}

/* Button */
.button{
  a{
    display: block;
    width: 100%;
    font-size: 20px;
    font-weight: 700;
    color: #111;
    padding: 14px 0;
    text-align: center;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all .2s;
    @media screen and (max-width: 767px){
      font-size: 16px;
      padding: 8px 0;
    }
    &::after{
      content: "";
      background: url(./common/images/arrow-black.svg) no-repeat 50% 50%;
      width: 20px;
      height: 20px;
      display: inline-block;
      margin-left: 16px;
      @media screen and (max-width: 767px){
        height: 15px;
      }
    }
  }
  &:hover{
    a{
      color: #fff;
    }
    a::after{
      background: url(./common/images/arrow-white.svg) no-repeat 50% 50%;
    }
  }
}
.button-line{
  border-top: 1px solid #111;
  border-bottom: 1px solid #111;
  max-width: 400px;
  margin: 0 auto;
  transition: all .2s;
  @media screen and (max-width: 767px){
    width: calc(100% - 32px);
  }
  &:hover{
    background: #111;
  }
}
.button-black{
  background: #111;
  transition: all .2s;
  a{
    color: #fff;
    transition: all .2s;
  }
  a::after{
    background: url(./common/images/arrow-white.svg) no-repeat 50% 50%;
  }
  &:hover{
    background: #fff;
    a{
      color: #111;
    }
    a::after{
      background: url(./common/images/arrow-black.svg) no-repeat 50% 50%;
    }
  }
}
.button-blue{
  background: #111;
  transition: all .2s;
  a{
    color: #fff;
    transition: all .2s;
  }
  a::after{
    background: url(./common/images/arrow-white.svg) no-repeat 50% 50%;
  }
  &:hover{
    background: #003CFF;
  }
}
.button-small{
  a{
    font-size: 14px;
    &::after{
      height: 15px;
    }
  }
}
.button-plus{
  a::after{
    display: none;
  }
  a::before{
    content: "";
    background: url(./common/images/arrow-plus.svg) no-repeat 50% 50%;
    width: 16px;
    height: 16px;
    display: block;
  }
}
.button-close{
  margin-top: 120px;
  background: rgba(255,255,255,.15);
  padding: 20px 0;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  transition: all .2s;
  @media screen and (max-width: 767px){
    font-size: 14px;
    padding: 12px 0;
    margin-top: 80px;
  }
  &::after{
    display: none;
  }
  &::before{
    content: "";
    background: url(./common/images/arrow-x.svg) no-repeat 50% 50%;
    width: 24px;
    height: 24px;
    display: block;
  }
  &:hover{
    background: #fff;
    color: #111;
    &::before{
      background: url(./common/images/arrow-x-blue.svg) no-repeat 50% 50%;
    }
  }
}
.button-nav{
  background: #111;
  transition: all .2s;
  @media screen and (max-width: 767px){
  }
  a{
    font-size: 14px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 10px 8px;
  }
  a::after{
    display: none;
  }
  a::before{
    content: "";
    background: url(./common/images/arrow-plus.svg) no-repeat 50% 50%;
    width: 12px;
    height: 12px;
    display: block;
  }
  &:hover{
    background: #003CFF;
  }
}


/* icon */
.icon-blank{
  position: relative;
  &:after{
    content: "";
    background: url(./common/images/icon-blank.svg) no-repeat;
    width: 16px;
    height: 16px;
    position: absolute;
    top: calc(50% - 6px);
    right: -20px;
  }
}


/* Card */
.card{
  &:hover{
    figure{
      overflow: hidden;
      img{
        transform: scale(1.05);
      }
    }
  }
  &:hover{
    .card-title{
      text-decoration: underline;
      color: #003CFF;
    }
  }
  a{
    text-decoration: none;
    color: #111;
  }
  .card-thumb{
    position: relative;
    width: 100%;
    figure img{
      width: 100%;
      height: auto;
      vertical-align: bottom;
      transition: all .3s;
    }
  }
  .thmub-cat{
    position: absolute;
    top: 0;
    right: 0;
    background: #003CFF;
    font-family: Jost, sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    padding: 4px 8px;
  }
  .thmub-rank{
    position: absolute;
    top: 0;
    left: 0;
    background: #111;
    font-family: Jost, sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    width: 38px;
    height: 38px;
    text-align: center;
    line-height: 1.3;
    @media screen and (max-width: 767px){
      width: 24px;
      height: 24px;
      font-size: 20px;
    }
    &.no1{
      width: 57px;
      height: 57px;
      font-size: 40px;
      @media screen and (max-width: 767px){
        width: 40px;
        height: 40px;
        font-size: 32px;
      }
    }
  }
  .tags{
    margin-top: 8px;
  }
  .archive-rank-thumb-num{
    position: absolute;
    top: 0;
    left: 0;
    background: #111;
    font-size: 20px;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 700;
    font-family: Jost, sans-serif;
  }
}
.card-title{
  font-size: 16px;
  margin-top: 8px;
  @media screen and (max-width: 767px){
    margin-top: 16px;
  }
}
.card-title-line{
  margin-top: 8px;
  &::after{
    content: "";
    display: block;
    width: 24px;
    height: 2px;
    background: #003CFF;
    margin-top: 8px;
  }
}
.card-title-upper_line{
  border-top: 1px solid #757575;
  margin-top: 16px;
  padding-top: 16px;
}
.cards-col3{
  display: flex;
  gap: 24px;
  @media screen and (max-width: 767px){
    flex-direction: column;
    gap: 32px;
  }
  .card{
    width: calc((100% - 48px) / 3);
    @media screen and (max-width: 767px){
      width: calc(100% - 32px);
      margin: 0 auto;
    }
  }
}

.cards-col2{
  display: flex;
  gap: 40px 24px;
  flex-wrap: wrap;
  margin-bottom: 80px;
  @media screen and (max-width: 767px){
    gap: 40px;
  }
  .card{
    width: calc((100% - 24px) / 2);
    @media screen and (max-width: 767px){
      width: 100%;
    }
  }
}

.cards-col-line{
  gap: 0;
  @media screen and (max-width: 767px){
    gap: 32px;
  }
  .card{
    width: calc(100% / 3);
    padding: 0 12px;
    border-left: 1px solid #757575;
    @media screen and (max-width: 767px){
      width: 100%;
      border-left: none;
      padding: 0;
    }
    &:first-child{
      border-left: none;
    }
  }
}
.cards-col3-split1_2{
  display: flex;
  gap: 16px;
  @media screen and (max-width: 767px){
    flex-direction: column;
    gap: 32px;
  }
}
.cards-col3-split1_2-1{
  width: 50%;
  @media screen and (max-width: 767px){
    width: calc(100% - 32px);
    margin: 0 auto;
  }
}
.cards-col3-split1_2-2{
  width: calc(50% - 16px);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  @media screen and (max-width: 767px){
    width: calc(100% - 32px);
    margin: 0 auto;
    gap: 32px 16px;
  }
  .card{
    width: calc((100% - 16px) / 2);
  }
}


/* tile */
.tile{
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #d9d9d9;
  @media screen and (max-width: 767px){
    flex-direction: column;
    border-top: 1px solid #d9d9d9;
    margin: 16px auto 0;
  }
  a{
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    @media screen and (max-width: 767px){
      flex-direction: column;
    }
  }
  &:first-child{
    border-top: none;
    margin-top: 0;
    padding-top: 0;
  }
  figure{
    width: calc(50% - 16px);
    margin-right: 16px;
    img, svg{
      width: 100%;
      height: auto;
    }
    @media screen and (max-width: 767px){
      width: 100%;
    }
  }
  .tile-text{
    width: calc(50% + 16px);
    border-left: 1px solid #d9d9d9;
    box-sizing: border-box;
    padding-left: 15px;
    @media screen and (max-width: 767px){
      width: 100%;
      padding-left: 0;
      border-left: none;
    }
  }
}
.tile-col{
  background: #111;
  padding: 16px 8px;
}


/* Pickup */
.pickup-data{
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(0, 0, 0, .5);
  padding: 8px;
  text-align: center;
  font-size: 14px;
  color: #fff;
  z-index: 7;
  @media screen and (max-width: 767px){
    font-size: 10px;
    padding: 4px 8px 8px;
  }
}
.pickup-cat{
  background: #fff;
  color: #111;
  text-transform: uppercase;
  font-weight: 700;
  font-family: Jost, sans-serif;
  margin-top: 4px;
  padding: 8px;
  @media screen and (max-width: 767px){
    padding: 2px 8px;
  }
}


.breadcrumbs{
  color: #757575;
  display: flex;
  gap: 8px;
  span{
    padding-right: 8px;
  }
  @media screen and (max-width: 767px){
    font-size: 12px;
    padding-left: 12px;
  }
}

/* ==============================
// page style
============================== */
/* top page */
.fv{
  background: url(./common/images/fv-bg04.png) no-repeat 100% 50%;
  background-size: cover;
  padding-top: 40px;
  position: relative;
  .swiper{
    padding: 80px 0;
    background: url(./common/images/fv-bg02.svg) no-repeat 100% 50%;
    background-size: auto 100%;
    @media screen and (max-width: 767px){
      background: url(./common/images/fv-bg02@2x.svg) no-repeat 100% 50%;
      padding: 45px 0 40px;
    }
  }
}

.category{
  padding-top: 120px;
  @media screen and (max-width: 767px){
    padding-top: 80px;
  }
}

.sarchtags{
  padding-bottom: 120px;
  .sarchtags-title{
    font-size: 24px;
    text-align: center;
    @media screen and (max-width: 767px){
      font-size: 22px;
    }
  }
  .tags{
    justify-content: center;
    margin-top: 16px;
    @media screen and (max-width: 767px){
      width: calc(100% - 32px);
      margin: 16px auto 0;
    }
  }
}

.visionary{
  padding: 80px 0;
  background: #111;
  &.add-column{
    padding: 80px 0 0;
    @media screen and (max-width: 767px){
      padding: 40px 0 0;
    }
  }
  @media screen and (max-width: 767px){
    padding: 40px 0;
    .section-title{
      padding: 0 32px;
    }
    .line-wrap{
      width: calc(100% - 64px);
    }
  }
  .card-title{
    color: #fff;
  }
  .card{
    &:hover{
      .card-title{
        color: #fff;
      }
    }
  }
}

.about{
  padding: 120px 0;
  @media screen and (max-width: 767px){
    padding: 80px 0;
  }
}
.about-wrap{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  @media screen and (max-width: 767px){
    flex-direction: column-reverse;
    gap: 0;
  }
}
.about-left{
  /* width: 37.25%; */
  @media screen and (max-width: 767px){
    width: calc(100% - 32px);
    figure{
      width: 70%;
      margin: 0 auto;
    }
  }
  img,
  svg{
    width: 100%;
    height: auto;
  }
}
.about-right{
  /* width: calc(62.75% - 85px); */
  @media screen and (max-width: 767px){
    width: calc(100% - 32px);
    margin: 0 auto;
    h2{
      padding: 0;
    }
  }
}
.about-read{
  margin-top: 32px;
  @media screen and (max-width: 767px){
    margin-top: 16px;
    font-size: 14px;
  }
}
.about-read-large{
  margin-top: 32px;
  font-weight: 700;
  font-size: 24px;
  @media screen and (max-width: 767px){
    margin-top: 16px;
    font-size: 20px;
  }
}

.catalog{
  margin-bottom: 120px;
  @media screen and (max-width: 767px){
    margin-bottom: 56px;
  }
  .content-width{
    background: #111;
    padding: 80px 40px;
    position: relative;
  }
  .slide-carousel{
    overflow: hidden;
  }
  .section-title span{margin-left: 0;}
}

.mailmagazine{
  background: url(./common/images/fv-bg04.png);
  padding: 80px 0;
  @media screen and (max-width: 767px){
    padding: 40px 16px;
  }
  .content-width{
    background: #fff;
    padding: 40px 130px;
    display: flex;
    gap: 40px;
    @media screen and (max-width: 767px){
      flex-direction: column;
      padding: 40px 16px;
    }
  }
  img,svg{
    width: 100%;
  }
  .mailmagazine-left,
  .mailmagazine-right{
    width: calc((100% - 40px) / 2);
    @media screen and (max-width: 767px){
      width: 100%;
      figure{margin-left: -16px;}
    }
  }
  .mailmagazine-read{
    margin: 24px 0 12px;
  }
}


/* slider */
.my-slider{
  background: #fff;
  padding: 24px 16px;
  h3{
    font-size: 16px;
    margin: 16px 0 8px;
    text-align: center;
    flex-grow: 1;
  }
  img{width: 100%;}
}
.swiper-button-prv,
.swiper-button-nxt{
  width: 56px;
  height: 56px;
  border: 2px solid #757575;
  box-sizing: border-box;
  position: absolute;
  top: 55%;
  z-index: 20;
  background: #111 url(./common/images/arrow-white.svg) no-repeat 50% 50%;
  @media screen and (max-width: 767px){
    width: 40px;
    height: 40px;
  }
}
.swiper-button-prv{
  left: 10px;
  transform: rotate(180deg);
}
.swiper-button-nxt{
  right: 10px;
}
.swiper-carousel .swiper-slide{
  height: auto;
  img{
    height: auto;
  }
}
.swiper-carousel .swiper-slide.swiper-slide-active{
  background: none;
  img{
    transition: all .3s;
  }
  &:hover{
    img{
      transform: scale(1.05);
    }
  }

}


/* header && footer */
header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 32px 12px;
  position: fixed;
  z-index: 22;

  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  .site-logo{
    width: 241px;
    flex-shrink: 0;
    a{
      display: block;
      line-height: 0;
    }
    img,
    svg{
      width: 100%;
      height: auto;
      display: block;
    }
  }
  @media screen and (max-width: 880px){
    padding: 16px 16px 12px;
    .site-logo{
      width: 155px;
    }
  }
  @media screen and (max-width: 880px){
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .pc-nav{
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 32px;
    font-family: jost, sans-serif;
    .pc-nav-cat a{
      color: #111;
      /* color: #003CFF; */
      text-decoration: none;
      font-weight: 700;
      font-size: 18px;
      text-transform: uppercase;
      transition: all .2s;
      &:hover{
        color: #003CFF;
        text-decoration: underline;
      }
    }
    @media screen and (max-width: 880px){
      display: none;
    }
  }
  .sp-nav{
    display: none;
    @media screen and (max-width: 880px){
      position: relative;
      width: 40px;
      height: 40px;
      display: inline-block;
      transition: all .5s;
      cursor: pointer;
      padding: 10px 8px;
      background-color: #111;
      z-index: 13;
      span {
        position: absolute;
        width: 24px;
        height: 2px;
        background-color: #fff;
        border-radius: 2px;
        display: inline-block;
        transition: all .5s;
        box-sizing: border-box;
        left: 8px;
        &:nth-of-type(1) {
          top: 10px;
          animation: bar01 .75s forwards;
        }
        &:nth-of-type(2) {
          top: 19px;
          transition: all .25s .25s;
          opacity: 1;
        }
        &:nth-of-type(3) {
          bottom: 10px;
          animation: bar03 .75s forwards;
        }
      }
    }
    &.active span:nth-of-type(1) {
      animation: active-bar01 .75s forwards;
    }
    &.active span:nth-of-type(2) {
      opacity: 0;
    }
    &.active span:nth-of-type(3) {
      animation: active-bar03 .75s forwards;
    }
  }
}
@keyframes bar01 {
  0% {
    transform: translateY(20px) rotate(45deg);
  }
  50% {
    transform: translateY(20px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes bar03 {
  0% {
    transform: translateY(-20px) rotate(-45deg);
  }
  50% {
    transform: translateY(-20px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes active-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(9px) rotate(0);
  }
  100% {
    transform: translateY(9px) rotate(45deg);
  }
}
@keyframes active-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-9px) rotate(0);
  }
  100% {
    transform: translateY(-9px) rotate(-45deg);
  }
}

footer{
  background: #111;
  padding: 40px 0;
  color: #fff;
  @media screen and (max-width: 767px){
    padding: 40px 16px;
  }
  .logo-read{
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3.5px;
    @media screen and (max-width: 767px){
      font-size: 14px;
    }
  }
  h2{
    margin-top: 8px;
  }
  .footer-read{
    font-size: 14px;
    margin-top: 8px;
  }
  .sns-links{
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    @media screen and (max-width: 767px){
      justify-content: center; 
    }
  }
  h4{
    text-transform: uppercase;
  }
  .footer-cat-links{
    display: flex;
    gap: 24px;
    margin-top: 8px;
    a{
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      transition: all .2s;
      &:hover{
        color: #003CFF;
      }
    }
  }
  .tags{
    margin-top: 16px;
    gap: 8px;
    li{
      border: 1px solid #fff;
      transition: all .2s;
      a{
        transition: all .2s;
      }
      &:hover{
        background: #fff;
        a{
          color: #111;
          background: #fff;
        }
      }
    }
  }
  .footer-upper{
    display: flex;
    gap: 40px;
    @media screen and (max-width: 767px){
      flex-direction: column;
    }
  }
  .footer-upper-left{
    width: 450px;
    @media screen and (max-width: 767px){
      width: 100%;
      text-align: center;
    }
  }
  .footer-upper-right{
    width: calc(100% - 490px);
    @media screen and (max-width: 767px){
      width: 100%;
    }
  }
  .footer-middle{
    border-top: 1px solid #757575;
    padding-top: 40px;
    @media screen and (max-width: 767px){
      padding-top: 20px;
    }
    h2{
      text-align: center;
    }
  }
  dl{
    font-size: 14px;
    display: flex;
    gap: 24px;
    margin-top: 24px;
    @media screen and (max-width: 767px){
      flex-direction: column;
      gap: 8px;
    }
    dt{
      width: 8em;
    }
    dd{
      width: calc(100% - 8em);
      @media screen and (max-width: 767px){
        width: 100%;
      }
    }
    ul{
      display: flex;
      gap: 12px 40px;
      flex-wrap: wrap;
      @media screen and (max-width: 767px){
        flex-direction: column;
      }
    }
    a{
      color: #bcbcbc;
      &:hover{
        color: #fff;
      }
    }
  }
  .footer-bottom{
    border-top: 1px solid #757575;
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    @media screen and (max-width: 767px){
      flex-direction: column;
      padding-top: 20px;
    }
  }
  .site-links{
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 40px;
    @media screen and (max-width: 767px){
      font-size: 12px;
      gap: 12px;
      flex-direction: column;
      align-items: start;
    }
    a{
      color: #fff;
    }
  }
  .copy{
    text-align: right;
    font-size: 11px;
    color: #d0d0d0;
    @media screen and (max-width: 767px){
      text-align: center;
      font-size: 10px;
      margin-top: 12px;
    }
  }
}


/* form */
#form-contents{
  input{
    display: block;
    width: 100%;
    border: 1px solid #d9d9d9;
    padding: 9px 10px;
  }
  .name-area{
    display: flex;
    gap: 8px;
    .name-area-l,
    .name-area-f{
      width: calc((100% - 8px) / 2);
    }
  }
  .pp-check{
    margin-top: 12px;
    label{
      display: flex;
      align-items: center;
      input{
        width: 2em;
        margin-bottom: 0;
      }
      span{
        vertical-align: bottom;
      }
    }
    a{
      color: #003CFF;
      &:hover{
        text-decoration: none;
      }
    }
  }
  .error{
    color: #E5484D;
    font-size: 10px;
    margin-top: 4px;
  }
}
.form-title{
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  margin-top: 12px;
  &.mt0{
    margin-top: 0;
  }
}
.button-form{
  width: 100%;
  background: #111;
  transition: all .2s;
  margin: 24px 0 0;
  font-size: 14px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 14px 8px;
  &::before{
    content: "";
    background: url(./common/images/arrow-plus.svg) no-repeat 50% 50%;
    width: 12px;
    height: 12px;
    display: block;
  }
  &:hover{
    background: #003CFF;
  }
}


/* panel */
.about-info-badge{
  .content-width{
    position: relative;
    figure{
      position: absolute;
      top: -70px;
      right: 0;
      z-index: 3;
      cursor: pointer;
      transition: all .2s;
      @media screen and (max-width: 767px){
        width: 80px;
        right: 16px;
        top: -5vw;
        svg{width: 100%;}
      }
      &:hover{
        opacity: .8;
      }
    }
  }
}

.panel{
  background: #003CFF url(./common/images/fv-bg03.svg) no-repeat 50% 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 50vw;
  color: #fff;
  position: fixed;
  top: 0;
  right: -51vw;
  z-index: 22;
  transition: all .3s;
  @media screen and (max-width: 767px){
    width: 100vw;
    right: -101vw;
    background-size: contain;
  }
  &.info-active{
    right: 0;
  }
}
.panel-content{
  @media screen and (max-width: 767px){
    padding: 0 24px;
  }
  .logo-read{
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 4.5px;
    @media screen and (max-width: 767px){
      font-size: 16px;
      letter-spacing: 3px;
    }
  }
  h2{
    width: 344px;
    margin-top: 8px;
    img{width: 100%;}
    @media screen and (max-width: 767px){
      width: 241px;
    }
  }
  .panel-read-top{
    margin-top: 40px;
    font-size: 20px;
    @media screen and (max-width: 767px){
      font-size: 14px;
    }
    &:after{
      content: "";
      display: inline-block;
      width: 160px;
      height: 1px;
      background: #fff;
      position: relative;
      top: -.45em;
      margin-left: 8px;
    }
  }
  .panel-read{
    font-size: 20px;
    margin-top: 24px;
    @media screen and (max-width: 767px){
      font-size: 14px;
    }
  }
  .panel-read-large{
    font-size: 20px;
    font-weight: 700;
    margin-top: 24px;
    letter-spacing: 1.1px;
    line-height: 2.5;
    @media screen and (max-width: 767px){
      font-size: 14px;
    }
    span{
      border-bottom: 1px solid #fff;
    }
  }
}

/* menu (sp) */
.sp-menu{
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  background: #111;
  padding: 60px 24px 100px;
  box-sizing: border-box;
  scrollbar-width: none;
  &::-webkit-scrollbar {
    display: none;
  }
  position: fixed;
  top: 0;
  right: -101vw;
  z-index: 10;
  &.menu-active{
    right: 0;
  }
}
.sp-menu-inner{
  h2{
    width: 155px;
    img{width: 100%;}
  }
  h3{
    margin-top: 24px;
    font-size: 14px;
    color: #bcbcbc;
  }
  .sp-menu-title{
    &:first-child{
      a{
        border-top: 1px solid #757575;
        margin-top: 10px;
      }
    }
    a{
      display: block;
      color: #fff;
      font-weight: 700;
      text-transform: uppercase;
      text-decoration: none;
      border-bottom: 1px solid #757575;
      padding: 10px 0;
      position: relative;
      &::after{
        content: "";
        width: 20px;
        height: 20px;
        background: url(./common/images/arrow-white.svg) no-repeat;
        background-size: contain;
        display: block;
        position: absolute;
        right: 0;
        top: calc(50% - 10px)
      }
      span{
        font-size: 12px;
        color: #bcbcbc;
        padding-left: 12px;
        font-weight: 400;
      }
      &:hover{
        color: #111;
        background: #fff;
        &::after{
          background: url(./common/images/arrow-black.svg) no-repeat;
        }
      }
    }
  }
  .sp-menu-tags{
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
    gap: 12px;
    a{
      display: block;
      font-size: 14px;
      font-weight: 700;
      color: #fff;
      text-decoration: none;
      padding: 2px 4px;
      border: 1px solid #fff;
      &:hover{
        background: #003CFF;
      }
    }
  }
  .sp-menu-button{
    background: #fff;
    transition: all .2s;
    margin: 40px 0;
    @media screen and (max-width: 767px){
    }
    a{
      font-size: 14px;
      color: #111;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 4px;
      padding: 14px 8px;
      text-decoration: none;
    }
    a::after{
      display: none;
    }
    a::before{
      content: "";
      background: url(./common/images/arrow-plus-black.svg) no-repeat 50% 50%;
      width: 12px;
      height: 12px;
      display: block;
    }
    &:hover{
      background: #003CFF;
      a{
        color: #fff;
      }
      a::before{
        background: url(./common/images/arrow-plus.svg) no-repeat 50% 50%;
      }
    }
  }
  .sp-menu-links{
    li{
      margin-top: 16px;
    }
    a{
      font-size: 14px;
      color: #fff;
      &:hover{
        text-decoration: none;
      }
      &::after{
        content: "";
        display: inline-block;
        background: url(./common/images/icon-blank.svg) no-repeat;
        width: 16px;
        height: 16px;
        vertical-align: bottom;
        margin-left: 8px;
      }
    }
  }
  .sp-menu-sns-links{
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .sp-menu-button-close{
    margin-top: 56px;
    background: rgba(255,255,255,.15);
    padding: 20px 0;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    color: #fff;
    transition: all .2s;
    @media screen and (max-width: 767px){
      font-size: 14px;
      padding: 12px 0;
      margin-top: 80px;
    }
    &::after{
      display: none;
    }
    &::before{
      content: "";
      background: url(./common/images/arrow-x.svg) no-repeat 50% 50%;
      width: 12px;
      height: 12px;
      display: block;
    }
    &:hover{
      background: #fff;
      color: #111;
      &::before{
        background: url(./common/images/arrow-x-blue.svg) no-repeat 50% 50%;
      }
    }
  }
  .sp-menu-search form{
    width: 100%;
    display: flex;
    margin-top: 8px;
    input{
      display: block;
      width: calc(100% - 40px);
      background: #fff;
      padding: 10px 8px;
      height: 40px;
    }
    button{
      width: 40px;
    }
  }
}


/* archive page */
.archive{
  padding-top: 100px;
}
.archive-header{
  max-width: 1280px;
  margin: 0 auto;
}
.archive-content{
  background: url(../assets/common/images/fv-bg05.png);
  margin-top: 64px;
  padding-top: 40px;
}

.archive-content-body{
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  @media screen and (max-width: 767px){
    display: block;
  }
}
.archive-articles{
  width: 100%;
  max-width: 960px;
}
.archive-side{
  width: 280px;
  @media screen and (max-width: 767px){
    width: 100%;
    padding: 0 16px 40px;
  }
}

.sarchtags-title{
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
  @media screen and (max-width: 767px){
    font-size: 18px;
    gap: 8px;
  }
  &:before{
    content: "";
    display: block;
    width: 23px;
    height: 23px;
    background: url(./common/images/icon-search-transparent.svg) no-repeat;
    @media screen and (max-width: 767px){
      width: 16px;
      height: 16px;
      background-size: cover;
    }
  }
}
.archive-search-tags{
  padding: 0 24px;
  @media screen and (max-width: 767px){
    padding: 0 16px;
  }
  a{
    font-size: 14px;
  }
}

.archive-body{
  margin-top: 40px;
  padding: 40px 24px 80px;
  background: #fff;
  @media screen and (max-width: 767px){
    padding: 40px 16px;
  }
  .serch-title{
    font-size: 24px;
    text-transform: uppercase;
    border-bottom: 4px solid #111;
    padding-bottom: 8px;
    margin-bottom: 24px;
    @media screen and (max-width: 767px){
      font-size: 22px;
    }
  }
}
.archive-search-word{
  @media screen and (max-width: 767px){
    margin-top: 40px;
  }
  .archive-search-word-box{
    margin-top: 8px;
    display: flex;
    input{
      width: calc(100% - 40px);
      background: #fff;
      border: 1px solid #000;
      box-sizing: border-box;
      height: 40px;
      padding: 0 8px;
      line-height: 1;
    }
  }
}
.archive-side-title{
  background: #111;
  font-size: 32px;
  font-family: Jost, sans-serif;
  text-transform: uppercase;
  color: #fff;
  padding: 4px 12px;
}
.archive-rank{
  background: #fff;
  padding: 0 0 24px;
  a{
    text-decoration: none;
    color: #111;
  }
}
.archive-rank-list{
  width: calc(100% - 24px);
  margin: 24px auto 0;
  display: flex;
  gap: 8px;
  img{
    width: 100%;
    height: auto;
  }
  .archive-rank-thumb{
    width: calc(50% - 4px);
    position: relative;
    @media screen and (max-width: 767px){
      width: calc(40% - 4px);
    }
    .archive-rank-thumb-num{
      position: absolute;
      top: 0;
      left: 0;
      background: #111;
      font-size: 20px;
      width: 24px;
      height: 24px;
      display: flex;
      justify-content: center;
      align-items: center;
      color: #fff;
      font-weight: 700;
      font-family: Jost, sans-serif;
    }
  }
  .archive-rank-title{
    width: calc(50% - 4px);
    font-size: 14px;
    @media screen and (max-width: 767px){
      width: calc(60% - 4px);
    }
  }
}
.archive-cat-list{
  margin: 24px 0;
  li{
    margin-top: 10px;
    &:first-child{
      margin-top: 0;
    }
  }
  a{
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
    &:hover{
      color: #003CFF;
    }
  }
}
.archive-tag-list-title{
  border-top: 2px solid #111;
  padding-top: 24px;
}
.archive-tag-list{
  margin-top: 20px;
  gap: 12px;
  a{
    font-size: 14px;
  }
}
.archive-sns{
  margin-top: 40px;
  .sns-links{
    display: flex;
    align-items: center;
    gap: 12px;
  }
  @media screen and (max-width: 767px){
    display: none;
  }
}

/* pager */
.pagination{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.page-numbers{
  font-size: 14px;
  color: #111;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #111;
  text-decoration: none;
  transition: all .1s;
  &.current{
    color: #fff;
    background: #111;
  }
  &:hover{
    background-color: #111;
    color: #fff;
  }
  &.next,
  &.prev{
    border: none;
    width: auto;
    color: #003CFF;
    text-decoration: underline;
    &:hover{
      color: #BCBCBC;
      text-decoration: none;
      background-color: transparent;
    }
  }
}
.pager-arrow-prev,
.pager-arrow-next{
  width: 20px;
  max-width: 20px;
}
.pager-arrow-next{
  margin-left: 8px;
}
.pager-arrow-prev{
  transform: rotate(180deg);
  margin-right: 8px;
}

/* floating form */
.floating-btn{
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 9999;
  transition: all .3s;
  &:hover{
    filter: brightness(1.2);
  }
  @media screen and (max-width: 767px){
    bottom: 10px;
    right: 10px;
  }
}
/* floating form content */
dialog {
  position: fixed;
  inset: 0;
  margin: auto;

  border: none;
  padding: 0;
  width: 95%;
  max-width: 800px;
  overflow: visible;
}
.modal-content {
  padding: 40px 80px;
  @media screen and (max-width: 767px){
    padding: 24px;
  }
  h2{
    text-align: center;
    svg{
      width: 95%;
      max-width: 340px;
    }
  }
  .modal-read{
    text-align: center;
    margin: 24px 0 32px;
    @media screen and (max-width: 767px){
      text-align: left;
    }
  }
}
.thanks-modal{
  text-align: center;
  margin-top: 52px;

  .thanks-title{
    font-size: 28px;
    font-weight: 700;
    margin: 24px 0;
    @media screen and (max-width: 767px){
      font-size: 20px;
    }
  }
  .modal-close-btn02{
    margin-top: 48px;
    width: 95%;
    max-width: 480px;
    font-weight: 700;
    border: 1px solid #111;
    padding: 12px 0;
    transition: all .3s;
    span{
      padding-left: 8px;
      color: #111;
    }
    &:hover{
      background: #111;
      span{
        color: #fff;
      }
    }
  }
}
dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(2px);
}
.modal-close-btn {
  position: absolute;
  top: -10px;
  right: 0;
  outline: transparent;
  transform: translateY(-100%);
  &:focus{
    outline: none;
  }
}

/* side form archives-page */
/* --- 全体設定 --- */
.ic-sidebar-nav-unified {
  margin-bottom: 30px;
  font-family: "Noto Sans JP", sans-serif;
  width: 100%;
}

/* --- 見出し設定：NEWS LETTERと「太さ」を完全に一致させる --- */
/* .ic-sidebar-header-bold {
    background-color: #000 !important;
    color: #fff !important;
    font-size: 20px !important; 
    font-weight: 900 !important; 
    font-family: "Noto Sans JP", sans-serif !important;
    letter-spacing: 0.1em !important;
    padding: 10px 15px !important; 
    margin: 0 0 15px 0 !important; 
    border: none !important;
    line-height: 1.2 !important;
    display: block !important;
    -webkit-font-smoothing: antialiased;
} */
.form-side-wrap{
  background: #fff
}
.js-newsletter-wrapper{
  padding: 0 8px 24px;
  input{
    display: block;
    width: 100%;
    border: 1px solid #d9d9d9;
    padding: 9px 10px;
  }
  .name-area{
    display: flex;
    gap: 8px;
    .name-area-l,
    .name-area-f{
      width: calc((100% - 8px) / 2);
    }
  }
  .button-form {
    &::before {
        content: "";
        background: url(/insightcube/wp-content/themes/sango-theme-child/assets/common/images/arrow-plus.svg) no-repeat 50% 50%;
        width: 12px;
        height: 12px;
        display: block;
    }
  }
  .p-check{
    margin-right: 8px;
  }
  .pp-check{
    margin-top: 12px;
    label{
      display: flex;
      align-items: center;
      input{
        width: 2em;
        margin-bottom: 0;
      }
      span{
        vertical-align: bottom;
      }
    }
    a{
      color: #003CFF;
      &:hover{
        text-decoration: none;
      }
    }
  }
  .error {
      color: #E5484D;
      font-size: 10px;
      margin-top: 4px;
  }
  .thanks-message-side{
    padding: 4px 16px;
    color: #fff;
    background: #003CFF;
    border-radius: 8px
  }
  .form-contents-side-read{
    padding: 20px 0;
  }
}
