@charset "UTF-8";

/* 共通部分
------------------------------- */
html {
    font-size: 100%;
}

body {
    font-family: "Noto Sans JP", "Open Sans", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", sans-serif;
    line-height: 1.7;
    font-style: normal;
    font-weight: 400;
    color: #333;
    background-color: #fff;
}

:root {
    /* カラー */
    --main-color: #14528d;
    --bg-color-01: #FBFBFB;
    --bg-color-02: #F6F6F6;
    --bg-color-03: #F2F2F2;
    --text-eng-color: #8B8B8B;

    /* 各フォント */
    --font-eng: "Open Sans", serif;
}

a {
    text-decoration: none;
    color: #333;
}

a:hover {
    opacity: 0.8;
}

img {
    max-width: 100%;
}

ul, li {
    list-style: none;
}

p {
    margin-bottom: 20px;
}

.sp {
    display: none;
}

.pc {
    display: block;
}

.wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.center {
    text-align: center;
}

/* ボタン */
.button {
    margin: 30px 0 30px;
}

.button a {
    position: relative;
    display: inline-block;
    font-size: 1rem;
    color: #fff;
    padding: 10px 50px 10px 20px;
    border-radius: 6px;
    min-width: 200px;
}

.button a::after {
    position: absolute;
    content: '';
    width: 8px;
    height: 8px;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    right: 15px;
    top: 20px;
}

.button a.arrow-top::after {
    transform: rotate(-45deg);
    top: 19px;
}

.button a.arrow-bottom::after {
    transform: rotate(135deg);
    top: 4px;
}

.button a.arrow-left::after {
    transform: rotate(-135deg);
}

.button a.arrow-right::after {
    transform: rotate(45deg);
}

.button a.typeA {
    background: var(--main-color);
    border: 1px solid var(--main-color);
}

.button a.typeA:hover {
    background: #fff;
    color: var(--main-color);
}

.button a.typeA:hover::after {
    border-color: var(--main-color);
}

.button a.typeB {
    padding: 10px 20px 10px 50px;
    background: unset;
    color: #333;
    border: unset;
}

.button a.typeB::after {
    border-color: #333;
    right: 0;
}

.button a.typeA.pagetop {
    background-color: var(--main-color);
    border: none;
    height: 50px;
    width: 50px !important;
    min-width: 50px;
    padding: 0;
}

.button a.pagetop.arrow-top::after {
    top: 24px;
    right: 21px;
}

.button a.typeA.pagetop:hover::after {
    border-color: #fff;
}

.txtEng {
    font-family: var(--font-eng);
}

.bold {
    font-weight: bold;
}

.bd-bottom {
    border-bottom: 1px solid;
}

/* HEADER
------------------------------- */
.page-header {
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 95%;
    height: 100px;
    background-color: #fff;
    border-radius: 8.6933px;
    z-index: 99;
    transition: all 0.6s ease;
}

.page-header.DownMove {
    background-color: rgb(255, 255, 255, 80%);
    transition: all 0.6s ease;
    width: 100%;
    height: 80px;
    border-radius: 0;
}

.logo {
    display: flex;
    justify-content: start;
    align-items: center;
}

.logo a {
    font-family: var(--logo-font);
    font-size: 36px;
    font-weight: 300;
    font-style: normal;
    letter-spacing: 1rem;
    line-height: 1;
    color: var(--main-color);
    padding-left: 40px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    flex-direction: row;
    align-items: center;
}

/* 小さな画面に対応
------------------------------- */
@media (max-width: 1059px) {
    .main-nav ul {
        gap: 22px;
        padding-right: 10px;
    }
}

@media (min-width: 1060px) {
    .main-nav ul {
        gap: 35px;
        padding-right: 40px;
    }
}

.main-nav ul a {
    padding-bottom: 5px;
    position: relative;
}

.main-nav ul a::before {
    background: #000;
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    margin: auto;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform .3s;
}

.main-nav ul a:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
}

.main-nav .login, .nav-drawer .login {
    background-color: #A38A77;
    border: 1px solid #A38A77;
    color: var(--text-bright-color);
    padding: 3px 5px;
}

.main-nav .login:hover {
    background-color: var(--text-bright-color);
    color: #A38A77;
}

.main-nav .login::before, .main-nav .login::after {
    background: none;
}

header li.lang-btn {
    margin: 0;
    padding: 0;
}

header li.lang-btn a {
    padding-left: 25px;
}

header li.lang-btn div {
    position: relative;
    align-items: start;
    margin: 0;
    padding: 0;
}

header li.lang-btn div img {
    position: absolute;
    top: 0px;
    left: -2px;
    width: 27px;
    height: 27px;
}

div.lang-sp-btn a img {
    width: 40px;
    height: 40px;
}

/* ハンバーガーメニュー
------------------------------- */
.menu-btn {
    position: fixed;
    top: 30px;
    right: 33px;
    width: 27px;
    height: 27px;
    user-select: none;
    z-index: 999;
    transition: 0.5s all;
}

.menu-btn .menu-bar {
    width: 35px;
    height: 2px;
    background-color: var(--main-color);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: top .2s .2s ease, -webkit-transform .2s ease;
    transition: top .2s .2s ease, -webkit-transform .2s ease;
    transition: top .2s .2s ease, transform .2s ease;
    transition: top .2s .2s ease, transform .2s ease, -webkit-transform .2s ease;
}

.menu-btn .menu-bar.b-1 {
    top: calc(50% - 10px);
}

.menu-btn .menu-bar.b-2 {
    top: 50%;
    -webkit-transition: opacity .2s .2s ease;
    transition: opacity .2s .2s ease;
}

.menu-btn .menu-bar.b-2 {
    top: calc(50% + 10px);
}

.menu-btn.js-is-open .menu-bar.b-1 {
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
    z-index: 999;
    background-color: var(--main-color);
}

.menu-btn.js-is-open .menu-bar.b-2 {
    opacity: 0;
}

.menu-btn.js-is-open .menu-bar.b-3 {
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 999;
    background-color: var(--main-color);
}

.nav-drawer {
    display: none;
    width: 100%;
    height: 100%;
    padding: 90px 0 10px 0;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
}

.nav-drawer .logo {
    padding-left: 5px;
    height: 70px;
    justify-content: start;
}

.nav-drawer ul {
    width: 100%;
    margin: 0 auto;
}

.nav-drawer ul li a {
    display: block;
    padding: 20px 0;
    padding-left: 15%;
    border-top: 1px solid rgb(22, 84, 144, 20%)
}

.nav-drawer ul li:last-child {
    border-bottom: 1px solid rgb(22, 84, 144, 20%)
}

.nav-drawer.active {
    display: block;
}

.nav-drawer .login {
    display: inline-block;
    margin-top: 30px;
}

.contents p {
    line-height: 2;
    margin-bottom: 15px;
}

/* コンテンツタイトル　*/
.title {
    margin-bottom: 40px;
}

.content-title-jp {
    display: block;
    font-weight: 500;
    font-size: 40px;
    position: relative;
    text-align: center;
    z-index: 1;
    top: 0.18em;
    margin-bottom: 10px;
}

.content-title-eng {
    font-family: var(--font-eng);
    font-weight: normal;
    color: var(--text-eng-color);
    display: block;
    letter-spacing: 3px;
    font-size: 16px;
    text-align: center;
}

figure {
    margin: 40px 0 20px;
}

section.bg-odd:nth-child(odd) {
    background-color: var(--bg-color-02);
}

section.items .items-inner {
    padding-bottom: 50px;
}

section.items:last-child .items-inner {
    padding-bottom: 0;
}

section.items .items-title {
    font-size: 20px;
    padding-bottom: 20px;
    padding-top: 65px;
    margin-bottom: 50px;
    border-bottom: .6px solid #cccabd;
    font-weight: 600;
}

section.items .items-line {
    background: url(../img/bottom-line.png) bottom;
    background-repeat: repeat-x;
    background-size: 130px;
    padding-top: 90px;
}

section.items .items-detail {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin-top: 30px;
}

section.items .items-detail .detail-img {
    display: flex;
    flex-wrap: nowrap;
    column-gap: 2%;
    width: 45%;
}

section.items .items-detail .detail-img img {
    object-fit: contain;
    width: 222px;
    height: auto;
}

section.items .items-detail .detail-img.single img {
    width: 100%;
}

section.items .items-detail .detail-text {
    padding: 5.5% 4.5% 0 9.7%;
    width: 65%;
}

section.items:nth-child(even) .items-detail .detail-text {
    padding: 5.5% 9.7% 0 4.5%;
}

section.items .items-detail-title {
    display: block;
    font-size: 18px;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
}

section.items .detail-title-wrapper {
    display: inline-block;
    position: relative;
    padding: 4px 20px;
    min-width: 368px;
    text-align: center;
    margin: 0 auto;
}

section.items .detail-text-title-top {
    font-weight: 400;
    text-align: center;
    margin-bottom: 40px;
}

section.items .detail-title-wrapper::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 7px;
    height: 100%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(../img/detail-titel-line-left.png) no-repeat center / auto;
}

section.items .detail-title-wrapper::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 7px;
    height: 100%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(../img/detail-titel-line-right.png) no-repeat center / auto;
}

section.items .detail-title-intro {
    color: #8B8B8B;
    font-size: 12px;
    padding-right: .3rem;
    line-height: 27px;
    vertical-align: middle;
}

section.items .detail-title-number {
    color: #8B8B8B;
    font-family: var(--font-eng);
    line-height: 27px;
    font-size: 20px;
    vertical-align: middle;
}

section.items .detail-title-intro::after {
    content: "";
    display: inline-block;
    height: 5px;
    width: 5px;
    border-top: 1px solid #8B8B8B;
    margin-left: .3rem;
}

section.items .items-detail p {
    font-size: 14px;
}

section.items:nth-child(even) .items-detail {
    flex-direction: row-reverse;
}

section.items.wide .items-detail {
    flex-direction: column-reverse;
}

section.items.wide .items-detail .detail-img {
    width: 100%;
    justify-content: center;
}

section.items.wide .items-detail .detail-text {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

section.items .items-detail .detail-text ul li {
    font-size: 14px;
}
section.items .items-detail .detail-text ul li {        
    margin-bottom: 15px;
}

/* fadeUp */
.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    opacity: 0;
}

.fadeInLeftShort {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
}

.fadeInRightShort {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
}

.fadeInLeftShort.go {
    -webkit-animation-name: fadeInLeftShort;
    animation-name: fadeInLeftShort;
}

.fadeInRightShort.go {
    -webkit-animation-name: fadeInRightShort;
    animation-name: fadeInRightShort;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.delay-time03 {
    animation-delay: 0.3s;
}

.delay-time06 {
    animation-delay: 0.6s;
}

.delay-time10 {
    animation-delay: 1s;
}

/* パンくず
------------------------------- */
.breadcrumb-wrapper {
    margin-top: 100px;
    background-color: #f5f5f5;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    font-size: 12px;
    padding: 5px 0 5px 8px;
    width: 90%;
    margin: 0 auto;
}

.breadcrumb-list {
    height: 20px;
    line-height: 20px;
    vertical-align: middle;
}

.breadcrumb-list:not(:last-of-type)::after {
    display: inline-block;
    content: '';
    width: 6px;
    height: 6px;
    margin: 0 .6em;
    margin-bottom: 1px;
    border-top: solid 1px #333;
    border-right: solid 1px #333;
    transform: rotate(45deg);
    vertical-align: middle;
}

/* アニメーション
------------------------------- */
@keyframes textSlide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRightShort {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeftShort {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* コンテンツ詳細ページ　全ページ共通
------------------------------- */
/* 大きな背景画像 */
.big-bg {
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.anchor::before {
    content: '';
    display: block;
    padding-top: 80px;
    margin-top: -80px;
}

.content-inner {
    padding-top: 60px;
    padding-bottom: 60px;
}

.button.beta {
    margin-top: 30px;
}

.small {
    font-size: 95% !important;
}

.accent-color {
    color: #14528d;
}

/* フッター
------------------------------- */
footer {
    background: var(--footer-color);
    text-align: center;
    position: relative;
}

.button a.typeA.pagetop {
    position: absolute;
    bottom: 85px;
    right: 20px;
}

footer .logo-block {
    display: flex;
    justify-content: center;
    padding-bottom: 38px;
}

footer .logo a, footer a {
    color: #333;
    text-align: left;
    padding: 0;
}

footer a {
    font-size: 0.875rem;
}

.logo img {
    max-width: 100%;
    height: 55px;
}

footer .logo img {
    height: 60px;
}

footer .button {
    margin: 0;
}

.footer {
    padding: 70px 0 80px;
}

.footer-menu .footer-sitemap {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    column-gap: 30px;
    color: #333;
}

.footer-menu .footer-sitemap li {
    border-right: 1px solid #333;
    padding-right: 30px;
    line-height: 1;
}

.footer-menu .footer-sitemap li:last-child {
    border: none;
    padding-right: 0;
}

.footer-menu .footer-sitemap .footer-item {
    text-align: left;
}

.footer-menu .footer-sitemap .footer-item .footer-itemLink {
    font-size: 1rem;
}

.footer-menu .footer-sitemap .footer-item a {
    position: relative;
    padding-bottom: 3px;
}

.footer-menu .footer-sitemap .footer-item a::before {
    background: #fff;
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    margin: auto;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform .3s;
}

.footer-menu .footer-sitemap .footer-item a:hover::before {
    opacity: 1;
    transform-origin: left top;
    transform: scale(1, 1);
}

.footer-menu .footer-sitemap .footer-item .footer-itemChild {
    margin-top: 10px;
}

.footer-menu .footer-sitemap .footer-item .footer-itemChild a {
    color: #bebebe;
}

footer .copy {
    color: #fff;
    text-align: center;
    display: flex;
    height: 50px;
    align-items: center;
    justify-content: center;
    background-color: #333;
}

/* SNSメニュー　*/
footer .sns-menu ul {
    display: flex;
    justify-content: center;
    gap: 30px;
    transform: none;
    -webkit-transform: none;
}

footer .sns-menu li a {
    display: inline-block;
    width: 40px;
    height: 40px;
}

footer .sns-menu img {
    width: 100%;
    height: auto;
}

footer .sns-menu li a.YouTube {
    width: 50px;
}

footer .sns-menu li a.YouTube img {
    height: 37px;
    width: 100%;
    object-fit: contain;
    padding-top: 4px;
}

footer .sns-menu li a.X {
    padding-top: 3px;
    width: 33px;
    height: 33px;
}

.footer-menu {
    padding-bottom: 43px;
}

/* モバイル版 &　タブレット版
------------------------------- */
@media screen and (min-width: 360px) and (max-width: 960px) {
    p {
        font-size: 14px !important;
        margin-bottom: 10px;
    }

    .button a {
        font-size: 14px;
    }

    .sp {
        display: block;
    }

    .pc {
        display: none !important;
    }

    .small {
        font-size: 14px !important;
    }

    .content-title-jp {
        font-size: 24px;
    }

    .content-title-eng {
        font-size: 12px;
    }

    .title {
        margin-bottom: 25px;
    }

    .wrapper {
        max-width: 90%;
        margin: 0 auto;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .main-nav {
        display: none;
    }

    .page-header {
        width: 95%;
        flex-direction: row;
        top: 10px;
        height: 70px;

    }

    .page-header.DownMove {
        width: 95%;
        border-radius: 8.6933px;
        height: 70px;
    }

    .page-header img {
        height: 45px;
    }

    .logo a {
        font-size: 22px;
        padding-left: 15px;
        margin-left: 0;
    }

    .nav-drawer .logo {
        width: 95%;
        height: 70px;
        justify-content: start;
        position: fixed;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        padding-left: 0px;
    }

    .nav-drawer .logo img {
        height: 45px;
    }

    div.lang-sp-btn {
        position: fixed;
        top: 15px;
        right: 75px;
        width: 75px;
        height: 55px;
        z-index: 999;
    }

    div.lang-sp-btn a {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        user-select: none;
        flex-direction: column;
        line-height: 0;
        font-size: 12px;
    }

    /* フッター */

    .footer {
        padding: 35px 0 70px;
    }

    .button {
        margin: 25px 0;
    }

    .button a.typeA.pagetop {
        bottom: 55px;
    }

    footer .logo-block {
        justify-content: center;
    }

    footer .logo img {
        height: 50px;
    }

    .footer-menu .footer-sitemap {
        flex-direction: row;
        flex-wrap: wrap;
        column-gap: 15px;
    }

    .footer-menu .footer-sitemap li {
        padding-right: 15px;
    }

    .footer-menu .footer-sitemap .footer-item {
        width: 100%;
    }

    .footer-menu .footer-sitemap .footer-item .footer-itemChild {
        display: none;
    }

    .footer-menu .footer-sitemap .footer-item .footer-itemLink {
        display: block;
        padding-top: 13px;
        padding-bottom: 13px;
        padding-left: 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.20)
    }

    .footer-menu .footer-sitemap .footer-item:first-child .footer-itemLink {
        border-top: 1px solid rgba(255, 255, 255, 0.20)
    }

    footer .sns-menu.sp {
        display: block !important;
        margin-top: 40px;
    }

    .anchor::before {

        padding-top: 80px;
        margin-top: -80px;
    }

    section.items .items-title {
        padding-top: 40px;
        margin-bottom: 50px;
    }

    section.items .items-detail, section.items:nth-child(even) .items-detail {
        flex-direction: column-reverse;
    }

    section.items.top .items-detail {
        flex-direction: column;
    }

    section.items .items-inner {
        padding-bottom: 30px;
    }

    section.items .items-detail .detail-text {
        width: 100%;
        padding: 0 0 20px;
    }

    section.items.top .items-detail .detail-text {
        padding-top: 30px;
    }

    section.items .items-detail .detail-img {
        width: 100%;
    }

    section.items .items-detail .detail-img img {
        width: calc(100% / 2 - 5px);
    }

    section.items.wide .items-detail .detail-img {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 10px;
    }

    section.items .items-detail-title {
        font-size: 16px;
        margin-bottom: 20px;
    }

    section.items:nth-child(even) .items-detail .detail-text {
        padding: 0 0 20px;
    }

    section.items .items-line {
        padding-top: 50px;
    }

    section.items.wide .items-detail .detail-text {
        width: 100%;
        padding: 0 0 20px;
    }

    section.items .detail-title-wrapper {
        min-width: 250px;
    }

    /* パンくず　*/
    .breadcrumb {
        padding-left: 0;
    }

    section.items .detail-title-wrapper::before, section.items .detail-title-wrapper::after {
        background-size: auto 100%;
    }
}

/* タブレット版
------------------------------- */
@media (max-width: 960px) {
    .wrapper {
        max-width: 90%;
        margin: 0 auto;
    }

}