@charset "utf-8";


/*==================
Article header
====================*/

.mainVisualPc {
    display: none;
}

.txtImg__sp {
    display: block;
    width: 29px;
}

.txtImg__pc {
    display: none;
}

.forestImg__sp {
    align-self: stretch;
}

.forestImg__pc {
        display: none;
    }

.main__txt {
    display: flex;
    padding: 0 7.3%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
} 

.mainVisual {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 20px 0;
    gap: 20px;
}

.swiper-pagination-bullet {
    background-color: #2F4B25;
}

.swiper-pagination {
    position: absolute; /* または absolute でもOK */
    z-index: 10;
    pointer-events: auto; 
} 

/* ======================
main visual slider
========================= */

/* コンテナ設定  */

/* 森の写真側（テキストも含む） */
.main__txt {
  flex: 0 0 150px; /* 幅を固定 or 必要に応じて%指定 */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* スライド側 */
.mainVisualSp {
    display: block;
  position: relative;
  flex: 1;             /* 残りの幅を全部取る */
  overflow: hidden;
}

.mainVisualSp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



@media screen and (min-width: 769px) {

    .mainVisual {
        justify-content: center;
    }

    .main__txt {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 40px;
    }

    .txtImg__sp {
        display: none;
    }


    .forestImg__sp {
        display: none
    }

    .forestImg__pc {
        display: block;
        max-width: 222px;
    }

    .mainVisual {
        width: 100%;
        height: auto;
    }

    
    .mainVisualSp {
        display: none;
    }

    .mainVisualPc {
        display: block;
    }

    .txtImg__pc {
        display: block;
        margin-left: 9.3%;
        max-width: 64px;
    }

    .ja {
        font-size: 1.8rem
    }

    .en {
    font-size: 1.2rem;
    }

    .swiper-slide img {
        display: block;
        width: 1010px;
    }

}

/*==================
concept
====================*/

.topic__concept {
    color: #2F4B25;
    font-family: "Hina Mincho";
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 2;
    text-align: center;
    background-image: url(../images/concept-background.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 40px 6.8%;
}

.big {
    white-space: nowrap;
    color: #2F4B25;
    font-family: "Hina Mincho";
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.5;
}

  /* concept pc */
@media screen and (min-width: 769px) {
    .big {
        font-size: 3rem;
        line-height: 1.6;
        letter-spacing: 2.7px;
    }

    .topic__concept{
        font-size: 2.1rem;
        line-height: 2.6;
        background-image: url(../images/conceptBackground__pc.jpg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 100px 30.2%;
    }

}  

/*==================
fadeIn
====================*/

.fadeIn {
    transform: translateY(100px);
    opacity: 0;
    transition: opacity 2s ease, transform 1.5s ease;
}

.fadeIn.animated {
    transition: opacity 2s ease, transform 1.5s ease;
    transform: translateY(0);
    opacity: 1;
}

/*==================
about
====================*/

.section--about {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 30px 7.3% 40px;
    background: url(../images/area_background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.topic__about {
    color: #2F4B25;
    font-family: "Hina Mincho";
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.6rem;
    text-align: center;
    text-wrap: nowrap;
}

.about__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    align-self: stretch;
}

.topic__about span {
    color: #2F4B25;
    text-align: center;
    font-family: "Ibarra Real Nova";
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.96px;
}

.about__recommend {
    display: flex;
    flex-direction: column;
    gap: 25px;
    justify-content: flex-start;
}

.about__txt {
    color: #392F29;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.9;
    text-align: start;
}

.about__txt span {
    color: #CB4709;
}

.about__item {
    position: relative;
    font-size: 1.6rem;
    line-height: 1.4;
    margin-bottom: 0;
    text-align: start;
    left: 22px;
}

.about__item::before {
    content: "";
    position: absolute;
    left: -22px;
    top: 0.2em;
    /* テキストとの縦位置を調整 */
    width: 10px;
    height: 1.2em;
    background: url(../images/check.png) no-repeat center/contain;
}

.about__recommend {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 45px;
}

  /* about pc */

@media screen and (min-width: 769px) {
    .section--about {
        gap: 30px;
        padding: 40px 29.1% 60px;
        background: url(../images/area_backgroundSp.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        align-items: start;
        }

    .about__content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 0;
        gap: 0px;
    }

    .topic__about {
            font-size: 3.3rem;
            font-style: normal;
            font-weight: 400;
            line-height: 1;
            letter-spacing: 3.3px;
    }

    .topic__about span {
        color: #2F4B25;
        font-family: "Ibarra Real Nova";
        font-size: 4.5rem;
        line-height: 1;
        letter-spacing: 1.8px;
    }

    .about__txt {
        font-size: 2rem;
        line-height: 2;
    }

    .about__item {
        color: #392F29;
        font-size: 2rem;
        line-height: 1.5;
    }

    .about__item::before {
        width: 14px;
    }

    .recommend__pc {
        max-width: 600px;
        margin-top: 30px;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        flex-shrink: 0;
        gap: 60px;
    }

    .about__recommend {
        margin-bottom: 0px;

    }

}

/*==================
worries
====================*/

.section--worries {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 40px;
    background: #F8F6E7;
}

.worries__content {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    align-self: stretch;
    margin-top: 0px;
}

.worries__item {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.4;
    position: relative;
    margin-top: 30px;
}

.worries__item::after{
    display: block;
    border-bottom: 5px solid rgba(212, 218, 204, 0.50);
    content: "";
    position: absolute;
    padding-bottom: 1px;
    width: 100%;
}

.worries__content2 {
    display: flex;
    width: 259px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 45px;
    position: relative;
}

.worries__img {
    display: block;
    width: 257px;
    margin-top: 30px;
}

.worries__imgPc {
    display: none;
}

.worries__txt {
    font-size: 1.4rem;
    line-height: 1.8;
    position: relative;
}

.worries__txt::before {
    display: block;
    border-right: 1px solid #2F4B25;
    content: "";
    position: absolute;
    padding-bottom: 1px;
    height: 30px;
    top: -37px;
    right: 50%;
    transform: translateY(100px);
    opacity: 0;
    transition: opacity 2s ease, transform 1.5s;
}

.worries__txt span {
    color: #2F4B25;
    font-size: 1.6rem;
}

.worries__txt.animated::before{
    transform: translateY(0);
    opacity: 1;
}

/* worries pc */

@media screen and (min-width: 769px) {
    .worries__item {
        font-size: 2rem;
        font-weight: 350;
        line-height:   1;
    }

    .worriesPc {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 296px;
    }

    .worries__content{
        gap: 70px;
        margin-top: 60px;
    }

    .worries__item::after{
        border-bottom: 8px solid rgba(212, 218, 204, 0.50);
    }
    
    .worries__img {
        display: none;
    }

    .worries__imgPc {
        display: block;
        width: 600px;
        max-width: fit-content;
    }

    .worries__txt {
        font-size: 1.9rem;
        line-height: 2;
        width: 457px;
        position: relative;
    }

    .worries__content2 {
        gap: 81px;
    }

    .worries__txt::before {
    display: block;
    border-right: 1px solid #2F4B25;;
    content: "";
    position: absolute;
    padding-bottom: 1px;
    height: 47px;
    top: -37%;
    right: 50%;
}

    .worries__txt  span{
        font-size: 2.1rem;
    }

}

/*==================
affect
====================*/

.section--affect {
    position: relative;
    background-image: url(../images/forest_background.jpg);
    height: 560px;
    background-attachment: fixed;
    background-size: contain;
    display: flex;
    align-items: center;
    justify-content: center;
}

.affect__content {
    width: 100%;
    background: rgba(237, 241, 230, 0.90);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.topic__affect {
    color: #2F4B25;
    font-family: "Hina Mincho";
    font-size: 1.4rem;
    line-height: 2;
    margin-bottom: 30px;
}

.topic__affect span {
    font-size: 16px;
}

.affectImg__sp {
    display: block;
    width: 260px;
    margin-inline: auto;
    margin-bottom: 30px
}

.affectImg__pc {
    display: none;
}

/* worries pc */
  
@media screen and (min-width: 769px) {
    .affect__content {
        max-width: 100%;
        padding: 140px 0;
        gap: 56px;
    }

    .topic__affect {
        color: #2F4B25;
        font-size: 2.1rem;
        font-weight: 400;
        line-height: 2;
    }

    .topic__affect span {
        color: #2F4B25;
        font-size: 2.7rem;
        font-weight: 400;
        line-height: 1.5;
    }

    .section--affect {
        background-attachment: fixed;
        padding: 50px 0px;
        position: relative;
        background-image: url(../images/forest_background.jpg);
        height: 800px;
        background-size: cover;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .affectImg__sp {
        display: none;
    }

    .affectImg__pc {
        display: block;
        width: 400px;
    }

    .affect__content {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    .btn--menu {
        margin-top: 20px;
        max-width: 264px;
    }


}

/*==================
profile
====================*/

.section--profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 29px;
}

.introducing {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 27px;
    margin: 0 7.3%;
}

.profileImg {
    display: block;
    width: 190px;
}

.profile__name {
    font-size: 1.6rem;
    line-height: 1.8;
    text-wrap: nowrap;
    font-weight: 400;
}

.profile__name span,
.profile__txt span {
    font-size: 1.8rem;
    line-height: 2;

}

.profile__txt {
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2.1;
    text-align: start;
    padding: 0 7.3%;
    margin-top: 27px;
}

.carrier {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;

}

.picture {
    display: block;
    width: 230px;
}

.carrierImg {
    display: block;
    width: 320px;
}

.instagram__sp {
    display: block;
    width: 188px;
}

.instagram__pc {
    display: none;
}

.section--profile a img{
    position: relative;
    top: 0;
}

.section--profile a img:hover {
    top: -10px;
    transition: 0.3s;
}

/* profile pc */
  
@media screen and (min-width: 769px) {

    .section--profile{
        gap: 0px;
    }

    .introducing {
        margin: 60px 0px 0px 0px ;
    }

    .profile__name{
        font-size: 1.8rem;
        font-weight: 400;
        line-height: 1.8;
    }

    .profile__name span,
    .profile__txt span{
        font-size: 2rem;
        line-height: 2;
    }

    .introducing {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 80px;
        align-self: stretch;
        padding: 0px 14.9%;
    }

    .profile__txt {
        font-size: 1.8rem;
        font-weight: 400;
        margin-top: 0px;
    }

    .profileImg {
        display: block;
        width: 330px;
    }

    .profile__pc {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .carrier {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        justify-content: center;
        gap: 110px;
        align-self: stretch;
        margin-top: 70px;
        padding: 0px 14.9%;
    }

    .picture {
        display: block;
        width: 376px;
    }

    .carrierImg {
        display: block;
        width: 481px;
    }

    .instagram__sp{
        display: none;
    }

    .instagram__pc{
        display: block;
        width: 475px;
        margin-top: 40px;
    }
}

/*==================
voice
====================*/

.section--voice {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 7.3% 40px;
    margin-top: 0px;
}

.voice__description {
font-size: 1.8rem;
font-weight: 400;
line-height: 1.7;
margin-top: 15px;
}

.voice__contents {
    background: #FFFCF7;
    display: flex;
    padding: 30px 30px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
    position: relative;
}

.voice__contents::before {
    display: block;
    background: rgba(217, 217, 217, 0.40);
    content: "";
    position:absolute;
    width: 108%;
    height: 102%;
    z-index: -1;
}

.voice__item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 7px;
    position: relative;
}

.voice__item:first-of-type::after,
.voice__item:nth-last-of-type(2)::after{
    display: block;
    border-bottom: 1px solid #D4DACC;
    content: "";
    position: absolute;
    bottom: -15px;
    width: 100%;
}

.imformation {
    color: #2F4B25;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1;
}

.voice__txt {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.7;
    text-align: start;
}

.voice__txt span {
    color: #CB4709;
    font-size:1.5rem;

}

/* profile pc */
  
@media screen and (min-width: 769px) {
    .section--voice {
        margin: 40px 0 20px 0;
        padding: 0 14.9% 70px;
    }

    .voice__description {
        font-size: 2rem;
        font-weight: 500;
        margin-top: 60px;
    }

    .voice__contents {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        margin-top: 45px;
    }

    .voice__contents::before {
    width: 108%;
    height: 104%;
    }

    .voice__item {
        gap: 15px;
    }

    .imformation {
        font-size: 1.8rem;
        font-weight: 500;
        line-height: 1;
    }

    .voice__txt {
        font-size: 1.8rem;
        font-weight: 400;
        line-height: 1.7;
    }

    .voice__txt span {
        font-size: 1.9rem;
    }
}
