@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic&display=swap');
/* CSS Document */
.gl_archive {
  max-width: 1024px;
  width: 90%;
  margin: auto;
  padding: 100px 0;

  .gl_head {
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    background: #D5CBEA;
    color: #309;
    font-size: 24px;
    font-weight: bold;
    padding: 10px;
    margin-top: 50px;
    &:first-child{
      margin-top: 0;
    }
  }

  /* 開閉アイコン（＋ / −） */
  .gl_head::before {
    content: "＋";
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 40px;
    min-height: 40px;
    background: #fff;
    border-radius: 50%;
    margin-right: 20px;
  }

  .gl_head.is-open::before {
    content: "ー";
  }
  .gl_body {
    display: none;
    flex-direction: column;
    width: 100%;
    margin: auto;
    margin-top: 30px;
    gap: 10px 80px;
    li{
      width: calc(50% - 40px);
      text-indent: -1em;
      padding-left: 1em;
      box-sizing: border-box;
      &::before{
        content: '・';
        color: #309;
      }
      a {
        transition: .2s;
        text-decoration: underline;
        &[target="_blank"] {
          &::after{
            content: '';
            display: inline-block;
            width: 16px;
            height: 16px;
            background: url("../img/icon_blank.svg") no-repeat center;
            -webkit-background-size: contain;
            background-size: contain;
            margin-left: 5px;
          }
        }
        &:hover{
          color: #308;
          opacity: 1;
          text-decoration: none;
        }
      }
    }
  }
}

strong{
  font-weight: bold;
}
.products_bg {
  background-image: url("../img/mv.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 202px;
}
.wp-block-heading {
  font-size: 20px;
  font-weight: bold;
}
.kit02_title {
  font-size: 30px;
  font-weight: bold;
  text-align: left;
  text-decoration: underline 3px #330099;
  text-underline-offset: 0.3em;
  margin-bottom: 30px;
}
.num_title {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  background: #309;
  padding: 10px;
  text-align: left;
  margin-bottom: 0;
}
.detail_outline {
  padding: 80px 0 0;
}
.sub_title {
  font-size: 36px;
  font-weight: bold;
  color: #330099;
  padding: 10px 0 5px;
  border-bottom: 2px solid #309;
}
.detail_thumbnail {
  max-width: 1024px;
  width: 100%;
  margin-top: 30px;
  img{
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
  }
}
.detail_body {
  padding: 80px 0 100px;
}
.detail_inner{
  max-width: 1024px;
  width: 90%;
  margin: auto;
}
.inner_set{
  margin-top: 60px;
  &:first-child{
    margin-top: 0;
  }
}
.num_title {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  background: #309;
  padding: 10px;
}
.num_title_num{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  min-width: 40px;
  min-height: 40px;
  line-height: 0;
  background: #fff;
  color: #309;
  border-radius: 50%;
}
.is-layout-flex{
  align-items: flex-start;
  strong{
    white-space: nowrap;
  }
}
.detail_product {
  max-width: 652px;
  width: 100%;
  background: #F6F5FB;
  padding: 30px;
  margin: 100px auto 0;
}
.product_left{
  display: flex;
  flex-direction:column;
  align-items: center;
  max-width: calc(100% - 150px);
  width: 100%;
}
.product_name {
  color: #330099;
  text-decoration: none;
  margin-bottom: 10px;
}
figure.product_img {
  max-width: 200px;
  width: 100%;
  margin-left: 19px;
  img{
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
  }
}
.product_btn {
  max-width: 328px;
  margin-left: auto;
  margin-right: auto;
  a{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    color: #fff;
    font-weight: bold;
    text-align: center;
    background: #309;
  }
}
.back_archive{
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 100px;
  box-sizing: border-box;
}
.detail_inner{
  p {
    margin-bottom: 20px;
  }
  ul {
    list-style: disc;
    line-height: 2;
    margin-bottom: 20px;
    padding-left: 1.5em;
    li{
    }
  }
  ol {
    list-style: auto;
    line-height: 2;
    margin-bottom: 20px;
    padding-left: 1.5em;
    li{
    }
  }
}
/* 固有のスマホ対応記述
==============================================================================
==============================================================================*/

/* 700pxより小さい場合 */
@media screen and ( max-width: 767px ){
.gl_archive {
  padding: 60px 0 90px;
  .gl_body {
    flex-direction: column;
    li{
      width: 100%;
    }
  }
}
.detail_outline {
  padding: 40px 0;
}
.detail_body {
  padding: 40px 0;
}
.detail_product {
  padding: 30px 5%;
  margin: 60px auto 0;
  .is-layout-flex{
    flex-direction: column-reverse;
    align-items: center;
  }
}
.product_left{
  max-width: 100%;
}
.product_name{
  font-size: 20px;
}
figure.product_img {
  margin-left: auto;
  margin-right: auto;
}
}
@media screen and ( max-width: 360px ){
}