* {
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans Japanese', sans-serif;
    list-style: none;
}


p {
    font-size: 21px;
    line-height: 1.6;
    font-weight: 300;
    margin: 0;
}

/*------------------------------------
  Color
------------------------------------*/

body {
    color: #333;
}

/*------------------------------------
  Font
------------------------------------*/

body {
    /* win:游ゴシック優先、mac:ヒラギノ角ゴシック優先 */
    font-family: "Avenir", "Helvetica Neue", "Helvetica", "Arial", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic";
    /* 標準のフォントサイズを 1.6rem=16pxに設定 */
    font-size: 16px;
    letter-spacing: 0.05em;
}

@font-face {
    font-family: "Yu Gothic";
    src: local("Yu Gothic Medium");
    font-weight: 100;
}

@font-face {
    font-family: "Yu Gothic";
    src: local("Yu Gothic Medium");
    font-weight: 200;
}

@font-face {
    font-family: "Yu Gothic";
    src: local("Yu Gothic Medium");
    font-weight: 300;
}

@font-face {
    font-family: "Yu Gothic";
    src: local("Yu Gothic Medium");
    font-weight: 400;
}

@font-face {
    font-family: "Yu Gothic";
    src: local("Yu Gothic Bold");
    font-weight: bold;
}


/*------------------------------------
  Common
------------------------------------*/

*,
*:after,
*:before {
    box-sizing: border-box;
}

body {
    height: 100%;
    margin: 0;
}

a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:active {
    text-decoration: none;
}

a {
    cursor: pointer;
}

div,
p,
li,
ul,
section,
span {
    margin: 0;
    text-align: unset;
}


/*------------------------------------
  Text
------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
th,
td,
dt,
dd {
    line-height: 1.5;
    margin: 0;
    padding: 0;
    text-align: unset;
}

/*------------------------------------
  title
------------------------------------*/

.content-main .title-primary:first-of-tye {
    margin-bottom: 50px;
}

/*------------------------------------
  font size
------------------------------------*/

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

.clear {
    clear: both;
}

/*------------------------------------
  Layout:block
------------------------------------*/

.container-wrap {
    background-color: #fff;
}

.container {
    width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

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

@media (max-width: 767px) {}

/*------------------------------------
title
------------------------------------*/

.title-primary {
    font-size: 36px;
    text-align: center;
}

.title-primary .sub-title {
    font-size: 24px;
    display: block;
    margin-top: 0.5em;
}

.title-secondary {
    font-size: 24px;
}

.title-tertiary {
    font-size: 18px;
}


/*------------------------------------
banner:common;
------------------------------------*/

.banner-area {
    width: 780px;
    margin: 20px auto 40px;
}


/*------------------------------------
SNS:common;
------------------------------------*/

.button-sns-share {
    margin: 50px 0;
}

.sns-item {
    display: flex;
    justify-content: center;
}

.sns-item a {
    margin-right: 20px;
}

.sns-item a:last-of-type {
    margin-right: 0;
}


/*------------------------------------
Fix banner
------------------------------------*/

.fixed-banner {
    position: fixed;
    z-index: 999;
    bottom: 0;
    width: 100%;
    padding: 20px 15px;
    text-align: center;
    background-color: #f5f5f5;
    box-shadow: 0 2px 6px gray;
}

.fixed-banner .button-basicApplication-type01 {
    width: 600px;
    margin: 0 auto;
    padding: 0.7em 1em;
}


/*------------------------------------
To top
------------------------------------*/

.global-page-top-button .page-top {
    margin: 0;
    padding: 0;
    position: fixed;
    right: 16px;
    bottom: 90px;
    z-index: 100;
}

.global-page-top-button .page-top {
    display: block;
    background: #6283E0;
    width: 50px;
    height: 50px;
    cursor: pointer;
    border-radius: 50px;
    color: #fff;
    line-height: 50px;
    text-decoration: none;
    text-align: center;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}


/*------------------------------------
menu
------------------------------------*/

.ham-menu-btn {
    align-items: center;
    background: #6283e0;
    border-radius: 15px;
    cursor: pointer;
    display: block;
    height: 80px;
    justify-content: center;
    position: fixed;
    top: 5.5em;
    transition: transform 1s;
    right: 1em;
    width: 80px;
    z-index: 500;
}

.ham-btn-line {
    background-color: #fff;
    border-radius: 30px;
    height: 8px;
    left: 10px;
    position: absolute;
    transition: 1s;
    width: 60px;
}

.ham-menu-btn span:nth-child(1) {
    top: 16px;
}

.ham-menu-btn span:nth-child(2) {
    top: 36px;
}

.ham-menu-btn span:nth-child(3) {
    top: 56px;
}

.ham-menu-btn.ham-active span:nth-child(1) {
    top: 35px;
    transform: rotate(45deg);
}

.ham-menu-btn.ham-active span:nth-child(2) {
    opacity: 0;
}

.ham-menu-btn.ham-active span:nth-child(3) {
    top: 35px;
    transform: rotate(-45deg);
}

.nav-menu {
    background-color: #6283e0;
    position: fixed;
    padding: 80px 0 40px;
    transition: transform 1s;
    transform: translateX(100%);
    right: 0;
    width: 400px;
    z-index: 200;
}

.nav-menu.ham-active {
    transform: translateX(0);
    right: 0;
}

.nav-menu-item {
    background-color: #6283e0;
    font-size: 20px;
    font-weight: bold;
    margin: 15px auto;
    line-height: 1.8;
    text-align: center;
}

.nav-menu-item a:hover {
    background-color: #fff;
    cursor: pointer;
}

.nav-menu-link {
    border: solid;
    border-color: #fff;
    border-radius: 15px;
    color: #fff;
    display: inline-block;
    font-family: Arial,
        Helvetica,
        sans-serif;
    font-weight: bold;
    padding: 2px;
    text-align: center;
    width: 350px;
}

.nav-menu-link:hover {
    color: #6283e0;
}

.nav_menu .menu_apply {
    background-color: #fff;
}

.nav_menu .menu_apply:hover {
    opacity: .8;
}

.global-header {
    position: sticky;
}

.body-wrapper {
    margin: 0 auto;
    min-width: 1000px;
    width: 100%;
}

.mv-ctr {
    margin: auto;
    width: 1000px;
}

/*------------------------------------
breadcrumb
------------------------------------*/
#g_topicPath {
    background-color: #f5f5f5;
    margin-bottom: 0;
    padding: 5px;
    width: 100%;
}

.breadcrumbs-list {
    display: flex;
    font-size: 13px;
    line-height: 1;
    margin: auto;
    width: 1000px;
}

.breadcrumbs-item {
    padding-left: 0;
}

#g_topicPath .breadcrumbs-link {
    text-decoration: none;
}

.global-header {
    position: sticky;
}

.mv-ctr {
    margin: auto;
    width: 1000px;
}

.mv-img {
    vertical-align: bottom;
}

@media all and (device-width: 1024px) and (device-height: 1366px) and (orientation:portrait) {
    /*.body-wrapper {
        width: 100%;
        margin-left: 10vw;
    }

    #navigation {
        top: 8%;
    }*/
}

@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait) {

    /*.body-wrapper {
        width: 100%;
        margin-left: 0;
    }

    .ham_menu_btn {
        top: 6%;
        }
    */

    .nav-menu {
        display: block;
    }
}

@media (max-width: 930px) {
    .ham-menu-btn {
        top: 8.5em;
    }
}


@media (max-height: 800px) {
    .nav-menu {
        max-height: 90%;
        overflow-y: scroll;
    }
}

h3 {
    font-size: 35px;
}

h4 {
    font-size: 28px;
}

.yellow-under {
    background: linear-gradient(transparent 60%, #ff6 60%);
}

.event-block {
    border-left: 4px solid #015afe;
    width: 960px;
    margin: 10px auto;
    padding-left: 10px;
}

.event-row {
    display: flex;
    font-size: 20px;
}

.event-link:link {
    text-decoration: underline;

}

.event-link:hover {
    text-decoration: underline;
}

.event-link-1 {
    color: #062f8b;
}

.event-link-2 {
    color: #103199;
}

.apply-countdown-attention,
.apply-countdown-attention-special {
    font-size: 45px;
    font-weight: bold;
    color: #f93940;
    display: inline-block;
}

.apply-countdown-attention[data-visibility="true"] {
    animation: rotation 1s ease-in-out 2;
}

.apply-countdown-attention-special[data-visibility="true"] {
    opacity: 0;
    transform: translate(0, -100px) rotate(360deg) scale(0);
    animation: revolveDrop 1.5s forwards;
}


@keyframes revolveDrop {
    20% {
        transform: translate(0, -50px) rotate(180deg) scale(1);
    }

    40% {
        transform: translate(0, 20px) scale(.8) rotate(0deg);
    }

    80% {
        transform: translate(0) scale(1.5) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translate(0) scale(1.2) rotate(0deg);
        opacity: 1;
    }
}

@keyframes rotation {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

.feature-third-content {
    margin-top: 30px;
}

.section-ctr {
    margin: 0 auto;
    max-width: 1000px;
    width: 100%;
}

.section-ctr img {
    vertical-align: middle;
}

.about-ctr {
    color: #000;
    padding-top: 20px;
    text-align: center;
}

.topic-img {
    vertical-align: bottom;
}

.about-ttl {
    font-size: 36px;
    font-weight: bold;
    line-height: 1.15;
    margin: 0 auto;
}

.about-under-ttl {
    font-size: 30px;
    font-weight: bold;
    line-height: 1.5;
    margin: 0 0 .2em;
}

.about-txt {
    font-size: 20px;
    line-height: 2;
}

.three-courses {
    align-items: center;
    background: url(../img/sankouza_bg.jpg) center bottom/auto auto no-repeat;
    display: flex;
    flex-flow: column;
    padding: 66px 0 60px;
}

.three-courses-guidance {
    margin: 0 0 40px;
}

.three-courses-inner {
    align-items: center;
    display: flex;
    gap: 0 30px;
}

.three-courses-inner-block {
    margin-right: -14px;
    position: relative;
}

.three-courses-inner-btn {
    background-color: #ff8a00;
    border-radius: 20px;
    bottom: 24px;
    color: #ffffff;
    font-size: 19px;
    font-weight: bold;
    left: calc(50% - 7px);
    margin: 16px auto;
    padding: 5px;
    position: absolute;
    text-align: center;
    transform: translateX(-50%);
    width: 194px;
    z-index: 1;
}

.three-courses-inner-btn:hover {
    opacity: 0.7;
}

.feature-img-ctr {
    text-align: center;
    width: 1000px;
}

.feature-img-ctr-botton {
    position: relative;
}

.feature-img-ctr-link {
    bottom: 68px;
    display: block;
    height: 606px;
    margin: 0;
    position: absolute;
    width: 295px;
}

.feature-img-ctr-botton .ao {
    left: 22px;
}

.feature-img-ctr-botton .ronbun {
    left: 352px;
}

.feature-img-ctr-botton .toshin {
    right: 30px;
}


.feature-first-kouza-box._active .feature-toggleIcon._arrow {
    transform: rotate(180deg);
}

.feature-second-kouza-container._active .feature-toggleIcon._arrow {
    transform: rotate(180deg);
}

.feature-toggleIcon._arrow {
    position: absolute;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 0 0 16px;
    color: #000;
    vertical-align: middle;
    text-decoration: none;
    font-size: 15px;
    right: 10px;
    top: 0;
    bottom: 0;
    width: 32px;
    height: 32px;
    margin: auto;
    border-radius: 50%;
    background: #fff;
    transform: rotate(0deg);
    transition: .3s;
}

.feature-toggleIcon::after {
    position: absolute;
    top: 10px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
    box-sizing: border-box;
    width: 16px;
    height: 16px;
    border: 8px solid transparent;
    display: inline-block;
}

.kosyu1 .feature-toggleIcon::after {
    border-top: 11px solid #d12c6e;
}

.kosyu2 .feature-toggleIcon::after {
    border-top: 11px solid #2165ae;
}

.feature-btn-submit {
    position: relative;
    font-size: 24px;
    font-weight: bold;
    color: rgb(255, 255, 255);
    line-height: 1;
    letter-spacing: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 0;
    width: 300px;
    text-align: center;
    background: #d03f3f;
    box-shadow: 0px 0px 15px -5px #777777;
    transition: .3s;
    padding: 4px;
    border-radius: 5px;
}

.feature-btn-submit span {
    display: block;
    border: 2px solid #fff;
    width: 100%;
    padding: 13px 5px;
    border-radius: 5px;
    line-height: 1;
}


.feature-btn-submit:hover {
    bottom: -3px;
    box-shadow: none;
}