:root{
    --sidemenu_width: 200px;
    --sidehide_width: 280px;
    --pc_screen_width: 1024px;
    --margin_size: 80px;
    --margin_half: 40px;
    --main_color: #2c62b1;
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    line-height: 1.5;
    font-family:'Segoe UI', -apple-system, sans-serif;
    word-break: keep-all;
}
html{
    scroll-behavior: smooth;
}
ul{
    list-style: none;
}
body{
    width: 100%;
    position: relative;
}
main{
    margin-left: var(--sidemenu_width);
    border-left: solid 1px #e6e6ea;
}
article{
    padding-bottom: var(--margin_size);
    word-break: break-all;
}
@media screen and (max-width:780px){
    :root{
        --margin_size: 40px;
        --margin_half: 20px;
    }
    main{
        margin-top: 80px;
        margin-left: 0;
        border-left: none;
    }
    article{
        padding-bottom: 100px;
        padding: 0 10px var(--margin_size);
    }
}
@media screen and (max-width:480px){
    :root{
        --margin_size: 20px;
        --margin_half: 20px;
    }
}



/**
 *  汎用
 */
._screen_width{
    margin: 0 auto;
    max-width: var(--pc_screen_width);
}
._centering{
    display: flex;
    justify-content: center;
    align-items: center;
}

/*タイトル系*/
._page_title{
    position: relative;
    color: var(--main_color);
    font-size: 60px;
    line-height: 1;
    padding-bottom: 20px;
}
h3._page_title{
    margin-bottom: var(--margin_half);
}
._page_title:after{
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--main_color);
}
._sub_title{
    color: #fff;
    background: var(--main_color);
    line-height: var(--margin_half);
    padding:.2rem 10px;
    margin:60px 0 20px;
    font-size: 22px;
    line-height:1.5;
}
._mid_title{
    display: flex;
    align-items: center;
    min-height: var(--margin_half);
    border-left: solid 4px var(--main_color);
    padding-left: 20px;
    margin:60px 0 20px;
    font-size: 24px;
}
._mini_title{
    padding: 10px 0;
    border-bottom: solid 2px gray;
}
._midi_title{
    padding: 10px 0;
    margin:10px 0 10px;
    border-bottom: solid 2px gray;
}

/*上にくっつくメニュー*/
._top_menu{
    z-index: 10;
    position: sticky;
    top: 0;
    display: flex;
    justify-content: center;
    background: #e6eef9;
    min-height: 90px;
    margin-bottom: var(--margin_size);
}
._top_menu li{
    width: 100%;
    position: relative;
    border: solid 1px #fff;
    color :#000;
    font-size: 12px;
}
._top_menu li:after{
    content: "";
    position: absolute;
    left: calc(50% - 4px);
    bottom: 10px;
    width: 8px;
    height: 8px;
    border-top: solid 3px var(--main_color);
    border-right: solid 3px var(--main_color);
    transform: rotate(135deg);
}
._top_menu li:hover{
    background: var(--main_color);
    color: #fff;
}
._top_menu li:hover:after{
    border-top: solid 3px #fff;
    border-right: solid 3px #fff;
}
._top_menu li>a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: inherit;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
}
.iup_top_menu_up{
    min-height: auto;
    height: 60px;
    top:0;
    margin-bottom: 0;
}
.iup_top_menu_down{
    min-height: auto;
    height: 60px;
    top: 60px;
}
.igp_top_menu_up{
    min-height: auto;
    height: 60px;
}
.igp_top_menu_down{
    min-height: auto;
    height: 60px;
    top: 60px;
}
._ttop_menu{
    z-index: 10;
    position: sticky;
    top: 0;
    display: flex;
    justify-content: center;
    background: #e6eef9;
    min-height: 90px;
    margin-bottom: var(--margin_size);
}
._ttop_menu li{
    width: 100%;
    position: relative;
    border: solid 1px #fff;
    color :#000;
    font-size: 12px;
}
._ttop_menu li:after{
    content: "";
    position: absolute;
    left: calc(50% - 4px);
    bottom: 10px;
    width: 8px;
    height: 8px;
    transform: rotate(135deg);
}
._ttop_menu li:hover{
    background: var(--main_color);
    color: #fff;
}
._ttop_menu li:hover:after{

}
._ttop_menu li>a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: inherit;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
}
.igpt_top_menu_up{
    min-height: auto;
    height: 60px;
}
.igpt_top_menu_down{
    min-height: auto;
    height: 60px;
    top: 60px;
}
.pdf_icon{
    margin-left: 0.5em;
    padding: 0 5px;
    background: red;
    color: #fff;
    font-size: 12px;
}
/*SP時表示非表示*/
._sp_show{
    display: none;
}
._sp_hidden{

}
/*ボタン*/
._button_wrap{
    margin: 20px auto;
    display: block;
    text-align: center;
    padding: 2px;
    height: 50px;
    width:100%;
    background: linear-gradient(45deg,#1391cc,var(--main_color));
    text-decoration: none;
    max-width: 240px;
}
._button_inner{
    height: 100%;
    width: 100%;
    transition: 150ms background;
    background: none;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
._button_wrap:hover ._button_inner{
    background: #fff;
}
._button_wrap span,
._button_wrap input{
    color:#fff;
    background: none;
    font-weight: bold;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
._button_wrap:hover span,
._button_wrap:hover input{
    color:var(--main_color);
    background: linear-gradient(45deg,#1391cc,var(--main_color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
._button_inner._allow:before{
    content :"";
    position: absolute;
    right: 20px;
    width: 12px;
    height: 2px;
    background: #fff;
    transform-origin: right;
    transform: rotate(45deg);
}
._button_inner._allow:after{
    content :"";
    position: absolute;
    right: 20px;
    width: 30px;
    height: 2px;
    background: #fff;
}
._button_wrap:hover ._button_inner._allow:before,
._button_wrap:hover ._button_inner._allow:after{
    background: linear-gradient(45deg,#1391cc,var(--main_color));
}
._button_wrap ._button_inner._tab:after{
    position: absolute;
    content: "";
    top:15px;
    right:30px;
    background: url(./assets/img/tab_icon_w.png);
    width: 18px;
    height: 19px;
}
._button_wrap:hover ._button_inner._tab:after{
    background: url(./assets/img/tab_icon.png);
    width: 15px;
    height: 15px;
}
@media screen and (max-width:780px){
    ._page_title{
        font-size: 50px;
    }
    ._top_menu{
        top: 80px;
    }
    ._top_menu li>a{
        padding: 5px 5px 25px;
    }
    .iup_top_menu_up{
        top:80px;
    }
    .iup_top_menu_down{
        top: 140px;
    }
    .igp_top_menu_up{
        top:80px;
    }
    .igp_top_menu_down{
        top: 140px;
    }
    ._sp_show{
        display: block ;
    }
    ._sp_hidden{
        display: none;
    }
}



/**
 *  サイドメニュー
 *  english\wp-content\themes\agr.kyushu-u\template-parts\sidemenu.php
 */
#sidemenu{
    z-index: 100;
    position: fixed;
    left: 0;
    top: 0;
    width: var(--sidemenu_width);
}
#sidemenu a{
    color: inherit;
}
#sidemenu #menu-main{
    position: relative;
    background: #fff;
    height: 100vh;
    text-align: center;
}
#sidemenu #menu-main>.logo-box{
    height: 125px;
}
#sidemenu #menu-main>.item{
    position: relative;
    height: 55px;
    font-weight: bold;
    font-size: 14px;
    justify-content: left !important;
    padding-left: 40px;
    text-decoration: underline;
}
#sidemenu #menu-main>.item:after{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 12.5%;
    height: 1px;
    width: 75%;
    background-color: #e6e6ea;
}
#sidemenu #menu-main .search{
    width: 75%;
    margin: 40px auto 0;
}
#sidemenu #menu-main .search .input-box{
    display: flex;
}
#sidemenu #menu-main .search .input-box .input{
    width: 100%;
    height: 25px;
    border: solid 1px #333;
}
#sidemenu #menu-main .search .input-box .button{
    width: 25px;
    height: 25px;
    border: solid 1px #333;
    background: url(./templates_top/img/grassicon.png) center/cover;
}
#sidemenu #menu-main .language{
    margin: 30px auto 0;
}
#sidemenu #menu-main .facebook .ball{
    margin: 30px auto 0;
    border-radius: 50%;
}
#mmenu-main{
    position: relative;
    background: #fff;
    height: 100vh;
}
#mmenu-main>.logo-box{
    height: 125px;
}
#mmenu-main>.item{
    position: relative;
    height: 55px;
    font-weight: bold;
    font-size: 14px;
    justify-content: left !important;
    padding-left: 40px;
}
#mmenu-main>.item:after{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 12.5%;
    height: 1px;
    width: 75%;
    background-color: #e6e6ea;
}
#mmenu-main .search{
    width: 75%;
    margin: 40px auto 0;
}
#mmenu-main .search .input-box{
    display: flex;
}
#mmenu-main .search .input-box .input{
    width: 100%;
    height: 25px;
    border: solid 1px #333;
}
#mmenu-main .search .input-box .button{
    width: 25px;
    height: 25px;
    border: solid 1px #333;
    background: url(./templates_top/img/grassicon.png) center/cover;
}
#mmenu-main .language{
    margin: 30px auto 0;
    text-align: center;
}
#mmenu-main .facebook{
    margin: 30px auto 0;
    border-radius: 50%;
    text-align: center;
}
#mmenu-main .ball{
    margin: 30px auto 0;
    border-radius: 50%;
    text-align: center;
}

/*隠しメニュー*/
#sidemenu .hidden_menu-box{
    position: fixed;
    z-index: 1;
    left: var(--sidemenu_width);
    top: 0;
    width: 0;
    height: 100vh;
    background: var(--main_color);
    transition: 200ms ease-out;
    overflow: hidden;
    color: #fff;
    text-align: left;
}
#sidemenu .hidden_menu-box ul{
    width: var(--sidehide_width);
    height: 100vh;
    padding: 25px;
}
#sidemenu .hidden_menu-box ul>div{
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: solid 2px #ccc;
}
#sidemenu .parent:hover{
    background: var(--main_color);
    color: #fff;
}
#sidemenu .parent:hover .hidden_menu-box{
    z-index: 100;
    width: var(--sidehide_width);
}
#sidemenu .hidden_menu-box ul li{
    margin-top: 25px;
    margin-bottom: 25px;
    padding-left: 15px;
}
#sidemenu .hidden_menu-box b{
    margin-top: 40px;
}
#sidemenu .hidden_menu-box b:first{
    margin-top: 0;
    display: inline-block;
}



/**
 *  ページヘッダー
 *  english\wp-content\themes\agr.kyushu-u\template-parts\pageheader.php
 */
#pageheader{
    display:flex;
    align-items:center;
    justify-content:center;
    height: 450px;
    background-size: cover;
    background-position: center;
}
#pageheader h2{
    display: inline-block;
    background: #fff;
    padding: 0 15px;
    font-size: 42px;
}
/*パンくず*/
#breadclamb ul{
    margin: var(--margin_half);
    display: flex;
}
#breadclamb ul li{
    margin: 0 10px;
}
#breadclamb ul li:after{
    margin-left: 10px;
    content: '>';
}
#breadclamb ul li:last-child:after{
    content: none;
}
@media screen and (max-width:780px){
    #breadclamb{
        font-size: 12px;
    }
    #pageheader{
        height: 40vh;
    }
    #pageheader h2{
        font-size: 32px;
    }
}



/**
 *  SP時ヘッダーメニュー
 *  english\wp-content\themes\agr.kyushu-u\template-parts\topmenu-sp.php
 */
#topmenu-sp{
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: none;
    justify-content: space-between;
    padding: 0 20px;
    background: #fff;
    transition: 200ms background;
}
#topmenu-sp.active{
    background: var(--main_color);
}
#topmenu-sp-logo{
    transition: 200ms opacity;
}
#topmenu-sp-logo.active{
    opacity: 0;
}
#topmenu-sp>*{
    display: inline-flex;
    height: 100%;
    align-items: center;
}
.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.menu-trigger {
  position: relative;
  width: 50px;
  height: 44px;
  z-index: 1000;
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #000;
  border-radius: 4px;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 20px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
.menu-trigger.active span {
    background-color: #fff;
}
.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(20px) rotate(-45deg);
  transform: translateY(20px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-20px) rotate(45deg);
  transform: translateY(-20px) rotate(45deg);
}
#sp_menu{
    position: fixed;
    z-index: 999;
    top: 80px;
    right: 0;
    width: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    background: var(--main_color);
    color: #fff;
    transition: 200ms;
}
#sp_menu.active{
    width: 100vw;
}
#sp_menu .sp_menu_wrap{
    padding: var(--margin_half);
    height: calc(100vh - 80px);
    width: 100vw;
}
#sp_menu .title{
    position: relative;
    display: block;
    border-top: solid 1px #fff;
    height: 50px;
    padding-left: 20px;
    line-height: 50px;
    font-weight: bold;
    color:inherit;
    text-decoration: none;
}
#sp_menu .toggle:after{
    content: "";
    position: absolute;
    top: 10px;
    right: 15px;
    width: 15px;
    height: 15px;
    border-bottom: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg);
}
#sp_menu a{
    color:#fff;
    text-decoration: none;
}
#sp_menu .toggle.active:after{
    top: 15px;
    transform: rotate(-135deg);
}
#sp_menu ul>li>ul{
    display: none;
    padding-left: 40px;
    margin-bottom: 20px;
}
#sp_menu ul>li>ul.active{
    display: block;
}
#sp_menu ul>li>ul>li{
    min-height: 20px;
    margin: 10px 0;
}
#sp_menu .search{
    width: 100%;
    margin-top: 50px;
}
#sp_menu .search .input-box{
    display: flex;
}
#sp_menu .search .input-box .input{
    width: 100%;
    height: 50px;
    border: solid 1px #333;
}
#sp_menu .search .input-box .button{
    width: 50px;
    height: 50px;
    border: solid 1px #333;
    background: url(./templates_top/img/grassicon.png) center/cover;
}
#sp_menu .language{
    text-align: center;
    margin-top: 50px;
}
#sp_menu .facebook{
    margin-top: 50px;
    text-align: center;
}
#sp_menu .facebook .ball{
    border-radius: 50%;
}
@media screen and (max-width:780px){
    #topmenu-sp{
        display: flex;
    }
}



/**
 *  フッター
 *  english\wp-content\themes\agr.kyushu-u\footer.php
 */
footer{
    border-top: solid 1px #e4e0db;
    background: #f2f5f6;
    font-size: 12px;
    padding: 10px;
}
footer>div{
    display: flex;
}
footer>div>div{
    display: flex;
    flex-direction: column;
    width: 100%;
}
footer .right-box{
    max-width: 400px;
    justify-content: center;
}
footer .top-box{
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
footer .bottom-box{
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
@media screen and (max-width:780px){
    footer>div{
        flex-direction: column;
        text-align: center;
    }
    footer .right-box{
        max-width: 100%;
    }
}



/**
 *  トップページ
 *  /english/
 *  english\wp-content\themes\agr.kyushu-u\templates_top\page-top.php
 */
#top_page .main_visual-box{
    position: relative;
    width: 100%;
    height: 100vh;
    padding: var(--margin_size);
}
#top_page .main_visual-box>img{
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    animation: top_mv_anime 16s calc(var(--cnt) * 4s) infinite both;
}
@keyframes top_mv_anime{
    0%{
        opacity: 0;
    }
    3%{
        opacity: 1;
    }
    25%{
        opacity: 1;
    }
    28%{
        opacity: 0;
    }
    100%{
        opacity: 0;
    }
}
#top_page .main_visual-title{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
#top_page .main_visual-title>div{
    display: inline-block;
    margin: 10px 0;
    background: #fff;
    padding: 0 15px;
    font-size: 64px;
}
#top_page .section-wrap{
    padding: var(--margin_size);
    margin-bottom: var(--margin_size);
    background: #f2f5f6;
}
#top_page .section-nowrap{
    margin-bottom: var(--margin_size);
}
#top_page section>.description{
    margin: var(--margin_half) 0;
}
@media screen and (max-width:780px){
    #top_page .main_visual-box{
        height: 50vh;
    }
    #top_page .main_visual-title>div{
        font-size: 26px;
    }
    #top_page h2{
        font-size: 30px;
    }
    #top_page .section-nowrap{
        margin:0 var(--margin_size) var(--margin_size);
    }
}

/*ENGLISH TAUGHT PROGRAMS*/
#top_page .iup_item-box{
    display: flex;
    width: 100%;
    justify-content: center;
}
#top_page .iup_item-box li{
    width: calc(50% - 20px);
    min-width: 25%;
    height: 380px;
    position: relative;
}
#top_page .iup_item-box li>img{
    width: 100%;
    height: 70%;
    object-fit: cover;
}
#top_page .iup_item-box li>.description{
    position: absolute;
    display: flex;
    flex-direction: column;
    bottom:0;
    right:5%;
    width: 90%;
    height: 55%;
    background: #fff;
    text-align: center;
    font-size: 20px;
    padding: 20px 10px 10px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 5px 10px -5px;
}
#top_page .iup_item-box li>.description>div{
    height: 100%;
}
#top_page .iup_item-box li>.description .button-wrap{
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
@media screen and (max-width:780px){
    #top_page .iup_item-box{
        flex-wrap: wrap;
    }
    #top_page .iup_item-box li{
        width: 100%;
        margin-bottom: 20px;
        min-width: auto;
    }
}

/*RESEARCH*/
.research-list li{
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 40px;
    margin: 10px 0;
    font-weight: 900;
}
.research-list li:after{
    position: absolute;
    left: 15px;
    content: '●';
    color: var(--main_color);
}
.research-image{
    width: 100%;
    object-fit: contain;
}
@media screen and (max-width:780px){
    .research-image{
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
}

/*STUDENT LIFE*/
#top_page .student_life_image{
    width: 100%;
    height: 340px;
    object-fit: cover;
}

/*INFORMATION*/
#top_page .information-box{
    display: flex;
}
#top_page .information-box .left-box{
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    row-gap: 20px;
    column-gap: 20px;
    width: 50%;
}
#top_page .information-box .left-box li{
    position: relative;
    width: 100%;
    height: 270px;
}
#top_page .information-box .left-box li>img{
    position: absolute;
    top: 0;
    left:0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#top_page .information-box .left-box li>a{
    position: relative;
    display: inline-block;
    text-align: center;
    width: 90%;
    line-height: 50px;
    background: rgba(255,255,255,0.8);
    font-size: 16px;
    color: #000;
    text-decoration: none;
}
#top_page .information-box .right-box{
    width: 50%;
    border-left: solid 10px white;
    display: flex;
    justify-content: center;
    align-items: center;
}
.fb-page{
    max-width: 100vw;
    overflow: hidden;
    height: 100%;
}
#top_page .map{
    margin-top: var(--margin_size);
    height: 530px;
}
#top_page .map iframe{
    width: 100%;
    height: 100%;
}
@media screen and (max-width:780px){
    #top_page .information-box{
        flex-direction: column;
    }
    #top_page .information-box .left-box{
        width: 100%;
    }
    #top_page .information-box .right-box{
        width: 100%;
        height: 460px;
        border-left: none;
        margin-top: 20px;
    }
    #top_page .information-box .left-box li{
        height: 200px;
    }
}




/**
 *  Greetings from the dean
 *  /english/greetings-from-the-dean/
 *  english\wp-content\themes\agr.kyushu-u\templates_top\page-greetings-from-the-dean.php
 */
#dean_page .box{
    display: flex;
}
#dean_page .box img{
    width:360px;
    object-fit: cover;
    margin-bottom: 20px;
}
#dean_page .content{
    padding-left: var(--margin_half);
}
#dean_page .content p{
    margin: 20px 0;
}
@media screen and (max-width:780px){
    #dean_page .box{
        display: flex;
        flex-direction: column-reverse;
    }
    #dean_page .dean{
        margin-top: var(--margin_size);
        text-align: center;
    }
    #dean_page .content{
        padding-left: 0;
    }
}



/**
 *  Organization
 *  english\wp-content\themes\agr.kyushu-u\templates_top\page-organization.php
 *  /english/organization/
 */
 #organization_page section{
     margin-bottom: 40px;
 }
#organization_page .overview-box{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px;
}
#organization_page .overview-box .illust img{
    width: 100%;
    object-fit: contain;
}
#organization_page .chart-table{
    width: 100%;
    border-collapse: collapse;
    border:solid 1px #ccc;
    margin-top: 20px;
}
#organization_page .chart-table .course{
    font-weight: bold;
}
#organization_page th,
#organization_page td{
    padding: 10px 20px;
    text-align: left;
}
#organization_page th{
    background: #f2f5f6;
}
#organization_page .attach-title{
    margin-top: 20px;
}
@media screen and (max-width:780px){
    #organization_page .overview-box{
        grid-template-columns: 1fr;
    }
}

/**
 *  History
 *  english\wp-content\themes\agr.kyushu-u\templates_top\page-history.php
 *  /english/history/
 */
#history_page article p{
    margin: 1em 0;
}
#history_page .content{
    margin-bottom: var(--margin_size);
}
/*年表*/
#history_page .history_image{
    width: 100%;
    height: 220px;
    object-fit: cover;
}
#history_page table{
    margin-top: var(--margin_half);
    width: 100%;
    border: solid 1px #e9e9ec;
    border-collapse: collapse;
}
#history_page table._sp_hidden tr:nth-child(odd){
    background: #f2f5f6;
}
#history_page table th,
#history_page table td{
    padding: 5px 10px;
    border: solid 1px #e9e9ec;
}
#history_page table._sp_show .year{
    background: #f2f5f6;
}
#history_page table._sp_hidden .year{
    text-align: center;
    font-weight: bold;
    width: 75px;
}
#history_page .date{
    text-align: center;
    width: 75px;
}



/**
 *  Publications
 *  english\wp-content\themes\agr.kyushu-u\templates_top\page-publications.php
 *  /english/publications/
 */
#publications_page .publications-box{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
#publications_page .publications-box li{
    margin: 0 10px var(--margin_half);
}
#publications_page .publications-box li>img{
    width: 260px;
    height: 370px;
    object-fit: cover;
}
#publications_page .publications-box li>div{
    text-align: center;
    min-height: var(--margin_half);
}
#publications_page .link{
    position: relative;
    color: var(--main_color);
    text-decoration: none;
    font-weight: bold;
}
#publications_page .link:before{
    position: absolute;
    content: "";
    left: -20px;
    top: 6px;
    width: 8px;
    height: 8px;
    border-top: solid 3px var(--main_color);
    border-right: solid 3px var(--main_color);
    transform: rotate(45deg);
}
#publications_page .journal-box{
    margin-top: 40px;
    display: flex;
}
#publications_page .journal-box .left-box{
    width: 50%;
    padding-right: 40px;
}
#publications_page .journal-box .left-box ._sub_title{
    margin-bottom: 0;
}
#publications_page .journal-box .left-box ul{
    background: #f2f5f6;
    padding: 20px;
    list-style: none;
}
#publications_page .journal-box .left-box ul li{
    padding-left: var(--margin_half);
}
#publications_page .journal-box .right-box{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f2f5f6;
}
#publications_page .journal-box .right-box img{
    height: 90%;
    width: auto;
}
@media screen and (max-width:780px){
    #publications_page .journal-box{
        flex-direction: column-reverse;
    }
    #publications_page .journal-box .right-box{
        width: 100%;
    }
    #publications_page .journal-box .left-box{
        padding-right: 0;
        padding-top: 20px;
        width: 100%;
    }
}



/**
 *  IUP TOP
 *  english\wp-content\themes\agr.kyushu-u\templates_study\page-study-iup.php
 *  /english/education/undergraduate/iup/
 */
#iup-top_page .content-list{
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 20px;
    column-gap: 20px;
}
#iup-top_page .content-list li>a{
    display: inline-block;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
}
#iup-top_page .content-list li img{
    width: 100%;
    height: 280px;
    object-fit: cover;
}
#iup-top_page .content-list li .title{
    display: flex;
    align-items: center;
    position: relative;
    min-height: 40px;
    font-weight: bold;
    font-size: 24px;
    padding-left:40px;
}
#iup-top_page .content-list li .title:before{
    position: absolute;
    content: "";
    left: 15px;
    top: 15px;
    width: 8px;
    height: 8px;
    border-top: solid 3px var(--main_color);
    border-right: solid 3px var(--main_color);
    transform: rotate(45deg);
}
#iup-top_page .content-list li .description{
    min-height: 100px;
}
#iup-top_page .info-box{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}
@media screen and (max-width:780px){
    #iup-top_page .content-list{
        grid-template-columns: 1fr;
    }
    #iup-top_page .info-box{
        display: flex;
        flex-direction: column;
    }
}



/**
 *  IUP Students Life and Career
 *  english\wp-content\themes\agr.kyushu-u\templates_study\page-study-iup-career.php
 *  /english/education/undergraduate/iup/career
 */
#iup-career_page .trips_photo-list{
    display: flex;
    margin-bottom: var(--margin_half);
}
#iup-career_page .trips_photo-list li{
    width: 100%;
}
#iup-career_page .trips_photo-list img{
    width: 100%;
    height: 220px;
    object-fit: cover;
}
#iup-career_page .clubs_photo-list{
    display: flex;
    margin-bottom: var(--margin_half);
}
#iup-career_page .clubs_photo-list li{
    width: 100%;
}
#iup-career_page .clubs_photo-list img{
    width: 100%;
    height: 300px;
    object-fit: cover;
}
#iup-career_page .student_say-list{
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: var(--margin_half);
    column-gap: var(--margin_half);
}
#iup-career_page .student_say-list .youtube-wrap{
    width: 100%;
    height: 270px;
    background: black;
}
#iup-career_page .student_say-list .youtube-wrap iframe{
    width: 100%;
    height: 100%;
}
#iup-career_page .student_say-list .name{
    text-align: center;
    font-weight: bold;
    color: var(--main_color);
    line-height: 40px;
}
#iup-career_page .student_say-list .from{
    text-align: center;
}
#iup-career_page .career-list li{
    margin: 40px 0;
    display: grid;
    grid-template-columns: 1fr 2fr;
    column-gap: var(--margin_half);
}
#iup-career_page .career-list .left-box img{
    width: 100%;
    height: 335px;
    object-fit: cover;
}
#iup-career_page .career-list ._button_inner:after{
    position: absolute;
    content: "";
    width: 15px;
    height: 15px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    background: none;
    transform: rotate(45deg);
    top:10px;
    right:20px;
}
#iup-career_page .career-list ._button_wrap:hover ._button_inner:after{
    border-right: 2px solid var(--main_color);
    border-bottom: 2px solid var(--main_color);
}
#iup-career_page .career-list .right-box .hide{
    display: none;
}
#iup-career_page .career-list .name{
    font-weight: bold;
    color: var(--main_color);
}
#iup-career_page .support-content{
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: var(--margin_half);
}
#iup-career_page .support-content .left-box img{
    width: 100%;
    height: 270px;
    object-fit: cover;
}
@media screen and (max-width:780px){
    #iup-career_page .student_say-list{
        grid-template-columns: 1fr;
    }
    #iup-career_page .career-list li{
        grid-template-columns: 1fr;
    }
    #iup-career_page .support-content{
        grid-template-columns: 1fr;
    }
}


/**
 *  IUP Admission
 *  english\wp-content\themes\agr.kyushu-u\templates_study\page-study-iup-admission.php
 *  /english/education/undergraduate/iup/admission
 */
#iup-admission_page .step-list{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 40px;
    margin: 20px auto;
}
#iup-admission_page .step-list li{
    position: relative;
    text-align: center;
    height: 320px;
    background: #e6eef9;
    padding: 10px;
}
#iup-admission_page .step-list li:after{
    content :"";
    position: absolute;
    top : calc(50% - 15px);
    right: -25px;
    width: 0px;
    height: 0px;
    border-top:solid 15px var(--main_color);
    border-right:solid 15px var(--main_color);
    border-bottom:solid 15px transparent;
    border-left:solid 15px transparent;
    transform: rotate(45deg);
}
#iup-admission_page .step-list li:last-child:after{
    content: none
}
#iup-admission_page .step-list .step{
    font-weight: bold;
    font-size: 18px;
    color: var(--main_color);
    margin-top: 20px;
}
#iup-admission_page .step-list .num{
    margin: 10px auto 20px;
    font-weight: bold;
    font-size: 28px;
    background: var(--main_color);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    line-height: 70px;
}
#iup-admission_page .deco-title{
    position: relative;
    color: var(--main_color);
    font-weight: 900;
    min-height: 30px;
    border-bottom: solid 2px var(--main_color);
    padding-left: 20px;
    margin:60px 0 20px;
}
#iup-admission_page .deco-title:before{
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    height: 12px;
    width: 12px;
    background: linear-gradient(45deg,#1391cc,var(--main_color));
    transform: rotate(45deg);
}
#iup-admission_page .leaflet-box{
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-column-gap: var(--margin_size);
}
#iup-admission_page .leaflet-box .left-box img{
    width: 100%;
    object-fit: cover;
}
#iup-admission_page .link{
    line-height: 50px;
    position: relative;
    text-decoration: none;
    color: #000;
    font-weight: bold;
}
#iup-admission_page .link:before{
    position: absolute;
    content: "";
    left: -20px;
    top: 6px;
    width: 8px;
    height: 8px;
    border-top: solid 3px var(--main_color);
    border-right: solid 3px var(--main_color);
    transform: rotate(45deg);
}
#iup-admission_page .scholarship-box table{
    width: 100%;
    table-layout: fixed;
    border: solid 1px #e6e6ea;
    border-collapse: collapse;
}
#iup-admission_page .scholarship-box th{
    text-align: left;
    font-weight: inherit;
    padding: 20px 30px;
    border: solid 1px #e6e6ea;
    background-color: #f2f5f6;
}
#iup-admission_page .scholarship-box td{
    padding: 20px 30px;
    border: solid 1px #e6e6ea;
}
@media screen and (max-width:780px){
    #iup-admission_page .step-list{
        grid-template-columns: auto;
        grid-template-rows: 1fr 1fr 1fr 1fr;
        grid-column-gap: 0;
        grid-row-gap: 40px;
    }
    #iup-admission_page .step-list li:after{
        left : calc(50% - 15px);
        top:auto;
        right:auto;
        bottom: -25px;
        border-top:solid 15px var(--main_color);
        border-right:solid 15px var(--main_color);
        border-bottom:solid 15px transparent;
        border-left:solid 15px transparent;
        transform: rotate(135deg);
    }
    #iup-admission_page .leaflet-box{
        grid-template-columns: auto;
    }
    #iup-admission_page .leaflet-box .left-box{
        height: 50vh;
    }
    #iup-admission_page .leaflet-box .left-box img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #iup-admission_page .leaflet-box li{
        padding-left: 30px;
    }
    #iup-admission_page .scholarship-box tr{
        display: flex;
        flex-direction: column;
    }
}


/**
 *  IUP Faq
 *  english\wp-content\themes\agr.kyushu-u\templates_study\page-study-iup-faq.php
 *  /english/education/undergraduate/iup/faq
 */
#iup-faq_page .faq-list li{
    border-bottom: solid 1px #e6e6ea;
}
#iup-faq_page .faq-list li>a{
    text-decoration: none;
    color:inherit;
}
#iup-faq_page .faq-list .q_row{
    position: relative;
    height: 50px;
    margin: 30px 0;
    padding: 0 60px;
    display: flex;
    align-items: center;
}
#iup-faq_page .faq-list .q_row:before{
    position: absolute;
    left: 0;
    content : "Q";
    height: 50px;
    width: 50px;
    background: #e6eef9;
    color:#0b50b4;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50%;
}
#iup-faq_page .faq-list .q_row:after{
    position: absolute;
    right: 20px;
    content : "";
    height: 15px;
    width: 15px;
    border-top: solid 5px var(--main_color);
    border-right: solid 5px var(--main_color);
    transform: rotate(135deg);
}
#iup-faq_page .faq-list li.show .q_row:after{
    transform: rotate(-45deg) !important;
}
#iup-faq_page .faq-list .a_row{
    position: relative;
    min-height: 50px;
    margin: 30px 0;
    padding: 0 60px;
    display: flex;
    align-items: center;
}
#iup-faq_page .faq-list li.hide .a_row{
    display: none;
}
#iup-faq_page .faq-list .a_row:before{
    position: absolute;
    left: 0;
    content : "A";
    height: 50px;
    width: 50px;
    background: #f9d8d8;
    color:#fc4444;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50%;
}


/**
 *  IUP Meet us
 *  english\wp-content\themes\agr.kyushu-u\templates_study\page-study-iup-meetus.php
 *  /english/education/undergraduate/iup/meetus
 */
#iup-meetus_page .contact-box{
    position: relative;
    width: 100%;
    max-width: 640px;
    height: 300px;
    margin: var(--margin_size) auto 0;
}
#iup-meetus_page .contact-box img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#iup-meetus_page .contact-box div{
    position: relative;
    text-align: center;
    font-weight:bold;
    height: 80%;
    width: 70%;
    background: rgba(255,255,255,0.8);
    font-size: 24px;
}
#iup-meetus_page .japan-list li{
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 40px;
    margin: 10px 0;
}
#iup-meetus_page .japan-list li:after{
    position: absolute;
    left: 15px;
    content: '●';
    color: var(--main_color);
}

/**
 *  IUP Meet us
 *  english\wp-content\themes\agr.kyushu-u\templates_study\page-study-iup-existing.php
 *  /english/education/undergraduate/iup/existing
 */
#iup-existing_page .contact-box{
    position: relative;
    width: 100%;
    max-width: 640px;
    height: 300px;
    margin: var(--margin_size) auto 0;
}
#iup-existing_page .contact-box img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#iup-existing_page .contact-box div{
    position: relative;
    text-align: center;
    font-weight:bold;
    height: 80%;
    width: 70%;
    background: rgba(255,255,255,0.8);
    font-size: 24px;
}
#iup-existing_page .japan-list li{
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 40px;
    margin: 10px 0;
}
#iup-existing_page .japan-list li:after{
    position: absolute;
    left: 15px;
    content: '●';
    color: var(--main_color);

}

/**
 *  IUP Overview & Curriculum
 *  english\wp-content\themes\agr.kyushu-u\templates_study\page-study-iup-curriculum.php
 *  /english/education/undergraduate/iup/curriculum
 */
#iup-curriculum_page .overview-box{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
}
#iup-curriculum_page .overview-box img{
    width: 100%;
    height: 300px;
    object-fit: cover;
}
#iup-curriculum_page .curriculum-box{
    position: relative;
    padding: 40px;
    background: #e6eef9;
    margin-top: 20px;
    margin-bottom: 160px;
}
#iup-curriculum_page .curriculum-box:after{
    content: '';
    position: absolute;
    top : 100%;
    left : 0;
    width: 100%;
    height: 160px;
    box-sizing: border-box;
    border-top: solid 160px #e6eef9;
    border-left: solid 512px transparent;
    border-right: solid 512px transparent;
}
#iup-curriculum_page .curriculum-box:last-child{
    margin-bottom: 80px;
}
#iup-curriculum_page .curriculum-box:last-child:after{
    content: none;
}
#iup-curriculum_page .curriculum-box .title{
    text-align: center;
}
#iup-curriculum_page .curriculum-box .title .year{
    font-size: 28px;
    color: var(--main_color);
    font-weight: bold;
}
#iup-curriculum_page .curriculum-box .education{
    margin: 20px auto 40px;
    width: 280px;
    height: 50px;
    text-align: center;
    color: var(--main_color);
    font-weight: bold;
    border: solid 2px var(--main_color);
    display: flex;
    justify-content: center;
    align-items: center;
}
#iup-curriculum_page .curriculum-box>p{
    text-align: center;
    margin: 20px 0;
}
#iup-curriculum_page .curriculum-box .row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 40px
}
#iup-curriculum_page .curriculum-box .row>div{
    background: white;
    padding: 30px;
}
#iup-curriculum_page .curriculum-box .row .title{
    color: var(--main_color);
    font-weight: bold;
    font-size: 18px;
}
#iup-curriculum_page .curriculum-box .row .title:after{
    display: block;
    content: "";
    width: 40px;
    height: 2px;
    background: var(--main_color);
    margin: 10px auto;
}
#iup-curriculum_page .curriculum-box .row li{
    position: relative;
    margin: 10px 0;
    padding-left: 30px;
}
#iup-curriculum_page .curriculum-box .row li:before{
    position: absolute;
    top: 0px;
    left: 5px;
    content: '●';
    color: var(--main_color);

}
@media screen and (max-width: 1223px){
    #iup-curriculum_page .curriculum-box:after{
        border-top: solid 60px #e6eef9;
        border-left: solid calc(50vw - (var(--sidemenu_width) / 2)) transparent;
        border-right: solid calc(50vw - (var(--sidemenu_width) / 2)) transparent;
    }
}
@media screen and (max-width: 767px){
    #iup-curriculum_page .overview-box{
        display: flex;
        flex-direction: column;
    }
    #iup-curriculum_page .overview-box img{
        width: 100%;
        height: 300px;
        object-fit: cover;
    }
    #iup-curriculum_page .curriculum-box:after{
        border-top: solid 80px #e6eef9;
        border-left: solid calc(50vw - 20px) transparent;
        border-right: solid calc(50vw - 20px) transparent;
    }
    #iup-curriculum_page .curriculum-box{
        padding: 40px 10px;
    }
    #iup-curriculum_page .curriculum-box .row{
        display: flex;
        flex-direction: column;
    }
    #iup-curriculum_page .curriculum-box .row>div{
        padding: 15px;
        margin-bottom: 20px;
    }
}



/**
 *  IUP Research Project Area
 *  english\wp-content\themes\agr.kyushu-u\templates_study\page-study-iup-research.php
 *  /english/education/undergraduate/iup/research
 */
#iup-research_page .description{
    margin: 20px 0;
}
#iup-research_page .project-list{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}
#iup-research_page .course-list>li{
    margin-bottom: 80px;
}
#iup-research_page .project-list li a{
    color:inherit;
}
#iup-research_page .project-list li img{
    width: 100%;
    height: 280px;
    object-fit: cover;
}
#iup-research_page .project-list li h5{
    position: relative;
    display: flex;
    align-items: center;
    min-height: 50px;
    font-size: 24px;
    padding-left: 30px;
}
#iup-research_page .project-list li h5:before{
    position: absolute;
    content: "";
    left: 5px;
    width: 12px;
    height: 12px;
    border-top: solid 3px var(--main_color);
    border-right: solid 3px var(--main_color);
    transform: rotate(45deg);
}
@media screen and (max-width: 767px){
    #iup-research_page .project-list{
        display: grid;
        grid-template-columns: 1fr;
    }
}



/**
 *  IUP cPIER
 *  english\wp-content\themes\agr.kyushu-u\templates_study\page-study-iup-cpier.php
 *  /english/education/undergraduate/iup/cpier
 */
#iup-cpier_page .section-wrap{

    padding-top: var(--margin_size);
}
#iup-cpier_page .cpier-list{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
#iup-cpier_page .cpier-list li{
    padding: 20px;
    width: 320px;
    height: 410px;
    background: #fff;
    margin: 10px;
}
#iup-cpier_page .cpier-list li a{
    color: inherit;
    text-decoration: none;
}
#iup-cpier_page .cpier-list li img{
    width: 100%;
    height: 280px;
    object-fit: cover;
}
#iup-cpier_page .cpier-list li .name{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-weight: bold;
    font-size: 18px;
    min-height: 50px;
}
#iup-cpier_page .cpier-list li .badge{
    display: inline-block;
    padding: 5px;
    background: #ccc;
    font-size: 14px;
}
/*モーダル*/
#iup-cpier_page #modal_layer{
    z-index: 999;
    position: fixed;
    top:0;
    left: 0;
    width: 110vw;
    height: 100vh;
    background: rgba(0,0,0,0.7);
}
#iup-cpier_page #modal_layer a{
    display: inline-block;
    width: 100%;
    height: 100%;
}
#iup-cpier_page #modal_layer.close,
#iup-cpier_page #modal_window.close,
#iup-cpier_page #modal_window .cpier_box.close{
    display: none;
}
#iup-cpier_page #modal_layer.open,
#iup-cpier_page #modal_window.open,
#iup-cpier_page #modal_window .cpier_box.open{
    display: block;
}
#iup-cpier_page #modal_window{
    z-index: 999;
    overflow-y: scroll;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 90vw;
    max-width: var(--pc_screen_width);
    max-height: 95vh;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: var(--margin_size);
}
#iup-cpier_page #modal_window .modal_head{
    text-align: right;
    margin-bottom: var(--margin_size);
    height: var(--margin_size);
}
#iup-cpier_page #modal_window .modal_head img{
    height: 100%;
    object-fit: cover;
}
#iup-cpier_page #modal_window .profile-box{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
}
#iup-cpier_page #modal_window .profile-box .left-box .title{
    font-weight: bold;
    line-height: var(--margin_size);
}
#iup-cpier_page #modal_window .profile-box .right-box img{
    width: 100%;
    object-fit: cover;
}
#iup-cpier_page #modal_window .content{
    margin-bottom: 20px;
}
#iup-cpier_page #modal_window .research-title{
    font-weight: bold;
    line-height: var(--margin_half);
    margin: var(--margin_half) 0 20px;
    border-bottom: solid 2px var(--main_color);
}
#iup-cpier_page #modal_window .button-box{
    text-align: center;
    margin-top: var(--margin_half);
}
#iup-cpier_page #modal_window .button-box a{
    text-align: center;
    display: block;
    margin: 20px auto 0;
    width: 80%;
    height: 50px;
    line-height: 50px;
    font-weight: bold;
    background: linear-gradient(45deg,#1391cc,var(--main_color));
    color: #fff;
    text-decoration: none;
    max-width: 240px;
}



/**
 *  コース個別ページ
 *  english\wp-content\themes\agr.kyushu-u\single-cources.php
 *  /english/cources/
 */
#cource_page .cours_description{
    margin-bottom: var(--margin_half);
}
#cource_page section{
    padding-top: 90px;
}
#cource_page section .description{
    margin-bottom: var(--margin_half);
}
#cource_page section .description .title{
    font-weight: 900;
}
#cource_page section .feature .feature-list .feature-title{
    position: relative;
    color: var(--main_color);
    font-weight: 900;
    min-height: 30px;
    border-bottom: solid 2px var(--main_color);
    padding-left: 20px;
}
#cource_page section .feature .feature-list .content-box{
    display: flex;
    justify-content: space-between;
}
#cource_page section .feature .feature-list .feature-title:before{
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    height: 12px;
    width: 12px;
    background: linear-gradient(45deg,#1391cc,var(--main_color));
    transform: rotate(45deg);
}
#cource_page section .feature .feature-list li{
    margin-bottom: 20px;
}
#cource_page section .feature .feature-list .content-box{
    padding: 20px 0;
}
#cource_page section .feature .feature-list .content-box>div{
    width: 66%;
    padding-right: 20px;
}
#cource_page section .feature .feature-list .content-box>img{
    width: 33%;
    object-fit: cover;
}
#cource_page section .search-bannar{
    width: 100%;
    height: 220px;
    object-fit: cover;
}
#cource_page section .after .title{
    font-weight: 900;
}
#cource_page section .path-box{
    margin-top: 20px;
    padding: 10px;
    background: #e6eef9;
}
#cource_page section .path-box .title{
    font-weight: 900;
}
#cource_page .project-box ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
#cource_page .project-box li{
    position: relative;
    height: 220px;
    width: 320px;
    margin: 10px;
}
#cource_page .project-box li img{
    position: absolute;
    width: 100%;
    height: 100%;
}
#cource_page .project-box li a{
    position: relative;
    display: inline-block;
    background: rgba(255,255,255,0.8);
    margin: 20px;
    padding: 20px 40px;
    color:#000;
    text-decoration: none;
}

/**
 *  Research
 *  /english/research/
 *  english\wp-content\themes\agr.kyushu-u\templates_research\page-research-top.php
 */
#research_page{
    background: url(./templates_research/img/bgtile.png) repeat;
}
#research_page header {
    text-align: center;
}
#research_page header h2{
    font-size: 50px;
    padding: 30px 0;
}
#research_page ._blue_stripe{
    z-index: 1;
    position: relative;
}
#research_page ._blue_stripe:before{
    content :"";
    position: absolute;
    z-index: -1;
    bottom: 10%;
    left: -5%;
    width: 110%;
    height: 20%;
    background-image: linear-gradient(-45deg,rgba(255,255,255,0) 25%, #cbeffd 25%, #cbeffd 50%, rgba(255,255,255,0) 50%, rgba(255,255,255,0) 75%,#cbeffd 75%, #cbeffd);
    background-size:  10px 10px;
}
#research_page .select-box .tab-box{
    display: flex;
}
#research_page .select-box .tab-box>a{
    position: relative;
    display: flex;
    width: 100%;
    height: 60px;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 20px;
    border: solid 2px #54c0ea;
    color: #54c0ea;
    background: #fff;
    text-decoration: none;
}
#research_page .select-box .tab-box>a.active{
    color: #fff;
    background: #54c0ea;
}
#research_page .select-box .tab-box>a.active:after{
    position: absolute;
    bottom: -19px;
    left: 50%;
    height: 30px;
    width: 30px;
    background: #54c0ea;
    transform: rotate(45deg);
    content:"";
    z-index: 999;
}
#research_page .list-box-wrap{
    position: relative;
    width: 100%;
    font-size: 16px;
}
#research_page #list-box{
    position: absolute;
    width: 100%;
    background: #fff;
    height: 0;
    padding: 0;
    overflow-y: hidden;
}
#research_page #list-box.active{
    height: auto;
    padding: var(--margin_half) 0 ;
    border: solid 2px #54c0ea;
    z-index: 100;
}
#research_page .list_description{
    padding-left: 30px;
}
#research_page #list-box .menu-box{
    display: none;
}
#research_page #list-box .menu-box.active{
    display: flex;
}
#research_page #list-box .menu-box>div{
    width: 100%;
    padding: 30px;
    border-right: dotted 2px #54c0ea;
}
#research_page #list-box .menu-box>div:last-child{
    border-right: none;
}
#research_page #list-box .menu-box>div h3{
    color: var(--color);
    margin-bottom: 20px;
    font-size: 16px;
    min-height: 60px;
}
#research_page #list-box .menu-box>div ul{
    padding-left: 25px;
}
#research_page #list-box .menu-box>div input{
    display: none;
}
#research_page #list-box .menu-box>div label{
    position: relative;
}
#research_page #list-box .menu-box>div label:before{
    display: inline-block;
    position: absolute;
    content: "";
    top:3px;
    left: -25px;
    border: solid 2px var(--color);
    background: #fff;
    border-radius: 3px;
    width: 15px;
    height: 15px;
}
#research_page #list-box .menu-box>div input:checked+label:before{
    background: var(--color);
}
#research_page #list-box .menu-box>div input:checked+label:after{
    display: inline-block;
    position: absolute;
    content: "";
    top: 6px;
    left: -22px;
    width: 10px;
    height: 5px;
    border-top: solid 3px #fff;
    border-right: solid 3px #fff;
    transform: rotate(135deg);
}
#research_page #list-box .search-box{
    padding-left: 30px;
}
#research_page #list-box .search-box .inner{
    display: flex;
    align-items: center;
    margin-top: 20px;
}
#research_page #list-box .search-box .grass-input{
    width: 40%;
    height: 40px;
    border: solid 1px #54c0ea;
    padding: 0 10px;
}
#research_page #list-box .search-box .grass-submit{
    height: 40px;
    width: 40px;
    border: solid 1px #54c0ea;
    background: url(./templates_research/img/glassicon.png);
}
/*研究室一覧*/
#research_page .item-list{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
#research_page .item-list>li{
    position: relative;
    width: 310px;
    height: 360px;
    background: #fff;
    box-shadow:rgba(0, 0, 0, 0.4) 0px 5px 10px -5px;
    border-radius: 10px;
    padding: 10px;
    margin: 20px;
    border: solid 1px #eee;
}
#research_page .item-list li.hidden{
    display: none;
}
#research_page .item-list li a{
    position: relative;
    color: inherit;
    text-decoration: none;
    display: inline-block;
    height: 100%;
    width: 100%;
}
#research_page .item-list li a:after{
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    background: url(./templates_research/img/more.png);
    height: 30px;
    width: 30px;
}
#research_page .item-list li .thumbnail{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}
#research_page .item-list .category-list{
    list-style: disc;
    padding-left: 20px;
}
#research_page .item-list li .category{
    margin: 5px 0;
    color:var(--parent_main_color);
}
#research_page .item-list li .name{
    position: absolute;
    bottom: 5px;
    font-weight: bold;
    width: 90%;
}
@media screen and (max-width: 767px){
    #research_page .select-box .tab-box{
        flex-direction: column;
    }
    #research_page .select-box .tab-box>a.active:after{
        content: none;
    }
    #research_page #list-box .menu-box.active{
        flex-direction: column;
    }
    #research_page #list-box .menu-box>div{
        padding: 10px;
        border: none;
    }
    #research_page #list-box .menu-box>div h3{
        min-height: auto;
        margin: 0;
    }
    #research_page #list-box .search-box .grass-input{
        width: 80%;
    }
    #research_page .item-list{
        flex-direction: column;
    }
}


/**
 *  研究室個別ページ
 *  english\wp-content\themes\agr.kyushu-u\single-laboratory.php
 */
#research_single{
    background: url(./templates_research/img/bgtile.png) repeat;
}
#research_single article{
    padding-bottom: 0;
}
#research_single .link{
    position: relative;
    padding-right: 30px;
    color: inherit;
    text-decoration: none;
}
#research_single .link:before{
    position: absolute;
    bottom: -1px;
    right: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--research_main_color);
    content:"";
}
#research_single .link:after{
    position: absolute;
    bottom: 5px;
    right: 7px;
    width: 0;
    height: 0;
    transform: rotate(45deg);
    border-top: solid 5px #fff;
    border-right: solid 5px #fff;
    border-bottom: solid 5px transparent;
    border-left: solid 5px transparent;
    content:"";
}
#research_single header{
    background: #54c0ea;
    height: 65px;
}
#research_single h2{
    color:#fff;
    font-size: 30px;
    line-height: 65px;
}
#research_single .marker{
    display: inline-block;
    position: relative;
    font-size: 40px;
    z-index: 1;
}
#research_single .marker:before{
    content :"";
    position: absolute;
    z-index: -1;
    bottom: 10%;
    left: -5%;
    width: 110%;
    height: 20%;
    background-image: linear-gradient(-45deg,rgba(255,255,255,0) 25%, var(--research_main_color) 25%, var(--research_main_color) 50%, rgba(255,255,255,0) 50%, rgba(255,255,255,0) 75%,var(--research_main_color) 75%, var(--research_main_color));
    background-size:  10px 10px;
}
#research_single .description-box{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 40px;
    margin: 25px 0 50px;
}
#research_single .description-box .content-box{
    border-left: solid 20px var(--research_main_color);
    background: var(--research_sub_color);
    padding: 20px;
}
#research_single .description-box .main_image-box img{
    border-radius: 5px;
    object-fit: cover;
    width: 100%;
}
#research_single .member-list{
    width: 100%;
    padding: 10px 45px;
    background: #fff;
    box-shadow:rgba(0, 0, 0, 0.4) 0px 5px 10px -5px;
    margin-bottom: 50px;
    border: solid 1px #eee;
}
#research_single .member-list li{
    padding: 20px 0;
    border-bottom: dotted 1px #ccc;
}
#research_single .member-list li:last-child{
    border-bottom: none;
}
#research_single .member-list .occupation{
    display: inline-block;
    background: var(--research_main_color);
    height: 20px;
    line-height: 20px;
    padding: 0 10px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 13px;
    color:#fff;
}
#research_single .member-list .link{
    text-align: right;
    height: 20px;
}
#research_single .member-list .info-box{
    display: flex;
    justify-content: space-between;
}
#research_single .member-list .name{
    font-weight: bold;
    font-size: 26px;
}
@media screen and (max-width: 767px){
    #research_single .description-box{
        display: flex;
        flex-direction: column-reverse;
    }
    #research_single .member-list .info-box{
        flex-direction: column;
    }
}
/*研究室一覧*/
#research_single section{
    background: rgba(84, 192, 234,0.1);
    padding: 50px 0;
}
#research_single .item-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
#research_single .item-list li{
    width: 310px;
    height: 360px;
    background: #fff;
    box-shadow:rgba(0, 0, 0, 0.4) 0px 5px 10px -5px;
    border-radius: 10px;
    padding: 10px;
    margin: 20px;
}
#research_single .item-list li.hidden{
    display: none;
}
#research_single .item-list li a{
    position: relative;
    color: inherit;
    text-decoration: none;
    display: inline-block;
    height: 100%;
    width: 100%;
}
#research_single .item-list li a:after{
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    background: url(./templates_research/img/more.png);
    height: 30px;
    width: 30px;
}
#research_single .item-list li .thumbnail{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}
#research_single .item-list li .category{
    margin: 20px 0 10px;
}
#research_single .item-list li .name{
    font-weight: bold;
}


/**
 *  Admission
 *  english\wp-content\themes\agr.kyushu-u\templates_studentlife\page-studentlife-top.php
 *  /english/admission/
 */
#admission_page .box{
    width: 80%;
    margin: 20px auto;
    text-align: center;
    padding: 40px;
    background: #e6eef9;
}



/**
 *  Student Life
 *  english\wp-content\themes\agr.kyushu-u\templates_studentlife\page-studentlife-top.php
 *  /english/student-life/
 */
#studentlife_page .photo-list{
    display: flex;
}
#studentlife_page .description{
    margin: 20px 0;
}
#studentlife_page .photo-list li{
    width: 100%;
    height: 220px;
}
#studentlife_page .photo-list li img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#studentlife_page .link{
    position: relative;
    display: inline-block;
    margin: 10px 0;
}
#studentlife_page .link:after{
    position: absolute;
    top:5px;
    right: -20px;
    width:15px;
    height: 15px;
    content: "";
    background: url(./assets/img/tab_icon.png);
}
#studentlife_page .box{
    width: 80%;
    margin: 20px auto;
    text-align: center;
    padding: 40px;
    background: #e6eef9;
}



/**
 *  Undergraduate School Education Policy
 *  english\wp-content\themes\agr.kyushu-u\templates_study\page-study-policy.php
 *  /english/study/policy/
 */
#policy_page .mid_title_wrap,
#policy_page #graduate{
    padding-top: 90px;
}
#policy_page ._top_menu{
    margin-bottom: 0;
}
#policy_page .blockWrap>h4{
    color: #fff;
    background: var(--main_color);
    line-height: var(--margin_half);
    padding-left: 10px;
    margin: 20px 0;
}


/**
 *  Sitemap
 *  english\wp-content\themes\agr.kyushu-u\templates_top\page-sitemap.php
 *  /english/sitemap/
 */
#sitemap_page .sitemap-header{
    height: 100px;
    background:#f2f5f6;
}
#sitemap_page .sitemap-header h2{
    color: var(--main_color);
    line-height: 100px;
}
#sitemap_page .box{
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    grid-column-gap: 20px;
}
#sitemap_page .box h4{
    border-bottom: solid 2px var(--main_color);
}
#sitemap_page .box ul{
    margin-bottom: var(--margin_size);
}
#sitemap_page .box li{
    margin: 0.5em 0;
}



/**
 *  contactus_page
 *  english\wp-content\themes\agr.kyushu-u\templates_top\page-contactus.php
 *  /english/contact/
 */
#contactus_page form .select-box{
    display: flex;
}
#contactus_page form>.select-box,
#contactus_page form>label{
    display: block;
    margin-top: var(--margin_half);
}
#contactus_page form .select-box label{
    margin-right: 40px;
    line-height: 60px;
    padding-left:20px;
}
#contactus_page form input[type="radio"]{
    position: relative;
    visibility: hidden;
}
#contactus_page form input[type="radio"]:before{
    cursor: pointer;
    position: absolute;
    top: -10px;
    left: -20px;
    visibility: visible;
    display: inline-block;
    content: "";
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: solid 1px var(--main_color);
}
#contactus_page form input[type="radio"]:checked:after{
    position: absolute;
    top: -4px;
    left: -14px;
    visibility: visible;
    display: inline-block;
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--main_color);
}
#contactus_page form input[type="text"],
#contactus_page form input[type="email"]{
    display: block;
    width: 100%;
    border-radius: 5px;
    border: solid 1px var(--main_color);
    line-height: 60px;
    padding: 0 40px;
}
#contactus_page form textarea{
    display: block;
    width: 100%;
    border-radius: 5px;
    border: solid 1px var(--main_color);
    padding: 20px 40px;
}
#contactus_page form input[type="submit"]{
    border: none;
}
@media screen and (max-width: 767px){
    #contactus_page form .select-box{
        flex-direction: column;
    }
    #contactus_page form .select-box>label{
        display: block;
    }
}



/**
 *  Access
 *  english\wp-content\themes\agr.kyushu-u\templates_top\page-access.php
 *  /english/access/
 */
#access_page .access-header{
    background: #f2f5f6;
}
#access_page .access-header h2{
 color: var(--main_color);
 line-height: 100px;
}
#access_page .description{
    margin: 20px;
}
#access_page iframe{
    width: 100%;
    height: 420px;
}
#access_page h3{
    margin-top: 80px;
}
#access_page .getting-list{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px;
}
#access_page .getting-list .title{
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    background: var(--main_color);
    color:#fff;
    margin-bottom: 20px;
}
#access_page .getting-list ul>li{
    position: relative;
    padding-left:20px;
    margin: 10px 0;
}
#access_page .getting-list ul>li:before{
    content: "●";
    color:var(--main_color);
    position: absolute;
    left: 5px;
    top: 0;
}
#access_page .getting-list .attension{
    color:var(--main_color);
}
#access_page table{
    width: 100%;
     border-collapse: collapse;
     border-color: #ccc;
}
#access_page th,
#access_page td{
    padding: 10px 20px;
    text-align: left;
}
#access_page th{
    background: #f2f5f6;
}
@media screen and (max-width: 767px){
    #access_page .getting-list{
        grid-template-columns: 1fr;
    }
}


/**
 *  IGP TOP
 *  english\wp-content\themes\agr.kyushu-u\templates_study\page-study-igp.php
 *  /english/education/undergraduate/igp/
 */
#igp-top_page .content-list{
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 20px;
    column-gap: 20px;
}
#igp-top_page .content-list li>a{
    display: inline-block;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
}
#igp-top_page .content-list li img{
    width: 100%;
    height: 280px;
    object-fit: cover;
}
#igp-top_page .content-list li .title{
    display: flex;
    align-items: center;
    position: relative;
    min-height: 40px;
    font-weight: bold;
    font-size: 24px;
    padding-left:40px;
}
#igp-top_page .content-list li .title:before{
    position: absolute;
    content: "";
    left: 15px;
    top: 15px;
    width: 8px;
    height: 8px;
    border-top: solid 3px var(--main_color);
    border-right: solid 3px var(--main_color);
    transform: rotate(45deg);
}
#igp-top_page .content-list li .description{
    min-height: 100px;
}
#igp-top_page .info-box{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}
@media screen and (max-width:780px){
    #igp-top_page .content-list{
        grid-template-columns: 1fr;
    }
    #igp-top_page .info-box{
        display: flex;
        flex-direction: column;
    }
}



/**
 *  IGP Students Life and Career
 *  english\wp-content\themes\agr.kyushu-u\templates_study\page-study-igp-career.php
 *  /english/education/undergraduate/igp/career
 */
#igp-career_page .trips_photo-list{
    display: flex;
    margin-bottom: var(--margin_half);
}
#igp-career_page .trips_photo-list li{
    width: 100%;
}
#igp-career_page .trips_photo-list img{
    width: 100%;
    height: 220px;
    object-fit: cover;
}
#igp-career_page .clubs_photo-list{
    display: flex;
    margin-bottom: var(--margin_half);
}
#igp-career_page .clubs_photo-list li{
    width: 100%;
}
#igp-career_page .clubs_photo-list img{
    width: 100%;
    height: 300px;
    object-fit: cover;
}
#igp-career_page .student_say-list{
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: var(--margin_half);
    column-gap: var(--margin_half);
}
#igp-career_page .student_say-list .youtube-wrap{
    width: 100%;
    height: 270px;
    background: black;
}
#igp-career_page .student_say-list .youtube-wrap iframe{
    width: 100%;
    height: 100%;
}
#igp-career_page .student_say-list .name{
    text-align: center;
    font-weight: bold;
    color: var(--main_color);
    line-height: 40px;
}
#igp-career_page .student_say-list .from{
    text-align: center;
}
#igp-career_page .career-list li{
    margin: 40px 0;
    display: grid;
    grid-template-columns: 1fr 2fr;
    column-gap: var(--margin_half);
}
#igp-career_page .career-list .left-box img{
    width: 100%;
    height: 335px;
    object-fit: cover;
}
#igp-career_page .career-list ._button_inner:after{
    position: absolute;
    content: "";
    width: 15px;
    height: 15px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    background: none;
    transform: rotate(45deg);
    top:10px;
    right:20px;
}
#igp-career_page .career-list ._button_wrap:hover ._button_inner:after{
    border-right: 2px solid var(--main_color);
    border-bottom: 2px solid var(--main_color);
}
#igp-career_page .career-list .right-box .hide{
    display: none;
}
#igp-career_page .career-list .name{
    font-weight: bold;
    color: var(--main_color);
}
#igp-career_page .support-content{
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: var(--margin_half);
}
#igp-career_page .support-content .left-box img{
    width: 100%;
    height: 270px;
    object-fit: cover;
}
@media screen and (max-width:780px){
    #igp-career_page .student_say-list{
        grid-template-columns: 1fr;
    }
    #igp-career_page .career-list li{
        grid-template-columns: 1fr;
    }
    #igp-career_page .support-content{
        grid-template-columns: 1fr;
    }
}


/**
 *  IGP Admission
 *  english\wp-content\themes\agr.kyushu-u\templates_study\page-study-igp-admission.php
 *  /english/education/undergraduate/igp/admission
 */
#igp-admission_page .step-list{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 40px;
    margin: 20px auto;
}
#igp-admission_page .step-list li{
    position: relative;
    text-align: center;
    height: 320px;
    background: #e6eef9;
    padding: 10px;
}
#igp-admission_page .step-list li:after{
    content :"";
    position: absolute;
    top : calc(50% - 15px);
    right: -25px;
    width: 0px;
    height: 0px;
    border-top:solid 15px var(--main_color);
    border-right:solid 15px var(--main_color);
    border-bottom:solid 15px transparent;
    border-left:solid 15px transparent;
    transform: rotate(45deg);
}
#igp-admission_page .step-list li:last-child:after{
    content: none
}
#igp-admission_page .step-list .step{
    font-weight: bold;
    font-size: 18px;
    color: var(--main_color);
    margin-top: 20px;
}
#igp-admission_page .step-list .num{
    margin: 10px auto 20px;
    font-weight: bold;
    font-size: 28px;
    background: var(--main_color);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    line-height: 70px;
}
#igp-admission_page .deco-title{
    position: relative;
    color: var(--main_color);
    font-weight: 900;
    min-height: 30px;
    border-bottom: solid 2px var(--main_color);
    padding-left: 20px;
    margin:60px 0 20px;
}
#igp-admission_page .deco-title:before{
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    height: 12px;
    width: 12px;
    background: linear-gradient(45deg,#1391cc,var(--main_color));
    transform: rotate(45deg);
}
#igp-admission_page .leaflet-box{
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-column-gap: var(--margin_size);
}
#igp-admission_page .leaflet-box .left-box img{
    width: 100%;
    object-fit: cover;
}
#igp-admission_page .link{
    line-height: 50px;
    position: relative;
    text-decoration: none;
    color: #000;
    font-weight: bold;
}
#igp-admission_page .link:before{
    position: absolute;
    content: "";
    left: -20px;
    top: 6px;
    width: 8px;
    height: 8px;
    border-top: solid 3px var(--main_color);
    border-right: solid 3px var(--main_color);
    transform: rotate(45deg);
}
#igp-admission_page .scholarship-box table{
    width: 100%;
    table-layout: fixed;
    border: solid 1px #e6e6ea;
    border-collapse: collapse;
}
#igp-admission_page .scholarship-box th{
    text-align: left;
    font-weight: inherit;
    padding: 20px 30px;
    border: solid 1px #e6e6ea;
    background-color: #f2f5f6;
}
#igp-admission_page .scholarship-box td{
    padding: 20px 30px;
    border: solid 1px #e6e6ea;
}
#igp-admission_page .japan-list li{
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 40px;
    margin: 10px 0;
}
#igp-admission_page .japan-list li:after{
    position: absolute;
    left: 15px;
    content: '●';
    color: var(--main_color);
}
@media screen and (max-width:780px){
    #igp-admission_page .step-list{
        grid-template-columns: auto;
        grid-template-rows: 1fr 1fr 1fr 1fr;
        grid-column-gap: 0;
        grid-row-gap: 40px;
    }
    #igp-admission_page .step-list li:after{
        left : calc(50% - 15px);
        top:auto;
        right:auto;
        bottom: -25px;
        border-top:solid 15px var(--main_color);
        border-right:solid 15px var(--main_color);
        border-bottom:solid 15px transparent;
        border-left:solid 15px transparent;
        transform: rotate(135deg);
    }
    #igp-admission_page .leaflet-box{
        grid-template-columns: auto;
    }
    #igp-admission_page .leaflet-box .left-box{
        height: 50vh;
    }
    #igp-admission_page .leaflet-box .left-box img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #igp-admission_page .leaflet-box li{
        padding-left: 30px;
    }
    #igp-admission_page .scholarship-box tr{
        display: flex;
        flex-direction: column;
    }
}


/**
 *  IGP Faq
 *  english\wp-content\themes\agr.kyushu-u\templates_study\page-study-igp-faq.php
 *  /english/education/undergraduate/igp/faq
 */
#igp-faq_page .faq-list li{
    border-bottom: solid 1px #e6e6ea;
}
#igp-faq_page .faq-list li>a{
    text-decoration: none;
    color:inherit;
}
#igp-faq_page .faq-list .q_row{
    position: relative;
    height: 50px;
    margin: 30px 0;
    padding: 0 60px;
    display: flex;
    align-items: center;
}
#igp-faq_page .faq-list .q_row:before{
    position: absolute;
    left: 0;
    content : "Q";
    height: 50px;
    width: 50px;
    background: #e6eef9;
    color:#0b50b4;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50%;
}
#igp-faq_page .faq-list .q_row:after{
    position: absolute;
    right: 20px;
    content : "";
    height: 15px;
    width: 15px;
    border-top: solid 5px var(--main_color);
    border-right: solid 5px var(--main_color);
    transform: rotate(135deg);
}
#igp-faq_page .faq-list li.show .q_row:after{
    transform: rotate(-45deg) !important;
}
#igp-faq_page .faq-list .a_row{
    position: relative;
    min-height: 50px;
    margin: 30px 0;
    padding: 0 60px;
    display: flex;
    align-items: center;
}
#igp-faq_page .faq-list li.hide .a_row{
    display: none;
}
#igp-faq_page .faq-list .a_row:before{
    position: absolute;
    left: 0;
    content : "A";
    height: 50px;
    width: 50px;
    background: #f9d8d8;
    color:#fc4444;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50%;
}


/**
 *  IGP Meet us
 *  english\wp-content\themes\agr.kyushu-u\templates_study\page-study-igp-meetus.php
 *  /english/education/undergraduate/igp/meetus
 */
#igp-meetus_page .contact-box{
    position: relative;
    width: 100%;
    max-width: 640px;
    height: 300px;
    margin: var(--margin_size) auto 0;
}
#igp-meetus_page .contact-box img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#igp-meetus_page .contact-box div{
    position: relative;
    text-align: center;
    font-weight:bold;
    height: 80%;
    width: 70%;
    background: rgba(255,255,255,0.8);
    font-size: 24px;
}
#igp-meetus_page .japan-list li{
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 40px;
    margin: 10px 0;
}
#igp-meetus_page .japan-list li:after{
    position: absolute;
    left: 15px;
    content: '●';
    color: var(--main_color);
}



/**
 *  IGP Overview & Curriculum
 *  english\wp-content\themes\agr.kyushu-u\templates_study\page-study-igp-curriculum.php
 *  /english/education/undergraduate/igp/curriculum
 */
#igp-curriculum_page .overview-box{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
}
#igp-curriculum_page .overview-box img{
    width: 100%;

    object-fit: cover;
}
#igp-curriculum_page .curriculum-box{
    position: relative;
    padding: 40px;
    background: #e6eef9;
    margin-top: 20px;
    margin-bottom: 160px;
}
#igp-curriculum_page .curriculum-box:after{
    content: '';
    position: absolute;
    top : 100%;
    left : 0;
    width: 100%;
    height: 160px;
    box-sizing: border-box;
    border-top: solid 160px #e6eef9;
    border-left: solid 512px transparent;
    border-right: solid 512px transparent;
}
#igp-curriculum_page .curriculum-box:last-child{
    margin-bottom: 80px;
}
#igp-curriculum_page .curriculum-box:last-child:after{
    content: none;
}
#igp-curriculum_page .curriculum-box .title{
    text-align: center;
}
#igp-curriculum_page .curriculum-box .title .year{
    font-size: 28px;
    color: var(--main_color);
    font-weight: bold;
}
#igp-curriculum_page .curriculum-box .education{
    margin: 20px auto 40px;
    width: 280px;
    height: 50px;
    text-align: center;
    color: var(--main_color);
    font-weight: bold;
    border: solid 2px var(--main_color);
    display: flex;
    justify-content: center;
    align-items: center;
}
#igp-curriculum_page .curriculum-box>p{
    text-align: center;
    margin: 20px 0;
}
#igp-curriculum_page .curriculum-box .row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 40px
}
#igp-curriculum_page .curriculum-box .row>div{
    background: white;
    padding: 30px;
}
#igp-curriculum_page .curriculum-box .row .title{
    color: var(--main_color);
    font-weight: bold;
    font-size: 18px;
}
#igp-curriculum_page .curriculum-box .row .title:after{
    display: block;
    content: "";
    width: 40px;
    height: 2px;
    background: var(--main_color);
    margin: 10px auto;
}
#igp-curriculum_page .curriculum-box .row li{
    position: relative;
    margin: 10px 0;
    padding-left: 30px;
}
#igp-curriculum_page .curriculum-box .row li:before{
    position: absolute;
    top: -12px;
    left: 5px;
    content: '●';
    color: var(--main_color);
}
#igp-curriculum_page .publications-box{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
#igp-curriculum_page .publications-box li{
    margin: 0 10px var(--margin_half);
}
#igp-curriculum_page .publications-box li>img{
    width: 260px;
    height: 370px;
    object-fit: cover;
}
#igp-curriculum_page .publications-box li>div{
    text-align: center;
    min-height: var(--margin_half);
}
@media screen and (max-width: 1223px){
    #igp-curriculum_page .curriculum-box:after{
        border-top: solid 60px #e6eef9;
        border-left: solid calc(50vw - (var(--sidemenu_width) / 2)) transparent;
        border-right: solid calc(50vw - (var(--sidemenu_width) / 2)) transparent;
    }
}
@media screen and (max-width: 767px){
    #igp-curriculum_page .overview-box{
        display: flex;
        flex-direction: column;
    }
    #igp-curriculum_page .overview-box img{
        width: 100%;

        object-fit: cover;
    }
    #igp-curriculum_page .curriculum-box:after{
        border-top: solid 80px #e6eef9;
        border-left: solid calc(50vw - 20px) transparent;
        border-right: solid calc(50vw - 20px) transparent;
    }
    #igp-curriculum_page .curriculum-box{
        padding: 40px 10px;
    }
    #igp-curriculum_page .curriculum-box .row{
        display: flex;
        flex-direction: column;
    }
    #igp-curriculum_page .curriculum-box .row>div{
        padding: 15px;
        margin-bottom: 20px;
    }
}



/**
 *  IGP Research Project Area
 *  english\wp-content\themes\agr.kyushu-u\templates_study\page-study-igp-research.php
 *  /english/education/undergraduate/igp/research
 */
#igp-research_page .description{
    margin: 20px 0;
}
#igp-research_page .project-list{
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}
#igp-research_page .course-list>li{
    margin-bottom: 80px;
}
#igp-research_page .project-list li a{
    color:inherit;
}
#igp-research_page .project-list li img{
    width: 100%;
    height: 280px;
    object-fit: cover;
}
#igp-research_page .project-list li h5{
    position: relative;
    display: flex;
    align-items: center;
    min-height: 50px;
    font-size: 24px;
    padding-left: 30px;
}
#igp-research_page .project-list li h5:before{
    position: absolute;
    content: "";
    left: 5px;
    width: 12px;
    height: 12px;
    border-top: solid 3px var(--main_color);
    border-right: solid 3px var(--main_color);
    transform: rotate(45deg);
}
#igp-research_page .overview-box{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
}
#igp-research_page .overview-box img{
    width: 100%;
    height: 300px;
    object-fit: cover;
}
@media screen and (max-width: 767px){
    #igp-research_page .overview-box{
        display: flex;
        flex-direction: column;
    }
    #igp-research_page .overview-box img{
        width: 100%;
        height: 300px;
        object-fit: cover;
    }
}
@media screen and (max-width: 767px){
    #igp-research_page .project-list{
        display: grid;
        grid-template-columns: 1fr;
    }
}



/**
 *  IGP cPIER
 *  english\wp-content\themes\agr.kyushu-u\templates_study\page-study-igp-cpier.php
 *  /english/education/undergraduate/igp/cpier
 */
#igp-cpier_page .section-wrap{
    background: #f2f5f6;
    padding-top: var(--margin_size);
}
#igp-cpier_page .cpier-list{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
#igp-cpier_page .cpier-list li{
    padding: 20px;
    width: 320px;
    height: 410px;
    background: #fff;
    margin: 10px;
}
#igp-cpier_page .cpier-list li a{
    color: inherit;
    text-decoration: none;
}
#igp-cpier_page .cpier-list li img{
    width: 100%;
    height: 280px;
    object-fit: cover;
}
#igp-cpier_page .cpier-list li .name{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-weight: bold;
    font-size: 18px;
    min-height: 50px;
}
#igp-cpier_page .cpier-list li .badge{
    display: inline-block;
    padding: 5px;
    background: #ccc;
    font-size: 14px;
}
/*モーダル*/
#igp-cpier_page #modal_layer{
    z-index: 999;
    position: fixed;
    top:0;
    left: 0;
    width: 110vw;
    height: 100vh;
    background: rgba(0,0,0,0.7);
}
#igp-cpier_page #modal_layer a{
    display: inline-block;
    width: 100%;
    height: 100%;
}
#igp-cpier_page #modal_layer.close,
#igp-cpier_page #modal_window.close,
#igp-cpier_page #modal_window .cpier_box.close{
    display: none;
}
#igp-cpier_page #modal_layer.open,
#igp-cpier_page #modal_window.open,
#igp-cpier_page #modal_window .cpier_box.open{
    display: block;
}
#igp-cpier_page #modal_window{
    z-index: 999;
    overflow-y: scroll;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 90vw;
    max-width: var(--pc_screen_width);
    max-height: 95vh;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: var(--margin_size);
}
#igp-cpier_page #modal_window .modal_head{
    text-align: right;
    margin-bottom: var(--margin_size);
    height: var(--margin_size);
}
#igp-cpier_page #modal_window .modal_head img{
    height: 100%;
    object-fit: cover;
}
#igp-cpier_page #modal_window .profile-box{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
}
#igp-cpier_page #modal_window .profile-box .left-box .title{
    font-weight: bold;
    line-height: var(--margin_size);
}
#igp-cpier_page #modal_window .profile-box .right-box img{
    width: 100%;
    object-fit: cover;
}
#igp-cpier_page #modal_window .content{
    margin-bottom: 20px;
}
#igp-cpier_page #modal_window .research-title{
    font-weight: bold;
    line-height: var(--margin_half);
    margin: var(--margin_half) 0 20px;
    border-bottom: solid 2px var(--main_color);
}
#igp-cpier_page #modal_window .button-box{
    text-align: center;
    margin-top: var(--margin_half);
}
#igp-cpier_page #modal_window .button-box a{
    text-align: center;
    display: block;
    margin: 20px auto 0;
    width: 80%;
    height: 50px;
    line-height: 50px;
    font-weight: bold;
    background: linear-gradient(45deg,#1391cc,var(--main_color));
    color: #fff;
    text-decoration: none;
    max-width: 240px;
}




.kj-add-table_01{
    border:none;
    border-collapse:collapse;
}
.kj-add-table_01 th{
    padding:.5rem .8rem;
    border:none;
    border-top:solid 1px rgb(200,200,200);
    border-bottom:solid 1px rgb(200,200,200);
    background:#e1e5f6;
}
.kj-add-table_01 td{
    padding:.5rem .8rem;
    border:none;
    border-top:solid 1px rgb(200,200,200);
    border-bottom:solid 1px rgb(200,200,200);
}
.kj-add-table_01 th:not(:last-child){
    border-right:solid 1px rgb(255,255,255);
}
.kj-add-table_01 td:not(:last-child){
    border-right:solid 1px rgb(200,200,200);
}
.kj-add-table_01 th + th{
    border-left:solid 1px rgb(255,255,255);
}
.kj-add-table_01 th + td,
.kj-add-table_01 td + td,
.kj-add-table_01 td + th{
    border-left:solid 1px rgb(200,200,200);
}




.kj-add-ul_01{
    margin:.7rem 0;
    padding-left:2rem;
    list-style:circle;
}
.kj-add-ul_01 li{
    margin:.5rem 0;
}