/* --------------------------
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: #FFF6E9;
    --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/031/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;
    text-align: right;
    right: 10em;
    font-size: 0.9em;
}


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

/* --------------------------
pickup / 特集
-------------------------- */
#pickup {
    background-color: #FCEDED;
    padding-bottom: 1em;
    padding-left: 3vw;
    padding-right: 3vw;
    padding-top: 1em;
}
#pickup .pickup-heading{
    background-color: #FCEDED;
    color: #000;
    height: auto;
}
#pickup .section-padding:nth-child(1n){
    padding-top: 1em;
    padding-bottom: 0.5em;
}
#pickup .section-padding:nth-child(2n){
    padding-top: 0;
}
#pickup .pickup-heading > .pickup-logo{
    position: relative;
}
#pickup .pickup-heading > .pickup-logo img{
    width: auto;
    margin: 0 auto;
    text-align: center;
    /* width: 100%; */
}
#pickup .pickup-heading > .pickup-logo p {
    text-align: center;
    /* font-size: 1em; */
    position: absolute;
    top: 55%;
    left: 0%;
    right: 0;
    width: 94vw;
    /* transform: translate(-50%, -50%); */
}
#pickup .section-padding .sotsugyoushiki h2{
    color: #E4007F;
    font-size: 2rem;
}
#pickup .pickup-heading .subtitle {
    text-align: center;
}
#pickup .pickup-heading .flex-box > p {
    width: 100%;
}
#pickup .pickup-content-box .sotsudai span:first-of-type{
    background:linear-gradient(transparent 70%, #E84C95 30%);
}
#pickup .pickup-content-box p.sotsudai{
    font-size: 1.1em;
}
#pickup .section-padding .button-box .sotsugyoushiki{
    background-color: #E84C95;
    color: #fff;
}
#pickup .section-padding .button-box .sotsugyoushiki::after{
    content: "";
    background-image: url(../images/031/link_icon_w.svg);
    position: absolute;
    right: 20px;
    width: 15px;
    height: 15px;
}
#pickup .pickup-content-box > hr{
    border-top: 1px solid #000000;
    margin: 1em auto;
}
#pickup .nyugakushiki h2{
    font-size: 1.5rem;
    color: #8DC21F;
    text-align: center;
}
#pickup .pickup-content-box .nyudai span:first-of-type{
    background:linear-gradient(transparent 60%, #8DC21F 60%);
}
#pickup .section-padding .subtitle{
    text-align: center;
}
/* #pickup .pickup-content-box span{ */
    /* font-size: smaller; */
/* } */
#pickup .section-padding .button-box .nyugakushiki{
    background-color: #8DC21F;
    color: #fff
}
#pickup .section-padding .button-box .nyugakushiki::after{
    content: "";
    background-image: url(../images/031/link_icon_w.svg);
    position: absolute;
    right: 20px;
    width: 15px;
    height: 15px;
}
/* #pickup .pickup-heading .flex-box > figure {
    width: 23%;
    text-align: center;
} */
#pickup .pickup-heading .flex-box > figure figcaption{
font-size: 0.85em;
}
#pickup .pickup-content{
    background-color: #FCEDED;
    padding: 3em 0 0;
}
#pickup .pickup-content-box{
    margin-bottom: 3em;
}

#pickup .pickup-content .flex-box > figure{
    width: 60%;
    height: 40%;
    margin: 2em 2em 2em 2em;
}
#pickup .pickup-content-box .flex-box {
    /* margin: auto; */
    height: 15em;
    align-content: flex-end;
    width: 100%;
}
#pickup .pickup-content-box .flex-item {
    flex-direction: column;
    margin: auto;
}

@media (max-width: 768px) {
    #pickup .pickup-heading{
        display: block;
        /* height: 100%; */
        /* padding: 1em; */
    }
    #pickup .pickup-heading > .pickup-logo{
        display: inline-block;
        /* position: relative; */
        /* margin: 1em auto; */
    }
    #pickup .pickup-heading > .pickup-logo img{
        width: auto;
        margin: 0 auto 1em auto;
        padding-bottom: 1em;
        text-align: center;
        padding-right: 1em;
        padding-left: 1em;
        /* width: 100%; */
    }
    #pickup .pickup-heading > .pickup-logo p {
        text-align: left;
        /* font-size: 1em; */
        display: inline-block;
        position: absolute;
        top: 110%;
        left: 0%;
        right: 0;
        width: 100%;
        padding: 1em;
        /* transform: translate(-50%, -50%); */
    }
    #pickup .pickup-heading .section-padding{
        /* display: block; */
        /* position: absolute; */
        /* top: 120%; */
        margin-top: 10em;
    }
    #pickup .section-padding .sotsugyoushiki h2{
        color: #E4007F;
        font-size: 1.5rem;
    }
    #pickup .pickup-heading .flex-box{
        flex-wrap: wrap;
    }
    #pickup .pickup-heading .flex-box > figure {
        width: 46%;
    }
    #pickup .pickup-content {
        padding: 1em 1em 0;
    }
    #pickup .pickup-content .flex-box > figure{
        display: block;
        width: 60%;
        height: 40%;
        margin: 1em auto 0 auto;
    }
    #pickup .pickup-content-box > figure{
        width: 50vw;
        /* float: none; */
        margin: 0 auto;
        /* margin-left: 0; */
        /* display: inline-block; */
    }
    #pickup .pickup-content .pickup-content-box{
        padding: 1em;
        margin-bottom: 0;
        max-width: 100%;
    }
    #pickup .pickup-content .pickup-content-box .flex-box{
        flex-wrap: nowrap;
        /* flex-wrap: wrap; */
        flex-direction: column-reverse;
        max-width: 100vw;
        height: auto;
        margin: 0 auto;

    }
    #pickup .pickup-content .pickup-content-box .flex-box img{
        display: block;
        /* position: relative; */
        width: 30vw;
        /* right: 22vw; */
        /* left: 22vw; */
        /* text-align: center; */
        margin: 0.5em auto;
    }
    #pickup .pickup-content .pickup-content-box .flex-box > .flex-item{
        width: 100%;
    }
    #pickup .pickup-content .pickup-content-box .flex-box > .flex-item > p:last-child{
        margin-bottom: 0;
    }
    #pickup .pickup-content .pickup-content-box .w48{
        width: 100%;
    }
    #pickup .pickup-content-box p.sotsudai{
        text-align: center;
    }
    #pickup .nyugakushiki h2{
        font-size: 1.5rem;
        color: #8DC21F;
        text-align: center;
    }
    #pickup .pickup-content-box p.nyudai{
        text-align: center;
    }
    /* #pickup .pickup-content .pickup-content-box .flex-box{
        flex-direction: column-reverse;
    } */
    /* #pickup .pickup-content .pickup-content-box > div:first-of-type {
        width: 70%;
    } */
    /* #pickup .pickup-content .pickup-content-box > div:first-of-type {
        width: 50%;
    } */
}
/* --------------------------
gourmetspot / グルミートスポット
-------------------------- */
#gourmetspot{
    /* padding-bottom: 2em; */
    padding-left: 3vw;
    padding-right: 3vw;
}
#gourmetspot .section-padding{
    /* background-color: #E6F0F8; */
    padding-bottom: 2em;
}
#gourmetspot .gourmetspot_title img{
    text-align: center;
    margin:  0 auto;
    max-width: 100%;
    /* margin-bottom: 2em;
    padding-left: 3em; */
}
#gourmetspot .gourmetspot_title p{
    text-align: center;
    font-weight: bold;
    margin: 5% auto;
}
#gurmetspot .narrow-width .tyuou > figcaption{
    font-size: smaller;
    text-align: center;
}
#gurmetspot .narrow-width div.flex-box > p{
    font-size: smaller;
    width: 60%;
}
#gourmetspot .t-center > .h2line span{
    background:linear-gradient(transparent 60%, #F7E3C4 60%);
    color: #6A3906;
    font-size: larger;
    text-align: center;
}
#gourmetspot .gourmetspot_title > .pline span{
    background:linear-gradient(transparent 60%, #FFF000 60%);
}
#gourmetspot .t-center p{
    text-align: center;
    margin-bottom: 10%;
}
#gourmetspot .tyuou > .t-center figure > img{
    margin: 0 auto;
    width: auto;
}
#gourmetspot .tyuou > .t-center figure > figcaption {
    margin: 0 auto;
    font-size: smaller;
    width: 41%;
}
#gourmetspot .tyuou > .flex-box figure > figcaption {
    /* margin: 0 auto; */
    font-size: smaller;
    /* width: 41%; */
    margin-bottom: 2em;
}
#gourmetspot .tyuou > .flex-box{
    width: 100%;
    margin-top: 1em;
}
#gourmetspot .tyuou > .flex-box > p{
    margin-right: 2em;
    width: 70%;
}
#gourmetspot .tyuou .flex-box > .tyuouimg {
    width: 30vw;
}
#gourmetspot .gourmetspot-content-box .tyuouinfo{
    background-color: #F7E3C4;
    flex-wrap: nowrap;
    margin: 2em auto;
    position: relative;
    overflow: visible;
}
#gourmetspot .gourmetspot-content-box .tyuouinfo > .flex-box p{
    font-size: smaller;
    width: auto;   
    margin-left: 16%;
    margin-right: 1em;
    margin-top: 1em;
}

#gourmetspot .gourmetspot-content-box .tyuouinfo > .flex-box{
    flex-direction: row;
}
#gourmetspot .tyuouinfo .imgfukidashi > picture > img{
    flex-shrink: 0;
    height: 5em;
    width: 6em;
    float: left;
    position: absolute;
    left: 2%;
    bottom: 50%;
}
#gourmetspot .gourmetspot-content-box > hr{
    border-top: 1px solid #6A3906;
    margin: 2em auto;
}
#gourmetspot .gloa .gloamain{
    margin-top: 2em;
    height: 21em;
}
#gourmetspot .gloa .gloamain > figure > figcaption {
    /* margin: 0 auto; */
    font-size: smaller;
    /* width: 41%; */
    margin-bottom: 2em;
}
#gourmetspot .gloa .gloamain > figure {
    margin-bottom: 2em;
}
#gourmetspot .gloa > .gloamain > p{
    margin-right: 2em;
    width: 50%;
}
#gourmetspot .gloa .gloamain > .gloamainimg {
    width: 50%;
}
#gourmetspot .gloa > .gloaimg{
    margin-bottom: 2.5em;
}
#gourmetspot .gloa .gloaimg > .gloalef{
    margin-right: 1%;
}
#gourmetspot .gloa .gloaimg > .gloarig{
    margin-left: 1%;
    padding-right: 35%;
}
#gourmetspot .kadai .kadaimain{
    margin-top: 2em;
    height: 23em;
}
#gourmetspot .kadai .kadaimain > figure > figcaption {
    /* margin: 0 auto; */
    font-size: smaller;
    /* width: 41%; */
    margin-bottom: 2em;
}
#gourmetspot .kadai .kadaimain > figure {
    margin-bottom: 2em;
}
#gourmetspot .kadai > .kadaimain > p{
    margin-right: 2em;
    width: 60%;
    padding-bottom: 1rem;
}
#gourmetspot .kadai .kadaimain > .kadaimainimg {
    width: 40%;
}
#gourmetspot .kadai > .kadaiimg{
    margin-bottom: 2.5em;
}
#gourmetspot .kadai .kadaiimg > .kadailef{
    margin-right: 1%;
}
#gourmetspot .kadai .kadaiimg > .kadairig{
    margin-left: 1%;
    padding-right: 35%;
}
#gourmetspot .marche .marchemain{
    margin-top: 2em;
    height: 22em;
}
#gourmetspot .marche .marchemain > figure > figcaption {
    font-size: smaller;
    margin-bottom: 2em;
}
#gourmetspot .marche .marchemain > figure {
    margin-bottom: 2em;
}
#gourmetspot .marche > .marchemain > p{
    margin-right: 2em;
    width: 60%;
    padding-bottom: 1rem;
}
#gourmetspot .marche .marchemain > .marchemainimg {
    width: 40%;
}
#gourmetspot .marche > .marcheimg{
    margin-bottom: 3.5em;
}
#gourmetspot .marche .marcheimg > .marchelef{
    margin-right: 1%;

}
#gourmetspot .marche .marcheimg > .marcherig{
    margin-left: 1%;
    padding-right: 35%;
}


@media (max-width: 768px) {
    #gourmetspot .gourmetspot_title img{
        display: block;
        margin: 0 auto;
        padding-right: 3em;
        /* text-align: center; */
        max-width: 100%;
    }
    
    #gourmetspot .gourmetspot_title{
        /* padding-left: 2em; */
        margin: 0 auto;
        height: auto;
        padding: 1em;
    }
    #gourmetspot .gourmetspot_title p{
        text-align: left;
        font-weight: bold;
        margin: 5% auto;
    }
    #gurumetspot .narrow-width{
        height: auto;
        max-width: 100%;
    }
    #gourmetspot .gourmetspot-content-box {
        height: auto;
        text-align: center;
        /* padding: 1em; */
    }
    #gourmetspot .tyuou > .t-center figure {
        padding: 1em;
    }
    #gourmetspot .tyuou > .t-center figure > figcaption {
        margin: 0 auto;
        font-size: smaller;
        width: 68%;
        text-align: left;
    }
    #gourmetspot .tyuou .tyuoumain{
        display: flex;
        flex-direction: column;
        max-width: 768px;
        height: auto;
        text-align: center;
        /* flex-wrap: wrap; */
        /* align-items: flex-start; */
    }
    #gourmetspot .tyuou .tyuoumain > p{
        text-align: left;
        width: 100%;
        margin-top: 1em;
        margin-right: 0;
        padding: 1em;
    }

    #gourmetspot .tyuou .flex-box > .tyuouimg {
        display: block;
        width: 100%;
        height: auto;
        margin: 0 auto;
        padding: 1em;
    }
    #gourmetspot .tyuou .flex-box > .tyuouimg > img:first-child{
        display: block;
        margin: 0 auto;
        width: 100%;
    }
    #gourmetspot .tyuou .flex-box > .tyuouimg > img:last-child{
        display: block;
        margin: 1em auto 0 auto;
        width: 80%;
    }
    #gourmetspot .tyuou .flex-box > .tyuouimg > figcaption{
        text-align: center;
        text-align-last: left;
        /* width: 80%; */
        font-size: 1em;
        /* margin-left: 11em; */
    }
    #gourmetspot .gourmetspot-content-box .tyuouinfo > .flex-box p{
        font-size: smaller;
        width: 100%;   
        margin-left: 1em;
        margin-right: 1em;
        margin-top: 1em;
        margin-bottom: 1em;
    }
    #gourmetspot .tyuouinfo .imgfukidashi > picture > img{
        display: flex;
        flex-shrink: 0;
        height: 5em;
        width: 6em;
        /* float: right; */
        position: absolute;
        left: 75%;
        bottom: 95%;
    }
    #gourmetspot .gloa .gloamain,#gourmetspot .kadai .kadaimain,#gourmetspot .marche .marchemain{
        flex-direction: column-reverse;
        display: flex;
        width: 100%;
        height: auto;
        text-align: center;
        align-items: center;
    }
    #gourmetspot .gloa .gloaimg,#gourmetspot .kadai .kadaiimg,#gourmetspot .marche .marcheimg{
        flex-direction: column;
        display: flex;
        width: 100%;
        height: auto;
        text-align: left;
        align-items: center;
        margin-top: 1em;
    }
    #gourmetspot .gloa .gloaimg > .gloarig, #gourmetspot .kadai .kadaiimg > .kadairig, #gourmetspot .marche .marcheimg > .marcherig{
        margin-left: 1%;
        padding-right: 0;
    }
    #gourmetspot .gloa .gloamain > figure > figcaption, #gourmetspot .kadai .kadaimain > figure > figcaption, #gourmetspot .marche .marchemain > figure > figcaption{
        /* margin: 0 auto; */
        font-size: smaller;
        /* width: 41%; */
        margin-bottom: 1em;
        text-align: left;
    }
    #gourmetspot .gloa .gloamain > figure {
        width: auto;
        margin-bottom: 2em;
    }
    #gourmetspot .gloa > .gloamain > p{
        margin: 0;
        width: 100%;
    }
    #gourmetspot .gloa .gloamain > .gloamainimg img{
        width: 100%;
        margin: 0;
    }
    #gourmetspot .gloa .gloamain > figure,#gourmetspot .kadai .kadaimain > figure,#gourmetspot .marche .marchemain > figure {
        margin-bottom: 1em;
    }
    #gourmetspot .gloa .gloaimg > .gloalef, #gourmetspot .gloa .gloaimg > .gloarig{
        display: block;
        margin: 0.5em auto;
        width: 80%;
    }
    #gourmetspot .gloa .gloaimg > .gloalef img, #gourmetspot .gloa .gloaimg > .gloarig img{
        width: 90%;
        margin: 0 auto;
    }
    #gourmetspot .gloa .gloamain > .gloamainimg, #gourmetspot .kadai .kadaiimg,#gourmetspot .marche .marcheimg{
        display: block;
        width: 100%;
        margin: 0 auto;
    }
    #gourmetspot .kadai figure >img, #gourmetspot .marche figure >img{
        width: 100%;
        margin: 0;
    }
    #gourmetspot .kadai .kadaiimg figure >img, #gourmetspot .marche .marcheimg figure >img{
        width: 80%;
        margin: 1em auto;
    }
    #gourmetspot .kadai > .kadaimain > p, #gourmetspot .marche > .marchemain > p{
        margin-right: 0;
        margin-bottom: 0;
        width: 100%;
        padding-bottom: 1rem;
    }
     /* #gourmetspot .gloa .flex-box:nth-of-type(2),#gourmetspot .kadai .flex-box:nth-of-type(2), #gourmetspot .maruche .flex-box:nth-of-type(2){
        flex-direction: column;
    } */

}

/* --------------------------
supheal / 健康をサポート保健管理センター
-------------------------- */
#supheal{
    background-color: #E6F0F8;
    /* padding-bottom: 4em; */

}
#supheal .section-padding{
    padding-left: 3vw;
    padding-right: 3vw;
}
#supheal .supheal_title img{
    margin: 0 auto;
    /* text-align: center; */
    margin-bottom: 2em;
    padding-left: 3em;
}
#supheal .supheal_lead{
    margin-bottom: 2em;
}
#supheal .supheal_lead > p{
    /* width: 70%; */
    color: #036EB7;
    font-weight: bold;
    font-size: larger;
    text-align: center;
    text-align-last: left;
}
#supheal .section-padding .float-box{
    float: left;
    width: 66%;
    /* margin-right: 0.1em; */
}
#supheal .section-padding .float-box > .supheal-content-box{
    margin-right: 1.5em;
    /* margin-left: 1em; */
    font-size: 0.9em;
}

#supheal .section-padding .flex-box{
    width: 34%;
    text-align: center;
    /* font-size: 0.75em; */
}
#supheal .section-padding .soudansien{
    width: 34%;
    text-align: left;
    text-align-last: left;
    /* font-size: 0.75em; */
}
#supheal .section-padding .flex-box > figure > img{
    margin: 0.5em auto 0 auto;
}
#supheal .section-padding .soudansien > figure > img:nth-child(1){
    margin-top: 2em;
}
#supheal .section-padding .flex-box > figure > img:nth-child(3){
    margin-bottom: 0.5em;
}
#supheal .section-padding .soudansien > figure > figcaption:nth-of-type(1){
    font-size: 0.75em;
}
#supheal .section-padding .flex-box > figure > figcaption:last-child{
    font-size: 0.75em;
    text-align-last: left;
}
#supheal .section-padding .flex-box > figure > figcaption span{
    font-size: smaller;
}
/* #supheal .section-padding .soudansien{
    display: block;
    position: relative;
}
#supheal .section-padding .soudansien > figure{
    top: 0;
    left: 34em;
} */
#supheal .supheal-content-question{
    color: #036EB7;
    font-weight: bold;
    margin-bottom: 1em;
    text-indent: 2em;
    position: relative;
    font-size: 1.2em;
}
#supheal .supheal-content-question::before{
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background-color: #036EB7;
    position: absolute;
    top: 15px;
    left: 0;
}
#supheal .supheal-content-box .supheal-content-answer p:last-child{
    width: 100%;
}
#supheal .supheal-img-box{
    /* overflow: visible; */
    overflow-x: auto;
}
#supheal .supheal-footing .section-padding{
    padding: 1em 1em;
}
#supheal div.supheal-footing{
    width: 100%;
    background-color: #005BAC;
    text-align: center;
    color: #fff;
}
#supheal .supheal-footing > .section-padding h3{
    text-align: center;
    margin-top: 0.5em;
}
#supheal .supheal-footing p{
    text-align: center;
    /* margin-top: 0.5em; */
    /* margin-bottom: 0; */
    /* width: 80%; */
    margin: 0 1em 0 1em;
}
#supheal .supheal-footing .button-box .hokenkanri{
    background-color: #ffffff;
    color: #000000;
    margin-top: 1em;
    margin-bottom: 1em;
}
@media (max-width: 768px) {
    #supheal .supheal_title{
        padding-left: 0;
        margin: 0 auto;
    }
    #supheal .supheal_title img{
        margin: 0 auto;
        /* text-align: center; */
        margin-bottom: 2em;
        padding-left: 0;
    }
    #supheal .supheal_lead{
        margin-bottom: 2em;
        padding: 1em;
    }
    #supheal .supheal_lead.flex-box,#supheal .supheal-letter .flex-box {
        flex-direction: column;
    }
    #supheal .supheal_lead > p{
        width: 100%;
    }
    #supheal .supheal_lead > figure{
        width: 60%;
        margin: 0 auto;
    }
    #supheal .section-padding .float-box{
        float: left;
        width: 66%;
        padding: 0 1em 0 1em;
        /* margin-right: 0.1em; */
    }
    #supheal .section-padding .flex-box{
        width: 34%;
        text-align: center;
        /* text-align-last: left; */
        /* font-size: 0.75em; */
        padding:  0 1em 0 0;
    }
    /* #supheal .section-padding .flex-box > figure > figcaption span{
        font-size: smaller;
        text-align-last: left;
    }
    #supheal .section-padding .flex-box > figure > figcaption b{
        text-align: center;
        text-align-last: left;
    } */
    #supheal .section-padding .soudansien{
        width: 34%;
        text-align: left;
        text-align-last: left;
        padding-top: 0;
        /* font-size: 0.75em; */
    }
    #supheal .section-padding .sanbanme{
        padding: 1em;
    }
    #supheal .supheal-img-box >img{
        max-width: unset;
        padding: 1em;
        overflow-x: scroll;
      }

    #supheal .supheal-footing > .section-padding h3{
        text-align: center;
        margin-top: 0.5em;
        margin-left: 1em;
        margin-right: 1em;
    }
    #supheal .supheal-footing p{
        text-align: center;
        margin: 0 1em 0 1em;
    }
    #supheal .supheal-footing .button-box .hokenkanri{
        background-color: #ffffff;
        color: #000000;
        margin: 1em
    }
}
/* --------------------------
labratory / 研究室から
-------------------------- */
#labratory{
    background-color: #FCEDE4;
    overflow: hidden;
}
#labratory .section-padding,#labratory .labratory-student-voice {
    padding-left: 3vw;
    padding-right: 3vw;
}

#labratory > div > figure > figcaption{
    text-align: right;
}
#labratory .labratory-title{
    text-align: center;
    max-width: 80%;
    margin: 0 auto 2em;
}
#labratory .labratory-heading{
    /* border-top: 1.5px solid; */
    /* border-bottom: 1.5px solid; */
    padding: 1em;
    margin-bottom: 2em;
}
#labratory .labratory-heading img{
    margin: 0 auto;
}
#labratory .labratory-heading >h2{
    margin: 0 auto;
    /* color: #E8515E; */
    text-align: center;
}
#labratory .labratory-lead{
    padding: 1em;
    margin-bottom: 2em;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 10px;
    text-align: center;
}
#labratory .section-padding .laboimg .labolef > figcaption{
    text-align: center;
    /* width: 120%; */
    margin-left: 5em;
}
#labratory .section-padding .laboimg .laborig > figcaption{
    text-align: center;
    /* width: 80%; */
    margin-right: 5em;
}
#labratory .section-padding .laboimg .labolef > img{
    margin: 0 0 0 4em;
}
#labratory .section-padding .laboimg .laborig > img{
    margin: 0 4em 0 0;
}
#labratory .labratory-student-voice{
    background-color: #fff;
    position: relative;
    padding: 2em 1em 2em 2em;
    margin-bottom: 3em;
    /* width: 70em; */
}
#labratory .labratory-student-voice >h3{
    background-color: #E8515E;
    display: inline-block;
    right: calc(100% / 2 - 110px);
    position: absolute;
    top: -20px;
    padding: 0 0.7em;
    color: #fff;
}
#labratory .labratory-student-voice .flex-box div > h3{
    margin: 0 0 0.5em ;
    text-align: center;
}
#labratory .labratory-student-voice > div.flex-box >figure{
    text-align: center;
    margin: 0 0 0 1em;
    width: 28%;
}
#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: 68%;
}
#labratory .labratory-student-voice >hr{
    border-top: 1px solid #E8515E;
    margin: 2em auto;
}
#labratory .laboratory-footing .section-padding{
    padding: 1em;
}
#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 .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 .section-padding p{
        /* width: 90%; */
        padding: 1em;
        margin: 0 auto;
    }
    #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 > img{
        margin-left: 0;
        padding: 1em 1em 0 1em;
    }
    #labratory .section-padding .laboimg .laborig > img{
        margin-right: 0;
        padding: 1em 1em 0 1em;
    }
    #labratory .section-padding .laboimg .labolef > figcaption{
        text-align: left;
        width: 100%;
        margin-left: 0;
        margin-top: 0;
        margin-bottom: 0.5em;
        padding: 0 1em 0 1em;
    }
    #labratory .section-padding .laboimg .laborig > figcaption{
        text-align: left;
        width: 100%;
        margin-top: 0;
        margin-bottom: 1em;
        padding: 0 1em 0 1em;
        /* margin-right: 5em; */
    }
    #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
    }
}

/* --------------------------
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: 100%;
    margin: 0 auto;
}

#ninetopics .ninetopics-title > p{
    background-color: var(--color-yellow);
    text-align: center;
    padding: 1em;
    margin: 2em auto 0;
    font-weight: bold;
    width: 100%;
    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/031/ninetopics_hobun.svg);}
#ninetopics .kyoiku::before{background-image: url(../images/031/ninetopics_kyoiku.svg);}
#ninetopics .rigaku::before{background-image: url(../images/031/ninetopics_rigaku.svg);}
#ninetopics .igaku::before{background-image: url(../images/031/ninetopics_igaku.svg);}
#ninetopics .sigaku::before{background-image: url(../images/031/ninetopics_sigaku.svg);}
#ninetopics .kogaku::before{background-image: url(../images/031/ninetopics_kogaku.svg);}
#ninetopics .nogaku::before{background-image: url(../images/031/ninetopics_nogaku.svg);}
#ninetopics .suisangaku::before{background-image: url(../images/031/ninetopics_suisangaku.svg);}
#ninetopics .kyodozyuigaku::before{background-image: url(../images/031/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: 85%;
    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;
}
#ninetopics .ninetopics-box > div >p:nth-of-type(3){
    line-height: 1.5em;
    text-align: left;
    /* text-align-last: left; */
    margin-left: 2.4vw;
    width: 85%;
}
#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: 2.4vw;
}
@media (max-width: 768px) {
    #ninetopics .ninetopics-title{
        width: 100%;
        /* margin: 0 auto; */
        padding: 1em;
    }
    #ninetopics .ninetopics-title > p {
        width: 100%;
    }
    #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;
    }
}

/* --------------------------
news / ニュース
-------------------------- */
#news{
    background-color: #fff;
    padding-left: 3vw;
    padding-right: 3vw;
}
#news .news-title > img{
    margin: 0 auto;
    max-width: 100%;
}
#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 .flex-box > p{
    width: 50%;
    margin-right: 2em;
}
#news .news-box .flex-box .w48 > img{
    width: 90%;    
}
#news .news-box .flex-box .w48 > figcaption{
    font-size: smaller;
    text-align: left;    
}
#news .news-box .padding-r >figure{
    padding-right:1em ;
    width: 80%;
}
#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;
        width: 100%;
    }
    #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: 1em;
    }
    #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;
    }
}

/* --------------------------
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: 0;
    padding-bottom: 0.5em;
    padding-left: 0.5em;
    padding-right: 0.5em;
}
#club-circle .club-circle-title > img{
    width: 100%;
    margin: 0 auto 2.5em auto;

}
#club-circle .club-circle-box{
    margin-top: 1em;
    margin-bottom: 2em;
}
#club-circle .club-circle-box .judou{
    width: 100%;
}
#club-circle .club-circle-box .judou > figure{
    margin: 0 auto;
}
#club-circle .club-circle-box .judoubu{
position: relative;
border-bottom: 1px solid;
}
#club-circle .club-circle-box .kbs,#club-circle .club-circle-box .fiveaces{
position: relative;
}
#club-circle .club-circle-box .judoubu p{
position: relative;
left: 2.5em; 
margin-top: 0 auto;
}
#club-circle .club-circle-box .kbs p.kbsnm,#club-circle .club-circle-box .fiveaces p.fanm{
position: relative;
left: 2.5em; 
margin-top: 0 auto;
}

#club-circle .club-circle-box figure{
    width: 45%;
    margin-top: 1em;
}
#club-circle .club-circle-box > div:first-child{
    max-width: 100%;
}
#club-circle .club-circle-box > .kbs,#club-circle .club-circle-box > .fiveaces{
    width: 55%;
    margin-right: 2em;
}

#club-circle .judoubu::before,
#club-circle .kbs::before,
#club-circle .fiveaces::before{
position: absolute;
content: "";
top: 8px;
left: 0;
width: 55px;
height: 55px;
}
#club-circle .judoubu::before{background-image: url(../images/031/judoubu_icon.svg);}
#club-circle .kbs::before{background-image: url(../images/031/kbs_icon.svg);}
#club-circle .fiveaces::before{background-image: url(../images/031/fiveaecs_icon.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 > .judoubu >p:nth-of-type(2){
    font-size: 1em;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 1.2em;
    padding: 0 0.3em;
}
#club-circle .club-circle-box > .kbs >p:nth-of-type(2),#club-circle .club-circle-box > .fiveaces >p:nth-of-type(2){
    font-size: 1em;
    font-weight: bold;
    margin-bottom: 0;
    margin-left: 1.4em;
    padding: 0 0.3em;
}
#club-circle .club-circle-box > .judoustmi >span{
    display: block;
    width: 100%;
    font-weight: bold;
    border-bottom: 1px solid;
}
#club-circle .club-circle-box .judoustmi > p{
    max-width: 100%;
}
#club-circle .club-circle-box > .kbs > span,#club-circle .club-circle-box > .fiveaces > span{
    display: block;
    width: 100%;
    font-weight: bold;
    border-top: 1px solid;
    border-bottom: 1px solid;
}

@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;
    }
    #club-circle .club-circle-title{
        margin: 0 auto 1em;
        padding:0 1em 1em 1em;
    }
    #club-circle .club-circle-box.flex-box {
        flex-direction: column-reverse;
        padding: 2em 0;
    }
    #club-circle .juzen, #club-circle .club-circle-box > .kbs, #club-circle .club-circle-box > .fiveaces{
        width: 100%;
        margin: 0 auto;
        overflow: hidden;
        padding: 1em;
    }

    #club-circle .club-circle-box .judou {
        position: relative;
        flex-direction: column;
        width: 100%;
    }
    #club-circle .club-circle-box .judou > figure{
        display: block;
        width: 100%;
        margin-bottom: 1em;
    } 
    #club-circle .club-circle-box .kbs p.kbsnm,#club-circle .club-circle-box .fiveaces 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 > .kbs >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 > .fiveaces >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 .judou .judoulef > img,#club-circle .club-circle-box .judou .judourig > img{
        display: block;
        margin: 0;
        width: 100%;
    }
    #club-circle .club-circle-box > figure > img{
        display: block;
        margin: 0 auto;
        width: 100%;
    }
    #club-circle .judoubu::before{
    position: absolute;
    content: "";
    top: 5px;
    left: 5px;
    width: 55px;
    height: 55px;
    }
    #club-circle .kbs::before,
    #club-circle .fiveaces::before{
    position: absolute;
    content: "";
    top: 18px;
    left: 22px;
    width: 55px;
    height: 55px;
    }
    #club-circle .judoubu::before{background-image: url(../images/031/judoubu_icon.svg);}
    #club-circle .kbs::before{background-image: url(../images/031/kbs_icon.svg);}
    #club-circle .fiveaces::before{background-image: url(../images/031/fiveaecs_icon.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 > div {
        width: 100%;
    }
    #club-circle .club-circle-box > .judoubu >p:first-of-type{
        display: inline-block;
        width: auto;
        margin-left: 1.5em;
        margin-bottom: 5px;
    }
    #club-circle .club-circle-box > .kbs >p:first-of-type, #club-circle .club-circle-box > .fiveaces >p:first-of-type{
        display: inline-block;
        width: auto;
        margin-left: 0.5em;
        margin: 0;
        margin-bottom: 5px;
    }
    #club-circle .club-circle-box > div >p:nth-of-type(2) {
        text-align: center;
        border-bottom: none;

    }
}

/* --------------------------
populargoods / 人気グッズ紹介
-------------------------- */
#populargoods{
  background-color: var(--color-supportersfav-bg);
    /* background-image: url(../images/031/ninkigoods_haikei.png); */
      /* 方眼紙模様に必須のスタイル */
  background-image: linear-gradient(0deg, transparent calc(100% - 0.5px), #d8d8d8 calc(100% - 0.5px)),
                    linear-gradient(90deg, transparent calc(100% - 0.5px), #d8d8d8 calc(100% - 0.5px));
  background-size: 15px 15px;
  background-repeat: repeat;
  background-position: center center;
  padding-top: 1em;
  padding-bottom: 1em;
  padding-left: 3vw;
  padding-right: 3vw;
}


#populargoods .populargoods-title > img{
    padding: 2em 0 1em 0;
    margin: 0 auto;
}
#populargoods .populargoods-box > p.syouhinmei{
    font-size: 1.5em;
    font-weight: bold;
    padding-left: 2.5em;
    padding-bottom: 0;
    margin-bottom: 0.5rem;
}
#populargoods .populargoods-box > p.syouhinmei > span{
    background:linear-gradient(transparent 60%, #FFF000 60%);
}
#populargoods .populargoods-box .flex-box .saburesyo,#populargoods .populargoods-box .flex-box .syotyusyo{
    display: flex;
    flex-direction: row;
    max-width: 100%;
    margin: 0 auto;
}
#populargoods .populargoods-box .flex-box .saburesyo > img{
    width: 95%;
    margin-right: 2em;
}
#populargoods .populargoods-box .flex-box .saburesyo > div{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
#populargoods .populargoods-box .flex-box .saburesyo > div > p:last-child(){
    margin-top: 1em;
}
#populargoods .populargoods-box .flex-box .flepla > p{
    margin: 2em 1em;
}

#populargoods .populargoods-box .flex-box .syotyusyo > img {
    width: 71%;
    margin-right: 2em;
}
#populargoods .populargoods-box .flex-box .syotyusyo > div{
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: space-between;
}
#populargoods .populargoods-box .flex-box .syotyusyo > div > p:first-child{
    width: 100%;
    margin: 0 auto;
}
#populargoods .populargoods-box .flex-box .syotyusyo > div > p:last-child{
    width: 100%;
    margin: 1em auto;
}

#populargoods .populargoods-box{
    border-radius: 20px;
    padding: 1em 0;
    position: relative;
}
#populargoods .populargoods-box::before{
content: "";
position: absolute;
width: 30px;
height: 30px;
top: -29px;
left: 300px;
}
#populargoods .populargoods-box > .flex-box {
    margin-bottom: 2em;
    flex-direction: row;
}
#populargoods .populargoods-box > .flex-box >figure >figcaption{
    font-size:14px;
    font-weight:bold;
}
#populargoods .populargoods-box .flex-box .flepla{
    /* background-color: #ffffff; */
    padding: 1em 1em;
    display: flex;
    font-size: 1em;
    position: relative;
    max-width: 100%;
}
#populargoods .populargoods-box .flex-box .plabox{
    /* background-color: #ffffff; */
    padding: 1em 1em;
    display: block;
    flex-wrap: wrap;
    flex-basis: auto;
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}
#populargoods .populargoods-box .flex-box .plabox div figure:nth-of-type(2n){
    margin: 0;
    width: 15%;
}
#populargoods .populargoods-box .flex-box .plabox div figure:nth-of-type(2n) > img{
    width: 100%;
    margin: 0;
}
#populargoods .populargoods-box .flex-box .plabox > .hitorime{
    display: flex;
    margin: 1rem 1rem 1rem 1rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

#populargoods .populargoods-box .plabox > hr{
    border-top: 1px solid #000000;
    margin: 0 0 1.5em 0;
}
#populargoods .populargoods-box .flex-box .plabox > .hutarime{
    display: flex;
    margin: 1rem 1rem 1rem 1rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
#populargoods .populargoods-box .place{
    z-index: 1;
    /* position: relative;  */
    /* font-size: 22px; */
    /* font-weight: 700;  */
    /* padding: 10px 14px; */
    /* display: inline-block; */
    /* color: #fff;  */
    /* box-shadow: 0 8px 16px -6px rgba(#000,0.26); */
}
#populargoods .populargoods-box .place::before{
    content: "";
    position: absolute;
    z-index: -1;
  }
  #populargoods .populargoods-box .place::after{
    content: "";
    position: absolute;
    z-index: 2;
  }
#populargoods .populargoods-box .place::before{
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	/* 背景色 */
    background-color: #FFFfff;
     /* 右上角の辺を 14px　ななめに切り抜き  */
     clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
  }


#populargoods .populargoods-box .place::after {
    top: 0%;
    right: 0%;
     /* 14 x 14 px の正方形 */
    height: 20px;
    width: 20px;
     /* 折り返し部分のカラー */
    background-color: rgba(232,109,100,1);
     /* 右上半分を切り抜き(三角形) */
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
}
#populargoods .populargoods-box .flex-box .flepla p{
    font-size: 1.1em;
}
#populargoods .populargoods-box .flex-box .place div > p{
    width: 60%;
    margin: 1em;
    font-size: 1.1em;
}
#populargoods .populargoods-box .flex-box .plabox > .hitorime span{
    font-size: 0.9em;
}
#populargoods .populargoods-box .button-box .infocen{
    background-color: rgba(232,109,100,1);
    color: #ffffff;
    margin-top: 1em;
    margin-bottom: 1em;
}
#populargoods .populargoods-box .button-box .infocen::after{
    content: "";
    background-image: url(../images/031/link_icon_w.svg);
    position: absolute;
    right: 20px;
    width: 15px;
    height: 15px;
}
#populargoods .notice{
    text-align: center;
    margin: 2em 0 0;
}
@media (max-width: 768px) {
    #populargoods .populargoods-title {
        padding: 1em;
        width: 100%;
        margin: 0 auto;
    }
    #populargoods .populargoods-box {
        width: 100%;
    }
    #populargoods .populargoods-box > p.syouhinmei{
        font-size: 1.5em;
        font-weight: bold;
        padding: 0 1em 0 1em;
        text-align: center;
        margin-bottom: 0.5rem;

    }
    #populargoods .populargoods-box .flex-box .saburesyo > img{
        display: block;
        margin: 0 auto;
        width: 100%;
    }
    #populargoods .populargoods-box .flex-box .saburesyo > div, #populargoods .populargoods-box .flex-box .syotyusyo > div{
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    #populargoods .populargoods-box .flex-box .saburesyo > div > p, #populargoods .populargoods-box .flex-box .syotyusyo > div > p{
        margin-bottom: 0;
        font-size: 1em;
        margin-top: 0.5em;
        margin-bottom: 0.5em;
    }
    #populargoods .populargoods-box .flex-box .syotyusyo > div > p:first-child{
        width: 100%;
        margin-top: 0.5em;
        margin-bottom: 0.5em;
    }
    #populargoods .populargoods-box .flex-box .syotyusyo > div > p:last-child{
        width: 100%;
        margin: 0.5em auto;
    }    
    #populargoods .populargoods-box .flex-box .flepla{
        /* background-color: #ffffff; */
        padding: 1em 1em;
        font-size: 1em;
        display: block;
        position: relative;
        max-width: 100%;
    }
    #populargoods .populargoods-box .flex-box .flepla > img{
        margin: 1em auto 1em auto;
    }
    #populargoods .populargoods-box .flex-box .flepla > p{
        margin: 2em 1em;
    }
    
    #populargoods .populargoods-box .flex-box .syotyusyo > img {
        margin-right: 2em;
        display: block;
        margin: 0 auto;
        width: 100%;
    }
    #populargoods .populargoods-box .flex-box .saburesyo,#populargoods .populargoods-box .flex-box .syotyusyo{
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: 0 auto;
    }
    #populargoods .populargoods-box .flex-box .plabox > .hitorime, #populargoods .populargoods-box .flex-box .plabox > .hutarime{
        display: flex;
        margin: 1rem 1rem 1rem 1rem;
        flex-direction: column;
        flex-wrap: wrap;
        align-items: center;
        align-content: center;
        justify-content: space-around;
    }
    #populargoods .populargoods-box > .flex-box {
        flex-direction: column;
        width: 100%;
        padding: 1em;
    }
    #populargoods .populargoods-box > .flex-box >figure, #populargoods .populargoods-box > .flex-box >div{
        width: 100%;
        margin: 0 auto;
    }
    #populargoods .populargoods-box .flex-box .place div > p{
        width: 100%;
        margin: 1em;
        font-size: 1.1em;
    }
    #populargoods .populargoods-box .flex-box .plabox div figure:nth-of-type(2n){
        margin: 0;
        width: 25%;
    }
    #populargoods .populargoods-box .flex-box .plabox div figure:nth-of-type(2n) > img{
        width: 100%;
        margin: 0;
    }
    #populargoods .populargoods-box::before{
        left: 120px;
        }
    #populargoods .populargoods-box .button-box{
        padding: 1em;
    }

}


/* --------------------------
#footer-info
-------------------------- */
#footer-info{
    padding: 2em 2em 4em 2em;
}
#footer-info button::after{
    background-image: url(../images/031/link_icon_w.svg);
}
#footer-info .narrow-width > img{
    position: relative;
    top: 0.5em;
    left: 0.5em;
}
#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/031/link_icon.svg);
    position: absolute;
    right: 10px;
    top: 15px;
    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;
    }
    #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;
    }
}

/* --------------------------
#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;
    }
}
