@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&display=swap');

/* ===========================
1.目次＆ブレークポイント
============================== */
/*
1.目次＆ブレークポイント
2.全体
3.ヘッダー
4.フッター
5.ヘッドライン
6.gototop
*/
@media screen and (min-width: 35.5em) {
    /* 568px sm */
}

@media screen and (min-width: 48em) {
    /* 768px md */
}

@media screen and (min-width: 64em) {
    /* 1024px lg */
}

@media screen and (min-width: 80em) {
    /* 1280px xl */
}

/* ===========================
2.全体
============================== */
*, *:before, *:after {
    box-sizing: border-box;
}

html {
    overflow-y: scroll; /* 縦スクロールバーを追加 */
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', "游ゴシック体", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    animation: fadeIn 1s ease 0s 1 normal; /* もや～ん遷移 */
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

.wrapper {
    max-width: 1180px;
    width: calc(100% - 30px);
    margin: 0 auto;
}

.wrapper-narrow {
    max-width: 1030px;
    width: calc(100% - 30px);
    margin: 0 auto;
}

.dark-back {
    background-color: #0E0227;
}

.pure-button.pure-button-primary.btn-standard {
    border-radius: 8px;
    padding: 0.7em 2em;
    font-weight: bold;
}

.pure-button.pure-button-primary.btn-standard.btn-dwnl {
    padding: 0.5em 1.2em;
    border-radius: 8px;
}

.pc_only {
    display: none;
}

.disable {
    pointer-events: none;
    opacity: 0.25;
}

@media screen and (min-width: 48em) {
    /* 768px md */
    .sp_only {
        display: none;
    }

    .pc_only {
        display: block;
    }
}

/* ===========================
3.ヘッダー
============================== */
.site-header {
    background-color: rgba(0, 0, 0, 1);
}

#header-nav {
    position: relative;
    padding: 2px 0;
    width: 100%;
    height: 78px;
    background-color: rgba(0, 0, 0, 1);
}

.header-nav-logo-area {
    margin: 1.8em 0 1.6em;
}

.header-nav-logo-area h2 {
    font-size: 11px;
    -webkit-text-size-adjust: 100%;
}

.header-nav-logo-area h2 a {
    color: #fff;
    font-weight: normal;
    text-decoration: none;
    transition: all 0.3s;
}

.header-nav-logo-area h2 a:hover,
.header-nav-logo-area h2 a:active {
    opacity: 0.87;
}

.header-nav-logo-area h2 img {
    max-width: 100%;
    height: auto;
}

.header-nav-logo-area h2 .logo-holder {
    display: inline-block;
    padding-right: 0.3em;
    width: 120px;
    text-align: center;
}

.header-nav-logo-area h2 .page-name-holder {
    display: inline-block;
    vertical-align: 5px;
}

.header-toggler {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    z-index: 500;
}

.header-toggler span {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: .5s;
}

.header-toggler span:first-of-type {
    top: 15%;
}

.header-toggler span:nth-of-type(2) {
    top: 50%;
}

.header-toggler span:last-of-type {
    top: 85%;
}

.header-toggler.active span:first-of-type {
    top: 50%;
    transform: rotate(45deg);
}

.header-toggler.active span:nth-of-type(2) {
    opacity: 0; /* 透明にする */
}

.header-toggler.active span:last-of-type {
    top: 50%;
    transform: rotate(-45deg);
}

.header-nav-panel-area {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    padding-top: 2px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    transition: all 0.5s;
    z-index: 400;
}

.header-nav-panel-area.active {
    display: block;
    opacity: 1;
}

.header-nav-panel-area.active .header-nav-pagelist {
    margin-top: 40px;
    list-style: none;
    padding: 0;
}

.header-nav-pagelist li,
.header-nav-pagelist li a {
    color: #fff;
    transition: all 0.3s;
}

.header-nav-panel-area.active .header-nav-pagelist li {
    padding: 0;
    border-bottom: rgba(230, 230, 230, 0.6) dashed 1px;
}

.header-nav-panel-area.active .header-nav-pagelist li a {
    display: block;
    padding: 20px 20px 16px;
    text-align: center;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.header-nav-pagelist li.current a,
.header-nav-pagelist li a:hover,
.header-nav-pagelist li a:active {
    color: #0078e7;
}

.header-nav-pagelist li a .pc-narrow {
    display: none;
}

.header-login-area {
    padding: 0 20px 20px;
    color: #fff;
}

.header-nav-panel-area.active .header-login-area {
    text-align: center;
}

.header-nav-panel-area.active .header-login-area .login-user-name {
    margin-bottom: 0.5em;
    font-size: 14px;
}

@media screen and (min-width: 35.5em) {
    /* 568px sm */
    .header-nav-logo-area h2 .logo-holder {
        padding-right: 0.75em;
        width: 162px;
    }

    .header-nav-logo-area h2 {
        font-size: 12px;
    }

    .header-nav-logo-area h2 .page-name-holder {
        vertical-align: 7px;
    }
}

@media screen and (min-width: 48em) {
    /* 768px md */
}

@media screen and (min-width: 64em) {
    /* 1024px lg */
    #header-nav {
        height: 90px;
    }

    #header-nav .wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: calc(100% - 30px);
        height: 100%;
    }

    .header-nav-logo-area {
        position: relative;
        top: 4px;
        margin: 0 0 0;
    }

    .header-toggler,
    .header-toggler.active {
        display: none;
    }

    .header-nav-link-area {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .header-nav-panel-area,
    .header-nav-panel-area.active {
        display: flex;
        position: static;
        align-items: center;
        background-color: transparent;
        opacity: 1;
    }

    .header-nav-pagelist,
    .header-nav-panel-area.active .header-nav-pagelist {
        display: flex;
        align-items: center;
        margin-top: 1em;
        margin-right: 25px;
        padding-left: 0;
    }

    .header-nav-pagelist li,
    .header-nav-panel-area.active .header-nav-pagelist li {
        display: inline-block;
        margin-right: 2.5em;
        border-bottom: none;
        padding: 0 0;
    }

    .header-nav-pagelist li:last-child,
    .header-nav-panel-area.active .header-nav-pagelist li:last-child {
        margin-right: 0.75em;
    }

    .header-nav-pagelist li a,
    .header-nav-panel-area.active .header-nav-pagelist li a {
        display: inline-block;
        padding: 0 0;
        text-decoration: none;
        text-align: center;
    }

    .header-nav-pagelist li a .pc-narrow {
        display: inline;
    }

    .header-login-area {
        padding: 10px 0 10px 16px;
    }

    .header-login-area form {
        display: flex;
    }

    .header-login-area form .login-user-name {
        font-size: 14px;
    }

    .header-login-area form .loginbtn {
        margin-left: 1em;
    }
}

@media screen and (min-width: 80em) {
    /* 1280px xl */
    .header-nav-pagelist li a .pc-narrow {
        display: none;
    }
}

/* ===========================
4.フッター
============================== */
.site-footer {
    padding: 30px 0;
    background-color: #f5f5f7;
}

.footer-nav-logo-area {
    text-align: center;
}

.footer-nav-logo-area p a {
    transition: all 0.3s;
}

.footer-nav-logo-area p a:hover,
.footer-nav-logo-area p a:active {
    opacity: 0.7;
}

.footer-nav-link-area {
    list-style: none;
    padding-left: 1em;
}

.footer-nav-link-area h3 {
    font-size: 16px;
}

.footer-nav-link-area > li {
    margin-top: 30px;
}

.footer-nav-link-area ul {
    margin-left: 0;
}

.footer-nav-link-area ul li {
    list-style: disc;
    margin-left: 0;
}

.footer-nav-link-area ul li a,
.footer-nav-link-area ul li .a {
    display: block;
    padding: 6px 0;
    text-decoration: none;
    line-height: 1.4;
    color: #575759;
    transition: all 0.3s;
}

.footer-nav-link-area ul li a:hover,
.footer-nav-link-area ul li a:active {
    color: #0078e7;
}

.footer-copyright-area {
    margin-top: 30px;
    font-size: 12px;
    text-align: center;
    line-height: 1.4;
}

@media screen and (min-width: 35.5em) {
    /* 568px sm */
    .footer-nav-link-area ul {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        width: 100%;
    }

    .footer-nav-link-area ul > li {
        width: 48%;
    }
}

@media screen and (min-width: 48em) {
    /* 768px md */
    .footer-nav-link-area {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .footer-nav-link-area > li {
        margin-top: 0;
        width: 30%;
    }

    .footer-nav-link-area > li:first-child {
        width: 31%;
    }

    .footer-nav-link-area ul {
        display: block;
    }

    .footer-nav-link-area ul > li {
        width: 100%;
    }
}

@media screen and (min-width: 64em) {
    /* 1024px lg */
    .footer-nav-logo-area {
        text-align: left;
    }

    .footer-info-area {
        margin-top: 2.5em;
        display: flex;
        justify-content: space-between;
    }

    .footer-nav-logo-area {
        padding-right: 2em;
        width: 24.5%;
    }

    .footer-nav-logo-area p {
        margin-top: 0;

    }

    .footer-nav-link-area {
        margin-top: 0;
    }

    .footer-nav-link-area > li h3 {
        margin-top: 0;
    }

    .footer-copyright-area {
        font-size: 13px;
    }
}

/* ===========================
5.ヘッドライン
============================== */
#main-headline {
    position: relative;
    margin: 0;
    padding: 40% 0 0;
    width: 100%;
    height: 0;
}

#main-headline .main-headline-inner {
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../../img/common/back-headline01.jpg") no-repeat center center;
    background-size: cover;
    justify-content: center;
    align-items: center;
    color: #fff;
}

#main-headline .main-headline-inner h1 {
    margin: 0;
    line-height: 1.15;
    font-size: 20px;
}

#main-headline .main-headline-inner p {
    margin: 0.5em 0;
}

#main-headline .main-headline-inner .headline-searcher {
    margin-top: 10px;
}

#main-headline .main-headline-inner .headline-searcher input {
    border-width: 0;
    outline-color: #c13ed9;
    border-radius: 15px;
}

#main-headline .main-headline-inner .headline-searcher input.window {
    padding: 6px 16px 8px;
}

#main-headline .main-headline-inner .headline-searcher input.pure-button {
    position: relative;
    top: -1px;
    padding: 4px 16px 6px;
}

@media screen and (min-width: 35.5em) {
    /* 568px sm */
    #main-headline {
        padding: 30% 0 0;
    }

    #main-headline .main-headline-inner h1 {
        font-size: 26px;
    }

    #main-headline .main-headline-inner .headline-searcher {
        margin-top: 20px;
    }

    #main-headline .main-headline-inner .headline-searcher input {
        width: 20em;
        padding: 6px 22px 8px;
    }

    #main-headline .main-headline-inner .headline-searcher input.submit {
        padding: 4px 15px 6px;
        width: 4em;
    }
}

@media screen and (min-width: 48em) {
    /* 768px md */
    #main-headline {
        padding: 25% 0 0;
    }

    #main-headline .main-headline-inner h1 {
        font-size: 34px;
    }

    #main-headline .main-headline-inner .headline-searcher input {
        width: 24em;
        padding: 4px 28px 6px;
    }

    #main-headline .main-headline-inner .headline-searcher input.submit {
        display: none;
    }
}

@media screen and (min-width: 64em) {
    /* 1024px lg */
    #main-headline .main-headline-inner h1 {
        font-size: 42px;
    }
}

@media screen and (min-width: 80em) {
    /* 1280px xl */
    #main-headline {
        padding: 400px 0 0;
    }

    #main-headline .main-headline-inner {
        left: 50%;
        width: 1600px;
        max-width: 100%;
        transform: translatex(-50%);
    }
}

/* ===========================
6.gototop
============================== */
@keyframes gototop {
    0% {
        top: -20px;
    }
    11% {
        top: -10px;
    }
    12.7% {
        top: -20px;
    }
    14.3% {
        top: -15px;
    }
    16% {
        top: -20px;
    }
    100% {
        top: -20px;
    }
}

.text-danger {

}

.error-message {
    color: #dc0a0a;
    font-size: 0.8em;
    margin-top: 0.25em;
}

a.login-user-name {
    text-decoration: none;
}

.mark_require {
    color: #e51410;
}

.custom-btn {
    border-radius: 8px;
    height: 45px;
    font-size: 14px;
    padding: 0.7em 2em;
    font-weight: bold;
}
