@charset "UTF-8";

/* base (reset)
---------------------------------------------------*/
body {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
    font-weight: 500;
}
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%;
    height: auto;
}
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 {
    --main-color: #000000;
    --primary-color: #2995D9;
    --secondary-color: #F56C82;
    --font-color: #3E3A39;
    --background-color: #ECEAE7;
    --white-color: #FFFFFF;
    --gray-color: #98958D;
    --hover-color: #808080;
    /* font */
    --font-jp: source-han-sans-japanese, sans-serif;
    --font-size-n: 14px; /* default */
    --font-size-xx: 34px;
    --font-size-x: 30px;
    --font-size-xl: 22px;
    --font-size-l: 20px;
    --font-size-ml: 18px;
    --font-size-m: 16px;
    --font-size-sm: 13px;
    --font-size-s: 12px;
    --font-size-ss: 11px;
}

/* 1000px */
@media screen and (max-width: 1000px) {
    :root {
        --font-size-n: 3.0769vw; /* 24px */
        --font-size-xx: 6.1538vw; /* 48px */
        --font-size-x: 5.6410vw; /* 44px */
        --font-size-xl: 5.3846vw; /* 42px */
        --font-size-l: 4.8717vw; /* 38px */
        --font-size-ml: 4.1025vw; /* 32px */
        --font-size-m: 3.5897vw; /* 28px */
        --font-size-sm: 2.8205vw; /* 22px */
        --font-size-s: 2.5641vw; /* 20px */
        --font-size-ss: 2.3076vw; /* 18px */
    }
}


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

/* HTML
---------------------------------------------------*/
html {
    margin: 0;
    padding: 0;
    min-height: 100%;
    font-size: 62.5%;
    overflow-y: scroll;
}
body {
    position: relative;
    width: 100%;
    line-height: 1;
    color: var(--font-color);
    font-family: var(--font-jp);
    text-transform: initial;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "palt" 1;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    font-optical-sizing: auto;
    font-size: var(--font-size-n);
    font-weight: 500;
    font-style: normal;
    background-color: var(--main-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
}
.sp-no {
    display: block;
}
br.sp-no {
    display: inline;
}
.pc-no {
    display: none;
}
br.pc-no {
    display: none;
}

/* 1000px */
@media screen and (max-width: 1000px) {
    body {
        min-width: auto;
        min-height: 100%;
        -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(--hover-color);
}
a.u {
    text-decoration: underline;
}
a,
a:hover,
.hover {
    -webkit-transition: opacity 0.5s, color 0.5s;
    transition: opacity 0.5s, color 0.5s;
}
.hover:hover {
    opacity: 0.8;
    filter: alpha(opacity=80);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}


/* clearfix
---------------------------------------------------*/
.clearfix {
    min-height: 1px;
    zoom: 1;
}
.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: '';
    clear: both;
    height: 0;
}
* 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%;
    line-height: 1.0em;
    font-weight: 500;
    background-color: var(--white-color);
    border: 1px solid var(--primary-color);
    -webkit-border-radius: 0.3em;
    border-radius: 0.3em;
    padding: 0.9em 1em;
    vertical-align: middle;
}
textarea {
    height: 8em;
    line-height: 1.4em;
    overflow: auto;
    resize: vertical;
}
select {
    width: 100%;
    font-weight: 500;
    background-color: var(--background-color);
    border: 1px solid var(--primary-color);
    vertical-align: middle;
    -webkit-border-radius: 0.4em;
    border-radius: 0.4em;
    padding: 0.9em 1em;
    line-height: 1.0em;
}
input:focus,
textarea:focus,
select:focus {
    background-color: #FFFEF8;
    border-color: #136EB1;
    box-shadow: 0 0 0 1px #1EA9DB;
    outline: 2px solid transparent;
}

.select {
    position: relative;
    display: block;
    width: 100%;
}
.select:before {
    position: absolute;
    content: '';
    top: 50%;
    right: 2em;
    transform: translate(0, -50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0.55em 0.4em 0 0.4em;
    border-color: var(--primary-color) transparent transparent transparent;
    cursor: pointer;
    pointer-events: none;
}
.select select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/** placeholder **/
.placeholder {color: #ccc;}
:placeholder-shown {color: #ccc;}
/* Google Chrome, Safari, Opera 15+, Android, iOS */
::-webkit-input-placeholder {color: #ccc;}
/* Firefox 18- */
:-moz-placeholder {color: #ccc;}
/* Firefox 19+ */
::-moz-placeholder {color: #ccc;}
/* IE 10+ */
:-ms-input-placeholder {color: #ccc !important;}

/* 1000px */
@media screen and (max-width: 1000px) {
    input[type="text"],
    input[type="password"],
    input[type="number"],
    input[type="tel"],
    input[type="email"],
    input[type="url"],
    textarea {
        font-size: 20px;
        -webkit-appearance: none;
    }
    select {
        font-size: 20px;
        -webkit-appearance: none;
    }
    .placeholder,
    :placeholder-shown,
    ::-webkit-input-placeholder,
    :-moz-placeholder,
    ::-moz-placeholder,
    :-ms-input-placeholder {
        font-size: 3.125vw;
    }
}

/* .checkbox
-------------------------------------------------------------- */
input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}
.checkbox {
    position: relative;
    display: inline-block;
    padding-left: 2em;
    cursor: pointer;
    transition: 0.5s;
}
.checkbox:hover {
    color: var(--primary-color);
}
.checkbox:after,
.checkbox:before {
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    width: 17px;
    height: 17px;
    background-color: var(--white-color);
    border-radius: 3px;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}
.checkbox:after {
    border: 1px solid #C7C7C7;
    z-index: 10;
}
.checkbox:before {
    background-image: url('../img/common/icon_check.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 12px 9px;
    opacity: 0;
    z-index: 20;
}
input[type="checkbox"]:checked + .checkbox:after {
    border-color: var(--primary-color);
}
input[type="checkbox"]:checked + .checkbox:before {
    opacity: 1;
    background-color: var(--primary-color);
}

/* 1000px */
@media screen and (max-width: 1000px) {
    .checkbox:after,
    .checkbox:before {
        width: 4.6153vw;
        height: 4.6153vw;
        border-radius: 0.5128vw;
    }
    .checkbox:before {
        background-size: 3.3333vw 2.5641vw;
    }
}


/* common
---------------------------------------------------*/
svg {
    display: block;
    width: 100%;
    height: auto;
    fill: var(--main-color);
}
.en {
    /*font-family: "Amarante", serif;*/
    /*font-weight: 400;*/
    /*font-style: normal;*/
}

/* wrapper
---------------------------------------------------*/
#wrapper {
    position: relative;
    width: 100%;
    background-color: var(--background-color);
    margin: 0 auto;
    padding-top: 78px;
    overflow: hidden;
}
/* contents-wrap */
.contents-wrap {
    position: relative;
    width: 96%;
    max-width: 1000px;
    margin: 0 auto;
}
/* contents-block */
.contents-block {
    background-color: var(--white-color);
    border-radius: 16px;
    padding: 80px 40px;
}

/* 1000px */
@media screen and (max-width: 1000px) {
    #wrapper {
        padding-top: 14.7435vw;
    }
    .contents-wrap {
        width: 91.2820vw;
    }
    .contents-block {
        border-radius: 2.5vw;
        padding: 12.5vw 6.25vw;
    }
}


/* Header
---------------------------------------------------*/
#Header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #F1F2F2;
    z-index: 999;
}
#Header .header-inner {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    max-width: 1280px;
    padding-left: 40px;
    padding-right: 50px;
    margin: 0 auto;
}
#Header .header-inner .logo {
    padding: 27px 0 17px;
}
#Header .header-inner .logo img {
    width: 182px;
}
#g-nav .g-nav-logo {
    display: none;
}
#g-nav ul.menu {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}
#g-nav ul.menu > li:not(:last-of-type){
    margin-right: 50px;
}
#g-nav ul.menu > li > a,
#g-nav ul.menu > li > span {
    font-size: var(--font-size-m);
    font-weight: 500;
    letter-spacing: 0.08em;
    padding: 28px 0;
    cursor: pointer;
}
#g-nav ul.menu > li > a:hover,
#g-nav ul.menu > li.is-active > a,
#g-nav ul.menu > li > span:hover,
#g-nav ul.menu > li.is-active > span {
    color: var(--primary-color);
}

/* sub-menu-wrapper */
#g-nav .sub-menu-wrapper {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    width: 100%;
    height: calc(100vh - 78px);
    background-color: rgba(35, 24, 21, 0.85);
    backdrop-filter: blur(3px);
    padding: 0 40px;
    pointer-events: none;
}
#g-nav .sub-menu-wrapper.is-active {
    /*display: block;*/
}
#g-nav .sub-menu-block {
    pointer-events: auto;

    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
    max-width: 1280px;
    background-color: var(--white-color);
    border-radius: 0 0 20px 20px;
    padding: 22px 20px 60px;
    margin: 0 auto;
}
#g-nav .sub-menu-block .sub-menu {
    width: 18.25%;
    max-width: 219px;
}
#g-nav .sub-menu-block .sub-menu:not(:last-of-type) {
    margin-right: 40px;
}
#g-nav .sub-menu-block .sub-menu > .title {
    color: var(--primary-color);
    font-size: var(--font-size-sm);
    font-weight: 500;
    letter-spacing: 0.24em;
    border-bottom: 1px solid #DFE0E2;
    padding: 12px 0;
}
#g-nav .sub-menu-block .sub-menu > .title .icon {
    margin-right: 16px;
}
#g-nav .sub-menu-block .sub-menu > .title .icon img {
    width: 30px;
}
#g-nav .sub-menu-block .sub-menu > ul > li > a {
    position: relative;
    display: block;
    color: var(--font-color);
    font-size: var(--font-size-sm);
    font-weight: 500;
    letter-spacing: 0.1em;
    border-bottom: 1px solid #DFE0E2;
    padding: 16px 0;
    transition: 0.5s;
}
#g-nav .sub-menu-block .sub-menu > ul > li > a::after {
    position: absolute;
    content: '';
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    width: 18px;
    height: 18px;
    border: 1px solid #E6E6E6;
    border-radius: 50%;
    background-image: url('../img/common/icon_navi_arrow.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 8px 6px;
    transition: 0.5s;
}
/* hover */
#g-nav .sub-menu-block .sub-menu > ul  > li > a:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}
#g-nav .sub-menu-block .sub-menu > ul  > li > a:hover::after {
    border-color: var(--primary-color);
}

/* btn-menu-close */
.btn-menu-close {
    display: none;
}

/* btnMenu */
#btnMenu {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 78px;
    cursor: pointer;
    z-index: 99;
}
#btnMenu .menu-trigger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45px;
    height: 30px;
    z-index: 10;
}
#btnMenu .menu-trigger,
#btnMenu .menu-trigger span {
    transition: all 0.5s;
}
#btnMenu .menu-trigger span {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background-color: #231815;
}
#btnMenu .menu-trigger span:nth-of-type(1) {
    width: 100%;
    top: 0;
}
#btnMenu .menu-trigger span:nth-of-type(2) {
    top: calc(50% - 1px);
}
#btnMenu .menu-trigger span:nth-of-type(2):after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #231815;
    transition: all 0.15s;
}
#btnMenu .menu-trigger span:nth-of-type(3) {
    top: auto;
    bottom: 0;
}
#btnMenu .menu-trigger.active span:nth-of-type(1) {
    transform: translate(50%) scale(0);
}
#btnMenu .menu-trigger.active span:nth-of-type(2) {
    transform: rotate(45deg);
}
#btnMenu .menu-trigger.active span:nth-of-type(2)::after {
    transform: rotate(90deg);
}
#btnMenu .menu-trigger.active span:nth-of-type(3) {
    transform: translate(-50%) scale(0);
}

/* 1000 */
@media screen and (max-width: 1000px) {
    #Header .header-inner {
        padding-left: 4.4871vw;
        padding-right: 4.4871vw;
    }
    #Header .header-inner .logo {
        padding: 4.3589vw 0 2.5641vw;
    }
    #Header .header-inner .logo img {
        width: 41.7948vw;
    }
    #g-nav {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(35, 24, 21, 0.85);
        padding: 2.6923vw;
        z-index: 999;
    }
    #g-nav .g-nav-inner {
        max-height: 100%;
        overflow-y: auto;
        background-color: var(--white-color);
        border-radius: 2.5641vw;
        padding: 7.6923vw 6.0256vw;
    }
    #g-nav .g-nav-inner::-webkit-scrollbar {
        width: 4px;
    }
    #g-nav .g-nav-inner::-webkit-scrollbar-track {
        border-radius: 4px;
        box-shadow: inset 0 0 2px rgba(0, 0, 0, .1);
    }
    #g-nav .g-nav-inner::-webkit-scrollbar-thumb {
        background-color: rgba(0, 0, 0, .5);
        border-radius: 4px;
        box-shadow:0 0 0 1px rgba(255, 255, 255, .3);
    }

    #g-nav .g-nav-logo {
        display: block;
        margin-bottom: 5.7692vw;
    }
    #g-nav .g-nav-logo img {
        width: 54.7435vw;
    }
    #g-nav ul.menu {
        display: block;
    }
    #g-nav ul.menu > li:not(:last-of-type){
        margin-right: 0;
    }
    #g-nav ul.menu > li > a,
    #g-nav ul.menu > li > span {
        position: relative;
        display: block;
        font-size: var(--font-size-ml);
        padding: 3.8461vw 0;
    }
    #g-nav ul.menu > li > a::after,
    #g-nav ul.menu > li > span::after {
        position: absolute;
        content: '';
        top: 50%;
        right: 0;
        transform: translate(0, -50%);
        width: 2.0512vw;
        height: 3.0769vw;
        border-radius: 50%;
        background-image: url('../img/common/icon_arrow_black.svg');
        background-repeat: no-repeat;
        background-position: center center;
        background-size: contain;
        transition: 0.5s;
    }
    #g-nav ul.menu > li.know > a::after,
    #g-nav ul.menu > li.know > span::after {
        transform: translate(0, -50%) rotate(-90deg);
    }
    #g-nav ul.menu > li.know > a.is-active::after,
    #g-nav ul.menu > li.know > span.is-active::after {
        transform: translate(0, -50%) rotate(90deg);
    }
    #g-nav ul.menu > li > a:hover,
    #g-nav ul.menu > li.is-active > a,
    #g-nav ul.menu > li > span:hover,
    #g-nav ul.menu > li.is-active > span {
        color: var(--font-color);
    }

    /* sub-menu-wrapper */
    #g-nav .sub-menu-wrapper {
        display: block;
        position: static;
        height: auto;
        background: none;
        padding: 0;
    }
    #g-nav .sub-menu-block {
        display: block;
        background: none;
        border-radius: 0;
        padding: 0;
    }
    #g-nav .sub-menu-block .sub-menu {
        display: -webkit-flex;
        display: flex;
        width: 100%;
        max-width: none;
        border-bottom: 1px solid #DFE0E2;
    }
    #g-nav .sub-menu-block .sub-menu:not(:last-of-type) {
        margin-right: 0;
    }
    #g-nav .sub-menu-block .sub-menu > .title {
        width: 42.55%;
        font-size: var(--font-size-sm);
        letter-spacing: 0.16em;
        border: none;
        padding: 2.8205vw 0;
    }
    #g-nav .sub-menu-block .sub-menu > .title .icon {
        margin-right: 2.5641vw;
    }
    #g-nav .sub-menu-block .sub-menu > .title .icon img {
        width: 4.8717vw;
    }
    #g-nav .sub-menu-block .sub-menu > ul {
        width: 57.45%;
    }
    #g-nav .sub-menu-block .sub-menu > ul > li > a {
        font-size: var(--font-size-m);
        letter-spacing: 0.14em;
        padding: 3.5897Vw 0;
    }
    #g-nav .sub-menu-block .sub-menu > ul > li > a::after {
        display: none;
    }
    #g-nav .sub-menu-block .sub-menu > ul > li:last-of-type > a {
        border: none;
    }

    /* btn-menu-close */
    .btn-menu-close {
        display: block;
        text-align: center;
        margin-top: 4.1025vw;
    }
    .btn-menu-close span {
        display: inline-block;
        background-color: var(--font-color);
        border-radius: 5.3846vw;
        padding: 3.5897vw 11.5384vw;
        cursor: pointer;
    }
    .btn-menu-close span img {
        width: 3.3333vw;
    }

    /* btnMenu */
    #btnMenu {
        display: block;
        width: 14.74358vw;
        height: 14.7435vw;
    }
    #btnMenu .menu-trigger {
        width: 5.7692vw;
        height: 3.8461vw;
    }
}


/* Footer
---------------------------------------------------*/
#Footer {
    background-color: var(--main-color);
    margin-top: 180px;
}
#Footer .footer-inner {
    /*max-width: 1280px;*/
    padding: 80px 50px 50px;
    margin: 0 auto;
}
/* footer-wrap */
#Footer .footer-wrap {
    display: -webkit-flex;
    display: flex;
}
#Footer .footer-wrap .logo {
    width: 213px;
    margin-right: 125px;
}
#Footer .footer-wrap .logo a {
    display: block;
}
#Footer .footer-wrap .logo img {
    width: 100%;
}
#Footer .footer-wrap .navigation {
    margin-top: -6px;
}
#Footer .footer-wrap .navigation:not(:last-of-type) {
    margin-right: 96px;
}
#Footer .footer-wrap .navigation ul.menu > li {
    line-height: 2.4em;
    color: var(--white-color);
    font-size: var(--font-size-m);
    letter-spacing: 0.34em;
}
#Footer .footer-wrap .navigation ul li a:hover {
    opacity: 0.8;
}
#Footer .footer-wrap .navigation ul.menu > li > a,
#Footer .footer-wrap .navigation ul.menu > li > span {
    color: var(--white-color);
    font-size: var(--font-size-m);
    letter-spacing: 0.34em;
}
#Footer .footer-wrap .navigation ul.sub-menu > li {
    line-height: 2.5em;
}
#Footer .footer-wrap .navigation ul.sub-menu > li.title {
    color: var(--gray-color);
    font-size: var(--font-size-s);
}
#Footer .footer-wrap .navigation ul.sub-menu > li.title .icon {
    margin-right: 12px;
}
#Footer .footer-wrap .navigation ul.sub-menu > li.title .icon img {
    width: 23px;
}
#Footer .footer-wrap .navigation ul.sub-menu > li:not(.title) > a,
#Footer .footer-wrap .navigation ul.sub-menu > li:not(.title) > span {
    color: var(--white-color);
    font-size: var(--font-size-s);
    letter-spacing: 0.155em;
    margin-left: 35px;
}
#Footer .footer-wrap .navigation ul.sns > li {
    line-height: 2.4em;
}
#Footer .footer-wrap .navigation ul.sns > li > a {
    color: var(--white-color);
    font-size: var(--font-size-s);
    letter-spacing: 0.16em;
}
#Footer .footer-wrap .navigation ul.sns > li .icon {
    margin-right: 12px;
}
#Footer .footer-wrap .navigation ul.sns > li .icon img {
    width: 18px;
}
/* copyright-wrap */
#Footer .copyright-wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-end;
    align-items: flex-end;
}
#Footer .copyright-wrap .copyright {
    color: #595757;
    font-size: var(--font-size-ss);
    letter-spacing: 0.155em;
}
#Footer .copyright-wrap .logo-jba a {
    display: block;
}
#Footer .copyright-wrap .logo-jba a img {
    width: 234px;
}

@media screen and (max-width: 1000px) {
    #Footer {
        margin-top: 12.8205vw;
    }
    #Footer .footer-inner {
        width: 100%;
        padding: 12.1794vw 6.4102vw 10.6410vw;
    }
    /* footer-wrap */
    #Footer .footer-wrap {
        display: block;
    }
    #Footer .footer-wrap .logo {
        width: 58.9743vw;
        margin-right: 0;
        margin-bottom: 9.6153vw;
    }
    #Footer .footer-wrap .navigation {
        margin-top: 0;
    }
    #Footer .footer-wrap .navigation:not(:last-of-type) {
        margin-right: 0;
        margin-bottom: 7.6923vw;
    }
    #Footer .footer-wrap .navigation ul.menu > li {
        line-height: 3em;
    }
    #Footer .footer-wrap .navigation ul.menu > li > a,
    #Footer .footer-wrap .navigation ul.menu > li > span {
        font-size: var(--font-size-m);
        letter-spacing: 0.28em;
    }
    #Footer .footer-wrap .navigation ul.sub-menu > li {
        line-height: 2.7em;
    }
    #Footer .footer-wrap .navigation ul.sub-menu > li.title {
        font-size: var(--font-size-sm);
        letter-spacing: 0.23em;
    }
    #Footer .footer-wrap .navigation ul.sub-menu > li.title .icon {
        margin-right: 3.8461vw;
    }
    #Footer .footer-wrap .navigation ul.sub-menu > li.title .icon img {
        width: 4.8717vw;
    }
    #Footer .footer-wrap .navigation ul.sub-menu > li:not(.title) > a,
    #Footer .footer-wrap .navigation ul.sub-menu > li:not(.title) > span {
        font-size: var(--font-size-sm);
        letter-spacing: 0.23em;
        margin-left: 8.7178vw;
    }
    #Footer .footer-wrap .navigation ul.sns > li {
        line-height: 2.7em;
    }
    #Footer .footer-wrap .navigation ul.sns > li > a {
        font-size: var(--font-size-s);
        letter-spacing: 0.1em;
    }
    #Footer .footer-wrap .navigation ul.sns > li .icon {
        margin-right: 2.5641vw;
    }
    #Footer .footer-wrap .navigation ul.sns > li .icon img {
        width: 4.3589vw;
    }
    /* copyright-wrap */
    #Footer .copyright-wrap {
        margin-top: 10.2564vw;
    }
    #Footer .copyright-wrap .copyright {
        font-size: var(--font-size-ss);
    }
    #Footer .copyright-wrap .logo-jba a img {
        width: 30.8974vw;
    }
}

/* title
---------------------------------------------------*/
.page-title {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
    height: 195px;
    background-image: url('../img/common/bg_hdr.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    margin-bottom: 61px;
}
.page-title .ttl-page {
    line-height: 1.75em;
    color: var(--white-color);
    font-size: var(--font-size-x);
    font-weight: 700;
    letter-spacing: 0.26em;
}

/* 1000 */
@media screen and (max-width: 1000px) {
    .page-title {
        height: 37.1794vw;
        margin-bottom: -8.7179vw;
    }
    .page-title .ttl-page {
        padding-bottom: 6.6666vw;
    }
}


/* Effect
---------------------------------------------------*/
.fadein {
    opacity: 0.0;
    transform: scale(1.0) translate(0, 60px);
    transition: opacity 0.8s, transform 0.8s;
    -webkit-transition: opacity 0.8s, transform 0.8s;
}
.fadein_on {
    opacity: 1.0;
    transform: scale(1.0) translate(0, 0);
}

/* scale-in */
.fadein.scale-in {
    transform: scale(1.0) translate(0, 0);
    transition: 0.5s;
    -webkit-transition: 0.5s;
    transition-timing-function: ease-in;
    -webkit-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(5px);
}
.fadein_on.scale-in {
    opacity: 1.0;
    transform: scale(1.0) translate(0, 0);
    -webkit-filter: blur(0px);
    -ms-filter: blur(0px);
    filter: blur(0px);
}

/* fadeout */
.fadeout_on {
    filter: alpha(opacity=0) !important;
    opacity: 0.0 !important;
    transform: scale(1.0) !important;
}
.animated {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}


/* Slider
---------------------------------------------------*/
.slick-slider {
    position: relative;
    display: none;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
.slick-slider.slick-initialized {
    display: block;
}
.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus {
    outline: none;
}
.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-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;
}
[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;
}

/*---------------------------------------*/
/* Slider */
.slick-loading .slick-list {
    background: #fff;
}
/* Arrows */
.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
    z-index: 1;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    outline: none;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: .25;
}
.slick-prev:before,
.slick-next:before {
    display: block;
    content: '';
    width: 20px;
    height: 20px;
    border-top: 1px solid #000;
    opacity: .75;
}
.slick-prev {
    left: 20px;
}
.slick-prev:before {
    border-left: 1px solid #000;
    transform: rotate(-45deg);
}
.slick-next {
    right: 20px;
}
.slick-next:before {
    border-right: 1px solid #000;
    transform: rotate(45deg);
}

/* Dots */
.slick-dots {
    position: absolute;
    bottom: -30px;
    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: 10px;
    margin: 0 10px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 10px;
    height: 10px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: #ccc;
    border-radius: 50%;
    -webkit-border-radius: 50%;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}
.slick-dots li.slick-active button {
    background-color: #ddd;
}

/* slick theme
---------------------------------------------------*/

/* Below 768px */
@media screen and (min-width:1px) and (max-width: 768px) {

    /* Dots */
    .slick-dots {
        bottom: -6.25vw;
    }
    .slick-dots li {
        width: 1.875vw;
        height: 1.875vw;
        margin: 0 1.5625vw;
    }
    .slick-dots li button {
        width: 1.875vw;
        height: 1.875vw;
    }
}


/* colorbox
---------------------------------------------------*/
/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:9999; overflow:hidden; -webkit-transform: translate3d(0,0,0);}
#cboxWrapper {max-width:none;}
#cboxOverlay{position:fixed; width:100%; height:100%;}
#cboxMiddleLeft, #cboxBottomLeft{clear:left;}
#cboxContent{position:relative;}
#cboxLoadedContent{overflow:auto; -webkit-overflow-scrolling: touch;}
#cboxTitle{margin:0;}
#cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%; height:100%;}
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;}
.cboxPhoto{float:left; margin:auto; border:0; display:block; max-width:none; -ms-interpolation-mode:bicubic;}
.cboxIframe{width:100%; height:100%; display:block; border:0; padding:0; margin:0;}
#colorbox, #cboxContent, #cboxLoadedContent{box-sizing:content-box; -moz-box-sizing:content-box; -webkit-box-sizing:content-box;}

/*
    User Style:
    Change the following styles to modify the appearance of Colorbox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay{background:#000; opacity: 0.3; filter: alpha(opacity = 30);}
#colorbox{outline:0;box-shadow: 0 0 60px 8px rgba(0,0,0,.2);}
#cboxContent{overflow:visible; background:#fff;}
.cboxIframe{background:#fff;}
#cboxError{padding:50px; border:1px solid #ccc;}
#cboxLoadedContent{background:#fff;}
#cboxLoadingGraphic{/*background:url(images/loading.gif) no-repeat center center;*/}
#cboxLoadingOverlay{background:#fff;}
#cboxTitle{position:absolute; top:-22px; left:0; color:#000;}
#cboxCurrent{position:absolute; top:-22px; right:205px; text-indent:-9999px;}

/* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
#cboxPrevious, #cboxNext, #cboxSlideshow {border:0; padding:0; margin:0; overflow:visible; text-indent:-9999px; width:20px; height:20px; position:absolute; top:0; background:url(./images/controls.png) no-repeat 0 0; z-index: 99}
#cboxClose {border:0; padding:0; margin:0; overflow:visible; text-indent:-9999px; width:36px; height:36px; position:absolute; top:30px; background:url('./images/btn_close.png') no-repeat 0 0; z-index: 99}

/* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
#cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {outline:0;}

#cboxPrevious{background-position:0 0; right:44px;}
#cboxPrevious:hover{background-position:0 -25px;}
#cboxNext{background-position:-25px 0; right:22px;}
#cboxNext:hover{background-position:-25px -25px;}
#cboxClose{background-position:center; right:30px;}
#cboxClose:hover{opacity: 0.8}
.cboxSlideshow_on #cboxPrevious, .cboxSlideshow_off #cboxPrevious{right:66px;}
.cboxSlideshow_on #cboxSlideshow{background-position:-75px -25px; right:44px;}
.cboxSlideshow_on #cboxSlideshow:hover{background-position:-100px -25px;}
.cboxSlideshow_off #cboxSlideshow{background-position:-100px 0; right:44px;}
.cboxSlideshow_off #cboxSlideshow:hover{background-position:-75px -25px;}
