@charset "UTF-8";

/* base (reset)
---------------------------------------------------*/
body {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
    font-weight: 400;
}

ul,
ol,
dl,
dt,
dd {
    margin: 0;
    padding: 0;
}

ol,
li {
    list-style: none;
}

img {
    border: none;
    line-height: 0;
    font-size: 0;
    vertical-align: middle;
    max-width:100%;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

/* ---------- */
a {
    margin: 0;
    padding: 0;
    font-size: inherit;
    background: transparent;
}

th,
td {
    font-style: normal;
    font-weight: normal;
    font-size: inherit;
    empty-cells: show;
}

input,
select {
    vertical-align: middle;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    /*-webkit-appearance: none;*/
    border-radius: 0;
}

pre {
    white-space: -moz-pre-wrap;/* Mozilla */
    white-space: -o-pre-wrap;/* Opera 7 */
    white-space: pre-wrap;/* CSS3 */
    word-wrap: break-word;/* IE 5.5+ */
}


/* color
---------------------------------------------------*/
:root {
    --background-color: #1D1F23;
    --font-color: #ffffff;
    --main-color: #188A83;
    --white-color: #ffffff;
    --black-color: #1D1F23;
    /*---*/
    --font-size-x: 40px;
    --font-size-l: 24px;
    --font-size-n: 16px;
    --font-size-s: 12px;
}

/* 768px */
@media screen and (max-width: 768px) {
    :root {
        --font-size-x: 10.256vw; /* 40px; */
        --font-size-l: 6.1538vw; /* 24px; */
        --font-size-n: 4.1025vw; /* 16px; */
        --font-size-s: 3.0769vw; /* 12px; */
    }
}

/* Selected Text
---------------------------------------------------*/
::selection {
    background: #191919;
    color: #FFFFFF;
}

/* HTML
---------------------------------------------------*/
html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-size: 62.5%;
    overflow-y: scroll;
}
body {
    position: relative;
    width: 100%;
    line-height: 1;
    color: var(--font-color);
    font-size: var(--font-size-n);
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    background-color: #fff;
}
body.modal {
    background-color: var(--background-color);
}

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

.en {
    font-family: "futura-pt", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.sp-no {display:block;}
br.sp-no {display: inline;}
.pc-no {display:none;}
br.pc-no {display:none;}

svg {
    display: block;
    width: 100%;
    height: auto;
    fill: var(--black-color);
}

/* 768 */
@media screen and (min-width:1px) and (max-width: 768px) {
    body {
        -webkit-text-size-adjust: 100%;
    }
    .pc-no {display: block;}
    br.pc-no {display: inline;}
    .sp-no {display: none;}
    br.sp-no {display: none;}
}


/* link
---------------------------------------------------*/
a {
    text-decoration: none;
}
a:link,
a:visited,
a:active {
    color: var(--font-color);
}
a:hover {
    color: var(--font-color);
}
a.u {
    text-decoration: underline;
    text-underline-offset: 0.2em;
}
a,
.hover {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.hover:hover {
    opacity: 0.8;
    filter: alpha(opacity=80);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

@media screen and (min-width: 769px) {
    a[href^="tel:"] {
        pointer-events: none;
        cursor: default;
    }
}

/* clearfix
---------------------------------------------------*/
.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: '';
    clear: both;
    height: 0;
}
.clearfix {
    min-height: 1px;
    zoom: 1;
}
* html .clearfix {
    height: auto;
    overflow: hidden;
}


/* INPUT
---------------------------------------------------*/
input, button, select, textarea {
    font-family: inherit;
    font-size: 1em;
    color: inherit;
    margin: 0;
}
input, button {
    border: 0;
    line-height: normal;
    vertical-align: inherit;
    *vertical-align: middle;
}
input::-moz-focus-inner,
button::-moz-focus-inner {
    border: 0;
    padding: 0;
}
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
    cursor: pointer;
    -webkit-appearance: button;
    *overflow: visible;
    border: 0;
    outline: none;
}
input[type="text"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="email"],
input[type="url"],
textarea,
select {
    overflow: hidden;
    outline: none;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
input:focus{ outline: 0 none black; }

/* ------ */
input[type="color"],
input[type="date"],
input[type="datetime-local"],
input[type="datetime"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
textarea {
    width: 100%;
    color: var(--black-color);
    font-size: var(--font-size-n);
    font-weight: 400;
    line-height: 1;
    border: 1px solid var(--black-color);
    border-radius: 8px;
    padding: 0.5em 0.5em;
    vertical-align: middle;
}
input.wrote,
textarea.wrote {
    background-color: var(--white-color);
}
textarea {
    height: 8em;
    overflow: auto;
    resize: vertical;
}
select {
    width: 100%;
    line-height: 1;
    font-weight: 400;
    border: 1px solid var(--black-color);
    vertical-align: middle;
    border-radius: 8px;
    padding: 0.5em 0.5em;
}
input:focus,
textarea:focus,
select:focus {
    border-color: var(--black-color);
    box-shadow: 0 0 0 1px var(--black-color);
    outline: 2px solid transparent;
}
input[type="checkbox"]:focus,
input[type="reset"]:focus {
    box-shadow: none;
    outline: 0;
}

/** placeholder **/
.placeholder {color: #898D98;}
:placeholder-shown {color: #898D98;}
::-webkit-input-placeholder {color: #898D98;}
:-moz-placeholder {color: #898D98;}
::-moz-placeholder {color: #898D98;}
:-ms-input-placeholder {color: #898D98 !important;}

/* 768 */
@media screen and (min-width: 1px) and (max-width: 768px) {
    input[type="color"],
    input[type="date"],
    input[type="datetime-local"],
    input[type="datetime"],
    input[type="email"],
    input[type="month"],
    input[type="number"],
    input[type="password"],
    input[type="search"],
    input[type="tel"],
    input[type="text"],
    input[type="time"],
    input[type="url"],
    input[type="week"],
    textarea {
        font-size: 18px;
        -webkit-appearance: none;
        padding: 0.6em 0.5em;
    }
    select {
        font-size: 18px;
        -webkit-appearance: none;
        padding: 0.6em 0.5em;
    }

    .placeholder,
    :placeholder-shown,
    ::-webkit-input-placeholder,
    :-moz-placeholder,
    ::-moz-placeholder,
    :-ms-input-placeholder {
        font-size: 3.125vw;
    }
}

/* .checkbox
-------------------------------------------------------------- */
input[type="checkbox"]:not(.is-basic) {
    position: absolute;
    opacity: 0;
}
.checkbox {
    position: relative;
    display: inline-block;
    padding-left: 1.5em;
    cursor: pointer;
}
.checkbox:before,
.checkbox:after {
    position: absolute;
    content: '';
    display: block;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
}
.checkbox:before {
    width: 1em;
    aspect-ratio: 1 / 1;
    background-color: var(--white-color);
    border: 1px solid var(--black-color);
    border-radius: 0.1em;
    z-index: 10;
}
.checkbox:after {
    width: 1em;
    aspect-ratio: 1 / 1;
    background-image: url('../img/common/form_check.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 80% 80%;
    opacity: 0;
    z-index: 20;
}
input[type="checkbox"]:checked + .checkbox:before {
    background-color: var(--black-color);
}
input[type="checkbox"]:checked + .checkbox:after {
    opacity: 1;
}
.checkbox:after,
.checkbox:before {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

/* check-list */
ul.check-list {
    display: flex;
    flex-direction: column;
    gap: 1.25em 1.5em;
}
ul.check-list li label {
    line-height: 1.8em;
}
ul.check-list + input,
ul.radio-list + input,
.error + input,
.error + input {
    margin-top: 1em;
}

/* 768 */
@media screen and (min-width:1px) and (max-width: 768px) {
    /* check-list */
    ul.check-list + input,
    ul.radio-list + input,
    .error + input,
    .error + input {
        margin-top: 4vw;
    }
}


/* .radio
-------------------------------------------------------------- */
input[type="radio"]:not(.is-basic) {
    position: absolute;
    opacity: 0;
}
.radio {
    position: relative;
    display: inline-block;
    font-size: var(--font-size-n);
    padding-left: 1.5em;
    cursor: pointer;
}
.radio:before,
.radio:after {
    position: absolute;
    display: block;
    content: '';
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    border-radius: 50%;
}
.radio:before {
    width: 1em;
    aspect-ratio: 1 / 1;
    background-color: var(--white-color);
    border: 1px solid var(--black-color);
    z-index: 10;
}
.radio:after {
    left: 0;
    width: 1em;
    aspect-ratio: 1 / 1;
    background-color: var(--black-color);
    border: 1px solid var(--black-color);
    opacity: 0;
    z-index: 20;
}
input[type="radio"]:checked + .radio:after {
    opacity: 1;
}
.radio:after,
.radio:before {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

/* radio-list */
ul.radio-list {
    display: flex;
    flex-direction: column;
    gap: 1.25em 1.5em;
}
ul.radio-list li label {
    line-height: 1.8em;
}


/* scroll
---------------------------------------------------*/
.scr-thin::-webkit-scrollbar {
    width: 6px;
}
.scr-thin::-webkit-scrollbar-track {
    border-radius: 6px;
    box-shadow: inset 0 0 3px rgba(0, 0, 0, .1);
}
.scr-thin::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, .5);
    border-radius: 6px;
    box-shadow:0 0 0 1px rgba(255, 255, 255, .3);
}

/* wrapper
---------------------------------------------------*/
#wrapper {
    position: relative;
    width: 100%;
    background-color: var(--background-color);
    padding-top: 67px;
    margin: 0 auto;
}

/* 768 */
@media screen and (min-width:1px) and (max-width: 768px) {
    #wrapper {
        padding-top: 17.1794vw;
    }
}


/* Header
---------------------------------------------------*/
#Header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}
/* inner */
#Header .inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 67px;
    background-color: rgba(29, 31, 35, 0.85);
    margin: 0 auto;
    padding: 0 20px;
}
#Header .header-logo {
    width: 230px;
}
#Header .header-logo img {
    width: 100%;
}
/* g-nav */
#g-nav {
    width: 80.72%;
    max-width: 1550px;
}
#g-nav ul.menu {
    display: flex;
    align-items: center;
    /*justify-content: space-between;*/
    margin: 0 auto;
}
#g-nav ul.menu > li:not(:first-of-type) {
    margin-left: 4.12%;
}
#g-nav ul.menu > li > a {
    display: block;
    text-align: center;
    font-weight: 700;
    white-space: nowrap;
}
#g-nav ul.menu > li.join {
    margin-left: auto;
}
#g-nav ul.menu > li.join a {
    position: relative;
    font-size: var(--font-size-s);
    border: 1px solid var(--font-color);
    border-radius: 3em;
    padding: 0.792em 2.2em 0.792em 1em;
}
#g-nav ul.menu > li.join a[target="_blank"]::after {
    position: absolute;
    content: '';
    top: 50%;
    right: 10px;
    transform: translate(0, -50%);
    width: 10px;
    height: 10px;
    background-image: url(/asset/img/common/icon_blank.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}
/* btn-menu */
#btn-menu {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    width: 67px;
    aspect-ratio: 1 / 1 ;
    cursor: pointer;
    z-index: 999;
}
#btn-menu .btn-menu-trigger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 12px;
    z-index: 10;
}
#btn-menu .btn-menu-trigger::before {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 38px;
    aspect-ratio: 1 / 1;
    background-color: var(--main-color);
    border-radius: 50%;
    opacity: 1;
    transition: 0.5s;
}
#btn-menu .btn-menu-trigger,
#btn-menu .btn-menu-trigger span {
    transition: all 0.5s;
    box-sizing: border-box;
}
#btn-menu .btn-menu-trigger span {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background-color: var(--font-color);
}
#btn-menu .btn-menu-trigger span:nth-of-type(1) {
    top: 0;
}
#btn-menu .btn-menu-trigger span:nth-of-type(2) {
    top: 50%;
}
#btn-menu .btn-menu-trigger span:nth-of-type(2):after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--font-color);
    transition: all 0.15s;
}
#btn-menu .btn-menu-trigger span:nth-of-type(3) {
    top: auto;
    bottom: -1px;
}
#btn-menu .btn-menu-trigger.is-active::before {
    opacity: 0;
}
#btn-menu .btn-menu-trigger.is-active span {
    background-color: var(--font-color);
}
#btn-menu .btn-menu-trigger.is-active span:nth-of-type(1) {
    transform: translate(50%) scale(0);
}
#btn-menu .btn-menu-trigger.is-active span:nth-of-type(2) {
    transform: rotate(45deg);
}
#btn-menu .btn-menu-trigger.is-active span:nth-of-type(2)::after {
    width: 100%;
    transform: rotate(90deg);
    background-color: var(--font-color);
}
#btn-menu .btn-menu-trigger.is-active span:nth-of-type(3) {
    transform: translate(-50%) scale(0);
}

/* 1760 */
@media screen and (max-width: 1760px) {
    #g-nav ul.menu {
        display: flex;
        align-items: center;
        margin: 0 auto;
    }
    #g-nav ul.menu > li:not(:first-of-type),
    #g-nav ul.menu > li.join {
        margin-left: auto;
    }
}

/* 1280 */
@media screen and (max-width: 1280px) {
    #g-nav ul.menu > li > a {
        font-size: 1.25vw;
    }
    #g-nav ul.menu > li.join a {
        font-size: 0.9375vw;
    }

}

/* 768 */
@media screen and (min-width:1px) and (max-width: 768px) {
    #Header .inner {
        height: 17.1794vw;
        padding: 0;
    }
    #Header .header-logo {
        width: 58.9743vw;
    }
    #Header .inner:has(#g-nav.is-active) {
        background-color: rgba(29, 31, 35, 1);
    }
    /* g-nav */
    #g-nav {
        display: none;
        position: absolute;
        top: 17.1794vw;
        left: 0;
        width: 100%;
        height: calc(100vh - 17.1794vw);
        background-color: var(--black-color);
        padding-bottom: 20.5128vw;
        overflow-y: auto;
    }
    #g-nav ul.menu {
        display: block;
        padding: 5.1282vw 0;
    }
    #g-nav ul.menu > li {
        text-align: center;
    }
    #g-nav ul.menu > li:not(:first-of-type) {
        margin-left: 0;
    }
    #g-nav ul.menu > li > a {
        font-size: var(--font-size-n);
        padding: 5.1282vw 0;
    }
    #g-nav ul.menu > li.join {
        margin-top: 5.1282vw;
    }
    #g-nav ul.menu > li.join a {
        display: inline-block;
        font-size: var(--font-size-n);
    }
    #g-nav ul.menu > li.join a[target="_blank"]::after {
        width: 16px;
        height: 16px;
    }
    /* btn-menu */
    #btn-menu {
        display: block;
        width: 17.1794vw;
    }
    #btn-menu .btn-menu-trigger {
        width: 4.1025vw;
        height: 1.875vw;
    }
    #btn-menu .btn-menu-trigger::before {
        width: 9.7435vw;
    }
}


/* Footer
---------------------------------------------------*/
#pageTop {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 40px;
    aspect-ratio: 1 / 1;
    background-color: var(--main-color);
    border: 1px solid var(--white-color);
    border-radius: 50%;
    cursor: pointer;
    text-indent: -999px;
    overflow: hidden;
    z-index: 999;
}
#pageTop:after {
    position: absolute;
    content: "";
    width: 17px;
    height: 9px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url('../img/common/icon_top.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}
#Footer {
    position: relative;
    background-color: var(--black-color);
    border-top: 1px solid var(--white-color);
    margin-top: 128px;
    z-index: 1;
}
#Footer .banners {
    padding: 64px 0 40px;
}
#Footer .banners-inner {
    width: 96%;
    max-width: 1032px;
    margin: 0 auto;
}
#Footer .banners ul.banner-list {
    display: flex;
    justify-content: center;
    align-items: center;
}
#Footer .banners ul.banner-list li {
    width: 50%;
    text-align: center;
}
#Footer .information {
    background-color: #686C75;
    padding: 50px 0 64px;
}
#Footer .information-inner {
    display: flex;
    justify-content: space-between;
    width: 96%;
    max-width: 1000px;
    margin: 0 auto;
}
#Footer .information .logo img {
    width: 356px;
}
#Footer .information .logo p {
    line-height: 1.4em;
    font-size: var(--font-size-s);
    color: var(--white-color);
}
#Footer .information .logo p.address {
    margin-top: 22px;
}

/* navigation */
#Footer .navigation {
    display: flex;
    width: 450px;
}
/* menu */
#Footer ul.menu {
    width: 50%;
}
#Footer ul.menu li:not(:last-child) {
    margin-bottom: 2em;
}
#Footer ul.menu li a {
    line-height: 1.8em;
    color: var(--white-color);
}
#Footer ul.menu li a:hover {
    text-decoration: underline;
    text-underline-offset: 0.2em;
}
#Footer ul.menu li a[target="_blank"]::after {
    display: inline-flex;
    content: '';
    transform: translate(0, -50%);
    width: 14px;
    height: 14px;
    background-image: url(/asset/img/common/icon_blank.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    align-items: center;
    margin: 0 0 0 5px;
}

/* 768 */
@media screen and (min-width:1px) and (max-width: 768px) {
    #pageTop {
        width: 10.2564vw;
        bottom: 4.1025vw;
        right: 4.1025vw;
    }
    #pageTop:after {
        width: 4.3589vw;
        height: 2.3076vw;
    }
    #Footer {
        margin-top: 16.4102vw;
    }
    #Footer .banners {
        padding: 16.4102vw 0 10.2564vw;
    }
    #Footer .banners-inner {
        width: 100%;
    }
    #Footer .banners ul.banner-list {
        flex-direction: column;
        gap: 10.2564vw;
    }
    #Footer .banners ul.banner-list li {
        width: 100%;
    }
    #Footer .banners .banner-list .strongs img {
        width: 83.5897vw;
    }
    #Footer .banners .banner-list .nspa img {
        width: 66.6667vw;
    }
    #Footer .information {
        padding: 9.7435vw 0 16.4102vw;
    }
    #Footer .information-inner {
        display: block;
        width: 91.2820vw;
    }
    #Footer .information .logo img {
        width: 100%;
    }
    #Footer .information .logo p {
        margin-left: 4.1025vw;
    }
    #Footer .information .logo p.address {
        margin-top: 5.6410vw;
    }

    /* navigation */
    #Footer .navigation {
        gap: 0 1.75em;
        width: 83.5897vw;
        margin: 10.2564vw auto 0;
    }
}


/* Common
---------------------------------------------------*/
.mgt10 {margin-top: 10px !important;}
.mgt20 {margin-top: 20px !important;}
.mgt40 {margin-top: 40px !important;}
.mgt60 {margin-top: 60px !important;}
.mgt80 {margin-top: 80px !important;}
.mgt100 {margin-top: 100px !important;}
.mgb10 {margin-bottom: 10px !important;}
.mgb20 {margin-bottom: 20px !important;}
.mgb40 {margin-bottom: 40px !important;}
.mgb60 {margin-bottom: 60px !important;}
.mgb80 {margin-bottom: 80px !important;}
.mgb100 {margin-bottom: 100px !important;}

.tc {
    text-align: center;
}
.tr {
    text-align: right;
}


/* list */
ul.disc > li {
    list-style-type: disc;
    margin-left: 1.5em;
    text-indent: 0;
}
ol.decimal > li {
    list-style-type: decimal;
    margin-left: 1.5em;
    text-indent: 0;
}
ol.parentheses > li {
    position: relative;
    list-style-type: none;
    list-style-position: inside;
    counter-increment: cnt;
    margin-left: 2em;
}
ol.parentheses > li:before {
    position: absolute;
    top: 0;
    left: -3.5em;
    width: 3em;
    text-align: right;
    display: marker;
    content: counter(cnt) '）';
}

/* ttl-section */
.ttl-section {
    line-height: 1.34em;
    font-size: 64px;
    font-weight: 700;
}
.ttl-section.ja {
    font-size: var(--font-size-x);
}

/* ttl-block */
.ttl-block {
    line-height: 1.5em;
    font-size: var(--font-size-l);
    font-weight: 700;
    margin-bottom: 1em;
}

/* 768 */
@media screen and (min-width:1px) and (max-width: 768px) {
    .mgt10 {margin-top: 1.5625vw !important;}
    .mgt20 {margin-top: 3.125vw !important;}
    .mgt40 {margin-top: 6.25vw !important;}
    .mgt60 {margin-top: 9.375vw !important;}
    .mgt80 {margin-top: 12.5vw !important;}
    .mgt100 {margin-top: 15.625vw !important;}
    .mgb10 {margin-bottom: 1.5625vw !important;}
    .mgb20 {margin-bottom: 3.125vw !important;}
    .mgb40 {margin-bottom: 6.25vw !important;}
    .mgb60 {margin-bottom: 9.375vw !important;}
    .mgb80 {margin-bottom: 12.5vw !important;}
    .mgb100 {margin-bottom: 15.625vw !important;}

    /* ttl-section */
    .ttl-section {
        line-height: 1.5em;
        font-size: 10.2564vw;
    }
}


/* button
---------------------------------------------------*/
.btn-block-flex {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 24px auto 0;
}

/* btn-link */
.btn-link a {
    position: relative;
    display: inline-block;
    line-height: 1;
    text-align: center;
    color: var(--white-color);
    font-size: var(--font-size-n);
    font-weight: 700;
    border: 1px solid var(--white-color);
    border-radius: 3em;
    padding: 0.7em 1.1em;
    transition: background-color 0.5s, border 0.5s, opacity 0.5s, color 0.5s;
}
.btn-link a:hover {
    background-color: var(--black-color);
}
.btn-link.black a {
    color: var(--black-color);
    border: 1px solid var(--black-color);
}
.btn-link.black a:hover {
    color: var(--white-color);
    border: 1px solid var(--black-color);
}
.btn-link a[target="_blank"] {
    padding-right: 44px;
}
.btn-link a[target="_blank"]::after {
    position: absolute;
    content: '';
    top: 50%;
    right: 24px;
    transform: translate(0, -50%);
    width: 12px;
    height: 12px;
    background-image: url('../img/common/icon_blank.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}
.btn-link a:has(.icon) {
    display: inline-flex;
    align-items: center;
}
.btn-link .icon {
    display: inline-block;
    width: 24px;
    vertical-align: middle;
    margin-right: 8px;
}
.btn-link .icon img,
.btn-link .icon svg {
    width: 100%;
}
.btn-link .icon svg {
    fill: var(--black-color);
    transition: fill 0.5s;
}
.btn-link a:hover .icon svg {
    fill: var(--white-color);
}

/* btn-submit */
.btn-submit input[type="submit"],
.btn-reset input[type="reset"] {
    position: relative;
    display: inline-block;
    line-height: 1;
    text-align: center;
    color: var(--black-color);
    font-size: var(--font-size-n);
    font-weight: 700;
    background-color: var(--white-color);
    border: 1px solid var(--white-color);
    border-radius: 3em;
    padding: 0.7em 1.1em;
    transition: background-color 0.5s, border 0.5s, opacity 0.5s, color 0.5s;
}
.btn-submit input[type="submit"]:hover {
    color: var(--white-color);
    background-color: var(--black-color);
}
.btn-submit.white input[type="submit"],
.btn-reset input[type="reset"] {
    color: var(--white-color);
    background-color: transparent;
}
.btn-submit.white input[type="submit"]:hover,
.btn-reset input[type="reset"]:hover {
    color: var(--white-color);
    background-color: var(--black-color);
}

/* toggle */
.js-btn-toggle {
    cursor: pointer;
}
.js-toggle-content {
    display: none;
}

/* 768 */
@media screen and (min-width:1px) and (max-width: 768px) {
    .btn-block-flex {
        gap: 6.1538vw;
        margin-top: 10.2564vw;
    }

    /* btn-link */
    .btn-link a {
    }
    .btn-link a[target="_blank"] {
        padding-right: 10.2564vw;
    }
    .btn-link a[target="_blank"]::after {
        right: 5.8974vw;
        width: 3.3333vw;
        height: 3.3333vw;
    }
    .btn-link .icon {
        width: 6.1538vw;
        margin-right: 2.0512vw;
    }
}


/* pagination
-------------------------------------------------------------- */
.pagination {
    position: relative;
}
.pagination ul.page-list {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    gap: 0.5em;
}
.pagination ul.page-list li {
    position: relative;
    transition: all 0.5s;
}
.pagination ul.page-list li a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 32px;
    aspect-ratio: 1 / 1;
    z-index: 2;
    transition: background-color 0.5s, color 0.5s;
}
.pagination ul.page-list li a:hover,
.pagination ul.page-list li a:focus,
.pagination ul.page-list li.is-current a {
    color: var(--black-color);
    background: var(--white-color);
}
.pagination ul.page-list li.item-prev a:after,
.pagination ul.page-list li.item-next a:after {
    content: '';
    position: absolute;
    top: 46%;
    width: 20px;
    height: 20px;
    z-index: 1;
    transition: border-color 0.5s;
}
.pagination ul.page-list li.item-prev a:after {
    left: 48%;
    border-top: 1px solid var(--font-color);
    border-left: 1px solid var(--font-color);
    transform: rotate(-45deg) translate(0, -50%);
}
.pagination ul.page-list li.item-next a:after {
    right: 48%;
    border-top: 1px solid var(--font-color);
    border-right: 1px solid var(--font-color);
    transform: rotate(45deg) translate(0, -50%);
}
.pagination ul.page-list li.item-prev a:hover:after,
.pagination ul.page-list li.item-next a:hover:after {
    border-color: var(--black-color);
}

/* 768 */
@media screen and (min-width:1px) and (max-width: 768px) {
    .pagination ul.page-list {
        justify-content: center;
    }
    .pagination ul.page-list li a {
        min-width: 6.25vw;
    }
    .pagination ul.page-list li a {
        min-width: 8.2051vw;
    }
    .pagination ul.page-list li.item-prev a:after,
    .pagination ul.page-list li.item-next a:after {
        width: 5.1282vw;
        height: 5.1282vw;
    }
}


/* slick
---------------------------------------------------*/
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus {
    outline: none;
}
.slick-list.dragging {
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}
.slick-track:after {
    clear: both;
}
.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
    outline:none;
}
[dir='rtl'] .slick-slide {
    float: right;
}
.slick-slide img {
    display: block;
}
.slick-slide.slick-loading img {
    display: none;
}
.slick-slide.dragging img {
    pointer-events: none;
}
.slick-initialized .slick-slide {
    display: block;
}
.slick-loading .slick-slide {
    visibility: hidden;
}
.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}


/* slick theme
---------------------------------------------------*/
.slick-loading .slick-list {
    background: #fff url('./img/ajax-loader.gif') center center no-repeat;
}

/* Arrows */
.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 16px;
    height: 29px;
    padding: 0;
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    /*background-color: rgba(0, 0, 0, 0.35);*/
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 100;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: transparent;
    outline: none;
    opacity: 0.7;
    filter:alpha(opacity=70);
}
.slick-prev {
    left: 30px;
    background-image: url('../img/common/arrow_prev_w.svg');
}
.slick-next {
    right: 30px;
    background-image: url('../img/common/arrow_next_w.svg');
}

/* Dots */
.slick-dotted.slick-slider {
    margin-bottom: 30px;
}
.slick-dots {
    position: absolute;
    bottom: -20px;
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    justify-content: center;
    -webkit-justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
}
.slick-dots li {
    position: relative;
    width: 10px;
    height: auto;
    aspect-ratio: 1 / 1;
    margin: 0 5px;
}
.slick-dots li button {
    width: 100%;
    height: 100%;
    font-size: 0;
    line-height: 0;
    color: transparent;
    outline: none;
    background: #e4e4e4;
    border: 1px solid #e4e4e4;
    border-radius: 50%;
    padding: 0;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}
.slick-dots li.slick-active button {
    background-color: #fff;
    border-color: #080103;
}
.slick-dots li button:before {
    display: none;
}

/* 768px */
@media screen and (min-width:1px) and (max-width: 768px) {
    /*  arrow */
    .slick-prev {
        left: calc(50% - 46.875vw);
        width: 5.3125vw;
        height: 10.3125vw;
    }
    .slick-next {
        right: calc(50% - 46.875vw);
        width: 5.3125vw;
        height: 10.3125vw;
    }
}
