/* --------------------------
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/033/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: #333;
    bottom: 0;
    left: 20%;
    font-size: 1.2rem;
    text-align: center;
    font-weight: 900;
    text-shadow: #fff 1px 0 5px;
}


@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: left;
    right: 0;
    font-size: 12px;
    left: 15%;
    }

}
@media (max-width: 450px) {
    header > p {
        text-align: left;
        right: 0;
        font-size: 12px;
        left: 18%;
    }
}
/* --------------------------
    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;
    }
}

/* --------------------------
sotsugyo-nyugaku / 特集
-------------------------- */
#sotsugyo-nyugaku {
    background-color: #FCEDED;
    padding-bottom: 2em;
    padding-left: 3vw;
    padding-right: 3vw;
    padding-top: 2em;
    position: relative;
    background: repeating-linear-gradient(90deg, #FDF0F3, #FDF0F3 5px, #FFF 5px, #FFF 10px);
}
#sotsugyo-nyugaku .shiki-soto {
    width: 80%;
    margin: 7rem auto;
    position: relative;
    background-image: url(../images/033/shiki_cen.svg);
    background-repeat: repeat-y;
}
#sotsugyo-nyugaku .shiki-soto2 {
    width: 90%;
    margin: 0rem auto;
    position: relative;

}
#sotsugyo-nyugaku .shiki-soto::before {
    content: url(../images/033/shiki_bf10.svg);
    width: 100%;
    position: absolute;
    top: -3.5%;
    left: 0;
}
#sotsugyo-nyugaku .shiki-soto::after {
    content: url(../images/033/shiki_af.svg);
    width: 100%;
    position: absolute;
    bottom: -3%;
    left: 0;
}

#sotsugyo-nyugaku .sotsugyo-nyugaku-heading{
    /* background-color: #FCEDED; */
    color: #000;
    height: auto;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}
#sotsugyo-nyugaku .section-padding:nth-child(1n){
    padding: 1rem 0;
}
#sotsugyo-nyugaku .section-padding:nth-child(2n){
    padding-top: 0;
}
#sotsugyo-nyugaku .sotsugyo-nyugaku-heading .sotsugyo-nyugaku-logo {
    width: 100%;
    margin: 2rem auto 0;
}
#sotsugyo-nyugaku .sotsugyo-nyugaku-heading > .sotsugyo-nyugaku-logo img{
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
#sotsugyo-nyugaku .sotsugyo-nyugaku-heading > .sotsugyo-nyugaku-logo p {
    text-align: justify;
    font-size: 1rem;
    width: 100%;
    margin: 3rem auto 0;
    font-weight: bold;
}
#sotsugyo-nyugaku .section-padding .sotsugyoushiki h3,
#sotsugyo-nyugaku .nyugakushiki h3{
    color: #333;
    font-size: 2rem;
    text-align: left;
}
#sotsugyo-nyugaku .section-padding .sotsugyoushiki h3 span,
#sotsugyo-nyugaku .nyugakushiki h3 span {
    font-size: 1.2rem;
    padding-right: 0.5rem;
}
#sotsugyo-nyugaku .sotsugyo-nyugaku-content .subtitle {
    text-align: center;
    font-size: 1.2rem;
}
#sotsugyo-nyugaku .sotsugyo-nyugaku-content-box .nyugaku .flex-box {
    margin-top: 1rem;
}
#sotsugyo-nyugaku .sotsugyo-nyugaku-content-box .flex-box > p {
    width: 100%;
}

#sotsugyo-nyugaku .sotsugyo-nyugaku-content-box p.sotsudai,
#sotsugyo-nyugaku .sotsugyo-nyugaku-content-box p.nyudai{
    font-size: 1.1em;
    position: relative;
    padding-left: 4rem;
}
#sotsugyo-nyugaku .sotsugyo-nyugaku-content-box p.sotsudai::before,
#sotsugyo-nyugaku .sotsugyo-nyugaku-content-box p.nyudai::before{
    content: url(../images/033/shiki_sakura.svg);
    display: block;
    position: absolute;
    width: 46px;
    height: 46px;
    top: 15%;
    left: 0;
}

#sotsugyo-nyugaku .sotsugyo-nyugaku-content{
    padding: 1em 0 0;
    width: 90%;
    margin: 0 auto;
}
#sotsugyo-nyugaku .sotsugyo-nyugaku-content-box{
    margin-bottom: 1em;
}

#sotsugyo-nyugaku .sotsugyo-nyugaku-content .flex-box .figure{
    width: 90%;
    height: auto;
    margin: 0 1rem 0 0;
}
#sotsugyo-nyugaku .sotsugyo-nyugaku-content .flex-box .kaosyashin{
    width: 60%;
    height: 40%;
    margin: 2em 2em 2em 2em;
}
#sotsugyo-nyugaku .sotsugyo-nyugaku-content-box .sotsu .flex-box {
    margin-top: 1rem;
}
#sotsugyo-nyugaku .sotsugyo-nyugaku-content-box .flex-box {
    /* margin: auto; */
    /* height: 15em; */
    height: auto;
    align-content: flex-end;
    width: 100%;
}
#sotsugyo-nyugaku .sotsugyo-nyugaku-content-box .flex-item {
    flex-direction: column;
    margin: auto;
}

@media (max-width: 768px) {
    #sotsugyo-nyugaku .shiki-soto {
        width: 100%;
        margin: 5rem auto;
        position: relative;
        background-image: url(../images/033/shiki_censp2.svg);
        background-repeat: repeat-y;
    }
    #sotsugyo-nyugaku .shiki-soto2 {
        background-image: none;
    }
    #sotsugyo-nyugaku .shiki-soto::before {
        content: url(../images/033/shiki_bfsp2.svg);
        width: 100%;
        position: absolute;
        top: -2%;
        left: 0%;
    }
    #sotsugyo-nyugaku .shiki-soto::after {
        content: url(../images/033/shiki_afsp2.svg);
        width: 100%;
        position: absolute;
        bottom: -2%;
        left: 0;
    }
    #sotsugyo-nyugaku .sotsugyo-nyugaku-heading{
        display: block;
    }
    #sotsugyo-nyugaku .sotsugyo-nyugaku-heading > .sotsugyo-nyugaku-logo{
        margin: 0rem auto 1rem;
    }
    #sotsugyo-nyugaku .sotsugyo-nyugaku-heading > .sotsugyo-nyugaku-logo img{
        width: auto;
        margin: 0 auto 1em auto;
        padding-bottom: 1em;
        text-align: center;
        padding-right: 1em;
        padding-left: 1em;
    }
    #sotsugyo-nyugaku .sotsugyo-nyugaku-heading > .sotsugyo-nyugaku-logo p {
        text-align: justify;
        width: 100%;
    }
    #sotsugyo-nyugaku .sotsugyo-nyugaku-heading .section-padding{
        margin-top: 10em;
    }
    #sotsugyo-nyugaku .sotsugyo-nyugaku-heading .flex-box{
        flex-wrap: wrap;
    }
    #sotsugyo-nyugaku .sotsugyo-nyugaku-content {
        padding: 0em 1rem 0;
    }
    #sotsugyo-nyugaku .sotsugyo-nyugaku-content .flex-box > figure{
        display: block;
    }
    #sotsugyo-nyugaku .sotsugyo-nyugaku-content-box > figure{
        width: 70vw;
        margin: 1rem auto;
    }
    #sotsugyo-nyugaku .sotsugyo-nyugaku-content .sotsugyo-nyugaku-content-box{
        padding: 1em;
        margin-bottom: 0;
        max-width: 100%;
    }
    #sotsugyo-nyugaku .sotsugyo-nyugaku-content .sotsugyo-nyugaku-content-box .flex-box{
        flex-wrap: nowrap;
        flex-direction: column;
        max-width: 100vw;
        height: auto;
        margin: 0 auto;
        align-items: center;
    }
    #sotsugyo-nyugaku .sotsugyo-nyugaku-content .flex-box .figure {
        width: 100%;
        height: auto;
        margin: 0px auto;
    }
    #sotsugyo-nyugaku .sotsugyo-nyugaku-content .sotsugyo-nyugaku-content-box .flex-box img{
        display: block;
        width: 100%;
        margin: 0.5em auto;
    }
    #sotsugyo-nyugaku .sotsugyo-nyugaku-content .flex-box .kaosyashin {
        width: 40%;
        height: 40%;
        margin: 2em 2em 2em 2em;
    }
    #sotsugyo-nyugaku .sotsugyo-nyugaku-content .sotsugyo-nyugaku-content-box .flex-box > .flex-item{
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }
    #sotsugyo-nyugaku .sotsugyo-nyugaku-content .sotsugyo-nyugaku-content-box .flex-box > .flex-item > p:last-child{
        margin-bottom: 0;
    }
    #sotsugyo-nyugaku .sotsugyo-nyugaku-content-box p.sotsudai,
    #sotsugyo-nyugaku .sotsugyo-nyugaku-content-box p.nyudai{
        text-align: justify;
    }
}
@media (max-width: 450px) {
    #sotsugyo-nyugaku {
        padding-top: 2rem;
    }
    #sotsugyo-nyugaku .shiki-soto::before {
        content: url(../images/033/shiki_bfsp2.svg);
        width: 100%;
        position: absolute;
        top: -1%;
        left: 0%;
    }
    #sotsugyo-nyugaku .shiki-soto {
        width: 100%;
        margin: 2rem auto;
        position: relative;
        background-image: url(../images/033/shiki_censp2.svg);
        background-repeat: repeat-y;
    }
    #sotsugyo-nyugaku .shiki-soto::after {
        content: url(../images/033/shiki_afsp2.svg);
        width: 100%;
        position: absolute;
        bottom: -1%;
        left: 0;
    }
    #sotsugyo-nyugaku .sotsugyo-nyugaku-heading .sotsugyo-nyugaku-logo {
        width: 100%;
    }
    #sotsugyo-nyugaku .sotsugyo-nyugaku-heading > .sotsugyo-nyugaku-logo img {
        width: 100%;
    }
    #sotsugyo-nyugaku .sotsugyo-nyugaku-heading > .sotsugyo-nyugaku-logo p {
        text-align: justify;
        width: 90%;
    }
    #sotsugyo-nyugaku .section-padding .sotsugyoushiki h3,
    #sotsugyo-nyugaku .nyugakushiki h3{
        color: #333;
        font-size: 2rem;
        text-align: center;
        line-height: 1.2;
    }
    #sotsugyo-nyugaku .section-padding .sotsugyoushiki h3 span, 
    #sotsugyo-nyugaku .nyugakushiki h3 span {
        padding-right: 0;

    }
    #sotsugyo-nyugaku .sotsugyo-nyugaku-content-box p.sotsudai::before,
    #sotsugyo-nyugaku .sotsugyo-nyugaku-content-box p.nyudai::before{
        content: url(../images/033/shiki_sakura.svg);
        display: block;
        position: absolute;
        width: 40px;
        height: 40px;
        top: 15%;
        left: 0;
    }
    #sotsugyo-nyugaku .sotsugyo-nyugaku-content .flex-box .kaosyashin {
        width: 50%;
        height: 50%;
        margin: 1rem;
    }
    #sotsugyo-nyugaku .sotsugyo-nyugaku-content-box p.sotsudai, 
    #sotsugyo-nyugaku .sotsugyo-nyugaku-content-box p.nyudai {
        text-align: justify;
        padding-left: 3rem;
    }
}



/* --------------------------
kaigai-ryugaku / 先輩に後輩が聞いてみた
-------------------------- */
#kaigai-ryugaku{
    padding-bottom: 2em;
    padding-left: 3vw;
    padding-right: 3vw;
    position: relative;
    margin-bottom: 0em;
    padding-top: 2rem;
}
#kaigai-ryugaku .section-padding{
    padding-bottom: 2em;
    /* border: 3px solid #00A29A; */
    border-radius: 10px;
    position: relative;
    top: 7em;
    z-index: 10;
    padding-top: 0;
    width: 90%;
}
#kaigai-ryugaku .kaigai-soto {
    width: 80%;
    margin: 5rem auto 8rem;
    position: relative;
    height: 100rem;
}
#kaigai-ryugaku .kaigai-soto2 {
    width: 100%;
    margin: 0rem auto;
    position: relative;
    background-image: url(../images/033/ryugaku_cen.svg);
    background-repeat: repeat-y;
    height: 100%;
}
#kaigai-ryugaku .kaigai-soto::before {
    content: url(../images/033/ryugaku_bf.svg);
    width: 100%;
    position: absolute;
    top: -4%;
    left: 0;
}
#kaigai-ryugaku .kaigai-soto::after {
    content: url(../images/033/ryugaku_af.svg);
    width: 100%;
    position: absolute;
    bottom: -6%;
    left: 0;
}
#kaigai-ryugaku .kaigai_title {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 5;
    background-color: #fff;
    width: 50%;
}
#kaigai-ryugaku .kaigai_title img{
    text-align: center;
    margin:  0 auto;
    width: 100%;
}
#kaigai-ryugaku .kaigai_box_in p{
    text-align: justify;
    font-weight: bold;
    /* margin: 5% auto; */
}
#kaigai-ryugaku .kaigai-content-box { 
    position: relative;
}
#kaigai-ryugaku .kaigai-content-box .kaigai-ctbox{ 
    position: relative;
    margin-top: 1rem;
}
#kaigai-ryugaku .kaigai-content-box .kaigai-ctbox h3{ 
    color: #005BAC;
}
#kaigai-ryugaku .kaigai-content-box .kaigai-ctbox .kaigai-contebox-flex{ 
    position: relative;
}
#kaigai-ryugaku .kaigai-content-box .kaigai-ctbox .kaigai-contebox-flex .fle-p{ 
    width: 90%;
}
#kaigai-ryugaku .kaigai-content-box .kaigai-ctbox .kaigai-contebox-flex figure {
    width: 100%;
    margin-left: 1rem;
}
#kaigai-ryugaku .kaigai-content-box .kaigai-ctbox .kaigai-contebox-flex figure figcaption { 
    font-size: 0.9rem;
}

#kaigai-ryugaku .kaigai-content-box .kaigai-inte-box .bg-momo {
    background-color: #FAD9E0;
    width: 45%;
    border-radius: 5px 0 0 5px;
    position: absolute;
    top: 0;
    left: 2.6em;
}
#kaigai-ryugaku .kaigai-content-box .kaigai-inte-box .flex-box {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
#kaigai-ryugaku .kaigai-contebox-flex {
    display: flex;
    flex-direction: row;

}
#kaigai-ryugaku .t-center p{
    text-align: center;
    margin-bottom: 10%;
}

#kaigai-ryugaku .section-padding .button-box .kouhen{
    background-color: #005BAC;
    color: #fff;
    z-index: 10;
}
#kaigai-ryugaku .section-padding .button-box .kouhen::after{
    content: "";
    background-image: url(../images/033/link_icon_w.svg);
    position: absolute;
    right: 20px;
    width: 15px;
    height: 15px;
}
@media (max-width: 768px) {
    #kaigai-ryugaku {
        padding-bottom: 3rem;
    }
    #kaigai-ryugaku .kaigai_title{
        position: absolute;
        top: -2rem;
        left: 50%;
        transform: translate(-50%, 0);
        z-index: 10;
        background-color: #fff;
        width: 60%;
    }
    #kaigai-ryugaku .kaigai_title img {
        text-align: center;
        margin: 0 auto;
        width: 100%;
    }

    #kaigai-ryugaku .section-padding {
        padding-bottom: 0;
        position: relative;
        width: 90%;
        top: 0;
        padding-top: 4rem;
    }
    #kaigai-ryugaku .kaigai-soto {
        width: 100%;
        margin: 5rem auto;
        position: relative;
        background-image: url(../images/033/ryugaku_censp2.svg);
        background-repeat: repeat-y;
        height: 100%;
    }
    #kaigai-ryugaku .kaigai-soto2 {
        background-image: none;
    }
    #kaigai-ryugaku .kaigai-soto::before {
        content: url(../images/033/ryugaku_bfsp3.svg);
        width: 100%;
        position: absolute;
        top: -4%;
        left: 0;
    }
    #kaigai-ryugaku .kaigai-soto::after {
        content: url(../images/033/ryugaku_afsp3.svg);
        width: 100%;
        position: absolute;
        bottom: -4%;
        left: 0;
    }
    #kaigai-ryugaku .kaigai-content-box {
        width: 100%;
        margin: 1rem auto;
    }
    #kaigai-ryugaku .kaigai-content-box .kaigai-ctbox .kaigai-contebox-flex {
        flex-direction: column;
    }
    #kaigai-ryugaku .kaigai-content-box .kaigai-ctbox .kaigai-contebox-flex figure {
        margin-left: 0;
    }

    #kaigai-ryugaku .kaigai-content-box .kaigai-ctbox .kaigai-contebox-flex .fle-p{ 
        width: 100%;
    }
    #kaigai-ryugaku .section-padding .button-box .kouhen{
        background-color: #005BAC;
        color: #fff;
        z-index: 10;
        margin: 1rem auto 0;
        font-size: 0.7rem;
        padding: 1rem 3rem 1rem 2rem;
    }

}
@media (max-width: 450px) {
    #kaigai-ryugaku .kaigai_title {
        position: absolute;
        top: -3rem;
        left: 50%;
        transform: translate(-50%, 0);
        z-index: 5;
        background-color: #fff;
        width: 75%;
    }
    #kaigai-ryugaku .section-padding {
        padding-bottom: 0;
        position: relative;
        width: 90%;
        top: 0;
        padding-top: 1rem;
    }
    #kaigai-ryugaku .kaigai-soto::after {
        content: url(../images/033/ryugaku_afsp3.svg);
        width: 100%;
        position: absolute;
        bottom: -3%;
        left: 0;
    }
}

/* --------------------------
club-circle / サークル紹介
-------------------------- */
#club-circle{
    padding-left: 3vw;
    padding-right: 3vw;
    padding-bottom: 5rem;
    max-width: 100%;
    background: repeating-linear-gradient(135deg, #eaf5f5, #eaf5f5 5px, #FFF 5px, #FFF 10px);
    padding-top: 5rem;
}
#club-circle .section-padding{
    padding-bottom: 0.5em;
    padding-left: 0.5em;
    padding-right: 0.5em;
    margin-top: 2rem;
    position: relative;
}
#club-circle .ccbox {
    background-color: #FFF;
    width: 80%;
    margin: 0 auto;
}
#club-circle .club-circle-title > img{
    width: 60%;
    margin: -10rem auto 2.5em auto;
    position: relative;
}
#club-circle .club-circle-box{
    /* margin-top: 1em; */
    /* margin-bottom: 2em; */
}
#club-circle .club-circle-box .fle-colum {
    display: flex;
    flex-direction: column;
    width: 90%;
}
#club-circle .club-circle-box.flex-box{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    /* margin-left: 0em; */
    align-items: flex-start;
    position: relative;
}
#club-circle .club-circle-box.flex-box:nth-child(2n+1) { 
    flex-direction: row-reverse; /* 奇数番目は左から右へ並べる */  
    margin: 4rem auto;
}
#club-circle .club-circle-box.flex-box:nth-child(2n+1)::before{
    content: url(../images/033/club_circle_line.svg);
    display: block;
    position: absolute;
    top: -18%;
    left: 0;
    width: 100%;
    height: auto;
}
#club-circle .club-circle-box.flex-box:nth-child(2n+1)::after{
    content: url(../images/033/club_circle_line.svg);
    display: block;
    position: absolute;
    bottom: -18%;
    left: 0;
    width: 100%;
    height: auto;
    transform: scaleX(-1);
}
#club-circle .club-circle-box.flex-box:last-child::after {
    content: none;
}
#club-circle .club-circle-box.flex-box:nth-child(2n) { 
    flex-direction: row;
}

#club-circle .club-circle-box .shigakujovoll,
#club-circle .club-circle-box .syorinji,
#club-circle .club-circle-box .kyudou,
#club-circle .jazzband,
#club-circle .owarai,
#club-circle .syuwa{
    position: relative;
}

#club-circle .club-circle-box .txtbl{
    position: relative;
    left: 0; 
    margin-top: 0;
    font-weight: bold;
}
#club-circle .club-circle-box p {
    margin-bottom: 0;
    /* margin-left: 3em; */
}
#club-circle .club-circle-box .clubname {
    font-size: 1.3rem;
    margin-left: 4rem;
    text-align: left;
}

#club-circle .club-circle-box figure{
    width: 70%;
    margin-top: 0em;
    padding-left: 1rem;
    padding-right: 1rem;
}
#club-circle .club-circle-box .flex-box p.stmi {
    width: 90%;
}
#club-circle .club-circle-box .club_aomidori {
    position: relative;
    margin-left: 5.2rem;
    text-align: left;
}
/* アイコン */
#club-circle .shigakujovoll::before,
#club-circle .syorinji::before,
#club-circle .kyudou::before,
#club-circle .jazzband::before,
#club-circle .owarai::before,
#club-circle .syuwa::before{
    position: absolute;
    content: "";
    top: 20px;
    left: 0;
    width: 55px;
    height: 55px;
}
#club-circle .shigakujovoll::before{background-image: url(../images/033/club_icon_shigakujovoll.svg);}
#club-circle .syorinji::before{background-image: url(../images/033/club_icon_syorinji.svg);}
#club-circle .kyudou::before{background-image: url(../images/033/club_icon_kyudou.svg);}
#club-circle .jazzband::before{background-image: url(../images/033/club_icon_jazzband.svg);}
#club-circle .owarai::before{background-image: url(../images/033/club_icon_owarai.svg);}
#club-circle .syuwa::before{background-image: url(../images/033/club_icon_syuwa.svg);}


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




@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 0em;
        padding:2em 1em 0em 1em;
    }
    #club-circle .club-circle-title > img {
        width: 80%;
        margin: -7rem auto 2.5em auto;
    }
    #club-circle .club-circle-box.flex-box {
        flex-direction: column-reverse;
        padding: 2em 0;
    }
    #club-circle .club-circle-box.flex-box:nth-child(2n) { 
        flex-direction: column;
        align-items: center;
    }
    #club-circle .club-circle-box.flex-box:nth-child(2n+1) { 
        flex-direction: column; /* 奇数番目は左から右へ並べる */  
        margin: 3rem auto;
        align-items: center;
    }
    #club-circle .club-circle-box.flex-box:nth-child(2n+1)::before{
        content: url(../images/033/club_circle_linesp.svg);
        top: -7%;
        left: 0;
    }
    #club-circle .club-circle-box.flex-box:nth-child(2n+1)::after{
        content: url(../images/033/club_circle_linesp.svg);
        bottom: -7%;
        left: 0;
    }
    #club-circle .club-circle-box.flex-box:last-child::after {
        content: none;
    }
    #club-circle .club-circle-box > figure {
        width: 100%;
        padding: 0 1em 0 1em;
    }
    #club-circle .club-circle-box > figure > img{
        margin: 0 auto;
        width: 100%;
    }
    #club-circle .shigakujovoll::before,
    #club-circle .syorinji::before,
    #club-circle .kyudou::before,
    #club-circle .jazzband::before,
    #club-circle .owarai::before,
    #club-circle .syuwa::before{
        position: absolute;
        content: "";
        top: 15px;
        left: 0;
        width: 55px;
        height: 55px;
    }

    #club-circle .club-circle-box > div {
        width: 100%;
    }
}


@media (max-width: 450px) {
    #club-circle {
        padding-top: 2rem;
        padding-bottom: 1rem;
    }
    #club-circle .club-circle-title > img {
        width: 90%;
        margin: -5rem auto 1.5em auto;
        position: relative;
    }
    #club-circle .ccbox {
        background-color: #FFF;
        width: 90%;
        margin: 0 auto;
    }
    #club-circle .club-circle-box .clubname {
        font-size: 1.1rem;
    }

}

/* --------------------------
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: 100%;
    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.8em;
    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 {
        flex-direction: column;
    }
    #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: 85%;
    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/033/ninetopics_hobun.svg);}
#ninetopics .kyoiku::before{background-image: url(../images/033/ninetopics_kyoiku.svg);}
#ninetopics .rigaku::before{background-image: url(../images/033/ninetopics_rigaku.svg);}
#ninetopics .igaku::before{background-image: url(../images/033/ninetopics_igaku.svg);}
#ninetopics .sigaku::before{background-image: url(../images/033/ninetopics_sigaku.svg);}
#ninetopics .kogaku::before{background-image: url(../images/033/ninetopics_kogaku.svg);}
#ninetopics .nogaku::before{background-image: url(../images/033/ninetopics_nogaku.svg);}
#ninetopics .suisangaku::before{background-image: url(../images/033/ninetopics_suisangaku.svg);}
#ninetopics .kyodozyuigaku::before{background-image: url(../images/033/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: 90%;
        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: 1.3;
        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: 48%;
}
#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: 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: 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;
    }
}

/* --------------------------
sattsun10years / さっつん10周年 
-------------------------- */
#sattsun10years{
  /* background-color: var(--color-supportersfav-bg); */
  overflow-x: hidden;
  background-color: #FFF6CC;
    /* 方眼紙模様に必須のスタイル */
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;
}
button.infocen {
    background-color: #FADBC8;
}
#sattsun10years .sattsun-title {
    padding: 2rem 0 0;
}
#sattsun10years .sattsun-title p {
    text-align: center;
    margin-top: 1rem;
}

#sattsun10years .myfav_bg {

}
#sattsun10years .sattsun-box {
    padding: 0.5rem 0 0;
    position: relative;
}
#sattsun10years .sattsun-box:nth-of-type(2) {
    margin: 2rem 0;
    position: relative;
}

#sattsun10years .sattsun-box figure{
    width: 100%;
    margin-top: 0em;
    padding-left: 0em;
}
#sattsun10years .sattsun-box figure img {
    width: 100%;
}
#sattsun10years .middle-width .button-box {
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    #sattsun10years .sattsun-title {
        padding: 2rem 0 1rem;
        width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-end;
    }
    #sattsun10years .sattsun-title img {
        /* padding: 2em 0 1em 0; */
        margin: 0 auto;
        width: 60%;
    }
    #sattsun10years .sattsun-box {
        width: 100%;
    }

    #sattsun10years .sattsun-box > .flex-box {
        flex-direction: column-reverse;
        width: 90%;
        padding: 0em;
        margin: 3em auto;
    }
    #sattsun10years .sattsun-box > .flex-box >figure,
    #sattsun10years .sattsun-box > .flex-box >div{
        width: 100%;
        margin: 0 auto;
    }

    #sattsun10years .middle-width .button-box {
        margin-top: 3rem;
    }
}

@media (max-width: 450px) {
    #sattsun10years .sattsun-title img {
        /* padding: 2em 0 1em 0; */
        margin: 0 auto;
        width: 80%;
    }
    #sattsun10years .sattsun-title p {
        text-align: left;
        margin-top: 1rem;
    }
}

/* --------------------------
r6-schedule / 令和6年度学事日程 
-------------------------- */
#r6-schedule{
    background-color: #E6F0F8;
}
#r6-schedule .section-padding{
    padding-left: 3vw;
    padding-right: 3vw;
}
#r6-schedule .r6-schedule_lead{
    margin-bottom: 2em;
    padding-top: 2em;
}

#r6-schedule .r6-schedule_title  .ribbon {
    position: relative;
    display: inline-block;
    height: 60px;
    line-height: 60px;
    padding: 0 0px 0 0px;
    background-color: #206A83;
    color: #fff;
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    /* top: 1em; */
    /* left: -0.8em; */
    border-radius: 0 30px 30px 0;
}
#r6-schedule .r6-schedule_title  .ribbon2 {
    position: relative;
    display: inline-block;
    height: 60px;
    line-height: 60px;
    padding: 0 0px 0 0px;
    background-color: #206A83;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    /* top: 1em; */
    /* left: -0.8em; */
    border-radius: 0 30px 30px 0;
}
  
#r6-schedule .r6-schedule_title  .ribbon:before {
    position: absolute;
    content: '';
    top: 100%;
    left: 0;
    border: none;
    border-bottom: solid 15px transparent;
    border-right: solid 20px #221714;/*折り返し部分*/
}
#r6-schedule .r6-schedule_title  .ribbon2:before {
    position: absolute;
    content: '';
    top: 100%;
    left: 0;
    border: none;
    border-bottom: solid 15px transparent;
    border-right: solid 20px #221714;/*折り返し部分*/
}
#r6-schedule .r6-schedule_title  .ribbon span {
    padding: 0.5rem 2rem;
}
#r6-schedule .r6-schedule_title  .ribbon2 span {
    padding: 0.5rem 2rem;
}

#r6-schedule .r6-schedule-content-box {
    margin-top: 1rem;
}
#r6-schedule .r6-schedule-content-box.mgtop{
    margin-top: 3rem;
}

#r6-schedule .r6-schedule-content-box .tbl {
    border-collapse: collapse;
    border: none;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}
#r6-schedule .r6-schedule-content-box .tbl th {
    background-color: #4D889D;
    color: #FFFFFF;
    border-radius: 5px 5px 0 0;
    padding: 0.5rem;
}
#r6-schedule .r6-schedule-content-box .tbl td {
    padding: 0.5rem;
    /* border: 1px solid #216A84; */
    border: none;
    border-left: 1px solid #216A84;
    border-top: 1px solid #216A84;
    background-color: #FFFFFF;
}
#r6-schedule .r6-schedule-content-box .tbl .tdminwid {
    min-width: 12rem;
}
#r6-schedule .r6-schedule-content-box td:first-child,th:first-child{
    border-left:none;
}
#r6-schedule .r6-schedule-content-box tr:first-child td, #r6-schedule .r6-schedule-content-box tr:first-child th{
    border-top:none;
}
#r6-schedule .r6-schedule-content-box tr:nth-of-type(2) td, #r6-schedule .r6-schedule-content-box tr:nth-of-type(2) th{
    border-top:none;
}
#r6-schedule .r6-schedule-content-box tr:last-child td, #r6-schedule .r6-schedule-content-box tr:last-child th{
    border-bottom: 1px solid #216A84;
}

#r6-schedule .tbl-kome {
    margin-top: 1rem;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    text-indent: -2.5rem;
    padding-left: 2.5rem;
}
#r6-schedule .tbl-kome span {
    text-indent: -2.5rem;
    display: inline-block;
}

@media (max-width: 768px) {
    .pc-none2 {
        display: none;
    }
    #r6-schedule .r6-schedule_title{
        padding-left: 0;
        margin: 0 auto;
    }
    #r6-schedule .r6-schedule_title img{
        margin: 0 auto;
        /* text-align: center; */
        margin-bottom: 2em;
        padding-left: 0;
    }
    #r6-schedule .r6-schedule_lead{
        margin-bottom: 2em;
        padding: 1em;
    }
    #r6-schedule .r6-schedule_title  .ribbon span{
        font-size: 1.5rem;
        padding: 0.5rem 2rem;
    }
    #r6-schedule .r6-schedule_title  .ribbon2 span{
        font-size: 1.5rem;
        padding: 0;
    }
    #r6-schedule .r6-schedule_lead > figure{
        width: 60%;
        margin: 0 auto;
    }

    #r6-schedule .r6-schedule_title .ribbon2 {
        position: relative;
        display: inline-block;
        height: 110px;
        line-height: 45px;
        padding: 0.5rem 2rem; 
        background-color: #206A83;
        color: #fff;
        font-size: 26px;
        font-weight: bold;
        text-align: left;
        top: 1em;
        left: 0;
        border-radius: 0 60px 60px 0;
    }
    #r6-schedule .r6-schedule_title  .ribbon2:before {
        position: absolute;
        content: '';
        top: 100%;
        left: 0;
        border: none;
        border-bottom: solid 15px transparent;
        border-right: solid 20px #221714;/*折り返し部分*/
    }
    #r6-schedule .r6-schedule_title  .ribbon {
        position: relative;
        display: inline-block;
        height: 60px;
        line-height: 45px;
        padding: 0.5rem 2rem;
        background-color: #206A83;
        color: #fff;
        font-size: 26px;
        font-weight: bold;
        text-align: center;
        /* top: 1em; */
        /* left: -0.8em; */
        border-radius: 0 30px 30px 0;
    }
    #r6-schedule .r6-schedule-content-box .tbl {
        border-collapse: collapse;
        border: none;
        width: 75%;
        margin-left: auto;
        margin-right: auto;
    }
    #r6-schedule .r6-schedule-content-box .tbl .tdminwid {
        min-width: 10rem;
    }
    #r6-schedule .r6-schedule-content-box .tbl .tdmaxwid {
        max-width: 70%;
    }
    #r6-schedule .tbl-kome {
        margin-top: 1rem;
        width: 75%;
        margin-left: auto;
        margin-right: auto;
        text-indent: -2.2rem;
        padding-left: 2.2rem;
    }
    #r6-schedule .tbl-kome span {
        text-indent: -2.2rem;
        display: inline-block;
    }
    #r6-schedule .r6-schedule-footing p{
        text-align: center;
        margin: 0 1em 0 1em;
    }

}
@media (max-width: 450px) {

    #r6-schedule .r6-schedule_title  .ribbon2 span{
        display: inline-block;
        padding: 1rem 0 1rem 0rem;
        margin-left: 0rem;
        font-size: 1.3rem;
    }
    #r6-schedule .r6-schedule_title .ribbon2 {
        position: relative;
        display: inline-block;
        height: 100px;
        line-height: 1.3;
        padding: 0.5rem 2rem; 
        background-color: #206A83;
        color: #fff;
        font-size: 24px;
        font-weight: bold;
        text-align: left;
        top: 0em;
        left: 0;
        border-radius: 0 60px 60px 0;
        width: 100%;
    }
    #r6-schedule .r6-schedule_title .ribbon2.spribbon {
        padding: 0.5rem 0rem 0.5rem 2rem;
    }
    #r6-schedule .r6-schedule_title .ribbon2.spribbon span {
        padding: 1rem 0;
    }
    #r6-schedule .r6-schedule_lead > figure {
        width: 60%;
        margin: 0 auto 0 10%;
    }
    #r6-schedule .r6-schedule-content-box .tbl {
        border-collapse: collapse;
        border: none;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    #r6-schedule .r6-schedule-content-box .tbl .tdminwid {
        min-width: auto;
        width: 45%;
    }
    #r6-schedule .r6-schedule-content-box .tbl .tdmaxwid {
        max-width: auto;
    }
    #r6-schedule .tbl-kome {
        margin-top: 1rem;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        font-size: 12px;
        padding-left: 2rem;
        text-indent: -2rem;
    }
    #r6-schedule .tbl-kome span {
        text-indent: -2rem;
        display: inline-block;
    }
}

/* --------------------------
#footer-info
-------------------------- */
#footer-info{
    padding: 2em 2em 4em 2em;
}
#footer-info button::after{
    background-image: url(../images/033/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/033/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/033/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/033/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;
}
.pc-none2 {
    display: none;
}

/* figcaption {
    line-height: 1.5em;
    margin-top: 0.5em;
} */
figcaption > b >span{
    font-size: 1.3em;
}
.txt-ind {
    text-indent: 1rem;
}
span.txt-ind {
    display: inline-block;
}
@media (max-width: 768px) {
    .sp-none{
        display: none;
    }
    .pc-none {
        display: block;
    }
}
@media(max-width: 450px) {
    .pc-none2 {
        display: block;
    }
}
