@charset "utf-8";

/* ******************************************************************
 *	File name		: style.css
 *	Summary			: page layout
 * ******************************************************************
 */
/*-----------------------------------------------------------------all */
body {
    scroll-behavior: smooth;
}

.fa-camera-retro {
    font-size: 1.2rem;
    vertical-align: -4px;
}

.w_960 {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.t_07 {
    font-size: 0.7rem;
}


.t_08 {
    font-size: 0.8rem;
}

.t_09 {
    font-size: 0.9rem;
}


img {
    width: 100%;
}

h2 {
    font-size: 1.8rem;
    border-bottom: 2px solid #666;
    margin-top: 160px;
    margin-bottom: 40px;
}

a:hover {
    opacity: 0.6;
}

.br_sp {
    display: none;
}


.marker {
    text-decoration: underline;
    text-decoration-color: rgba(250, 236, 117, 0.82);
    text-decoration-thickness: 14px;
    text-underline-offset: -7px;
    text-decoration-skip-ink: none;
    font-family: sans-serif;
}

.marker_g {
    text-decoration: underline;
    text-decoration-color: rgba(117, 250, 183, 0.5);
    text-decoration-thickness: 14px;
    text-underline-offset: -7px;
    text-decoration-skip-ink: none;
    font-family: sans-serif;
}

.marker_p {
    text-decoration: underline;
    text-decoration-color: rgba(163, 117, 250, 0.2);
    text-decoration-thickness: 14px;
    text-underline-offset: -7px;
    text-decoration-skip-ink: none;
    font-family: sans-serif;
}

@media screen and (max-width: 980px) {
    .w_960 {
        max-width: 90%;
    }

}


@media screen and (max-width: 500px) {
    .br_sp {
        display: block;
    }
}

/*-live_btn-----------------------------*/
.live_btn:hover {
    background: #f7f4fd;
    box-shadow: 0 0 3px #ccc;
}

.live_btn {
    background: black;
    /*-ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;*/
    font-size: 0.9rem;
    padding: 8px;
    letter-spacing: 2px;
    transition: 0.3s;
    text-align: center;
}

.live_btn:hover a,
.live_btn:hover .t_hor {
    color: #000;
}

.live_btn a {
    color: #fff;
    transition: 0.3s;
}


.yt_btn {
    width: 20px;
    height: auto;
    transition: 0.3s;
    vertical-align: -1px;
}


.t_hor {
    -webkit-text-combine: horizontal;
    -ms-text-combine-horizontal: all;
    text-combine-upright: all;
    color: #fff;
    transition: 0.3s;
}


.live_btn:hover .yt_btn {
    filter: invert(100%);
}




@media screen and (max-width: 768px) {
    .live_btn {
        top: 0;
        bottom: auto;
        -ms-writing-mode: horizontal-tb;
        writing-mode: horizontal-tb;
        padding: 2px auto;
        text-align: center;
        width: 100%;
        font-size: 1rem;
    }

    .yt_btn {
        padding-top: 2px;
        margin-left: 10px;
    }

}

/*--bread------------------------------*/
#bread {
    margin-top: 16px;
    list-style-type: none;
    display: flex;
    font-size: 0.8rem;
}

#bread li,
#bread li a {
    font-family: sans-serif;
    margin-right: 0.5rem;
}

#bread li a {
    color: #3e1485;
}

#bread li:not(li:last-of-type)::after {
    content: '>';
}

#bread li:last-of-type {
    font-weight: bold;
    color: #666;
}


/*-header-----------------------------*/
header {
    display: flex;
}

header .logo {
    margin-right: 20px;
}

header .logo img {
    width: 100px;
}

header h1 {
    font-size: 2.8rem;

}

header p {
    font-size: 1.4rem;
    letter-spacing: 1px;
}

#data h2 {
    margin-top: 120px;
}

.date {
    font-size: 1.6rem;
    letter-spacing: 1px;
    margin-bottom: 24px;

}

#data dl,
.target dl {
    display: flex;
    justify-content: space-between;
}

#data dl div {}

#data dl div:nth-of-type(2),
#data dl div:last-of-type {
    border-left: 1px solid #666;
    padding-left: 16px;
    box-sizing: border-box;
    /*margin-left: 16px;
    margin-right: 16px;*/
}

#data dt {
    font-size: 1.3rem;
}

#data dd {
    line-height: 1.6;
    margin-bottom: 0;
}


.date span.t_1 {
    font-size: 2.6rem;
}

.date span.t_2 {
    font-size: 3.4rem;
}

.time {
    margin-bottom: 16px;
    font-size: 1.3rem;
}

.access {
    margin-top: 24px;
    margin-bottom: 24px;
    font-size: 1.3rem;
    padding-left: 3.2rem;
    text-indent: -3.2rem;
}

.access span {
    font-size: 1.8rem;
}

#venue {
    margin-top: 3rem;
}

#attentions dt {
    padding-left: 9.1rem;
    text-indent: -9.1rem;
    margin-bottom: 1rem;
}

#attentions #venue {
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.time span {
    font-size: 1rem;
}

nav {
    margin-top: 60px;
}

nav ul {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

nav ul li {
    position: relative;
    width: 30%;
    border: 1px solid #666;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8px 0;
    top: 0px;
    left: 0px;
    transition: 0.3s;
}

nav ul li:hover {
    background: rgba(238, 238, 238, 0.5);
    top: 3px;
    left: 3px;
}

nav ul li a {
    display: block;
    width: 100%;
    height: auto;
}

@media screen and (max-width: 768px) {

    nav.w_960 {
        max-width: 100%;
        position: fixed;
        bottom: 0;
        width: 100%;
        z-index: 100000;
        background: #ffffff;
    }

    nav ul li {
        width: calc(100% / 3);
        border-left: none;
        border-bottom: none;
    }

    nav ul li:nth-of-type(3) {
        border-right: none;
    }



}

@media screen and (max-width: 500px) {
    #attentions dt {
        padding-left: 0;
        text-indent: 0;
    }



    #data {
        margin-top: 52px;
    }

    .date {
        font-size: 1.4rem;
    }

    .date span {
        font-size: 2rem;
    }

    .time {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .access {
        margin-top: 24px;
        margin-bottom: 24px;
        font-size: 1.3rem;
    }

    .time span,
    .access span {
        font-size: 0.9rem;
    }

    nav ul li:hover {
        top: 0px;
        left: 0px;
    }
}


/*-#info-----------------------------*/
#info {
    position: relative;
    margin-top: 100px;
    margin-bottom: 0;
    z-index: 0;
    width: 100%;
    height: 200px;
    padding: 40px 80px;
}

#info h4 {
    width: 740px;
    margin-left: auto;
    margin-right: auto;
}

#info:before,
#info:after {
    position: absolute;
    content: '';
}

#info:after {
    top: 0;
    left: 0;
    width: 20%;
    height: 50px;
    border-top: 1px solid #666;
    border-left: 1px solid #666;
}

#info:before {
    right: 0;
    bottom: 0;
    width: 20%;
    height: 50px;
    border-right: 1px solid #666;
    border-bottom: 1px solid #666;
}

#info h4,
#info dt,
#info dd,
#info dd a {
    font-family: sans-serif;
}

#info h4 {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

#info .news {
    overflow: scroll;
    height: 72px;
    scrollbar-width: none;
    width: 720px;
    margin-left: auto;
    margin-right: auto;
}

#info dl {
    display: flex;
    height: 32px;
    margin-bottom: 8px;
}

#info dl:last-of-type {
    margin-bottom: 0;
}

#info dt {
    margin-right: 16px;
    font-size: 0.86rem;
    font-weight: bold;
}

#info dd a:hover {
    color: #422161;
}

#info dd {
    line-height: 1.6;
    font-size: 0.9rem;
}

.news_wrap {
    display: flex;
}

.rl {
    height: 72px;
    text-align: center;
    position: relative;
}

.rl span {

    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;

}


.rl:before {
    content: "";
    position: absolute;
    top: 52px;
    right: 14px;
    width: 1px;
    height: 20px;
    background: #666;
    transform: skewX(-31deg);
}

.rl:after {
    content: "";
    position: absolute;
    top: 0;
    right: 20px;
    width: 1px;
    height: 72px;
    background: #666;
}

@media screen and (max-width: 920px) {
    #info .news {
        width: 100%;
    }

    #info h4 {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    #info {
        padding: 20px 24px;
        height: auto;
    }

    #info .news {
        height: auto;
        overflow: auto;
    }

    #info dl {
        flex-direction: column;
        margin-bottom: 16px;
        height: auto;
    }

    #info dd {
        line-height: 1.6;
        font-size: 0.9rem;
    }

    .rl {
        display: none;
    }


}

@media screen and (max-width: 500px) {
    #info {
        margin-top: 0;
        background-color: #fff;
    }
}

/*-movie-----------------------------*/

#movie h2 {
    margin-top: 120px;
}

#movie {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-image: url(/japanese/graduation/2025/image/base/gr_bk01_20.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    background-origin: border-box;
    width: 100%;
}

.live_info {
    margin-bottom: 40px;
    text-align: center;
}

iframe {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: 100%;
    border: none;
}

@media screen and (max-width: 768px) {
    .live_info {
        text-align: left;
    }
}

@media screen and (max-width: 500px) {
    #movie {
        padding-top: 0;
        padding-bottom: 60px;
        width: 100%;
    }

    #movie h2 {
        margin-top: 60px;
    }

}


/*-map-----------------------------*/
#access {
    z-index: 1000;
}

#access h2 {
    margin-top: 80px;
}

.access_info {
    text-align: center;
    margin-bottom: 40px;
}

.access_info p:first-of-type {
    font-size: 1.2rem;
}

#transport {
    text-align: center;
}

h3 {
    font-size: 1.2rem;
    margin-top: 40px;
    margin-bottom: 16px;
}

.map iframe {
    filter: grayscale(1);
    vertical-align: bottom;
    transition: all 0.3s;
    max-height: 320px;
}

.map iframe:hover {
    filter: none;
    opacity: 1;
}

@media screen and (max-width: 500px) {

    #transport,
    .access_info {
        text-align: left;
    }

}

/*-link-----------------------------*/


ul#link {
    margin-top: 160px;
    display: flex;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    margin-top: 160px;
}

ul#link li {
    max-width: 310px;
}

@media screen and (max-width: 768px) {
    ul#link {
        flex-direction: column;
        align-items: center;
    }

    ul#link li {
        margin-bottom: 32px;
    }
}

/*-footer-----------------------------*/
footer {
    text-align: center;
    width: 100%;
    padding-top: 50px;
    padding-bottom: 20px;
}

@media screen and (max-width: 768px) {
    footer {
        margin-bottom: 80px;
    }
}

@media screen and (max-width: 500px) {
    footer p {
        font-size: 0.8rem;
    }
}

/*-program-----------------------------*/
/*------------------------------*/

/*-header-----------------------------*/


/*#program .header_wrap, #board .header_wrap {
    background-image: url(/japanese/graduation/2025/image/base/main_01.jpg);
    background-position: top 30px left;
    padding-bottom: 160px;
    width: 100%;
}*/

.header_wrap {
    background-image: url(/japanese/graduation/2025/image/base/main_03.jpg);
    /*background-position: top 30px left;*/
    padding-bottom: 120px;
    background-size: cover;
    width: 100%;
}

#program header h1 {}

#program h2 {
    margin-top: 120px;
}

#program #data h2 {
    margin-top: 100px;
}
#program .date {
    margin-bottom: 0;
}

#program .access {
    margin-top: 0;
}

#program .p_wrap {
    box-shadow: 0 0 3px #ddd;
    padding: 40px;
    margin-bottom: 32px;
}

#program .p_wrap h3 {
    margin-top: 0;
    font-size: 1.4rem;
    padding: 8px 0 8px 52px;
    background-image: url(/japanese/graduation/2025/image/base/hagi_02.png);
    background-repeat: no-repeat;
    background-size: 43px 41px;
    background-position: top left;
    margin-bottom: 24px;
    /*border-bottom: 1px solid #c4a951;*/
    border-bottom: 1px solid #3e1485;
}

#program .target,
#board .target {
    position: relative;
    border: solid 1px #eee;
    text-align: center;
    padding-top: 16px;
    padding-bottom: 16px;
    margin-bottom: 24px;
    background: #fbfbfb;
}

/*#program .target:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 40%;
    height: 50px;
    border-top: 1px solid #666;
    border-left: 1px solid #666;
}

#program .target:before {
    position: absolute;
    content: '';
    right: 0;
    bottom: 0;
    width: 40%;
    height: 50px;
    border-right: 1px solid #666;
    border-bottom: 1px solid #666;
}*/

#program .target p:first-of-type,
#board .target p {
    font-size: 1.2rem;
}


#program .p_wrap li {
    border-bottom: 1px solid #ddd;
    padding-top: 8px;
    padding-bottom: 8px;
    text-indent: 16px;
}

#program header h1 span {
    font-size: 1.18rem;
}

/*#program #attentions #data dl {
    padding: 1rem 1.6rem;
    border: 1px solid #eee;
    background: #fbfbfb;
}*/

#program #attentions .target p {
    margin-bottom: 8px;
}

#program #attentions .target p.target_p {
    font-family: sans-serif;
}

#program #attentions .target p .target_t {
    font-family: sans-serif;
}

#program #attentions .target p:first-of-type {
    font-size: 1.6rem;
    margin-bottom: 16px;
}

#program #attentions .target p:last-of-type {
    letter-spacing: -0.1px;
    ;
}

#program #attentions ul {
    padding-left: 24px;
}

#program #attentions ul.at {
    padding: 10px 30px 1px;
    border-left: 4px solid #ddd;
}


#program #attentions li {
    list-style-type: square;
    margin-bottom: 16px;
}

#program #attentions .ul_link {
    margin-top: 32px;
    padding: 12px;
}

#program #attentions .ul_link li {
    list-style-type: none;
    font-size: 0.9rem;
    font-family: sans-serif;
}

#program #attentions .ul_link li::before {
    content: "";
    background-image: url(https://www.tohoku.ac.jp/japanese/img/arrow_r.png);
    background-size: 8px;
    background-repeat: no-repeat;
    padding-left: 16px;
    background-position: 2px;
}

#program #attentions .ul_link li a {
    font-family: sans-serif;
}

.board:active {

    top: 2px;
    left: 2px;
}

.board:hover {
    background: rgba(66, 33, 97, 0.1);
}

.board {
    position: relative;
    border: solid 1px rgba(66, 33, 97, 0.1);
    text-align: center;

    margin-bottom: 24px;
    background: rgba(66, 33, 97, 0.06);
    transition: 0.3s;

}

.board a {
    display: block;
    padding-top: 16px;
    padding-bottom: 16px;
    font-family: sans-serif;
}

.board a span {
    font-family: sans-serif;
}

.fa-solid.fa-circle-chevron-right {
    color: #999
}

@media screen and (max-width: 768px) {
    #program header h1 {
        top: 0;
        font-size: 2.04rem;
    }

    #program header h1 span {
        font-size: 1.1rem;
    }

    #program #data {
        margin-top: 32px;
    }

}

@media screen and (max-width: 500px) {



    #program header h1 {
        font-size: 2rem;
    }

    #program header h1 {
        font-size: 1.8rem;
    }

    #program header h1 span {
        font-size: 1.3rem;
        letter-spacing: 0.1px;
        display: inline-block;
        line-height: 1;

    }

    #program .header_wrap {
        background-position: bottom left;
    }

    #program #attentions .target p:first-of-type {
        font-size: 1.4rem;
    }

    #program #attentions .target p.target_p {
        font-family: sans-serif;
        text-align: left;
        margin-left: 16px;
        margin-right: 16px;
        font-size: 0.88rem;

    }

    #program #attentions .target p .target_t {
        font-weight: bold;
        font-family: sans-serif;
        font-size: 0.94rem;
    }

    #program .p_wrap {
        padding: 24px;
    }

    #program .p_wrap h3 {
        font-size: 1.2rem;
    }

    #program .target p:first-of-type {
        font-size: 1rem;
    }

    #program .target p {
        font-size: 0.9rem;
    }



    #program .br_sp {
        padding-right: 16px;
    }

    #program .dot {
        display: none;

    }

    #program .p_l {
        padding-left: 16px;
        font-size: 0.9rem;
    }
}

#board h2 {
    margin-top: 60px;
}

#board #attentions ul li {
    margin-bottom: 24px;
}

#board #attentions ol {
    padding-left: 16px;
}

#board #attentions ol li {
    margin-bottom: 8px;

}

.b_map {
    margin-top: 36px;
}

.to_tr {
    text-align: right;
    position: relative;
}

.to_tr a {
    display: inline-block;
    padding: 8px;
    color: #fff;
    background: #3E1485;
}

.wrap_bmap {
    position: relative;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}


.k1 {
    width: 350px;
    height: auto;
    position: absolute;
    bottom: -160px;
    right: 0;
}


@media screen and (max-width: 1350px) {
    .k1 {
        right:
            transition: 0.3s;
    }
}

@media screen and (max-width: 960px) {
    .k1 {
        position: relative;
        margin-left: auto;
        margin-right: auto;
        top: 50px;
    }
}

@media screen and (max-width: 768px) {
    .w_960.b_map {
        width: 100%;
    }
}

@media screen and (max-width: 500px) {
    .k1 {
        width: auto;
    }
}

/*202501׷ӛ*/

.t_time {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 1.6rem;
}

#transport ul {
    margin-top: 2rem;
}

@media screen and (max-width: 768px) {
    #data h2 {
        margin-top: 60px;
    }
}

@media screen and (max-width: 500px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    #data p.date {
        font-size: 1.2rem;
    }

    .date span.t_1 {
        font-size: 2rem;
    }

    .date span.t_2 {
        font-size: 3rem;
    }

    #data > div > p:not(.access) {
        font-size: 0.9rem;
    }

    #data p:nth-of-type(2) {
        text-indent: -1rem;
        padding-left: 1rem;
        margin-top: 1rem;
    }

    #data dl {
        flex-direction: column;
    }

    #data dl div:first-of-type {
        margin-bottom: 1rem;
    }

    #data dl div:nth-of-type(2),
    #data dl div:last-of-type {
        border-top: 1px solid #666;
        border-left: none;
        padding-left: 0;
        padding-top: 1rem;
        margin-bottom: 1rem;
    }

    .access {
        padding-left: 0;
        text-indent: 0;
    }

    .access span {
        font-size: 1.3rem;
    }

    #access h2 {
        margin-top: 60px;
    }

    #venue.w_960 {
        max-width: 100%;
    }

    #program .p_wrap h3 {
        font-size: 1rem;
        background-position: top center;
        padding: 50px 10px 32px;
    }

    .target p {
        text-align: left;
        padding-left: 1rem;
    }

    .target p span {
        display: inline-block;
        font-size: 0.9rem;
        text-indent: -0.8rem;
        padding-left: 0.8rem;
    }

    #program .p_wrap h3 {
        text-align: center;
    }

    .t_time {
        font-size: 1.16rem;
    }

    .t_time span {
        font-size: 1.1rem;
    }


    .info_wrap {
        padding: 40px 0 40px;
        margin-top: 40px;
        background-size: auto auto;
        background-color: rgba(255, 255, 255, 1);
        background-image: repeating-linear-gradient(39deg, transparent, transparent 2px, rgba(62, 20, 133, 0.08) 2px, rgba(62, 20, 133, 0.08) 3px);
    }
    
    #transport ul {
        margin-left: 1rem;
    }
    
    #transport ul li {
    list-style-type: square;
}
}


