@charset "UTF-8";

/* ==================
main contents
=====================*/

/* Introduction */
.introduction,
.lecture,
.book,
.research  {
    position: relative;
    background-color: #fff;
    padding: 0 8% 40px;
    z-index: 0;
    margin-top: 60px;
}

.name {
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    margin-top: 29px;
    z-index: 1;
}

.name::before {
    background: var(--primary-title-green, #385723F7);
    content: '';
    display: block;
    width: 2px;
    height: 20px;
    margin-right: 8px;
}

/* 四角１(yellow) */
.introduction::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 30px;
    width: 236px;
    height: 221px;
    background-color: var(--primary-design-yellow);
    z-index: -1;
}

.intro_pic {
    width: 102px;
    height: 68px;
    position: absolute;
    top: -10px;
    left: 200px;
}

.summary__title {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 150%; /* 24px */
    letter-spacing: 1.12px;
    margin-top: 23px;
}


.sub__bodytxt {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 150%; /* 24px */
    letter-spacing: 1.12px;
}


.researchmap__container {
    text-align: center;
    margin-top: 40px;
}

.researchmap__container::before {
    background: var(--primary-title-green, #385723F7);
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    margin-top: 30px;
}

.researchmap__btn,
.lecture__btn,
.research__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  background-color: var(--primary-contentbtn-green);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
  padding: 0.5em 1.5em;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  margin-top: 14px;
}

.researchmap__btn:hover, 
.lecture__btn:hover,
.research__btn:hover {
  background-color: var(--primary-contentbtn-green); 
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.researchmap__btn .external-icon,
.lecture__btn .internal-icon,
.research__btn .internal-icon  {
  width: 14px; 
  height: 14px;
  display: inline-block;
  margin-top: 2px;
}

.researchmap__text {
  font-size: 1.2rem;
  margin-top: 1em;
}


@media screen and (min-width: 769px) { 
    .introduction {
        margin-top: 100px 5%;
        display: flex;
        justify-content: space-between;
    }

    .introduction::before {
        content: "";
        position: absolute;
        top: -15px;
        left: 100px;
        width: 428px;
        height: 411px;
        background-color: var(--primary-design-yellow);
        z-index: -1;
    }

    .name__container {
        width: 30%;
    }

    .summary__container {
        width: 70%;
    }
    .name {
        writing-mode: vertical-rl;
        text-orientation: upright;
        display: block; 
        font-size: 2.4rem;
        font-weight: 700;
        letter-spacing: 2rem;
        margin-left: 150px;
    }

    .name::before {
        width: 2px;
        height: 160px;
    }


    .intro_pic {
        width: 151px;
        height: auto;
        position: absolute;
        top: 350px;
        left: 100px;
    }

    .summary__title { 
        color: var(--primary-body-green rgba(56, 87, 35, 0.97));
        font-size: 1.8rem;
        font-weight: 700;
        display: flex;
        align-items: center;
    }

    .summary__title::before {
        background: var(--primary-title-green, #385723F7);
        content: '';
        display: block;
        width: 2px;
        height: 19px;
        margin-right: 8px;
    }

    .sub__bodytxt {
        font-size: 1.6rem;
        font-weight: 400;
        line-height: 200%; /* 32px */
        letter-spacing: 1.12px;
        padding: 20px 20px 20px 0;
    }

    .researchmap__container {
        margin-top: 20px;
        align-items: center;
        gap: 10px;
    }

    .researchmap__container::before {
        background: var(--primary-title-green, #385723F7);
        content: '';
        max-width: 100%;
        height: 1px;
        margin-top: 20px;
    }

    .researchmap__container--text {
        display: flex;
        justify-content: left;
        align-items: center;
        flex-direction: row-reverse;
        gap: 10px;
    }

    .researchmap__text {
        font-size: 1.4rem;
        margin-top: 1em;
    }

}

@media screen and (min-width: 1400px) { 
    .intro_pic {
        width: 270px;
        height: auto;
        position: absolute;
        top: 350px;
        left: 190px;
    }
}

/* PC 表示 ７６９px*/


/* ===================
活動実績
＝＝＝＝＝＝＝＝＝＝＝＝＝ */

/* Lecture */

.lecture {
    background: #F9F7F3;
    padding: 55px 6%;
    margin-top: 0px;
}

.lecture::before,
.book::before,
.research::before {
    content: "";
    position: absolute;
    top: 25px;
    left: 0px;
    width: 236px;
    height: 80px;
    background-color: var(--primary-design-yellow);
    z-index: -1;
}

.sub__title::before {
    background: var(--primary-title-green, #385723F7);
    content: '';
    display: block;
    width: 2px;
    height: 19px;
    margin-right: 8px;
}

.sub__title {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 150%; /* 24px */
    letter-spacing: 1.12px;
    display: flex;
    position: relative;
}

.publish__year {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 40px;
}

.lecture__list{
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 10px;
}

.lecture__item {
    display: block;
    width: 100%;
    height: auto;
    background: var(--primary-result-background-green, rgba(199, 217, 181, 0.20));
    border-radius: 10px;
    padding: 3%;
}

.lecture__item p {
    font-size: 1.0rem;
    font-weight: 400;
    text-align: left;
    vertical-align: middle;
}

.viewmore__container {
    text-align: end;
}

@media screen and (min-width: 769px){
    
    .lecture {
        display: flex;
        justify-content: space-between;
    }

    .lecture::before {
        content: "";
        position: absolute;
        top: 50px;
        left: 100px;
        width: 236px;
        height: 221px;
        background-color: var(--primary-design-yellow);
        z-index: -1;

    }


    .sub__title {
        writing-mode: vertical-rl;
        text-orientation: upright;
        display: block; 
        font-size: 2.4rem;
        font-weight: 700;
        letter-spacing: 2.0px;
        margin-left: 150px;
        margin-top: 50px;

    }

    .sub__title::before {
        width: 2px;
        height: 135px;
        /* position: relative; */
    }

    .lecture__container {
        width: 70%;
        margin-top: 40px;
    }

    .publish__year {
        font-size: 2rem;
        font-weight: 700;
    }

    .lecture__item p {
        font-size: 1.5rem;
        font-weight: 400;
        text-align: left;
    }


    .lecture__btn,
    .research__btn {
        font-size: 1.6rem;
        font-weight: 400;
        padding: 0.5em 1.5em;
        border-radius: 9999px;
        text-decoration: none;
        box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
        transition: background-color 0.3s ease, box-shadow 0.3s ease;
        margin-top: 14px;
    }
}
/* PC 769px */


/* Book */

.book {
    padding: 55px 6%;
    margin-top: 0px;
}


.book__list {
    margin-top: 80px;
}

.book__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.book__info::before {
    background: var(--primary-title-green, #385723F7);
    content: '';
    display: block;
    width: 100%;
    width: 100%;
    height: 0.7px;
    margin: 30px auto;
}

.book__info:first-of-type::before {
  display: none;
}

.book__image {
    width: 135px;
    height: 175px;
}
.book__image--4th {
    width: 135px;
    height: 150px;
}

.book__link {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  background-color: var(--primary-contentbtn-green);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 400;
  padding: 0.5em 1.9em;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  transition: background-color 0.3s ease;
  box-shadow: 0.3s ease;
  margin-top: 14px;
}

.book__link:hover {
  background-color: var(--primary-contentbtn-green); 
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.book__link .external-icon {
  width: 14px; 
  height: 14px;
  display: inline-block;
  vertical-align: middle;
}

.book__link  {
  font-size: 1rem;
  margin-top: 1em;
}

@media screen and (min-width: 769px) {
    
    .book {
        display: flex;
        justify-content: space-between;
    }

    .book::before {
        content: "";
        position: absolute;
        top: 40px;
        left: 100px;
        width: 236px;
        height: 221px;
        background-color: var(--primary-design-yellow);
        z-index: -1;
    }

    .sub__title--book::before {
        width: 2px;
        height: 105px;
    }

    .book__info {
       flex-direction: row;
       justify-content: flex-start;
       text-align: left;
       gap: 50px;
       margin-bottom: 50px;
    }

    .book__list {
        width: 70%;
    }

    .book__image,
    .book__image--4th {
        width: 135px;
        height: auto;
        flex-shrink: 0;
    }

    .booktext__container {
        width: 65%;
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        gap: 30px;
    }

    .book__info::before {
       /* flex-direction: column;  */
       display: none;
    }

    .book__title {
        font-size: 1.8rem;
        font-weight: 400;
        line-height: 200%; /* 40px */
        letter-spacing: 1.4px;
    }

    .book__link {
        font-size: 1.5rem;
        text-size-adjust: none;
        white-space: nowrap;
    }
    
}


/* research */

.research {
    background: #F9F7F3;
    padding: 55px 6%;
    margin-top: 0px;
}


.research__list{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.research__item {
    display: block;
    width: 100%;
    height: auto;
    background: var(--primary-result-background-green, rgba(199, 217, 181, 0.20));
    border-radius: 10px;
    padding: 3%;
}

.research__item p {
    font-size: 1.1rem;
    font-weight: 400;
    text-align: left;
    vertical-align: middle;
}

.remarks {
    font-size: 1rem;
}

@media screen and (min-width: 769px){
    .research {
        display: flex;
        justify-content: space-between;
    }

    .research::before {
        content: "";
        position: absolute;
        top: 30px;
        left: 100px;
        width: 236px;
        height: 221px;
        background-color: var(--primary-design-yellow);
        z-index: -1;
    }

    .sub__title--research::before {
        width: 2px;
        height: 75px;
    }

    .research__container {
        width: 70%;
        margin-top: 40px;
    }

    .publish__year {
        font-size: 2rem;
        font-weight: 700;
    }

    .research__item p {
        font-size: 1.5rem;
        font-weight: 400;
        text-align: left;
    }

    .remarks {
        font-size: 1.6rem;
    }
}

/* ==================
Section Query 
================ */
.section--query {
    padding: 25px 15.7%;
    background-image: url(../images/queryform_background.png);
    background-position: center;
    background-size: cover;
}

.query__txt {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 150%; /* 21px */
    letter-spacing: 0.98px;
}

.query__btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin: 40px 0 60px;
}

.query__btn {
  display: block;
  background-color: var(--primary-querybtn-green);
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
  padding: 1em 2em;
  border-radius: 10px;
  width: 80%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease;
}

.query__btn:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.40);
}

@media screen and (min-width: 769px) {
    
    .section--query {
        padding: 25px 15.7% 70px;
        background-image: url(../images/queryform_pc.png);
        background-position: center;
        background-size: cover;
    }
    
    
    .query__txt {
        font-size: 1.6rem;
        font-weight: 400;
        line-height: 200%; /* 32px */
        letter-spacing: 1.12px;
    }

    .query__btns {
        flex-direction: row;
        justify-content: center;
        margin-top: 6rem;
        gap: 60px;
    }
    .query__btn {
        font-size: 2rem;
        padding: 1.2em 2em;
        border-radius: 8px;
        max-width:360px;
        width: 80%;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        transition: background-color 0.3s ease;
    }
}
/* PC 表示 */