@charset "UTF-8";

/* Scss Document */
/* Scss Document */
@media screen and (max-width: 767px) {
    .pcOnly {
        display: none !important;
    }

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

    #cover {
        display: none;
    }
}

@media screen and (min-width: 768px),
print {
    body {
        min-width: 1220px;
    }

    .smOnly {
        display: none !important;
    }
}

@media screen and (min-width: 768px),
print {

    /*
  .fixed header .nav01{
  	display : none;
  }
  	*/
    .fixed header .logo img {
        transform: scale(0.8);
    }
}

.kaigyo li {
    padding-left: 1em;
    text-indent: -1em;
}

.pt13 li {
    font-size: 13px;
}

#gNav_overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 92px;
    left: 0;
    background: rgba(13, 42, 64, 0.6);
    /* 背景を半透明にする */
    display: none;
    z-index: 1;
}

#gNav ul li .gnavSubMenu {
    display: none;
    /*		transition: 0.4s ease-in-out;*/
}

#gNav ul li.open .gnavSubMenu {
    display: block;
}

#gNav .gnavSubMenu {
    width: 1160px;
    height: 310px;
    top: 82px;
    left: 50%;
    position: fixed;
    margin: 0 0 0 -580px;
    padding: 5px 0 0 0;
    background-color: #FFF;
    z-index: 2;
}

body {
    color: #191919;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

#toggleMenu span {
    display: block;
    height: 2px;
    width: 25px;
    background-color: #27180b;
    position: absolute;
    left: 12.5px;
    -webkit-transition: opacity .25s ease, -webkit-transform .5s ease-out;
    transition: opacity .25s ease, -webkit-transform .5s ease-out;
    transition: transform .5s ease-out, opacity .25s ease;
    transition: transform .5s ease-out, opacity .25s ease, -webkit-transform .5s ease-out;
}

#toggleMenu span:nth-of-type(1) {
    top: 16px;
}

#toggleMenu span:nth-of-type(2) {
    top: 24px;
}

#toggleMenu span:nth-of-type(3) {
    top: 32px;
}

#toggleMenu.opened span:first-of-type {
    -webkit-transform: translateY(8px) rotate(45deg);
    transform: translateY(8px) rotate(45deg);
}

/*-----------------------
header
-----------------------*/
header {
    z-index: 10000;
    float: left;
    width: 100%;
    position: relative;
}

header .btnWrap {
    float: right;
    width: 140px;
    /* width : 70px; */
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

header .btnWrap .menuBtn {
    width: 70px;
    height: 70px;
    background: #0260A9;
    position: relative;
}

header .btnWrap .menuBtn span {
    display: block;
    height: 2px;
    width: 25px;
    background-color: #FFF;
    position: absolute;
    left: 22.5px;
    -webkit-transition: opacity .25s ease, -webkit-transform .5s ease-out;
    transition: opacity .25s ease, -webkit-transform .5s ease-out;
    transition: transform .5s ease-out, opacity .25s ease;
    transition: transform .5s ease-out, opacity .25s ease, -webkit-transform .5s ease-out;
}

header .btnWrap .menuBtn span:nth-of-type(1) {
    top: 26px;
}

header .btnWrap .menuBtn span:nth-of-type(2) {
    top: 34px;
}

header .btnWrap .menuBtn span:nth-of-type(3) {
    top: 42px;
}

header .btnWrap .menuBtn img {
    width: 70px;
}

header .btnWrap .countryBtn {
    font-size: 0;
    letter-spacing: 0;
    position: relative;
}

header .btnWrap .countryBtn span,
header .btnWrap .countryBtn li {
    display: inline-block;
    background: #601AC0;
    color: #fff;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 13px;
    letter-spacing: 0.1em;
    line-height: 70px;
    width: 70px;
    text-align: center;
    cursor: pointer;
}

header .btnWrap .countryBtn li {
    background-color: #7728e2;
}

header .btnWrap .countryBtn li a {
    display: block;
    color: #fff;
}

header .btnWrap .countryBtn span {
    z-index: 2;
    position: relative;
}

header .btnWrap .countryBtn.active ul {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

header .btnWrap .countryBtn ul {
    width: 140px;

    -webkit-transition: transform .5s ease;
    transition: transform .5s ease;

    position: absolute;
    top: 0;
    left: 0;
}

@media screen and (max-width: 767px) {
    header {
        margin: 0 0 6px;
    }

    header .logo {
        display: block;
        padding: 15px;
        width: 150px;
        float: left;
    }

    header .logo img {
        height: 43px;
        width: auto;
    }

    header .fixMenu {
        width: 100%;
        height: 70px;
        padding: 0px;
        background: #fff;
        position: fixed;
        top: 0px;
        left: 0;
        z-index: 9999;
        transform: translate3d(0, 0, 0);
    }
}

@media screen and (min-width: 768px),
print {
    header {
        margin: 0 0 0px;
    }

    header .fixMenu {
        position: absolute;
        top: 65px;
    }

    header .fixMenu.fixed {
        position: fixed;
        top: 0;
        z-index: 9999;
        margin: 0 auto;
        height: 70px;
    }

    header .fixMenu.fixed .fixMenuIn {
        padding: 10px 0 0;
    }

    header .nav01 {
        width: 100%;
        background: #F5F5F5;
        float: left;
        margin: 0 0 20px;
    }

    header .nav01 .menu01 {
        width: 700px;
        float: left;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 0 20px;
    }

    header .nav01 .menu01 li {
        padding: 0 20px 0 0;
    }

    header .nav01 .menu01 li a {
        font-size: 12px;
        font-weight: bold;
        line-height: 36px;
    }

    header .nav01 .menu01 li a:after {
        content: "";
        width: 1px;
        height: 10px;
        border-right: solid 1px #9F9F9F;
        font-size: 8px;
        display: inline-block;
        position: relative;
        left: 10px;
    }

    header .nav01 .menu01 li:last-of-type a:after {
        display: none;
    }

    header .nav01 .menu02 {
        width: 400px;
        /* width: 280px; */
        float: right;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        text-align: center;
    }

    header .nav01 .menu02 a {
        color: #fff;
        font-weight: bold;
        line-height: 36px;
        height: 36px;
        display: block;
        font-size: 12px;
    }

    header .nav01 .menu02 .btn01 {
        width: 120px;
        background: #E50012;
    }

    header .nav01 .menu02 .btn01 a {
        padding: 0 0 0 15px;
        background: url(../img/common/ico_head01.png) no-repeat left 20px center;
    }

    header .nav01 .menu02 .btn02 {
        width: 120px;
        background: #0060AA;
    }

    header .nav01 .menu02 .btn02 a {
        padding: 0 0 0 15px;
        background: url(../img/common/ico_head02.png) no-repeat left 17px center;
    }

    header .nav01 .menu02 .btn03 {
        width: 120px;
        background: #5D19B8;
    }

    header .nav01 .menu02 .btn03 a {
        font-family: 'Josefin Sans', sans-serif;
    }

    header .nav01 .menu02 .btn03>a {
        position: relative;
    }

    header .nav01 .menu02 .btn03>a:after {
        transition: transform .1s ease-out;
        content: "";
        display: block;
        position: absolute;
        top: 15px;
        left: 18px;
        width: 5px;
        height: 6px;
        background: url(../img/common/ico_head03.png) no-repeat left center;
    }

    header .nav01 .menu02 .btn03 .sub {
        position: absolute;
        display: block;
        height: 0px;
        width: 120px;
        overflow: hidden;
        z-index: 3;
    }

    header .nav01 .menu02 .btn03.isActive>a:after {
        content: "";
        display: block;
        position: absolute;
        top: 15px;
        left: 18px;
        width: 5px;
        height: 6px;
        background: url(../img/common/ico_head03.png) no-repeat left center;
        transform: rotate(90deg);
    }

    header .nav01 .menu02 .btn03.isActive>ul.sub {
        top: 36px;
        height: auto;
    }

    header .nav01 .menu02 .btn03.isActive>ul.sub a {
        background: #5D19B8;
        display: block;
        width: 120px;
    }

    header .nav01 .menu02 .btn03.isActive>ul.sub a.current {
        cursor: default;
    }

    header .nav01 .menu02 .btn04 {
        width: 40px;
        background: #007DDF;
        position: relative;
    }

    header .nav01 .menu02 .btn04 .searchOpen {
        height: 35px;
        cursor: pointer;
        background: url(../img/common/ico_search01.png) no-repeat center center #007DDF;
    }

    header .nav01 .menu02 .btn04.open .searchOpen {
        opacity: 1;
        background: url(../img/common/ico_close01.png) no-repeat center center #007DDF;
    }

    header .nav01 .menu02 .btn04 .search {
        transition: 0.3s ease-in-out;
        position: absolute;
        display: block;
        height: 0px;
        width: 400px;
        left: -360px;
        overflow: hidden;
        z-index: 1;
    }

    header .nav01 .menu02 .btn04 .search input[type="text"] {
        position: relative;
        left: 30px;
        top: 30px;
        width: 290px;
        padding: 10px;
        background: center #fff;
        background-size: 26px;
    }

    header .nav01 .menu02 .btn04 .search input[type="submit"] {
        position: relative;
        left: 30px;
        top: 30px;
        width: 50px;
        color: #fff;
    }

    header .nav01 .menu02 .btn04 .search input[type="text"],
    header .nav01 .menu02 .btn04 .search input[type="submit"] {
        height: 40px;
        letter-spacing: 0.1em;
        border: none;
        float: left;
        font-size: 14px;
    }

    header .nav01 .menu02 .btn04.open .search {
        transition: 0.3s ease-in-out;
        height: auto;
        overflow: hidden;
        background: #013D6B;
        padding: 0 0 60px;
    }

    header .nav01 .menu02 .btn04.open .search input[type="submit"] {
        background: #0570C7;
        color: #fff;
        font-size: 11px;
        font-weight: bold;
    }

    header .fixMenu {
        width: 100%;
        margin: 0px auto 0px;
        background: #fff;
    }

    header .fixMenu .fixMenuIn {
        width: 1100px;
        margin: 0 auto;
        padding: 0px 0 0;
        overflow: hidden;
    }

    header .fixMenu .logo {
        float: left;
    }

    header #gNav {
        /*width : 900px;*/
        float: left;
        padding: 14px 0 0px 50px;
        /*width : 510px;*/
    }

    header #gNav>ul {
        width: 100%;
        display: flex;
    }

    header #gNav>ul>li {
        padding: 0px;
        text-align: center;
        position: relative;
        height: 70px;
    }

    header #gNav>ul>li::after {
        content: '';
        position: absolute;
        bottom: 23px;
        left: 0;
        width: 100%;
        height: 4px;
        transform: scaleX(0);
        background-color: #005faa;
        transition: all .3s ease;
    }

    header #gNav>ul>li:hover {
        cursor: pointer;
    }

    header #gNav>ul>li:hover::after {
        transform: scaleX(1);
    }

    /* header #gNav > ul > li:last-of-type {
    padding: 0px 25px 40px 25px;
  }*/
    header #gNav>ul>li>a {
        font-size: 13px;
        padding: 0px 22px 30px 22px;
        font-weight: bold;
        display: block;
    }

    header #gNav>ul>li>a:hover {
        opacity: 1;
    }

    header #gNav>ul>li>ul {
        text-align: left;
    }

    header #gNav .nav01_01 {
        float: left;
    }

    header #gNav .nav01_01 li {
        margin-left: 10px;
        float: left;
        width: 300px;
        height: 294px;
        position: relative;
    }

    header #gNav .nav01_01 a {
        float: left;
        width: 300px;
        height: 294px;
        position: relative;
    }

    header #gNav .nav01_01 li.wide {
        float: left;
        width: 300px;
        height: 294px;
        position: relative;
    }

    header #gNav .nav01_01 li.wide a {
        float: left;
        width: 300px;
        height: 294px;
        position: relative;
    }

    header #gNav .nav01_01 li a {
        transition: 0.3s ease-in-out;
        background: rgba(255, 255, 255, 0);
    }

    header #gNav .nav01_01 li.arrow {
        position: relative;
    }

    header #gNav .nav01_01 li.arrow:before {
        content: "";
        display: block;
        position: absolute;
        background: #fff;
        width: 130px;
        height: 2px;
        bottom: 90px;
        left: 50px;
        z-index: 10;
    }

    header #gNav .nav01_01 li.arrow:after {
        content: "";
        display: block;
        position: absolute;
        background: #fff;
        width: 32px;
        height: 2px;
        bottom: 100px;
        left: 152px;
        transform: rotate(40deg);
    }

    header #gNav .nav01_01 li.arrow p {
        display: block;
        padding: 0 10px 0 0px;
        position: absolute;
        top: 44%;
        left: 50px;
        -webkit-transform: translate(0%, -35%);
        transform: translate(0%, -35%);
        font-size: 18px;
        font-weight: bold;
        color: #fff;
        letter-spacing: 0.1em;
        text-align: left;
    }

    header #gNav .nav01_01 li.arrow p span {
        display: block;
        position: relative;
        top: 4px;
        left: 0;
        font-size: 12px;
        font-family: 'Josefin Sans', sans-serif;
    }

    header #gNav .nav01_01 li.line span {
        display: block;
        padding: 0 0 0 30px;
        position: absolute;
        top: 45%;
        left: 0%;
        -webkit-transform: translate(0%, -35%);
        transform: translate(0%, -35%);
        font-size: 15px;
        font-weight: bold;
        color: #fff;
        letter-spacing: 0.1em;
    }

    header #gNav .nav01_01 li.line span:before {
        content: "";
        display: block;
        position: absolute;
        width: 30px;
        border-bottom: 2px solid #fff;
        bottom: -60%;
        left: 30px;
    }

    header #gNav .nav01_02 {
        float: left;
        width: 348px;
        margin: 0 0 0 10px;
    }

    header #gNav .nav01_02 span {
        display: block;
        padding: 0 0 0 30px;
        position: absolute;
        top: 40%;
        left: 0%;
        -webkit-transform: translate(0%, -35%);
        transform: translate(0%, -35%);
        font-size: 15px;
        font-weight: bold;
        color: #fff;
        letter-spacing: 0.1em;
    }

    header #gNav .nav01_02 span:before {
        content: "";
        display: block;
        position: absolute;
        width: 30px;
        border-bottom: 2px solid #fff;
        bottom: -50%;
        left: 30px;
    }

    header #gNav .nav01_02 li,
    header #gNav .nav01_02 a {
        position: relative;
    }

    header #gNav .nav01_02 li:nth-child(1) {
        float: left;
        width: 348px;
        height: 152px;
        text-align: left;
        margin: 0 0 10px;
    }

    header #gNav .nav01_02 li:nth-child(1) a {
        float: left;
        width: 348px;
        height: 152px;
        text-align: left;
        margin: 0 0 10px;
    }

    header #gNav .nav01_02 li.min {
        width: 169px;
        height: 132px;
    }

    header #gNav .nav01_02 li.min a {
        width: 169px;
        height: 132px;
    }

    header #gNav .nav01_02 li.min span,
    header #gNav .nav01_02 li.min a span {
        display: block;
        padding: 0 0 0 0px;
        position: absolute;
        width: 100%;
        top: 47%;
        font-size: 13px;
        font-weight: bold;
        color: #fff;
        letter-spacing: 0.1em;
        text-align: center;
    }

    header #gNav .nav01_02 li.min span:before,
    header #gNav .nav01_02 li.min a span:before {
        content: "";
        display: none;
    }

    header #gNav .nav01_02 li:nth-child(2) {
        float: left;
    }

    header #gNav .nav01_02 li:nth-child(2) a {
        float: left;
    }

    header #gNav .nav01_02 li:nth-child(3) {
        margin: 0 0 0 10px;
        float: left;
    }

    header #gNav .nav01_02 li:nth-child(3) a {
        float: left;
    }

    header #gNav .nav01_03,
    header #gNav .nav02_03 {
        background: #013D6B;
        float: left;
        width: 160px;
        min-height: 294px;
        padding: 35px 15px;
        margin: 0 0 0 10px;
    }

    header #gNav .nav01_03 .pdf:after,
    header #gNav .nav02_03 .pdf:after {
        content: "";
        width: 27px;
        height: 12px;
        background: url(../img/common/ico_pdf03.png) no-repeat center center;
        background-size: 27px auto;
        display: inline-block;
        position: relative;
        top: 1px;
        left: 6px;
    }

    header #gNav .nav01_03 li,
    header #gNav .nav02_03 li {
        float: left;
        width: 100%;
        text-align: left;
    }

    header #gNav .nav01_03 a,
    header #gNav .nav02_03 a {
        display: block;
        width: 100%;
        font-size: 12px;
        color: #fff;
        padding: 0 0 0 20px;
        margin: 0 0 5px;
        position: relative;
        line-height: 1.8;
    }

    header #gNav .nav01_03 a:before,
    header #gNav .nav02_03 a:before {
        content: "";
        display: block;
        position: absolute;
        top: 9px;
        left: 2px;
        width: 5px;
        height: 6px;
        background: url(../img/common/ico_head03.png) no-repeat left center;
    }

    header #gNav .nav02_01 {
        float: left;
    }

    header #gNav .nav02_01 li {
        margin-left: 10px;
        float: left;
        width: 360px;
        height: 294px;
        position: relative;
    }

    header #gNav .nav02_01 a {
        float: left;
        width: 360px;
        height: 294px;
        position: relative;
    }

    header #gNav .nav02_01 li a {
        transition: 0.3s ease-in-out;
        background: rgba(255, 255, 255, 0);
    }

    header #gNav .nav02_01 li.arrow {
        position: relative;
    }

    header #gNav .nav02_01 li.arrow:before {
        content: "";
        display: block;
        position: absolute;
        background: #fff;
        width: 130px;
        height: 2px;
        bottom: 90px;
        left: 50px;
        z-index: 10;
    }

    header #gNav .nav02_01 li.arrow:after {
        content: "";
        display: block;
        position: absolute;
        background: #fff;
        width: 32px;
        height: 2px;
        bottom: 100px;
        left: 152px;
        transform: rotate(40deg);
    }

    header #gNav .nav02_01 li.arrow p {
        display: block;
        padding: 0 10px 0 0px;
        position: absolute;
        top: 44%;
        left: 50px;
        -webkit-transform: translate(0%, -35%);
        transform: translate(0%, -35%);
        font-size: 18px;
        font-weight: bold;
        color: #fff;
        letter-spacing: 0.1em;
        text-align: left;
    }

    header #gNav .nav02_01 li.arrow p span {
        display: block;
        position: relative;
        top: 4px;
        left: 0;
        font-size: 12px;
        font-family: 'Josefin Sans', sans-serif;
    }

    header #gNav .nav02_02 {
        float: left;
        width: 295px;
        margin: 0 0 0 10px;
    }

    header #gNav .nav02_02 .line span,
    header #gNav .nav02_04 .line span {
        padding-bottom: 12px;
        font-size: 15px;
        font-weight: bold;
        letter-spacing: .1em;
        color: #fff;
        white-space: nowrap;
        position: absolute;
        top: 40px;
        left: 30px;
    }

    header #gNav .nav02_02 .line span:before,
    header #gNav .nav02_04 .line span:before {
        content: "";
        display: block;
        width: 30px;
        border-bottom: 2px solid #fff;
        position: absolute;
        bottom: 0;
        left: 0;
    }

    header #gNav .nav02_02 li,
    header #gNav .nav02_02 a {
        position: relative;
    }

    header #gNav .nav02_02 li:nth-child(1) {
        float: left;
        width: 295px;
        text-align: left;
        margin: 0;
    }

    header #gNav .nav02_02 li:nth-child(1) a {
        float: left;
        width: 295px;
        text-align: left;
        margin: 0;
    }

    header #gNav .nav02_02 li.min {
        width: 146px;
        height: 60px;
    }

    header #gNav .nav02_02 li.min a {
        width: 146px;
        height: 60px;
    }

    header #gNav .nav02_02 li.min:hover,
    header #gNav .nav02_02 li.min a:hover {
        opacity: 0.8 !important;
    }

    header #gNav .nav02_02 li.min span,
    header #gNav .nav02_02 li.min a span {
        display: block;
        padding: 0 0 0 20px;
        position: absolute;
        width: 100%;
        line-height: 60px;
        font-size: 12px;
        font-weight: bold;
        color: #fff;
        letter-spacing: 0.1em;
        text-align: left;
    }

    header #gNav .nav02_02 li.min span:before,
    header #gNav .nav02_02 li.min a span:before {
        content: "ー";
        padding: 0 8px 0 0;
        display: inline-block;
    }

    header #gNav .nav02_02 .blue {
        background: #005FA9;
    }

    header #gNav .nav02_02 .red {
        background: #E50212;
    }

    header #gNav .nav02_02 li:nth-child(2) {
        float: left;
    }

    header #gNav .nav02_02 li:nth-child(2) a {
        float: left;
    }

    header #gNav .nav02_02 li:nth-child(3) {
        margin: 0 0 0 3px;
        float: left;
    }

    header #gNav .nav02_02 li:nth-child(3) a {
        float: left;
    }

    header #gNav .nav03_01 {
        float: left;
    }

    header #gNav .nav03_01 li {
        margin-left: 10px;
        float: left;
        width: 440px;
        height: 294px;
        position: relative;
    }

    header #gNav .nav03_01 a {
        float: left;
        width: 440px;
        height: 294px;
        position: relative;
    }

    header #gNav .nav03_01 li a {
        transition: 0.3s ease-in-out;
        background: rgba(255, 255, 255, 0);
    }

    header #gNav .nav03_01 li.arrow {
        position: relative;
    }

    header #gNav .nav03_01 li.arrow:before {
        content: "";
        display: block;
        position: absolute;
        background: #fff;
        width: 130px;
        height: 2px;
        bottom: 90px;
        left: 50px;
        z-index: 10;
    }

    header #gNav .nav03_01 li.arrow:after {
        content: "";
        display: block;
        position: absolute;
        background: #fff;
        width: 32px;
        height: 2px;
        bottom: 100px;
        left: 152px;
        transform: rotate(40deg);
    }

    header #gNav .nav03_01 li.arrow p {
        display: block;
        padding: 0 10px 0 0px;
        position: absolute;
        top: 44%;
        left: 50px;
        -webkit-transform: translate(0%, -35%);
        transform: translate(0%, -35%);
        font-size: 18px;
        font-weight: bold;
        color: #fff;
        letter-spacing: 0.1em;
        text-align: left;
    }

    header #gNav .nav03_01 li.arrow p span {
        display: block;
        position: relative;
        top: 4px;
        left: 0;
        font-size: 12px;
        font-family: 'Josefin Sans', sans-serif;
    }

    header #gNav .nav03_02 {
        float: left;
        width: 690px;
        margin: 0 0 0 10px;
    }

    header #gNav .nav03_02 .line span {
        display: block;
        padding: 0 0 0 30px;
        position: absolute;
        top: 44%;
        left: 0%;
        -webkit-transform: translate(0%, -35%);
        transform: translate(0%, -35%);
        font-size: 15px;
        font-weight: bold;
        color: #fff;
        letter-spacing: 0.1em;
    }

    header #gNav .nav03_02 .line span:before {
        content: "";
        display: block;
        position: absolute;
        width: 30px;
        border-bottom: 2px solid #fff;
        bottom: -50%;
        left: 30px;
    }

    header #gNav .nav03_02 li,
    header #gNav .nav03_02 a {
        position: relative;
    }

    header #gNav .nav03_02 li:nth-child(1) {
        float: left;
        width: 340px;
        text-align: left;
        margin: 0 0 2px;
    }

    header #gNav .nav03_02 li:nth-child(1) a {
        float: left;
        width: 340px;
        text-align: left;
        margin: 0 0 2px;
    }

    header #gNav .nav03_02 li:nth-child(2) {
        float: left;
        width: 340px;
        height: 152px;
        text-align: left;
        margin: 0 0 10px 10px;
    }

    header #gNav .nav03_02 li:nth-child(2) a {
        float: left;
        width: 340px;
        height: 152px;
        text-align: left;
    }

    header #gNav .nav03_02 li.min {
        width: 165px;
        height: 132px;
    }

    header #gNav .nav03_02 li.min a {
        width: 165px;
        height: 132px;
    }

    header #gNav .nav03_02 li.min span,
    header #gNav .nav03_02 li.min a span {
        display: block;
        position: absolute;
        width: 100%;
        top: 50%;
        margin: -10px 0 0 0;
        padding: 0;
        font-size: 13px;
        font-weight: bold;
        color: #fff;
        letter-spacing: 0.1em;
        text-align: center;
    }

    header #gNav .nav03_02 li:nth-child(2) {
        float: left;
    }

    header #gNav .nav03_02 li:nth-child(2) a {
        float: left;
    }

    header #gNav .nav03_02 li:nth-child(3),
    header #gNav .nav03_02 li:nth-child(4) {
        margin: 0 0 0 10px;
        float: left;
    }

    header #gNav .nav03_02 li:nth-child(3) a,
    header #gNav .nav03_02 li:nth-child(4) a {
        float: left;
    }

    header #gNav .nav04_01 {
        float: left;
        width: 542px;
    }

    header #gNav .nav04_01 li {
        margin-left: 10px;
        float: left;
        height: 294px;
        position: relative;
    }

    header #gNav .nav04_01 a {
        float: left;
        height: 294px;
        position: relative;
    }

    header #gNav .nav04_01 li.arrow {
        width: 360px;
        position: relative;
    }

    header #gNav .nav04_01 li.arrow:before {
        content: "";
        display: block;
        position: absolute;
        background: #fff;
        width: 130px;
        height: 2px;
        bottom: 90px;
        left: 50px;
        z-index: 10;
    }

    header #gNav .nav04_01 li.arrow:after {
        content: "";
        display: block;
        position: absolute;
        background: #fff;
        width: 32px;
        height: 2px;
        bottom: 100px;
        left: 152px;
        transform: rotate(40deg);
    }

    header #gNav .nav04_01 li.arrow p {
        display: block;
        padding: 0 10px 0 0px;
        position: absolute;
        top: 44%;
        left: 50px;
        -webkit-transform: translate(0%, -35%);
        transform: translate(0%, -35%);
        font-size: 18px;
        font-weight: bold;
        color: #fff;
        letter-spacing: 0.1em;
        text-align: left;
    }

    header #gNav .nav04_01 li.arrow p span {
        display: block;
        position: relative;
        top: 4px;
        left: 0;
        font-size: 12px;
        font-family: 'Josefin Sans', sans-serif;
    }

    header #gNav .nav04_01 li:nth-child(2) {
        float: left;
        width: 340px;
        height: 152px;
        text-align: left;
        margin: 0 0 10px 10px;
    }

    header #gNav .nav04_01 li:nth-child(2) a {
        float: left;
        width: 340px;
        height: 152px;
        text-align: left;
    }

    header #gNav .nav04_01 li.min {
        width: 162px;
        height: 142px;
    }

    header #gNav .nav04_01 li.min a {
        width: 162px;
        height: 142px;
    }

    header #gNav .nav04_01 li.min span,
    header #gNav .nav04_01 li.min a span {
        display: block;
        position: absolute;
        width: 100%;
        top: 50%;
        margin: -10px 0 0 0;
        padding: 0;
        font-size: 13px;
        font-weight: bold;
        color: #fff;
        letter-spacing: 0.1em;
        text-align: center;
    }

    header #gNav .nav04_02 {
        float: left;
        width: 600px;
        margin: 0 0 0 10px;
    }

    header #gNav .nav04_02 .line span {
        display: block;
        padding: 0 0 0 30px;
        position: absolute;
        top: 44%;
        left: 0%;
        -webkit-transform: translate(0%, -35%);
        transform: translate(0%, -35%);
        font-size: 15px;
        font-weight: bold;
        color: #fff;
        letter-spacing: 0.1em;
    }

    header #gNav .nav04_02 .line span:before {
        content: "";
        display: block;
        position: absolute;
        width: 30px;
        border-bottom: 2px solid #fff;
        bottom: -50%;
        left: 30px;
    }

    header #gNav .nav04_02 li,
    header #gNav .nav04_02 a {
        position: relative;
    }

    header #gNav .nav04_02 li:nth-child(1) {
        float: left;
        width: 254px;
        text-align: left;
        margin: 0 0 2px;
    }

    header #gNav .nav04_02 li:nth-child(1) a {
        float: left;
        width: 254px;
        text-align: left;
        margin: 0 0 2px;
    }

    header #gNav .nav04_02 li:nth-child(2) {
        float: left;
        width: 162px;
        height: 142px;
        text-align: left;
        margin: 0 0 10px 10px;
    }

    header #gNav .nav04_02 li:nth-child(2) a {
        float: left;
        width: 162px;
        height: 142px;
        text-align: left;
    }

    header #gNav .nav04_02 li:nth-child(3) {
        float: left;
        width: 334px;
        height: 142px;
        text-align: left;
    }

    header #gNav .nav04_02 li:nth-child(3) a {
        float: left;
        width: 334px;
        height: 142px;
        text-align: left;
    }

    header #gNav .nav04_02 li.min span,
    header #gNav .nav04_02 li.min a span {
        display: block;
        position: absolute;
        width: 100%;
        top: 50%;
        margin: -10px 0 0 0;
        padding: 0;
        font-size: 13px;
        font-weight: bold;
        color: #fff;
        letter-spacing: 0.1em;
        text-align: center;
    }

    header #gNav .nav04_02 li:nth-child(2) {
        float: left;
    }

    header #gNav .nav04_02 li:nth-child(2) a {
        float: left;
    }

    header #gNav .nav04_02 li:nth-child(3) {
        float: left;
    }

    header #gNav .nav04_02 li:nth-child(3) a {
        margin: 0 0 0 10px;
        text-align: left;
    }

    header #gNav .nav04_02 li:nth-child(3) a span {
        text-align: left;
        padding: 0 0 0 30px;
        font-size: 15px;
    }

    header #gNav .nav04_03 {
        position: absolute;
        top: 4px;
        right: 10px;
        background: #013D6B;
        float: left;
        width: 163px;
        min-height: 143px;
        padding: 35px 15px;
    }

    header #gNav .nav04_03 .pdf:after {
        content: "";
        width: 27px;
        height: 12px;
        background: url(../img/common/ico_pdf03.png) no-repeat center center;
        background-size: 27px auto;
        display: inline-block;
        position: relative;
        top: 1px;
        left: 6px;
    }

    header #gNav .nav04_03 li {
        float: left;
        width: 100%;
        text-align: left;
    }

    header #gNav .nav04_03 a {
        display: block;
        width: 100%;
        font-size: 12px;
        color: #fff;
        padding: 0 0 0 20px;
        margin: 0 0 5px;
        position: relative;
        line-height: 1.8;
    }

    header #gNav .nav04_03 a:before {
        content: "";
        display: block;
        position: absolute;
        top: 9px;
        left: 2px;
        width: 5px;
        height: 6px;
        background: url(../img/common/ico_head03.png) no-repeat left center;
    }

    header #gNav .nav05_01 {
        float: left;
        width: 634px;
    }

    header #gNav .nav05_01 li {
        margin-left: 10px;
        float: left;
        height: 294px;
        position: relative;
    }

    header #gNav .nav05_01 a {
        float: left;
        height: 294px;
        position: relative;
    }

    header #gNav .nav05_01 li.arrow {
        width: 360px;
        position: relative;
    }

    header #gNav .nav05_01 li.arrow:before {
        content: "";
        display: block;
        position: absolute;
        background: #fff;
        width: 130px;
        height: 2px;
        bottom: 90px;
        left: 50px;
        z-index: 10;
    }

    header #gNav .nav05_01 li.arrow:after {
        content: "";
        display: block;
        position: absolute;
        background: #fff;
        width: 32px;
        height: 2px;
        bottom: 100px;
        left: 152px;
        transform: rotate(40deg);
    }

    header #gNav .nav05_01 li.arrow p {
        display: block;
        padding: 0 10px 0 0px;
        position: absolute;
        top: 44%;
        left: 50px;
        -webkit-transform: translate(0%, -35%);
        transform: translate(0%, -35%);
        font-size: 18px;
        font-weight: bold;
        color: #fff;
        letter-spacing: 0.1em;
        text-align: left;
    }

    header #gNav .nav05_01 li.arrow p span {
        display: block;
        position: relative;
        top: 4px;
        left: 0;
        font-size: 12px;
        font-family: 'Josefin Sans', sans-serif;
    }

    header #gNav .nav05_01 li:nth-child(2) {
        float: left;
        width: 248px;
        text-align: left;
        margin: 0 0 10px 10px;
    }

    header #gNav .nav05_01 li:nth-child(2) a {
        float: left;
        width: 248px;
        text-align: left;
    }

    header #gNav .nav05_01 .line span {
        display: block;
        padding: 0 0 0 30px;
        position: absolute;
        top: 44%;
        left: 0%;
        -webkit-transform: translate(0%, -35%);
        transform: translate(0%, -35%);
        font-size: 15px;
        font-weight: bold;
        color: #fff;
        letter-spacing: 0.1em;
    }

    header #gNav .nav05_01 .line span:before {
        content: "";
        display: block;
        position: absolute;
        width: 30px;
        border-bottom: 2px solid #fff;
        bottom: -50%;
        left: 30px;
    }

    header #gNav .nav05_02 {
        float: left;
        width: 506px;
        margin: 0 0 0 5px;
    }

    header #gNav .nav05_02 .line span {
        display: block;
        padding: 0 0 0 30px;
        position: absolute;
        top: 44%;
        left: 0%;
        -webkit-transform: translate(0%, -35%);
        transform: translate(0%, -35%);
        font-size: 15px;
        font-weight: bold;
        color: #fff;
        letter-spacing: 0.1em;
    }

    header #gNav .nav05_02 .line span:before {
        content: "";
        display: block;
        position: absolute;
        width: 30px;
        border-bottom: 2px solid #fff;
        bottom: -50%;
        left: 30px;
    }

    header #gNav .nav05_02 li,
    header #gNav .nav05_02 a {
        position: relative;
    }

    header #gNav .nav05_02 li:nth-child(1) {
        float: left;
        width: 334px;
        text-align: left;
    }

    header #gNav .nav05_02 li:nth-child(1) a {
        float: left;
        width: 334px;
        text-align: left;
    }

    header #gNav .nav05_02 li:nth-child(2) {
        float: left;
        width: 162px;
        height: 142px;
        text-align: left;
        margin: 0 0 10px 10px;
    }

    header #gNav .nav05_02 li:nth-child(2) a {
        float: left;
        width: 162px;
        height: 142px;
        text-align: left;
    }

    header #gNav .nav05_02 li:nth-child(3),
    header #gNav .nav05_02 li:nth-child(4),
    header #gNav .nav05_02 li:nth-child(5) {
        float: left;
        width: 162px;
        height: 142px;
        text-align: left;
    }

    header #gNav .nav05_02 li:nth-child(3) a,
    header #gNav .nav05_02 li:nth-child(4) a,
    header #gNav .nav05_02 li:nth-child(5) a {
        float: left;
        width: 162px;
        height: 142px;
        text-align: left;
    }

    header #gNav .nav05_02 li:nth-child(3),
    header #gNav .nav05_02 li:nth-child(4) {
        margin: 0 10px 0 0;
    }

    header #gNav .nav05_02 li.min span,
    header #gNav .nav05_02 li.min a span {
        display: block;
        position: absolute;
        width: 100%;
        top: 50%;
        margin: -10px 0 0 0;
        padding: 0;
        font-size: 13px;
        font-weight: bold;
        color: #fff;
        letter-spacing: 0.1em;
        text-align: center;
        line-height: 1.7;
    }

    header #gNav .nav05_02 li.min.twe span {
        margin: -20px 0 0 0;
    }

    header #gNav .nav05_02 li:nth-child(2) {
        float: left;
    }

    header #gNav .nav05_02 li:nth-child(2) a {
        float: left;
    }

    header #gNav .nav06_01 {
        float: left;
    }

    header #gNav .nav06_01 li {
        margin-left: 10px;
        float: left;
        height: 294px;
        position: relative;
    }

    header #gNav .nav06_01 a {
        float: left;
        height: 294px;
        position: relative;
    }

    header #gNav .nav06_01 li.arrow {
        width: 360px;
        position: relative;
    }

    header #gNav .nav06_01 li.arrow:before {
        content: "";
        display: block;
        position: absolute;
        background: #fff;
        width: 130px;
        height: 2px;
        bottom: 90px;
        left: 50px;
        z-index: 10;
    }

    header #gNav .nav06_01 li.arrow:after {
        content: "";
        display: block;
        position: absolute;
        background: #fff;
        width: 32px;
        height: 2px;
        bottom: 100px;
        left: 152px;
        transform: rotate(40deg);
    }

    header #gNav .nav06_01 li.arrow p {
        display: block;
        padding: 0 10px 0 0px;
        position: absolute;
        top: 44%;
        left: 50px;
        -webkit-transform: translate(0%, -35%);
        transform: translate(0%, -35%);
        font-size: 18px;
        font-weight: bold;
        color: #fff;
        letter-spacing: 0.1em;
        text-align: left;
    }

    header #gNav .nav06_01 li.arrow p span {
        display: block;
        position: relative;
        top: 4px;
        left: 0;
        font-size: 12px;
        font-family: 'Josefin Sans', sans-serif;
    }

    header #gNav .nav06_01 li.line {
        float: left;
        width: 250px;
        text-align: left;
    }

    header #gNav .nav06_01 li.line a {
        float: left;
        width: 250px;
        text-align: left;
    }

    header #gNav .nav06_01 li:nth-child(2) {
        margin: 0 0 10px 10px;
    }

    header #gNav .nav06_01 .line span {
        display: block;
        padding: 0 0 0 30px;
        position: absolute;
        top: 44%;
        left: 0%;
        -webkit-transform: translate(0%, -35%);
        transform: translate(0%, -35%);
        font-size: 15px;
        font-weight: bold;
        color: #fff;
        letter-spacing: 0.1em;
    }

    header #gNav .nav06_01 .line span:before {
        content: "";
        display: block;
        position: absolute;
        width: 30px;
        border-bottom: 2px solid #fff;
        bottom: -50%;
        left: 30px;
    }

    header #gNav .nav07_01 {
        float: left;
    }

    header #gNav .nav07_01 li {
        margin-left: 10px;
        float: left;
        height: 294px;
        position: relative;
    }

    header #gNav .nav07_01 a {
        float: left;
        height: 294px;
        position: relative;
    }

    header #gNav .nav07_01 li.arrow {
        width: 360px;
        position: relative;
    }

    header #gNav .nav07_01 li.arrow:before {
        content: "";
        display: block;
        position: absolute;
        background: #fff;
        width: 130px;
        height: 2px;
        bottom: 90px;
        left: 50px;
        z-index: 10;
    }

    header #gNav .nav07_01 li.arrow:after {
        content: "";
        display: block;
        position: absolute;
        background: #fff;
        width: 32px;
        height: 2px;
        bottom: 100px;
        left: 152px;
        transform: rotate(40deg);
    }

    header #gNav .nav07_01 li.arrow p {
        display: block;
        padding: 0 10px 0 0px;
        position: absolute;
        top: 44%;
        left: 50px;
        -webkit-transform: translate(0%, -35%);
        transform: translate(0%, -35%);
        font-size: 18px;
        font-weight: bold;
        color: #fff;
        letter-spacing: 0.1em;
        text-align: left;
    }

    header #gNav .nav07_01 li.arrow p span {
        display: block;
        position: relative;
        top: 4px;
        left: 0;
        font-size: 12px;
        font-family: 'Josefin Sans', sans-serif;
    }

    header #gNav .nav07_01 li.line {
        float: left;
        width: 270px;
        text-align: left;
    }

    header #gNav .nav07_01 li.line a {
        float: left;
        width: 270px;
        text-align: left;
    }

    header #gNav .nav07_01 li:nth-child(4) {
        width: 210px;
        margin: 0 0 0px 10px;
    }

    header #gNav .nav07_01 .line span {
        display: block;
        padding: 0 0 0 30px;
        position: absolute;
        top: 44%;
        left: 0%;
        -webkit-transform: translate(0%, -35%);
        transform: translate(0%, -35%);
        font-size: 15px;
        font-weight: bold;
        color: #fff;
        letter-spacing: 0.1em;
    }

    header #gNav .nav07_01 .line span:before {
        content: "";
        display: block;
        position: absolute;
        width: 30px;
        border-bottom: 2px solid #fff;
        bottom: -50%;
        left: 30px;
    }
}

.gnavSubMenu.sam {
    display: block !important;
}

.nav01_01 a:before,
.nav01_02 a:before,
.nav02_01 a:before,
.nav02_02 .line a:before,
.nav03_01 a:before,
.nav03_02 a:before,
.nav04_01 a:before,
.nav04_02 a:before,
.nav05_01 a:before,
.nav05_02 a:before,
.nav06_01 a:before,
.nav07_01 a:before {
    -webkit-transition: 0.2s ease-in-out;
    -moz-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    background: linear-gradient(90deg, rgba(3, 69, 122, 0.8), rgba(3, 69, 122, 0.2));
    top: 0;
    opacity: 0.5;
}

.nav02_02 .red,
.nav02_02 .blue {
    -webkit-transition: 0.2s ease-in-out;
    -moz-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.nav01_01 a:hover:before,
.nav01_02 a:hover:before,
.nav02_01 a:hover:before,
.nav02_02 .line a:hover:before,
.nav03_01 a:hover:before,
.nav03_02 a:hover:before,
.nav04_01 a:hover:before,
.nav04_02 a:hover:before,
.nav05_01 a:hover:before,
.nav05_02 a:hover:before,
.nav06_01 a:hover:before,
.nav07_01 a:hover:before {
    opacity: 0;
}

.open header .menuBtn span:first-of-type {
    -webkit-transform: translateY(8px) rotate(45deg);
    transform: translateY(8px) rotate(45deg);
}

.open header .menuBtn span:nth-of-type(2) {
    opacity: 0;
}

.open header .menuBtn span:last-of-type {
    -webkit-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg);
}

/*-----------------------
#openNav
-----------------------*/
#openNav {
    width: 100%;
    position: fixed;
    top: 70px;
    right: -100%;
    z-index: 10000;
    padding: 0 0 70px;
    background: rgba(255, 255, 255, 0.98);
    -webkit-transition: 0.4s ease-in-out;
    -moz-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    overflow-y: scroll !important;
    -webkit-overflow-scrolling: touch;
}

#openNav.open {
    right: 0;
}

#openNav .menuBtn {
    position: absolute;
}

#openNav .inner {
    height: 100%;
    padding: 18px 15px 100px 15px;
    position: relative;
}

#openNav .inner .menu01 {
    width: 100%;
    overflow: hidden;
    float: left;
    margin: 0 0 15px;
    padding: 0 5px;
}

#openNav .inner .menu01 li {
    display: block;
    float: left;
    width: 50%;
    padding: 0 5px 0 0;
}

#openNav .inner .menu01 li a {
    display: block;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    line-height: 40px;
    padding: 0 0 0 0px;
    background: #E50112;
}

#openNav .inner .menu01 li a:before {
    content: "";
    display: inline-block;
    position: relative;
    top: 5px;
    padding: 0 25px 0 0;
    width: 17px;
    height: 17px;
    background: url(../img/common/ico_head04.png) no-repeat left center;
    background-size: auto 17px;
}

#openNav .inner .menu01 li:last-of-type {
    padding: 0 0 0 5px;
}

#openNav .inner .menu01 li:last-of-type a {
    background: #0060A9;
}

#openNav .inner .menu01 li:last-of-type a:before {
    content: "";
    display: inline-block;
    position: relative;
    top: 5px;
    padding: 0 25px 0 0;
    width: 15px;
    height: 21px;
    background: url(../img/common/ico_head05.png) no-repeat left center;
    background-size: 15px 21px;
}

#openNav .inner .menu02 {
    width: 100%;
    overflow: hidden;
    float: left;
    margin: 0 0 15px;
    padding: 0 5px 15px;
}

#openNav .inner .menu02 li {
    display: block;
    float: left;
    width: 50%;
    padding: 0 0 0 10px;
}

#openNav .inner .menu02 li a {
    display: block;
    position: relative;
}

#openNav .inner .menu02 li a span {
    display: block;
    padding: 0 0 0 10px;
    position: absolute;
    top: 50%;
    left: 0%;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    font-size: 13px;
    font-size: 3.46667vw;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.1em;
}

#openNav .inner .menu02 li a:before {
    content: "";
    display: block;
    position: absolute;
    background: #fff;
    width: 55px;
    height: 1px;
    bottom: 15px;
    right: 10px;
}

#openNav .inner .menu02 li a:after {
    content: "";
    display: block;
    position: absolute;
    background: #fff;
    width: 16px;
    height: 1px;
    bottom: 20px;
    right: 8px;
    transform: rotate(40deg);
}

#openNav .inner .menu03 {
    clear: both;
    float: left;
    width: 100%;
    padding: 0px;
    margin: 0 0 20px;
    border-top: 2px solid #005FA8;
}

#openNav .inner .menu03>li {
    display: block;
    border-bottom: 2px solid #005FA8;
    overflow: hidden;
    float: left;
    width: 100%;
    clear: both;
}

#openNav .inner .menu03>li>a {
    display: block;
    padding: 20px 0 20px 15px;
    font-size: 14px;
    font-weight: bold;
    position: relative;
}

#openNav .inner .menu03>li>a:before {
    content: "+";
    display: block;
    position: absolute;
    color: #005FA8;
    top: 14px;
    right: 14px;
    font-size: 20px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
}

#openNav .inner .menu03>li>a.no:before {
    display: none;
}

#openNav .inner .menu03>li .submenu {
    display: none;
    padding: 0 15px 30px;
    overflow: hidden;
}

#openNav .inner .menu03>li .submenu .subList li {
    width: 50%;
    float: left;
    position: relative;
    margin: 0 0 10px;
}

#openNav .inner .menu03>li .submenu .subList .t1_2 {
    width: 100%;
}

#openNav .inner .menu03>li .submenu .subList .t1_2>a>span {
    display: block;
    padding: 0 10px 0 14px;
    position: absolute;
    top: 40%;
    left: 0%;
    -webkit-transform: translate(0%, -35%);
    transform: translate(0%, -35%);
    font-size: 13px;
    font-size: 3.46667vw;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.1em;
}

#openNav .inner .menu03>li .submenu .subList .t1_2>a>span:before {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    border-bottom: 1px solid #fff;
    bottom: -44%;
    left: 14px;
}

#openNav .inner .menu03>li .submenu .subList .t1 {
    width: 100%;
}

#openNav .inner .menu03>li .submenu .subList .t1>a>span {
    display: block;
    padding: 0 10px 0 20px;
    position: absolute;
    top: 45%;
    left: 0%;
    -webkit-transform: translate(0%, -35%);
    transform: translate(0%, -35%);
    font-size: 13px;
    font-size: 3.46667vw;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.1em;
}

#openNav .inner .menu03>li .submenu .subList .t1>a>span:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    border-bottom: 1px solid #fff;
    bottom: 40%;
    left: 20px;
}

#openNav .inner .menu03>li .submenu .subList .t1>a>span:after {
    content: "";
    display: block;
    position: absolute;
    background: #fff;
    width: 16px;
    height: 1px;
    bottom: 40%;
    right: -22px;
    margin: 0 0 5px;
    transform: rotate(40deg);
}

#openNav .inner .menu03>li .submenu .subList .t1>a>span .en {
    display: block;
    position: relative;
    top: 8px;
    font-size: 9px;
    font-size: 2.4vw;
    font-family: 'Josefin Sans', sans-serif;
}

#openNav .inner .menu03>li .submenu .subList .mb2 {
    margin: 0 0 2px;
}

#openNav .inner .menu03>li .submenu .subList .t2 {
    width: 50%;
    padding: 0 5px 0 0;
}

#openNav .inner .menu03>li .submenu .subList .t2.rit {
    padding: 0 0 0 5px;
}

#openNav .inner .menu03>li .submenu .subList .t2 span {
    display: block;
    padding: 0 0 0 14px;
    position: absolute;
    top: 40%;
    left: 0%;
    -webkit-transform: translate(0%, -35%);
    transform: translate(0%, -35%);
    font-size: 13px;
    font-size: 3.46667vw;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.1em;
}

#openNav .inner .menu03>li .submenu .subList .t2 span:before {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    border-bottom: 1px solid #fff;
    bottom: -10px;
    left: 14px;
}

#openNav .inner .menu03>li .submenu .subList .t2r {
    width: 50%;
    padding: 0 1px 0 0;
}

#openNav .inner .menu03>li .submenu .subList .t2r.rit {
    padding: 0 0 0 1px;
}

#openNav .inner .menu03>li .submenu .subList .t2r a {
    display: block;
    width: 100%;
    background: #E60112;
    line-height: 50px;
    padding: 0 0 0 14px;
    color: #fff;
    font-weight: bold;
    font-size: 13px;
}

#openNav .inner .menu03>li .submenu .subList .t2r a:before {
    content: "ー ";
    display: inline-block;
    color: #fff;
    padding: 0 5px 0 0;
    position: relative;
    font-size: 13px;
    font-weight: bold;
}

#openNav .inner .menu03>li .submenu .subList .t2b {
    width: 50%;
    padding: 0 1px 0 0;
}

#openNav .inner .menu03>li .submenu .subList .t2b.rit {
    padding: 0 0 0 1px;
}

#openNav .inner .menu03>li .submenu .subList .t2b a {
    display: block;
    width: 100%;
    background: #005FA9;
    line-height: 50px;
    padding: 0 0 0 14px;
    color: #fff;
    font-weight: bold;
    position: relative;
    font-size: 13px;
}

#openNav .inner .menu03>li .submenu .subList .t2b a:before {
    content: "ー ";
    display: inline-block;
    color: #fff;
    padding: 0 5px 0 0;
    position: relative;
    font-size: 13px;
    font-weight: bold;
}

#openNav .inner .menu03>li .submenu .subList2 {
    background: #013D6B;
    padding: 15px;
    width: 100%;
    overflow: hidden;
    float: left;
}

#openNav .inner .menu03>li .submenu .subList2 li a {
    display: block;
    width: 100%;
    float: left;
    color: #fff;
    padding: 0 0 0 14px;
    position: relative;
    font-size: 13px;
    font-weight: bold;
}

#openNav .inner .menu03>li .submenu .subList2 li a:before {
    content: "";
    width: 8px;
    height: 2px;
    position: absolute;
    left: 0;
    top: 50%;
    margin: -2px 0 0 0;
    background: #fff;
}

#openNav .inner .menu03>li .submenu .subList2 li a.pdf:after {
    content: "";
    width: 27px;
    height: 12px;
    background: url(../img/common/ico_pdf03.png) no-repeat center center;
    background-size: 27px auto;
    display: inline-block;
    position: relative;
    top: 1px;
    left: 6px;
}

#openNav .inner .menu03>li .submenu .subList2.arrow a:before {
    content: "▼";
    font-size: 8px;
    color: #fff;
    display: inline-block;
    position: absolute;
    top: 14px;
    left: -10px;
    background: none;
    transform: rotate(-90deg);
}

#openNav .inner .menu03>li.menu-toggle-open>a:before {
    content: "−";
    display: block;
    position: absolute;
    color: #005FA8;
    top: 14px;
    right: 14px;
    font-size: 20px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
}

#openNav .inner .menu04 {
    background: #005faa;
    padding: 20px;
    width: 100%;
    overflow: hidden;
    float: left;
    margin: 0 0 30px;
}

#openNav .inner .menu04 li a {
    display: block;
    width: 50%;
    float: left;
    color: #fff;
    padding: 0 0 0 14px;
    position: relative;
    font-size: 13px;
    font-weight: bold;
}

#openNav .inner .menu04 li a:before {
    content: "";
    width: 8px;
    height: 2px;
    position: absolute;
    left: 0;
    top: 50%;
    margin: -2px 0 0 0;
    background: #fff;
}

#openNav .inner .menu05 {
    width: 100%;
    text-align: center;
    margin: 0 0 20px;
    overflow: hidden;
    float: left;
}

#openNav .inner .menu05 li {
    display: inline-block;
    padding: 0 10px;
}

#openNav .inner .menu05 li a {
    display: inline-block;
}

#openNav .inner .menu05 li a.snsbtn01 img {
    width: 26px;
}

#openNav .inner .menu05 li a.snsbtn02 img {
    width: 25px;
}

#openNav .inner .menu05 li a.snsbtn03 img {
    width: 27px;
}

#openNav .inner .menu06 {
    width: 100%;
    text-align: center;
    margin: 0 0 20px;
}

#openNav .inner .menu06 li {
    display: inline-block;
    padding: 0 5px;
}

#openNav .inner .menu06 li a {
    display: inline-block;
    font-size: 11px;
}

#openNav .inner .menu06 li:not(:last-child):after {
    content: "|";
    display: inline-block;
    position: relative;
    left: 8px;
}

#openNav .inner .closeBtn {
    background: #013D6B;
    color: #fff;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    line-height: 55px;
    letter-spacing: 0.1em;
    font-family: 'Josefin Sans', sans-serif;
    margin: 0 0 40px;
}

#openNav .search {
    widows: 100%;
    margin: 10px 5px 20px;
    overflow: hidden;
    clear: both;
    background: #003D6B;
    padding: 12px;
}

#openNav .search input[type="text"] {
    width: 70%;
    padding: 10px;
    color: #a3a3a3;
    background: center #fff;
    background-size: 26px;
}

#openNav .search input[type="submit"] {
    width: 30%;
    color: #fff;
    background: url(../img/common/ico_head06.png) no-repeat center center #007CDE;
    background-size: 47px 15px;
}

#openNav .search input[type="text"],
#openNav .search input[type="submit"] {
    height: 40px;
    letter-spacing: 0.1em;
    border: none;
    float: left;
    font-size: 16px;
    -webkit-appearance: none;
    border-radius: 0;
}

/*-----------------------
contents
-----------------------*/
#contents {
    clear: both;
}

@media screen and (max-width: 767px) {
    #contents {
        padding: 0 15px 0;
        margin-top: 0;
    }
}

@media screen and (min-width: 768px),
print {
    #contents {
        position: relative;
        padding: 100px 0 0 0;
    }
}

@media screen and (min-width: 768px),
print {
    .top #contents {
        padding: 40px 0 0 0;
    }
}

/*-----------------------
mainVisual
-----------------------*/
.mainVisual {
    position: relative;
    min-height: 250px;
}

.mainVisual .inner::before,
.mainVisual .inner::after{
    content: '';
    display: inline-block;
    width: 100%;
    background-size: 16px 11px;
    background-repeat: no-repeat;
    position: relative;
    background: url(/asset/img/top/bg_topdot02.png);
    position: absolute;
    left: 0;
    right: 0;
    height: 20px;

}
.mainVisual .inner::before{
    top: 0px;
    border-bottom: solid #fff 10px;
}
.mainVisual .inner::after{
    bottom: 0;
    border-top: solid #fff 10px;
}

@media screen and (max-width: 767px) {
    .mainVisual {
        padding: 15px 15px;
        margin: 70px 0 20px;
        /*
        background: url(../img/top/bg_topdot02.png) repeat top left;
		*/
    }
    .mainVisual .inner{
        margin-top: 10px;
    }
    .mainVisual .inner::before{
        height: 30px;
    }
    .mainVisual .inner::after{
        display: none;
    }
    .top .mainVisual .inner{
        height: auto;
    }
    .top .mainVisual{
        margin-bottom: 0;
    }
}

@media screen and (min-width: 768px),
print {
    .mainVisual {
        /*
    &:after{
    	content: "";
    	width : 1300px;
    	height : 514px;
    	display: block;
    	position: absolute;
    	top : 0;
    	left : -40px;
    	background: url(../img/top/bg_topdot02.png) repeat top left;
    	z-index : -1;
    	border-radius: 8px;
    }
    */
    }

    .mainVisual:after {
        content: "";
        width: 100%;
        height: 514px;
        display: block;
        position: absolute;
        top: 150px;
        left: 0;
        background: url(../img/top/bg_topdot02.png) repeat top left;
        z-index: -1;
        border-radius: 8px;
    }

    .mainVisual .inner {
        width: 1220px;
        position: relative;
        top: 95px;
        margin: 0 auto 100px;
        clear: both;
        padding: 30px 0 0 0;
    }
}

.mainVisualSp {
    position: relative;
    min-height: 250px;
    /* PAGER */
}

.mainVisualSp li {
    background: #fff !important;
}

.mainVisualSp .bx-wrapper .bx-pager {
    text-align: center;
    font-size: .85em;
    font-family: Arial;
    font-weight: bold;
    color: #ccc;
    padding-top: 20px;
}

.mainVisualSp .bx-wrapper .bx-pager.bx-default-pager a {
    background: #ccc;
    text-indent: -9999px;
    display: block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    outline: 0;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.mainVisualSp .bx-wrapper .bx-pager.bx-default-pager a:hover,
.mainVisualSp .bx-wrapper .bx-pager.bx-default-pager a.active,
.mainVisualSp .bx-wrapper .bx-pager.bx-default-pager a:focus {
    background: #005FA9;
}

.mainVisualSp .bx-wrapper .bx-pager-item,
.mainVisualSp .bx-wrapper .bx-controls-auto .bx-controls-auto-item {
    display: inline-block;
    vertical-align: bottom;
    *zoom: 1;
    *display: inline;
}

.mainVisualSp .bx-wrapper .bx-pager-item {
    font-size: 0;
    line-height: 0;
}

.mainVisualSp .mainVisual {
    width: 100%;
}

.mainVisualSp .mainVisual img {
    width: 100%;
}

@media screen and (max-width: 767px) {
    .mainVisualSp {
        /*padding : 15px 15px;*/
        margin: 70px 0 50px;
    }

    .mainVisualSp .bx-wrapper {
        padding: 15px 15px;
        background: url(../img/top/bg_topdot02.png) repeat top left;
    }

    .mainVisualSp .bx-pager {
        position: absolute;
        bottom: -35px;
        left: 0;
        width: 100%;
        text-align: center;
    }
}

/*-----------------------
newsModule01
-----------------------*/
.newsModule01 {
    padding: 0 0 5px;
    border-bottom: solid 2px #F4F4F4;
}

.newsModule01 .tit {
    display: block;
    position: relative;
    width: 100%;
    font-size: 14px;
    font-weight: bold;
    margin: 0 0 5px;
}

.newsModule01 ul li {
    position: relative;
    margin: 0 0 5px;
    padding: 0 0 0 90px;
    line-height: 2;
}

.newsModule01 ul li time {
    position: absolute;
    top: 2px;
    left: 0;
    font-size: 13px;
    font-family: 'Roboto', serif;
    font-weight: 700;
}

.newsModule01 ul li a {
    color: #005faa;
    font-size: 13px;
    font-weight: bold;
}

@media screen and (max-width: 767px) {
    .newsModule01 {
        margin: 0 0 20px;
    }

    .newsModule01 ul li {
        position: relative;
        margin: 0 0 5px;
        padding: 0 0 0 90px;
        line-height: 2;
    }

    .newsModule01 ul li time {
        position: absolute;
        top: 2px;
        left: 0;
        font-size: 13px;
        font-family: 'Roboto', serif;
        font-weight: 700;
    }

    .newsModule01 ul li a {
        color: #005faa;
        font-size: 13px;
        font-weight: bold;
    }
}

@media screen and (min-width: 768px),
print {
    .newsModule01 {
        clear: both;
        width: 1020px;
        margin: 0 auto 20px;
    }

    .newsModule01 .tit {
        width: 185px;
        float: left;
        padding: 0 0 0 4px;
    }

    .newsModule01 ul {
        position: relative;
        padding: 3px 0 0 185px;
    }
}

/*-----------------------
newsModule02
-----------------------*/
.newsModule02 {
    overflow: hidden;
}

.newsModule02 .tit {
    display: block;
    position: relative;
    width: 100%;
    text-align: center;
    font-size: 19px;
    font-weight: bold;
    padding: 0 0 45px;
}

.newsModule02 .tit:first-letter {
    color: #005FA9;
}

.newsModule02 .tit:after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: 30px;
    width: 56px;
    height: 13px;
    margin: 0 0 0 -28px;
    background: url(../img/common/bg_tit01.png) no-repeat center center;
    background-size: 100%;
}

.newsModule02 ul li {
    margin: 0 0 5px;
}

.newsModule02 ul li time {
    font-size: 13px;
    font-family: 'Roboto', serif;
    font-weight: 700;
}

.newsModule02 ul li .cate {
    display: inline-block;
    width: 100px;
    padding: 0 10px;
    margin: 0 0 0 10px;
    text-align: center;
    font-size: 10px;
    font-weight: bold;
    color: #fff;
    background: #005FA9;
    line-height: 18px;
}

.newsModule02 ul li .cate.cat1 {
    background: #005faa;
}

.newsModule02 ul li .cate.cat2 {
    background: #003d6b;
}

.newsModule02 ul li .cate.cat3 {
    background: #07BACB;
}

.newsModule02 ul li .cate.cat4 {
    background: #FE671D;
}

.newsModule02 ul li .cate.cat5 {
    background: #611AC1;
}

.newsModule02 ul li .cate.cat6 {
    background: #3D9FD3;
}

.newsModule02 ul li .cate.cat7 {
    background: #7EC500;
}

.newsModule02 ul li .cate.cat8 {
    background: #007DDF;
}

.newsModule02 ul li .cate.cat9,
.newsModule02 ul li .cate.cat10,
.newsModule02 ul li .cate.cat11 {
    background: #495D6C;
}

.newsModule02 ul li .cate.cat13 {
    background: #FA37BA;
}

.newsModule02 ul li .cate.cat14 {
    background: #A90000;
}

.newsModule02 ul li .cate.cat15 {
    background: #2E8E00;
}

.newsModule02 ul li a {
    font-size: 13px;
}

.newsModule02 ul li .type02 .cate {
    background: #E50112;
}

.newsModule02 ul li .type03 .cate {
    background: #611AC0;
}

@media screen and (max-width: 767px) {
    .newsModule02 {
        margin: 0 0 30px;
    }
}

@media screen and (min-width: 768px),
print {
    .newsModule02 {
        clear: both;
        width: 1020px;
        margin: 0 auto 20px;
    }

    .newsModule02 .tit {
        display: block;
        float: left;
        position: relative;
        width: 185px;
        text-align: left;
        font-size: 16px;
        font-weight: bold;
        padding: 0 0 45px 4px;
    }

    .newsModule02 .tit:first-letter {
        color: #005FA9;
    }

    .newsModule02 .tit:after {
        content: "";
        display: block;
        position: absolute;
        left: 6px;
        bottom: 20px;
        width: 56px;
        height: 13px;
        margin: 0 0 0 0;
        background: url(../img/common/bg_tit01.png) no-repeat center center;
        background-size: 100%;
    }

    .newsModule02 ul {
        position: relative;
        padding: 3px 0 0 185px;
    }

    .newsModule02 ul li {
        position: relative;
    }

    .newsModule02 ul li>div {
        position: absolute;
        top: -1;
        left: 0;
        display: inline-block;
        padding: 0px 10px 0 0px;
    }

    .newsModule02 ul li>div time {
        padding: 0 5px 0 0;
    }

    .newsModule02 ul li>div .cate {
        margin: 0 0 0 20px;
        position: relative;
        top: -1px;
    }

    .newsModule02 ul li a {
        display: inline-block;
        padding: 2px 0 0 220px;
        line-height: 1.8;
    }

    .newsModule02 .more {
        position: relative;
        top: -30px;
    }
}

/*-----------------------
facultyModule01
-----------------------*/
.facultyModule01 .tit {
    display: block;
    position: relative;
    width: 100%;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    padding: 20px 0 40px;
    margin: 0 0 20px;
    letter-spacing: 0.1em;
}

.facultyModule01 .tit:after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: 10px;
    width: 83px;
    height: 22px;
    margin: 0 0 0 -42px;
    background: url(../img/common/bg_tit02.png) no-repeat top center;
    background-size: 100%;
}

.facultyModule01 .block {
    padding: 10px;
    margin: 0 0 15px;
    background: #fff;
    overflow: hidden;
}

.facultyModule01 .block figure {
    display: block;
    margin: 0 0 20px;
}

.facultyModule01 .block .tit2 {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 15px;
}

.facultyModule01 .block .txt {
    font-size: 13px;
    line-height: 1.8;
    margin: 0 0 5px;
}

@media screen and (max-width: 767px) {
    .facultyModule01 {
        margin: 0 -15px;
        padding: 5px 5px;
        background: url(../img/top/bg_top02.jpg) no-repeat center center;
        background-size: cover;
        min-height: 900px;
    }

    .facultyModule01 .blockwrap {
        display: block;
        padding: 10px;
        border: solid 2px #fff;
        min-height: 890px;
    }
}

@media screen and (min-width: 768px),
print {
    .facultyModule01 {
        padding: 5px;
        background: url(../img/top/bg_top02_pc.jpg) repeat top center;
        min-height: 638px;
    }

    .facultyModule01 .blockwrap {
        display: block;
        width: 100%;
        clear: both;
        padding: 10px;
        border: solid 2px #fff;
        min-height: 628px;
        text-align: center;
    }

    .facultyModule01 .blockwrap .tit {
        padding: 45px 0 45px;
        margin: 0 0 40px;
    }

    .facultyModule01 .blockwrap .block {
        display: inline-block;
        width: 490px;
        margin: 0 10px;
        text-align: left;
    }

    .facultyModule01 .blockwrap .block:hover {
        opacity: 1 !important;
    }

    .facultyModule01 .blockwrap .block:hover figure img {
        transform: scale(1.1);
    }

    .facultyModule01 .blockwrap .block figure {
        overflow: hidden;
        margin: 0 0 20px;
    }

    .facultyModule01 .blockwrap .block figure img {
        transition: transform 0.5s linear;
        max-width: 100%;
    }

    .facultyModule01 .blockwrap .block .tit2 {
        margin: 0 0 15px 20px;
        font-size: 18px;
    }

    .facultyModule01 .blockwrap .block .txt {
        margin: 0 20px 0 20px;
    }
    .p-top-contents .facultyModule01{
        margin-top: 50px;
    }
}

/*-----------------------
facultyModule02
-----------------------*/
.facultyModule02 a {
    display: block;
    text-align: center;
}

.facultyModule02 .block {
    position: relative;
    min-height: 242px;
    overflow: hidden;
}

.facultyModule02 .block .inner {
    position: absolute;
    width: 310px;
    top: 50%;
    left: 50%;
    /*-webkit-transform: translate(-50%, -50%);*/
    transform: translate(-50%, -50%);
}

.facultyModule02 .block .tit {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.2em;
}

.facultyModule02 .block .tit:after {
    content: "";
    width: 30px;
    height: 2px;
    background: #fff;
    display: block;
    position: relative;
    margin: 10px auto 20px;
}

.facultyModule02 .block .txt {
    display: block;
    text-align: center;
    font-weight: bold;
    font-size: 13px;
    line-height: 1.7;
    color: #fff;
    padding: 0 0 15px;
}

@media screen and (max-width: 767px) {
    .facultyModule02 .block {
        margin: 0 -15px;
        padding: 5px 5px;
    }

    .facultyModule02 .block.first {
        background: url(../img/top/bg_top03.jpg) no-repeat center center;
        /*	background-size: auto 904px;*/
        background-size: cover;
    }

    .facultyModule02 .block.second {
        background: url(../img/top/bg_top04.jpg) no-repeat center center;
        /*	background-size: auto 904px;*/
        background-size: cover;
    }

    .facultyModule02 .blockwrap {
        display: block;
        padding: 10px;
        border: solid 2px #fff;
        min-height: 239px;
    }
}

@media screen and (min-width: 768px),
print {
    .facultyModule02 {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
    }

    .facultyModule02 a {
        width: 50%;
    }

    .facultyModule02 a .block {
        padding: 5px;
    }

    .facultyModule02 a .block.first {
        background: url(../img/top/bg_top03_pc.jpg) no-repeat center center;
        /*	background-size: auto 904px;*/
        background-size: cover;
    }

    .facultyModule02 a .block.second {
        background: url(../img/top/bg_top04_pc.jpg) no-repeat center center;
        /*	background-size: auto 904px;*/
        background-size: cover;
    }

    .facultyModule02 a .blockwrap {
        display: block;
        padding: 10px;
        border: solid 2px #fff;
        min-height: 239px;
    }
}

/*-----------------------
instaModule
-----------------------*/
.instaModule {
    position: relative;
    z-index: 1;
}

.instaModule .tit {
    display: block;
    position: relative;
    width: 100%;
    text-align: left;
    font-size: 22px;
    font-weight: bold;
    padding: 0 0 45px;
    font-family: 'Roboto Slab', serif;
    letter-spacing: 0.1em;
}

.instaModule .tit:first-letter {
    color: #005FA9;
}

.instaModule .tit:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 83px;
    height: 22px;
    background: url(../img/common/bg_tit03.png) no-repeat center center;
    background-size: 100%;
}

.instaModule .inner {
    position: relative;
    text-align: center;
}

.instaModule .inner .txt {
    position: relative;
    display: inline-block;
    width: 100%;
    font-size: 14px;
    font-weight: bold;
    margin: 0 0 20px;
}

.instaModule .inner .txt:after {
    content: "";
    display: inline-block;
    width: 2px;
    height: 25px;
    background: #000;
    transform: rotate(25deg);
    position: relative;
    left: 25px;
    top: 8px;
}

.instaModule .inner .txt:before {
    content: "";
    display: inline-block;
    width: 2px;
    height: 25px;
    background: #000;
    transform: rotate(-25deg);
    position: relative;
    left: -25px;
    top: 8px;
}

.instaModule .inner .txt span {
    color: #005faa;
}

.instaModule .inner .link {
    z-index: 1;
    position: absolute;
    bottom: -50px;
    right: 4%;
    display: block;
    width: 130px;
    height: 130px;
    text-align: center;
    color: #fff;
    background: #005FA9;
    border-radius: 130px;
}

.instaModule .inner .link:after {
    content: "@out_tourism";
    display: block;
    position: relative;
    left: 0;
    top: 80px;
    font-family: 'Roboto Slab', serif;
    font-size: 13px;
    font-weight: bold;
}

@media screen and (max-width: 767px) {
    .instaModule {
        padding: 40px 0 0 0;
    }

    .instaModule .inner ul {
        position: relative;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        z-index: 2;
        margin: 0 0 100px;
    }

    .instaModule .inner ul li {
        width: 50%;
        margin: 0 0 15px;
    }

    .instaModule .inner ul li:nth-child(even) {
        padding: 0 0 0 7px;
    }

    .instaModule .inner ul li:nth-child(odd) {
        padding: 0 7px 0 0;
    }
}

@media screen and (min-width: 768px),
print {
    .instaModule {
        width: 1020px;
        margin: 0 auto;
        padding: 60px 0 30px 0;
    }

    .instaModule .tit {
        font-size: 22px;
        padding: 0 0 35px;
    }

    .instaModule .tit:after {
        bottom: 0px;
    }

    .instaModule .inner {
        min-height: 340px;
    }

    .instaModule .inner .txt {
        padding: 4px 0 0 390px;
        font-size: 13px;
    }

    .instaModule .inner ul {
        position: relative;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        display: block;
        margin: 0 -500px;
        padding: 0 300px;
        z-index: 2;
    }

    .instaModule .inner ul li {
        float: left;
        width: 190px;
        margin: 0 10px 0 0;
    }

    .instaModule .inner ul li img {
        width: 100%;
    }

    .instaModule .inner ul li:nth-of-type(8n) {
        display: none;
    }

    .instaModule .inner .link {
        z-index: 1;
        position: absolute;
        bottom: 220px;
    }

    .instaModule .inner .link:after {
        content: "@out_tourism";
        display: block;
        position: relative;
        left: 0;
        top: 30px;
        font-family: 'Roboto Slab', serif;
        font-size: 13px;
        font-weight: bold;
    }

    .instaModule .inner .link:hover {
        bottom: 235px;
    }
}

/*-----------------------
passportModule01
-----------------------*/
.passportModule01 {
    margin: 0 -15px;
    padding: 5px 15px;
    position: relative;
    clear: both;
    z-index: 1;
}

.passportModule01 .tit {
    position: absolute;
    top: -40px;
    left: 15px;
}

.passportModule01 .tit img {
    width: 155px;
}

.passportModule01 .txt {
    position: relative;
    font-size: 13px;
    font-weight: bold;
    padding: 40px 0 10px 140px;
}

.passportModule01 .box {
    overflow: hidden;
    border-bottom: 2px solid;
    margin: 0 0 25px;
    padding: 0 0 5px;
}

.passportModule01 .pickup .inner2 {
    background: #fff;
    margin: 0 0 15px;
}

.passportModule01 .pickup .author {
    text-align: right;
    padding: 10px 0 0 0;
    display: block;
    text-decoration: underline;
}

.passportModule01 .pickup .kiji {
    display: inline-block;
    position: relative;
    padding: 10px;
    transition: transform 0.5s linear;
}

.passportModule01 .pickup .kiji:after {
    content: "";
    display: block;
    position: absolute;
    left: -10px;
    top: -15px;
    width: 100px;
    height: 100px;
    background: url(../img/top/ico_pick01.png) no-repeat center center;
    background-size: 100%;
}

.passportModule01 .pickup .kiji figure {
    position: relative;
    margin: 0 0 15px;
    overflow: hidden;
}

.passportModule01 .pickup .kiji:hover {
    opacity: 1 !important;
}

.passportModule01 .pickup .kiji:hover figure img {
    transform: scale(1.1);
}

.passportModule01 .pickup .kiji span {
    position: relative;
    display: inline-block;
    padding: 0 0 12px;
    font-family: 'Roboto Slab', serif;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.1em;
}

.passportModule01 .pickup .kiji span:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    left: 0;
    bottom: 5px;
    background: #0060AA;
}

.passportModule01 .pickup .kiji time {
    float: right;
    font-family: 'Roboto', serif;
    font-size: 13px;
    font-weight: bold;
}

.passportModule01 .pickup .kiji .tit2 {
    font-size: 16px;
    font-weight: bold;
    margin: 10px 0 15px;
}

.passportModule01 .pickup .kiji .txt2 {
    font-size: 13px;
    line-height: 1.7;
}

.passportModule01 .kijiList {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.passportModule01 .kijiList li {
    margin: 0 0 15px;
    width: 50%;
}

.passportModule01 .kijiList li a {
    display: block;
    background: #fff;
    padding: 10px;
    transition: transform 0.5s linear;
}

.passportModule01 .kijiList li a .photo {
    position: relative;
}

.passportModule01 .kijiList li a .photo:after {
    content: "";
    display: block;
    position: absolute;
}

.passportModule01 .kijiList li a figure {
    position: relative;
    overflow: hidden;
    margin: 0 0 10px;
}

.passportModule01 .kijiList li a:hover {
    opacity: 1 !important;
}

.passportModule01 .kijiList li a:hover figure img {
    transform: scale(1.1);
}

.passportModule01 .kijiList li a time {
    display: block;
    font-family: 'Roboto', serif;
    font-size: 13px;
    font-weight: bold;
    margin: 0 0 10px;
}

.passportModule01 .kijiList li a .tit2 {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.7;
    margin: 0 0 10px;
}

.passportModule01 .kijiList li a .txt2 {
    font-size: 13px;
    line-height: 1.7;
}

@media screen and (max-width: 767px) {
    .passportModule01 {
        background: url(../img/top/bg_top05.jpg) no-repeat center center;
        background-size: cover;
        min-height: 900px;
        padding-bottom: 40px;
    }

    .passportModule01 .pickup .kijibox .box1 {
        width: 10%;
        float: left;
        display: block;
    }

    .passportModule01 .pickup .kijibox .box1:hover img {
        transform: scale(1) !important;
    }

    .passportModule01 .pickup .kijibox .box2 {
        width: 90%;
        float: right;
    }

    .passportModule01 .kijiList {
        display: flex;
        -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        flex-wrap: nowrap;
    }

    .passportModule01 .kijiList li:nth-child(even) {
        margin: 0 0 0 7px;
        background: #fff;
    }

    .passportModule01 .kijiList li:nth-child(odd) {
        margin: 0 7px 0 0;
        background: #fff;
    }

    .passportModule01 .kijiList .kiji {
        position: relative;
        overflow: hidden;
    }

    .passportModule01 .kijiList .kiji .box1 {
        width: 20%;
        float: left;
        display: block;
    }

    .passportModule01 .kijiList .kiji .box1:hover img {
        transform: scale(1) !important;
    }

    .passportModule01 .kijiList .kiji .box2 {
        width: 80%;
        float: right;
    }

    .passportModule01 .kijiList .kiji .author {
        text-align: right;
        text-decoration: underline;
    }

    .passportModule01 .kijiList object {
        display: none;
    }
}

@media screen and (min-width: 768px),
print {
    .passportModule01 {
        background: url(../img/top/bg_top05_pc.jpg) no-repeat center center;
        background-size: cover;
        min-height: 760px;
    }

    .passportModule01 .inner {
        width: 1020px;
        margin: 0 auto;
        position: relative;
    }

    .passportModule01 .inner .tit {
        position: absolute;
        top: -46px;
        left: 0;
    }

    .passportModule01 .inner .tit img {
        width: 300px;
    }

    .passportModule01 .inner .box {
        float: left;
        width: 320px;
        padding: 200px 0 0 0;
    }

    .passportModule01 .inner .box .txt {
        padding: 10px 0 50px 0px;
    }

    .passportModule01 .inner .pickup {
        float: right;
        width: 670px;
        margin: 90px 0 0 0;
    }

    .passportModule01 .inner .pickup .kiji {
        display: inline-block;
        position: relative;
        padding: 10px;
        width: 670px;
    }

    .passportModule01 .inner .pickup a {
        padding: 20px;
    }

    .passportModule01 .inner .pickup a .author {
        text-align: right;
    }

    .passportModule01 .inner .pickup a figure {
        float: left;
        width: 355px;
        margin: 0;
    }

    .passportModule01 .inner .pickup a figure img {
        max-width: 100%;
    }

    .passportModule01 .inner .pickup a span {
        position: relative;
        display: inline-block;
        padding: 20px 0 12px 0px;
        margin: 0 0 10px 30px;
        font-family: 'Roboto Slab', serif;
        font-size: 14px;
        font-weight: bold;
        letter-spacing: 0.1em;
    }

    .passportModule01 .inner .pickup a span:after {
        content: "";
        display: block;
        position: absolute;
        width: 100%;
        height: 3px;
        left: 0;
        bottom: 5px;
        background: #0060AA;
    }

    .passportModule01 .inner .pickup a .tit2 {
        display: inline-block;
        font-size: 15px;
        font-weight: bold;
        margin: 20px 0 10px 55px;
        position: relative;
        width: 220px;
    }

    .passportModule01 .inner .pickup a .tit2:after {
        content: "";
        position: absolute;
        display: block;
        top: -50px;
        left: -45px;
        width: 40px;
        height: 156px;
    }

    .passportModule01 .inner .pickup a .txt2 {
        display: inline-block;
        width: 270px;
        padding: 10px 0 0 55px;
        font-size: 12px;
    }

    .passportModule01 .inner .pickup .study .tit2:after {
        background: url(../img/top/ico_cat_study02.png) no-repeat 4px 6px #fff;
        background-size: 40px 156px;
    }

    .passportModule01 .inner .pickup .event .tit2:after {
        background: url(../img/top/ico_cat_event02.png) no-repeat 4px 6px #fff;
        background-size: 40px 156px;
    }

    .passportModule01 .inner .pickup .column .tit2:after {
        background: url(../img/top/ico_cat_column02.png) no-repeat 4px 6px #fff;
        background-size: 40px 156px;
    }

    .passportModule01 .inner .pickup .report .tit2:after {
        background: url(../img/top/ico_cat_report02.png) no-repeat 4px 6px #fff;
        background-size: 40px 156px;
    }

    .passportModule01 .inner .kijiList {
        clear: both;
    }

    .passportModule01 .inner .kijiList li {
        width: 320px;
        margin: 0;
    }

    .passportModule01 .inner .kijiList li:nth-child(2) {
        margin: 0 30px;
    }

    .passportModule01 .inner .kijiList li .author {
        padding: 5px 20px 10px !important;
        text-align: right;
        text-decoration: underline;
    }

    .passportModule01 .inner .kijiList li .kiji {
        min-height: 315px;
    }

    .passportModule01 .inner .kijiList li a {
        padding: 20px 20px 10px;
    }

    .passportModule01 .inner .kijiList li a .photo {
        position: relative;
    }

    .passportModule01 .inner .kijiList li a .photo:after {
        content: "";
        display: block;
        position: absolute;
        left: -10px;
        top: 102px;
        width: 40px;
        height: 156px;
        background: url(../img/common/ico_cate01.png) no-repeat center center;
        background-size: 100%;
    }

    .passportModule01 .inner .kijiList li a .photo img {
        width: 100%;
    }

    .passportModule01 .inner .kijiList li a.study .photo:after {
        background: url(../img/top/ico_cat_study02.png) no-repeat 4px 6px;
        background-size: 40px 156px;
    }

    .passportModule01 .inner .kijiList li a.event .photo:after {
        background: url(../img/top/ico_cat_event02.png) no-repeat 4px 6px;
        background-size: 40px 156px;
    }

    .passportModule01 .inner .kijiList li a.column .photo:after {
        background: url(../img/top/ico_cat_column02.png) no-repeat 4px 6px;
        background-size: 40px 156px;
    }

    .passportModule01 .inner .kijiList li a.report .photo:after {
        background: url(../img/top/ico_cat_report02.png) no-repeat 4px 6px;
        background-size: 40px 156px;
    }

    .passportModule01 .inner .kijiList li a figure {
        height: 100px;
    }

    .passportModule01 .inner .kijiList li a time {
        text-align: right;
        font-size: 12px;
        margin: 0 0 0px;
    }

    .passportModule01 .inner .kijiList li a .tit2 {
        margin: 0 0 15px 30px;
    }

    .passportModule01 .inner .kijiList li a .txt2 {
        padding: 0 0 0 30px;
    }
}

/*-----------------------
airlineModule01
-----------------------*/
.airlineModule01 {
    position: relative;
    margin: 40px -20px;
    padding: 0 20px;
    z-index: 1;
}

.airlineModule01 .innerWrap {
    position: relative;
    background: #f3f9fd;
}

.airlineModule01 .innerWrap:before {
    content: "";
    width: 100%;
    height: 5px;
    display: block;
    position: absolute;
    left: 0px;
    top: 0px;
    background: url(../img/top/bg_top06.jpg) repeat-x top center;
    background-size: auto 5px;
    z-index: 2;
}

.airlineModule01 .innerWrap:after {
    content: "";
    width: 100%;
    height: 5px;
    display: block;
    position: absolute;
    bottom: 0px;
    left: 0px;
    background: url(../img/top/bg_top06.jpg) repeat-x top center;
    background-size: auto 5px;
    z-index: 2;
}

.airlineModule01 .inner .tit {
    position: relative;
    margin: 0 0 0px;
    z-index: 3;
}

.airlineModule01 .inner .tit img {
    max-width: 258px;
}

.airlineModule01 .inner figure {
    position: relative;
    top: -10px;
    z-index: 1;
    margin: 0 0 10px;
}

.airlineModule01 .inner figure img {
    max-width: 318px;
    display: block;
    margin: 0 auto;
}

.airlineModule01 .inner .txt {
    font-size: 13px;
    font-weight: bold;
    line-height: 1.7;
    margin: 0 0 20px;
}

@media screen and (max-width: 767px) {
    .airlineModule01 .inner {
        position: relative;
        margin: 0 -40px;
        padding: 50px 55px 30px;
    }

    .airlineModule01 .inner:before {
        content: "";
        width: 100%;
        height: 190px;
        display: block;
        position: absolute;
        top: 0px;
        left: 0;
        background: url(../img/top/bg_top07.png) no-repeat top center;
        background-size: auto 190px;
        z-index: 2;
    }
}

@media screen and (min-width: 768px),
print {
    .airlineModule01 {
        width: 1020px;
        margin: 70px auto;
    }

    .airlineModule01 .innerWrap {
        width: 1020px;
    }

    .airlineModule01 .inner {
        width: 1020px;
        position: relative;
        margin: 0 0px;
        padding: 50px 30px 30px;
        min-height: 480px;
    }

    .airlineModule01 .inner:before {
        content: "";
        width: 1080px;
        height: 415px;
        display: block;
        position: absolute;
        top: 30px;
        left: 0;
        background: url(../img/top/img_top03_pc.png) no-repeat top 5px left 50px;
    }

    .airlineModule01 .inner .tit {
        top: 45px;
    }

    .airlineModule01 .inner .tit img {
        max-width: 324px;
        width: 324px;
    }

    .airlineModule01 .inner .txt {
        line-height: 1.8;
    }

    .airlineModule01 .inner .inner2 {
        padding: 185px 0 0 0;
        width: 325px;
        z-index: 3;
    }
}

/*-----------------------
slideModule01Sp
-----------------------*/
.slideModule01Sp {
    position: relative;
}

.slideModule01Sp li {
    background: #fff !important;
}

.slideModule01Sp .bx-wrapper .bx-prev:hover,
.slideModule01Sp .bx-wrapper .bx-prev:focus {
    background-position: 0 0;
}

.slideModule01Sp .bx-wrapper .bx-controls-direction a {
    position: absolute;
    top: 50%;
    margin-top: -20px;
    outline: 0;
    width: 35px;
    height: 35px;
    text-indent: -9999px;
    z-index: 9999;
}

.slideModule01Sp .bx-wrapper .bx-prev {
    left: 5px;
    background: url("../img/top/btn_bnrarrow01.png") no-repeat 0 0px;
    background-size: 35px 35px;
}

.slideModule01Sp .bx-wrapper .bx-next {
    right: 5px;
    background: url("../img/top/btn_bnrarrow02.png") no-repeat 0px 0px;
    background-size: 35px 35px;
}

.slideModule01Sp .bx-wrapper .bx-controls-direction a.disabled {
    display: none;
}

@media screen and (max-width: 767px) {
    .slideModule01Sp {
        margin: 20px -15px;
        padding: 20px 15px;
        background: url(../img/common/bg_col01.png) repeat top center;
    }
}

@media screen and (min-width: 768px),
print {
    .slideModule01Sp {
        width: 1220px;
        margin: 0 auto 0px;
        clear: both;
        padding: 30px 0 30px 0;
    }

    .slideModule01Sp:after {
        content: "";
        width: 1300px;
        height: 240px;
        display: block;
        position: absolute;
        top: 0;
        left: -40px;
        background: url(../img/top/bg_dot01.png) repeat top center;
        z-index: -1;
        border-radius: 8px;
    }

    .slideModule01Sp img {
        height: 180px;
    }
}

/*-----------------------
slideModule02Sp
-----------------------*/
.slideModule02Sp {
    position: relative;
    padding: 0 20px 20px;
    clear: both;
}

.slideModule02Sp li {
    background: #fff !important;
}

.slideModule02Sp .bx-wrapper .bx-prev:hover,
.slideModule02Sp .bx-wrapper .bx-prev:focus {
    background-position: 0 0;
}

.slideModule02Sp .bx-wrapper .bx-controls-direction a {
    position: absolute;
    top: 50%;
    margin-top: -20px;
    outline: 0;
    width: 35px;
    height: 35px;
    text-indent: -9999px;
    z-index: 9999;
}

.slideModule02Sp .bx-wrapper .bx-prev {
    left: 5px;
    background: url("../img/top/btn_bnrarrow01.png") no-repeat 0 0px;
    background-size: 35px 35px;
}

.slideModule02Sp .bx-wrapper .bx-next {
    right: 5px;
    background: url("../img/top/btn_bnrarrow02.png") no-repeat 0px 0px;
    background-size: 35px 35px;
}

.slideModule02Sp .bx-wrapper .bx-controls-direction a.disabled {
    display: none;
}


/*-----------------------
slideModule01
-----------------------*/
.slideModule01 {
    position: relative;
}

.slideModule01 .bx-wrapper .bx-prev:hover,
.slideModule01 .bx-wrapper .bx-prev:focus {
    background-position: 0 0;
}

.slideModule01 .bx-wrapper .bx-controls-direction a {
    position: absolute;
    top: 50%;
    margin-top: -20px;
    outline: 0;
    width: 51px;
    height: 50px;
    text-indent: -9999px;
    z-index: 9999;
}

.slideModule01 .bx-wrapper .bx-prev {
    left: 5px;
    background: url("../img/top/btn_bnrarrow01.png") no-repeat 0 0px;
}

.slideModule01 .bx-wrapper .bx-next {
    right: 5px;
    background: url("../img/top/btn_bnrarrow02.png") no-repeat 0px 0px;
}

.slideModule01 .bx-wrapper .bx-controls-direction a.disabled {
    display: none;
}

@media screen and (min-width: 768px),
print {
    .slideModule01 {
        width: 1220px;
        margin: 0 auto 0px;
        clear: both;
        padding: 30px 0 30px 0;
    }

    .slideModule01:after {
        content: "";
        width: 1300px;
        height: 240px;
        display: block;
        position: absolute;
        top: 0;
        left: -40px;
        background: url(../img/common/bg_col01.png) repeat top center;
        z-index: -1;
        border-radius: 8px;
    }

    .slideModule01 img {
        height: 180px;
    }

    .slideModule01 li a {
        display: block;
        background: #fff;
        width: 300px;
    }

    .slideModule01 li a:hover {
        opacity: 1 !important;
    }

    .slideModule01 li a:hover img {
        opacity: 0.7;
    }
}


/*-----------------------
slideModule02
-----------------------*/
.slideModule02 {
    position: relative;
}

.slideModule02 .bx-wrapper .bx-prev:hover,
.slideModule02 .bx-wrapper .bx-prev:focus {
    background-position: 0 0;
}

.slideModule02 .bx-wrapper .bx-controls-direction a {
    position: absolute;
    top: 50%;
    margin-top: -18px;
    outline: 0;
    width: 51px;
    height: 50px;
    text-indent: -9999px;
    z-index: 9999;
}

.slideModule02 .bx-wrapper .bx-prev {
    left: 0px;
    background: url("../img/top/btn_bnrarrow03.png") no-repeat 0 0px;
    width: 26px !important;
    height: 52px !important;
}

.slideModule02 .bx-wrapper .bx-next {
    right: 0;
    background: url("../img/top/btn_bnrarrow04.png") no-repeat 0px 0px;
    width: 26px !important;
    height: 52px !important;
}

.slideModule02 .bx-wrapper .bx-controls-direction a.disabled {
    display: none;
}

@media screen and (min-width: 768px),
print {
    .slideModule02 {
        width: 1202px !important;
        margin: 0 auto 0px !important;
        clear: both;
        padding: 30px 0 40px 0;
        overflow: hidden;
    }

    .slideModule02 .bx-wrapper {
        width: 1218px !important;
    }

    .slideModule02 img {
        height: 150px;
    }

    .slideModule02 li a {
        display: block;
        background: #fff;
        /*    width: 296px;*/
        width: 390px;
        overflow: hidden;
    }

    .slideModule02 li a:hover {
        opacity: 1 !important;
    }

    .slideModule02 li a:hover img {
        opacity: 0.7;
    }
}


#slider li {
    background: #fff !important;
}

#slider img {
    cursor: pointer;
}

#slider img:hover {
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    opacity: 0.7 !important;
}

#thumbnail_slider {
    width: 1229px;
    z-index: 1;
    position: relative;
    margin: 60px 0 0px;
}

#thumbnail_slider img {
    cursor: pointer;
}

#thumbnail_slider img:hover {
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    opacity: 0.7 !important;
}

#thumbnail_slider .prev-arrow {
    position: absolute;
    left: 0;
    top: 30px;
    z-index: 999;
}

#thumbnail_slider .next-arrow {
    position: absolute;
    right: 0;
    top: 30px;
    z-index: 999;
}

/*-----------------------
navModule01
-----------------------*/
.navModule01 {
    position: relative;
}

@media screen and (max-width: 767px) {
    .navModule01 {
        padding: 30px 20px 40px;
    }

    .navModule01 .inner figure {
        position: absolute;
        display: block;
        top: 30px;
        left: 0;
        z-index: 2;
    }

    .navModule01 .inner figure img {
        width: 114px;
    }

    .navModule01 .inner .txt {
        padding: 10px 0 15px 128px;
        font-size: 11px;
        font-weight: bold;
        position: relative;
    }

    .navModule01 .inner .txt span {
        color: #0060A9;
    }

    .navModule01 .inner .txt:after {
        content: "";
        display: block;
        width: 20px;
        height: 1px;
        background: #000;
        transform: rotate(-25deg);
        position: absolute;
        left: 104px;
        top: 8px;
    }

    .navModule01 .inner .txt:before {
        content: "";
        width: 20px;
        height: 1px;
        background: #000;
        transform: rotate(25deg);
        position: absolute;
        left: 104px;
        top: 34px;
    }
}

@media screen and (min-width: 768px),
print {
    .navModule01 {
        width: 984px;
        clear: both;
        margin: 70px auto 50px;
        text-align: center;
    }

    .navModule01 .inner figure {
        position: absolute;
        display: block;
        top: -15px;
        left: -40px;
        z-index: 2;
    }

    .navModule01 .inner figure img {
        width: 150px;
    }

    .navModule01 .inner .txt {
        padding: 8px 0 15px 114px;
        text-align: left;
        font-size: 11px;
        font-weight: bold;
        position: relative;
    }

    .navModule01 .inner .txt span {
        color: #0060A9;
    }

    .navModule01 .inner .txt:after {
        content: "";
        display: block;
        width: 20px;
        height: 2px;
        background: #000;
        transform: rotate(-25deg);
        position: absolute;
        left: 113px;
        top: 8px;
    }

    .navModule01 .inner .txt:before {
        content: "";
        display: inline-block;
        width: 20px;
        height: 2px;
        background: #000;
        transform: rotate(25deg);
        position: relative;
        left: 0px;
        top: 8px;
    }

    .navModule01 .btnType01,
    .navModule01 .btnType02 {
        width: 300px;
        display: inline-block;
        line-height: 56px;
    }

    .navModule01 .btnType01.space {
        margin: 0 15px 0 0;
    }
}

/*-----------------------
breadcrumbs
-----------------------*/
#breadcrumbs {
    width: 100%;
    float: right;
    position: relative;
}

#breadcrumbs ul {
    float: right;
    padding: 2px 35px 2px 20px;
    background: #F1F1F1;
    line-height: 20px;
}

#breadcrumbs li {
    display: inline-block;
    font-size: 12px;
    font-weight: bold;
}

#breadcrumbs li a {
    font-size: 12px;
    padding: 0 10px 0 0;
    font-weight: bold;
}

#breadcrumbs li a:after {
    content: "";
    width: 5px;
    height: 5px;
    position: relative;
    left: 7px;
    top: -2px;
    display: inline-block;
    border-top: solid 1px #2E2E2E;
    border-right: solid 1px #2E2E2E;
    transform: rotate(45deg);
}

#breadcrumbs li:last-of-type {
    color: #005faa;
}

@media screen and (max-width: 767px) {
    #breadcrumbs {
        display: none;
    }
}

/*-----------------------
contModule01
-----------------------*/
.contModule01 {
    width: 100%;
    position: relative;
}

.contModule01 .box {
    margin: 0 0 30px;
}

.contModule01 .box a:hover img {
    transform: scale(1.1);
}

.contModule01 .box a figure {
    overflow: hidden;
}

.contModule01 .box a .inner {
    background: #3D9ED3;
    color: #fff;
}

.contModule01 .box a .inner .tit {
    font-size: 16px;
    font-weight: bold;
    position: relative;
}

.contModule01 .box a .inner .tit:after {
    content: "";
    display: block;
    margin: 12px 0 14px;
    width: 30px;
    height: 3px;
    background: #fff;
}

.contModule01 .box a .inner .txt {
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    padding: 0 0 8px;
    line-height: 1.8;
}

.contModule01 .box:nth-child(2) .inner {
    background: #0060AA;
    padding: 20px;
}

@media screen and (max-width: 767px) {
    .contModule01 .box figure {
        width: 100%;
    }

    .contModule01 .box .inner {
        padding: 20px 20px 15px;
    }
}

@media screen and (min-width: 768px),
print {
    .contModule01 {
        width: 1220px;
        margin: 0 auto 40px;
    }

    .contModule01 .box {
        overflow: hidden;
    }

    .contModule01 .box a figure {
        width: 780px;
        float: right;
    }

    .contModule01 .box a .inner {
        width: 430px;
        height: 326px;
        padding: 60px;
        float: left;
    }

    .contModule01 .box a .inner .tit {
        font-size: 20px;
    }

    .contModule01 .box a .inner .tit:after {
        content: "";
        display: block;
        margin: 15px 0 20px;
        width: 30px;
        height: 3px;
        background: #fff;
    }

    .contModule01 .box a .inner .txt {
        font-size: 16px;
        padding: 0 0 20px;
    }

    .contModule01 .box:nth-child(2) figure {
        float: left;
    }

    .contModule01 .box:nth-child(2) .inner {
        float: right;
        background: #0060AA;
        padding: 45px 60px 45px 50px;
    }

    .contModule01.admission .box.min {
        width: 600px;
        height: 350px;
        margin-bottom: 0;
        display: inline-block;
        position: relative;
    }

    .contModule01.admission .box:nth-child(1) {
        margin-right: 13px;
    }

    .contModule01.admission .box:nth-child(1) a .inner {
        background: rgba(0, 95, 170, 0.9);
    }

    .contModule01.admission .box:nth-child(2) a .inner {
        background: rgba(61, 159, 211, 0.9);
    }

    .contModule01.admission .box.min a figure {
        width: 600px;
        float: none;
    }

    .contModule01.admission .box.min a figure img {
        width: 100%;
    }

    .contModule01.admission .box.min a .inner {
        width: 270px;
        height: 245px;
        padding: 70px 50px;
        position: absolute;
        top: 50px;
        left: 30px;
    }
}

/*-----------------------
contModule02
-----------------------*/
.contModule02 {
    /*	min-height : 1190px;*/
}

.contModule02 .box {
    margin: 0 0 15px;
}

.contModule02 .box a {
    display: block;
    background: #fff;
    overflow: hidden;
    padding: 10px;
    opacity: 1 !important;
}

.contModule02 .box a:hover img {
    transform: scale(1.1);
}

.contModule02 .box a figure {
    width: 100%;
    overflow: hidden;
}

.contModule02 .box a .inner .tit {
    font-weight: bold;
    position: relative;
}

.contModule02 .box a .inner .txt {
    font-weight: bold;
    line-height: 1.8;
}

@media screen and (max-width: 767px) {
    .contModule02 {
        position: relative;
        background: url(../img/concept/bg_concept01.jpg) no-repeat top center;
        background-size: cover;
        margin: 0 -20px;
        padding: 35px 15px;
    }

    .contModule02 .box a .inner {
        padding: 17px 12px 15px;
    }

    .contModule02 .box a .tit {
        font-size: 16px;
        margin: 0 0 10px;
    }

    .contModule02 .box a .txt {
        font-size: 13px;
        padding: 0 0 8px;
    }

    .contModule02 .box a .more {
        position: relative;
        left: 10px;
    }
}

@media screen and (min-width: 768px),
print {
    .contModule02 {
        position: relative;
        background: url(../img/concept/bg_concept01_pc.jpg) no-repeat top center;
        width: 1220px;
        min-height: 477px;
        margin: 0 auto 50px;
        padding: 50px 110px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: stretch;
        justify-content: space-between;
    }

    .contModule02 .box {
        background: #fff;
        position: relative;
    }

    .contModule02 .box a {
        width: 320px;
    }

    .contModule02 .box a figure img {
        max-width: 100%;
    }

    .contModule02 .box a .inner {
        padding: 17px 15px 15px;
    }

    .contModule02 .box a .tit {
        font-size: 18px;
        margin: 0 0 18px;
    }

    .contModule02 .box a .txt {
        font-size: 12px;
        padding: 0 0 20px;
    }

    .contModule02 .box a .more {
        position: absolute;
        bottom: 10px;
        right: 10px;
    }
}

/*-----------------------
contModule03
-----------------------*/
.contModule03 .box a {
    display: block;
    background: #fff;
    overflow: hidden;
    padding: 10px;
    opacity: 1 !important;
}

.contModule03 .box a:hover img {
    transform: scale(1.1);
}

.contModule03 .box a figure {
    width: 100%;
    overflow: hidden;
}

.contModule03 .box a .tit {
    display: block;
    position: relative;
    width: 100%;
    text-align: left;
    font-size: 13px;
    font-weight: bold;
    padding: 10px 0 0 15px;
    letter-spacing: 0.1em;
    line-height: 1.8;
}

.contModule03 .box a .tit:before {
    content: "";
    display: block;
    position: absolute;
    left: 10px;
    top: 21px;
    width: 7px;
    height: 9px;
    margin: -4px 0 0 -10px;
    background: url(../img/common/ico_sankaku01.png) no-repeat;
    background-size: 100%;
}

.contModule03 .box a .tit.pdf:after {
    content: "";
    display: inline-block;
    position: relative;
    top: 2px;
    width: 27px;
    height: 12px;
    margin: 0px 0 0 6px;
    background: url(../img/common/ico_pdf.png) no-repeat;
    background-size: 100%;
}

@media screen and (max-width: 767px) {
    .contModule03 {
        position: relative;
        background: url(../img/message/bg_message02.png) no-repeat top center;
        background-size: cover;
        margin: 0 -20px;
        padding: 35px 15px 20px;
    }

    .contModule03.guardian {
        background: url(../img/guardian/bg_guardian01.jpg) no-repeat top center;
        background-size: cover;
    }

    .contModule03.student {
        background: url(../img/student/bg_student01.jpg) no-repeat top center;
        background-size: cover;
    }

    .contModule03 .box {
        margin: 0 0 15px;
    }
}

@media screen and (min-width: 768px),
print {
    .contModule03 {
        width: 1220px;
        clear: both;
        margin: 0 auto;
        padding: 30px 0 10px;
        position: relative;
        background: url(../img/message/bg_message02.png) no-repeat top center;
        background-size: cover;
    }

    .contModule03.guardian {
        background: url(../img/guardian/bg_guardian01_pc.jpg) no-repeat top center;
        background-size: cover;
    }

    .contModule03.student {
        background: url(../img/student/bg_student01_pc.jpg) no-repeat top center;
        background-size: cover;
    }

    .contModule03 .inner {
        width: 1100px;
        margin: 0 auto;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: stretch;
        /*
    justify-content : space-between;
    */
    }

    .contModule03 .box {
        width: 350px;
        margin: 0 0 20px;
    }

    .contModule03 .box:nth-of-type(3n-1) {
        margin: 0 25px;
    }

    .contModule03 .box figure img {
        max-width: 100%;
    }
}

/*-----------------------
conceptModule01
-----------------------*/
.conceptModule01 {
    position: relative;
}

.conceptModule01 .inner {
    padding: 20px 15px;
    overflow: hidden;
}

.conceptModule01 .inner .tit {
    font-weight: bold;
    position: relative;
}

.conceptModule01 .inner .txt {
    font-size: 13px;
    font-weight: bold;
    padding: 0 0 8px;
    line-height: 1.8;
}

.conceptModule01 .inner .more {
    font-size: 13px;
    float: left;
}

@media screen and (max-width: 767px) {
    .conceptModule01 {
        margin: 35px 0px 0;
        border: #3D9ED2 5px solid;
    }

    .conceptModule01 .photo {
        position: absolute;
        top: -20px;
        left: 0;
    }

    .conceptModule01 .photo img {
        width: 100%;
    }

    .conceptModule01 .inner .tit {
        font-size: 16px;
        margin: 0 0 10px;
    }

    .conceptModule01 .inner .tit:after {
        content: "";
        display: block;
        margin: 12px 0 14px;
        width: 30px;
        height: 3px;
        background: #005FA9;
    }
}

@media screen and (min-width: 768px),
print {
    .conceptModule01 {
        width: 1220px;
        height: 330px;
        margin: 35px auto 0;
        border: #3D9ED2 6px solid;
    }

    .conceptModule01 a {
        width: 100%;
        display: block;
        position: relative;
        opacity: 1 !important;
        padding: 25px 50px 0;
    }

    .conceptModule01 a:before {
        content: "";
        display: block;
        position: absolute;
        top: -20px;
        right: 0;
        width: 906px;
        height: 353px;
        background: url(../img/concept/img_concept06_pc.png) no-repeat top right;
        background-size: 906px 353px;
        z-index: 2;
    }

    .conceptModule01 a:hover:before {
        content: "";
        display: block;
        position: absolute;
        top: -20px;
        right: 0px;
        width: 906px;
        height: 353px;
        background: url(../img/concept/img_concept06on_pc.png) no-repeat top right;
        background-size: 906px 353px;
        z-index: 2;
    }

    .conceptModule01 a .inner {
        width: 240px;
    }

    .conceptModule01 a .inner.admission {
        padding: 80px 0 0 0;
    }

    .conceptModule01 a .inner .tit {
        font-size: 20px;
        margin: 0 0 10px;
    }

    .conceptModule01 a .inner .tit:after {
        content: "";
        display: block;
        margin: 17px 0 19px;
        width: 30px;
        height: 3px;
        background: #005FA9;
    }

    .conceptModule01 a .inner .txt {
        font-size: 12px;
        padding: 0 0 20px;
    }
}

/*-----------------------
titModule01
-----------------------*/
.titModule01 {
    width: 100%;
    position: relative;
    clear: both;
}

.titModule01 .tit {
    display: block;
    position: relative;
    width: 100%;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    padding: 0 0 35px;
    letter-spacing: 0.1em;
}

.titModule01 .tit:first-letter {
    color: #005FA9;
}

.titModule01 .tit:after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: 5px;
    width: 83px;
    height: 22px;
    margin: 0 0 0 -42px;
    background: url(../img/common/bg_tit03.png) no-repeat bottom center;
    background-size: 100%;
}

.titModule01 .subtit {
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.1em;
    color: #707070;
    padding: 3px 0;
    font-family: 'Roboto Slab', serif;
}

@media screen and (max-width: 767px) {
    .titModule01 {
        padding: 15px 0 30px;
    }

    .titModule01.kaso {
        margin: 70px 0 0 0;
    }

    .titModule01 .tit {
        font-size: 20px;
    }
}

@media screen and (min-width: 768px),
print {
    .titModule01 {
        padding: 28px 0 45px;
    }

    .titModule01 .tit {
        font-size: 22px;
    }

    .titModule01 .subtit {
        padding: 10px 0;
    }
}

/*-----------------------
titModule02
-----------------------*/
.titModule02 {
    width: 100%;
    position: relative;
    clear: both;
}

.titModule02 .tit {
    display: block;
    position: relative;
    width: 100%;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    padding: 0 0 35px;
    letter-spacing: 0.1em;
}

.titModule02 .tit:first-letter {
    color: #005FA9;
}

.titModule02 .tit:after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: 5px;
    width: 83px;
    height: 22px;
    margin: 0 0 0 -42px;
    background: url(../img/common/bg_tit03.png) no-repeat bottom center;
    background-size: 100%;
}

@media screen and (max-width: 767px) {
    .titModule02 {
        padding: 15px 0 0px;
    }

    .titModule02.kaso {
        margin: 70px 0 0 0;
    }

    .titModule02 .tit {
        font-size: 20px;
    }
}

@media screen and (min-width: 768px),
print {
    .titModule02 {
        padding: 33px 0 45px;
    }

    .titModule02.kaso {
        padding: 33px 0 0px;
    }

    .titModule02 .tit {
        font-size: 22px;
    }
}

/*-----------------------
mainimgModule01
-----------------------*/
.mainimgModule01 .tit {
    display: block;
    position: relative;
    width: 100%;
    text-align: left;
    font-weight: bold;
    padding: 0 0 0;
    letter-spacing: 0.1em;
    line-height: 1.8;
}

@media screen and (max-width: 767px) {
    .mainimgModule01 {
        margin: 0 0 10px;
    }

    .mainimgModule01 figure {
        position: relative;
        top: -15px;
        z-index: -1;
    }

    .mainimgModule01 .tit {
        font-size: 18px;
    }

    .mainimgModule01 .tit:after {
        content: "";
        display: block;
        margin: 22px 0 22px;
        width: 50px;
        height: 4px;
        background: #005FA9;
    }
}

@media screen and (min-width: 768px),
print {
    .mainimgModule01 {
        width: 1220px;
        margin: 0 auto;
        position: relative;
        top: -14px;
        z-index: -1;
    }

    .mainimgModule01 .tit {
        position: absolute;
        top: 330px;
        left: 60px;
        font-size: 26px;
    }

    .mainimgModule01 .tit:after {
        content: "";
        display: block;
        margin: 40px 0 0px;
        width: 50px;
        height: 4px;
        background: #005FA9;
    }
}

/*-----------------------
mainimgModule02
-----------------------*/
.mainimgModule02 {
    display: block;
    margin: 0 auto 20px;
    text-align: center;
}

@media screen and (min-width: 768px),
print {
    .mainimgModule02 {
        margin: 0 auto 60px;
    }

    .mainimgModule02.exami {
        margin: 0 auto 0px;
        height: 370px;
    }
}

/*-----------------------
contModule04
-----------------------*/
.contModule04 .fig1 {
    margin: 0 0 40px;
}

.contModule04 .ctr {
    text-align: center;
}

.contModule04 .rit {
    text-align: right;
}

.contModule04 .blue {
    color: #005faa;
}

.contModule04 .nameBlock {
    margin: 0 0 15px;
}

.contModule04 .nameBlock .name1 {
    display: block;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0.1em;
}

.contModule04 .nameBlock .name2 {
    font-size: 17px;
    font-weight: bold;
    letter-spacing: 0.1em;
}

.contModule04 .txt {
    font-size: 13px;
    line-height: 1.8;
    margin: 0 0 20px;
}

.contModule04 .tit2 {
    display: block;
    position: relative;
    width: 100%;
    text-align: left;
    font-size: 20px;
    font-weight: bold;
    padding: 0px 0 0 0px;
    margin: 0 0 20px;
    letter-spacing: 0.1em;
    line-height: 1.8;
}

.contModule04 .tit2:after {
    content: "";
    display: block;
    position: relative;
    left: 0px;
    margin: 10px 0 10px;
    width: 50px;
    height: 4px;
    background: #005faa;
}

.contModule04 .tit2.ctr {
    text-align: center;
}

.contModule04 .tit2.ctr:after {
    content: "";
    display: block;
    position: relative;
    left: 50%;
    margin: 30px 0 30px -25px !important;
    width: 50px;
    height: 4px;
    background: #005faa;
}

.contModule04 .tit2 .min {
    font-size: 13px;
}

.contModule04 .historyBlock {
    border: #F5F5F5 4px solid;
    margin: 0 0 30px;
}

.contModule04.news {
    margin: 0 auto;
}

.contModule04.news .catetitle {
    background: #09bbcb;
    padding: 25px 20px 60px;
    margin: 0 0 20px;
}

.contModule04.news .catetitle .tit {
    display: block;
    position: relative;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.1em;
}

.contModule04.news .catetitle .tit:after {
    content: "";
    display: block;
    width: 70px;
    height: 20px;
    position: absolute;
    background-size: 100% !important;
    background: url(../img/common/bg_tit02.png) no-repeat;
    bottom: -30px;
    left: 2px;
}

.contModule04.news .newsbox02 .tit {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
}

.contModule04.news .newsbox02 .tit:after {
    content: "";
    display: block;
    margin: 15px 0 20px;
    width: 30px;
    height: 3px;
    background: #fff;
}

.contModule04.news .newsbox02 .navi02 {
    background: #e60012;
    margin: 0 0 10px;
}

.contModule04.news .newsbox02 .navi02 .nav li a {
    color: #fff;
    font-weight: bold;
    position: relative;
    margin: 0 0 0 15px;
    padding: 2px 5px;
    opacity: 1 !important;
}

.contModule04.news .newsbox02 .navi02 .nav li a.current-cat,
.contModule04.news .newsbox02 .navi02 .nav li a.current,
.contModule04.news .newsbox02 .navi02 .nav li a:hover {
    background: #fff;
    color: #e60012;
}

.contModule04.news .newsbox02 .navi02 .nav li a:before {
    content: "▼";
    font-size: 8px;
    color: #fff;
    display: inline-block;
    position: absolute;
    top: -3px;
    left: -15px;
    transform: rotate(-90deg);
}

.contModule04.news .newsbox02 .navi02 li.current-cat a {
    background: #fff;
    color: #e60012;
}

.contModule04.news .newsbox02 .navi03 {
    background: #005faa;
}

.contModule04.news .newsbox02 .navi03 .nav li a {
    color: #fff;
    font-weight: bold;
    position: relative;
    margin: 0 0 0 15px;
    padding: 2px 5px;
    opacity: 1 !important;
}

.contModule04.news .newsbox02 .navi03 .nav li a.current-cat,
.contModule04.news .newsbox02 .navi03 .nav li a.current,
.contModule04.news .newsbox02 .navi03 .nav li a:hover {
    background: #fff;
    color: #005faa;
}

.contModule04.news .newsbox02 .navi03 .nav li a:before {
    content: "▼";
    font-size: 8px;
    color: #fff;
    display: inline-block;
    position: absolute;
    top: -3px;
    left: -15px;
    transform: rotate(-90deg);
}

.contModule04.news .newsbox02 .navi03 .nav li a:after {
    content: "年";
    display: inline-block;
}

.contModule04.news .newsbox02 .navi03 li.current-cat a {
    background: #fff;
    color: #005faa;
}


/*-----------------------
20200701_kadowaki
-----------------------*/
.contModule04 .box01 .titMessage {
		font-size: 20px;
		font-weight: bold;
		padding: 0 0 0;
		letter-spacing: 0.1em;
		line-height: 1.8;
		display: block;
	    position: relative;
    	width: 100%;
	}
.contModule04 .box01 .txt2Message {
		font-size: 16px;
		font-weight: bold;
        margin: 0 0 5px;
    }
	.contModule04 .titMessage:after{
		content: "";
		display: block;
		position: relative;
		left: 0px;
		margin: 20px 0 30px;
		width: 50px;
		height: 4px;
		background: #005faa;
}





@media screen and (max-width: 767px) {
    .contModule04 .historyBlock {
        background: url(../img/history/bg_history01.png) no-repeat top right;
        background-size: auto 200px;
        min-height: 200px;
        margin: 30px 0;
        padding: 20px;
        position: relative;
    }

    .contModule04 .historyBlock .htxt {
        display: block;
        padding: 0 20px;
        position: absolute;
        top: 50%;
        left: 0%;
        -webkit-transform: translate(0%, -50%);
        transform: translate(0%, -50%);
        font-size: 16px;
        font-weight: bold;
    }

    .contModule04.news {
        margin: 0 auto;
    }

    .contModule04.news .newsbox01 #honbun img {
        max-width: 100% !important;
        height: auto !important;
    }

    .contModule04.news .newsbox02 {
        position: relative;
    }

    .contModule04.news .newsbox02 .navi02,
    .contModule04.news .newsbox02 .navi03 {
        padding: 20px;
    }

    .contModule04.news .newsbox02 .navi02 .nav,
    .contModule04.news .newsbox02 .navi03 .nav {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contModule04.news .newsbox02 .navi02 .nav li,
    .contModule04.news .newsbox02 .navi03 .nav li {
        width: 50%;
    }

    .contModule04 .tit2.pt26 {
        text-align: center;
    }

    .contModule04 .tit2.pt26:after {
        left: 50%;
        margin: 20px 0 20px -25px !important;
    }
}

@media screen and (min-width: 768px),
print {
    .contModule04 {
        width: 1100px;
        margin: 60px auto;
        clear: both;
    }

    .contModule04 .box01 {
        width: 810px;
        float: left;
        margin: 20px 0 30px 0;
    }

    .contModule04 .box01 .nameBlock {
        margin: 0 0 30px;
    }

    .contModule04 .box01 .nameBlock .name1 {
        font-size: 13px;
		margin-top: 20px;
    }

    .contModule04 .box01 .nameBlock .name2 {
        font-size: 20px;
    }

    .contModule04 .box01 .tit2 {
        margin: 0 0 25px;
    }


	/*-----------------------
20200701_kadowaki
-----------------------*/
	.contModule04 .box01 .titMessage {
		font-size: 26px;
		font-weight: bold;
		padding: 0 0 0;
		letter-spacing: 0.1em;
		line-height: 1.8;
		display: block;
	    position: relative;
    	width: 100%;
	}


	.contModule04 .titMessage:after{
		content: "";
		display: block;
		position: relative;
		left: 0px;
		margin: 50px 0 30px;
		width: 50px;
		height: 4px;
		background: #005faa;
}

.contModule04 .box01 .nameBlock img{
	width: 35%;
}



    .contModule04.kaso {
        margin: 40px auto;
    }

    .contModule04.kaso .box01 {
        margin: 0px 0 30px 0px;
    }

    .contModule04.kaso .daybox01 {
        margin: 0px 0 30px 145px;
    }

    .contModule04.kaso .tit2.pt22 {
        font-size: 22px;
        margin: 0 0 30px;
    }

    .contModule04.kaso .tit2.pt22:after {
        margin: 20px 0 20px;
    }

    .contModule04.kaso .tit2.pt26 {
        font-size: 26px;
        margin: 0 0 30px;
    }

    .contModule04.kaso .tit2.pt26:after {
        margin: 20px 0 20px;
    }

    .contModule04.kaso .tit2.request {
        font-size: 22px;
    }

    .contModule04.kaso .tit2.request:before {
        content: "";
        height: 300px;
        width: 1100px;
        position: absolute;
        top: -130px;
        left: 0;
        background: url(../img/request/img_request01_pc.png) no-repeat top center;
    }

    .contModule04.kaso.min {
        margin: 0px auto;
    }

    .contModule04.kaso.min .partsModule04 {
        width: 1100px;
        margin: 0 auto;
    }

    .contModule04 .box02 {
        width: 240px;
        float: right;
        position: relative;
        font-weight: bold;
    }

    .contModule04 .box02:first-letter {
        color: #005FA9;
    }

    .contModule04 .box02:after {
        content: "";
        display: block;
        position: absolute;
        left: 20px;
        top: 20px;
        margin: 0;
        width: 350px;
        height: 46px;
        background: url(../img/message/bg_message03.png) no-repeat top left;
        background-size: 350px auto;
        z-index: -1;
    }

    .contModule04 .box02 .tit {
        display: block;
        position: relative;
        width: 100%;
        text-align: left;
        font-size: 16px;
        font-weight: bold;
        padding: 0px 0 0 0px;
        letter-spacing: 0.1em;
        line-height: 1.8;
    }

    .contModule04 .box02 .tit:after {
        content: "";
        display: block;
        position: relative;
        left: 0px;
        margin: 20px 0 20px;
        width: 30px;
        height: 3px;
        background: #111111;
    }

    .contModule04 .box02 .nav {
        position: relative;
        left: 20px;
        padding: 15px 0 0 0;
    }

    .contModule04 .box02 .nav li {
        line-height: 2.3;
    }

    .contModule04 .box02 .nav li a {
        font-size: 13px;
        font-weight: bold;
        display: block;
        position: relative;
        padding: 0 0 0 15px;
    }

    .contModule04 .box02 .nav li a:before {
        content: "";
        display: block;
        position: absolute;
        left: 0px;
        top: 10px;
        width: 8px;
        height: 8px;
        margin: 0px 0 0 0px;
        background: url(../img/common/ico_arrow_black.png) no-repeat;
        background-size: 100%;
    }

    .contModule04 .box02 .nav li a.pdf:after {
        content: "";
        display: inline-block;
        position: relative;
        top: 1px;
        width: 27px;
        height: 12px;
        margin: 0px 0 0 10px;
        background: url(../img/common/ico_pdf.png) no-repeat;
        background-size: 100%;
    }

    .contModule04 .box02 .nav li a.current {
        color: #005faa;
    }

    .contModule04 .box02 .nav li a.current:before {
        background: url(../img/common/ico_arrow_blue.png) no-repeat;
        background-size: 100%;
    }

    .contModule04.news {
        margin: 0 auto;
    }

    .contModule04.news .catetitle {
        position: absolute;
        top: 0;
        left: -280px;
        height: 240px;
        width: 240px;
        padding: 40px;
    }

    .contModule04.news .catetitle .tit {
        color: #fff;
        font-weight: bold;
    }

    .contModule04.news .catetitle .tit:after {
        top: 50px;
        left: 0;
    }

    .contModule04.news .newsbox01 {
        width: 820px;
        float: right;
        position: relative;
    }

    .contModule04.news .newsbox02 {
        width: 240px;
        float: left;
        position: relative;
    }

    .contModule04.news .newsbox02.category {
        margin: 250px 0 0 !important;
    }

    .contModule04.news .newsbox02 .navi01 {
        padding: 40px;
        width: 240px;
        height: 240px;
        margin: 0 0 10px;
    }

    .contModule04.news .newsbox02 .navi02,
    .contModule04.news .newsbox02 .navi03 {
        padding: 40px;
    }

    .contModule04.news .newsbox02 .navi03 {
        margin: 0 0 100px;
    }

    .contModule04.news .newsDetail .tit2 {
        font-size: 18px;
    }

    .contModule04 .txt {
        line-height: 2;
        margin: 0 0 35px;
    }

    .contModule04 .txt.no {
        margin: 0;
    }

    .contModule04 .txt.b20 {
        line-height: 2;
        margin: 0 0 20px;
    }

    .contModule04 .historyBlock {
        background: url(../img/history/bg_history01_pc.png) no-repeat top right;
        min-height: 216px;
        margin: 30px 0 40px;
        padding: 20px 4px;
        position: relative;
    }

    .contModule04 .historyBlock .htxt {
        display: block;
        padding: 0 20px;
        position: absolute;
        top: 50%;
        left: 40px;
        -webkit-transform: translate(0%, -50%);
        transform: translate(0%, -50%);
        font-size: 16px;
        font-weight: bold;
        line-height: 2.4;
    }
}

.newsDetail .date {
    display: block;
    font-weight: bold;
    font-size: 13px;
    margin: 0 0 10px;
    padding: 0 0 10px;
    font-family: 'Roboto', serif;
    border-bottom: solid 3px #F4F4F4;
}

.newsDetail p {
    margin: 0 0 20px;
}

.newsDetail img {
    margin: 0 0 25px;
    max-width: 810px;
}

@media screen and (max-width: 767px) {
    .newsDetail .date {
        margin: 0 0 20px;
    }

    .newsDetail .tit2 {
        font-size: 18px;
    }
}

/*-----------------------
blogListModule01
-----------------------*/
.blogListModule01 .boxWrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.blogListModule01 .box {
    position: relative;
}

.blogListModule01 .box a:hover {
    opacity: 1 !important;
}

.blogListModule01 .box a:hover figure img {
    transform: scale(1.1);
}

.blogListModule01 .box .cate {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: #4A5E6C;
    width: 100px;
    line-height: 18px;
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    z-index: 2;
}

.blogListModule01 .box .cate.cat1 {
    background: #005FA9;
}

.blogListModule01 .box .cate.cat2 {
    background: #003D6A;
}

.blogListModule01 .box .cate.cat3 {
    background: #07BACB;
}

.blogListModule01 .box .cate.cat4 {
    background: #FE671D;
}

.blogListModule01 .box .cate.cat5 {
    background: #611AC1;
}

.blogListModule01 .box .cate.cat6 {
    background: #3D9FD3;
}

.blogListModule01 .box .cate.cat7 {
    background: #7EC500;
}

.blogListModule01 .box .cate.cat8 {
    background: #007DDF;
}

.blogListModule01 .box .cate.cat9 {
    background: #495D6C;
}

.blogListModule01 .box .cate.cat13 {
    background: #FA37BA;
}

.blogListModule01 .box .cate.cat14 {
    background: #A90000;
}

.blogListModule01 .box .cate.cat15 {
    background: #2E8E00;
}

.blogListModule01 .box figure {
    display: block;
    margin: 0 0 15px;
    overflow: hidden;
    z-index: -1;
}

.blogListModule01 .box .tit {
    font-size: 14px;
    font-weight: bold;
    margin: 0 0 10px;
}

.blogListModule01 .box .txt {
    font-size: 13px;
}

.blogListModule01 .box time {
    display: block;
    font-weight: bold;
    font-size: 12px;
    margin: 0 0 10px;
    font-family: 'Roboto', serif;
}

@media screen and (min-width: 768px),
print {
    .blogListModule01 .box {
        width: 252px;
    }

    .blogListModule01 .box:nth-of-type(3n-1) {
        margin: 0 32px;
    }

    .blogListModule01 .box figure {
        height: 126px;
        overflow: hidden;
    }

    .blogListModule01 .box img {
        width: 100%;
    }
}

/*pageNaviModule01
--------------------------------------------*/
.pageNaviModule01 {
    text-align: center;
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin: 30px 0 40px;
}

.pageNaviModule01 a {
    opacity: 1 !important;
}

.pageNaviModule01 .page-numbers {
    font-family: 'Roboto Slab', serif;
    font-weight: 700px;
    padding: 0 12px;
    border: solid 1px #F4F4F4;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 16px;
    width: 50px;
    height: 50px;
    margin: 0 5px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.pageNaviModule01 .page-numbers.current,
.pageNaviModule01 .page-numbers:hover {
    background: #005FA9;
    color: #fff;
    border: solid 1px #005FA9;
}

.pageNaviModule01 .page-numbers.prev img,
.pageNaviModule01 .page-numbers.next img {
    width: 15px;
    height: 9px;
}

.pageNaviModule01 .page-numbers.prev {
    background: url(../img/common/ico_prev01.png) no-repeat center center;
    background-size: 15px 9px;
}

.pageNaviModule01 .page-numbers.prev:hover {
    background: url(../img/common/ico_prev01_on.png) no-repeat center center #005FA9;
    background-size: 15px 9px;
}

.pageNaviModule01 .page-numbers.next {
    background: url(../img/common/ico_next01.png) no-repeat center center;
    background-size: 15px 9px;
}

.pageNaviModule01 .page-numbers.next:hover {
    background: url(../img/common/ico_next01_on.png) no-repeat center center #005FA9;
    background-size: 15px 9px;
}

.pageNaviModule01 .page-numbers.prev a,
.pageNaviModule01 .page-numbers.next a {
    width: 50px;
    height: 50px;
}

@media screen and (max-width: 767px) {
    .pageNaviModule01 .page-numbers {
        margin: 0 2px 10px;
    }

    .pageNaviModule01 .page-numbers.top {
        width: 180px;
        font-size: 13px;
        font-weight: bold;
        border: solid 2px #005faa;
    }
}

@media screen and (min-width: 768px),
print {
    .pageNaviModule01 .page-numbers.top {
        width: 260px;
        font-size: 13px;
        font-weight: bold;
        border: solid 2px #005faa;
    }
}

/*-----------------------
bnrModule01
-----------------------*/
.bnrModule01 {
    margin: 0 auto;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .bnrModule01 {
        margin: 30px 0;
    }

    .bnrModule01 li {
        margin: 0 0 10px;
    }
}

@media screen and (min-width: 768px),
print {
    .bnrModule01.graduate {
        margin: 50px auto;
    }

    .bnrModule01 li {
        display: inline-block;
        width: 530px;
        margin: 30px 18px 20px;
    }
}

/*-----------------------
relatedModule01
-----------------------*/
.relatedModule01 {
    position: relative;
}

.relatedModule01 .tit {
    width: 100%;
    font-family: 'Roboto Slab', serif;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin: 0 0 8px;
    padding: 0 0 0 40px;
}

.relatedModule01 .tit:first-letter {
    color: #005FA9;
}

.relatedModule01 .boxWrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
}

.relatedModule01 .box a {
    display: block;
    overflow: hidden;
    padding: 0px;
    opacity: 1 !important;
}

.relatedModule01 .box a:hover img {
    transform: scale(1.1);
}

.relatedModule01 .box a figure {
    width: 100%;
    overflow: hidden;
}

.relatedModule01 .tit2 {
    display: block;
    position: relative;
    width: 100%;
    text-align: left;
    font-size: 13px;
    font-weight: bold;
    padding: 10px 0 0 20px;
    letter-spacing: 0.1em;
    line-height: 1.8;
}

.relatedModule01 .tit2:after {
    content: "";
    display: block;
    position: relative;
    left: -20px;
    margin: 10px 0 20px;
    width: 60px;
    height: 3px;
    background: #005FA9;
}

.relatedModule01 .tit2:before {
    content: "";
    display: block;
    position: absolute;
    left: 13px;
    top: 21px;
    width: 7px;
    height: 9px;
    margin: -4px 0 0 -10px;
    background: url(../img/common/ico_sankaku01.png) no-repeat;
    background-size: 100%;
}

@media screen and (max-width: 767px) {
    .relatedModule01 {
        margin: 0 -20px 25px;
        padding: 0px 15px;
        background: url(../img/message/bg_message01.png) repeat-x top 37px center;
        background-size: 375px auto;
    }

    .relatedModule01 .boxWrap {
        margin: 25px 0 0 0;
    }

    .relatedModule01 .box {
        width: 50%;
    }

    .relatedModule01 .box figure {
        max-height: 90px;
    }

    .relatedModule01 .box:nth-of-type(odd) {
        padding: 0 7px 0 0;
    }

    .relatedModule01 .box:nth-of-type(even) {
        padding: 0 0 0 7px;
    }

    .relatedModule01 .tit:after {
        content: "";
        position: absolute;
        left: 5px;
        top: -3px;
        display: block;
        margin: 22px 0 22px;
        width: 50px;
        height: 3px;
        background: #005FA9;
        transform: rotate(-50deg);
    }
}

@media screen and (min-width: 768px),
print {
    .relatedModule01 {
        clear: both;
        width: 800px;
        margin: 0 auto 30px;
        position: relative;
        left: -150px;
    }

    .relatedModule01:before {
        content: "";
        display: block;
        position: absolute;
        left: -140px;
        top: 38px;
        width: 880px;
        height: 150px;
        background: url(../img/common/bg_col01.png) repeat top center;
        z-index: -1;
    }

    .relatedModule01 .tit:after {
        content: "";
        position: absolute;
        left: -40px;
        top: 15px;
        display: block;
        margin: 22px 0 22px;
        width: 90px;
        height: 3px;
        background: #005FA9;
        transform: rotate(-50deg);
    }

    .relatedModule01 .boxWrap {
        width: 800px;
        margin: 34px 0 0 0;
    }

    .relatedModule01 .boxWrap::after {
        content: "";
        display: block;
        width: 30%;
    }

    .relatedModule01 .boxWrap .box {
        width: 245px;
    }

    .relatedModule01 .boxWrap .box figure {
        width: 240px;
        height: 130px;
    }

    .relatedModule01 .boxWrap .box figure img {
        width: 100%;
    }

    .relatedModule01 .boxWrap .box:nth-of-type(4n) {
        display: none;
    }
}

/*-----------------------
partModule01
-----------------------*/
.partModule01 {
    border: #F4F4F4 4px solid;
    padding: 15px 25px 20px;
    margin: 0 0 30px;
}

.partModule01 .p_tit1 {
    font-family: 'Roboto Slab', serif;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin: 0 0 8px;
}

.partModule01 .p_tit1:first-letter {
    color: #005FA9;
}

.partModule01 .p_txt1 {
    font-size: 12px;
    line-height: 1.8;
}

@media screen and (min-width: 768px),
print {
    .partModule01 {
        padding: 25px 30px;
    }

    .partModule01 .p_tit1 {
        display: block;
        float: left;
        width: 120px;
        font-size: 16px;
        padding: 5px 0 0 0px;
    }

    .partModule01 .p_txt1 {
        padding: 0 0 0 120px;
    }
}

/*-----------------------
20200701_kadowaki
-----------------------*/

.partModule01 .p_tit1Message {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin: 0 0 8px;
}


/*-----------------------
partsModule02
-----------------------*/
.partsModule02 .tit3 {
    font-size: 15px;
    font-weight: bold;
    padding: 6px 20px;
    margin: 0 0 10px;
    color: #fff;
    display: inline-block;
}

.partsModule02 .txt {
    font-size: 13px;
}

.partsModule02 .kanko .tit3 {
    background: #E60112;
}

.partsModule02 .kokusai .tit3 {
    background: #0060AA;
}

@media screen and (max-width: 767px) {
    .partsModule02 {
        margin: 30px 0;
    }
}

@media screen and (min-width: 768px),
print {
    .partsModule02 {
        clear: both;
        overflow: hidden;
        margin: 0 0 30px;
    }

    .partsModule02 .inner {
        width: 50%;
        float: left;
    }

    .partsModule02 .inner .tit3 {
        width: 130px;
        height: 130px;
        text-align: center;
        float: left;
        position: relative;
    }

    .partsModule02 .inner .tit3 span {
        display: block;
        width: 100%;
        padding: 0 20px;
        position: absolute;
        top: 50%;
        left: 0;
        -webkit-transform: translate(0%, -50%);
        transform: translate(0%, -50%);
        font-size: 14px;
        font-weight: bold;
        line-height: 1.7;
    }

    .partsModule02 .inner .txt {
        width: 230px;
        float: left;
        margin: 0 0 0 25px;
        font-size: 13px;
    }
}

/*-----------------------
partsModule03
-----------------------*/
.partsModule03>li {
    margin: 0 0 15px;
    border-bottom: solid 2px #F4F4F4;
}

.partsModule03>li:after {
    content: "";
    display: block;
    width: 100%;
    padding: 0 0 10px;
}

.partsModule03>li time,
.partsModule03>li .mi {
    color: #005faa;
    font-size: 13px;
    font-weight: bold;
}

@media screen and (max-width: 767px) {
    .partsModule03 {
        margin: 0 0 30px;
    }

    .partsModule03 li time,
    .partsModule03 li .mi {
        display: block;
    }
}

@media screen and (min-width: 768px),
print {
    .partsModule03 {
        margin: 0 0 40px;
    }

    .partsModule03 li {
        position: relative;
        padding: 0 0 5px 120px;
    }

    .partsModule03 li time,
    .partsModule03 li .mi {
        display: block;
        position: absolute;
        top: 2px;
        left: 0;
    }
}

.chui {
    clear: both;
    display: block;
    padding: 0 0 0 18px;
    position: relative;
    line-height: 1.7;
    width: 100%;
}

.chui:before {
    content: "※";
    display: inline-block;
    position: absolute;
    left: 0;
}

/*-----------------------
partsModule04
-----------------------*/
.mb30 {
    margin: 0 0 30px;
}

.inline {
    display: inline-block;
}

.partsModule04 .mb30 {
    margin: 0 0 30px;
}

.partsModule04 .red {
    color: #e60012;
}

.partsModule04 .pt12 {
    font-size: 12px;
}

.partsModule04 .pt16 {
    font-size: 16px;
}

.partsModule04 .txt3 {
    font-size: 13px;
    padding: 0 0 10px;
    position: relative;
}

.partsModule04 .txt3.graduate {
    float: right;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
}

.partsModule04 .tit4 {
    font-size: 16px;
    font-weight: bold;
    padding: 0px 0 5px 28px;
    position: relative;
    display: block;
}

.partsModule04 .tit4:before {
    content: "";
    width: 15px;
    height: 4px;
    position: absolute;
    left: 0;
    top: 50%;
    margin: -4px 0 0 0;
    background: #0060AA;
}

.partsModule04 .tit4 .subtit4 {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 12px;
    font-weight: normal;
}

.partsModule04 .tit5 {
    font-size: 16px;
    font-weight: bold;
    padding: 0px 0 5px 40px;
    margin: 0 0 5px;
    position: relative;
    display: block;
}

.partsModule04 .tit5 span {
    width: 27px;
    height: 27px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding: 0 0 2px;
    vertical-align: top;
    position: absolute;
    left: 0;
    text-align: center;
    top: 50%;
    margin: -16px 0 0 0;
    background: #0060AA;
}

.partsModule04 .tit6 {
    font-size: 18px;
    font-weight: bold;
    padding: 0px 10px 0px 10px;
    margin: 0 0 20px;
    position: relative;
    top: 5px;
    display: inline-block;
}

.partsModule04 .tit6:after {
    content: "";
    display: block;
    position: relative;
    width: 110%;
    bottom: 10px;
    left: -10px;
    border-bottom: 12px solid #F5F5F5;
    z-index: -1;
}

.partsModule04 .tit6:first-letter {
    color: #005FA9;
}

.partsModule04 .tit7 {
    font-size: 20px;
    font-weight: bold;
    padding: 0px 0 5px 55px;
    margin: 0 0 10px;
    position: relative;
    display: block;
}

.partsModule04 .tit7 span {
    width: 40px;
    height: 40px;
    color: #fff;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 22px;
    font-weight: bold;
    padding: 0 0 2px;
    vertical-align: top;
    position: absolute;
    left: 0;
    text-align: center;
    top: 50%;
    margin: -21px 0 0 0;
    background: #0060AA;
}

.partsModule04 .txt4 {
    font-size: 13px;
    padding: 0 0 15px;
}

.partsModule04 .btnBlue {
    background: #0060AA;
    display: inline-block;
    border: solid 3px #0060AA;
    position: relative;
    padding: 3px 40px 3px 10px;
    color: #fff;
    font-weight: bold;
}

.partsModule04 .btnBlue:before {
    content: "▼";
    font-size: 8px;
    color: #fff;
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 7px;
    margin: -10px 0 0 0;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    transform: rotate(-90deg);
}

.partsModule04 .btnBlue.pdf:after {
    content: "";
    width: 27px;
    height: 12px;
    background: url(../img/common/ico_pdf02.png) no-repeat center center;
    background-size: 27px auto;
    display: inline-block;
    position: relative;
    top: 2px;
    left: 10px;
}

.partsModule04 .btnBlue:hover {
    opacity: 1 !important;
    background: #fff;
    color: #000 !important;
}

.partsModule04 .btnBlue:hover:before {
    color: #0060AA;
}

.partsModule04 .hyo2 {
    border-bottom: #fff solid 2px;
    box-sizing: border-box;
    width: 100%;
    margin: 0 0 10px;
}

.partsModule04 .hyo2.mb30 {
    margin: 0 0 30px;
}

.partsModule04 .hyo2 th,
.partsModule04 .hyo2 td {
    padding: 10px 20px;
    border: #fff solid 2px;
}

.partsModule04 .hyo2 tr th:first-of-type,
.partsModule04 .hyo2 tr td:first-of-type {
    border-left: none;
}

.partsModule04 .hyo2 .col1 {
    background: #005FA9;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    width: 200px;
}

.partsModule04 .hyo2 .col1.w50 {
    width: 50%;
    padding: 10px 5px;
}

.partsModule04 .hyo2 .col2 {
    background: #EAEAEA;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    color: #005FA9;
}

.partsModule04 .hyo2 td {
    text-align: center;
    background: #F5F5F5;
    font-weight: bold;
}

.partsModule04 .hyo2 .w50p {
    width: 50%;
}

.partsModule04 .btnWrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
}

.partsModule04 .btnWrap .btn01:after {
    content: "";
    position: absolute;
    width: 15px;
    height: 9px;
    background: url(../img/common/ico_arrow_under.png) repeat top left;
    background-size: 15px auto;
    left: 50%;
    margin: 0 0 0 -7px;
    bottom: -9px;
}

.partsModule04 .hyoWrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
    margin: 0 0 30px;
}

.partsModule04 .hyoWrap.mb10 {
    margin: 0 0 10px;
}

.partsModule04 .hyoWrap .mail {
    display: block;
}

.partsModule04 .hyoWrap .mail:before {
    content: "";
    display: inline-block;
    position: relative;
    top: 3px;
    left: -5px;
    height: 16px;
    width: 12px;
    background: url(../img/common/ico_mail01.png) no-repeat center center;
}

.partsModule04 .hyoWrap .hyo1 {
    width: 800px;
    border-bottom: #fff solid 2px;
    box-sizing: border-box;
}

.partsModule04 .hyoWrap .hyo1 th,
.partsModule04 .hyoWrap .hyo1 td {
    padding: 10px 10px;
    border: #fff solid 2px;
}

.partsModule04 .hyoWrap .hyo1.fee {
    border-bottom: #013D6B solid 2px;
}

.partsModule04 .hyoWrap .hyo1.fee th,
.partsModule04 .hyoWrap .hyo1.fee td {
    padding: 10px 20px;
    border: #013D6B solid 2px;
}

.partsModule04 .hyoWrap .hyo1 tr th:first-of-type,
.partsModule04 .hyoWrap .hyo1 tr td:first-of-type {
    border-left: none;
}

.partsModule04 .hyoWrap .hyo1 .lft {
    text-align: left !important;
}

.partsModule04 .hyoWrap .hyo1 .col1 {
    background: #005FA9;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    width: 200px;
    line-height: 1.5em;
}

.partsModule04 .hyoWrap .hyo1 .col1.w100 {
    width: 100px;
    padding: 10px 5px;
}

.partsModule04 .hyoWrap .hyo1 .col1no {
    background: #005FA9;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
}

.partsModule04 .hyoWrap .hyo1.fee .col1 {
    width: auto;
}

.partsModule04 .hyoWrap .hyo1.fee th {
    font-weight: bold;
}

.partsModule04 .hyoWrap .hyo1.fee td {
    color: #191919;
    background: #FFFFFF !important;
}

.partsModule04 .hyoWrap .hyo1 .col2 {
    background: #EAEAEA;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    color: #005FA9;
}

.partsModule04 .hyoWrap .hyo1 td {
    text-align: center;
    background: #F5F5F5;
    font-weight: bold;
}

.partsModule04 .hyoWrap .hyo1 .w100 {
    width: 100px;
}

.partsModule04 .fee .hyoWrap {
    margin: 0 0 10px;
}

.partsModule04 .inner {
    padding: 20px 15px 12px;
}

.partsModule04 .inner ul li,
.partsModule04 .inner ol li {
    line-height: 1.8;
    margin: 0 0 8px;
}

.partsModule04 .inner .space {
    margin: 0 0 20px;
}

.partsModule04 .inner .p_txt1 {
    margin: 10px 0 20px;
}

.partsModule04 .inner.type01 {
    padding: 0px 0 12px;
}

.partsModule04 .inner.type01.public {
    padding: 0px 0 12px 0 !important;
    margin: 0 0 0px !important;
}

.partsModule04 .inner.type02,
.partsModule04 .inner.type03,
.partsModule04 .inner.type04 {
    border: solid 4px #F4F4F4;
}

.partsModule04 .inner.type01>ul>li {
    position: relative;
    padding: 0 0 0 20px;
}

.partsModule04 .inner.type01>ul>li:after {
    content: "";
    position: absolute;
    width: 7px;
    height: 9px;
    background: url(../img/common/ico_sankaku01.png) repeat top left;
    background-size: 7px auto;
    left: 0;
    top: 8px;
}

.partsModule04 .inner.type01>ul>li.ltxt:after {
    content: "・";
    position: absolute;
    width: 7px;
    height: 9px;
    left: -2px;
    top: 0px;
    background: none;
}

.partsModule04 .inner.type02>ul>li {
    position: relative;
    padding: 0 0 0 20px;
}

.partsModule04 .inner.type02>ul>li:after {
    content: "";
    position: absolute;
    width: 7px;
    height: 9px;
    background: url(../img/common/ico_sankaku01.png) repeat top left;
    background-size: 7px auto;
    left: 0;
    top: 8px;
}

.partsModule04 .inner.type02.curriculum>ul>li:after {
    top: 0.8em;
}

.partsModule04 .inner.type03 ol li {
    padding: 0 0 0 35px;
}

.partsModule04 .inner.type03 ol li:before {
    content: "0"counter(num) " ";
    font-size: 15px;
    font-weight: bold;
    font-family: 'Roboto', serif;
    position: absolute;
    left: 0;
    top: -1px;
}

.partsModule04 .inner.type03 ol li:nth-child(n+10):before {
    content: ""counter(num) " ";
    font-size: 15px;
    font-weight: bold;
    font-family: 'Roboto', serif;
    position: absolute;
    left: 0;
    top: -1px;
}

.partsModule04 .inner.type04 ol li {
    padding: 0 0 0 45px;
}

.partsModule04 .inner.type04 ol li:after {
    /*		color : #E60112;*/
    content: "";
    position: absolute;
    width: 7px;
    height: 9px;
    background: url(../img/common/ico_sankaku01.png) repeat top left;
    background-size: 7px auto;
    left: 0;
    top: 7px;
}

.partsModule04 .inner.type04 ol li:before {
    /*		color : #E60112;*/
    content: "0"counter(num) " ";
    font-size: 15px;
    font-weight: bold;
    font-family: 'Roboto', serif;
    position: absolute;
    left: 12px;
    top: -1px;
}

.partsModule04 .inner.type04 ol li:nth-child(n+10):before {
    /*		color : #E60112;*/
    content: ""counter(num) " ";
    font-size: 15px;
    font-weight: bold;
    font-family: 'Roboto', serif;
    position: absolute;
    left: 12px;
    top: -1px;
}

.partsModule04 .inner li a.pdf {
    margin: 0;
}

.partsModule04 .inner li a.pdf:after {
    content: "";
    width: 27px;
    height: 12px;
    background: url(../img/common/ico_pdf.png) no-repeat center center;
    background-size: 27px auto;
    display: inline-block;
    position: relative;
    top: 1px;
    left: 6px;
}

.partsModule04 .inner.curriculum li a.pdf {
    font-size: 18px;
    font-weight: bold;
}

.partsModule04 .inner .out:after {
    content: "";
    width: 13px;
    height: 11px;
    background: url(../img/common/ico_out.png) no-repeat center center;
    background-size: 13px auto;
    display: inline-block;
    position: relative;
    top: 0px;
    left: 6px;
}

.partsModule04 ol li {
    counter-increment: num;
    padding: 0 0 5px 30px;
    position: relative;
    display: block;
    font-size: 13px;
}

.partsModule04 .kanko .pdf:after,
.partsModule04 .kokusai .pdf:after {
    content: "";
    width: 27px;
    height: 12px;
    background: url(../img/common/ico_pdf02.png) no-repeat center center;
    background-size: 27px auto;
    display: inline-block;
    position: relative;
    top: 2px;
    left: 10px;
}

.partsModule04 .kanko ol li:before {
    color: #E60112;
}

.partsModule04 .kanko .tit4:before {
    background: #E60112;
}

.partsModule04 .kanko .pdf {
    background: #E60112;
    display: block;
    padding: 10px;
    color: #fff;
    font-weight: bold;
    border: solid 3px #E60112;
    position: relative;
    padding: 10px 30px 10px 10px;
    color: #fff;
    font-weight: bold;
}

.partsModule04 .kanko .pdf:before {
    content: "▼";
    font-size: 8px;
    color: #fff;
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 7px;
    margin: -8px 0 0 0;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    transform: rotate(-90deg);
}

.partsModule04 .kanko .pdf:hover {
    opacity: 1 !important;
    background: #fff;
    color: #000 !important;
}

.partsModule04 .kanko .pdf:hover:before {
    color: #E60112;
}

.partsModule04 .kokusai ol li:before {
    color: #0060AA;
}

.partsModule04 .kokusai .tit4:before {
    background: #0060AA;
}

.partsModule04 .kokusai .pdf {
    background: #0060AA;
    display: block;
    border: solid 3px #0060AA;
    position: relative;
    padding: 10px 30px 10px 10px;
    color: #fff;
    font-weight: bold;
}

.partsModule04 .kokusai .pdf:before {
    content: "▼";
    font-size: 8px;
    color: #fff;
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 7px;
    margin: -8px 0 0 0;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    transform: rotate(-90deg);
}

.partsModule04 .kokusai .pdf:hover {
    opacity: 1 !important;
    background: #fff;
    color: #000 !important;
}

.partsModule04 .kokusai .pdf:hover:before {
    color: #005FA9;
}

.partsModule04 .btnBlue {
    padding: 3px 80px 3px 10px;
}

@media screen and (max-width: 767px) {
    .partsModule04 {
        margin: 0 0 30px;
    }

    .partsModule04 .tit3 {
        padding: 0 0 30px 30px;
    }

    .partsModule04 .tit3 .in {
        position: relative;
    }

    .partsModule04 .tit3 .in:before {
        content: "";
        display: block;
        position: absolute;
        left: -30px;
        top: 2px;
        width: 31px;
        height: 37px;
        background: url(../img/common/ico_dot02.png) repeat center center;
        background-size: 31px auto;
        z-index: -1;
    }

    .partsModule04 .tit3 .in strong {
        font-size: 18px;
        line-height: 36px;
        font-weight: bold;
        padding: 10px 10px 5px 10px;
        margin: 0 0 5px;
        position: relative;
        top: 5px;
        overflow: hidden;
        display: inline;
        /*	background: url(../img/common/bg_grey01.png) repeat top center;*/
        /*		background: linear-gradient(transparent 60%, #F5F5F5 0%);*/
        background: linear-gradient(transparent 40%, #F5F5F5 0%);
    }

    .partsModule04 .tit3 .in2 {
        position: relative;
    }

    .partsModule04 .tit3 .in2:before {
        content: "";
        display: block;
        position: absolute;
        left: -30px;
        top: 2px;
        width: 31px;
        height: 37px;
        background: url(../img/common/ico_dot02.png) repeat center center;
        background-size: 31px auto;
        z-index: -1;
    }

    .partsModule04 .tit3 .in2 strong {
        font-size: 18px;
        line-height: 36px;
        font-weight: bold;
        padding: 0px 10px 7px 10px;
        margin: 0 0 5px;
        position: relative;
        top: 5px;
        display: inline;
        overflow: hidden;
        background: linear-gradient(transparent 40%, #F5F5F5 0%);
    }

    .partsModule04 .subtit4 {
        font-size: 13px;
        display: block;
        position: relative;
    }

    .partsModule04 .halfWrap .halfBox .tit3 strong {
        width: 100%;
        display: block;
        background: linear-gradient(transparent 65%, #F5F5F5 0%);
        padding: 3px 10px;
        line-height: 30px;
    }

    .partsModule04 .halfWrap .halfBox figure,
    .partsModule04 .halfWrap .halfBox .txt {
        margin: 0 0 10px;
    }

    .partsModule04 .btnWrap .btn01 {
        position: relative;
        width: 50%;
        display: flex;
        align-items: center;
        background: #F5F5F5;
        font-size: 14px;
        font-weight: bold;
        padding: 10px;
        text-align: center;
        justify-content: center;
        margin: 0 0 20px;
    }

    .partsModule04 .btnWrap .btn01:nth-of-type(even) {
        border-left: #fff 7px solid;
    }

    .partsModule04 .btnWrap .btn01:nth-of-type(odd) {
        border-right: #fff 7px solid;
    }

    .partsModule04.end {
        margin: 0 0 0px;
    }

    .partsModule04 .kanko {
        margin: 0 0 20px;
    }

    .partsModule04 .ptxt10 {
        margin: 0 0 10px;
    }

    .partsModule04 .ptxt20 {
        margin: 0 0 20px;
    }

    .partsModule04 .ptxt30,
    .partsModule04 .ptxt40 {
        margin: 0 0 25px;
    }

    .partsModule04 .hyoWrap .hyo1.w100 .wide {
        width: 200px;
    }

    .partsModule04 .hyoWrap .hyo1.half {
        width: 100%;
    }

    .partsModule04 .hyoWrap .arrow {
        position: absolute;
        display: block;
        margin: auto auto;
        top: 0;
        right: 0;
        bottom: 0;
        height: 43px;
        width: 27px;
        background: url(../img/common/ico_arrow_table.png) no-repeat center center;
        background-size: 27px 43px;
    }

    .partsModule04 .inner.type01 {
        font-weight: bold;
    }

    .partsModule04 .inner.type02,
    .partsModule04 .inner.type03,
    .partsModule04 .inner.type04 {
        margin: 0 0 30px;
    }

    .partsModule04 .hyo2.blc td,
    .partsModule04 .hyo2.blc th {
        width: 100%;
        display: block;
    }
}

@media screen and (min-width: 768px),
print {
    .partsModule04 .mb40 {
        margin: 0 0 40px !important;
    }

    .partsModule04 .tit3 {
        padding: 10px 0 15px 28px;
    }

    .partsModule04 .tit3:after {
        left: 25px;
    }

    .partsModule04 .tit3 .in {
        position: relative;
    }

    .partsModule04 .tit3 .in:before {
        content: "";
        display: block;
        position: absolute;
        left: -25px;
        top: 2px;
        width: 32px;
        height: 38px;
        background: url(../img/common/ico_dot01.png) repeat center center;
        background-size: 32px auto;
        z-index: -1;
    }

    .partsModule04 .tit3 .in strong {
        font-size: 18px;
        line-height: 40px;
        font-weight: bold;
        padding: 10px 10px 5px 10px;
        margin: 0 0 5px;
        position: relative;
        top: 5px;
        overflow: hidden;
        display: block;
        background: linear-gradient(transparent 40%, #F5F5F5 0%);
    }

    .partsModule04 .tit3 .in2 {
        position: relative;
    }

    .partsModule04 .tit3 .in2:before {
        content: "";
        display: block;
        position: absolute;
        left: -25px;
        top: 2px;
        width: 32px;
        height: 38px;
        background: url(../img/common/ico_dot01.png) repeat center center;
        background-size: 32px auto;
        z-index: -1;
    }

    .partsModule04 .tit3 .in2 strong {
        font-size: 18px;
        font-weight: bold;
        padding: 0px 10px 0px 10px;
        margin: 0 0 10px;
        position: relative;
        top: 5px;
        display: block;
        overflow: hidden;
        background: linear-gradient(transparent 60%, #F5F5F5 0%);
    }

    .partsModule04 .tit3 .in2 .min {
        font-size: 12px;
        padding: 0 0 0 10px;
    }

    .partsModule04 .txt3 {
        padding: 0 0 20px;
    }

    .partsModule04 .tit4 {
        margin: 0 0 5px;
    }

    .partsModule04 .tit4Wrap {
        position: relative;
    }

    .partsModule04 .tit4Wrap .subtit4 {
        position: absolute;
        display: block;
        top: 10px;
        right: 14px;
        font-size: 13px;
    }

    .partsModule04 .halfWrap .halfBox {
        float: left;
        width: 50%;
    }

    .partsModule04 .halfWrap .halfBox img {
        max-width: 100%;
    }

    .partsModule04 .halfWrap .halfBox figure {
        margin: 10px 0 5px;
    }

    .partsModule04 .halfWrap .halfBox:nth-child(1) {
        padding: 0 20px 0 0;
    }

    .partsModule04 .halfWrap .halfBox:nth-child(2) {
        padding: 0 0 0 20px;
    }

    .partsModule04 .halfWrap .txt {
        margin: 0 0 10px;
    }

    .partsModule04 .hyoWrap.half {
        float: left;
    }

    .partsModule04 .hyoWrap.half.second {
        float: right;
    }

    .partsModule04 .hyoWrap .hyo1.w100 {
        width: 100%;
    }

    .partsModule04 .hyoWrap .hyo1.w100 .wide {
        width: 300px;
    }

    .partsModule04 .hyoWrap .hyo1.half {
        width: 385px;
    }

    .partsModule04 .hyoWrap .hyo1.half img {
        max-width: 100%;
    }

    .partsModule04 .hyoWrap .hyo1.half figure {
        margin: 10px 0 5px;
    }

    .partsModule04 .hyoWrap .half:nth-child(1) {
        float: left;
    }

    .partsModule04 .hyoWrap .half:nth-child(2) {
        float: right;
    }

    .partsModule04 .ptxt10 {
        margin: 0 0 10px;
    }

    .partsModule04 .ptxt15 {
        margin: 0 0 15px;
    }

    .partsModule04 .ptxt20 {
        margin: 0 0 20px;
    }

    .partsModule04 .ptxt30 {
        margin: 0 0 30px;
    }

    .partsModule04 .ptxt40 {
        margin: 0 0 40px;
    }

    .partsModule04 .btnWrap {
        margin: 0 0 30px;
    }

    .partsModule04 .btnWrap .btn01 {
        position: relative;
        width: 255px;
        display: flex;
        align-items: center;
        background: #F5F5F5;
        font-size: 14px;
        font-weight: bold;
        padding: 13px 10px;
        text-align: center;
        justify-content: center;
        margin: 0 0 25px;
    }

    .partsModule04 .btnWrap .btn01.w350 {
        width: 350px;
    }

    .partsModule04 .inner {
        padding: 20px 30px 12px;
        margin: 0 0 30px;
    }

    .partsModule04 .inner.type01 {
        padding: 10px 0 2px 30px;
    }

    .partsModule04 .inner.min {
        margin: 0 0 10px;
    }

    .partsModule04 .inner.min0 {
        margin: 0 0 0px;
    }

    .partsModule04 .inner ol li {
        margin: 0 0 10px;
        line-height: 1.7;
    }

    .partsModule04 .inner ol li:before {
        top: -2px;
    }

    .partsModule04 .inner .pdf {
        display: block;
        /*	width : 435px;*/
        position: relative;
        margin: 15px 0 0 0;
    }

    .partsModule04 .inner .pdf:before {
        margin: -10px 0 0 0;
    }

    .partsModule04 .hyoWrap .txt {
        padding: 5px 10px 0 0;
    }

    .partsModule04 .jihee .txt {
        margin: 0 0 15px;
    }
}

.wakuParts01 {
    border: solid 4px #F4F4F4;
    margin: 0 0 40px;
    clear: both;
}

.wakuParts01.info {
    margin: 0 0 30px;
}

.wakuParts01.info .min {
    font-size: 13px;
}

.wakuParts01.info .bluebox {
    font-size: 13px;
    color: #fff;
    background: #0060A9;
    line-height: 20px;
    padding: 5px 10px;
    font-weight: bold;
    margin: 0 10px 0 0;
}

.wakuParts01 .inner.type01.info {
    padding: 10px 0 0;
    margin: 0;
}

.wakuParts01 .inner.type01.info li {
    margin: 0 0 15px;
}

.wakuParts01 .inner.type01.info li a {
    font-weight: bold;
}

.wakuParts01 .inner.type01.info li a .min {
    font-weight: normal;
}

.wakuParts01.fee {
    border: none;
    background: #003D6A;
    color: #fff;
}

.wakuParts01 strong {
    color: #005faa;
    font-size: 14px;
    margin: 0 0 10px;
    display: block;
}

.wakuParts01 strong.tit4 {
    color: #191919;
}

.wakuParts01 .txt {
    display: block;
    padding: 0 0 0 40px;
    margin: 0;
    position: relative;
}

.wakuParts01 .txt span {
    position: absolute;
    left: 0;
    display: block;
}

.wakuParts01.public {
    padding: 15px 15px 0;
}

.wakuParts01.public .tit4 {
    color: #191919;
}

.wakuParts01 .tit2:after {
    margin: 10px 0 10px;
}

@media screen and (max-width: 767px) {
    .wakuParts01 {
        padding: 15px;
    }

    .wakuParts01.graduate {
        margin: 0 0 30px;
    }
}

@media screen and (min-width: 768px),
print {
    .wakuParts01 {
        padding: 25px 30px 17px;
    }

    .wakuParts01.fee {
        padding: 25px 40px;
    }

    .wakuParts01.public {
        padding: 50px 50px 0;
    }

    .wakuParts01.public .tit4 {
        color: #191919;
        margin: 0 0 30px;
    }

    .wakuParts01 .bluebox,
    .wakuParts01 .min {
        margin: 0 0 0 10px !important;
    }

    .wakuParts01 .big a {
        font-size: 20px;
    }

    .wakuParts01 .big:after {
        top: 14px !important;
    }
}

.mapParts01 {
    position: relative;
}

.mapParts01 .minner {
    position: relative;
}

.mapParts01 .minner:after {
    content: "";
    width: 100%;
    height: 170px;
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: url(../img/common/bg_dot02.png) repeat center center;
}

.mapParts01 .mtit {
    background: #005FA9;
    color: #fff;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    z-index: 2;
}

.mapParts01 .mtit:after {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    background: #005FA9;
    bottom: -10px;
    left: 50%;
    margin: 0 0 0 -10px;
    transform: rotate(-45deg);
}

.mapParts01 .mbox {
    border: solid 4px #3d9fd3;
    background: #fff;
    padding: 70px 15px 15px;
    position: relative;
    z-index: 1;
    font-size: 13px;
    font-weight: bold;
}

.mapParts01 .mbox p {
    position: relative;
    padding: 0 0 0 50px;
    font-weight: bold;
}

.mapParts01 .mbox p strong {
    position: absolute;
    display: block;
    left: 0;
}

.mapParts01 .partsModule04 .inner.type01 {
    padding: 20px 0 2px 0px !important;
}

.mapParts01 .partsModule04 .inner.type01 a {
    font-weight: bold;
}

@media screen and (max-width: 767px) {
    .mapParts01 {
        width: 95%;
        margin: 20px 0 20px;
    }
}

@media screen and (min-width: 768px),
print {
    .mapParts01 {
        width: 680px;
        margin: 20px auto 20px;
    }

    .mapParts01 .minner {
        position: relative;
    }

    .mapParts01 .minner:after {
        content: "";
        width: 700px;
        height: 100px;
        position: absolute;
        bottom: -10px;
        right: -23px;
        background: url(../img/common/bg_dot02.png) repeat center left;
    }

    .mapParts01 .mtit {
        width: 160px;
        height: 100px;
        position: absolute;
        top: 0;
        left: 0;
        padding: 40px 0 0 0px;
        font-size: 14px;
        font-weight: bold;
        text-align: center;
        z-index: 2;
    }

    .mapParts01 .mtit:after {
        position: absolute;
        content: "";
        width: 20px;
        height: 20px;
        background: #005FA9;
        top: 50%;
        right: -8px;
        margin: -10px 0 0 66px;
        transform: rotate(-45deg);
    }

    .mapParts01 .mbox {
        width: 690px;
        height: 100px;
        border: solid 4px #3d9fd3;
        background: #fff;
        padding: 20px 20px 20px 190px;
        position: relative;
        z-index: 1;
        font-size: 13px;
        font-weight: bold;
    }
}

.txt13 {
    font-size: 13px;
}

.facilitiesParts01 {
    margin: 10px 0 25px;
    clear: both;
    overflow: hidden;
}

.facilitiesParts01 .main .name {
    font-size: 14px;
    padding: 3px 0;
}

.facilitiesParts01 .sub li a {
    display: block;
    position: relative;
}

.facilitiesParts01 .sub li a:after {
    content: "";
    display: block;
    width: 34px;
    height: 34px;
    position: absolute;
    bottom: 0px;
    right: 0px;
    background: url(../img/common/ico_zoom01.png) repeat center left;
    background-size: 34px;
}

.facilitiesParts01 .sub li .name {
    font-size: 14px;
    padding: 3px 0;
}

@media screen and (max-width: 767px) {
    .facilitiesParts01 .sub {
        margin: 10px 0 0;
    }

    .facilitiesParts01 .my-gallery {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .facilitiesParts01 li {
        width: 50%;
    }

    .facilitiesParts01 li:nth-of-type(odd) {
        padding: 0 5px 0 0;
    }

    .facilitiesParts01 li:nth-of-type(even) {
        padding: 0 0px 0 5px;
    }
}

@media screen and (min-width: 768px),
print {
    .facilitiesParts01 {
        margin: 0 0 30px;
    }

    .facilitiesParts01 .main {
        width: 394px;
        float: left;
        margin: 0 0 20px;
    }

    .facilitiesParts01 .main img {
        width: 100%;
    }

    .facilitiesParts01 .sub .my-gallery {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .facilitiesParts01 .sub li {
        width: 186px;
        margin: 0 0 15px 20px;
    }

    .facilitiesParts01 .sub li:nth-of-type(5),
    .facilitiesParts01 .sub li:nth-of-type(6) {
        position: relative;
        left: -414px;
    }

    .facilitiesParts01 .sub li img {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .infoParts01 {
        border: solid 2px #B6BFC5;
        padding: 20px 20px 30px;
        margin: 0 0 40px;
        position: relative;
    }

    .infoParts01 .btnType01 {
        position: absolute;
        bottom: -25px;
        width: 90%;
        margin: 0 auto !important;
    }

    .infoParts01 .btnType01:after {
        content: "";
        background: url(../img/common/ico_plus01.png) no-repeat #0060A9;
        background-size: 100% !important;
        width: 48px;
        height: 48px;
        left: 0;
        top: -2px;
    }
}

.publicParts01 {
    overflow: hidden;
}

.publicParts01 .box1 {
    margin: 0 0 30px;
}

@media screen and (max-width: 767px) {
    .publicParts01 .box2 .ptxt20 {
        margin: 0 0 20px;
    }

    .publicParts01 .btnType01 {
        width: 90%;
        margin: 0 auto !important;
    }
}

@media screen and (min-width: 768px),
print {
    .publicParts01 {
        margin: 0 0 65px;
    }

    .publicParts01 .box1 {
        float: left;
        width: 660px;
    }

    .publicParts01 .box2 {
        float: right;
        width: 400px;
    }

    .publicParts01 .box2 .tit2 {
        font-size: 22px;
        margin: 0 0 30px;
    }

    .publicParts01 .box2 .tit2:after {
        margin: 20px 0 11px;
    }

    .publicParts01 .box2 .btnType01 {
        width: 300px;
        line-height: 60px;
    }
}

.publicParts02,
.generalParts01 {
    overflow: hidden;
}

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

    .publicParts02 .box1,
    .publicParts02 .box2 .ptxt20 {
        margin: 0 0 20px;
    }

    .publicParts02 .btnType01 {
        width: 90%;
        margin: 0 auto !important;
    }

    .publicParts02 .btnType01.space {
        margin: 0 auto 10px !important;
    }
}

@media screen and (min-width: 768px),
print {
    .publicParts02 {
        margin: 0 0 50px;
    }

    .publicParts02 .box1 {
        float: right;
        width: 360px;
        padding: 45px 0 0 0;
    }

    .publicParts02 .box2 {
        float: left;
        width: 720px;
    }

    .publicParts02 .box2 .tit2 {
        font-size: 22px;
        margin: 0 0 30px;
    }

    .publicParts02 .box2 .tit2:after {
        margin: 20px 0 11px;
    }

    .publicParts02 .box2 .btnType01 {
        width: 300px;
        line-height: 60px;
        display: inline-block;
    }

    .publicParts02 .box2 .btnType01.space {
        margin: 0 20px 0 0;
    }
}

@media screen and (max-width: 767px) {
    .generalParts01 {
        margin: 0 0 30px;
    }

    .generalParts01 .box1,
    .generalParts01 .box2 .ptxt20 {
        margin: 0 0 20px;
    }

    .generalParts01 .btnType01 {
        width: 90%;
        margin: 0 auto !important;
    }

    .generalParts01 .btnType01.space {
        margin: 0 auto 10px !important;
    }
}

@media screen and (min-width: 768px),
print {
    .generalParts01 {
        margin: 0 0 50px;
    }

    .generalParts01 .box1 {
        float: left;
        width: 295px;
        padding: 0 0 0 0;
    }

    .generalParts01 .box1 img {
        width: 100%;
    }

    .generalParts01 .box2 {
        float: right;
        width: 765px;
    }

    .generalParts01 .box2 .tit2 {
        font-size: 22px;
        margin: 0 0 30px;
    }

    .generalParts01 .box2 .tit2:after {
        margin: 20px 0 11px;
    }

    .generalParts01 .box2 .btnType01 {
        width: 300px;
        line-height: 60px;
        display: inline-block;
    }

    .generalParts01 .box2 .btnType01.space {
        margin: 0 20px 0 0;
    }
}

@media screen and (max-width: 767px) {
    .examiParts01 {
        margin: 0 0 30px;
    }

    .examiParts01 .box1,
    .examiParts01 .box2 .ptxt20 {
        margin: 0 0 20px;
    }

    .examiParts01 .btnType01 {
        width: 90%;
        margin: 0 auto !important;
    }

    .examiParts01 .btnType01.space {
        margin: 0 auto 10px !important;
    }
}

@media screen and (min-width: 768px),
print {
    .examiParts01 {
        position: relative;
        margin: 0 0 60px;
    }

    .examiParts01 .box1 {
        position: absolute;
        top: -40px;
        right: 0;
        width: 600px;
    }

    .examiParts01 .ptxt20 {
        width: 460px;
        float: left;
    }

    .examiParts01 .btnType01 {
        width: 300px;
        clear: both;
        line-height: 60px;
    }
}

.guradParts01 .list li {
    font-weight: bold;
    font-size: 13px;
}

@media screen and (max-width: 767px) {
    .guradParts01 {
        margin: 0 0 40px;
    }

    .guradParts01 .btnType01 {
        width: 90%;
        margin: 0 auto !important;
    }

    .guradParts01 .btnType01.space {
        margin: 0 auto 10px !important;
    }

    .guradParts01 .tit2 {
        margin: 30px auto;
        text-align: center;
    }

    .guradParts01 .tit2:after {
        content: "";
        display: block;
        position: relative;
        left: 50%;
        margin: 20px 0 20px -25px;
        width: 50px;
        height: 4px;
        background: #005faa;
    }

    .guradParts01 .ptxt20 {
        margin: 0 0 10px;
    }

    .guradParts01 .list {
        margin: 0 0 20px;
    }
}

@media screen and (min-width: 768px),
print {
    .guradParts01 {
        position: relative;
        margin: 0 0 60px;
    }

    .guradParts01 .box1 {
        position: absolute;
        top: 0px;
        right: 0;
        width: 560px;
    }

    .guradParts01 .box2 {
        width: 500px;
        float: left;
        margin: 0 0 40px;
    }

    .guradParts01 .btnType01 {
        width: 300px;
        clear: both;
        line-height: 60px;
        margin: 0 auto;
    }
}

.studentParts01 .box1 {
    background: #F5F5F5;
}

@media screen and (max-width: 767px) {
    .studentParts01 {
        margin: 30px 0 40px;
    }

    .studentParts01 .tit2 {
        margin: 20px auto 0;
        text-align: center;
    }

    .studentParts01 .tit2.ctr:after {
        margin: 15px 0 20px -25px !important;
    }

    .studentParts01 .box1 {
        padding: 0 20px 30px;
        margin: 0 0 10px;
    }

    .studentParts01 .box1 .photo {
        margin: 0 -20px;
        padding: 0 0px;
    }
}

@media screen and (min-width: 768px),
print {
    .studentParts01 {
        margin: 60px auto 60px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        /* 子要素をflexboxにより中央に配置する */
    }

    .studentParts01 .box1 {
        width: 530px;
        padding: 0 0 40px;
    }

    .studentParts01 .box1:first-of-type {
        margin: 0 40px 0 0;
    }

    .studentParts01 .box1 .tit2:after {
        margin: 20px 0 20px -25px !important;
    }

    .studentParts01 .box1 .photo {
        margin: 0 0 30px;
    }

    .studentParts01 .box1 .photo img {
        width: 100%;
    }

    .studentParts01 .box1 .ptxt30 {
        width: 430px;
        margin: 0 auto 30px;
    }

    .studentParts01 .box1 .btnType01 {
        margin: 0 auto;
        line-height: 60px;
        width: 300px;
    }

    .studentParts01 .box1.long {
        width: 1100px;
        margin: 40px 0 0 0;
        padding: 0 0;
    }

    .studentParts01 .box1 .long_inner {
        width: 530px;
        float: left;
        padding: 30px 0 0;
    }

    .studentParts01 .box1.long .photo {
        width: 570px;
        margin: 0;
        float: left;
        display: block;
    }
}

.tit.comming {
    font-family: 'Josefin Sans', sans-serif;
}

@media screen and (max-width: 767px) {
    .commingParts01 .tit2.ctr:after {
        margin: 10px 0 20px -25px !important;
    }

    .commingParts01 .btnType01 {
        margin: 0 auto;
        width: 90%;
    }
}

@media screen and (min-width: 768px),
print {
    .commingParts01 .btnType01 {
        margin: 0 auto;
        line-height: 60px;
        width: 300px;
    }
}

.feeParts01 .box1 .btit1 {
    background: #0060AA;
    position: relative;
    display: block;
}

.feeParts01 .box1 .btit1:after {
    content: "■";
    font-size: 13px;
    color: #005FA9;
    display: inline-block;
    position: absolute;
    bottom: 50%;
    right: -7px;
    margin: 0 0 -13px 0px;
    transform: rotate(-45deg);
}

.feeParts01 .box1 .btit1 span {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 16px;
    color: #fff;
}

.feeParts01 .box1 .price {
    font-weight: bold;
}

.feeParts01 .box1 .price .num {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: bold;
    font-size: 54px;
    color: #E50113;
    padding: 0 10px 0 30px;
}

@media screen and (max-width: 767px) {
    .feeParts01 {
        margin: 0px 0 20px;
    }

    .feeParts01 .box1 {
        width: 100%;
        float: left;
        margin: 0 0 0px;
    }

    .feeParts01 .box1 .btit1 {
        width: 100px;
        height: 80px;
        float: left;
    }

    .feeParts01 .box2 {
        font-size: 13px;
    }
}

@media screen and (min-width: 768px),
print {
    .feeParts01 {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
    }

    .feeParts01 .box1 {
        width: 340px;
        height: 80px;
        margin: 0 0 30px;
    }

    .feeParts01 .box1 .btit1 {
        width: 180px;
        height: 80px;
        float: left;
    }

    .feeParts01 .box1 .price {
        display: block;
        width: 155px;
        float: left;
        font-size: 16px;
    }

    .feeParts01 .box1 .price .num {
        color: #E50113;
    }

    .feeParts01 .box2 {
        width: 460px;
        padding: 0 0 0 20px;
        font-size: 13px;
        margin-top: -25px;
    }
}

.feeParts02 .box1 {
    margin: 0 0 15px;
}

.feeParts02 .box1 .btit1 {
    position: relative;
    display: block;
    font-weight: bold;
}

.feeParts02 .box1 .bluePer {
    width: 200px;
    background: #0060A9;
    color: #FFFFFF;
    float: left;
    text-align: center;
}

.feeParts02 .box1 .greyPer {
    width: 120px;
    background: #959595;
    color: #FFFFFF;
    float: left;
    text-align: center;
    margin: 0 0 0 20px;
}

.feeParts02 .box1 .greyPer:after {
    content: "■";
    font-size: 13px;
    color: #959595;
    display: inline-block;
    position: absolute;
    bottom: 50%;
    left: -5px;
    margin: 0 0 -14px 0px;
    transform: rotate(-45deg);
}

.feeParts02 .box1 .price {
    font-weight: bold;
    font-size: 12px;
    text-align: center;
}

.feeParts02 .box1 .price .num {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: bold;
    font-size: 20px;
    padding: 0 5px 0 0px;
}

@media screen and (max-width: 767px) {
    .feeParts02 {
        margin: 10px 0 40px;
    }

    .feeParts02 .box1 .btit1 {
        width: 100%;
        display: block;
        font-size: 13px;
        text-align: left;
        clear: both;
        margin: 0 0 5px;
    }

    .feeParts02 .box2 {
        width: 100%;
        margin: 0 0 10px 0px;
        overflow: hidden;
    }

    .feeParts02 .box2 .bluePer.per1 {
        width: 40%;
    }

    .feeParts02 .box2 .bluePer.per2 {
        width: 48%;
    }

    .feeParts02 .box2 .bluePer.per3 {
        width: 50%;
    }

    .feeParts02 .box2 .bluePer.per4 {
        width: 55%;
    }

    .feeParts02 .box2 .bluePer.per5 {
        width: 56%;
    }

    .feeParts02 .box2 .bluePer.per6 {
        width: 64%;
    }

    .feeParts02 .box2 .greyPer {
        line-height: 28px;
        position: relative;
        top: 4px;
        width: 100px;
    }
}

@media screen and (min-width: 768px),
print {
    .feeParts02 {
        position: relative;
        margin: 20px 0 40px 0;
    }

    .feeParts02:after {
        content: "";
        border-right: dotted #015FA9 2px;
        height: 100%;
        display: block;
        position: absolute;
        height: 294px;
        top: 0px;
        left: 608px;
        z-index: -1;
    }

    .feeParts02 .box1 {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

    .feeParts02 .box1 .btit1 {
        float: left;
        width: 190px;
        text-align: right;
        font-size: 13px;
    }

    .feeParts02 .box2 {
        width: 600px;
        margin: 0 0 0 20px;
    }

    .feeParts02 .box2 .bluePer.per1 {
        width: 217px;
    }

    .feeParts02 .box2 .bluePer.per2 {
        width: 288px;
    }

    .feeParts02 .box2 .bluePer.per3 {
        width: 292px;
    }

    .feeParts02 .box2 .bluePer.per4 {
        width: 320px;
    }

    .feeParts02 .box2 .bluePer.per5 {
        width: 330px;
    }

    .feeParts02 .box2 .bluePer.per6 {
        width: 400px;
    }

    .feeParts02 .box2 .greyPer {
        line-height: 28px;
        position: relative;
        top: 4px;
    }
}

.feeParts03 {
    background: #F6F6F6;
    padding: 20px;
    margin: 0 0 10px;
}

.feeParts03 .tel {
    font-family: 'Roboto', serif;
    font-weight: bold;
    font-size: 24px;
    color: #045FA9;
    letter-spacing: 0.05em;
}

.orico {
    margin: 0 0 0 10px;
    display: inline-block;
}

@media screen and (max-width: 767px) {
    .orico {
        width: 50px;
    }
}

/*-----------------------
greyModule01
-----------------------*/
.greyModule01 {
    background: #f5f5f5;
}

.greyModule01 .list .tit {
    display: block;
    font-size: 16px;
}

@media screen and (max-width: 767px) {
    .greyModule01 {
        margin: 0 0 30px;
        padding: 30px 20px 10px;
    }

    .greyModule01 li .photo {
        margin: 0 0 15px;
    }

    .greyModule01 li .tit {
        margin: 0 0 13px;
        text-align: center;
    }

    .greyModule01 .tit2.ctr:after {
        margin: 15px 0 30px -25px !important;
    }
}

@media screen and (min-width: 768px),
print {
    .greyModule01 {
        position: relative;
        margin: 0 0 60px;
        padding: 40px 50px 30px;
    }

    .greyModule01 .tit2.ctr:after {
        margin: 15px 0 30px -25px !important;
    }

    .greyModule01 .list {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .greyModule01 .list li {
        width: 305px;
    }

    .greyModule01 .list li .photo {
        margin: 0 0 20px;
    }

    .greyModule01 .list li .tit {
        margin: 0 0 18px;
    }

    .greyModule01 .list li:nth-of-type(3n-1) {
        margin: 0 42px;
    }
}

/*-----------------------
carrerModule01
-----------------------*/
.carrerModule01 .list .car {
    width: 120px;
    margin: 0 auto;
    background: #005faa;
    color: #fff;
    text-align: center;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: bold;
    font-size: 13px;
    line-height: 30px;
    padding: 3px 0 0 0;
    position: relative;
    top: -20px;
}

.carrerModule01 .list .car:after {
    content: "■";
    font-size: 13px;
    color: #005FA9;
    display: inline-block;
    position: absolute;
    bottom: -14px;
    left: 50%;
    margin: 0 0 0 -6px;
    transform: rotate(-45deg);
}

.carrerModule01 .list .tit {
    display: block;
    font-size: 18px;
    color: #005faa;
    text-align: center;
}

.carrerModule01 .list .txt {
    font-size: 12px;
}

@media screen and (max-width: 767px) {
    .carrerModule01 {
        margin: 50px 0 30px;
    }

    .carrerModule01 .photo {
        display: block;
        margin: 0 0 15px;
    }

    .carrerModule01 .tit {
        font-size: 20px;
        margin: 0 0 10px;
    }

    .carrerModule01 .txt {
        margin: 0 0 50px;
    }

    .carrerModule01 li:nth-of-type(4) .txt {
        margin: 0 0 20px;
    }

    .carrerModule01 .btnType01 {
        margin: 0 auto;
        width: 90%;
    }
}

@media screen and (min-width: 768px),
print {
    .carrerModule01 {
        position: relative;
        margin: 0 0 30px;
        padding: 40px 0px 30px;
    }

    .carrerModule01 .tit2.ctr:after {
        margin: 15px 0 30px -25px !important;
    }

    .carrerModule01 .list {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .carrerModule01 .list li {
        width: 240px;
    }

    .carrerModule01 .list li .photo {
        margin: 0 0 20px;
    }

    .carrerModule01 .list li .tit {
        margin: 0 0 5px;
    }

    .carrerModule01 .list li:nth-of-type(4n-1),
    .carrerModule01 .list li:nth-of-type(4n-2),
    .carrerModule01 .list li:nth-of-type(4n) {
        margin: 0 0 0 46px;
    }

    .carrerModule01 .btnType01 {
        margin: 0 auto;
        width: 300px;
        line-height: 60px;
    }
}

/*-----------------------
guradModule01
-----------------------*/
.guradModule01 .list .car {
    background: #005faa;
    color: #fff;
    text-align: center;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: bold;
    font-size: 14px;
    line-height: 50px;
    padding: 3px 0 0 0;
    position: relative;
}

.guradModule01 .list .car:after {
    content: "■";
    font-size: 13px;
    color: #005FA9;
    display: inline-block;
    position: absolute;
    bottom: -24px;
    left: 50%;
    margin: 0 0 0 -6px;
    transform: rotate(-45deg);
}

@media screen and (max-width: 767px) {
    .guradModule01 {
        margin: 0 0 50px;
    }

    .guradModule01 .tit2.ctr {
        text-align: left;
    }

    .guradModule01 .tit2.ctr:after {
        content: "";
        display: block;
        position: relative;
        left: 0;
        margin: 10px 0 30px 0px !important;
        width: 50px;
        height: 4px;
        background: #005faa;
    }

    .guradModule01 .car {
        margin: 0 0 20px;
    }

    .guradModule01 .list li {
        display: block;
        margin: 0 0 30px;
        float: left;
        width: 100%;
    }

    .guradModule01 .btnType01 {
        display: block;
        width: 90%;
        margin: 0 auto;
    }
}

@media screen and (min-width: 768px),
print {
    .guradModule01 {
        margin: 0 auto 60px;
    }

    .guradModule01 .car {
        margin: 0 auto;
        top: -20px;
    }

    .guradModule01 .list {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        /* 子要素をflexboxにより中央に配置する */
    }

    .guradModule01 .list li {
        width: 394px;
        margin: 0 10px;
    }

    .guradModule01 .ptxt30 {
        display: block;
        width: 800px;
        margin: 20px auto;
    }

    .guradModule01 .btnType01 {
        display: block;
        width: 300px;
        margin: 0 auto;
        line-height: 60px;
    }

    .guradModule01 .tit2.ctr:after {
        margin: 25px 0 55px -25px !important;
    }
}

/*-----------------------
jiheeModule01
-----------------------*/
.jiheeModule01 {
    margin: 30px 0 30px 0;
    border: solid 4px #F5F5F5;
    padding: 20px 20px 10px;
}

.jiheeModule01 figure {
    text-align: center;
    margin: 0 0 20px;
}

.jiheeModule01 figure img {
    width: 175px;
}

.jiheeModule01 .txt {
    margin: 0 0 10px;
}

@media screen and (min-width: 768px),
print {
    .jiheeModule01 {
        text-align: center;
        margin: 10px 0 30px 0;
    }
}

.pt13 {
    font-size: 13px;
}

.pt14 {
    font-size: 14px;
}

b .rit {
    text-align: right;
}

/*-----------------------
.requestModule01
-----------------------*/
@media screen and (max-width: 767px) {
    .requestModule01 figure {
        width: 90%;
        display: block;
        margin: 0 auto;
        position: relative;
        top: -10px;
    }
}

.listModule01.public .titWrap,
.listModule01.graduate .titWrap,
.listModule01.student .titWrap {
    background: #4a5e6d;
}

.listModule01.admission .titWrap {
    background: #3d9fd3;
}

@media screen and (max-width: 767px) {
    .listModule01 .box a .inner .tit {
        margin: 15px 0 5px;
    }
}

@media screen and (min-width: 768px),
print {
    .listModule01 .box a .inner {
        padding-top: 40px;
    }
}

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

    .listModule01.public,
    .listModule01.graduate {
        margin: 30px 0 10px;
    }
}

@media screen and (min-width: 768px),
print {

    .listModule01.public,
    .listModule01.graduate {
        margin: 50px auto 30px;
    }
}

@media screen and (max-width: 767px) {
    .listModule01.student {
        margin: 0px 0 10px;
    }
}

@media screen and (min-width: 768px),
print {
    .listModule01.student {
        margin: 0px auto 30px;
    }
}

/*-----------------------
partsBox01
-----------------------*/
.partsBox01 {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.partsBox01:first-child {
    flex-basis: 200px;
}

.partsBox01 .box1 {
    background: #EBEBEB;
    color: #005faa;
    text-align: center;
    padding: 10px;
}

.partsBox01 .box2 {
    background: #F5F5F5;
    padding: 15px 20px;
    text-align: left;
}

.partsBox01 .box2 .mi {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 10px;
    display: block;
}

.partsBox01 .box2 .box2_inner {
    background: #fff;
    padding: 7px 20px;
    font-size: 13px;
    font-weight: bold;
    float: left;
    margin: 10px 0 0 0;
}

.partsBox01 .box2 .min {
    font-size: 12px;
}

.partsBox01 .box2 .space {
    display: block;
    margin: 10px 0 0 0;
    float: left;
}

@media screen and (max-width: 767px) {
    .partsBox01 .box1 {
        font-size: 16px;
        font-weight: bold;
        width: 100%;
        text-align: center;
    }

    .partsBox01 .box2 {
        width: 100%;
    }

    .partsBox01 .box2 .mi {
        text-align: center;
    }

    .partsBox01 .box2 .koumoku dt {
        display: block;
        text-align: left;
        font-size: 13px;
        font-weight: bold;
    }

    .partsBox01 .box2 .koumoku dd {
        display: block;
        font-size: 13px;
        margin: 0 0 10px;
    }
}

@media screen and (min-width: 768px),
print {
    .partsBox01 {
        text-align: center;
        margin: 10px 0 30px 0;
    }

    .partsBox01 .box1 {
        display: flex;
        width: 200px;
        padding: 20px;
        font-size: 16px;
        font-weight: bold;
        justify-content: center;
        align-items: center;
    }

    .partsBox01 .box1.general {
        width: 320px;
        text-align: left;
    }

    .partsBox01 .box2 {
        flex: 1;
        padding: 30px 40px;
    }

    .partsBox01 .box2 .mi {
        font-size: 16px;
        font-weight: bold;
        margin: 0 0 10px;
        display: block;
    }

    .partsBox01 .box2 .koumoku dt {
        float: left;
        width: 120px;
        clear: both;
        font-size: 13px;
        font-weight: bold;
    }

    .partsBox01 .box2 .koumoku dd {
        float: left;
        width: 700px;
        font-size: 13px;
        font-weight: bold;
    }

    .partsBox01 .box2 .koumoku.general dt {
        width: 120px;
    }

    .partsBox01 .box2 .koumoku.general dd {
        width: 580px;
    }

    .partsBox01 .box2 .koumoku.graduate dt {
        width: 50px;
    }

    .partsBox01 .box2 .koumoku.graduate dd {
        width: 580px;
    }
}

/*-----------------------
partsBox02
-----------------------*/
.partsBox02 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
    margin: 10px 0 30px;
}

.partsBox02 .box1 {
    border: #EBEBEB solid 4px;
    padding: 15px 12px;
}

@media screen and (max-width: 767px) {
    .partsBox02 .box1 {
        width: 100%;
        margin: 0 0 20px;
    }
}

@media screen and (min-width: 768px),
print {
    .partsBox02 .box1 {
        width: 530px;
        padding: 25px 40px;
        font-size: 16px;
        font-weight: bold;
        text-align: left;
    }
}

/*-----------------------
more
-----------------------*/
.more {
    display: inline-block;
    float: right;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: bold;
    padding: 0 15px 0 0;
}

.more:after {
    content: "▼";
    font-size: 8px;
    color: #005FA9;
    display: inline-block;
    position: relative;
    top: -3px;
    left: 10px;
    transform: rotate(-90deg);
}

.more2 {
    display: inline-block;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: bold;
    color: #fff;
    padding: 0 15px 0 20px;
}

.more2:after {
    content: "▼";
    font-size: 8px;
    color: #fff;
    display: inline-block;
    position: relative;
    top: -3px;
    left: 10px;
    transform: rotate(-90deg);
}

.more3 {
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    background: #fff;
    border: solid 2px #0060A8;
    line-height: 46px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: bold;
}

.more3:after {
    content: "▼";
    font-size: 8px;
    color: #005FA9;
    display: inline-block;
    position: absolute;
    top: 0px;
    right: 10px;
    transform: rotate(-90deg);
}

.more3:hover {
    color: #fff;
    opacity: 1 !important;
    background: #0060A9;
}

.more3:hover:after {
    color: #fff;
}

.more4 {
    display: inline-block;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: bold;
    padding: 0 15px 0 0;
}

.more4:after {
    content: "▼";
    font-size: 8px;
    color: #fff;
    display: inline-block;
    position: relative;
    top: -3px;
    left: 10px;
    transform: rotate(-90deg);
}

.btnType01 {
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    color: #fff !important;
    background: #005FA9;
    border: solid 3px #005FA9;
    line-height: 46px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: bold;
}

.btnType01.line {
    background: #19BC03;
    border: solid 3px #19BC03;
}

@media (max-width: 767px) {
    .btnType01.line {
        margin-top: 15px;
    }
}

.btnType01:after {
    content: "▼";
    font-size: 8px;
    color: #fff;
    display: inline-block;
    position: absolute;
    top: 0px;
    right: 10px;
    transform: rotate(-90deg);
    transition: 0.3s ease-in-out;
}

.btnType01:hover {
    opacity: 1 !important;
    background: #fff;
    color: #000 !important;
}

.btnType01:hover:after {
    color: #005FA9;
}

.btnType01.line:hover::after {
    color: #19BC03;
}

.btnType01.space {
    margin: 0 0 15px;
}

.btnType02 {
    position: relative;
    display: block;
    width: 100%;
    padding: 0 13px;
    text-align: center;
    color: #fff !important;
    background: #E50113;
    border: solid 3px #E50113;
    line-height: 46px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: bold;
}

.btnType02:after {
    content: "▼";
    font-size: 8px;
    color: #fff;
    display: inline-block;
    position: absolute;
    top: 0px;
    right: 10px;
    transform: rotate(-90deg);
}

.btnType02:hover {
    opacity: 1 !important;
    background: #fff;
    color: #000 !important;
}

.btnType02:hover:after {
    color: #E50113;
}

.btnType02 .out:after {
    content: "";
    display: inline-block;
    position: relative;
    width: 13px;
    height: 11px;
    margin: -4px 0 0 4px;
    background: url(../img/common/ico_out02.png) no-repeat;
    background-size: 100%;
    line-height: 24px;
}

@media screen and (max-width: 767px) {
    .btnType02 .out.min {
        font-size: 12px;
    }

    .btnType02.space {
        margin-bottom: 15px;
    }
}

/*-----------------------
footer
-----------------------*/
footer {
    background: #F5F5F5;
    padding: 30px 15px 15px;
    position: relative;
}

footer .inner .school {
    /*	@include fz_vw(13);*/
    font-size: 13px;
}

footer .inner .school .tit {
    margin: 0 0 10px;
}

footer .inner #fNav .nav01 {
    display: flex;
    flex-wrap: wrap;
    border-top: solid 1px #fff;
    border-bottom: solid 1px #fff;
    padding: 10px 0;
}

footer .inner #fNav .nav01 li {
    width: 50%;
    line-height: 1.8;
}

footer .inner #fNav .nav01 li a {
    font-weight: bold;
    position: relative;
    padding: 0 15px 0 0px;
    left: 10px;
    line-height: 2;
}

footer .inner #fNav .nav01 li a:before {
    content: "";
    display: block;
    position: absolute;
    left: 0px;
    top: 50%;
    width: 7px;
    height: 9px;
    margin: -4px 0 0 -10px;
    background: url(../img/common/ico_sankaku01.png) no-repeat;
    background-size: 100%;
}

footer .inner #fNav .nav02 {
    margin: 0 0 5px;
    line-height: 1.8;
}

footer .inner #fNav .nav02 li {
    line-height: 1.8;
}

footer .inner #fNav .nav02 li a {
    position: relative;
    padding: 0 15px 0 0px;
    line-height: 1.8;
    font-size: 12px;
}

footer .inner #fNav .nav02 li a:after {
    content: "";
    display: inline-block;
    position: relative;
    width: 27px;
    height: 12px;
    margin: -4px 0 0 6px;
    background: url(../img/common/ico_pdf.png) no-repeat;
    background-size: 100%;
}

footer .inner #fNav .nav03 li {
    line-height: 1.8;
}

footer .inner #fNav .nav03 li a {
    position: relative;
    padding: 0 15px 0 0px;
    line-height: 1.8;
    font-size: 12px;
}

footer .inner #fNav .nav03 li a:after {
    content: "";
    display: inline-block;
    position: relative;
    width: 13px;
    height: 11px;
    margin: -4px 0 0 6px;
    background: url(../img/common/ico_out.png) no-repeat;
    background-size: 100%;
}

footer .inner .nav_sub01 li {
    line-height: 1.8;
}

footer .inner .nav_sub01 li a {
    position: relative;
    padding: 0 15px 0 0px;
    left: 0px;
    line-height: 1.8;
    font-size: 12px;
}

footer .inner .nav_sub01 li a:before {
    content: "-";
    display: inline-block;
    padding-right: 5px;
}

footer .bnrBlock {
    margin: 15px 0 0 0;
    float: right;
}

footer .bnrBlock li {
    margin-bottom: 15px;
}

footer small {
    display: inline-block;
    width: 100%;
    text-align: center;
    color: #959595;
    font-size: 11px;
    letter-spacing: 0;
    font-family: 'Josefin Sans', sans-serif;
}

@media screen and (max-width: 767px) {
    footer .tit img {
        width: 149px;
    }

    footer .inner #fNav {
        margin: 20px 0;
    }

    footer .inner .nav01 {
        margin: 0 0 15px;
    }

    footer .inner .schoolBlock {
        margin: 20px 0 0 0;
    }

    footer .inner .schoolBlock ul {
        width: 100%;
        min-height: 90px;
        position: relative;
    }

    footer .inner .schoolBlock li {
        padding: 0px;
    }

    footer .inner .schoolBlock li:nth-child(1) {
        display: block;
        width: 50%;
        position: absolute;
        top: 0px;
        left: 0;
    }

    footer .inner .schoolBlock li:nth-child(2) {
        display: block;
        width: 50%;
        position: absolute;
        top: 42px;
        left: 0;
    }

    footer .inner .schoolBlock li:nth-child(3) {
        display: block;
        position: absolute;
        width: 50%;
        left: 50%;
        top: 0;
        padding: 0 0 0 4px;
    }

    footer .inner .schoolBlock li a {
        display: block;
        width: 100%;
        text-align: center;
        border: solid 1px #d2d2d2;
        background: #fff;
    }

    footer .inner .schoolBlock li a img {
        height: 36px;
        width: auto;
    }

    footer .inner .schoolBlock li:nth-child(3) a {
        line-height: 78px;
    }

    footer .inner .schoolBlock li:nth-child(3) a img {
        height: 75px;
        width: auto;
    }
}

@media screen and (min-width: 768px),
print {
    footer .sns {
        margin: 20px 0;
        display: table;
    }

    footer .sns li {
        display: table-cell;
        width: 50px;
    }

    footer .sns li a {
        display: block;
        width: 38px;
        height: 38px;
    }

    footer .sns li a:hover {
        opacity: 1.0 !important;
    }

    footer .sns li.facebook a {
        background: url(../img/common/ico_facebook.png) no-repeat;
        background-size: 38px;
    }

    footer .sns li.facebook a:hover {
        background: url(../img/common/ico_facebook_on.png) no-repeat;
        background-size: 38px;
    }

    footer .sns li.instagram a {
        background: url(../img/common/ico_instagram.png) no-repeat;
        background-size: 38px;
    }

    footer .sns li.instagram a:hover {
        background: url(../img/common/ico_instagram_on.png) no-repeat;
        background-size: 38px;
    }

    footer .sns li.twitter a {
        background: url(../img/common/ico_twitter.png) no-repeat;
        background-size: 38px;
    }

    footer .sns li.twitter a:hover {
        background: url(../img/common/ico_twitter_on.png) no-repeat;
        background-size: 38px;
    }

    footer {
        padding: 80px 0px 15px;
    }

    footer .inner {
        position: relative;
        width: 1100px;
        margin: 0 auto;
    }

    footer .inner .school {
        width: 175px;
        float: left;
        font-size: 11px;
    }

    footer .inner #fNav {
        width: 545px;
        float: left;
        margin: 0 0 0 70px;
    }

    footer .inner #fNav .nav01pc,
    footer .inner #fNav .nav02pc,
    footer .inner #fNav .nav03pc {
        width: 170px;
        float: left;
    }

    footer .inner #fNav .nav01pc>li,
    footer .inner #fNav .nav02pc>li,
    footer .inner #fNav .nav03pc>li {
        line-height: 1.5;
    }

    footer .inner #fNav .nav01pc>li>a,
    footer .inner #fNav .nav02pc>li>a,
    footer .inner #fNav .nav03pc>li>a {
        font-size: 11px;
        font-weight: bold;
        margin: 0 0 10px;
    }

    footer .inner #fNav .nav01pc>li>ul,
    footer .inner #fNav .nav02pc>li>ul,
    footer .inner #fNav .nav03pc>li>ul {
        margin: 5px 0 20px;
    }

    footer .inner #fNav .nav01pc>li>ul>li,
    footer .inner #fNav .nav02pc>li>ul>li,
    footer .inner #fNav .nav03pc>li>ul>li {
        line-height: 1.5;
    }

    footer .inner #fNav .nav01pc>li>ul>li>a,
    footer .inner #fNav .nav02pc>li>ul>li>a,
    footer .inner #fNav .nav03pc>li>ul>li>a {
        font-size: 11px;
    }

    footer .inner #fNav .nav01pc .space,
    footer .inner #fNav .nav02pc .space,
    footer .inner #fNav .nav03pc .space {
        margin: 20px 0 0 0;
    }

    footer .inner #fNav .nav01pc a.pdf,
    footer .inner #fNav .nav02pc a.pdf,
    footer .inner #fNav .nav03pc a.pdf {
        font-weight: normal;
    }

    footer .inner #fNav .nav01pc a.pdf:after,
    footer .inner #fNav .nav02pc a.pdf:after,
    footer .inner #fNav .nav03pc a.pdf:after {
        content: "";
        display: inline-block;
        position: relative;
        top: 2px;
        width: 27px;
        height: 12px;
        margin: 0px 0 0 6px;
        background: url(../img/common/ico_pdf.png) no-repeat;
        background-size: 100%;
    }

    footer .inner #fNav .nav01pc a.out,
    footer .inner #fNav .nav02pc a.out,
    footer .inner #fNav .nav03pc a.out {
        font-weight: normal;
    }

    footer .inner #fNav .nav01pc a.out:after,
    footer .inner #fNav .nav02pc a.out:after,
    footer .inner #fNav .nav03pc a.out:after {
        content: "";
        display: inline-block;
        position: relative;
        width: 13px;
        height: 11px;
        margin: -4px 0 0 6px;
        background: url(../img/common/ico_out.png) no-repeat;
        background-size: 100%;
    }

    footer .inner .schoolBlock {
        position: absolute;
        top: 280px;
        left: 0;
        width: 175px;
    }

    footer .inner .schoolBlock ul {
        width: 100%;
    }

    footer .inner .schoolBlock ul li {
        width: 100%;
        display: block;
        margin: 0 0 10px;
    }

    footer .inner .schoolBlock ul li a {
        display: block;
        width: 100%;
        text-align: center;
        border: solid 1px #d2d2d2;
        background: #fff;
    }

    footer .inner .schoolBlock ul li img {
        height: 34px;
    }

    footer .inner .schoolBlock ul li:nth-child(3) a {
        line-height: 78px;
    }

    footer .inner .schoolBlock ul li:nth-child(3) a img {
        height: 75px;
        width: auto;
    }
}

@media screen and (max-width: 767px) {
    footer .pagetop {
        position: absolute;
        right: 20px;
        top: -17px;
    }

    footer .pagetop img {
        width: 64px;
    }
}

@media screen and (min-width: 768px),
print {
    footer .pagetop {
        position: absolute;
        right: 0px;
        top: -132px;
    }

    footer .pagetop img {
        width: 64px;
    }
}

.pswp__bg {
    opacity: 0.8 !important;
}

.pswp__caption__center {
    text-align: center !important;
}

/*
.pswp__button--close{
	width : 34px!important;
	height : 34px!important;
	background: url(../img/common/ico_zoomclose01.png) repeat center left!important;
	background-size : 34px!important;
}
*/
.pswp__img {
    border: 10px solid #fff;
}

.voiceModule01 .inner .profile figure img {
    border: 5px solid #fff;
}

.voiceModule01 .inner .photo2Set {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 15px 0 0 0;
}

.voiceModule01 .inner .photo2Set figure {
    width: 50%;
    flex: 1;
}

.voiceModule01 .inner .photo2Set figure:nth-of-type(1) {
    margin: 0 5px 0 0;
}

.voiceModule01 .inner .photo2Set figure:nth-of-type(2) {
    margin: 0 0 0 5px;
}

/*-----------------------
searchModule01
-----------------------*/
.searchModule01 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-start;
}

.searchModule01 .txt {
    font-size: 13px;
    line-height: 1.8;
    margin: 0 0 20px;
}

.searchModule01 .tit {
    display: block;
    position: relative;
    width: 100%;
    text-align: left;
    font-size: 20px;
    font-weight: bold;
    padding: 0px 0 0 0px;
    margin: 0 0 20px;
    letter-spacing: 0.1em;
    line-height: 1.8;
}

.searchModule01 .tit:after {
    content: "";
    display: block;
    position: relative;
    left: 0px;
    margin: 10px 0 10px;
    width: 50px;
    height: 4px;
    background: #005faa;
}

.searchModule01 .searchTitWrap {
    background: #3d9fd3;
    width: 100%;
    padding: 10px 15px;
    margin: 0 0 20px;
    border: 3px solid #3d9fd3;
    position: relative;
    -webkit-transition: 0.1s ease-in-out;
    -moz-transition: 0.1s ease-in-out;
    -o-transition: 0.1s ease-in-out;
    transition: 0.1s ease-in-out;
}

.searchModule01 .searchTitWrap:before {
    content: "";
    position: absolute;
    bottom: -24px;
    left: 50%;
    margin-left: -15px;
    border: 12px solid transparent;
    border-top: 12px solid #3d9fd3;
    z-index: 2;
}

.searchModule01 .searchTitWrap:after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 50%;
    margin-left: -17px;
    border: 14px solid transparent;
    border-top: 14px solid #3d9fd3;
    z-index: 1;
}

.searchModule01 .searchTit {
    font-size: 16px;
    font-weight: bold;
    border-bottom: solid 3px #fff;
    color: #fff;
}

.searchModule01 .searchTxt {
    background: #f5f5f5;
    padding: 20px;
    font-size: 13px;
}

.searchModule01 .searchBox a {
    overflow: hidden;
    -webkit-transition: 0.1s ease-in-out;
    -moz-transition: 0.1s ease-in-out;
    -o-transition: 0.1s ease-in-out;
    transition: 0.1s ease-in-out;
}

.searchModule01 .searchBox a:hover .searchTitWrap {
    background: #fff;
}

.searchModule01 .searchBox a:hover .searchTitWrap:before {
    content: "";
    position: absolute;
    bottom: -24px;
    left: 50%;
    margin-left: -15px;
    border: 12px solid transparent;
    border-top: 12px solid #fff;
    z-index: 2;
}

.searchModule01 .searchBox a:hover .searchTit {
    border-bottom: solid 3px #3d9fd3;
    color: #3d9fd3;
}

@media screen and (max-width: 767px) {
    .searchModule01 .searchBox {
        width: 100%;
        margin: 0 0 30px;
    }

    .searchModule01 .navModule01 {
        margin: 0 auto;
    }
}

@media screen and (min-width: 768px),
print {
    .searchModule01 {
        width: 1100px;
        margin: 0 auto;
    }

    .searchModule01 .searchBox {
        width: 346px;
        margin: 0 0 40px;
    }

    .searchModule01 .searchBox:nth-of-type(3n - 1) {
        margin: 0 30px 40px;
    }

    .searchTitWrap {
        min-height: 100px;
        position: relative;
    }

    .searchTit {
        position: absolute;
        width: 90%;
        top: 50%;
        /* left: 50%; */
        transform: translate(0%, -50%);
    }
}

.noKiji {
    font-size: 13px;
    margin: 0 0 20px;
}

#thumbnail_slider .slide-item.slick-slide img {
    width: 296px;
    height: 110px;
}

/*-----------------------
notfound
-----------------------*/
.notfound {
    margin: 50px 0 50px 0;
}

/*-----------------------
testModule01
-----------------------*/
@media screen and (max-width: 767px) {
    .testModule01 .tit {
        font-family: 'Open Sans', sans-serif;
        font-weight: 700;
        font-size: 27px;
        /*
    position : absolute;
    width : 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    */
    }
}

@media screen and (min-width: 768px),
print {
    .testModule01 .tit {
        font-size: 20px;
    }
}


.color01 {
    color: #005faa;
}

.color02 {
    color: #E50113;
}

.ta_l {
    text-align: left !important;
    padding: 0 30px !important;
}

#honbun .imgType02 {
    overflow: hidden;
}

#honbun .imgType02 figure img {
    width: 100%;
    margin: 0;
}

.honbun .imgType02 figcaption {
    margin: 5px 0 0;
    font-size: 13px;
}

.honbun .tit01 {
    display: inline-block;
    background: #005faa;
    color: #fff;
    padding: 2px 10px;
    margin: 0 0 25px;
    font-weight: bold;
    position: relative;
}

@media screen and (max-width: 767px) {
    .honbun div {
        min-height: 30px;
        font-size: 13px;
        line-height: 1.8;
        margin: 0 0 20px;
    }

    .honbun .tit01 {
        font-size: 17px;
        padding: 5px 10px;
    }

    #honbun .imgType02 figure.left {
        float: left;
        margin: 0 0 20px;
    }
}

@media screen and (min-width: 768px),
print {
    #honbun .imgType02 figure {
        width: 48%;
    }

    #honbun .imgType02 figure.left {
        float: left;
    }

    #honbun .imgType02 figure.right {
        float: right;
    }

    .honbun .imgType02 {
        margin: 0 0 30px;
        overflow: hidden;
    }
}

@media screen and (min-width: 768px),
print {
    .fixed header .logo img {
        width: 170px;
    }
}

.newGeneralBlock .btnType01 {
    width: 100%;
}

@media screen and (max-width: 767px) {
    .newJobFair {
        margin-top: 30px;
    }
}

@media screen and (min-width: 768px),
print {
    .newGeneralBlock .btnType01 {
        width: 300px;
    }
}

.newCourseIntroModule {
    margin: -15px -15px 0;
    padding: 48px 15px 40px;

    background: url(https://www.tourism.ac.jp/asset/img/common/bg_dot07.png) #f5f5f5;
    background-size: 8px;
}

.newCourseIntroModuleHeading {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.75;
    letter-spacing: .15em;
    text-align: center;
}

.newCourseIntroModuleHeading span {
    color: #003d6b;
}

.newCourseIntroModuleText {
    margin-top: 50px;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.857142857;
    letter-spacing: .02em;
    text-align: center;
    z-index: 1;
    position: relative;
}

.newCourseIntroModuleText span {
    color: #003d6b;
}

.newCourseIntroModuleBlock01 {
    margin-top: -12px;
    padding: 45px 15px 45px;
    position: relative;
}

.newCourseIntroModuleBlock01:before {
    content: "";

    height: 100%;
    width: 100%;

    background-color: #fff;

    position: absolute;
    top: 0;
    left: 0;
}

.newCourseIntroModuleBlock01Inner {
    position: relative;
}

.newCourseIntroModuleBlock01Text {
    margin-top: 28px;
    font-size: 13px;
    line-height: 2;
    letter-spacing: .02em;
}

.newCourseIntroModuleBlock01Heading {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.818181818;
    letter-spacing: .1em;

    position: relative;
}

.newCourseIntroModuleBlock01Heading::after {
    content: "";
}

.newCourseIntroModuleBlock01Heading span {
    display: inline-block;

    padding: 0 4px 0 calc(.1em + 4px);

    background-color: #000;
    color: #fff;

    line-height: 29px;
}

.newCourseIntroModuleBlock01Arrow {
    display: block;
    margin-top: 4px;
}

@media screen and (max-width: 767px) {
    .newCourseIntroModuleBlock01Figure {
        margin-top: 22px;
    }

    .newCourseIntroModuleBlock01Arrow {
        max-width: 316px;
    }
}

@media screen and (min-width: 768px) {
    .newCourseIntroModule {
        padding: 65px 0 60px;
        position: relative;
    }

    .newCourseIntroModule::before {
        content: "";

        margin: 0 auto;

        height: 87px;
        width: 216px;

        background: url(/asset/img/new/course/img_airplane.png) no-repeat center;
        background-size: contain;

        transform: translateX(401px);

        position: absolute;
        top: -26px;
        left: 0;
        right: 0;
    }

    .newCourseIntroModuleHeading {
        font-size: 28px;
    }

    .newCourseIntroModuleText {
        margin-top: 65px;
        font-size: 16px;
        line-height: 2;
    }

    .newCourseIntroModuleBlock01 {
        margin: -12px auto 0;
        padding: 96px 0 80px;
        width: 960px;
    }

    .newCourseIntroModuleBlock01::before {
        margin: 0 auto;
        width: 780px;
        right: 0;
    }

    .newCourseIntroModuleBlock01Inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .newCourseIntroModuleBlock01Figure {
        margin-left: 90px;
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 430px;
    }

    .newCourseIntroModuleBlock01Heading {
        font-size: 26px;
        line-height: 1.846153846;
    }

    .newCourseIntroModuleBlock01Heading span {
        line-height: 34px;
    }

    .newCourseIntroModuleBlock01Heading::before,
    .newCourseIntroModuleBlock01Heading::after {
        height: 5px;
    }

    .newCourseIntroModuleBlock01Figure img {
        width: 100%;
    }

    .newCourseIntroModuleBlock01Arrow {
        margin-top: 14px;
        height: 23px;
        width: auto;
    }

    .newCourseIntroModuleBlock01Text {
        margin-top: 54px;
    }
}

.newCourseStudioModule {
    margin: 126px -15px 0;
    padding: 43px 15px 40px;

    background-color: #e60012;
    color: #fff;

    position: relative;
}

.newCourseStudioModuleHeading01 {
    font-family: "Josefin Sans", sans-serif;
    font-size: 30px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: .05em;
    color: #000;

    position: absolute;
    top: -85px;
    left: 15px;
}

.newCourseStudioModuleHeading01 span {
    display: inline-block;
    margin-top: 10px;
    font-size: 65px;
    letter-spacing: .05em;
}

.newCourseStudioModuleHeading02 {
    text-align: center;
}

.newCourseStudioModuleHeading02 span {
    padding-bottom: 10px;

    font-size: 22px;
    font-weight: bold;
    letter-spacing: .1em;

    border-bottom: solid 2px #fff;
}

.newCourseStudioModuleText {
    margin-top: 40px;
    font-size: 13px;
    line-height: 1.846153846;
    letter-spacing: .02em;
}

.newCourseStudioModuleBlocks01 {
    margin-top: 35px;

    counter-reset: newCourseStudioModule01;
}

.newCourseStudioModuleBlock01 {
    background-color: #fff;
    color: #000;
}

.newCourseStudioModuleBlock01Header {
    padding: 30px 0;
    background-color: #000;
    color: #fff;
    text-align: center;
}

.newCourseStudioModuleBlock01 ol li {
    font-size: 14px;
    font-weight: bold;

    line-height: 1;

    counter-increment: newCourseStudioModule01;
}

.newCourseStudioModuleBlock01 ol li::before {
    content: "0"counter(newCourseStudioModule01);

    display: inline-block;

    width: 36px;

    font-family: "Josefin Sans", sans-serif;
    font-weight: bold;
    font-size: 20px;
    letter-spacing: .02em;

    vertical-align: middle;
}

.newCourseStudioModuleBlock01 ol li+li {
    margin-top: 18px;
}

.newCourseStudioModuleBlock01Dept {
    display: inline-block;
    padding: 0 11px;
    font-size: 14px;
    font-weight: bold;
    line-height: 30px;
    letter-spacing: .1em;
    vertical-align: top;
}

.newCourseStudioModuleBlock01Dept.isRed {
    background-color: #e60012;
}

.newCourseStudioModuleBlock01Dept.isBlue {
    background-color: #005faa;
}

.newCourseStudioModuleBlock01HeaderText02 {
    margin-top: 12px;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.875;
    letter-spacing: .1em;
}

.newCourseStudioModuleBlock01Content {
    padding: 24px 15px;
}

@media screen and (max-width: 375px) {
    .newCourseStudioModuleBlock01HeaderText02 {
        font-size: 4.266666667vw;
    }
}

@media screen and (max-width: 767px) {
    .newCourseStudioModuleBlock01+.newCourseStudioModuleBlock01 {
        margin-top: 25px;
    }
}

@media screen and (min-width: 768px) {
    .newCourseStudioModule {
        margin-top: 140px;
    }

    .newCourseStudioModuleHeading01 {
        width: 100%;
        font-size: 30px;
        text-align: center;
        top: -72px;
    }

    .newCourseStudioModuleHeading01 span {
        margin: 0 0 0 18px;
        font-size: 96px;
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }

    .newCourseStudioModule {
        padding: 90px 0 80px;
    }

    .newCourseStudioModuleText {
        margin-top: 46px;
        line-height: 2;
        text-align: center;
    }

    .newCourseStudioModuleBlocks01 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin: 52px auto 0;
        width: 1100px;
    }

    .newCourseStudioModuleBlock01 {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
        flex: 1 1 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        height: 292px;
    }

    .newCourseStudioModuleBlock01+.newCourseStudioModuleBlock01 {
        margin-left: 32px;
    }

    .newCourseStudioModuleBlock01Header,
    .newCourseStudioModuleBlock01Content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 30px;
    }

    .newCourseStudioModuleBlock01Header {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 230px;
        text-align: left;
    }
}

.newCourseCurriculumModuleHeading01 {
    margin-top: 62px;
    font-family: "Josefin Sans", sans-serif;
    font-size: 40px;
    font-weight: bold;
    line-height: 1.25;
    letter-spacing: .05em;
    color: #e60012;
}

.newCourseCurriculumModuleHeading02 {
    margin-top: 10px;
}

.newCourseCurriculumModuleHeading02 span {
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.555555556;
    letter-spacing: .15em;
    border-bottom: solid 4px #000;
}

.newCourseCurriculumModuleBlocks01 {
    margin-top: 35px;
}

.newCourseCurriculumModuleBlock01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.newCourseCurriculumModuleBlock01Title {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;

    padding: 25px 0 11px;

    width: 40px;

    font-size: 13px;
    font-weight: bold;

    line-height: 1.1em;

    color: #fff;

    text-align: center;

    position: relative;
}

.newCourseCurriculumModuleBlock01Title::after {
    content: "";

    height: 0;
    width: 0;

    border-style: solid;
    border-width: 15px 20px 0 20px;
    border-color: transparent;

    position: absolute;
    top: 100%;
    left: 0;
}

.newCourseCurriculumModuleBlock01Title.style01 {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.newCourseCurriculumModuleBlock01Title.style01::before {
    content: "";
    position: absolute;
}

.newCourseCurriculumModuleBlock01Title.style01 span {
    background-color: #000;
    z-index: 1;
    position: relative;
}

.newCourseCurriculumModuleBlock01Contents {
    width: 100%;
}

.newCourseCurriculumModuleBlock01Content {
    padding: 0 15px 25px;
    background-color: #f5f5f5;
    overflow: hidden;
}

.newCourseCurriculumModuleCircles {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 20px;
    width: 100%;
}

.newCourseCurriculumModuleCircle {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

    height: 100px;
    width: 100px;

    font-size: 15px;
    font-weight: bold;

    line-height: 1.466666667;
    letter-spacing: .02em;

    text-align: center;

    border-radius: 100%;

    background-color: #fff;
}

.newCourseCurriculumModuleCircle.isSmall {
    height: 81px;
    width: 81px;

    font-size: 12px;
}

.newCourseCurriculumModuleCircle+.newCourseCurriculumModuleCircle {
    margin-left: 12px;
}

.newCourseCurriculumModuleBlock01Text {
    width: 100%;
    font-size: 13px;
    line-height: 1.846153846;
    letter-spacing: .02em;
}

.newCourseCurriculumModuleBlock01Text strong {
    font-weight: bold;
    color: #e60012;
}

.newCourseCurriculumModuleBlock01Heading {
    margin: 16px 0;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: .1em;
}

.newCourseCurriculumModuleBlock01List01 {
    counter-reset: newCourseCurriculumModuleBlock01List01;
}

.newCourseCurriculumModuleBlock01List01,
.newCourseCurriculumModuleBlock01List02 {
    width: 100%;
}

.newCourseCurriculumModuleBlock01List01 li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    font-size: 13px;
    line-height: 1.692307692;
    letter-spacing: .02em;

    counter-increment: newCourseCurriculumModuleBlock01List01;
}

.newCourseCurriculumModuleBlock01List01 li::before {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;

    display: inline-block;

    content: "0"counter(newCourseCurriculumModuleBlock01List01);
    width: 31px;

    font-family: "Josefin Sans", sans-serif;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: .02em;
}

.newCourseCurriculumModuleBlock01List01 li+li {
    margin-top: 6px;
}

.newCourseCurriculumModuleBlock01List02 {
    margin-top: 15px;
}

.newCourseCurriculumModuleBlock01List02 li,
.newCourseCurriculumModuleBlock01List02 li a {
    font-size: 15px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: .02em;
}

.newCourseCurriculumModuleBlock01List02 li a {
    padding-left: 20px;
    position: relative;
}

.newCourseCurriculumModuleBlock01List02 li a::before {
    content: "";

    margin: auto;

    height: 15px;
    width: 8px;

    background: url(/asset/img/new/common/arrow01.png) no-repeat center;
    background-size: contain;

    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
}

.newCourseCurriculumModuleBlock01List02 li+li {
    margin-top: 16px;
}

.newCourseCurriculumModuleBlock01Label {
    display: inline-block;
    padding: 0 10px;
    font-size: 14px;
    font-weight: bold;
    line-height: 20px;
    letter-spacing: .1em;
    color: #fff;
    vertical-align: top;
}

.newCourseCurriculumModuleBlock01Label.isRed {
    background-color: #e60012;
}

.newCourseCurriculumModuleBlock01Label.isBlue {
    background-color: #005faa;
}

.newCourseCurriculumModuleBlock01:nth-of-type(odd) .newCourseCurriculumModuleBlock01Title {
    background-color: #000;
}

.newCourseCurriculumModuleBlock01:nth-of-type(even) .newCourseCurriculumModuleBlock01Title {
    background-color: #e60012;
}

@media screen and (max-width: 767px) {
    .newCourseCurriculumModuleBlock01+.newCourseCurriculumModuleBlock01 {
        margin-top: 25px;
    }

    .newCourseCurriculumModuleBlock01Title.style01 {
        padding: 0;
    }

    .newCourseCurriculumModuleBlock01Title.style01 span:nth-of-type(1) {
        padding: 25px 0 15px;
    }

    .newCourseCurriculumModuleBlock01Title.style01 span:nth-of-type(2) {
        padding: 15px 0 11px;
    }

    .newCourseCurriculumModuleBlock01Title span {
        display: block;
        width: 100%;
    }

    .newCourseCurriculumModuleBlock01:nth-of-type(odd) .newCourseCurriculumModuleBlock01Title::after {
        border-top-color: #000;
    }

    .newCourseCurriculumModuleBlock01:nth-of-type(even) .newCourseCurriculumModuleBlock01Title::after {
        border-top-color: #e60012;
    }

    .newCourseCurriculumModuleBlock01Title.style01::before {
        margin: 0 auto;

        height: 100%;
        width: 2px;

        background: url(/asset/img/new/common/border04.png) repeat-y left top;
        background-size: 2px 4px;

        top: 0;
        right: 0;
        left: 0;
    }
}

@media screen and (max-width: 375px) {
    .newCourseCurriculumModuleBlock01Title {
        /*width: 10.666666667vw;*/
    }

    .newCourseCurriculumModuleCircle.isSmall {
        height: 21.6vw;
        width: 21.6vw;

        font-size: 3.2vw;
    }

    .newCourseCurriculumModuleCircle+.newCourseCurriculumModuleCircle {
        margin-left: 3.2vw;
    }

    .newCourseCurriculumModuleBlock01List02 li,
    .newCourseCurriculumModuleBlock01List02 li a {
        font-size: 4vw;
    }
}

@media screen and (min-width: 768px) {
    .newCourseCurriculumModuleBlocks01 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin: 52px auto 0;
        width: 1100px;
    }

    .newCourseCurriculumModuleBlock01 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .newCourseCurriculumModuleBlock01Title {
        margin-bottom: 15px;
        width: 100%;
    }

    .newCourseCurriculumModuleBlock01Title::after {
        background-color: #fff;
        top: 0;
        left: auto;
        right: 0;
    }

    .newCourseCurriculumModuleBlock01Title.style01 {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .newCourseCurriculumModuleBlock01 {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
    }

    .newCourseCurriculumModuleBlock01+.newCourseCurriculumModuleBlock01 {
        margin-left: 30px;
    }

    .newCourseCurriculumModuleBlock01.style01 {
        width: 290px;
    }

    .newCourseCurriculumModuleBlock01.style02 {
        width: 330px;
    }

    .newCourseCurriculumModuleBlock01.style03 {
        width: 420px;
    }

    .newCourseCurriculumModuleBlock01Title {
        padding: 0;
        font-size: 14px;
        line-height: 40px;
        letter-spacing: .1em;
    }

    .newCourseCurriculumModuleBlock01Title::after {
        /*border-style: solid;*/
        border-width: 20px 0 20px 15px;
        /*border-color: transparent transparent transparent #007bff;*/
    }

    .newCourseCurriculumModuleBlock01:nth-of-type(odd) .newCourseCurriculumModuleBlock01Title::after {
        border-left-color: #000;
    }

    .newCourseCurriculumModuleBlock01:nth-of-type(even) .newCourseCurriculumModuleBlock01Title::after {
        border-left-color: #e60012;
    }

    .newCourseCurriculumModuleBlock01Title.style01 {
        padding-right: 15px;
        /*padding: 0 30px 0 20px;*/
    }

    .newCourseCurriculumModuleBlock01Title.style01 span:nth-of-type(1) {
        padding: 0 12px 0 20px;
    }

    .newCourseCurriculumModuleBlock01Title.style01 span:nth-of-type(2) {
        margin-left: auto;
        padding: 0 15px 0 13px;
    }

    .newCourseCurriculumModuleBlock01Content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding: 0 30px 32px;
    }

    .newCourseCurriculumModuleBlock01Content+.newCourseCurriculumModuleBlock01Content {
        margin-top: 4px;
    }

    .newCourseCurriculumModuleCircle.isSmall {
        height: 100px;
        width: 100px;

        font-size: 15px;
    }

    .newCourseCurriculumModuleIntroText {
        font-size: 13px;
        line-height: 2;
        letter-spacing: .02em;
        text-align: center;
    }

    .newCourseCurriculumModuleBlock01Heading {
        margin: 21px 0 16px;
    }

    .newCourseCurriculumModuleBlock01Label {
        margin: 30px 0 5px;
        padding: 0;
        width: 110px;
        line-height: 30px;
        text-align: center;
    }

    .newCourseCurriculumModuleBlock01List02 a {
        padding-left: 25px;
    }

    .newCourseCurriculumModuleBlock01>.newCourseCurriculumModuleBlock01Content {
        height: 100%;
    }

    .newCourseCurriculumModuleHeadingWrap {
        margin: 0 auto;
        width: 1100px;
        position: relative;
    }

    .newCourseCurriculumModuleHeading01 {
        margin: 0;
        font-size: 50px;
        line-height: 1.48;
        letter-spacing: .05em;
        position: absolute;
        top: 108px;
        left: 161px;
    }

    .newCourseCurriculumModuleHeading02 {
        margin: 0;
        position: absolute;
        top: 196px;
        left: 552px;
    }

    .newCourseCurriculumModule {
        overflow: hidden;
    }

    .newCourseCurriculumModuleIntroText {
        margin-top: 290px;
    }

    .newCourseCurriculumModuleHeading02 span {
        padding-bottom: 3px;
        font-size: 20px;
    }

    .newCourseCurriculumModuleBlock01Title.style01::before {
        margin: auto 0;

        height: 2px;
        width: 100%;

        background: url(/asset/img/new/common/border03.png) repeat-x left top;
        background-size: 4px 2px;

        top: 0;
        left: 0;
        bottom: 0;
    }
}

.newCourseFlowModule {
    margin-top: 30px;
}

.newCourseFlowModuleHeading span {
    padding-bottom: 5px;

    font-size: 18px;
    font-weight: bold;

    letter-spacing: .15em;

    border-bottom: solid 4px #000;
}

.newCourseFlowModuleFigure {
    margin-top: 20px;
}

@media screen and (max-width: 767px) {
    .newCourseFlowModuleFigure {
        padding: 15px 13px 53px;
        border: solid 2px #b7bfc5;
        position: relative;
    }

    .newCourseFlowModuleFigure .btnType01 {
        width: auto;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        position: absolute;
        top: 100%;
        left: 30px;
        right: 30px;
    }

    .newCourseFlowModuleFigure .btnType01::after {
        content: "";
        background: url(/asset/img/common/ico_plus01.png) no-repeat #0060A9;
        background-size: 100% !important;
        width: 48px;
        height: 48px;
        left: 0;
        top: -2px;
    }
}

@media screen and (min-width: 768px) {
    .newCourseFlowModule {
        margin: 0 auto;
        width: 1100px;
    }

    .newCourseFlowModuleFigure img {
        width: 100%;
    }

    .newCourseFlowModuleHeading {
        margin-top: 40px;
    }

    .newCourseFlowModuleHeading span {
        padding-bottom: 8px;
        font-size: 20px;
    }

    .newCourseFlowModuleFigure {
        margin-top: 36px;
    }
}

.linkModule03 {
    margin: 0 -15px;
    padding: 66px 15px 50px;

    background: url(https://www.tourism.ac.jp/asset/img/common/bg_dot07.png) #f5f5f5;
    background-size: 8px;

    position: relative;
}

.linkModule03Item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /*height: 140px;*/
    background-color: #fff;
    position: relative;
}

.linkModule03Item::after {
    content: "";

    height: 30px;
    width: 30px;

    background: url(../img/new/common/ico_link-module03-arrow.png) no-repeat center;
    background-size: contain;

    position: absolute;
    top: 0;
    right: 0;
}

.linkModule03Figure {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 110px;
}

.linkModule03Content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 15px;
}

.linkModule03 .linkModule03Number,
.linkModule03 p.linkModule03Number {
    padding-left: 2px;
    font-family: "Josefin Sans", sans-serif;
    font-size: 24px !important;
    font-weight: bold;
    line-height: 1 !important;
    letter-spacing: .02em;
    border-bottom: solid 3px #000;
    position: relative;
}

.linkModule03 .linkModule03Title,
.linkModule03 p.linkModule03Title {
    margin-top: 17px;
    font-size: 17px !important;
    font-weight: bold;
    line-height: 1.6;
    letter-spacing: .05em;
}

.linkModule03Title.isSmall,
p.linkModule03Title.isSmall {
    font-size: 15px !important;
}

.linkModule03Section {
    position: relative;
}

.linkModule03Course {
    margin-top: 101px;
    margin-bottom: 44px;
}

.linkModule03Course .linkModule03Inner {
    padding-left: 45px;
}

.linkModule03Heading {
    width: 100%;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: .15em;
    text-align: center;
    position: absolute;
    top: -21px;
    left: 0;
}

.linkModule03Heading::after {
    content: "";

    margin: 0 auto;

    height: 4px;
    width: 50px;

    background-color: #005faa;

    position: absolute;
    right: 0;
    bottom: -20px;
    left: 0;
}

.linkModule03CourseAddon {
    height: 100%;

    position: absolute;
    top: 0;
}

.linkModule03CourseAddonText {
    display: inline-block;
    color: #fff;

    font-size: 14px;
    font-weight: bold;
}

.linkModule03CourseAddonText.isRed {
    background-color: #e60012;
}

.linkModule03CourseAddonText.isBlue {
    background-color: #005faa;
}

.linkModule03CourseAddon::before,
.linkModule03CourseAddon::after {
    content: "";

    height: 2px;
    width: 16px;

    background: url(/asset/img/new/common/border01.png) repeat-x left top;
    background-size: 4px 2px;

    position: absolute;
    left: 16px;
}

.linkModule03CourseAddon::before {
    top: 0;
}

.linkModule03CourseAddon::after {
    bottom: 0;
}

.linkModule03CourseAddonBorder {
    height: 100%;
    width: 2px;

    background: url(/asset/img/new/common/border02.png) repeat-y left top;
    background-size: 2px 4px;

    position: absolute;
    top: 0;
    left: 13px;
}

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

    .linkModule03Section+.linkModule03Section,
    .linkModule03Item+.linkModule03Item {
        margin-top: 20px;
    }

    .linkModule03CourseAddon {
        width: 45px;
        left: -45px;
    }

    .linkModule03CourseAddonText {
        padding: 10px 0;

        line-height: 30px;
        letter-spacing: .1em;

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

        position: absolute;
        top: 45px;
        left: 0;
    }
}

@media screen and (max-width: 375px) {
    .linkModule03Course .linkModule03Inner {
        padding-left: 12vw;
    }

    .linkModule03CourseAddon {
        width: 12vw;
        left: -12vw;
    }

    .linkModule03Title {
        font-size: 4.533333333vw;
    }

    .linkModule03Title.isSmall {
        font-size: 4vw;
    }

    .linkModule03Figure {
        width: 29.333333333vw;
    }
}

@media screen and (min-width: 768px) {
    .linkModule03Section {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .linkModule03 {
        padding: 104px 0 80px
    }

    .linkModule03Inner {
        position: relative;
    }

    .linkModule03.isWide .linkModule03Inner {
        margin: 0 auto;
        padding-left: 130px;
        width: 1100px;
    }

    .linkModule03.isDefault {
        margin: 0 auto;
        padding: 105px 50px 50px;
        width: 810px;
    }

    .linkModule03.isDefault .linkModule03Item {
        margin-right: 30px;
        width: 340px;
    }

    .linkModule03.isDefault .linkModule03Item:nth-of-type(2n) {
        margin-right: 0;
    }

    .linkModule03.isDefault .linkModule03Item:nth-of-type(n + 3) {
        margin-top: 30px;
    }

    .linkModule03.isWide .linkModule03Item {
        margin-right: 20px;
        width: 310px;
    }

    .linkModule03.isWide .linkModule03Item:nth-of-type(3n) {
        margin-right: 0;
    }

    .linkModule03.isWide .linkModule03Item:nth-of-type(n + 4) {
        margin-top: 20px;
    }

    .linkModule03.isWide .linkModule03Section+.linkModule03Section {
        margin-top: 10px;
    }

    .linkModule03Figure img {
        width: 100%;
    }

    .linkModule03CourseAddon {
        width: 130px;
        left: -130px;
    }

    .linkModule03CourseAddonText {
        margin: auto 0;

        height: 50px;
        width: 110px;

        line-height: 50px;
        letter-spacing: .05em;

        text-align: center;

        position: absolute;
        top: 0;
        bottom: 0;
    }

    .linkModule03Course {
        margin: 114px 0 70px;
        /*padding: 0;*/
    }

    .linkModule03Heading {
        font-size: 26px;
        top: -28px;
    }

    .linkModule03Heading::after {
        bottom: -28px;
    }

    .linkModule03CourseAddon::before,
    .linkModule03CourseAddon::after {
        width: 24px;
        left: 54px;
    }

    .linkModule03CourseAddonBorder {
        left: 54px;
    }

    .linkModule03CourseAddon {
        height: auto;
    }

    .linkModule03CourseAddon:nth-of-type(1) {
        top: 26px;
        bottom: 24px;
    }

    .linkModule03CourseAddon:nth-of-type(2) {
        top: 16px;
        bottom: 14px;
    }

    .linkModule03.isDefault .linkModule03Number,
    .linkModule03.isDefault p.linkModule03Number {
        font-size: 24px;
    }

    .linkModule03.isDefault .linkModule03Title,
    .linkModule03.isDefault p.linkModule03Title {
        font-size: 16px;
        line-height: 1.5;
    }
}

.titModule02.zIndexFix {
    z-index: 1;
}

body {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}

@media screen and (min-width: 768px),
print {
    header #gNav .nav02_02 {
        width: 192px;
    }

    header #gNav .nav02_02 figure img,
    header #gNav .nav02_04 figure img {
        width: 100%;
    }

    header #gNav .nav02_02 li:nth-child(1),
    header #gNav .nav02_02 li:nth-child(1) a {
        width: 100%;
    }

    header #gNav .nav02_04 {
        margin-left: 10px;
        width: 194px;
        float: left;
    }

    header #gNav .nav02_04 li,
    header #gNav .nav02_04 a {
        display: block;
        position: relative;
    }
}

@media screen and (min-width: 768px),
print {
    header #gNav .nav02_02 li.min02 {
        margin-top: 4px;
        height: 70px;
        width: 100%;
    }

    header #gNav .nav02_02 li.min02.isRed {
        background-color: #e60012;
    }

    header #gNav .nav02_02 li.min02.isBlue {
        background-color: #005faa;
    }

    header #gNav .nav02_02 li.min02 a {
        color: #fff;
    }

    header #gNav .nav02_02 li.min02 ul li,
    header #gNav .nav02_02 li.min02 ul li a {
        font-size: 12px;
        font-weight: bold;
        line-height: 1;
        letter-spacing: .05em;
    }

    header #gNav .nav02_02 li.min02 ul {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
        padding: 0 0 0 21px;
    }

    header #gNav .nav02_02 li.min02 ul li {
        padding-left: 21px;
        width: 100%;
        position: relative;
    }

    header #gNav .nav02_02 li.min02 ul li::before {
        content: "";
        margin: auto;
        height: 2px;
        width: 10px;
        background-color: #fff;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
    }

    header #gNav .nav02_02 li.min02 ul li+li {
        margin-top: 10px;
    }
}

.studioIntroModule {
    margin: 0 30px 0 25px;
}

.studioIntroModuleText {
    padding-left: 20px;

    font-size: 13px;
    line-height: 1.846153846;
    letter-spacing: .05em;

    position: relative;
}

.studioIntroModuleText::before {
    content: "";

    height: 15px;
    width: 15px;

    background: url(../img/studio/ico_box02.png) no-repeat center;
    background-size: contain;

    position: absolute;
    top: 4.5px;
    left: 0;
}

.studioIntroModuleText.withM::before {
    background-image: url(../img/studio/ico_box01.png);
}

.studioIntroModuleText+.studioIntroModuleText {
    margin-top: 8px;
}

.studioBlockModule {
    margin-top: 18px;
}

.studioBlockModule+.studioBlockModule {
    margin-top: 30px;
}

.studioBlockModuleInner {
    padding: 27px 15px 0;
    position: relative;
}

.studioBlockModuleDl {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    margin: 53px 5px 0;
    z-index: 1;
    position: relative;
}

.studioBlockModuleDl>dt {
    display: inline-block;
    padding: 0 7px;
    font-size: 15px;
    font-weight: bold;
    line-height: 25px;
    letter-spacing: .01em;
    background-color: #e60012;
    color: #fff;
}

.studioBlockModuleDl>dd {
    width: 100%;
}

.studioBlockModuleDl>dd.type01 {
    margin-top: 7px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: .05em;
}

.studioBlockModuleDl>dd+dt {
    margin-top: 11px;
}

.studioBlockModuleDl>dd.type02 {
    margin-top: 9px;
    font-size: 13px;
    line-height: 1.846153846;
    letter-spacing: .02em;
}

.studioBlockModuleDl>dd.type02 small {
    display: block;
    margin-top: 14px;
    font-size: 11px;
    letter-spacing: .05em;
}

.studioBlockModuleDl>dd.type03 {
    margin-top: 8px;
}

.studioTeachersModule {
    margin-top: 38px;
    padding-bottom: 48px;
    background: url(https://www.tourism.ac.jp/asset/img/common/bg_dot07.png) #f5f5f5;
    background-size: 8px;
    z-index: 1;
    position: relative;
}

.studioTeachersModuleHeading {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 65px;

    font-size: 15px;
    font-weight: bold;
    letter-spacing: .05em;
}

.studioTeachersModuleHeading::before {
    content: "";

    margin-right: 4px;

    height: 15px;
    width: 15px;

    background: url(../img/studio/ico_box01.png) no-repeat center;
    background-size: contain;
}

.studioTeachersModuleList {
    margin: 11px 15px 0;
}

.studioTeachersModuleName {
    display: flex;
    align-items: baseline;
}

.studioTeachersModuleName::before {
    content: "";

    margin-right: 8px;

    height: 15px;
    width: 15px;

    background: url(../img/studio/ico_box02.png) no-repeat center;
    background-size: contain;

    align-self: center;
}

.studioTeachersModuleDescription {
    margin: 1px 0 0 23px;
    font-size: 13px;
    line-height: 1.230769231;
    letter-spacing: .05em;
}

.studioTeachersModuleName.withM::before {
    background-image: url(../img/studio/ico_box01.png);
}

.studioTeachersModuleName span {
    font-weight: bold;
    letter-spacing: .05em;
}

.studioTeachersModuleName span+span {
    margin-left: 2px;
}

.studioTeachersModuleName .style01 {
    font-size: 15px;
}

.studioTeachersModuleName .style02 {
    font-size: 13px;
}

.studioBlockModuleHeader {
    margin: 0 21px 0 24px;
    z-index: 1;
    position: relative;
}

.studioBlockModuleHeaderInner {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 30px 0 28px 36px;
    width: 100%;
    background-color: #000;
    color: #fff;
    position: relative;
}

.studioBlockModuleHeaderLabel {
    padding: 0 2px;
    font-size: 15px;
    font-weight: bold;
    line-height: 25px;
    letter-spacing: .1em;
    background-color: #e60012;
}

.studioBlockModuleHeaderLabel.isBlue {
    background-color: #005faa;
}

.studioBlockModuleHeaderTitle {
    margin-top: 17px;
    padding-bottom: 6px;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: .1em;
    border-bottom: solid 2px #fff;
}

.studioBlockModuleHeaderDescription {
    margin-top: 14px;
    font-size: 13px;
    font-weight: bold;
    line-height: 1.846153846;
    letter-spacing: .1em;
}

.studioBlockModuleHeaderNumber {
    width: 53px;

    font-family: "Josefin Sans", sans-serif;
    font-size: 40px;
    font-weight: 600;

    line-height: 1;
    letter-spacing: .02em;

    position: absolute;
    top: 14px;
    right: 0;
}

.studioBlockModuleHeaderNumber::after {
    content: "";
    height: 2px;
    width: 100%;
    background-color: #fff;
    position: absolute;
    bottom: 4px;
    left: 0;
}

.studioTeachersModuleItem {
    padding-bottom: 8px;
    border-bottom: dotted 1px #000;
}

.studioBlockModuleDl02>dt {
    display: block;
    padding-bottom: 2px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: .02em;
    border-bottom: solid 2px #000;
}

.studioBlockModuleDl02>dd {
    margin-top: 4px;
    font-size: 13px;
    line-height: 1.846153846;
    letter-spacing: .02em;
}

.studioBlockModuleDl02>dd+dt {
    margin-top: 5px;
}

.studioBlockModuleDl03>dt {
    font-size: 13px;
    font-weight: bold;
    letter-spacing: .02em;
    color: #e60012;
}

.studioBlockModuleDl03>dd {
    margin-left: 1em;
    font-size: 13px;
    line-height: 1.846153846;
    letter-spacing: .02em;
}

.studioTeachersModuleText01 {
    margin: 10px 0 0 15px;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: .05em;
}

.studioTeachersModuleText01+.studioTeachersModuleList {
    margin-top: 0;
}

.messageFromTeacherModule {
    margin-top: 10px;
}

.messageFromTeacherModuleText01 {
    font-size: 13px;
    font-weight: bold;
    line-height: 1.615384615;
    letter-spacing: .05em;
}

.messageFromTeacherModuleText02 {
    display: inline-block;
    padding: 0 6px;
    font-size: 13px;
    font-weight: bold;
    line-height: 18px;
    letter-spacing: .05em;
    border: solid 2px #000;
    background-color: #fff;
}

.messageFromTeacherModuleText03 {
    font-size: 13px;
    line-height: 1.615384615;
    letter-spacing: .05em;
}

@media screen and (max-width: 767px) {
    .mainimgModule01.studio {
        margin: 10px -15px 0;
    }

    .contModule04.studio {
        margin: 0 -15px;
    }

    .studioTeachersModuleItem+.studioTeachersModuleItem {
        margin-top: 8px;
    }

    .studioBlockModuleHeader::before {
        content: "";

        width: 150px;

        background-color: #e60012;

        position: absolute;
        top: -27px;
        bottom: -28px;
        left: -39px;
    }

    .studioBlockModuleHeaderInner {
        background-color: #000;
        z-index: 1;
    }

    .messageFromTeacherModuleText02 {
        margin-top: 12px;
    }

    .messageFromTeacherModuleText03 {
        margin-top: 4px;
    }
}

@media screen and (max-width: 375px) {
    .studioBlockModuleHeaderTitle {
        font-size: 5.333333333vw;
    }
}

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

    .studioBlockModuleFigure img,
    .studioTeachersModuleFigure img {
        width: 100%;
    }

    .studioBlockModuleInner {
        padding: 0;
    }

    .studioBlockModuleInner::before {
        content: "";
        width: 300px;
        background-color: #e60012;
        position: absolute;
        top: 0;
        left: 30px;
        bottom: 311px;
    }

    .studioBlockModuleHeader {
        margin: 0;
        padding: 0;

        width: 320px;

        position: absolute;
        top: -50px;
        left: 70px;
    }

    .studioBlockModuleHeaderLabel {
        padding: 0 9px;
        font-size: 14px;
        line-height: 30px;
    }

    .studioBlockModuleHeaderTitle {
        margin-top: 31px;
        padding-bottom: 10px;
        font-size: 22px;
        border-bottom-width: 3px;
    }

    .studioBlockModuleHeaderDescription {
        margin-top: 35px;
        font-size: 16px;
        line-height: 1.875;
    }

    .studioBlockModuleHeaderNumber {
        width: 64px;
        font-size: 44px;
        top: 27px;
    }

    .studioBlockModuleHeaderNumber::after {
        height: 3px;
        bottom: -7px;
    }

    .studioBlockModuleDl {
        margin: 0 0 0 430px;
        padding-top: 40px;
    }

    .studioBlockModuleDl>dt {
        padding: 0 calc(12px - .01em) 0 12px;
        font-size: 14px;
        line-height: 30px;
    }

    .studioBlockModuleDl>dd.type01 {
        margin-top: 9px;
        font-size: 18px;
    }

    .studioBlockModuleDl>dd+dt {
        margin-top: 17px;
    }

    .studioBlockModuleDl>dd.type02 {
        line-height: 2;
    }

    .studioBlockModuleDl>dd.type02 {
        margin-top: 14px;
    }

    .studioBlockModuleDl>dd.type02 small {
        margin-top: 4px;
    }

    .studioTeachersModule {
        margin: 25px 0 0 70px;
        padding: 40px;
    }

    .studioTeachersModuleHeader {
        display: flex;
        align-items: center;
    }

    .studioTeachersModuleFigure {
        flex: none;
        width: 440px;
    }

    .studioTeachersModuleHeading {
        justify-content: flex-start;
        width: 100%;
        font-size: 16px;
    }

    .studioTeachersModuleHeading::before {
        margin-right: 10px;
        height: 24px;
        width: 24px;
        background-image: url(/asset/img/studio/ico_box01_pc.png);
    }

    .studioTeachersModuleName::before {
        margin-right: 11px;
        height: 24px;
        width: 24px;
        background-image: url(/asset/img/studio/ico_box02_pc.png);
    }

    .studioTeachersModuleName.withM::before {
        background-image: url(/asset/img/studio/ico_box01_pc.png);
    }

    .studioTeachersModuleName .style01 {
        font-size: 16px;
    }

    .studioTeachersModuleDescription {
        font-size: 12px;
    }

    .studioTeachersModuleList {
        display: flex;
        flex-wrap: wrap;
        margin: 9px -30px 0 0;
    }

    .studioTeachersModuleItem {
        margin: 15px 30px 0 0;
        width: 315px;
    }

    .studioTeachersModuleItem.fullWidth {
        width: 660px;
    }

    .studioTeachersModuleName span+span {
        margin-left: 6px;
    }

    .studioTeachersModuleDescription {
        margin: 7px 0 0 35px;
    }

    .studioTeachersModuleItem {
        padding-bottom: 15px;
        border-bottom-width: 2px;
    }

    .studioBlockModuleDl>dd {
        width: 100%;
    }

    .studioBlockModuleDl02>dd {
        line-height: 2;
    }

    .studioBlockModuleDl03>dt+dd {
        margin-top: 3px;
    }

    .messageFromTeacherModuleTexts01 {
        display: flex;
        align-items: center;
    }

    .studioTeachersModuleText01 {
        margin-left: 0;
    }

    .messageFromTeacherModuleText02 {
        margin-right: 10px;
    }

    .messageFromTeacherModule {
        margin-left: 35px;
    }

    .studioTeachersModuleText01+.studioTeachersModuleList {
        margin-top: -6px;
    }

    .messageFromTeacherModuleText01 {
        font-size: 14px;
    }

    .messageFromTeacherModuleText02 {
        font-size: 13px;
        line-height: 20px;
    }

    .messageFromTeacherModuleText03 {
        font-size: 14px;
    }

    .messageFromTeacherModuleTexts01 {
        margin-top: 16px;
    }
}

.t1_3 {
    margin-bottom: 10px;
}

.studioBlockModuleHeaderText01 {
    margin-top: 12px;
    font-size: 12px;
    letter-spacing: .1em;
}

.studioBlockModuleHeaderText01+.studioBlockModuleHeaderDescription {
    margin-top: 10px;
}

.studioStudentCommentModule {
    margin-top: 25px;
}

.studioStudentCommentModuleFigure {
    text-align: center;
}

.studioStudentCommentModuleFigure img {
    max-width: 165px;
}

.studioStudentCommentModuleTitle {
    margin-top: 15px;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.714285714;
    letter-spacing: .05em;
    border-bottom: solid 2px #000;
}

.studioStudentCommentModuleName {
    margin-top: 8px;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: .05em;
}

.studioStudentCommentModuleName span {
    margin-left: 3px;
    font-size: 13px;
    letter-spacing: .05em;
}

.studioStudentCommentModuleText {
    margin-top: 1px;
    font-size: 13px;
    line-height: 1.846153846;
    letter-spacing: .02em;
}

@media screen and (min-width: 768px) {
    .studioBlockModuleHeaderText01 {
        margin-top: 4px;
        font-size: 14px;
    }

    .studioBlockModuleHeaderText01+.studioBlockModuleHeaderDescription {
        margin-top: 26px;
    }

    .studioStudentCommentModule {
        display: flex;
        margin: 25px 0 0 430px;
    }

    .studioStudentCommentModuleFigure {
        flex: none;
        margin-right: 15px;
        width: 110px;
    }

    .studioStudentCommentModuleFigure img {
        width: 100%;
    }

    .studioStudentCommentModuleContent {
        width: 100%;
    }

    .studioStudentCommentModuleTitle {
        margin: 0;
    }

    .studioStudentCommentModuleName {
        margin-top: 12px;
        padding-bottom: 4px;
        font-size: 16px;
        border-bottom-width: 3px;
    }

    .studioStudentCommentModuleName span {
        margin-left: 5px;
    }

    .studioStudentCommentModuleText {
        margin-top: 8px;
    }

    .mainimgModule01.studio img {
        width: 100%;
    }
}

.studioBlockModuleDl>dd.type01 sup {
    font-size: 11px;
}

.newCourseIntroModuleHeading {
    position: relative;
}

.newCourseIntroModuleHeading::after {
    content: "";

    margin: 0 auto;

    height: 4px;
    width: 50px;

    background-color: #005faa;

    position: absolute;
    right: 0;
    bottom: -28px;
    left: 0;
}

@media screen and (max-width: 375px) {
    .newCourseStudioModule {
        margin-top: 33.6vw;
    }

    .newCourseStudioModuleHeading01 {
        font-size: 8vw;
        top: -22.666666667vw;
        left: 4vw;
    }

    .newCourseStudioModuleHeading01 span {
        margin-top: 2.666666667vw;
        font-size: 17.333333333vw;
    }

    .newCourseCurriculumModuleHeading01 {
        margin-top: 16.533333333vw;
        font-size: 10.666666667vw;
    }
}

@media screen and (min-width: 768px) {
    .newCourseIntroModuleHeading::after {
        bottom: -32px;
    }
    .p-top-banner{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 10px;
    }
    .p-top-banner-btn.c-corona:after, .p-top-banner-btn.c-nyusi:after{
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translateY(-50%) rotate(-90deg);
    }
    .p-top-banner .p-top-banner-btn{
        width: 49%;
        margin: 0;
    }
    .p-top-banner .p-top-banner-btn:nth-of-type(n+2){
        margin-left: 10px;
    }
}

.linkModule03.withMarginTop {
    margin-top: 80px;
}

.instaModule .inner ul li a {
    display: block;
    position: relative;
}

.instaModule .inner ul li a:before {
    content: "";
    display: block;
    padding-top: 100%;
}

.instaModule .inner ul li a div {
    height: 100%;
    width: 100%;

    background: no-repeat center;
    background-size: cover;

    position: absolute;
    top: 0;
    left: 0;
}

.mv-bnr__item:nth-of-type(n+2){
    margin-top: 10px;
}
.mv-wrapper .slick-dots li,
.mv-wrapper .slick-dots li button,
.mv-wrapper .slick-dots li button:before{
    width: 8px;
    height: 8px;
    position: relative;
}
.mv-wrapper .slick-dots li button:before{
    color: #fff;
    line-height: 8px;
    border: #015FAA 2px solid;
    border-radius: 50%;
    width: 8px;
    height: 8px;
}
.mv-wrapper .slick-dots li.slick-active button:before{
    background: #015FAA;
    color: #015FAA;
    width: 8px;
    height: 8px;
}
.mv-slider__item a,
.mv-bnr__item a{
    display: block;
}
@media screen and (max-width: 767px){
    .mv-wrapper{
        background: #E8F8FD;
    }
    .mv-slider__item2{
        position: relative;
    }
    .mv-slider__item2::after{
        content: '';
        background-image: url(../img/top/mv-bg-img02-sp.png);
        display: inline-block;
        width: 45px;
        height: 23px;
        background-size: contain;
        background-repeat: no-repeat;
        position: absolute;
        left: 0px;
        bottom: 150px;
    }
    .mv-wrapper .mv-slider.slick-slider{
        padding: 30px 20px 0;
        margin-bottom: 23px;
    }
    .mv-wrapper .slick-dots{
        bottom: -40px;
        margin-top: 20px;
    }
    .mv-bnr{
        background: #E8F8FD;
        padding: 0 20px 20px;
    }
    .p-top-contents{
        margin-top: 480px;
    }

    .mv-wrapper .slick-dots{
        position: static;
    }
    .c-corona{
        line-height: 22px;
    }

}
@media screen and (min-width: 768px),print{
    .mainVisual .inner{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        height: 459px;
        background: #E8F8FD;
    }
    .mv-wrapper{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .mv-wrapper .mv-slider.slick-slider{
        margin-bottom: 0;
    }
    .mv-slider{
       width: 830px;
       height: 378px;
    }
    .mv-slider__item.slick-slide{
        width: 830px;
       height: 378px;
    }

    .mv-slider__item.slick-slide img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .mv-slider .slick-dots{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        position: absolute;
        top: 50%;
        left: -60px;
        transform: translateY(-50%);
        bottom: auto;
    }
    .mv-bnr{
        width: 38%;
        margin-left: 20px;
    }
    .mv-bnr__item{
        width: 352px;
    }

    .mv-bnr__item img{
        width: 100%;
    }
    .mv-wrapper .slick-dots li:nth-of-type(n+2){
        margin-top: 16px;
    }

}
