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

.body {
    position: relative;
    margin: 0;
    padding: 0;
    font-family: "Zen Maru Gothic", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    background: #FFFFFF 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: 1200px;
    padding: 100px min(15%, 180px);
    box-sizing: border-box;
}

.heading._other {
    padding: 25px min(15%, 180px);
}

a {
    display: inline-block;
}

a:hover {
    opacity: 0.8;
}

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

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

address {
  font-style: normal;
}

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

    .pc {
        display: none !important;
    }

    .heading {
        max-width: 480px;
        padding: 80px 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: 80px;
    padding: 0 20px;
    margin: 10px auto 0 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: min(14.667vw, 176px);
    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.25vw, 15px) 0 0;
}

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

.header-text1 {
    text-decoration: none;
    color: #4B4044;
    font-size: min(1.167vw, 14px);
    font-weight: 700;
    margin: 0;
}

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

.header-icon2 {
    width: min(3.333vw, 40px);
}

@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: 122px;
        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;
    }

    .header-li._last {
        border-bottom: none;
    }
/* ハンバーガーボタン */
    .ham-btn {
      width: 50px;
      height: 50px;
      border: none;
      background: #F2AEC5 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;
    }
}
/* 共通 スクロール位置 見出し */
#news,
#blog,
#philosophy,
#strength,
#servicey,
#office,
#flow,
#staff,
#contact {
    scroll-margin-top: 80px;
}

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

.common-h2-en {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #F2AEC5;
    margin: 0 0 5px 0;
    text-decoration: none;
    line-height: 1;
}

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

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

.common-text1 {
    font-size: 18px;
    color: #4B4044;
    margin: 0 0 30px 0;
    text-decoration: none;
}

.common-text1._small {
    font-size: min(1.333vw, 16px);
}

.common-text1._center {
    text-align: center;
}

.common-text1._bold {
    font-weight: 700;
}

.common-text1._wh {
    color: #ffffff;
}

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

.common-h3 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #F2AEC5;
    margin: 0 0 10px 0;
}


@media screen and (max-width: 960px) {
    #news,
    #blog,
    #philosophy,
    #strength,
    #servicey,
    #office,
    #flow,
    #staff,
    #contact {
        scroll-margin-top: 50px;
    }

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

    .common-h2 {
        font-size: 32px;
    }

    .common-text1._small {
        font-size: 16px;
    }
}

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

.btn-wrapper2 {
    margin: 20px 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;
    max-width: 210px;
    width: 100%;
    box-sizing: border-box;
    font-size: 16px;
    font-weight: 700;
    background: #F2AEC5 0% 0% no-repeat padding-box;
    border-radius: 30px;
    color: #ffffff;
    cursor: pointer;
    padding: 13px 0;
}

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

@media screen and (max-width: 960px) {
    .btn-wrapper2 {
        display: flex;
        justify-content: center;
    }
}

/* 共通 index single archive 404 */
._minheight {
    min-height: 54vh;
}
.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-area {
    position: relative;
}

.kv-img {
  position: absolute;
  top: 32%;
  left: 50%;
  transform: translateX(-50%);
  width: 84.16%;
}

.anim-box.popup.is-animated {
  animation: popup 2.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes popup {
  0% {
    transform: translateX(-50%) translateY(-20px) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateX(-50%) translateY(0) scale(1.0);
    opacity: 1;
  }
}

@media screen and (max-width: 960px) {
    .kv-img {
      top: 10%;
      left: 52%;
      width:86%;
  }
}

/* news blog */
.news {
    background: #D5BBF7 0% 0% no-repeat padding-box;
}

.blog {
    background: #F2AEC5 0% 0% no-repeat padding-box;
}

.heading._news {
    padding: 15px min(15%, 180px);
}

.news-link {
    display: grid;
    grid-template-columns: 727fr 95fr;
    gap: 0.5rem;
    align-items: center;    
}

.news-wrapper {
    display: grid;
    grid-template-columns: 190fr 521fr;
    gap: 0.5rem;
    align-items: center;
}

.news-content-wrapper {
    display: grid;
    grid-template-columns: 80fr 441fr;
    gap: 0.5rem;
    align-items: center;
}

.news-content-wrapper .common-text1._bold  {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    max-width: 100%;
}

.news-h2 {
    font-size: min(2vw, 24px);
    font-weight: 700;
    color: #7C5EA5;
    margin: 0;
}

.news-h2._blog {
    color: #AC677F;
}

.news-btn-wrapper {
    display: flex;
    align-items: center;
}

.news-btn-more {
    display: flex;
    align-items: center;
    text-decoration: underline;
}

.news-btn-icon{
    width: min(1.333vw, 16px);
    margin: 0 0 0 5px;
}

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

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

    .news-content-wrapper .common-text1._bold {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: normal;
        max-width: 100%;
    }

    .news-content-wrapper {
        align-items: start;
    }

    .news-h2 {
        font-size: 24px;
    }

    .news-btn-icon{
        width: 16px;
    }

    .news-btn-more {
        margin: 0 0 0 auto !important;
    }

}

/* strength */
.strength1-h1 {
    margin: 0 auto 20px auto;
    background: #FDF9F3 0% 0% no-repeat padding-box;
    border-radius: 10px;
    padding: 10px;
    box-sizing: border-box;
    width: fit-content;
}

.strength2-h1 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #F2AEC5;
    margin: 0 0 50px 0;
}

.strength-area {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem 1.5rem;
}

@media screen and (max-width: 960px) {
    .strength2-h1 {
        text-align: left;
        font-size: 20px;
    }

    .strength-area {
        grid-template-columns: 1fr;
    }

    .strength-img1 {
        width: 77.6%;
        margin: 0 auto 10px auto;
    }

}

/* philosophy */
.philosophy {
    background: #FEF6F8 0% 0% no-repeat padding-box;
}

.philosophy-block {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border-radius: 20px;
    padding: min(3.333vw, 40px);
    box-sizing: border-box;
}

.philosophy-area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 40px 0 0 0;
}

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

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

    .philosophy-block {
        padding: min(4.267vw, 16px);
    }
}

/* service */
.service-area {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    margin: 0 0 50px 0;
}

.service-block {
    background: #FDF9F3 0% 0% no-repeat padding-box;
    border-radius: 10px;
    padding: min(1.667vw, 20px);
    box-sizing: border-box;
}

.searvice-business-block {
    background: #FEF6F8 0% 0% no-repeat padding-box;
    border-radius: 20px;
    padding: min(2.5vw, 30px);
    box-sizing: border-box;
    margin: 0 0 50px 0;
}

.searvice-business-wrapper {
    display: grid;
    grid-template-columns: 15fr 23fr;
    gap: 1rem;
    margin: 0;
}

.btn-more1._pdf {
    background: #4B4044 0% 0% no-repeat padding-box;
    border-radius: 25px;
    max-width: 250px;
    width: 29%;
    padding: 3px 0;
}

.searvice-area-block {
    background: #FDF9F3 0% 0% no-repeat padding-box;
    border-radius: 20px;
    padding: min(3.333vw, 40px);
    box-sizing: border-box;
}


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

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

    .searvice-business-wrapper {
        grid-template-columns: 1fr;
    }
    .searvice-area-block {
        padding: min(5.333vw, 20px);
    }

    .btn-more1._pdf {
        width: 100%;
        min-height: min(13.333vw, 50px);
    }
}

/* office */
.office {
    background: #F7F1FE 0% 0% no-repeat padding-box;
}

.office-block {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border-radius: 20px;
    padding: min(3.333vw, 40px);
    box-sizing: border-box;
    margin: 0 0 50px 0;
}

.office-h3 {
    font-size: 28px;
    font-weight: 700;
    color: #4B4044;
    margin: 0 0 5px 0;
}

.common-text1._office {
    font-weight: 700;
    color: #F2AEC5;
    margin: 0;
}

.availability-block {
    background: #FDF9F3 0% 0% no-repeat padding-box;
    border: 1px solid #D5BBF7;
    border-radius: 10px;
    align-items: center;
    display: grid;
    grid-template-columns: 65fr 289fr;
    gap: 1rem;
    padding: min(1.667vw, 20px);
    box-sizing: border-box;
    margin: 0 0 20px 0;
}

.availability-text1 {
    font-size: 18px;
    font-weight: 700;
    color: #83AAE4;
    margin: 0;
}

.group-h3 {
    text-align: center;
    font-size: 32px;
    color: #4B4044;
    margin: 0 0 10px 0;
}

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

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

    .availability-block {
        grid-template-columns: 1fr;
        gap: 0.1rem;
        padding: min(5.333vw, 20px);
    }
}

/* flow */
.flow-img1 {
    width: 75%;
    margin: 0 auto;
}
@media screen and (max-width: 960px) {
}

/* group */
.group {
    background: #FAFAFA 0% 0% no-repeat padding-box;
}
.group-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.group-block {
    text-decoration: none;
    width: 19%;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #C6C6C6;
    border-radius: 5px;
    padding: min(0.833vw, 10px);
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.group-text1 {
    font-size: min(1vw, 12px);
    font-weight: 700;
    color: #565656;
    margin: 0;
}

.group-icon1 {
    width: min(2.5vw, 30px);
    margin: 0 4px 0 0;
}

@media screen and (max-width: 960px) {
    .group-block {
        width: 47%;
    }

    .group-text1 {
        font-size: min(3.2vw, 12px);
    }

    .group-icon1 {
        width: min(8vw, 30px);
    }

}

/* staff */
.staff {
    background: #FEF6F8 0% 0% no-repeat padding-box;
}

.staff-area {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    padding: min(6.167vw, 74px) 0 0 0;
}

.staff-block {
    position: relative;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 2px solid #F2AEC5;
    border-radius: 20px;
    padding: min(7.167vw, 86px) min(1.667vw, 20px) min(1.667vw, 20px) min(1.667vw, 20px);
    box-sizing: border-box;
}

.staff-img1{
    position: absolute;
    top: -35%;
    left: 50%;
    transform: translateX(-50%);
    width: min(56.9%, 148px);
}

.staff-h3 {
    text-align: center;
    font-size: min(1.667vw, 20px);
    font-weight: 700;
    color: #4B4044;
    margin: 0 0 10px 0;
}

.common-text1._staff {
    font-size: min(1.333vw, 16px);
    margin: 0;
}

@media screen and (max-width: 960px) {
    .staff-area {
        grid-template-columns: 1fr;
        gap: 7rem;
        padding: min(21.333vw, 80px) 0 0 0;
    }

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

    .staff-img1{
        top: -42%;
        width: min(44.1%, 148px);
    }

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


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

}

/* contact */
.contact {
    background: transparent linear-gradient(180deg, #F2AEC5 0%, #D5BBF7 100%) 0% 0% no-repeat padding-box;
}

.contact-block {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border-radius: 20px;
    padding: min(3.333vw, 40px);
}

.contact-tel-link {
    text-decoration: none;
    justify-content: center;
    display: flex;
    align-items: center;
    line-height: 1.1;
}

.contact-tel-link span {
    font-size: 44px;
    font-weight: 700;
    color: #F2AEC5;
    margin: 0;
}

.tel-icon {
    width: 26px;
    margin: 0 10px 0 0;
}

.tel-text1 {
    text-align: center;
    color: #4B4044;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

@media screen and (max-width: 960px) {
    .contact-tel-link span {
        font-size: min(11.733vw, 44px);
    }    

    .tel-icon {
        width: min(6.933vw, 26px);
        margin: 0 min(2.667vw, 10px) 0 0;
    }

}

/* footer */
.footer {
    background: #4B4044 0% 0% no-repeat padding-box;
}

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

.privacy-text1 {
    text-align: center;
    font-size: 14px;
    color: #fff;
    display: block;
    text-decoration: none;
    margin: 0 0 10px 0;
}

.cta-fixed {
    position: fixed;
    background: #F2AEC5 0% 0% no-repeat padding-box;
    border-radius: 10px;
    right: 0;
    top: 100px;
    z-index: 13;
    transition: opacity 0.3s ease-in-out;
    padding: 10px 15px;
    box-sizing: border-box;
}

.cta-tel-link {
    text-decoration: none;
}

.cta-tel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-tel-icon {
    width: 18PX;
    margin: 0 3px 0 0;
}

.cta-tel-wrapper ._tel {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    line-height: 1;
}

.cta-fixed-text1{
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #FEF6F8;
    margin: 0;
}

.arrow-fixed {
    position: fixed;
    height: auto;
    right: 10px;
    bottom: 10px;
    z-index: 13;
}

.arrow-link {
    width: 50px;
    height: auto;
}

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

    .cta-fixed {
        background: #F2AEC5 0% 0% no-repeat padding-box;
        width: 100%;
        top: auto;
        bottom: 0;
        height: 50px;
        z-index: 13;
        border-radius: 0;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .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;
    }

    .cta-tel-link {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cta-fixed-text1{
        margin: 0 0 0 8px;
    }

    .arrow-fixed {
        bottom: 60px;
    }
}

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

.heading._page02 {
    padding: 80px min(15%, 180px);
}

.fv2 {
    display: flex;
    align-items: end;
    background: #FDF9F3 0% 0% no-repeat padding-box;
    height: 288px;
}

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

.archive-link {
    text-decoration: none;
    padding: 20px 0;
    border-bottom: 1px solid #DDDDDD;
    display: block;
}


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

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

/* page02 page03 パンくずリスト */
.heading._crumbs {
    padding: 20px min(15%, 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: #F2AEC5;
}

.crumbs-separator {
    margin: 0 8px;
    color: #4B4044;
}

.crumbs-current {
    font-size: 16px;
    color: #4B4044;
}

@media screen and (max-width: 960px) {
    .heading._page02 {
        padding: 80px 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: #FDF9F3 0% 0% no-repeat padding-box;
    border-radius: 24px;
    text-align: center;
    border-radius: 50%;
    text-decoration: none;
    color: #4B4044;
    font-size: 16px;
    width: 45px;
    height: 45px;
    font-family: 'Jost';
}

.pagenum li a:hover,
.pagenum li a.current,
.pagenum li a.active {
    background: #4B4044 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 共通 */
.page03 {
    padding: 80px 0 0 0;
}

.fv3 {
    height: 20px;
}

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

.detail h1 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 3.36px;
    color: #4B4044;
    padding: 0 0 30px 0;
    margin: 0 0 80px 0;
    border-bottom: 2px solid #4B4044;
}

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

.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: #F2AEC5;
    border-bottom: 1px solid #F2AEC5;
    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: #4B4044;
}
.detail-common-area p {
    font-size: 16px;
    margin: 0 0 30px 0;
    color: #4B4044;
}
.detail-common-area a {
    font-size: 16px;
    color: #4B4044;
    font-weight: 700;
    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: #4B4044;
    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: #F2AEC5;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
}

@media screen and (max-width: 960px) {
    .page03 {
        padding: 50px 0 0 0;
    }

}


.sns-share-buttons {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.sns-share-buttons a, 
.sns-share-buttons button {
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    border: none;
}

.share-fb { background-color: #1877f2; }
.share-x  { background-color: #000000; }
.js-copy-button { background-color: #666; }

.sns-share-buttons a:hover { opacity: 0.8; }




/* コメントエリア全体の余白 */
.comments-area {
    margin-top: 40px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

/* 投稿されたコメントのリスト */
.comment-list {
    list-style: none;
    padding: 0;
}

.comment-body {
    margin-bottom: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 5px;
}

/* 入力フォームの調整 */
.comment-form-comment textarea {
    width: 100%;
    display: block;
    padding: 10px;
    border: 1px solid #ccc;
}

.form-submit input {
    background: #333;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}