html {
    margin: 0 !important;
    padding: 0 !important;
    scroll-behavior: smooth;
}

.body {
    position: relative;
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans JP', sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    background: #F2F2F2 0% 0% no-repeat padding-box;
}

.pc {
    display: block !important;
}

.sp {
    display: none !important;
}

.wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.heading {
    position: relative;
    width: 100%;
    max-width: 1366px;
    padding: 75px min(1.464%, 20px);
    box-sizing: border-box;
}

.heading._other {
    padding: 25px min(1.464%, 20px);
}

.heading._other._last {
    padding: 25px min(1.464%, 20px) 50px min(1.464%, 20px);
}

a {
    display: inline-block;
}

a:hover {
    opacity: 0.8;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    width: 100%;
    height: auto;
    display: block;
}

main {
    padding: 100px 0 0 0;
}

address {
  font-style: normal;
}

@media screen and (max-width: 960px) {
    .sp {
        display: block !important;
    }

    .pc {
        display: none !important;
    }

    .heading {
        max-width: 480px;
        padding: 55px min(10.667%, 40px);
    }

    .heading._other {
        padding: 25px min(5.333%, 20px);
    }

    .heading._other._last {
        padding: 25px min(5.333%, 20px) 50px min(5.333%, 20px);
    }

    main {
        padding: 50px 0 0 0;
    }
}

/* header */
.header01 {
    top: 0;
    left: 0;
    position: fixed;
    width: 100%;
    z-index: 999;
}

.nav01 {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 20px);
    height: 70px;
    padding: 0 20px;
    margin: min(0.833vw, 10px) auto min(1.667vw, 20px) auto;
    background: rgba(255,255,255,1);
    box-shadow: 0px 0px 10px #00000029;
    border-radius: 35px;
    box-sizing: border-box;
}

.header-logo {
    text-decoration: none;
    width: 160px;
    margin: 0;
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
    height: 70px;
}

.header-ul {
    display: flex;
    align-items: center;
    line-height: 1;
}

.header-li {
    margin: 0 min(1.667vw, 20px) 0 0;
}

.header-li._last {
    margin: 0;
}

.header-text1 {
    text-decoration: none;
    color: #2D292F;
    font-size: min(1.083vw, 13px);
    font-weight: 700;
    margin: 0;
}

.header-text1:hover {
    text-decoration: none;
    color: #00A600;
}

.header-link1 {
    background: #00A600 0% 0% no-repeat padding-box;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: min(1.333vw, 16px);
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
    padding: 13px min(0.833vw, 10px) 13px min(2vw, 24px);
    box-sizing: border-box;
}

.header-icon2 {
    width: min(1.833vw, 22px);
    margin: 0 0 0 5px;
}


@media screen and (max-width: 960px) {
    .header01 {
        width: 100%;
        border-radius: 0;
        box-shadow: none;
        top: 0;
    }

    .nav01 {
        width: 100%;
        height: 50px;
        padding: 0;
        border-radius: 0;
        margin: 0;
    }

    .header-left {
        width: 100%;
        display: flex;
        justify-content: space-between;
        height: 50px;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .header-logo {
        width: 120px;
        margin: 0;
        position: relative;
        z-index: 1001;
        transition: opacity 0.2s ease-in-out;
        /* display: none;
        opacity: 0; */
     }   

    .header-logo.visible {
        display: block;
        opacity: 1;
    }

/* ハンバーガーモーダル */
    .header-text1 {
        font-size: 16px;
        /* padding: 0 20px; */
        margin: 0;
        display: flex;
        justify-content: space-between;
        box-sizing: border-box;
    }

    .header-icon1 {
        width: 10px;
        margin: 0 5px 0 0;
    }

    .header-icon2 {
        width: 30px;
    }

    .header-modal {
        position: fixed;
        top: 50px;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        transition: right 0.3s ease-in-out;
        z-index: 1000;
        overflow-y: auto;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        text-align: center;
        padding: 20px;
        box-sizing: border-box;
        /* box-shadow: 0px 1px 6px #00000029; */
    }

    .header-modal.is-active {
        right: 0;
        display: flex;
    }

    .header-ul {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .header-ul2 {
        width: 100%;
        padding: 20px 0;
    }

    .header-img1 {
        margin: 0 15px 0 0;
        padding: 20px 0 0 0;
    }

    .header-li {
        width: 100%;
        border-bottom: 1px solid #000000;
        padding: 20px 0;
        margin: 0;
        border-right: none;
    }
/* ハンバーガーボタン */
    .ham-btn {
      width: 50px;
      height: 50px;
      border: none;
      background: #00A600 0% 0% no-repeat padding-box;
      position: relative;
      cursor: pointer;
      z-index: 1001;
      margin: 0;

    }
    .ham-btn span {
      position: absolute;
      height: 2px;
      background: #ffffff;
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    .ham-btn span:nth-of-type(1) {
      width: 30px;
      top: 20px;
      left: 50%;
      transform: translateX(-50%);
    }

    .ham-btn span:nth-of-type(2) {
      width: 30px;
      top: 30px;
      left: 50%;
      transform: translateX(-50%);
    }

    .ham-btn.is-active span:nth-of-type(1),
    .ham-btn.is-active span:nth-of-type(2) {
      width: 30px;
      left: 10px;
      top: 25px;
      transform: rotate(45deg);
      transform-origin: center;
    }

    .ham-btn.is-active span:nth-of-type(2) {
      transform: rotate(-45deg);
    }

    body.no-scroll {
        overflow: hidden;
    }
}
/* 共通 スクロール位置 見出し */
#search,
#pickup,
#catch,
#creator,
#opportunity,
#can,
#footer,
#contact {
    scroll-margin-top: 100px;
}

.common-h2 {
    text-align: center;
    font-size: 18px;
    color: #2D292F;
    font-weight: 700;
    margin: 0 0 40px 0;
    text-decoration: none;
    position: relative;
}

.common-h2-en {
    font-family: 'Jost';
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: #00A600;
    margin: 0 0 5px 0;
    text-decoration: none;
    line-height: 1;
}

.common-h2._wh {
    color: #fff;
}

.common-h2-en._wh {
    color: #fff;
}

@media screen and (max-width: 960px) {
    #search,
    #pickup,
    #catch,
    #creator,
    #opportunity,
    #can,
    #footer,
    #contact {
        scroll-margin-top: 50px;
    }

    .common-h2-en {
        font-size: 43px;
    }
}

/* 共通 ボタン */
.btn-wrapper1 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 40px 0 0 0;
}

.btn-more1 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: none;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 30px;
    max-width: 210px;
    width: 100%;
    box-sizing: border-box;
    font-size: 16px;
    font-weight: 700;
    color: #00A600;
    cursor: pointer;
    padding: 13px 0;
    background: #FFFFFF 0% 0% no-repeat padding-box;
}

.btn-more1._green {
    background: #00A600 0% 0% no-repeat padding-box;
    color: #FFFFFF;
}

.btn-more1:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

.btn-icon1 {
    width: 35px;
    margin: 0 8px 0 0;
}

@media screen and (max-width: 960px) {
    .btn-icon1 {
        width: min(9.333vw, 35px);
    }
}

/* 共通 index single archive 404 */
._minheight {
    min-height: 45vh;
}
.non-text {
    text-align: center;
    font-size: 16px;
    margin: 0;
}

@media screen and (max-width: 960px) {
    ._minheight {
        min-height: 68vh;
    }
}

/* カテゴリー */
.cat-ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    align-items: stretch;
    margin: 0 0 20px 0;
}

.cat-link {
    font-size: 16px;
    text-decoration: none;
    padding: 5px 25px;
    color: #fff;
    box-sizing: border-box;
    background: #00A600 ;
    border-radius: 13px;
}

/* fv */
.kv-fv-wrapper {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0px 0px 10px #00000029;
}

.kv-slick-wrapper a {
    border-radius: 20px;
    overflow: hidden;
}

.slick-slide {
    margin: 0 10px;
}

.kv-slick1,
.kv-slick2,
.kv-slick3 {
    margin: 0 0 20px 0;
}

.kv-slick2 {
    direction: rtl;
}

@media screen and (max-width: 960px) {
}

/* fv-search */
.fv-search-wrapper {
    max-width: 610px;
    display: grid;
    grid-template-columns: 23fr 7fr;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0 auto 20px auto;
}

.fv-search-input {
    background: #FAFAFA 0% 0% no-repeat padding-box;
    border: 2px solid #B8B8B8;
    border-radius: 10px;
    padding: 13px 25px;
    box-sizing: border-box;
    height: 60px;
    width: 100%;
}

.fv-search-btn {
    background: transparent linear-gradient(90deg, #5DC1C8 0%, #23B553 100%) 0% 0% no-repeat padding-box;
    border-radius: 10px;
    border: none;
    height: 60px;
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
}

.fv-search-h1 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #2D292F;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.fv-search-h1 ._green {
    color: #00A600;
}

.fv-search-h1 ._small {
    font-size: 14px;
    vertical-align: super;
}

.fv-search-text1 {
    text-align: center;
    font-size: 16px;
    letter-spacing: 0px;
    color: #2D292F;
    margin: 0;
}



@media screen and (max-width: 960px) {
    .fv-search-wrapper {
        max-width: 100%;
        grid-template-columns: 9fr 4fr;
        gap: 0.3rem;
    }

    .fv-search-input {
        height: 50px;
        padding: 12px min(5.333vw, 20px);
    }

    .fv-search-btn {
        font-size: 18px;
        height: 50px;
    }

    .fv-search-h1 {
        font-size: 18px;
    }

    .fv-search-h1 ._small {
        font-size: 11px;
    }
}

/* search-main */
.search-main-area {
    background: transparent linear-gradient(180deg, #5DC1C8 0%, #23B553 100%) 0% 0% no-repeat padding-box;
    border-radius: 40px;
    padding: min(8.333vw, 100px) min(13.333vw, 160px);
    box-sizing: border-box;
}

.search-main-wrapper {
    max-width: 610px;
    display: grid;
    grid-template-columns: 23fr 7fr;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0 auto 20px auto;
}

.search-main-input {
    background: #FAFAFA 0% 0% no-repeat padding-box;
    border: 2px solid #B8B8B8;
    border-radius: 10px;
    padding: 13px 25px;
    box-sizing: border-box;
    height: 60px;
    width: 100%;
}

.search-main-btn {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border-radius: 10px;
    border: none;
    height: 60px;
    font-size: 24px;
    font-weight: 700;
    color: #00A600;
}

.search-modal-open {
    text-decoration: none;
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    color: #00A600;
    padding: 13px 33px;
    margin: 0 auto 20px auto;
    box-sizing: border-box;
    cursor: pointer;
}

.search-modal-h2 {
    font-size: 24px;
    font-weight: 700;
    color: #00A600;
    margin: 0 0 20px 0;
}

.search-hashtag-area {
    margin: 0 0 40px 0;
}

.search-hashtag-area:last-child {
    margin: 0;
}

.search-hashtag-block {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.search-modal-h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2D292F;
    margin: 0 0 10px 0;
}

.search-hashtag-text1 {
    text-decoration: none;
    width: fit-content;
    background: #F1FAF1 0% 0% no-repeat padding-box;
    border: 1px solid #00A600;
    border-radius: 5px;
    gap: 1rem;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 700;
    color: #00A600;
}

@media screen and (max-width: 960px) {
    .search-main-area {
        padding: min(21.333vw, 80px) min(5.333vw, 20px);
    }
    .search-main-wrapper {
        max-width: 100%;
        grid-template-columns: 41fr 16fr;
        gap: 0.3rem;
    }

    .search-main-input {
        height: 50px;
        padding: 12px min(1.667vw, 10px);
    }

    .search-main-btn {
        font-size: 18px;
        height: 50px;
    }

    .search-hashtag-block {
        gap: 0.5rem;
    }
    .search-hashtag-text1 {
        font-size: 13px;
        padding: 6px 9px;
    }

    .search-modal-h3 {
        font-size: 19px;
    }
}

/* modal */
#search-modal-area,
#can-modal-area1,
#can-modal-area2,
#can-modal-area3,
#can-modal-area4 {
  z-index: 1000;
}

.search-modal-area,
.can-modal-area {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.search-modal-bg,
.can-modal-bg {
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
}

.search-modal-block,
.can-modal-block {
  width: 60%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform:translate(-50%,-50%);
  background: #fff;
  padding: min(6.667vw, 80px) min(10vw, 50px);
  box-shadow: 0px 2px 10px #00000033;
  border-radius: 14px;
  overflow: hidden;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  height: 70vh;
  box-sizing: border-box;
}

.search-modal-close,
.can-modal-close {
    position: absolute;
    top: 3%;
    right: 3%;
    cursor: pointer;
    text-align: center;
    color: #333333;
    font-size: 1.5vw;
    font-weight: 500;
    margin: 0;
}

@media screen and (max-width: 960px) {
  .search-modal-close,
  .can-modal-close {
    font-size: 2.933vw !important;
  }

  .search-modal-block,
  .can-modal-block {
    width: 90%;
    height: 66vh;
  }

  .search-open-modal,
  .can-open-modal {
    margin: 0 0 20px 0;
  }
}

/* creator */
.creator-area {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1rem;
}

.creator-block {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 0px 10px #00000029;
    border-radius: 15px;
    padding: min(1.25vw, 15px);
}


.creator-upper {
    border-bottom: 1px solid #CECECE;
    padding: 0 0 10px 0;
}

.creator-down {
    text-decoration: none;
    padding: 10px 0 0 0;
}

.creator-img-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1/1;
    margin: 0 0 10px 0;
    border-radius: 15px;
}

.creator-img1 {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    transform-origin: center center;
    transition: transform 0.3s ease;
}

.creator-text1 {
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    color: #00A600;
    margin: 0;
    display: inline;
}

.creator-h3,
.creator-h3 a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    color: #2D292F;
    margin: 15px 0 10px 0;
}

.creator-sns-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.creator-sns-link {
    width: min(1.833vw, 22px);
}

.creator-text2,
.creator-text2 a
.creator-text2 p {
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    color: #2D292F;
    margin: 0 0 5px 0;
}

.creator-text3,
.creator-text3 a,
.creator-text3 p {
    text-decoration: none;
    font-size: 14px;
    color: #767676;
    margin: 0 0 10px 0;
}

.creator-text4 {
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    color: #5DC1C8;
    margin: 0;
}

.creator-member-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

@media screen and (max-width: 960px) {
    .creator-area {
        grid-template-columns: 1fr;
    }

    .creator-block {
        padding: min(5.333vw, 20px);
    }

    .creator-upper {
        display: grid;
        grid-template-columns: 16fr 35fr;
        gap: 1rem;
    }

    .creator-sns-link {
        width: min(5.333vw, 20px);
    }

}

/* pickup */
.pickup-area {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border-radius: 40px;
    padding: min(8.333vw, 100px) min(13.333vw, 160px);
    box-sizing: border-box;
}

.pickup-bock-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1rem;    
}

.pickup-img-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1/1;
    margin: 0 0 10px 0;
    border-radius: 15px;
}

.pickup-img1 {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    transform-origin: center center;
    transition: transform 0.3s ease;
}

@media screen and (max-width: 960px) {
    .pickup-area {
        padding: min(21.333vw, 80px) min(5.333vw, 20px);
    }

    .pickup-bock-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

/* catch */
.catch-area-h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: #00A600;
    margin: 0 0 10px 0;
}

.catch-text1 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #2D292F;
    margin: 0 0 20px 0;
}

.catch-text1._last {
    margin: 0;
}

@media screen and (max-width: 960px) {
    .catch-area-h2 {
        text-align: left;
        font-size: 24px;
    }

    .catch-text1 {
        text-align: left;
        font-size: 18px;
    }
}

/* opportunity */
.opportunity-area {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border-radius: 40px;
    padding: min(8.333vw, 100px) min(13.333vw, 160px);
    box-sizing: border-box;
}

.opportunity-h3 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 700;
    color: #00A600;
    margin: 0 0 40px 0;
}

.opportunity-img1 {
    width: min(17vw, 204px);
    margin: 0 10px 0 0;
}

.opportunity-text1 {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #2D292F;
    margin: 0 0 20px 0;
}

.opportunity-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 0 0 30px 0;
}

.opportunity-text2 {
    background: rgba(0,166,0,0.1);
    border-radius: 10px;
    padding: 6px 15px;
    font-size: 24px;
    font-weight: 700;
    color: #00A600;
    margin: 0;
}

.opportunity-text3 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 30px 0;
}

.opportunity-text3 ._blue {
    color: #5DC1C8;
}

.opportunity-img2 {
    width: 200px;
    margin: 0 auto 20px auto;
}

.opportunity-text4 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #00A600;
    margin: 0 0 30px 0;
}

.opportunity-img3 {
    width: 400px;
    margin: 0 auto 30px auto;
}

@media screen and (max-width: 960px) {
    .opportunity-area {
        padding: min(21.333vw, 80px) min(5.333vw, 20px);
    }

    .opportunity-h3 {
        font-size: 20px;
        margin: 0 0 30px 0;
    }

    .opportunity-img1 {
        width: min(54.4vw, 204px);
        margin: 0 0 10px 0;
    }

    .opportunity-text1 {
        font-size: 18px;
    }

    .opportunity-text2 {
        font-size: 20px;
        padding: min(1.6vw,6px) min(4vw, 15px);
    }

    .opportunity-text3 {
        font-size: 20px;
    }

    .opportunity-img2 {
        width: min(53.333vw, 200px);
    }

    .opportunity-text4 {
        font-size: 24px;
    }

    .opportunity-img3 {
        width: min(53.333vw, 200px);
    }

}

/* can */
.can-area {
    background: transparent linear-gradient(180deg, #5DC1C8 0%, #23B553 100%) 0% 0% no-repeat padding-box;
    border-radius: 40px;
    padding: min(8.333vw, 100px) min(13.333vw, 160px);
    box-sizing: border-box;
}

.can-block-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.can-block {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 0px 10px #00000029;
    border-radius: 15px;
    padding: min(1.667vw, 20px);
    display: grid;
    grid-template-columns: 65fr 107fr;
    gap: 1rem;
    cursor: pointer;
}

.can-h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2D292F;
    margin: 0 0 10px 0;
}

.can-btn-wrapper {
    display: flex;
    justify-content: end;
    align-items: center;
}

.can-text1{
    font-size: 16px;
    font-weight: 700;
    color: #00A600;
    margin: 0;
}

.can-img2 {
    width: 16px;
    margin: 0 0 0 5px;
}

.can-modal-upper {
    display: grid;
    grid-template-columns: 13fr 45fr;
    gap: 1rem;
    margin: 0 0 30px 0;
}

@media screen and (max-width: 960px) {
    .can-area {
        padding: min(21.333vw, 80px) min(5.333vw, 20px);
    }

    .can-block-wrapper {
        grid-template-columns: 1fr;
    }

    .can-block {
        padding: min(5.333vw, 20px);
        grid-template-columns: 14fr 33fr;
    }

    .can-h3 {
        font-size: min(5.333vw, 20px);
    }

    .can-text1{
        font-size: min(4.267vw, 16px);
    }

    .can-img2 {
        width: min(4.267vw, 16px);
    }
}


/* footer-upper footer */
.footer-upper,
.footer {
    background: #2D292F 0% 0% no-repeat padding-box;
}

.heading._footer-upper {
    padding: 60px min(15%, 180px) 40px min(15%, 180px);
}

.footer-logo {
    width: min(20.667vw, 248px);
    margin: 0 0 50px 0;
}

.footer-upper-area {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1rem;
}

.footer-text2 {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 10px 0;
}

.footer-text1 {
    text-decoration: none;
    font-size: 16px;
    color: #817F82;
    margin: 0;
}

.footer-upper-block li {
    margin: 0 0 10px 0;
}

.heading._footer-down {
    padding: 40px min(15%, 180px) 60px min(15%, 180px);
}


.footer {
    margin: -1px 0 0 0;
}

.footer-down {
    display: block;
}

.footer-text1._copy {
    margin: 14px 0 0 0;
}

.arrow-fixed1 {
    position: fixed;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 2px solid #00A600;
    border-radius: 15px 0px 0px 15px;
    right: 0;
    /* top: 50%; */
    /* transform: translateY(-50%); */
    bottom: 10px;

    z-index: 13;
    transition: opacity 0.3s ease-in-out;
}

.arrow-link1 {
    text-decoration: none;
    padding: 10px 15px;
    display: flex;
    align-items: end;
    box-sizing: border-box;
    white-space: nowrap;
}

.arrow-link1,
.arrow-link1 ruby {
    font-size: 20px;
    font-weight: 700;
    color: #00A600;
    margin: 0;
}

.arrow-link1 rt {
    font-size: 11px;
    font-weight: 700;
    color: #2D292F;
    margin: 0;
}

.arrow-link1 ._small {
    font-size: 14px;
    color: #2D292F;
    margin: 0 0 3px 0;
}

.arrow-img1 {
    width: 18PX;
    margin: 0 0 3px 3px;
}


@media screen and (max-width: 960px) {
    .heading._footer-upper {
        padding: 60px min(5.333%, 20px) 30px min(5.333%, 20px);
    }

    .footer-upper-area {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-logo {
        width: min(42.667vw, 160px);
    }

    .heading._footer-down {
        padding: 30px min(5.333%, 20px) 60px min(5.333%, 20px);
    }

    .arrow-fixed1 {
        bottom: 60px;
    }

    .arrow-link1 {
        padding: 5px 10px;
    }

    .arrow-link1,
    .arrow-link1 ruby {
        font-size: 18px;
    }

    .arrow-link1 rt {
        font-size: 8px;
    }

    .arrow-link1 ._small {
        font-size: 12px;
    }

    .arrow-img1 {
        width: 14PX;
    }

    .cta-fixed {
        width: 100%;
        position: fixed;
        bottom: 0;
        background: #00A600 0% 0% no-repeat padding-box;
        z-index: 13;
    }

    .cta-fixed-btn1 {
        width: 100%;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 18px;
        font-weight: 700;
        color: #FFFFFF;
        text-decoration: none;
    }

}

/* page02 common */
.page02 {
    padding: 0 !important;
}

.heading._page02 {
    padding: 30px min(13.1%, 180px);
}

.fv2 {
    display: flex;
    align-items: end;
    background: transparent linear-gradient(180deg, #5DC1C8 0%, #23B553 100%) 0% 0% no-repeat padding-box;
    height: 288px;
}

.fv2-h1 {
    font-size: 40px;
    font-weight: 700;
    margin: 0;
    color: #FFFFFF;
}

@media screen and (max-width: 960px) {
    .heading._page02 {
        padding: 30px min(5.333%, 20px);
    }

    .fv2-h1 {
        font-size: 28px;
    }
}

/* page02 page03 パンくずリスト */
.heading._crumbs {
    padding: 20px min(13.1%, 180px);
}

#crumbs {
    position: relative;
}

.crumbs {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.crumbs::-webkit-scrollbar {
  display: none;
}

.crumbs-link {
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    color: #00A600;
}

.crumbs-separator {
    margin: 0 8px;
    color: #2D292F;
}

.crumbs-current {
    font-size: 16px;
    color: #2D292F;
}

@media screen and (max-width: 960px) {
    .heading._page02 {
        padding: 30px min(5.333%, 20px);
    }
}

/* page02 ページネーション */
.pagenum-wrapper {
    display: flex;
    justify-content: center;
    margin: 40px 0 0 0;
}
.pagenum {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 1rem;
}
.pagenum li {
    padding: 0;
    margin: 0;
}
.pagenum li a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border-radius: 24px;
    text-align: center;
    border-radius: 50%;
    text-decoration: none;
    color: #00A600;
    font-size: 16px;
    width: 45px;
    height: 45px;
    font-family: 'Jost';
}

.pagenum li a:hover,
.pagenum li a.current,
.pagenum li a.active {
    background: #00A600 0% 0% no-repeat padding-box;
    color: #fff;
}

.pagenum li a.current,
.pagenum li a.active {
    cursor: default;
}

@media screen and (max-width: 960px) {
    .pagenum li a {
        width: 40px;
        height: 40px;
    }
}

/* page03 single-creator */
.fv3 {
    height: 20px;
}

.detail-area-wrapper {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border-radius: 15px;
    padding: min(3.333vw, 40px);
    box-sizing: border-box;
}


.creator-detail-area {
    display: grid;
    grid-template-columns: 10fr 27fr;
    gap: 1rem;
    margin: 0 0 60px 0;
}

.creator-detail-img-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1/1;
    margin: 0 0 10px 0;
    border-radius: 15px;
}

.creator-detail-img1 {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    transform-origin: center center;
    transition: transform 0.3s ease;
}

.creator-detail-upper {
    border-bottom: 1px solid #CECECE;
    padding: 0 0 10px 0;
}

.creator-detail-down {
    padding: 10px 0 0 0;
}

@media screen and (max-width: 960px) {
    .creator-detail-area {
        grid-template-columns: 1fr;
    }

    .creator-detail-img-wrapper {
        width: 76%;
        margin: 0 auto;
    }

}

/* page03 共通 */
.detail-text1 {
    font-size: 18px;
    color: #B2A9AE;
    margin: 0 0 10px 0;
}

.detail-img1 {
    width: 80%;
    margin: 0 auto 40px auto;
}

.detail h1 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2.88px;
    color: #333333;
    padding: 0 0 30px 0;
    margin: 0 0 80px 0;
    border-bottom: 2px solid #00A600;
}

.detail-common-area h2,
.common-archive-h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    border-left: 6px solid #00A600;
    padding: 0 0 0 10px;
    margin: 0 0 40px 0;
    color: #333333;
}

.detail-common-area img {
    margin: 0 0 20px 0;
}
.detail-common-area h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.48px;
    color: #00A600;
    border-bottom: 1px solid #00A600;
    padding: 0 0 10px 0;
    margin: 0 0 40px 0;
}
.detail-common-area h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 40px 0;
    color: #333333;
}
.detail-common-area p {
    font-size: 16px;
    margin: 0 0 30px 0;
    color: #333333;
}
.detail-common-area a {
    font-size: 16px;
    color: #00A600;
    margin: 0 0 40px 0;
}

.detail-common-area ul {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
}
.detail-common-area ul li {
    font-size: 16px;
    color: #333333;
    margin: 0 0 10px 0;
    position: relative;
    padding: 0 0 0 18px;
    line-height: 24px;
}
.detail-common-area ul li::before {
    content: "";
    width: 8px;
    height: 8px;
    display: inline-block;
    background-color: #00A600;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
}

@media screen and (max-width: 960px) {

}




/* faq */
.faq-accordion {
    width: 100%;
    padding: 20px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #CFCFCF;
    border-radius: 9px;
    margin: 0 0 40px 0;
    box-sizing: border-box;
}
.faq-accordion-q {
    background: #00A600 0% 0% no-repeat padding-box;
    font-size: 24px;
    color: #FFFFFF;
    width: 40px;
    height: 40px;
    border-radius: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 10px 0 0;
}

.faq-accordion-a {
    background: #008EFB 0% 0% no-repeat padding-box;
    font-size: 24px;
    color: #FFFFFF;
    width: 40px;
    height: 40px;
    border-radius: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 10px 0 0;
}

.faq-accordion-head {
    position: relative;
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0 0 10px 0;
    cursor: pointer;
}

.faq-accordion-head::after {
    content: '';
    width: 2px;
    height: 16px;
    background-color: #0230C4;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    transition: transform 0.4s, background-color 0.4s;
}

.faq-accordion-head::before {
    content: '';
    width: 16px;
    height: 2px;
    background-color: #0230C4;
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    transition: transform 0.4s;
}

.faq-accordion[open] .faq-accordion-head::after {
    background-color: transparent;
    transform: translateY(-50%) rotate(90deg);
}

.faq-accordion[open] .faq-accordion-head::before {
}
.faq-accordion-head-text1 {
    width: 90%;
    letter-spacing: 1.6px;
    color: #000000;
    font-size: 20px;
    margin: 0;
}

.faq-accordion-body {
    display: flex;
    align-items: center;
}

.faq-accordion-body-content{
    width: 100%;
    /* padding: 15px 0; */
    box-sizing: border-box;
}

.faq-accordion-body-content p {
    font-size: 16px;
    line-height: 1.3;
    color: #333333;
    margin: 0 !important;
}
.faq-accordion-body-content a,
.faq-accordion-body-content p a {
    text-decoration: underline;
    font-size: 16px;
    line-height: 1.3;
    color: #0230C4;
    margin: 0;
}


@media screen and (max-width: 960px) {
    .faq-accordion {
        padding: min(2.667vw, 10px);
    }
    .faq-accordion-head-img1,
    .faq-accordion-body-img1 {
        width: min(9.333vw, 35px);
        height: min(9.333vw, 35px);
        margin: 0 min(2.133vw, 8px) 0 0;
    }

    .faq-accordion-body-content{
    }

    .faq-accordion-head-text1 {
        width: 80%;
    }
    .faq-accordion-q,
    .faq-accordion-a {
        width: 35px;
        height: 35px;
        font-size: 21px;
    }
}

/*  追記  */
.prevention-area{
	    margin-bottom: 15px;
}

.prevention-area .detail-common-area h2{
	    margin-bottom: 20px;
}

.prevention-area .detail-common-area p{
	    margin-bottom: 0;
}
.sponsored-content{
    margin: 0;
	font-size: 10px;
	color: #767676;
    padding: 0 0 10px 0;
    border-bottom: 1px solid #CECECE;
}
.link-content{
    margin: 0;
    padding: 10px 0 10px 0;
}