/* --------------------------
variables
-------------------------- */
:root {
    --content-width: 1100px;
    --middle-width: 960px;
    --narrow-width: 835px;
    --wide-width: 1200px;
    --color: #333;
    --line-height: 1.75;
    --font-size: 16px;
    --letter-spacing: 0.05em;
    --font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック ProN W3', 'Hiragino Kaku Gothic ProN', 'Meiryo UI', 'ＭＳ Ｐゴシック', sans-serif;
    --display-font: 'Noto Sans JP', 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック ProN W3', 'Hiragino Kaku Gothic ProN', 'Meiryo UI', 'ＭＳ Ｐゴシック', sans-serif;
    --serif-font: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    --color-introduction-bg: #FBF4DF;
    /* --color-index-bg: repeating-linear-gradient(-30deg, transparent, transparent 2px, rgba(247, 247, 247, 1) 2px, rgba(247, 247, 247, 1) 4px); */
    --color-special-feature-blue: #00aad9;
    --color-special-feature-blue-pale: #ddf0f9;
    --color-special-feature-beige: rgb(244, 235, 203);
    --color-special-feature-beige-dark: #f4d675;
    --color-yellow: #FFF000;
    --color-red: #d7000f;
    --color-red-pale: #f8d8c6;
    --color-blue: #003894;
    --color-blue-pale: #d2d2e9;
    --color-brown: #603c31;
    --color-lecture-beige: #eadbb5;
    --color-lecture-brown: #40220f;
    --color-lecture-brown-light: #93541c;
    --color-scholar-interview-green: #006953;
    --color-scholar-interview-green-light: #9fc7bb;
    --color-needs-seeds-green: #3d8056;
    --color-needs-seeds-green-light: #a8c7b3;
    --color-move-forward-student-orange: #ee781f;
    --color-supportersfav-bg: #EEEEEF;
    --color-about-color-bg: #004fa3;
}

/* --------------------------
    reset
-------------------------- */
* {
    margin: 0;
    padding: 0;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
    padding-inline-start: 0;
    box-sizing: border-box;
}

*:before,
*:after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-size: var(--font-size);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
    color: var(--color);
    font-family: var(--font-family);
    font-weight: 500;
    min-height: 100vh;
}

main {
    display: block;
}

img,
input[type="image"],
video,
embed,
iframe,
marquee,
object,
table {
    display: block;
    max-width: 100%;
    height: unset;
    aspect-ratio: attr(width) / attr(height);
    --webkit-aspect-ratio: attr(width) / attr(height);
}

a {
    color: inherit;
    text-decoration: none;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.5rem;
}

h3 {
    font-size: 1.25rem;
}

h4 {
    font-size: 1rem;
}

h5 {
    font-size: 0.75rem;
}

h6 {
    font-size: 0.75rem;
    font-weight: 500;
}

table {
    border-spacing: 0;
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    /* main {
        padding-top: 50px;
    } */
}


/* --------------------------
    common
-------------------------- */
.content-width {
    width: 100%;
    max-width: var(--content-width);
    margin: 0 auto;
}

.middle-width {
    width: 100%;
    max-width: var(--middle-width);
    margin: 0 auto;
}

.narrow-width {
    width: 100%;
    max-width: var(--narrow-width);
    margin: 0 auto;
}

.wide-width {
    width: 100%;
    max-width: var(--wide-width);
    margin: 0 auto;
}

.clearfix {
    clear: both;
}

.section-padding {
    padding: 4rem 1rem;
}

img.aligncenter {
    margin: 0 auto 4em auto;
}

.figure {
    max-width:100%;
}

.figure.alignright {
    float: right;
    margin: 0 0 2em 2em;
}

.figure.alignleft {
    float: left;
    margin: 0 2em 2em 0;
}

.figure.aligncenter {
    display: flex;
    flex-flow: column;
    align-items: center;
    margin: 0 auto 2em auto;
}

.figure > img {
    width: 100%;
}

.figure.aligncenter > img {
    margin: 0 auto;
}

.figure > figcaption {
    font-size: 0.75em;
    text-align: justify;
    width: 100%;
}

.figure > figcaption.alignright {
    text-align: right;
}

.figure > * + * {
    margin-top: 0.75em;
}

/* .blue-bg {
    background-color: var(--color-special-feature-blue-pale);
}

.beige-bg {
    background-color: var(--color-lecture-beige);
} */
button{
    padding: 1em 4em 1em 2em;
    border: none;
    border-radius: 5em;
    font-weight: bold;
}
button::after{
    content: "";
    background-image: url(../images/032/link_icon.svg);
    position: absolute;
    right: 20px;
    width: 15px;
    height: 15px;
}
.button-box{
        text-align: center;
}
.button-box button{
        position: relative;
}
a:hover{
    opacity: 0.7;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 2rem 1rem;
    }

    .figure.alignright,
    .figure.alignleft {
        float: none;
        margin: 0 auto 1em auto;
    }

    .figure > img {
        margin: 0 auto 1em auto;
    }

    .figure > figcaption {
        text-align: center;
    }
}


/* --------------------------
    header
-------------------------- */
/* header */
header {
    width: 100%;
    background-color: #fff;
    /* left: 0;
    z-index: 254; */
    transition: all 0.3s ease;
    position: relative;
}

header > p {
    position: absolute;
    color: #fff;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    text-align: right;
    /* right: 10em; */
    font-size: 1rem;
    text-align: center;
}


@media (max-width: 768px) {
    header {
        height: unset;
    }

    header > img {
    height: 250px;
    width: 100%;
    /* object-fit: fill; */
    object-fit: cover;
    /* object-position: 50% 50%; */
    }

    header > p {
    text-align: center;
    right: 0;
    font-size: 12px;
    }

}

/* --------------------------
    footer
-------------------------- */
footer {
    color: #fff;
    background-color: #000000;
    font-size: 0.75em;
    text-align: center;
    padding: 2em 0 0;
}

footer > div:first-of-type {
    width: 100%;
    font-size: 12px;
}

 footer > div:first-of-type > div {
    margin-bottom: 1em;
}

#copyright {
    font-size: 10px;
    text-align: center;
    padding: 2em 0.5em 1em;
}

@media (max-width: 768px) {
    footer > div:first-of-type {
        flex-flow: column;
    }

    footer > div:first-of-type > div {
        width: 100%;
        text-align: center;
    }

    footer > div:first-of-type > div + div {
        margin-right: 0;
        margin-top: 2em;
    }

    footer > div:first-of-type > div:last-of-type {
        text-align: center;
    }

    footer > div:first-of-type > div:last-of-type > span {
        justify-content: center;
    }
}

/* --------------------------
    page up
-------------------------- */
#page-up {
    width: 3em;
    height: 3em;
    background-color: #333;
    letter-spacing: 0;
    color: #fff;
    border: 1px solid #fff;
    position: fixed;
    bottom: 1em;
    right: 1em;
    transition: all 0.3s ease;
    z-index: 5;
}

#page-up:hover {
    opacity: 0.7;
    transition: all 0.3s ease;
}

#page-up > a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}


/* --------------------------
    page
-------------------------- */
#page-header {
    display:  flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

#page-header > div {
    display: flex;
    flex-flow: column;
    justify-content: center;
    height: 100%;
}

#page-content p {
    text-align: justify;
    margin-bottom: 1em;
}

#page-content p.alignright {
    text-align: right;
}

#page-content hr {
    border: none;
    border-top: 2px solid #ddd;
    margin: 4em auto;
}

@media (max-width: 768px) {
    #page-header > div {
        padding: 0 1rem;
    }

    #page-header > div > h2 {
        font-size: 1.25em;
    }
}
/* --------------------------
    introduction
-------------------------- */

#introduction{
    background: var(--color-introduction-bg);
}

/* --------------------------
    header-logo
-------------------------- */
#header-logo {
    position: relative;
    }
    
#header-logo > h1 > img {
    width: 100%;
}
    
#header-logo > img {
    position: absolute;
    right: 15px;
    top: 98px;
    width: 18%;
}
@media (max-width: 768px) {
    #header-logo > img {
        right: 13px;
        top: 45px;
    }
    #header-logo > h1 > img {
        width: 100%;
        padding: 0.5em;
    }
}

/* --------------------------
    index
-------------------------- */
#index {
    padding-bottom: 2em;
}

#index > div > div > img {
    width: 100%;
}

#index > div > h2 {
    letter-spacing: 0.1em;
    margin-bottom: 0;
    text-align: center;
}

#index-list {
    list-style-type: none;
    width: 100%;
    padding: 2em 3em;
    font-size: 0.875em;
    margin-bottom: 4em;
}

/* #index-list > li + li {
    margin-top: 1em;
} */
#index-list > li {
    margin-top: 1em;
}

#index-list > li > a {
    transition: all 0.3s ease;
}

#index-list > li > a:hover {
    opacity: 0.7;
    transition: all 0.3s ease;
}

#index-list > li > a > div:first-of-type + * {
    margin-top: 0.5rem;
}

#index-list > li > a > div:first-of-type {
    font-weight: 700;
    border-bottom: 1px solid #333;
    padding-left: 3em;
    padding-bottom: 1em;
    position: relative;
}

#index-list > li > a > div:first-of-type:before {
    content: '';
    display: block;
    width: 0.5em;
    height: 0.5em;
    border-top: 8px solid transparent;
    border-left: 8px solid #333;
    border-right: 8px solid transparent;
    border-bottom: 8px solid transparent;
    position: absolute;
    left: 0.5em;
    top: calc(50% - 15px);
    transition: all 0.3s ease;
}

#index-list > li > a:hover > div:first-of-type:before {
    right: 0;
    transition: all 0.3s ease;
}

#index-list > li > a > div> h3 {
    line-height: 1.3em;
}

#index-list > li > a > div h3 > span {
    font-size: 0.8em;
}

@media (max-width: 768px) {
    #index {
        padding-bottom: 1em;
        padding-left: 1em;
        padding-right: 1em;
    }
    #index > div {
        flex-flow: column;
    }
    #index > div > h2 {
        letter-spacing: 0.1em;
        margin-bottom: 0;
        text-align: center;
        padding: 0 1em 0 1em;
    }

    #index > div > div {
        width: 100%;
    }

    #index > div > div + div {
        margin-bottom: 2em;
    }

    #index > div > div > img {
        max-width: 300px;
    }

    #index > div > div > h2 {
        text-align: center;
    }

    #index-list {
        padding: 1em 1em;
        margin-bottom: 1em;
    }

    #index-list h3 {
        font-size: 1em;
    }
    #index-list > li > a > div:first-of-type {
        font-weight: 700;
        border-bottom: 1px solid #333;
        padding-left: 1.5rem;
        padding-bottom: 1em;
        position: relative;
    }
}

/* --------------------------
pickup / 特集
-------------------------- */
#tokusyu_syukatsu {
    /* background-color: ; */
    padding-bottom: 1em;
    /* padding-left: 3vw; */
    /* padding-right: 3vw; */
    /* padding-top: 1em; */
}
#tokusyu_syukatsu .syukatsu-heading{
    background-color: #F08300;
    color: #fff;
    height: auto;
}
#tokusyu_syukatsu .section-padding {
    padding-bottom: 3em;
}

#tokusyu_syukatsu .syukatsu-heading > .syukatsu-logo{
    position: relative;
}
#tokusyu_syukatsu .syukatsu-heading > .syukatsu-logo img{
    margin: 0 auto;
    text-align: center;
}
#tokusyu_syukatsu .syukatsu-heading > .syukatsu-logo .hanen_logo {
    width: 15vw;
}
#tokusyu_syukatsu .syukatsu-heading > .syukatsu-logo .tokusyu_logo {
    margin-top: -6em;
    margin-bottom: 5em;
    width: 6%;
    position: absolute;
    top: 7.5rem;
    left: 50%;
    transform: translate(-50%, 0);

}

#tokusyu_syukatsu .syukatsu-heading .syukatsu_zensen {
    width: 70%;
    margin: 0 auto;
    text-align: center;
}
#tokusyu_syukatsu .section-padding .flex-box{
    padding-top: 3em;
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    width: 90%;
    margin: 1em auto;
}
#tokusyu_syukatsu .section-padding .flex-box p {
    width: 70%;
    font-size: 1.5rem;
    line-height: 1.5;
}
#tokusyu_syukatsu .section-padding .flex-box .flex-box-none {
    display: block;
    width: 30%;
    padding-left: 0.5em;
    margin-left: 0.5em;
}

#tokusyu_syukatsu .section-padding .flex-box .flex-box-none figcaption {
    font-size: 1.2rem;
    margin-top: 0.5em;
    text-align: center;
}
#tokusyu_syukatsu .section-padding .flex-box .flex-box-none figcaption span {
    font-size: 0.9rem;
}

#tokusyu_syukatsu .syukatsu-content-box .syukatsu-content-box-in h2{
    color: #F08300;
    padding: 1em 0 0 0;
}

#tokusyu_syukatsu .syukatsu-heading .flex-box > figure figcaption{
font-size: 0.85em;
}
#tokusyu_syukatsu .syukatsu-content{
    background-color: rgba(240,131,0,0.1);
    padding-top: 3em;
}
#tokusyu_syukatsu .syukatsu-content .syukatsu-content-box{
    padding-bottom: 5em;
}
#tokusyu_syukatsu .syukatsu-content .syukatsu-content-box .syukatsu-content-box-in p {
    padding-top: 2em;
    padding-bottom: 2em;
    line-height: 1.8;
    font-size: 1.1rem;
    width: 100%;
    padding-right: 1em;
}
#tokusyu_syukatsu .syukatsu-content .syukatsu-content-box .syukatsu-content-box-in .box-in-p {
    padding-bottom: 0;
    margin-bottom: 0;
}
#tokusyu_syukatsu .syukatsu-content .syukatsu-content-box .syukatsu-content-box-in .box-in-flex-p {
    padding-top: 0;
    padding-bottom: 0;
}
#tokusyu_syukatsu .syukatsu-content .flex-box .box-in-flex-div {
    width: 90%;

}
#tokusyu_syukatsu .syukatsu-content .flex-box .box-in-flex-div figure{
    width: 100%;
    height: auto;
    margin: 0;
}
#tokusyu_syukatsu .syukatsu-content .flex-box .box-in-flex-div figcaption {
    text-align: center;
}
#tokusyu_syukatsu .syukatsu-content-box .flex-box {
    /* margin: auto; */
    /* height: 15em; */
    align-content: flex-end;
    width: 100%;
}

#tokusyu_syukatsu .syukatsu-footing .section-padding{
    padding: 1em 1em;
}
#tokusyu_syukatsu div.syukatsu-footing{
    width: 100%;
    background-color: rgba(240,131,0,0.3);
    text-align: center;
}
#tokusyu_syukatsu .syukatsu-footing > .section-padding h3{
    text-align: center;
    margin-top: 0.5em;
}
#tokusyu_syukatsu .syukatsu-footing p{
    text-align: center;
    /* margin-top: 0.5em; */
    /* margin-bottom: 0; */
    /* width: 80%; */
    margin: 0 1em 0 1em;
}
#tokusyu_syukatsu .syukatsu-footing .button-box .gakubusyusyoku{
    background-color: #ffffff;
    color: #000000;
    margin-top: 1em;
    margin-bottom: 1em;
}
@media (max-width: 768px) {
    #tokusyu_syukatsu .syukatsu-heading{
        display: block;
    }
    #tokusyu_syukatsu .syukatsu-heading > .syukatsu-logo .hanen_logo {
        width: 20%;
    }
    #tokusyu_syukatsu .syukatsu-heading > .syukatsu-logo .tokusyu_logo {
        margin-top: -5em;
        margin-bottom: 5em;
        width: 8%;
        top: 5.5rem;
        left: 50%;
        transform: translate(-50%, 0);
    }
    #tokusyu_syukatsu .syukatsu-heading .syukatsu_zensen {
        width: 70%;
        margin: 0 auto;
        text-align: center;
    }
    #tokusyu_syukatsu .syukatsu-heading .section-padding{
        margin-top: 0em;
    }
    #tokusyu_syukatsu .section-padding .flex-box p {
        width: 90%;
        font-size: 1.2rem;
        line-height: 1.5;
    }
    #tokusyu_syukatsu .syukatsu-heading .flex-box > figure {
        width: 46%;
    }
    #tokusyu_syukatsu .section-padding .flex-box .flex-box-none figcaption {
        font-size: 1.2rem;
        margin-top: 0.5em;
        text-align: center;
        line-height: 1.5rem;
    }
    
    #tokusyu_syukatsu .syukatsu-content {
        padding: 1em 0em 0;
    }
    #tokusyu_syukatsu .syukatsu-content-box .syukatsu-content-box-in h2 {
        color: #F08300;
        padding: 1em 0 0 0;
        font-size: 1.2rem;
    }
    #tokusyu_syukatsu .section-padding .flex-box {
        padding-top: 3em;
        display: flex;
        align-items: center;
        width: 100%;
        margin: 1em auto;
        flex-direction: column;
    }
    #tokusyu_syukatsu .syukatsu-content .flex-box > figure{
        display: block;
        width: 60%;
        height: 40%;
        margin: 1em auto 0 auto;
    }
    #tokusyu_syukatsu .syukatsu-content-box > figure{
        width: 50vw;
        margin: 0 auto;
    }
    #tokusyu_syukatsu .syukatsu-content .syukatsu-content-box{
        padding: 1em 0em 6em 0em;
        margin-bottom: 0;
        max-width: 90%;
        margin: auto;
    }
    #tokusyu_syukatsu .syukatsu-content .syukatsu-content-box .flex-box{
        flex-wrap: nowrap;
        flex-direction: column;
        max-width: 100vw;
        height: auto;
        margin: 0 auto;

    }
    #tokusyu_syukatsu .syukatsu-content .flex-box .box-in-flex-div {
        width: 100%;
    }
    #tokusyu_syukatsu .syukatsu-content .syukatsu-content-box .flex-box img{
        display: block;
        width: 100%;
        margin: 0.5em auto;
    }
    #tokusyu_syukatsu .syukatsu-content .syukatsu-content-box .flex-box > .flex-item{
        width: 100%;
    }
    #tokusyu_syukatsu .syukatsu-content .syukatsu-content-box .flex-box > .flex-item > p:last-child{
        margin-bottom: 0;
    }
    #tokusyu_syukatsu .syukatsu-content .syukatsu-content-box .w48{
        width: 100%;
    }
    #tokusyu_syukatsu .syukatsu-content-box p.sotsudai{
        text-align: center;
    }
    #tokusyu_syukatsu .nyugakushiki h2{
        font-size: 1.5rem;
        color: #8DC21F;
        text-align: center;
    }
    #tokusyu_syukatsu .syukatsu-content-box p.nyudai{
        text-align: center;
    }
}
@media (max-width: 450px) {
    #tokusyu_syukatsu .syukatsu-heading > .syukatsu-logo .hanen_logo {
        width: 30%;
    }
    #tokusyu_syukatsu .syukatsu-heading > .syukatsu-logo .tokusyu_logo {
        margin-top: -3.5em;
        margin-bottom: 3em;
        width: 10%;
        top: 4rem;
        left: 50%;
        transform: translate(-50%, 0);
    }
    #tokusyu_syukatsu .section-padding .flex-box p {
        width: 80%;
        font-size: 1.2rem;
        line-height: 1.5;
    }
    #tokusyu_syukatsu .section-padding .flex-box .flex-box-none {
        display: block;
        width: 60%;
        padding-left: 0;
        margin-left: 0;
    }
    #tokusyu_syukatsu .syukatsu-content .syukatsu-content-box .syukatsu-content-box-in p {
        padding-top: 0.5rem;
        padding-bottom: 2em;
        line-height: 1.8;
        font-size: 14px;
        width: 100%;
        padding-right: 0;
    }
    #tokusyu_syukatsu .syukatsu-footing p {
        text-align: left;
        margin: 0 1em 0 1em;
    }
}
/* --------------------------
senpaini_kouhaiga / 先輩に後輩が聞いてみた
-------------------------- */
#senpaini_kouhaiga{
    /* padding-bottom: 2em; */
    padding-left: 3vw;
    padding-right: 3vw;
    position: relative;
    margin-bottom: 10em;
}
#senpaini_kouhaiga .section-padding{
    padding-bottom: 2em;
    border: 3px solid #00A29A;
    border-radius: 10px;
    position: relative;
    top: 7em;

}
#senpaini_kouhaiga .senpai_title {
    position: absolute;
    top: 2em;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 5;
    background-color: #fff;
    width: 50%;
}
#senpaini_kouhaiga .senpai_title img{
    text-align: center;
    margin:  0 auto;
    width: 90%;
}
#senpaini_kouhaiga .senpai_title p{
    text-align: center;
    font-weight: bold;
    margin: 5% auto;
}
#senpaini_kouhaiga .senpai-content-box .senpai-inte-box { 
    position: relative;

}
#senpaini_kouhaiga .senpai-content-box .senpai-inte-box .bg-momo {
    background-color: #FAD9E0;
    width: 45%;
    border-radius: 5px 0 0 5px;
    position: absolute;
    top: 0;
    left: 2.6em;
}
#senpaini_kouhaiga .senpai-content-box .senpai-inte-box .flex-box {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
#senpaini_kouhaiga .senpai-content-box .senpai-inte-box .bg-aomidori {
    background-color: #80D1CD;
    width: 45%;
    border-radius: 0 5px 5px 0;
    position: absolute;
    top: 0;
    right: 2.6em;
}
#senpaini_kouhaiga .senpai-content-box .senpai-inte-box .flex-box-reverse{
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    align-items: center;
}
#senpaini_kouhaiga .senpai-content-box .senpai-inte-box .inter-icon {
    position: absolute;
    top: 45px;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 10;
    width: 55px;
    height: 55px;
}
#senpaini_kouhaiga .senpai-content-box .senpai-inte-box  .senpai,
#senpaini_kouhaiga .senpai-content-box .senpai-inte-box  .kouhai {
    width: 45%;
    line-height: 1.4;
}
#senpaini_kouhaiga .senpai-content-box .senpai-inte-box  .senpai span,
#senpaini_kouhaiga .senpai-content-box .senpai-inte-box  .kouhai span {
    font-size: 0.9rem;

}
#senpaini_kouhaiga .senpai-content-box .senpai-inte-box  .flex-box img,
#senpaini_kouhaiga .senpai-content-box .senpai-inte-box  .flex-box-reverse img {
    width: 40%;
    padding: 0.5em;
}
#senpaini_kouhaiga .senpai_box_in {
    width: 90%;
    margin: 1em auto;
}
#senpaini_kouhaiga .t-center p{
    text-align: center;
    margin-bottom: 10%;
}
#senpaini_kouhaiga .senpai-faq {
    position: relative;
    padding-top: 12em;
}

#senpaini_kouhaiga .senpai-faq .senpai-faq-in {
    padding-top: 1em;
    padding-bottom: 1em;
}
#senpaini_kouhaiga .senpai-faq .senpai-faq-in  {
    margin-bottom: 0;
}
#senpaini_kouhaiga .senpai-faq .senpai-faq-in  dl {
    display: flex;
    flex-wrap: wrap;
}
#senpaini_kouhaiga .senpai-faq .senpai-faq-in dl dt {
    width: 5%;
}
#senpaini_kouhaiga .senpai-faq .senpai-faq-in  dl dd {
    width: 95%;
    padding-left: 1rem;
    text-align: justify;
}

#senpaini_kouhaiga .senpaikouhai-content-question{
    color: #000;
    font-weight: bold;
    margin-bottom: 1em;
    text-indent: 2em;
    position: relative;
    font-size: 1.2em;
    background:linear-gradient(transparent 60%, #FFF000 60%);
    width: fit-content;
}
#senpaini_kouhaiga .senpaikouhai-content-question::before{
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background-color: #000;
    position: absolute;
    top: 15px;
    left: 0;
}

#senpaini_kouhaiga .senpai-faq .senpai-faq-in .aomidori {
    color: #00A29A;
}
#senpaini_kouhaiga .senpai-faq .senpai-faq-in .momoiro {
    color: #EB6270;
}

#senpaini_kouhaiga .section-padding .button-box .kouhen{
    background-color: #00A29A;
    color: #fff
}
#senpaini_kouhaiga .section-padding .button-box .kouhen::after{
    content: "";
    background-image: url(../images/032/link_icon_w.svg);
    position: absolute;
    right: 20px;
    width: 15px;
    height: 15px;
}
@media (max-width: 768px) {
    #senpaini_kouhaiga .senpai_title {
        position: absolute;
        top: -0.9em;
        left: 50%;
        transform: translate(-50%, 0);
        z-index: 5;
        background-color: #fff;
        width: 70%;
    }
    #senpaini_kouhaiga .senpai_title img {
        text-align: center;
        margin: 0 auto;
        width: 90%;
    }
    h3.h2line {
        text-align: left;
    }

    #senpaini_kouhaiga .section-padding {
        padding-bottom: 2em;
        border: 3px solid #00A29A;
        border-radius: 10px;
        position: relative;
        width: 90%;
        top: 3.5em;
    }
    #senpaini_kouhaiga .senpai-content-box {
        height: auto;
        text-align: center;
    }
    #senpaini_kouhaiga .senpai-content-box .senpai-inte-box {
        position: relative;
        height: auto;
        display: flex;
        flex-direction: column;
        align-content: center;
        flex-wrap: wrap;
        align-items: center;
        width: 90%;
        margin: 0 auto;
    }
    #senpaini_kouhaiga .senpai-content-box .senpai-inte-box .bg-momo {
        background-color: #FAD9E0;
        width: 80%;
        border-radius: 5px 5px 0 0px;
        position: static;
        top: 0;
        left: 2.6em;
    }
    #senpaini_kouhaiga .senpai-content-box .senpai-inte-box .senpai, 
    #senpaini_kouhaiga .senpai-content-box .senpai-inte-box .kouhai {
        width: 40%;
        line-height: 1.2;
        font-size: 1.2rem;
    }
    #senpaini_kouhaiga .senpai-content-box .senpai-inte-box .flex-box {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        align-items: center;
    }
    #senpaini_kouhaiga .senpai-content-box .senpai-inte-box .inter-icon {
        position: absolute;
        top: 42%;
        left: 50%;
        transform: translate(-50%, 0);
        z-index: 10;
        width: 65px;
        height: 65px;
    }
    #senpaini_kouhaiga .senpai-content-box .senpai-inte-box .bg-aomidori {
        background-color: #80D1CD;
        width: 80%;
        border-radius: 0 0px 5px 5px;
        position: static;
        top: 0;
        right: 2.6em;
    }
    #senpaini_kouhaiga .senpai-content-box .senpai-inte-box .flex-box-reverse img {
        width: 40%;
        padding: 0.5em;
        margin-left: 2em;
    }
    #senpaini_kouhaiga .senpai-content-box .senpai-inte-box .flex-box-reverse {
        display: flex;
        flex-direction: row-reverse;
        justify-content: center;
        align-items: center;
    }
    #senpaini_kouhaiga .senpai-faq {
        position: relative;
        padding: 2em 1em 0em 1em;
    }
    #senpaini_kouhaiga .senpai-faq .senpai-faq-in dl dt {
        width: 10%;
    }
    #senpaini_kouhaiga .senpai-faq .senpai-faq-in dl dd {
        width: 90%;
        padding-left: 0rem;
        text-align: justify;
    }
}
@media (max-width: 450px) {
    #senpaini_kouhaiga .senpai_title {
        position: absolute;
        top: 1.4em;
        left: 50%;
        transform: translate(-50%, 0);
        z-index: 5;
        background-color: #fff;
        width: 70%;
    }
    h3.h2line {
        text-align: left;
        font-size: 1.1rem;
    }
    #senpaini_kouhaiga .senpai-content-box .senpai-inte-box .bg-momo {
        background-color: #FAD9E0;
        width: 100%;
        border-radius: 5px 5px 0 0px;
        position: static;
    }
    #senpaini_kouhaiga .senpai-content-box .senpai-inte-box .flex-box {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        align-items: center;
        padding-bottom: 1em;
    }
    #senpaini_kouhaiga .senpai-content-box .senpai-inte-box .inter-icon {
        position: absolute;
        top: 46%;
        left: 50%;
        transform: translate(-50%, 0);
        z-index: 10;
        width: 35px;
        height: 35px;
    }
    #senpaini_kouhaiga .senpai-content-box .senpai-inte-box .bg-aomidori {
        background-color: #80D1CD;
        width: 100%;
        border-radius: 0 0px 5px 5px;
        position: static;
    }
    #senpaini_kouhaiga .senpai-content-box .senpai-inte-box .flex-box-reverse {
        display: flex;
        flex-direction: row-reverse;
        justify-content: center;
        align-items: center;
        padding-top: 1em;
    }
    #senpaini_kouhaiga .senpai-content-box .senpai-inte-box .senpai, 
    #senpaini_kouhaiga .senpai-content-box .senpai-inte-box .kouhai {
        width: 60%;
        line-height: 1.2;
        font-size: 0.9rem;
        padding-left: 0.5em;
        padding-top: 0.5em;
    }
    #senpaini_kouhaiga .senpai-content-box .senpai-inte-box .senpai span, 
    #senpaini_kouhaiga .senpai-content-box .senpai-inte-box .kouhai span {
        font-size: 0.7rem;
    }
    #senpaini_kouhaiga .senpaikouhai-content-question::before {
        content: '';
        display: inline-block;
        width: 25px;
        height: 2px;
        background-color: #000;
        position: absolute;
        top: 12px;
        left: 0px;
    }
    #senpaini_kouhaiga .senpaikouhai-content-question {
        color: #000;
        font-weight: bold;
        margin-bottom: 1em;
        text-indent: 2em;
        position: relative;
        font-size: 1em;
        background: linear-gradient(transparent 60%, #FFF000 60%);
        width: fit-content;
    }
    #senpaini_kouhaiga .senpai-faq .senpai-faq-in dl dt {
        width: 15%;
    }
    #senpaini_kouhaiga .senpai-faq .senpai-faq-in dl dd {
        width: 85%;
        padding-left: 1rem;
        text-align: justify;
    }
}

/* --------------------------
seiseiai / 生成AIの利用について
-------------------------- */
#seiseiai{
    background-color: #E6F0F8;
}
#seiseiai .section-padding{
    padding-left: 3vw;
    padding-right: 3vw;
}
#seiseiai .seiseiai_title img{
    margin: 0 auto;
    margin-bottom: 2em;
    padding-left: 3em;
}
#seiseiai .seiseiai_lead{
    margin-bottom: 2em;
    padding-top: 2em;
}
#seiseiai .seiseiai_lead2{
    background-color: #fff;
    border-radius: 10px;
    padding-top: 1em;
    padding-bottom: 1em;
}
#seiseiai .seiseiai_lead .flex-box{
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    
}
#seiseiai .seiseiai_lead .flex-box p{
    color: #005BAC;
    font-weight: bold;
    font-size: 1.2rem;
    text-align-last: left;
    width: 60%;
}
#seiseiai .seiseiai_lead .flex-box .flex-box-none {
    display: block;
    width: 40%;
    padding-left: 0.5em;
    margin-left: 0.5em;
}

#seiseiai .seiseiai_lead  .flex-box .flex-box-none figcaption {
    font-size: 1.1rem;
    margin-top: 0.5em;
    text-align: center;
}
#seiseiai .seiseiai_lead  .flex-box .flex-box-none figcaption span {
    font-size: 0.9rem;
}
#seiseiai .seiseiai_lead2 .lead2-in {
    width: 80%;
    margin: 0 auto;
}
#seiseiai .seiseiai_lead2 .lead2-in h3 {
    color: #005BAC;
}
#seiseiai .seiseiai_lead2 .lead2-in p {
    margin: 0;
}
#seiseiai .section-padding .float-box {
    padding-top: 2em;
    padding-bottom: 3em;
}
#seiseiai .section-padding .float-box  .no-margin {
    margin-bottom: 0;
}

#seiseiai .section-padding .flex-box p {
    width: 100%;
}
#seiseiai .section-padding .flex-box .figure {
    width: 70%;
    padding-left: 1rem;
    margin: 0 auto;
}

#seiseiai .seiseiai-content-question{
    color: #005BAC;
    font-weight: bold;
    margin-bottom: 1em;
    font-size: 1.3em;
}

#seiseiai .sanbanme {
    position: relative;
    background-color: #fff;
    border-radius: 5px;
}
#seiseiai .seiseiai-content-box  .ribbon span.sotowaku {
    border-top:  5px solid #E5EFF7;
    border-right: 5px solid #E5EFF7;
    border-bottom: 5px solid #E5EFF7;
    height: 60px;
    display: inline-block;
    border-radius: 0 10px 10px 0;
    padding-left: 40px;
}
#seiseiai .seiseiai-content-box  .ribbon {
    position: relative;
    display: inline-block;
    height: 60px;
    line-height: 60px;
    padding: 0 0px 0 0px;
    background-color: #80ADD6;
    color: #fff;
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    top: 1em;
    left: -0.8em;
    border-radius: 0 10px 10px 0;
}
  
#seiseiai .seiseiai-content-box  .ribbon:before {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 0px;
    height: 0px;
    border: none;
    border-top: 10px solid transparent;
    border-right: 20px solid #337CBD;
    content: '';
}
#seiseiai .seiseiai-content-box  .ribbon span.small {
    font-size: 0.9rem;
}

#seiseiai .seiseiai-content-ans1,
#seiseiai .seiseiai-content-ans2,
#seiseiai .seiseiai-content-ans3,
#seiseiai .seiseiai-content-ans4,
#seiseiai .seiseiai-content-ans5,
#seiseiai .seiseiai-content-ans6 {
    color: #005BAC;
    font-weight: bold;
    margin-bottom: 0em;
    font-size: 1.3em;
}
#seiseiai .seiseiai-content-ans1::before,
#seiseiai .seiseiai-content-ans2::before,
#seiseiai .seiseiai-content-ans3::before,
#seiseiai .seiseiai-content-ans4::before,
#seiseiai .seiseiai-content-ans5::before,
#seiseiai .seiseiai-content-ans6::before {
    position: absolute;
    content: "";
    top: 23px;
    left: -10px;
    width: 20px;
    height: 20px;
}
#seiseiai .seiseiai-content-ans1::before{background-image: url(../images/032/seiseiai_riyo_01.svg);}
#seiseiai .seiseiai-content-ans2::before{background-image: url(../images/032/seiseiai_riyo_02.svg);}
#seiseiai .seiseiai-content-ans3::before{background-image: url(../images/032/seiseiai_riyo_03.svg);}
#seiseiai .seiseiai-content-ans4::before{background-image: url(../images/032/seiseiai_riyo_04.svg);}
#seiseiai .seiseiai-content-ans5::before{background-image: url(../images/032/seiseiai_riyo_05.svg);}
#seiseiai .seiseiai-content-ans6::before{background-image: url(../images/032/seiseiai_riyo_06.svg);}

#seiseiai .sanbanme .seiseiai-content-answer {
    padding: 1em;
    width: 90%;
    margin: 0 auto;
    position: relative;
}



@media (max-width: 768px) {
    #seiseiai .seiseiai_title{
        padding-left: 0;
        margin: 0 auto;
    }
    #seiseiai .seiseiai_title img{
        margin: 0 auto;
        /* text-align: center; */
        margin-bottom: 2em;
        padding-left: 0;
    }
    #seiseiai .seiseiai_lead{
        margin-bottom: 2em;
        padding: 1em;
    }
    #seiseiai .seiseiai_lead.flex-box,
    #seiseiai .seiseiai-letter .flex-box {
        flex-direction: column;
    }
    #seiseiai .seiseiai_lead > p{
        width: 100%;
    }
    #seiseiai .seiseiai_lead > figure{
        width: 60%;
        margin: 0 auto;
    }
    #seiseiai .seiseiai_lead2 {
        background-color: #fff;
        border-radius: 10px;
        padding-top: 1em;
        padding-bottom: 1em;
        margin-left: 1em;
        margin-right: 1em;
    }
    #seiseiai .seiseiai_lead2 .lead2-in {
        width: 85%;
        margin: 0 auto;
    }
    #seiseiai .section-padding .float-box{
        float: left;
        width: 100%;
        padding: 2em 1em;
        /* margin-right: 0.1em; */

    }
    #seiseiai .section-padding .flex-box{
        width: 100%;
        text-align: center;
        padding:  0;
        display: flex;
        flex-direction: column;
    }
    #seiseiai .section-padding .flex-box .figure {
        width: 70%;
        padding-left: 0em;
        margin: 2em auto;
    }
    #seiseiai .seiseiai-content-box .ribbon {
        position: relative;
        display: inline-block;
        height: 85px;
        line-height: 60px;
        padding: 0 0px 0 0px;
        background-color: #80ADD6;
        color: #fff;
        font-size: 26px;
        font-weight: bold;
        text-align: center;
        top: 1em;
        left: -1.3em;
        border-radius: 0 10px 10px 0;
    }
    
    #seiseiai .seiseiai-content-box .ribbon span.sotowaku{
        border-top: 5px solid #E5EFF7;
        border-right: 5px solid #E5EFF7;
        border-bottom: 5px solid #E5EFF7;
        height: 85px;
        display: inline-block;
        border-radius: 0 10px 10px 0;
        padding-left: 40px;
        padding-right: 1em;
    }
    #seiseiai .seiseiai-content-box .ribbon span.small {
        font-size: 0.9rem;
        display: inline-block;
        position: relative;
        top: -2.5em;
        right: -10em;
    }
    #seiseiai .seiseiai-content-ans1::before,
    #seiseiai .seiseiai-content-ans2::before,
    #seiseiai .seiseiai-content-ans3::before,
    #seiseiai .seiseiai-content-ans4::before,
    #seiseiai .seiseiai-content-ans5::before,
    #seiseiai .seiseiai-content-ans6::before {
        position: absolute;
        content: "";
        top: 20px;
        left: -10px;
        width: 20px;
        height: 20px;
    }
    #seiseiai .section-padding .sanbanme{
        padding: 1em;
        margin: 1em;
    }
    #seiseiai .seiseiai-img-box >img{
        max-width: unset;
        padding: 1em;
        overflow-x: scroll;
      }

    #seiseiai .seiseiai-footing > .section-padding h3{
        text-align: center;
        margin-top: 0.5em;
        margin-left: 1em;
        margin-right: 1em;
    }
    #seiseiai .seiseiai-footing p{
        text-align: center;
        margin: 0 1em 0 1em;
    }
    #seiseiai .seiseiai-footing .button-box .hokenkanri{
        background-color: #ffffff;
        color: #000000;
        margin: 1em
    }
    #seiseiai h3 {
        line-height: 1.5rem;
    }
}
@media (max-width: 450px) {
    #seiseiai .seiseiai_lead .flex-box .flex-box-none {
        display: block;
        width: 65%;
        padding-left: 0.5em;
        margin-left: 0.5em;
    }
    #seiseiai .section-padding .sanbanme {
        padding: 1em;
        margin: 1em;
    }
    #seiseiai .seiseiai-content-question {
        color: #005BAC;
        font-weight: bold;
        margin-bottom: 1em;
        font-size: 1.2rem;
    }
    #seiseiai .seiseiai-content-box .ribbon {
        position: relative;
        display: inline-block;
        height: 120px;
        line-height: 35px;
        width: 315px;
        padding: 0 0px 0 0px;
        background-color: #80ADD6;
        color: #fff;
        font-size: 26px;
        font-weight: bold;
        text-align: center;
        top: 1em;
        left: -1.3em;
        border-radius: 0 10px 10px 0;
    }
    #seiseiai .seiseiai-content-box .ribbon span.sotowaku {
        height: 120px;
        display: inline-block;
        border-radius: 0 10px 10px 0;
        padding-left: 40px;
        padding-right: 1em;
        padding-top: 0.5em;
    }
    #seiseiai .seiseiai-content-box .ribbon span.small {
        font-size: 0.9rem;
        display: inline-block;
        position: relative;
        top: -1em;
        right: -2.5em;
    }
    #seiseiai .seiseiai-content-ans2,
    #seiseiai .seiseiai-content-ans6 {
        line-height: 1.5rem;
    }
    #seiseiai .seiseiai-content-ans2::before,
    #seiseiai .seiseiai-content-ans6::before {
        position: absolute;
        content: "";
        top: 16px;
        left: -10px;
        width: 20px;
        height: 20px;
    }
}
/* --------------------------
labratory / 研究室から
-------------------------- */
#labratory{
    background-color: #FCEDE4;
    overflow: hidden;
}
#labratory .section-padding,#labratory .labratory-student-voice {
    /* padding-left: 3vw; */
    /* padding-right: 3vw; */
}

#labratory .labratory-title{
    text-align: center;
    max-width: 90%;
    margin: 0 auto 2em;
}
#labratory .labratory-heading{
    padding: 1em;
    margin-bottom: 2em;
}
#labratory .labratory-heading img{
    margin: 0 auto;
    width: 80%;
}
#labratory .labratory-heading >h2{
    margin: 0 auto;
    text-align: center;
}
#labratory .labratory-lead{
    padding: 1em;
    margin-bottom: 2em;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 10px;
    text-align: left;
}
#labratory .section-padding p.no-margin { 
    margin-bottom: 0;
}
#labratory .section-padding .flex-box p {
    width: 90%;
}
#labratory .section-padding .laboimg .labolef {
    width: 60%;
    padding-left: 1em;
}
#labratory .section-padding .laboimg .labolef > figcaption{
    text-align: center;
    margin-left: 0em;
    font-size: 0.9rem;
}
#labratory .section-padding .laboimg .labolef > img{
    margin: 0;
}

#labratory .labratory-student-voice{
    background-color: #fff;
    position: relative;
    /* padding: 2em 3vw 2em 3vw; */
    margin-bottom: 3em;
    width: 65%;
    padding-left: 0;
    padding-right: 0;
}
#labratory .labratory-student-voice >h3{
    background-color: #E8515E;
    display: inline-block;
    /* right: calc(100% / 2 - 110px); */
    left: 35px;
    position: absolute;
    top: -35px;
    padding: 0 0.7em;
    color: #fff;
    border-radius: 10px 10px 0 0;
}
#labratory .labratory-student-voice .flex-box {
    display: flex;
    align-items: center;
}
#labratory .labratory-student-voice .flex-box div > h3{
    margin: 0 0 0.5em ;
    text-align: center;
}
#labratory .labratory-student-voice .flex-box div > p {
    width: 100%;
    padding: 2.5em;
}
#labratory .labratory-student-voice > div.flex-box >figure{
    text-align: center;
    margin: 1em 0 0 1em;
    width: 30%;
}
#labratory .labratory-student-voice > div.flex-box >figure img {
    width: 70%;
}
#labratory .labratory-student-voice > div.flex-box >figure >figcaption{
    font-size: 0.85em;
    text-align: center;
    width: 70%;
}
#labratory .labratory-student-voice > div.flex-box >div{
    width: 70%;
}
#labratory .labratory-student-voice >hr{
    border-top: 1px solid #E8515E;
    margin: 2em auto;
}
#labratory .laboratory-footing .section-padding{
    padding: 1em 0;
}
#labratory .laboratory-footing{
    /* width: 100%; */
    background-color: #E8515E;
    text-align: center;
    color: #fff;
    margin: 0 auto;
    padding: 1em;
}
#labratory .laboratory-footing p{
    text-align: center;
    margin-bottom: 0.5em;
}
#labratory .laboratory-footing .button-box .kenkyu{
    background-color: #ffffff;
    color: #000000;
    margin-top: 1em;
    margin-bottom: 1em;
}
@media (max-width: 768px) {
    #labratory .section-padding, #labratory .labratory-student-voice {
        /* padding-left: 3vw; */
        /* padding-right: 3vw; */
        padding: 2rem 0rem;
        width: 90%;
        margin: 1em auto;
    }
    #labratory .labratory-lead{
        padding: 1em;
        margin-bottom: 2em;
        font-size: 1.2em;
        font-weight: bold;
        border-radius: 10px;
        text-align: left;
    }
    #labratory .section-padding .laboimg{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    #labratory .labratory-heading img {
        margin: 0 auto;
        width: 90%;
    }
    #labratory .section-padding p{
        /* width: 100%; */
        padding: 1em 1em 0 1em;
        margin: 0 auto;
    }
    #labratory .section-padding .flex-box p {
        width: 100%;
        padding-top: 0;
    }
    #labratory .section-padding .laboimg .labolef > img, #labratory .section-padding .laboimg .laborig > img{
        display: block;
        width: 100%;
        position: relative;
    }
    #labratory .section-padding .laboimg .labolef, #labratory .section-padding .laboimg .laborig{
        display: block;
        width: 100%;
    }
    #labratory .section-padding .laboimg .labolef {
        padding-left: 0;
    }
    #labratory .section-padding .laboimg .labolef > img{
        margin-left: 0;
        padding: 1em 1em 0 1em;
    }
    #labratory .section-padding .laboimg .labolef > figcaption{
        text-align: center;
        width: 100%;
        margin-left: 0;
        margin-top: 0;
        margin-bottom: 0.5em;
        padding: 0 1em 0 1em;
    }
    #labratory .labratory-student-voice {
        width: 89vw;
        padding: 2em;
        /* margin: 0.5em 2em 2em 2em; */
    }
    #labratory .labratory-student-voice >.flex-box {
       flex-direction: column;
       /* padding: 2em; */
    }
    #labratory .labratory-student-voice .flex-box div > h3{
        margin: 0 0 0.5em ;
        text-align: left;
    }
    #labratory .labratory-student-voice > div.flex-box >figure {
        width: 80%;
        margin: 0 auto;
        margin-bottom: 1em;
    }
    #labratory .labratory-student-voice > div.flex-box > figure > figcaption{
        text-align: center;
        width: 100%;
    }
    #labratory .labratory-student-voice > div.flex-box >figure >img {
        width: 30vw;
        margin: 0 auto;
    }
    #labratory .labratory-student-voice > div.flex-box >div {
        width: 100%;
        /* padding: 2em 2em 1.5em 2em;  */
    }
    #labratory .labratory-heading  >div:first-of-type {
        margin-bottom: 1em;
    }
    #labratory .laboratory-footing .section-padding h3{
        margin-left: 1em;
        margin-right: 1em;
        text-align: center;
    }
    #labratory .laboratory-footing p{
        text-align: center;
        margin-bottom: 0.5em;
        margin-left: 1em;
        margin-right: 1em;
    }
    #labratory .laboratory-footing .button-box .kenkyu{
        background-color: #ffffff;
        color: #000000;
        margin: 1em
    }
}
@media (max-width: 450px) {
    #labratory .labratory-heading {
        padding: 1em;
        margin-bottom: 1em;
    }
    #labratory .labratory-lead {
        padding: 0em 1em;
        margin-bottom: 1em;
        font-size: 1.2em;
        font-weight: bold;
        border-radius: 10px;
        text-align: left;
    }
    #labratory .labratory-title {
        text-align: center;
        max-width: 95%;
        margin: 0 auto 2em;
    }
    #labratory .labratory-heading img {
        margin: 0 auto;
        width: 100%;
    }
    #labratory .labratory-student-voice .flex-box div > p {
        width: 100%;
        padding: 0.5rem;
    }
    #labratory .laboratory-footing p {
        text-align: left;
        margin: 0 auto;
    }
    #labratory .labratory-student-voice >h3 {
        background-color: #E8515E;
        display: inline-block;
        left: 50px;
        position: absolute;
        top: -35px;
        padding: 0 0.7em;
        color: #fff;
        border-radius: 10px 10px 0 0;
    }
}

/* --------------------------
ninetopics / 9トピックス
-------------------------- */
#ninetopics{
    background-color: #fff;
    /* text-align: center; */
}
#ninetopics .narrow-width{
    padding-left: 3vw;
    padding-right: 3vw;
}
#ninetopics .ninetopics-title{
    max-width: 100%;
    margin: 0 auto;
}
#ninetopics .ninetopics-title > img{
    max-width: 80%;
    margin: 0 auto;
}

#ninetopics .ninetopics-title > p{
    background-color: var(--color-yellow);
    text-align: left;
    padding: 1em;
    margin: 2em auto 0;
    font-weight: bold;
    font-size: 1.1rem;
    width: 60%;
    position: relative;
}
#ninetopics .ninetopics-title > p::before{
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-bottom: 40px solid var(--color-yellow);
    border-top: 0;
    left: 150px;
    top: -20px;
}

#ninetopics .ninetopics-subtitle{
    background-color: var(--color-red);
    position: relative;
    color: #fff;
    font-weight: bold;
    border-radius: 20px;
    width: 100%;
    padding: 5px;
    margin-top: 0;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 1.5em;
}

#ninetopics .ninetopics-subtitle > h4{
    padding-left: 70px;
    font-size: 1.2em;
}
/* #ninetopics .igaku .flex-box > .sp-none{
    display: none;
} */
#ninetopics .content-width .flex-box{
    justify-content: space-evenly;
}

#ninetopics .hobun{ background-color: #C16C75;}
#ninetopics .kyoiku{ background-color: #F29600;}
#ninetopics .rigaku{ background-color: #9F5DA1;}
#ninetopics .igaku{ background-color: #ED8599;}
#ninetopics .sigaku{ background-color: #00A199;}
#ninetopics .kogaku{ background-color: #63569D;}
#ninetopics .nogaku{ background-color: #8DC21F;}
#ninetopics .suisangaku{ background-color: #036EB7;}
#ninetopics .kyodozyuigaku{ background-color: #946134;}

#ninetopics .hobun::before,
#ninetopics .kyoiku::before,
#ninetopics .rigaku::before,
#ninetopics .igaku::before,
#ninetopics .sigaku::before,
#ninetopics .kogaku::before,
#ninetopics .nogaku::before,
#ninetopics .suisangaku::before,
#ninetopics .kyodozyuigaku::before{
    position: absolute;
    content: "";
    top: -10px;
    left: -2px;
    width: 60px;
    height: 60px;
}
#ninetopics .hobun::before{background-image: url(../images/032/ninetopics_hobun.svg);}
#ninetopics .kyoiku::before{background-image: url(../images/032/ninetopics_kyoiku.svg);}
#ninetopics .rigaku::before{background-image: url(../images/032/ninetopics_rigaku.svg);}
#ninetopics .igaku::before{background-image: url(../images/032/ninetopics_igaku.svg);}
#ninetopics .sigaku::before{background-image: url(../images/032/ninetopics_sigaku.svg);}
#ninetopics .kogaku::before{background-image: url(../images/032/ninetopics_kogaku.svg);}
#ninetopics .nogaku::before{background-image: url(../images/032/ninetopics_nogaku.svg);}
#ninetopics .suisangaku::before{background-image: url(../images/032/ninetopics_suisangaku.svg);}
#ninetopics .kyodozyuigaku::before{background-image: url(../images/032/ninetopics_kyodozyuigaku.svg);}

#ninetopics .ninetopics-box{
margin-bottom: 3em;
}
#ninetopics .ninetopics-box > div{
width: 100%;
/* text-align: center; */
margin: 0 auto;
padding: auto;
}
#ninetopics .ninetopics-box > div figure > img{
    width: 90%;
    height: auto;
    object-fit: cover;
    margin: 0 auto;
}
#ninetopics .ninetopics-box > div >p:nth-of-type(2){
    line-height: 1.5em;
    font-size: 1.1em;
    font-weight: bold;
    text-align: left;
    /* margin-left: 2.4vw; */
    width: 90%;
    margin: 0.5rem auto;
}
#ninetopics .ninetopics-box > div >p:nth-of-type(3){
    line-height: 1.5rem;
    /* text-align: left; */
    /* text-align-last: left; */
    /* margin-left: 2.4vw; */
    width: 90%;
    margin: 0 auto;
    
}
#ninetopics .ninetopics-box .topictitle{
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 5px;
    line-height: 1.5rem;
    margin-top: 10px;
    text-align: left;
    /* margin-left: 2.4vw; */
    width: 90%;
    margin: 1rem auto 0 auto;
}
@media (max-width: 768px) {
    #ninetopics .ninetopics-title{
        width: 100%;
        /* margin: 0 auto; */
        padding: 1em;
    }
    #ninetopics .ninetopics-title > p {
        background-color: var(--color-yellow);
        text-align: left;
        padding: 1em;
        margin: 2em auto 0;
        font-weight: bold;
        font-size: 1.1rem;
        width: 66%;
        position: relative;
    }
    #ninetopics .ninetopics-subtitle {
        width: 90%;
        margin: 0 auto;
        margin-bottom: 1.5em;
    }
    #ninetopics .ninetopics-box{
        width: 90%;
    }
    #ninetopics .ninetopics-box > div figure > img{
        width: 100%;
        margin: 0 auto;
    }
    #ninetopics .ninetopics-box > div >p:nth-of-type(2){
        line-height: 1.5em;
        font-size: 1.1em;
        font-weight: bold;
        text-align: left;
        margin-left: 0;
    }
    #ninetopics .ninetopics-box > div >p:nth-of-type(3){
        line-height: 1.5em;
        text-align: left;
        /* text-align-last: left; */
        margin-left: 0;
        width: 100%;
    }
    #ninetopics .ninetopics-box .topictitle{
        font-size: 1.3em;
        font-weight: bold;
        margin-bottom: 5px;
        line-height: 1em;
        margin-top: 10px;
        text-align: left;
        margin-left: 0;
    }
    #ninetopics .ninetopics-box.flex-box{
        flex-direction: column;
    }
    #ninetopics .ninetopics-box > div{
        width: 100%;
        margin-bottom: 2em;
    }
    #ninetopics .ninetopics-box > div p{
        width: unset;
        text-align: initial;
        margin-left: 3em;
    }
    #ninetopics .kakubu-box{ padding-top: 2em;}
    #ninetopics .hobun-box{ background-color: #F3E2E3;}
    #ninetopics .kyoiku-box{ background-color: #FCEACC;}
    #ninetopics .rigaku-box{ background-color: #ECDFEC;}
    #ninetopics .igaku-box{ background-color: #FBE7EB;}
    #ninetopics .sigaku-box{ background-color: #CCECEB;}
    #ninetopics .kogaku-box{ background-color: #DFDDEB;}
    #ninetopics .nogaku-box{ background-color: #E8F3D2;}
    #ninetopics .suisangaku-box{ background-color: #CDE2F1;}
    #ninetopics .kyodozyuigaku-box{ background-color: #EADFD6;}
    #ninetopics .ninetopics-box {
        margin-bottom: 0;
    }
}

@media (max-width: 450px) {
    #ninetopics .ninetopics-title > img {
        max-width: 95%;
        margin: 0 auto;
    }
    #ninetopics .ninetopics-title > p {
        background-color: var(--color-yellow);
        text-align: left;
        padding: 1em;
        margin: 2em auto 0;
        font-weight: bold;
        font-size: 1rem;
        width: 100%;
        position: relative;
    }
}
/* --------------------------
news / ニュース
-------------------------- */
#news{
    background-color: #fff;
    padding-left: 3vw;
    padding-right: 3vw;
}
#news .news-title > img{
    margin: 0 auto;
    width: 80%;
}
#news .news-box{
    margin-bottom: 4em;
}
#news .news-box .news-subtitle{
    margin-bottom: 1em;
    padding: 0.8em;
    font-size: 1.25em;
    font-weight: bold;
    display: inline-block;
    border-left: 10px solid #FFF000;
}

#news .news-box p {
    margin-bottom: 0;
}
#news .news-box .flex-box {
 align-items: start;
}
#news .news-box .flex-box > p{
    width: 50%;
    margin-right: 2em;
}
#news .news-box .flex-box .w48 {
    width: 50%;
}
#news .news-box .flex-box .w48 > img{
    width: 100%;    
}
#news .news-box .flex-box .w48 > figcaption{
    font-size: smaller;
    text-align: left;    
}
#news .news-box .padding-r >figure{
    padding-right:1em ;
    width: 100%;
    padding-top: 0.5em;
}
#news .news-box .padding-r >figure:last-child{
    padding-right:0 ;
    
}
#news .news-box figure figcaption{
    text-align: center;
    line-height: 1.3em;
    margin-top: 0.5em;
}
#news .news-footer{
    width: 100%;
    text-align: center;
    margin-bottom: 4em;
}
#news .news-footer .news-footer-title{
    margin: 0 auto;
    display: inline-block;
    border-radius: 10px 10px 0 0;
    background-color: #000000;
    color: #fff;
    padding: 0.5em 0.8em;
    font-size: 1.25em;
    font-weight: bold;
}
#news .news-footer > hr{
    border-bottom: 1.5px solid;
    border-top: none;
    margin: 0 auto;
    width: 90%;
}
#news .news-footer > .news-sns{
    justify-content: center;
}
#news .news-footer > .news-sns > a{
    margin: 1.5em 1em;
}
@media (max-width: 768px) {
    #news .news-title > img{
        margin: 0 auto;
        width: 90%;
    }
    #news .news-box{
        padding: 0 1rem;
    }
    #news .news-box > .flex-box {
        flex-direction: column;
    }
    #news .news-box .flex-box > p{
        width: 100%;
        margin-right: 2em;
    }
    #news .news-box > .flex-box >.w48 {
        width: 100%;
        margin-bottom: 1rem;
        margin-top: 1rem;
    }
    #news .news-box .flex-box .w48 > img{
        display: block;
        margin: 0;
        width: 100%;
    }
    #news .news-box .flex-box.padding-r {
    flex-direction: column;
    }
    #news .news-box .padding-r >figure{
        padding-right:0 ;
        padding-left: 0.5em ;
    }
    #news .news-box .padding-r >figure:first-child{
        padding-right: 0;
        padding-left: 0;
    }
    #news .news-box .padding-r >figure:last-child{
        width: 100% ;
        padding-left: 0;
    }
    #news .news-box .flex-box .w48 > figcaption{
        font-size: smaller;
        text-align: left;    
        margin-bottom: 1em;
        margin-left: 0;
    }
    #news .news-footer .news-footer-title{
        margin: 0 auto;
        display: inline-block;
        border-radius: 10px 10px 10px 10px;
        background-color: #000000;
        color: #fff;
        padding: 0.5em 0.8em;
        font-size: 1.25em;
        font-weight: bold;
    }
    #news .news-footer{
        width: 100%;
        text-align: center;
        margin-bottom: 4em;
        padding: 1em;
    }
    #news .news-footer > hr{
        display: none;
    }
}

@media (max-width: 450px) {
    #news {
        background-color: #fff;
        padding-left: 0vw;
        padding-right: 0vw;
    }
    #news .news-title > img{
        margin: 0 auto;
        width: 100%;
    }
    #news .news-box .news-subtitle {
        margin-bottom: 1em;
        padding: 0.8em;
        font-size: 1.25em;
        font-weight: bold;
        display: inline-block;
        border-left: 10px solid #FFF000;
        line-height: 1.5rem;
    }
    #news .news-box .flex-box > p {
        width: 100%;
        margin-right: 0em;
    }
    #news .news-footer .news-footer-title {
        margin: 0 auto;
        display: inline-block;
        border-radius: 10px 10px 10px 10px;
        background-color: #000000;
        color: #fff;
        padding: 0.5em 0.8em;
        font-size: 1rem;
        line-height: 1.5rem;
        font-weight: bold;
    }
}
/* --------------------------
club-circle / サークル紹介
-------------------------- */
#club-circle{
    background-color: #EAF5F5;
    padding-left: 3vw;
    padding-right: 3vw;
    padding-bottom: 1em;
    max-width: 100%;
}
#club-circle .section-padding{
    padding-top: 3em;
    padding-bottom: 0.5em;
    padding-left: 0.5em;
    padding-right: 0.5em;
}
#club-circle .club-circle-title > img{
    width: 80%;
    margin: 0 auto 2.5em auto;
}
#club-circle .club-circle-box{
    margin-top: 1em;
    margin-bottom: 2em;
}
#club-circle .club-circle-box .rikuzyou .flex-box,
#club-circle .club-circle-box .sadou .flex-box,
#club-circle .club-circle-box .yagaicounse .flex-box{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-left: 3em;
    align-items: flex-start;
}

#club-circle .club-circle-box .rikuzyou,
#club-circle .club-circle-box .sadou,
#club-circle .club-circle-box .yagaicounse{
position: relative;
}

#club-circle .club-circle-box .rikuzyou p,
#club-circle .club-circle-box .sadou p.sadounm,
#club-circle .club-circle-box .yagaicounse p.yagaicounsenm{
position: relative;
left: 2.5em; 
margin-top: 0 auto;
font-weight: bold;
}

/* 青緑◯代表のの部分ずらし */
#club-circle .club-circle-box .rikuzyou p.rikuzyounm:last-child, 
#club-circle .club-circle-box .sadou p.sadounm:last-child,
#club-circle .club-circle-box .yagaicounse p.yagaicounsenm:last-child {
    margin-left: 2em;
}
#club-circle .club-circle-box .yagaicounse p.yagaicounsenm span {
    font-size: 1rem;
}
#club-circle .club-circle-box figure{
    width: 60%;
    margin-top: 0em;
    padding-left: 1em;
}
#club-circle .club-circle-box .flex-box p.stmi {
    width: 80%;
}

/* アイコン */
#club-circle .rikuzyou::before,
#club-circle .sadou::before,
#club-circle .yagaicounse::before{
position: absolute;
content: "";
top: 8px;
left: 0;
width: 55px;
height: 55px;
}
#club-circle .rikuzyou::before{background-image: url(../images/032/club_icon_rikuzyou.svg);}
#club-circle .sadou::before{background-image: url(../images/032/club_icon_sadou.svg);}
#club-circle .yagaicounse::before{background-image: url(../images/032/club_icon_yagaicounse.svg);}
#club-circle .club-circle-box > div >p:first-child{
    display: inline-block;
    color: #000;
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 0;
    padding: 0 0.3em;
    width: 100%;
}

/* 青緑◯ */
#club-circle .rikuzyou .club_aomidori::before,
#club-circle .sadou .club_aomidori::before,
#club-circle .yagaicounse .club_aomidori::before{
position: absolute;
content: "";
top: 6px;
left: -20px;
width: 16px;
height: 16px;
}
#club-circle .rikuzyou .club_aomidori::before{background-image: url(../images/032/club_aomidori.svg);}
#club-circle .sadou .club_aomidori::before{background-image: url(../images/032/club_aomidori.svg);}
#club-circle .yagaicounse .club_aomidori::before{background-image: url(../images/032/club_aomidori.svg);}

#club-circle .club-circle-box > .sadou >p:nth-of-type(2),#club-circle .club-circle-box > .yagaicounse >p:nth-of-type(2){
    font-size: 1em;
    font-weight: bold;
    margin-bottom: 0;
    margin-left: 1.4em;
    padding: 0 0.3em;
}



@media (max-width: 768px) {
    #club-circle .section-padding{
        padding-top: 0;
        padding-bottom: 0;
        padding-left: 0;
        padding-right: 0;
    }
    #club-circle .club-circle-box{
        margin-bottom: 0;
        margin: 1em;
    }
    #club-circle .club-circle-title{
        margin: 0 auto 1em;
        padding:2em 1em 1em 1em;
    }
    #club-circle .club-circle-title > img {
        width: 80%;
        margin: 0 auto 2.5em auto;
    }
    #club-circle .club-circle-box.flex-box {
        flex-direction: column-reverse;
        padding: 2em 0;
    }
    #club-circle .juzen, #club-circle .club-circle-box > .sadou, #club-circle .club-circle-box > .yagaicounse{
        width: 100%;
        margin: 0 auto;
        overflow: hidden;
        padding: 1em;
    }

    #club-circle .club-circle-box .rikuzyou {
        position: relative;
        flex-direction: column;
        width: 100%;
    }
    #club-circle .club-circle-box .rikuzyou > figure{
        display: block;
        width: 100%;
        margin-bottom: 1em;
    } 
    #club-circle .club-circle-box .sadou p.sadounm,#club-circle .club-circle-box .yagaicounse p.fanm{
        position: relative;
        left: 4em; 
        margin-top: 0 auto;
        }
    #club-circle .club-circle-box > .judoubu >p:nth-of-type(2){
        font-size: 1em;
        font-weight: bold;
        text-align: left;
        margin-top: 0;
        margin-bottom: 0;
        margin-right: 0;
        margin-left: 4em;
        /* margin-left: 0; */
        padding: 0 0.4em;
        padding: 0;
        width: auto;
    }
    #club-circle .club-circle-box > .sadou >p:nth-of-type(2){
        font-size: 1em;
        font-weight: bold;
        text-align: left;
        margin-top: 0;
        margin-bottom: 0;
        margin-right: 0;
        margin-left: 2.4em;
        /* margin-left: 0; */
        padding: 0 0.4em;
        padding: 0;
        width: auto;
    }
    #club-circle .club-circle-box > .yagaicounse >p:nth-of-type(2){
        font-size: 1em;
        font-weight: bold;
        margin-top: 0;
        margin-bottom: 0;
        margin-left: 2em;
        /* margin-left: 0; */
        padding: 0 0.4em;
        width: auto;
        text-align: left;
    }

    #club-circle .club-circle-box.flex-box:last-child {
        border-bottom: none;
    }
    #club-circle .club-circle-box > figure {
        display: block;
        width: 100%;
        padding: 0 1em 0 1em;
    }
    #club-circle .club-circle-box .rikuzyou .judoulef > img,#club-circle .club-circle-box .rikuzyou .judourig > img{
        display: block;
        margin: 0;
        width: 100%;
    }
    #club-circle .club-circle-box > figure > img{
        display: block;
        margin: 0 auto;
        width: 100%;
    }
    #club-circle .rikuzyou::before{
    position: absolute;
    content: "";
    top: 5px;
    left: 5px;
    width: 55px;
    height: 55px;
    }
    #club-circle .sadou::before,
    #club-circle .yagaicounse::before{
    position: absolute;
    content: "";
    top: 18px;
    left: 5px;
    width: 55px;
    height: 55px;
    }
    #club-circle .rikuzyou::before{background-image: url(../images/032/club_icon_rikuzyou.svg);}
    #club-circle .sadou::before{background-image: url(../images/032/club_icon_sadou.svg);}
    #club-circle .yagaicounse::before{background-image: url(../images/032/club_icon_yagaicounse.svg);}
    #club-circle .club-circle-box > div >p:first-child{
        display: inline-block;
        color: #000;
        font-size: 1.5em;
        font-weight: bold;
        margin-bottom: 0;
        padding: 0 0.3em;
    }
    #club-circle .club-circle-box .rikuzyou .flex-box {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        margin-left: 7.2em;
        align-items: flex-start;
    }
    #club-circle .club-circle-box .sadou .flex-box, 
    #club-circle .club-circle-box .yagaicounse .flex-box {
        margin-left: 6.5em;
    }
    #club-circle .club-circle-box .rikuzyou p,
    #club-circle .club-circle-box .sadou p.sadounm,
    #club-circle .club-circle-box .yagaicounse p.yagaicounsenm{
    position: relative;
    left: 0; 
    margin-top: 0 auto;
    font-weight: bold;
    }

    /* 青緑◯代表のの部分ずらし */
    #club-circle .club-circle-box .rikuzyou p.rikuzyounm:last-child, 
    #club-circle .club-circle-box .sadou p.sadounm:last-child,
    #club-circle .club-circle-box .yagaicounse p.yagaicounsenm:last-child {
        margin-left: 2em;
    }
    #club-circle .club-circle-box > div {
        width: 100%;
    }
    #club-circle .club-circle-box > .rikuzyou >p:first-of-type{
        display: inline-block;
        width: auto;
        margin-left: 3.5em;
        margin-bottom: 5px;
    }
    #club-circle .club-circle-box > .sadou >p:first-of-type, #club-circle .club-circle-box > .yagaicounse >p:first-of-type{
        display: inline-block;
        width: auto;
        margin-left: 0.5em;
        margin: 0;
        margin-bottom: 5px;
        /* left: 0; */
        margin-left: 3em;
    }
    #club-circle .club-circle-box > div >p:nth-of-type(2) {
        text-align: center;
        border-bottom: none;

    }
}


@media (max-width: 450px) {
    #club-circle .club-circle-title > img {
        width: 90%;
        margin: 0 auto 1.5em auto;
    }
    .flex-box.row-reverse {
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }
    #club-circle .club-circle-box .rikuzyou p.rikuzyounm:last-child, 
    #club-circle .club-circle-box .sadou p.sadounm:last-child, 
    #club-circle .club-circle-box .yagaicounse p.yagaicounsenm:last-child {
        margin-left: 0em;
    }
    #club-circle .club-circle-box .rikuzyou p, 
    #club-circle .club-circle-box .sadou p.sadounm,
    #club-circle .club-circle-box .yagaicounse p.yagaicounsenm {
        margin-bottom: 0;
    }
    #club-circle .club-circle-box > div >p:first-child {
        display: inline-block;
        color: #000;
        font-size: 1rem;
        font-weight: bold;
        margin-bottom: 0;
        padding: 0 0.3em;
    }
    #club-circle .club-circle-box .rikuzyou .flex-box{
        display: flex;
        flex-direction: row;
        margin-left: 7.2em;
        align-items: flex-start;
        align-content: flex-start;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    #club-circle .club-circle-box > .rikuzyou >p:first-of-type {
        display: inline-block;
        width: auto;
        margin-left: 4.7em;
        margin-bottom: 5px;
    }
    #club-circle .club-circle-box .sadou .flex-box, 
    #club-circle .club-circle-box .yagaicounse .flex-box {
        display: flex;
        flex-direction: row;
        margin-left: 6.2em;
        align-items: flex-start;
        align-content: flex-start;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    #club-circle .club-circle-box > .sadou >p:first-of-type,
     #club-circle .club-circle-box > .yagaicounse >p:first-of-type{
        display: inline-block;
        width: auto;
        margin-left: 0.5em;
        margin: 0;
        margin-bottom: 5px;
        /* left: 0; */
        margin-left: 3.8em;
    }
    #club-circle .club-circle-box .flex-box p.stmi {
        width: 100%;
    }
    #club-circle .club-circle-box figure {
        width: 100%;
        margin-top: 0em;
        padding-left: 0em;
    }

}
/* --------------------------
myfavorite / 人気グッズ紹介
-------------------------- */
#myfavorite{
  background-color: var(--color-supportersfav-bg);
  overflow-x: hidden;
}
#myfavorite .myfavorite-title {
    display: flex;
    align-items: flex-end;
    padding: 2em;
}
#myfavorite .myfavorite-title .myfav1{
    /* padding: 2em 0 1em 0; */
    margin: 0;
    width: 50%;
}
#myfavorite .myfavorite-title .myfav2{
    /* padding: 2em 0 1em 0; */
    margin: 0 ;
    width: 30%;
}
#myfavorite .myfavorite-title .sanbanme {
    width: 22%;
}
#myfavorite .myfavorite-title .myfav3{
    /* padding: 2em 0 1em 0; */
    margin: 0 auto;
    width: 80%;
}
#myfavorite .myfavorite-title .sanbanme p {
    font-size: 0.9rem;
}
#myfavorite .myfav_bg {
    background-color: #EEEEEF;
    background-image:
      radial-gradient(#fff 15%, transparent 20%),
      radial-gradient(#fff 15%, transparent 20%);
    background-size: 20px 20px;
    background-position:1px 2px, 30px 12px;
}
#myfavorite .myfavorite-box {
    padding: 1.5rem 0;
    position: relative;

}
#myfavorite .myfavorite-box .tosyokan .flex-box,
#myfavorite .myfavorite-box .kinenkan .flex-box{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-left: 3em;
    align-items: flex-start;
}
#myfavorite .myfavorite-box .hakubutukan .flex-box {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-left: 0em;
    align-items: flex-start;
    flex-direction: row-reverse;
}
#myfavorite .myfavorite-box .tosyokan,
#myfavorite .myfavorite-box .hakubutukan,
#myfavorite .myfavorite-box .kinenkan{
    position: relative;
    width: 100%;
    padding-left: 0em;
    padding-right: 0em;
}
#myfavorite .myfavorite-box .hakubutukan {
    text-align: right;
}
#myfavorite .myfavorite-box .tosyokan p.tosyokannm,
#myfavorite .myfavorite-box .hakubutukan p.hakubutukannm,
#myfavorite .myfavorite-box .kinenkan p.kinenkannm{
    position: relative;
    left: 0em; 
    margin-top: 0 auto;
    font-weight: bold;
    background:linear-gradient(transparent 70%, #F3A8C3 60%);

}

/* 青緑◯代表のの部分ずらし */
#myfavorite .myfavorite-box .tosyokan p.tosyokannm:last-child, 
#myfavorite .myfavorite-box .hakubutukan p.hakubutukannm:last-child,
#myfavorite .myfavorite-box .kinenkan p.kinenkannm:last-child {
    margin-left: 0em;
}
#myfavorite .myfavorite-box .kinenkan p.kinenkannm span {
    font-size: 1rem;
}
#myfavorite .myfavorite-box figure{
    width: 100%;
    margin-top: 0em;
    padding-left: 0em;
}
#myfavorite .myfavorite-box figure img {
    width: 100%;
}
#myfavorite .myfavorite-box .tosyokan p.stmi,
#myfavorite .myfavorite-box .kinenkan p.stmi {
    width: 100%;
    padding-left: 2em;
    padding-top: 1em;
}
#myfavorite .myfavorite-box .hakubutukan p.stmi {
    width: 100%;
    padding-right: 2em;
    padding-top: 1em;
}

/* アイコン */
#myfavorite .tosyokan::before,
#myfavorite .kinenkan::before{
    position: absolute;
    content: "";
    top: -10px;
    left: 15px;
    width: 30px;
    height: 30px;
}
#myfavorite .hakubutukan::before{
    position: absolute;
    content: "";
    top: -10px;
    left: 65px;
    width: 30px;
    height: 30px;
}
#myfavorite .tosyokan::before{background-image: url(../images/032/myfav_icon.svg); background-repeat: no-repeat;}
#myfavorite .hakubutukan::before{background-image: url(../images/032/myfav_icon.svg);background-repeat: no-repeat;}
#myfavorite .kinenkan::before{background-image: url(../images/032/myfav_icon.svg);background-repeat: no-repeat;}
#myfavorite .myfavorite-box > .tosyokan >p:first-child,
#myfavorite .myfavorite-box > .kinenkan >p:first-child{
    display: inline-block;
    color: #000;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0;
    padding-left: 2em;
}
#myfavorite .myfavorite-box > .hakubutukan >p:first-child{
    display: inline-block;
    color: #000;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0;
    padding-left: 0em;
    padding-right: 1em;
}

@media (max-width: 768px) {
    #myfavorite .myfavorite-title {
        padding: 1em;
        width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-end;
        padding: 2em;
    }
    #myfavorite .myfavorite-title .myfav1 {
        /* padding: 2em 0 1em 0; */
        margin: 0 auto;
        width: 50%;
    }
    #myfavorite .myfavorite-title .myfav2 {
        /* padding: 2em 0 1em 0; */
        margin: 0 auto;
        width: 40%;
    }
    #myfavorite .myfavorite-title .sanbanme {
        width: 35%;
        margin: 0 auto;
    }
    #myfavorite .myfavorite-title .sanbanme p {
        font-size: 1.3rem;
        width: max-content;
    }
    #myfavorite .myfavorite-title .myfav3 {
        margin: -7em 0em 0em 18em;
        width: 80%;
    }
    #myfavorite .myfavorite-box {
        width: 100%;
    }

    #myfavorite .tosyokan::before, #myfavorite .kinenkan::before {
        position: absolute;
        content: "";
        top: -10px;
        left: -25px;
        width: 30px;
        height: 30px;
    }

    #myfavorite .myfavorite-box > .flex-box {
        flex-direction: column-reverse;
        width: 90%;
        padding: 0em;
        margin: 3em auto;
    }
    #myfavorite .myfavorite-box > .flex-box >figure,
    #myfavorite .myfavorite-box > .flex-box >div{
        width: 100%;
        margin: 0 auto;
    }
    #myfavorite .hakubutukan::before {
        position: absolute;
        content: "";
        top: -15px;
        left: -25px;
        width: 30px;
        height: 30px;
    }
    #myfavorite .myfavorite-box .hakubutukan {
        text-align: left;
    }
    #myfavorite .myfavorite-box > .tosyokan >p:first-child,
    #myfavorite .myfavorite-box > .kinenkan >p:first-child {
        display: inline-block;
        color: #000;
        font-size: 1.2rem;
        font-weight: bold;
        margin-bottom: 0;
        padding-left: 0em;
    }
    #myfavorite .myfavorite-box .tosyokan p.stmi, 
    #myfavorite .myfavorite-box .kinenkan p.stmi {
        width: 100%;
        padding-left: 0em;
        padding-top: 1em;
    }
    #myfavorite .myfavorite-box > .hakubutukan >p:first-child{
        display: inline-block;
        color: #000;
        font-size: 1.2rem;
        font-weight: bold;
        margin-bottom: 0;
        padding-left: 0em;
        padding-right: 0em;
    }
    #myfavorite .myfavorite-box .hakubutukan p.stmi {
        width: 100%;
        padding-right: 0em;
        padding-top: 1em;
    }
}
@media (max-width: 540px) {
    #myfavorite .myfavorite-title .myfav3 {
        margin: -6em 0em 0em 15em;
        width: 70%;
    }
    #myfavorite .myfavorite-title .sanbanme {
        width: 45%;
        margin: 0 auto;
    }
}

@media (max-width: 450px) {
    #myfavorite .myfavorite-title .myfav1 {
        /* padding: 2em 0 1em 0; */
        margin: 0 auto;
        width: 65%;
    }
    #myfavorite .myfavorite-title .myfav2 {
        /* padding: 2em 0 1em 0; */
        margin: 0 auto;
        width: 50%;
    }
    #myfavorite .myfavorite-title .sanbanme {
        width: 65%;
        margin: 0 auto;
    }
    #myfavorite .myfavorite-title .myfav3 {
        margin: -4em 0em 0em 13em;
        width: 50%;
    }
    #myfavorite .myfavorite-title .sanbanme p {
        font-size: 1rem;
        width: max-content;
    }
    #myfavorite .myfavorite-box > .hakubutukan >p:first-child {
        display: inline-block;
        color: #000;
        font-size: 1.1rem;
        font-weight: bold;
        margin-bottom: 0;
        padding-left: 0em;
        padding-right: 0em;
    }
    #myfavorite .myfavorite-box > .tosyokan >p:first-child,
    #myfavorite .myfavorite-box > .kinenkan >p:first-child {
        display: inline-block;
        color: #000;
        font-size: 1.1rem;
        font-weight: bold;
        margin-bottom: 0;
        padding-left: 0em;
    }
    #myfavorite .tosyokan::before, #myfavorite .kinenkan::before {
        position: absolute;
        content: "";
        top: -13px;
        left: -17px;
        width: 25px;
        height: 25px;
    }
    #myfavorite .hakubutukan::before {
        position: absolute;
        content: "";
        top: -13px;
        left: -18px;
        width: 25px;
        height: 25px;
    }
}
/* --------------------------
#footer-info
-------------------------- */
#footer-info{
    padding: 2em 2em 4em 2em;
}
#footer-info button::after{
    background-image: url(../images/032/link_icon_w.svg);
}
#footer-info .narrow-width > img{
    position: relative;
    top: 0.5em;
    left: 0.5em;
    width: 9vw;
    height: auto;
}
#footer-info .footer-link >a {
    background-color: var(--color-yellow);
    font-weight: bold;
    padding: 1em 2.5em 1em 1.5em;
    margin: 0.5em;
    font-size: 0.8em;
    position: relative;
}
#footer-info .footer-link >a::after{
    content: "";
    background-image: url(../images/032/link_icon.svg);
    position: absolute;
    right: 10px;
    top: 25px;
    width: 15px;
    height: 15px;
}
@media (max-width: 768px) {
    #footer-info {
        width: 90%;
        margin: 0 auto;
    }
    #footer-info .narrow-width{
        display: block;
        margin: 0 auto;
    }
    #footer-info .narrow-width > img{
        position: relative;
        top: 2vw;
        left: 23vw;
        width: 30%;
    }
    #footer-info .flex-box.footer-link{
        flex-direction: column;
        margin: 1em auto;

    }
    #footer-info .footer-link >a {
        width: 80vw;
        margin: 0 auto 1em;
        text-align: center;
    }
    #footer-info .footer-link >a::after {
        content: "";
        background-image: url(../images/032/link_icon.svg);
        position: absolute;
        right: 10px;
        top: 15px;
        width: 15px;
        height: 15px;
    }
}
@media (max-width: 450px) {
    #footer-info .narrow-width > img {
        position: relative;
        top: 2vw;
        left: 23vw;
        width: 35%;
    }
    #footer-info .footer-link >a::after {
        content: "";
        background-image: url(../images/032/link_icon.svg);
        position: absolute;
        right: 10px;
        top: 15px;
        width: 15px;
        height: 15px;
    }
}

/* --------------------------
#editorsnotes / 編集後記
-------------------------- */
#editorsnotes{
    background-color: #E6E6E6;
    position: relative;
}

#editorsnotes::before{
    background-color: #000000;
    content: "編集後記";
    color: #fff;
    padding: 10px 1em;
    position: absolute;
    top: -10%;
    left: calc(100vw / 2 - 46px);
    font-weight: bold;
}
#editorsnotes p{
margin-bottom: 0;
}

@media (max-width: 768px) {
    #editorsnotes p{
        padding: 1em;
    }
}


/* 追加スタイル */
.t-center{
text-align: center;
}
.flex-box{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.w48{
    width: 48%;
}
.flex-end{
    align-items: flex-end;
}
.row-reverse{
    flex-direction: row-reverse;
}
.pc-none{
    display: none;
}

/* figcaption {
    line-height: 1.5em;
    margin-top: 0.5em;
} */
figcaption > b >span{
    font-size: 1.3em;
}
@media (max-width: 768px) {
    .sp-none{
        display: none;
    }
    .pc-none {
        display: block;
    }
}
