/*************************************************** 共通 **************************************************/
body {
    font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", 'ヒラギノ角ゴ W3', "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
    font-weight: 500;
    font-size: 16px;
}

.mincho {
    font-family: "游明朝", "YuMincho", "Yu Mincho", "Hiragino Mincho Pro", serif;
    font-weight: 500;
}

.center {
    text-align: center;
}

img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

h1,
h2,
h3 {
    margin: 0;
    font-weight: 500;
}

h2.page_title_en {
    color: #0069cc;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-align: center;
    font-family: 'Barlow Condensed', sans-serif;
}

h1.page_title_ja,
h1.section_title {
    text-align: center;
    position: relative;
    margin-top: 1rem;
    margin-bottom: 5rem;
    font-family: "游明朝", "YuMincho", "Yu Mincho", "Hiragino Mincho Pro", serif;
    letter-spacing: 0.1em;
    font-size: 1.7rem;
    white-space: nowrap;
}

h1.page_title_ja::before {
    content: '';
    position: absolute;
    bottom: -20px;
    width: 50px;
    height: 2px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0069cc;
}

h1.section_title {
    color: #0069cc;
    margin-top: 1em;
}

h1.section_title::before {
    content: url('../img/underline.png');
    position: absolute;
    bottom: -0.8em;
    left: 49%;
    transform: translateX(-50%);
}

.bg_blue {
    background-color: #eaf6fd;
    padding: 10% 0;
}

.inner_box {
    background-color: #fff;
    width: 90%;
    margin: 0 auto 3rem;
    padding: 3rem 1.5rem;
}

.inner_box.multiple {
    padding-top: 0;
    margin-top: 5rem;
}

.sub_menu ul {
    display: flex;
    flex-direction: column;
}

.sub_menu ul a {
    color: #fff;
    border-right: 1px solid #FFF;
    width: 100%;
    text-align: center;
    font-size: 1.3rem;
    font-family: "游明朝", "YuMincho", "Yu Mincho", "Hiragino Mincho Pro", serif;
    padding: 1rem 0;
    margin: 0.5rem 0;
    background-color: #0069cc;
    transition: 0.5s;
    border-radius: 5px;
}
.sub_menu.lines ul a {
    padding: 1rem 0;
}

.anchor {
    padding-top: 100px;
}

.anchor_inner {
    margin-top: -100px;
    padding-top: 5rem;
}

h3.news_title {
    color: #0069cc;
    font-size: 1.2em;
}

img.news_img {
    border: 1px solid #a0a0a0;
}

.close_button {
    border: 1px solid #0069cc;
    color: #0069cc;
    padding: 0.5em;
    transition: 0.3s;
}

.close_button:hover {
    background-color: #0069cc;
    color: #FFF;
}

/*********************************************** ヘッダー *****************************************************/
header {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99;
    transition: 0.3s;
    background-color: rgba(255, 255, 255, .9);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.pc_menu {
    display: none;
}

h1.header_logo {
    margin-top: 4%;
    margin-left: 2%;
    width: 60%;
}

h1.header_logo img {
    width: 100%;
}

/******************************** スマホ用メニュー *********************************************/

#hamburger {
    position: absolute;
    display: block;
    width: 30px;
    height: 25px;
    right: 20px;
    top: 20px;
 }

 #hamburger span {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #0069cc;
    transform: translateY(-50%);
 }

 .sp_menu {
     color: #FFF;
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    display: block;
    background: rgba(0, 105, 204, .9);
    transition: all .2s ease-in-out;
    opacity: 0;
    transform: translateY(-100%);
 }

 .sp_menu ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
 }
 .sp_menu li {
    margin: 0;
    padding: 0;
    font-size: 1.2rem;
 }

 .sp_menu li span {
    font-size: 1.2rem;
    color: #fff;
 }

.sp_menu li span:hover {
    cursor:pointer;
}

 .sp_menu li a, .sp_menu li span {
    display: block;
    padding-bottom: 1.5em;
 }

 .sp_menu .close {
    position: relative;
    padding-left: 20px;
 }

 .sp_menu .close::before {
    content: '';
    position: absolute;
    top: 27%;
    left: 0;
    display: block;
    width: 16px;
    height: 1px;
    background: #fff;
    transform: rotate( 45deg );
 }
 
 .sp_menu .close::after {
    content: '';
    position: absolute;
    top: 27%;
    left: 0;
    display: block;
    width: 16px;
    height: 1px;
    background: #fff;
    transform: rotate( -45deg );
 }

 #hamburger::before, #hamburger::after {
    content: '';
    display: block;
    position: absolute;
    height: 2px;
    background-color: #0069cc;
 }

 #hamburger::before {
    top: 0;
    left: 0;
    width: 100%;
 }

 #hamburger::after {
    bottom: 0;
    left: 0;
    width: 70%;
 }

 .toggle {
    transform: translateY( 0 );
    opacity: 1;
 }

/*************************************************** フッター **************************************************/
footer {
    color: #fff;
    width: 100%;
    font-size: 13px;
}

#footer_top {
    display: none;
}

#footer_bottom {
    background-color: #000;
    font-family: 'Abhaya Libre', serif;
    padding: 0.5em 0;
}

/********************************************** タブレット用 ********************************************************/
@media (min-width: 415px) {
    h1.page_title_ja,
h1.section_title {
    letter-spacing: 0.2em;
    font-size: 2rem;
}

h1.page_title_ja::before {
    height: 3px;
}

h1.section_title {
    color: #0069cc;
    margin-top: 2em;
}

.inner_box {
    width: 85%;
    margin: 0 auto 3rem;
    padding: 5%;
}

.sub_menu ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.sub_menu ul a {
    border-right: 1px solid #FFF;
    width: 100%;
    font-size: 1.2rem;
    padding: 2rem 0;
    margin: 0;
    border-radius: 0px;
}

.sub_menu.lines ul a {
    padding: 1rem 0;
}

.sub_menu ul a:hover {
    background-color: #004586;
}

.sub_menu ul a:first-child {
    border-radius: 5px 0px 0px 5px;
}

.sub_menu ul a:last-child {
    border-right: none;
    border-radius: 0px 5px 5px 0px;
}

/****** ヘッダー ******/

#top_menu {
    width: 90%;
    margin: 0 auto;
}

.pc_menu {
    display: none;
}

h1.header_logo {
    margin-top: 0.8rem;
    margin-left: 0.8rem;
    width: 35%;
}

}

/*********************************************** PC用 *************************************************************/
@media (min-width: 1024px) {
    h1.page_title_ja {
    letter-spacing: 0.5em;
    font-size: 34px;
}

h1.page_title_ja::before {
    height: 3px;
}

h2.page_title_en {
    font-size: 14px;
}

h1.section_title {
    color: #0069cc;
    margin-top: 2em;
    letter-spacing: 0.5em;
    font-size: 32px;
}

.bg_blue {
    padding: 110px 0 120px;
}

.inner_box {
    width: 1000px;
    margin: 0 auto;
    padding: 8%;
}

.sub_menu {
    width: 800px;
    margin: 0 auto;
}

.sub_menu ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.sub_menu ul a {
    border-right: 2px solid #FFF;
    width: 100%;
    font-size: 23px;
    padding: 36px 0;
    margin: 0;
    border-radius: 0px;
}

.sub_menu.lines ul a {
    padding: 1rem 0;
}

.sub_menu ul a:hover {
    background-color: #004586;
}

.sub_menu ul a:first-child {
    border-radius: 5px 0px 0px 5px;
}

.sub_menu ul a:last-child {
    border-right: none;
    border-radius: 0px 5px 5px 0px;
}

/****** ヘッダー ******/
header {
    display: block;
}

#top_menu {
    width: 1000px;
    height: 120px;
    margin: 0 auto;
}

.pc_menu {
    display: block;
    margin-bottom: 1em;
}

h1.header_logo {
    margin: 1rem auto 0;
    width: 1000px;
}

h1.header_logo img {
    width: 280px;
}

.pc_menu ul {
    display: flex;
    justify-content: center;
    position: relative;
}

.pc_menu ul li a {
    padding: 0 1.2em;
    white-space: nowrap;
    transition: 0.5s;
}

.pc_menu ul li a.pc_menu_first {
    padding-left: 0;
}

.pc_menu ul li a.pc_menu_last {
    padding-right: 0;
}

.pc_menu ul li a:hover {
    color: #0069cc;
}

.pc_menu ul li a.current {
    color: #0069cc;
}

.pc_menu ul li+li::before {
    position: absolute;
    display: block;
    content: "";
    top: 50%;
    height: 14px;
    margin-top: -7px;
    border-right: 1px solid #000;
}

#hamburger {
    display: none;
}

/****** フッター ******/
footer a {
    transition: 0.3s;
}

footer a:hover {
    color: #000;
}

#footer_top {
    background-color: #0069cc;
    display: block;
}

.footer_logo {
    padding: 2rem 0 1rem;
}

.footer_nav {
    display: flex;
    justify-content: center;
    width: 90%;
    margin: 0 auto;
    padding-bottom: 3em;
}

.footer_nav h3 {
    font-size: 13px;
    font-weight: bold;
    padding-bottom: 0.5em;
}

.footer_nav ul li {
    font-size: 13px;
    padding-bottom: 0.3em;
}

.footer_nav ul li::before {
    content: "･"
}

.footer_nav div {
    margin-right: 3em;
}

.footer_nav div:last-child {
    margin-right: 0;
}

.jigyou {
    display: flex;
}

.jigyou>div {
    margin-right: 1em;
}

}