/* --------------------------
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/034/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: var(--color-introduction-bg);
    /* left: 0;
    z-index: 254; */
    transition: all 0.3s ease;
    position: relative;
}

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


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

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

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

}

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

/* --------------------------
    header-logo
-------------------------- */
#header-logo {
    position: relative;
    padding-bottom: 2rem;
    }
    
#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;
    }
}
#header-logo .flex-box.header-image {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: 3rem;
    gap: 10px;
}
#header-logo .flex-box.header-image img {
    width: 30%;
}
#header-logo .flex-box.header-image p {
    width: 30%;
    font-weight: bold;
}

@media (max-width: 450px){
    #header-logo .flex-box.header-image {
        justify-content: center;
        align-items: center;
        margin-top: 3rem;
        gap: 10px;
        flex-direction: column;
    }
    #header-logo .flex-box.header-image img {
        width: 50%;
    }
    #header-logo .flex-box.header-image p {
        width: 80%;
        font-weight: bold;
    }
}
/* --------------------------
    index
-------------------------- */
#index {
    padding-bottom: 2em;
    padding-top: 2rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/* --------------------------
pickup / 特集
-------------------------- */
#tokusyu_syukatsu {
    padding-top: 2em;
    background-color: #fef9f2;
}
#tokusyu_syukatsu .syukatsu-heading{
    color: #333;
    height: auto;
    width: 70%;
    margin: auto;
    margin-top: 2em;
    position: relative;
    background:
    /* 左上の水平線 */
        linear-gradient(to right, black 100%, transparent 50%) top left / 250px 2px no-repeat,
    /* 左上の垂直線 */
        linear-gradient(to bottom, black 100%, transparent 50%) top left / 2px 60px no-repeat;
}
#tokusyu_syukatsu .syukatsu-heading::before {
    position: absolute;
    top: -1.2em;
    left: 2em;
    content: '';/*何も入れない*/
    display: inline-block;
    width: 6em;/*画像の幅*/
    height: 10em;/*画像の高さ*/
    background-image: url(../images/034/intern_tokusyu2.svg);
    background-size: contain;
    vertical-align: middle;
    background-repeat: no-repeat;
}
#tokusyu_syukatsu .section-padding {
    padding-bottom: 3em;
}

#tokusyu_syukatsu .syukatsu-heading .narrow-width.section-padding{
    position: relative;
    padding-top: 1em;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
}

#tokusyu_syukatsu .syukatsu-heading .narrow-width.section-padding > .flex-box-none {
    margin-top: 4em;
}

#tokusyu_syukatsu .syukatsu-heading .narrow-width.section-padding .flex-box-none p:first-child {
    font-weight: bold;
}
#tokusyu_syukatsu .syukatsu-heading .syukatsu_zensen {
    width: 90%;
    margin: 1em auto;
    text-align: center;
}
#tokusyu_syukatsu .section-padding .flex-box{
    padding-top: 3em;
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    width: 90%;
    margin: 1em auto;
}
#tokusyu_syukatsu .section-padding .flex-box .flex-box-none {
    display: block;
    width: 30%;
    padding-left: 0.5em;
    margin-left: 0.5em;
}

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

#tokusyu_syukatsu .syukatsu-heading .flex-box > figure figcaption{
font-size: 0.85em;
}
#tokusyu_syukatsu .syukatsu-content-box .syukatsu-content-box-in h2{
    color: #F08300;
    padding: 0.5em 0 0 1em;
    background:
    /* 左上の水平線 */
     linear-gradient(to right, black 100%, transparent 50%) top left / 250px 2px no-repeat,
    /* 左上の垂直線 */
     linear-gradient(to bottom, black 100%, transparent 50%) top left / 2px 60px no-repeat;
}
#tokusyu_syukatsu .syukatsu-content-box .syukatsu-content-box-in:nth-of-type(4) h2,
#tokusyu_syukatsu .syukatsu-content-box .syukatsu-content-box-in:nth-of-type(5) h2 {
    background: none;
    padding: 0.5em 0 0 0;
}
#tokusyu_syukatsu .syukatsu-content-box .syukatsu-content-box-in:nth-of-type(2) {
    margin-top: 2em;
}
#tokusyu_syukatsu .syukatsu-content{
    background-color: #fef9f2;
    padding-top: 1em;
}
#tokusyu_syukatsu .syukatsu-content .syukatsu-content-box{
    padding-bottom: 5em;
}
#tokusyu_syukatsu .syukatsu-content-box .syukatsu-content-box-in:nth-of-type(4) {
    padding-top: 2em;
}
#tokusyu_syukatsu .syukatsu-content .syukatsu-content-box .syukatsu-content-box-in p {
    padding-top: 1em;
    line-height: 1.8;
    font-size: 1.1rem;
    width: 100%;
}
#tokusyu_syukatsu .syukatsu-content .syukatsu-content-box .syukatsu-content-box-in .box-in-p {
    padding-bottom: 0;
    margin-bottom: 0;
}
#tokusyu_syukatsu .syukatsu-content .syukatsu-content-box .syukatsu-content-box-in .box-in-flex-p {
    padding-top: 0;
    padding-bottom: 0;
}
#tokusyu_syukatsu .syukatsu-content .flex-box .box-in-flex-div {
    width: 90%;

}
#tokusyu_syukatsu .syukatsu-content .flex-box .box-in-flex-div figure{
    width: 100%;
    height: auto;
    margin: 0;
}
#tokusyu_syukatsu .syukatsu-content .flex-box .box-in-flex-div figcaption {
    text-align: center;
}
#tokusyu_syukatsu .syukatsu-content-box .flex-box-nowrap {
    align-content: flex-end;
    width: 100%;
    gap: 2rem;
    display: flex;
    justify-content: center;
}
#tokusyu_syukatsu .syukatsu-content-box  .syukatsu-content-box-in .flex-box {
    align-content: flex-end;
    width: 100%;
    gap: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
#tokusyu_syukatsu .syukatsu-content-box .flex-box picture {
    display: block;
    width: 40%;
}
#tokusyu_syukatsu .syukatsu-content-box .flex-box .flex-box-none  {
    display: block;
    width: 25%;
}
#tokusyu_syukatsu .syukatsu-content-box .flex-box .flex-box-none figure {
    width: 100%;
}
#tokusyu_syukatsu .syukatsu-footing .section-padding{
    padding: 1em 1em;
}
#tokusyu_syukatsu div.syukatsu-footing{
    width: 100%;
    background-color: rgba(240,131,0,0.3);
    text-align: center;
}
#tokusyu_syukatsu .syukatsu-footing > .section-padding h3{
    text-align: center;
    margin-top: 0.5em;
}
#tokusyu_syukatsu .syukatsu-footing p{
    text-align: center;
    margin: 0 1em 0 1em;
}
#tokusyu_syukatsu .syukatsu-footing .button-box .gakubusyusyoku{
    background-color: #ffffff;
    color: #000000;
    margin-top: 1em;
    margin-bottom: 1em;
}
.r6-schedule-content-box .tbl {
    border-collapse: collapse;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.r6-schedule-content-box .tbl tr {
    border-top: 1px solid #333;
    border-left: 1px solid #333;
    border-right: 1px solid #333;
}
.r6-schedule-content-box .tbl tr:last-child {
    border-bottom: 1px solid #333;
}
.r6-schedule-content-box .tbl th {
    background-color: #f08300;
    color: #FFFFFF;
    padding: 0.5rem;
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
}
.r6-schedule-content-box .tbl th:first-child,
.r6-schedule-content-box .tbl td:first-child {
    background-color: #fce6cc;
    color: #333;
}
.r6-schedule-content-box .tbl td {
    padding: 0.5rem;
    border: none;
    border-left: 1px solid #333;
    border-top: 1px solid #333;
    background-color: #FFFFFF;
    text-align: center;
}
.r6-schedule-content-box .tbl .tdminwid {
    min-width: 12rem;
}
.r6-schedule-content-box tr:first-child th{
    min-width: 7rem;
}
.r6-schedule-content-box tr th.minwidth2{
    min-width: 11rem;
}
.r6-schedule-content-box tr th.minwidth3{
    min-width: 11rem;
}
.r6-schedule-content-box tr th.minwidth4{
    min-width: 11rem;
}
.r6-schedule-content-box tr th.minwidth5{
    min-width: 9rem;
}
.r6-schedule-content-box td:first-child,th:first-child{
    border-left:none;
}
.r6-schedule-content-box tr:first-child td, .r6-schedule-content-box tr:first-child th{
    border-top:none;
}
.r6-schedule-content-box tr:nth-of-type(2) td, .r6-schedule-content-box tr:nth-of-type(2) th{
    border-top:none;
}
.r6-schedule-content-box tr:last-child td{
    border-bottom: none;
}
.r6-schedule-content-box .tbl th:last-child {
    border-right: none;
}
@media (max-width: 768px) {
    #tokusyu_syukatsu .syukatsu-heading {
        color: #333;
        height: auto;
        width: 90%;
        margin: auto;
        margin-top: 2em;
        position: relative;
        background:
        /* 左上の水平線 */
        linear-gradient(to right, black 100%, transparent 50%) top left / 250px 2px no-repeat,
        /* 左上の垂直線 */
        linear-gradient(to bottom, black 100%, transparent 50%) top left / 2px 60px no-repeat;
    }
    #tokusyu_syukatsu .syukatsu-heading::before {
        top: -1.2em;
        left: 2em;
        width: 6em;
        height: 10em;
    }
    #tokusyu_syukatsu .syukatsu-heading > .syukatsu-logo .hanen_logo {
        width: 20%;
    }
    #tokusyu_syukatsu .syukatsu-heading > .syukatsu-logo .tokusyu_logo {
        margin-top: -5em;
        margin-bottom: 5em;
        width: 8%;
        top: 5.5rem;
        left: 50%;
        transform: translate(-50%, 0);
    }
    #tokusyu_syukatsu .syukatsu-heading .syukatsu_zensen {
        width: 60%;
        margin: 0 auto;
        text-align: center;
    }
    #tokusyu_syukatsu .syukatsu-heading .section-padding{
        margin-top: 0em;
    }
    #tokusyu_syukatsu .section-padding .flex-box p {
        width: 90%;
        font-size: 1.2rem;
        line-height: 1.5;
    }
    #tokusyu_syukatsu .syukatsu-heading .flex-box > figure {
        width: 46%;
    }
    #tokusyu_syukatsu .section-padding .flex-box .flex-box-none figcaption {
        font-size: 1.2rem;
        margin-top: 0.5em;
        text-align: center;
        line-height: 1.5rem;
    }

    #tokusyu_syukatsu .syukatsu-content {
        padding: 1em 0em 0;
    }
    #tokusyu_syukatsu .syukatsu-content-box .syukatsu-content-box-in h2 {
        color: #F08300;
        padding: 1em 0 0 1em;
        font-size: 1.2rem;
    }
    #tokusyu_syukatsu .section-padding .flex-box {
        padding-top: 3em;
        display: flex;
        align-items: center;
        width: 100%;
        margin: 1em auto;
        flex-direction: row;
    }
    #tokusyu_syukatsu .section-padding .flex-box .flex-box-none {
        display: block;
        width: 35%;
        padding-left: 0em;
        margin-left: 0em;
    }
    #tokusyu_syukatsu .syukatsu-content .flex-box > figure{
        display: block;
        width: 60%;
        height: 40%;
        margin: 1em auto 0 auto;
    }
    #tokusyu_syukatsu .syukatsu-content-box > figure{
        width: 50vw;
        margin: 0 auto;
    }
    #tokusyu_syukatsu .syukatsu-content .syukatsu-content-box{
        padding: 1em 0em 6em 0em;
        margin-bottom: 0;
        max-width: 90%;
        margin: auto;
    }
    #tokusyu_syukatsu .syukatsu-content .syukatsu-content-box .flex-box{
        flex-wrap: nowrap;
        flex-direction: column;
        max-width: 100vw;
        height: auto;
        margin: 0 auto;
        align-items: center;

    }
    #tokusyu_syukatsu .syukatsu-content .flex-box .box-in-flex-div {
        width: 100%;
    }
    #tokusyu_syukatsu .syukatsu-content .syukatsu-content-box .flex-box img{
        display: block;
        width: 100%;
        margin: 0.5em auto;
    }
    #tokusyu_syukatsu .syukatsu-content .syukatsu-content-box .flex-box > .flex-item{
        width: 100%;
    }
    #tokusyu_syukatsu .syukatsu-content .syukatsu-content-box .flex-box > .flex-item > p:last-child{
        margin-bottom: 0;
    }
    #tokusyu_syukatsu .syukatsu-content .syukatsu-content-box .w48{
        width: 100%;
    }

    .r6-schedule-content-box tr:first-child th{
        min-width: auto;
    }
    .r6-schedule-content-box tr th.minwidth2{
        min-width: auto;
        width: 6rem;
    }
    .r6-schedule-content-box tr th.minwidth3{
        min-width: auto;
    }
    .r6-schedule-content-box tr th.minwidth4{
        min-width: auto;
    }
    .r6-schedule-content-box tr th.minwidth5{
        min-width: auto;
    }
    #tokusyu_syukatsu .syukatsu-content-box .flex-box .flex-box-none {
        display: block;
        width: 30%;
    }
}

@media (max-width: 450px) {
    #tokusyu_syukatsu .syukatsu-heading .syukatsu_zensen {
        width: 75%;
        margin: 0 0 0 auto;
        text-align: center;
    }
    #tokusyu_syukatsu .syukatsu-heading::before {
        position: absolute;
        top: -0.8em;
        left: 1em;
        width: 5em;
        height: 7em;
    }
    #tokusyu_syukatsu .syukatsu-heading {
        display: block;
        width: 90%;
        background:
        /* 左上の水平線 */
        linear-gradient(to right, black 100%, transparent 50%) top left / 150px 2px no-repeat,
         /* 左上の垂直線 */
        linear-gradient(to bottom, black 100%, transparent 50%) top left / 2px 50px no-repeat;
    }
    #tokusyu_syukatsu .section-padding .flex-box {
        padding-top: 0em;
        display: flex;
        align-items: center;
        width: 100%;
        margin: 3em auto;
        flex-direction: row;
        justify-content: space-between;
    }
    #tokusyu_syukatsu .section-padding .flex-box .flex-box-none {
        display: block;
        width: 45%;
        padding-left: 0;
        margin-left: 0;
    }
    #tokusyu_syukatsu .section-padding .flex-box .flex-box-none  .figure > img  {
        margin: 0;
    }
    #tokusyu_syukatsu .section-padding .flex-box .flex-box-none figcaption,
    #tokusyu_syukatsu .syukatsu-content-box .flex-box .flex-box-none figcaption {
        font-size: 1rem;
        margin-top: 0.5em;
        text-align: center;
        line-height: 1.3;
    }
    #tokusyu_syukatsu .section-padding .flex-box .flex-box-none figcaption span,
    #tokusyu_syukatsu .syukatsu-content-box .flex-box .flex-box-none figcaption span {
        font-size: 0.7rem;
    }
    #tokusyu_syukatsu .syukatsu-content-box .syukatsu-content-box-in h2 {
        color: #F08300;
        padding: 0.5em 0 0 1em;
        font-size: 1.2rem;
        background:
        /* 左上の水平線 */
        linear-gradient(to right, black 100%, transparent 50%) top left / 140px 2px no-repeat,
        /* 左上の垂直線 */
        linear-gradient(to bottom, black 100%, transparent 50%) top left / 2px 70px no-repeat;
        line-height: 1.5;
    }
    #tokusyu_syukatsu .syukatsu-content-box .flex-box-nowrap {
        width: 100%;
        gap: 0rem;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
    #tokusyu_syukatsu .syukatsu-content .syukatsu-content-box .flex-box {
        flex-wrap: nowrap;
        flex-direction: column;
        margin: 0 auto;
        align-items: center;
    }
    #tokusyu_syukatsu .syukatsu-content-box .flex-box picture {
        display: block;
        width: 65%;
    }
    #tokusyu_syukatsu .syukatsu-content-box .flex-box .flex-box-none {
        display: block;
        width: 50%;
        text-align: center;
    }
    #tokusyu_syukatsu .section-padding .flex-box p {
        width: 80%;
        font-size: 1.2rem;
        line-height: 1.5;
    }
    #tokusyu_syukatsu .syukatsu-content .syukatsu-content-box .syukatsu-content-box-in p {
        padding-top: 0.5rem;
        padding-bottom: 0em;
        line-height: 1.8;
        font-size: 14px;
        width: 100%;
        padding-right: 0;
    }
    #tokusyu_syukatsu .syukatsu-footing p {
        text-align: left;
        margin: 0 1em 0 1em;
    }
    .r6-schedule-content-box {
        overflow-x: scroll;
    }
    .r6-schedule-content-box tr:first-child th{
        min-width: 7rem;
    }
    .r6-schedule-content-box tr th.minwidth2{
        min-width: 11rem;
    }
    .r6-schedule-content-box tr th.minwidth3{
        min-width: 11rem;
    }
    .r6-schedule-content-box tr th.minwidth4{
        min-width: 11rem;
    }
    .r6-schedule-content-box tr th.minwidth5{
        min-width: 9rem;
    }
    #tokusyu_syukatsu .syukatsu-content .syukatsu-content-box {
        padding: 1em 0em 3em 0em;
    }
}
/* --------------------------
senpaini_kouhaiga / 先輩に後輩が聞いてみた
-------------------------- */
#senpaini_kouhaiga{
    padding-left: 3vw;
    padding-right: 3vw;
    position: relative;
    margin-bottom: 10em;
}
#senpaini_kouhaiga .section-padding{
    padding-bottom: 2em;
    position: relative;
    margin-top: 5rem;
    padding-left: 2rem;
    padding-right: 2rem;
    background:
   /* 左上の水平線 */
    linear-gradient(to right, black 100%, transparent 50%) top left / 900px 2px no-repeat,
   /* 左上の垂直線 */
    linear-gradient(to bottom, black 100%, transparent 50%) top left / 2px 800px no-repeat,
   /* 右下の水平線 */
    linear-gradient(to right, black 100%, transparent 50%) bottom right / 900px 2px no-repeat,
   /* 右下の垂直線 */
    linear-gradient(to bottom, black 100%, transparent 50%) bottom right / 2px 800px no-repeat;
}
#senpaini_kouhaiga .section-padding::before {
    position: absolute;
    top: -1em;
    left: 2em;
    content: '';/*何も入れない*/
    display: inline-block;
    width: 11em;/*画像の幅*/
    height: 5em;/*画像の高さ*/
    background-image: url(../images/034/senkou_clip.png);
    background-size: contain;
    vertical-align: middle;
    background-repeat: no-repeat;
}


#senpaini_kouhaiga .senpai_title {
    background-color: #fff;
}
#senpaini_kouhaiga .senpai_title img{
    text-align: center;
    margin:  0 auto;
    width: 90%;
}
#senpaini_kouhaiga .senpai_title p{
    text-align: center;
    font-weight: bold;
    margin: 5% auto;
}
.senpai-content-box {
    display: flex;
    gap: 1rem;
}
#senpaini_kouhaiga .senpai-content-box .senpai-inte-box {
    position: relative;
    width: 70%;
}

#senpaini_kouhaiga .senpai_box_in {
    width: 90%;
    margin: 1em auto;
}
#senpaini_kouhaiga .senpai_box_in p.h2line {
    font-size: 1.2rem;
}
#senpaini_kouhaiga .t-center p{
    text-align: center;
    margin-bottom: 10%;
}
#senpaini_kouhaiga .senpai-faq {
    position: relative;
    padding-top: 3rem;
}

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

#senpaini_kouhaiga .senpai-faq .senpai-faq-in  dl img.sp-none.sk-img-size {
    width: 70%;
    margin: 1rem auto;
}
#senpaini_kouhaiga .senpai-faq .senpai-faq-in  dl figure img {
    margin: 3rem auto 2rem;
}
#senpaini_kouhaiga .senpaikouhai-content-question{
    color: #000;
    font-weight: bold;
    margin-bottom: 1em;
    text-indent: 2em;
    position: relative;
    font-size: 1.2em;
    width: fit-content;
    margin-top: 1em;
}

#senpaini_kouhaiga .senpai-faq .senpai-faq-in .aomidori {
    color: #0099d9;
}
#senpaini_kouhaiga .senpai-faq .senpai-faq-in .momoiro {
    color: #e95383;
}

@media (max-width: 768px) {
    #senpaini_kouhaiga .senpai_title {
        top: -0.9em;
        left: 50%;
        z-index: 5;
        background-color: #fff;
        width: 100%;
    }
    #senpaini_kouhaiga .senpai_title img {
        text-align: center;
        margin: 0 auto;
        width: 90%;
    }
    #senpaini_kouhaiga .senpai_box_in {
        margin-top: 3rem;
    }
    #senpaini_kouhaiga .senpai_box_in .h2line {
        margin-top: 1rem;
    }

    #senpaini_kouhaiga .section-padding {
        padding-bottom: 2em;
        position: relative;
        width: 90%;
        top: 3.5em;
    }
    #senpaini_kouhaiga .senpai-content-box {
        height: auto;
        text-align: center;
    }
    #senpaini_kouhaiga .senpai-content-box .senpai-inte-box {
        position: relative;
        height: auto;
        display: flex;
        flex-direction: column;
        align-content: center;
        flex-wrap: wrap;
        align-items: center;
        width: 90%;
        margin: 0 auto;
    }

    #senpaini_kouhaiga .senpai-faq {
        position: relative;
        padding: 2em 1em 0em 1em;
    }
    #senpaini_kouhaiga .senpai-faq .senpai-faq-in dl dt {
        width: 10%;
    }
    #senpaini_kouhaiga .senpai-faq .senpai-faq-in dl dd {
        width: 90%;
        padding-left: 0rem;
        text-align: justify;
    }
    #senpaini_kouhaiga .senpai-faq .senpai-faq-in dl dd img {
        width: 60%;
        margin: 1rem auto;
    }
    #senpaini_kouhaiga .senpai-faq .senpai-faq-in dl dd figure {
        width: 80%;
    }
    #senpaini_kouhaiga .senpai-faq .senpai-faq-in dl dd figure img {
        width: 100%;
    }
}
@media (max-width: 450px) {
    #senpaini_kouhaiga  {
        padding-bottom: 3em;
        margin-bottom: 0;
    }
    #senpaini_kouhaiga .section-padding {
        background:
        /* 左上の水平線 */
        linear-gradient(to right, black 100%, transparent 50%) top left / 250px 2px no-repeat,
        /* 左上の垂直線 */
        linear-gradient(to bottom, black 100%, transparent 50%) top left / 2px 160px no-repeat;
        top: 0;
        padding-left: 1rem;
        padding-right: 1rem;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }
    #senpaini_kouhaiga .senpai_title {
        position: static;
        top: 0;
        left: 50%;
        z-index: 5;
        background-color: #fff;
        width: 100%;
    }

    #senpaini_kouhaiga .senpai_box_in {
        width: 100%;
        margin: 1em 0;
    }
    #senpaini_kouhaiga .senpai-content-box .senpai-inte-box {
        width: 100%;
        margin: 0 auto;
    }

    #senpaini_kouhaiga .senpai-content-box {
        height: auto;
        text-align: center;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        top: 0;
    }

    #senpaini_kouhaiga .section-padding::before {
        position: absolute;
        top: -0.7em;
        left: 2em;
        content: '';
        display: inline-block;
        width: 8em;
        height: 4em;
        background-image: url(../images/034/senkou_clip.png);
        background-size: contain;
        vertical-align: middle;
        background-repeat: no-repeat;
    }
    #senpaini_kouhaiga .senpai_title img {
        text-align: center;
        margin: 0 auto;
        width: 100%;
    }
    #senpaini_kouhaiga .senpai-faq .senpai-faq-in dl dd img {
        width: 80%;
        margin: 1em auto 1em 0;
    }
    #senpaini_kouhaiga .senpai-faq .senpai-faq-in dl dd figure {
        width: 100%;
        margin: 1em auto 1em 0;
    }
    #senpaini_kouhaiga .senpai-faq {
        position: relative;
        padding: 0em 0em 0em 0em;
        position: relative;
        top: 0;
    }


    #senpaini_kouhaiga .senpaikouhai-content-question {
        color: #000;
        font-weight: bold;
        margin-bottom: 1em;
        text-indent: 0em;
        position: relative;
        font-size: 1em;
        background: none;
        width: fit-content;
    }
    #senpaini_kouhaiga .senpai-faq .senpai-faq-in dl dt {
        width: 15%;
    }
    #senpaini_kouhaiga .senpai-faq .senpai-faq-in dl dd {
        width: 85%;
        padding-left: 1rem;
        text-align: justify;
    }
}

/* --------------------------
labratory / 研究室から
-------------------------- */
#labratory{
    background-color: #FCEDE4;
    overflow: hidden;
}
#labratory .section-padding {
    padding: 4rem 0;
}
#labratory .labratory-student-voice {
    padding: 2rem 0;
}
#labratory .labratory-title{
    text-align: center;
    max-width: 100%;
    margin: 0 auto 2em;
    padding: 1em;
}
#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 0;
    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 {
    gap: 1rem;
}
#labratory .section-padding .flex-box p {
    width: 80%;
}
#labratory .section-padding .laboimg .labolef {
    width: 100%;
}
#labratory .section-padding .laboimg .flex-box-column {
    display:flex;
    gap: 1rem;
}
#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;
    margin-bottom: 3em;
    width: 65%;
    padding-left: 0;
    padding-right: 0;
}
#labratory .labratory-student-voice >h3{
    background-color: #E8515E;
    display: inline-block;
    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: 0rem 2.5rem;
    margin-bottom: 0;
}
#labratory .labratory-student-voice > div.flex-box >figure{
    text-align: center;
    margin: 1em 0 0 1em;
    width: 30%;
}
#labratory .labratory-student-voice > div.flex-box >figure img {
    width: 70%;
}
#labratory .labratory-student-voice > div.flex-box >figure >figcaption{
    font-size: 0.85em;
    text-align: center;
    width: 70%;
}
#labratory .labratory-student-voice > div.flex-box >div{
    width: 70%;
}
#labratory .labratory-student-voice >hr{
    border-top: 1px solid #E8515E;
    margin: 2em auto;
}
#labratory .laboratory-footing .section-padding{
    padding: 1em 0;
}
#labratory .laboratory-footing{
    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: 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: 100%;
    }
    #labratory .section-padding p{
        padding: 1em 1em 0 1em;
        margin: 0 auto;
    }
    #labratory .section-padding .flex-box p {
        width: 100%;
        padding-top: 0;
    }
    #labratory .section-padding .laboimg .labolef > img, #labratory .section-padding .laboimg .laborig > img{
        display: block;
        width: 100%;
        position: relative;
    }
    #labratory .section-padding .laboimg .labolef, #labratory .section-padding .laboimg .laborig{
        display: block;
        width: 100%;
    }
    #labratory .section-padding .laboimg .labolef {
        padding-left: 0;
    }
    #labratory .section-padding .laboimg .labolef > img{
        margin-left: 0;
        padding: 1em 1em 0 1em;
    }
    #labratory .section-padding .laboimg .labolef > figcaption{
        text-align: center;
        width: 100%;
        margin-left: 0;
        margin-top: 0;
        margin-bottom: 0.5em;
        padding: 0 1em 0 1em;
    }
    #labratory .labratory-student-voice {
        width: 89vw;
        padding: 2em;
    }
    #labratory .labratory-student-voice >.flex-box {
        flex-direction: column;
    }
    #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%;
    }
    #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: 100%;
        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;
    }
    #labratory .labratory-student-voice {
        margin-bottom: 4em;
        width: 90vw;
    }
    #labratory .laboratory-footing .section-padding {
        padding: 0rem 0rem;
        width: 100%;
        margin: 1em auto;
    }
}

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

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

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

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

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

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

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

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

@media (max-width: 450px) {
    #news {
        background-color: #fff;
        padding-left: 0vw;
        padding-right: 0vw;
    }
    #news .news-title > img{
        margin: 0 auto;
        width: 90%;
    }
    #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;
    }
    #news .news-footer {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1em;
    }
}
/* --------------------------
club-circle / サークル紹介
-------------------------- */
#club-circle{
    background-color: #EAF5F5;
    padding-left: 3vw;
    padding-right: 3vw;
    padding-bottom: 1em;
    max-width: 100%;
}
#club-circle .section-padding{
    padding-top: 3em;
    padding-bottom: 0.5em;
    padding-left: 0.5em;
    padding-right: 0.5em;
}
#club-circle .club-circle-title > img{
    width: 80%;
    margin: 0 auto 2.5em auto;
}
#club-circle .club-circle-box{
    margin-top: 1em;
    margin-bottom: 2em;
}
#club-circle .club-circle-box .rikuzyou .flex-box,
#club-circle .club-circle-box .sadou .flex-box,
#club-circle .club-circle-box .yagaicounse .flex-box{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-left: 3em;
    align-items: flex-start;
}

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

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

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

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

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

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



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

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

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

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

    }
}


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

}
/* --------------------------
myfavorite / 人気グッズ紹介
-------------------------- */
#myfavorite{
    background-color: var(--color-supportersfav-bg);
    overflow-x: hidden;
    overflow-y: hidden;
    position: relative;
}
#myfavorite .narrow-width {
    position: relative;
    z-index: 10;
}
#myfavorite .myfavorite-title {
    align-items: flex-end;
    padding: 1em;
}
#myfavorite .myfavorite-title .myfav1{
    margin: 0;
    width: 100%;
}
#myfavorite .myfavorite-title .myfav3{
    width: 30%;
}

#myfavorite .myfavorite-title .flex-box {
    gap: 1rem;
    align-items: flex-end;
}
#myfavorite .myfavorite-title .flex-box figure {
    width: 80%;
}
#myfavorite .myfavorite-title .flex-box .flex-box-column {
    width: 100%;
}
#myfavorite .myfavorite-title .flex-box .flex-box-column .flex-box {
    justify-content: center;
    align-items: flex-start;
}

#myfavorite .myfav_bg {
    background-color: #EEEEEF;
    background-image:
        radial-gradient(#fff 15%, transparent 20%),
        radial-gradient(#fff 15%, transparent 20%);
    background-size: 20px 20px;
    background-position:1px 2px, 30px 12px;
    width: 65vw;
    height: 80vw;
    position: absolute;
    top: 25%;
    z-index: 0;
    left: 50%;
    transform: translate(-50%, 0);
}
#myfavorite .myfavorite-box {
    padding: 1.5rem 0.5em;
    position: relative;
    flex-wrap: wrap;

}
#myfavorite .myfavorite-box .flex-box-column {
    width: 50%;
    display: flex;
    align-items: center;
}

#myfavorite .myfavorite-box .tosyokan,
#myfavorite .myfavorite-box .hakubutukan,
#myfavorite .myfavorite-box .kinenkan{
    position: relative;
    width: 100%;
    padding-left: 0em;
    padding-right: 0em;
}
#myfavorite .myfavorite-box .kinenkan p.kinenkannm {
    padding-left: 2.3rem;
}
#myfavorite .myfavorite-box .hak-q-2 p.kinenkannm {
    padding-left: 3rem;
}
#myfavorite .myfavorite-box .tosyokan p.tosyokannm,
#myfavorite .myfavorite-box .hakubutukan p.hakubutukannm,
#myfavorite .myfavorite-box .kinenkan p.kinenkannm{
    position: relative;
    left: 0em;
    margin-top: 0 auto;
    font-weight: bold;

}

#myfavorite .myfavorite-box figure{
    width: 100%;
    margin-top: 0em;
    padding-left: 0em;
}
#myfavorite .myfavorite-box figure img {
    width: 100%;
}
#myfavorite .myfavorite-box figure.chiknnanban {
    width: 90%;
}
#myfavorite .myfavorite-box .kinenkan p.stmi {
    width:  100%;
    padding-left: 2.5rem;
    padding-top: 1em;
}
#myfavorite .myfavorite-box .kinenkan.hak-q-2 p.stmi {
    width:  100%;
    padding-left: 3rem;
    padding-top: 1em;
}
#myfavorite .myfavorite-box .hakubutukan p.stmi {
    width: 100%;
    padding-left: 3rem;
    padding-top: 1em;
}

/* questionアイコン */
#myfavorite .kinenkan::before{
    position: absolute;
    content: "";
    top: -5px;
    left: 0px;
    width: 100%;
    height: 40px;
}
#myfavorite .hakubutukan::before{
    position: absolute;
    content: "";
    top: 0px;
    left: 10px;
    width: 100%;
    height: 40px;
}
#myfavorite .kinenkan.hak-q-2::before {
    position: absolute;
    content: "";
    top: 15px;
    left: 10px;
    width: 100%;
    height: 40px;
}

#myfavorite .hakubutukan::before,
#myfavorite .kinenkan::before{background-image: url(../images/034/hak_qline.svg);background-repeat: no-repeat;}

/* answerアイコン */
#myfavorite .hakubutukan p.stmi::before{
    position: absolute;
    content: "";
    top: 46px;
    left: 13px;
    width: 31px;
    height: 31px;
}
#myfavorite .kinenkan p.stmi::before{
    position: absolute;
    content: "";
    top: 50px;
    left: 0px;
    width: 31px;
    height: 31px;
}
#myfavorite .kinenkan.hak-q-2 p.stmi::before {
    position: absolute;
    content: "";
    top: 66px;
    left: 9px;
    width: 31px;
    height: 31px;
}
#myfavorite .hakubutukan p.stmi::before,
#myfavorite .kinenkan p.stmi::before{background-image: url(../images/034/hak_a.svg);background-repeat: no-repeat;}

#myfavorite .myfavorite-box > .tosyokan > .hak-question,
#myfavorite .myfavorite-box > .kinenkan > .hak-question{
    display: inline-block;
    color: #333;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0;
    padding-left: 3rem;
}
#myfavorite .myfavorite-box > .kinenkan >p:first-child {
    line-height: 1.2;
}
#myfavorite .myfavorite-box > .hakubutukan >p:first-child{
    display: inline-block;
    color: #333;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0;
    padding-left: 3rem;
    padding-right: 0rem;
}

#myfavorite .myfavorite-title .flex-box p span {
    background:linear-gradient(transparent 60%, #FFF000 60%);
}
#myfavorite .myfavorite-title .div-relative {
    position: relative;
}

#myfavorite .myfavorite-title .flex-box-img {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 1rem;
    position: absolute;
    top: 9%;
    left: -5%;
}
#myfavorite .myfavorite-title .flex-box .flex-box-in {
    width: 80%;
}
@media (max-width: 768px) {
    #myfavorite .myfavorite-title {
        padding: 1em;
        width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-end;
        padding: 2em;
    }
    #myfavorite .myfavorite-title .myfav1 {
        margin: 0 auto;
        width: 100%;
    }
    #myfavorite .myfavorite-title .myfav3 {
        margin: 0;
        width: 35%;
    }
    #myfavorite .myfav_bg {
        width: 100vw;
        height: 132vw;
        top: 27%;
        z-index: 0;
        left: 50%;
        transform: translate(-50%, 0);
    }
    #myfavorite .hakubutukan::before {
        top: 5px;
        left: -30px;
        width: 100%;
        height: 40px;
    }
    #myfavorite .kinenkan::before {
        top: 0px;
        left: 0px;
        width: 100%;
        height: 40px;
    }
    #myfavorite .kinenkan.hak-q-2::before {
        top: 20px;
        left: -26px;
        width: 100%;
        height: 40px;
    }
    #myfavorite .myfavorite-box > .flex-box {
        flex-direction: column-reverse;
        width: 90%;
        padding: 0em;
        margin: 3em auto;
    }
    #myfavorite .myfavorite-box > .flex-box >figure,
    #myfavorite .myfavorite-box > .flex-box >div{
        width: 100%;
        margin: 0 auto;
    }
    #myfavorite .myfavorite-box .hakubutukan {
        text-align: left;
    }
    #myfavorite .myfavorite-box > .tosyokan >p:first-child {
        display: inline-block;
        color: #000;
        font-size: 1.2rem;
        font-weight: bold;
        margin-bottom: 0;
        padding-left: 0em;
    }
    #myfavorite .kinenkan.hak-q-2 p.stmi.hak-answer {
        padding-left: 0rem;
    }
    #myfavorite .myfavorite-box .kinenkan p.stmi {
        width: 100%;
        padding-left: 2em;
        padding-top: 1em;
    }
    #myfavorite .myfavorite-box .tosyokan p.stmi {
        padding-left: 1rem;
    }
    #myfavorite .myfavorite-box > .hakubutukan >p:first-child{
        display: inline-block;
        color: #000;
        font-size: 1.2rem;
        font-weight: bold;
        margin-bottom: 0;
        padding-left: 0em;
        padding-right: 0em;
    }
    #myfavorite .myfavorite-box .hakubutukan p.stmi {
        width: 100%;
        padding-right: 0em;
        padding-left: 0em;
        padding-top: 1em;
    }
    #myfavorite .myfavorite-box .tosyokan,
    #myfavorite .myfavorite-box .hakubutukan,
    #myfavorite .myfavorite-box .kinenkan {
        width: 90%;
    }
    #myfavorite .myfavorite-box .flex-box-column {
        width: 45%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    #myfavorite .myfavorite-box figure {
        width: 90%;
        margin-top: 0em;
        padding-left: 0em;
    }
    #myfavorite .hakubutukan p.stmi::before {
        top: 46px;
        left: -30px;
        width: 25px;
        height: 25px;
    }
    #myfavorite .kinenkan p.stmi::before {
        top: 50px;
        left: 0px;
        width: 25px;
        height: 25px;
    }
    #myfavorite .kinenkan.hak-q-2 p.stmi::before {
        top: 66px;
        left: -25px;
        width: 25px;
        height: 25px;
    }
    #myfavorite .kinenkan .kinenkannm {
        padding-left: 2rem;
    }
    #myfavorite .kinenkan.hak-q-2 .kinenkannm.hak-question {
        padding-left: 0.5rem;
    }
}
@media (max-width: 540px) {
    #myfavorite .myfavorite-title .myfav3 {
        margin: -6em 0em 0em 15em;
        width: 70%;
    }
    #myfavorite .myfavorite-title .sanbanme {
        width: 45%;
        margin: 0 auto;
    }
}

@media (max-width: 450px) {
    #myfavorite .myfavorite-title .myfav1 {
        /* padding: 2em 0 1em 0; */
        margin: 0 auto;
        width: 100%;
    }
    #myfavorite .myfavorite-title .myfav3 {
        margin: 0;
        width: 35%;
    }
    #myfavorite .myfav_bg {
        width: 100vw;
        height: 567vw;
        top: 5%;
        z-index: 0;
        left: 50%;
        transform: translate(-50%, 0);
    }
    #myfavorite .myfavorite-box > .hakubutukan >p:first-child,
    #myfavorite .myfavorite-box > .tosyokan >p:first-child,
    #myfavorite .myfavorite-box > .kinenkan >p:first-child,
    #myfavorite .kinenkan.hak-q-2 .kinenkannm.hak-question {
        display: inline-block;
        color: #000;
        font-size: 1.1rem;
        font-weight: bold;
        margin-bottom: 0;
        padding-left: 2em;
        padding-right: 0em;
    }
    #myfavorite .tosyokan::before,
    #myfavorite .kinenkan::before {
        position: absolute;
        content: "";
        top: -4px;
        left: 0px;
        width: 100%;
        height: 4em;
    }
    #myfavorite .hakubutukan::before {
        position: absolute;
        content: "";
        top: 0px;
        left: 0px;
        width: 100%;
        height: 4em;
    }
    #myfavorite .kinenkan.hak-q-2::before {
        top: 15px;
        left: 0px;
        width: 100%;
        height: 40px;
    }
    #myfavorite .myfavorite-box {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    #myfavorite .myfavorite-box .flex-box-column {
        width: 100%;
    }
    #myfavorite .myfavorite-box .hakubutukan p.stmi,
    #myfavorite .myfavorite-box .kinenkan p.stmi,
    #myfavorite .kinenkan.hak-q-2 p.stmi.hak-answer {
        width: 90%;
        padding-right: 0em;
        padding-top: 1em;
        padding-left: 2.3rem;
    }
    #myfavorite .myfavorite-title .flex-box-img {
        top: 0%;
        left: 0%;
        position: static;
        margin: 1rem 0;
    }
    #myfavorite .myfavorite-title .flex-box {
        gap: 1rem;
        align-items: center;
        flex-direction: column-reverse;
        top: 0;
        position: static;
    }
    #myfavorite .myfavorite-title .flex-box .flex-box-in {
        width: 100%;
    }
    #myfavorite .myfavorite-title .flex-box figure {
        width: 90%;
    }
    #myfavorite .hakubutukan p.stmi::before {
        top: 46px;
        left: 0px;
        width: 25px;
        height: 25px;
    }
    #myfavorite .kinenkan p.stmi::before {
        top: 40px;
        left: 0px;
        width: 25px;
        height: 25px;
    }

    #myfavorite .kinenkan.hak-q-2 p.stmi::before {
        top: 66px;
        left: 0px;
        width: 25px;
        height: 25px;
    }
}
/* --------------------------
#footer-info
-------------------------- */
#footer-info{
    padding: 2em 2em 4em 2em;
}
#footer-info button::after{
    background-image: url(../images/034/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/034/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/034/link_icon.svg);
        position: absolute;
        right: 10px;
        top: 15px;
        width: 15px;
        height: 15px;
    }
}
@media (max-width: 450px) {
    #footer-info {
        width: 100%;
        margin: 0 auto;
    }
    #footer-info .narrow-width > img {
        position: relative;
        top: 2vw;
        left: 23vw;
        width: 35%;
    }
    #footer-info .footer-link >a::after {
        content: "";
        background-image: url(../images/034/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;
}

.flex-box-column {
    flex-direction: column;
}
/* 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;
    }
}
