@charset "utf-8";

.article {
    background: #FCFCFC;
}

/* =======================
main
======================= */

/* article__header */

.article__background {
    position: relative;
}

.article__background::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 53px;
    background: linear-gradient(to right, #F1EDEA 76.3%, #E5E0DC 23.7%);
    top: 0px;
}

.articleHeader {
    padding: 0 4%;
}

.articleHeader__menu {
    display: flex;
    padding-top: 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.articleHeader__title {
    color: #7D6B6C;
    font-family: "Georgia";
    font-size: 2.4rem;
    font-weight: 700;
    line-height: normal;
    z-index: 10;
}

.articleHeader__list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.articleHeader__item {
    color: #625B59;
    font-family: "Lato";
    font-size: 1.5rem;
    font-weight: 700;
    line-height: normal;
    border-left: 1px solid #C0BCB9;
    padding-left: 5px;
}

.articleHeader__item:first-of-type {
    border-left: none;
    padding-left: 0px;
}

.articleHeader__profile {
    display: flex;
    padding: 30px 4.3% 0px 4.3%;
    flex-direction: column;
    gap: 30px;
}

.profile__image {
    position: relative;
    display: inline-block;
    margin: 29px 12.8% 0px 12.8%;
}


.profile__name {
    position: absolute;
    top: 0;
    right: 0;
    align-items: flex-start;
    color: #986363;
    font-family: "Georgia";
    font-size: 1.7rem;
    font-weight: 700;
}

.name {
    position: absolute;
    bottom: 0;
    right: 0;
}

.Lastname {
    writing-mode: vertical-rl;
    text-orientation: mixed; 
    position: absolute;
    top: 0;
}

.profile__txt {
    font-family: "Noto Sans JP";
    font-size: 1.5rem;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.articleHeader__catchCopy {
    display: flex;
    padding: 50px 4.3% 30px 4.3%;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}
  
.catchCopy__title {
    color: #5F5253;
    font-family: "Zen Old Mincho";
    font-size: 2rem;
    font-weight: 700;
    line-height: normal;
    border-bottom: 1px solid #926D6B;
    border-top: 1px solid #926D6B;
    width: 100%;
    padding: 15px 0;
}

.space {
    display: inline-block;
    margin-left: 20px;
}

.catchCopy__txt {
    font-family: "Noto Sans JP";
    font-size: 1.5rem;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* article__header pc */
@media screen and (min-width: 769px) {

    .article__background::after {
        height: 120px;
    }

    .articleHeader {
        padding: 0 9.7%;
    }

    .articleHeader__frame {
        max-width: 1160px;
        margin: 0 auto;
    }

    .articleHeader__menu {
        padding-top: 90px;
        gap: 15px;
    }

    .articleHeader__title {
        font-size: 4.8rem;
    }

    .articleHeader__list {
        gap: 17.5px;
    }

    .articleHeader__item {
        font-size: 1.8rem;
        font-weight: 800;
        padding-left: 17.5px;
        border-left: 2px solid #C0BCB9;
    }

    .articleHeader__item a:hover{ 
        opacity:0.5;
        transition:0.3s;
    }

    .articleHeader__profile {
        padding: 104px 5.2% 0px 5.2%;
        flex-direction: row;
        gap: 100px;
        align-items: center;
    }

    .profile__image {
        margin: 0px 0% 0px 0%;
        width: 100%;
    }

    .profile__name {
        font-size: 3.2rem;
    }


    .profile__txt {
        font-size: 1.6rem;
        gap: 16px;
    }

    .articleHeader__catchCopy {
        padding: 100px 5.2% 60px 5.2%;
        flex-direction: row;
        align-items: center;
        gap: 60px;
        position: relative;
    }

    .catchCopy__title {
        font-size: 4rem;
        border-bottom: none;
        border-top: none;
        white-space: nowrap;
        width: auto;
        padding: 0px 0;


        
    }

    

    .space {
        margin-left: 40px;
    }

    .space:first-child {
        margin-left: 0px;
    }

    .catchCopy__txt {
        font-size: 1.6rem;
        gap: 10px;
        border-left: 2px solid #926D6B;
        padding-left: 60px;
    }

}/* pc 769px */

/* article__header responsive */

@media screen and (min-width: 1024px) and (max-width: 1245px) {
    .articleHeader__catchCopy {
        gap: 40px;
    }
    .catchCopy__title {
        font-size: 3.2rem;
    }

    .space {
        margin-left: 3.2rem;
    }

    .catchCopy__txt {
        padding-left: 40px;
    }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
    .articleHeader__profile {
        flex-direction: column;
        gap: 50px;
    }

    .articleHeader__catchCopy {
        padding: 80px 5.2% 120px 5.2%;
        flex-direction: column;
        gap: 30px;
    }

    .catchCopy__title {
        font-size: 3.2rem;
        border-bottom: 2px solid #7A2B2E;
        border-top: 2px solid #7A2B2E;
        width: 100%;
        padding: 15px 0;
    }

    .space {
        margin-left: 3.2rem;
    }

    .catchCopy__txt {
        border-left: none;
        padding-left: 0px;
    }
}/* responsive */

/* section--carrier */

.section {
    max-width: 1440px;
    margin: 0 auto;
}

#carrier {
    scroll-margin-top: 75px; 
}

.section--carrier {
    padding: 30px 4% 0px 4%;
}

.carrier__titleFrame {
    display: flex;
    justify-content: center;
    position: relative;
    margin-bottom: 30px;
}

.carrier__titleFrame::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 23px;
    top: -10px;
    background: #F1EDEA;
    z-index: 10;
    border-radius: 20px;
}

.carrier__title {
    color: #625B59;
    font-family: "Lato";
    font-size: 2rem;
    font-weight: 800;
    line-height: normal;
    z-index: 15;
}

.carrier__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    align-items: flex-start;
}

.carrier__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    border-bottom: 1px solid rgba(34, 34, 34, 0.50);
    width: 100%;
}

.carrier__item:last-of-type {
    border-bottom: none;
}

.carrier__topic {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    
}

.carrier__year {
    color: #986363;
    font-family: "Montserrat";
    font-size: 1.8rem;
    font-weight: 900;
    line-height: normal;
}

.year {
    font-family: "Noto Sans JP";
    font-size: 1.3rem;
}

.carrier__kaind {
    color: rgba(55, 52, 52, 0.90);
    font-family: "Noto Sans JP";
    font-size: 1.8rem;
    font-weight: 700;
    line-height: normal;
    display: flex;
    align-items: flex-end;
    gap: 18px;
}

.carrier__name {
    display: flex;
    flex-direction: column;
}

.carrier__txt {
    font-family: "Noto Sans JP";
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 30px;
}

/* section--carrier pc */
@media screen and (min-width: 769px) {

    #carrier {
        scroll-margin-top: 140px; 
    }

    .section--carrier {
        padding: 60px 9.7% 60px 9.7%;
    }

    .carrier__titleFrame {
        margin-bottom: 50px;
    }
    
    .carrier__titleFrame::after {
        height: 50px;
        top: -30px;
    }

    .carrier__title {
        font-size: 3.2rem;
    }

    .carrier__list {
        gap: 25px;
        position: relative;
        padding-left: 58px;
        margin: 0 11.2% 0 12.2%;
    }

    .carrier__list::before {
        content: "";
        position: absolute;
        border-left: 3px solid #926D6B;
        height: 100%;
        left: 0;
        transform: translateX(-0px);
    }

    .carrier__list li {
        position: relative;
    }
    
    .carrier__list li::before {
        content: "";
        position: absolute;
        width: 24px;
        height: 24px;
        background-color: #926D6B; /* 丸の色 */
        border-radius: 50%;
        left: -68.5px; /* 縦棒からの距離（79px + 8px = 87px） */
        top: 0%;
        transform: translateY(-0.8%);
    }

    .carrier__item {
        gap: 16px;
    }

    .carrier__topic {
        flex-direction: row;
        gap: 50px;
        width: 100%;
        align-items: flex-start;
    }

    .carrier__year {
        font-size: 2rem;
        min-width: 69px;
        letter-spacing: normal;
        text-align: start;
    }

    .year {
        font-size: 1.6rem;
    }

    .carrier__kaind {
        font-size: 2rem;
        gap: 20px;
    }

    .carrier__name {
        flex-direction: row;
        gap: 20px;
    }

    .carrier__txt {
        font-size: 1.6rem;
        margin-bottom: 25px;
        margin-left: 119px;
    }

}/* pc 769px */

/* section--carrier responsive */
@media screen and (min-width: 769px) and (max-width: 1170px) {
    .carrier__kaind {
        font-size: 1.8rem;
        gap: 18px;
    }

    .carrier__name {
        flex-direction: column;
        gap: 0px;
    }
}/* responsive */

/* section--strengths */

#strengths {
    scroll-margin-top: 75px; 
}

.section--strengths {
    /* margin: 30px 4% 0 4%;
    padding-bottom: 30px; */
    padding: 30px 4% 30px 4%;
}

.strengths__titleFrame {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.strengths__titleFrame::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 23px;
    top: -10px;
    background: #E5E0DC;
    z-index: 10;
    border-radius: 20px;
}

.strengths__title {
    color: #625B59;
    font-family: "Lato";
    font-size: 2rem;
    font-weight: 800;
    line-height: normal;
    position: relative;
    z-index: 15;
}

.strengths__list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.strengths__item {
    display: flex;
    padding: 0px 4.3%;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;

    border-bottom: 1px solid #C0BCB9;
    position: relative;
    background: linear-gradient(180deg, #F5F1EE 0%, #FCFCFC 30%);
}

.strengths__item::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 78.6%; 
    height: 1px;
    background-color: #C0BCB9; 
}

.strengths__topic {
    display: flex;
    gap: 37px;
    width: 100%;
    position: relative;
    margin-top: 30px;
}

.firstTopic::before,
.secondTopic::before {
    content: "";
    position: absolute;
    bottom: 7.51px;
    left: -4.3%;
    width: 52.5%; 
    height: 1px;
    background-color: #C0BCB9; 
}

.lastTopic ::before {
    content: "";
    position: absolute;
    bottom: 7.51px;
    left: 0;
    width: 78.6%; 
    height: 1px;
    background-color: #838383; 
}

.strengths__number {
    color: #926D6B;
    font-family: "Montserrat";
    font-size: 3rem;
    font-weight: 700;
    line-height: normal;
}

.strengths__name {
    color: rgba(55, 52, 52, 0.80);
    font-family: "Noto Sans JP";
    font-size: 2rem;
    font-weight: 700;
    line-height: normal;
}

.strengths__txt {
    font-family: "Noto Sans JP";
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}

.strengths__highlight {
    color: #986363;
    font-weight: 700;
}

/* section--strengths pc */
@media screen and (min-width: 769px) {

    #strengths {
        scroll-margin-top: 109px; 
    }

    .section--strengths {
        /* margin: 90px 9.7% 0 9.7%;
        padding-bottom: 60px; */
        padding: 90px 9.7% 60px 9.7% ;
    }

    .strengths__titleFrame {
        margin-bottom: 50px;
    }

    .strengths__titleFrame::after {
        height: 50px;
        top: -30px;
    }

    .strengths__title {
        font-size: 3.2rem;
    }

    .strengths__list {
        gap: 50px;
    }

    .strengths__item {
        padding: 0px 0%;
        flex-direction: row;
        gap: 40px;
    
        border-bottom: 2px solid #C0BCB9;
        background: linear-gradient(90deg, #F5F1EE 0.01%, #FCFCFC 25%);
    }

    .strengths__item::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 86.4%; 
        height: 2px;
        background-color: C0BCB9; 
    }
    
    .strengths__topic {
        display: flex;
        flex-direction: column;
        gap: 27px;
        max-width: 260px;
        margin-top: 8px;
        margin-bottom: 38px;
    }

    .firstTopic::before,
    .secondTopic::before,
    .lastTopic ::before {
        display: none;
    }

    .strengths__topic::after {
        content: "";
        position: absolute;
        top: 45.6px;
        width: 100%; 
        height: 2px;
        background-color: #C0BCB9; 
    }

    .strengths__number {
        font-size: 4.8rem;
        margin-left: 7.7%;
    }

    .strengths__name {
        font-size: 3.2rem;
        text-align: right;
    }

    .strengths__txt {
        font-size: 1.6rem;
        margin-top: 25px;
        margin-bottom: 25px;
    }
}/* pc 769px */

/* section--strengths responsive */
@media screen and (min-width: 769px) and (max-width: 1100px) {
    .strengths__name {
        display: flex;
        flex-direction: column;
    }
}

@media screen and (min-width: 769px) and (max-width: 900px) {
    .strengths__name {
        font-size: 2.4rem;
    }
}/* responsive */


/* section--strengths animation */
.scroll_left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1.5s, transform 1.5s;
}
.scroll_left.on {
    opacity: 1;
    transform: translateX(0);
}

/* section--myHobby */

#myHobby {
    scroll-margin-top: 75px; 
}

.section--myHobby {
    /* margin: 30px 4% 0 4%;
    padding-bottom: 50px; */
    padding: 30px 4% 73px 4%;
}

.myHobby__titleFrame {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.myHobby__titleFrame::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 23px;
    top: -10px;
    background: #F1EDEA;
    z-index: 10;
    border-radius: 20px;
}

.myHobby__title {
    color: #625B59;
    font-family: "Lato";
    font-size: 2rem;
    font-weight: 800;
    line-height: normal;
    position: relative;
    z-index: 15;
}


.myHobby__frame {
    display: flex;
    flex-direction: column;
    gap: 15px; 
    padding-bottom: 30px;
    /* border-bottom: 23px solid #F1EDEA; */
    position: relative;
}

.myHobby__frame::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 23px;
    bottom: -23px;
    background: #F1EDEA;
    z-index: 10;
    border-radius: 20px;
}

/* 1行目 */
.myHobby__frame-1 {
    display: grid;
    grid-template-columns: 35.9% auto;
    gap: 15px;
    position: relative;
}

/* 2行目 */
.myHobby__frame-2 {
    display: grid;
    grid-template-columns: 59.7% auto;
    gap: 15px;
}
  
/* 3行目 */
.myHobby__frame-3 {
    display: grid;
    grid-template-columns: 45.2% auto;
    gap: 15px;
}

.spFrame {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
}

.text-overlay {
    position: absolute;
    bottom: 3px;
    right: -2px;
    color: #FCFCFC;
    font-family: "Lato";
    font-size: 1.3rem;
    /* font-size: 1.6rem; */
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.spItem {
    height: 100%;
}

.pcItem {
    display: none;
}

/* section--myHobby pc */
@media screen and (min-width: 769px) {

    #myHobby {
        scroll-margin-top: 139px; 
    }

    .section--myHobby {
        /* margin: 60px 9.7% 0 9.7%;
        padding-bottom: 120px; */
        padding: 60px 9.7% 170px 9.7%;
    }

    .myHobby__titleFrame {
        margin-bottom: 50px;
    }

    .myHobby__titleFrame::after {
        height: 50px;
        top: -30px;
    }

    .myHobby__title {
        font-size: 3.2rem;
    }


    .myHobby__frame {
        flex-direction: row;
        gap: 40px;
        padding-bottom: 50px;
        /* border-bottom: 50px solid #F1EDEA; */
    }


    .myHobby__frame::before {
        height: 50px;
        bottom: -50px;
    }

    .myHobby__frame-1 {
        display: flex;
        flex-direction: column;
        gap: 40px;
        width: 100%;
    }

    .myHobby__frame-2 {
        display: flex;
        flex-direction: column;
        gap: 40px;
        width: 100%;
    }

    .myHobby__frame-3 {
        display: flex;
        flex-direction: column;
        flex-direction: column-reverse; 
        gap: 40px;
        width: 100%;
    }

    .spFrame {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .text-overlay {
        display: none;
    }

    .spItem {
        display: none;
    }

    .pcItem {
        background-color: #E5E0DC;
        display: block;
        height: 100%;
        position: relative;
    }

    .pcItem__txt1 {
        position: absolute;
        bottom: 0;
        left: -7px;
        color: #FCFCFC;
        font-family: "Lato";
        font-size: 4.8rem;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }

    .pcItem__txt2 {
        position: absolute;
        bottom: 0;
        right: -7px;
        color: #FCFCFC;
        font-family: "Lato";
        font-size: 4.8rem;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }

}/* pc 769px */

/* section--myHobby responsive */

@media screen and (min-width: 500px) and (max-width: 599px) {
    .text-overlay {
        /* font-size: 2rem; */
        font-size: 1.6rem;
    }
}

@media screen and (min-width: 600px) and (max-width: 1439px) {
    .text-overlay {
        /* font-size: 2.5rem; */
        font-size: 2rem;
    }
}

@media screen and (min-width: 769px) and (max-width: 1180px) {
    .pcItem__txt1 {
        font-size: 3.8rem;
        left: -3px;
    }

    .pcItem__txt2 {
        font-size: 3.8rem;
    }
}

@media screen and (min-width: 769px) and (max-width: 1439px) {
    .myHobby__frame,
    .myHobby__frame-1,
    .myHobby__frame-2,
    .myHobby__frame-3,
    .spFrame {
        gap: 2.78vw;
    }
}/* responsive */


/* section--myHobby ポップアップ */

/* ポップアップの基本スタイル */
.popup {
    display: none; /* 初期状態で非表示 */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    text-align: center;
    padding: 20px;
}
.popup-trigger {
    cursor: pointer;
}

.popup-trigger:hover{ 
	opacity:0.5;
	transition:0.3s;
}
   
/* ポップアップのコンテンツ */
.popup-content {
    position: relative;
}

.popup-content img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.popup-content h3 {
    color: rgba(55, 52, 52, 0.80);
    margin-top: 15px;
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    font-family:"Noto Sans JP"
}

.popup-content p {
    text-align: start;
    margin-top: 5px;
    font-size: 1.5rem;
    font-weight: 400;
    font-family:"Noto Sans JP"
}

/* 閉じるボタン */
.popup-close {
    position: absolute;
    top: 30px;
    right: 15px;
    font-size: 50px;
    cursor: pointer;
    color: #FCFCFC;
    line-height: 0;
}

/* 背景を暗くするためのオーバーレイ */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(252, 252, 252, 0.5);
    z-index: 20;
    display: none; /* 初期状態では非表示 */
}

/* ポップアップ本体のスタイル */
.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px 20px 25px 20px;
    border-radius: 8px;
    z-index: 20;
    display: none;
}

/* section--myHobby ポップアップ　pc */
@media screen and (min-width: 769px) {

    .popup-content h3 {
        font-size: 2.4rem;
        margin-top: 20px;
    }    
    
    .popup-content p {
        font-size: 1.6rem;
        margin-top: 10px;
    }

}/* pc 769px */





/* about-me common animation */

.fadeIn,
.fadeIn--responsive,
.fadeIn--responsive2 {
    opacity: 0;
    transition: 2s;
}

.fadeIn.is-show,
.fadeIn--responsive.is-show,
.fadeIn--responsive2.is-show {
  opacity: 1;
}

@media (min-width: 1440px) {
    .fadeIn--responsive {
        opacity: 1 !important;
        transition: none !important; /* アニメーションも無効化 */
    }
}

@media (min-width: 1920px) {
    .fadeIn--responsive2 {
        opacity: 1 !important;
        transition: none !important; /* アニメーションも無効化 */
    }
}











