@charset "utf-8";
/* CSS Document */
/*font*/
@font-face {
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: 100;
    src: url(/common/fonts/NotoSans_Thin.woff2) format('woff2'), url(/common/fonts/NotoSans_Thin.woff) format('woff'), url(/common/fonts/NotoSans_Thin.otf) format('opentype')
}
@font-face {
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: 200;
    src: url(/common/fonts/NotoSans_Light.woff2) format('woff2'), url(/common/fonts/NotoSans_Light.woff) format('woff'), url(/common/fonts/NotoSans_Light.otf) format('opentype')
}
@font-face {
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: 300;
    src: url(/common/fonts/NotoSans_DemiLight.woff2) format('woff2'), url(/common/fonts/NotoSans_DemiLight.woff) format('woff'), url(/common/fonts/NotoSans_DemiLight.otf) format('opentype')
}
@font-face {
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: 400;
    src: local('NotoSans_Regular.otf'), url(/common/fonts/NotoSans_Regular.woff2) format('woff2'), url(/common/fonts/NotoSans_Regular.woff) format('woff'), url(/common/fonts/NotoSans_Regular.otf) format('opentype')
}
@font-face {
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: 500;
    src: url(/common/fonts/NotoSans_Medium.woff2) format('woff2'), url(/common/fonts/NotoSans_Medium.woff) format('woff'), url(/common/fonts/NotoSans_Medium.otf) format('opentype')
}
@font-face {
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: 700;
    src: url(/common/fonts/NotoSans_Bold.woff2) format('woff2'), url(/common/fonts/NotoSans_Bold.woff) format('woff'), url(/common/fonts/NotoSans_Bold.otf) format('opentype')
}
@font-face {
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: 900;
    src: url(/common/fonts/NotoSans_black.woff2) format('woff2'), url(/common/fonts/NotoSans_black.woff) format('woff'), url(/common/fonts/NotoSans_black.otf) format('opentype')
}
/*END===font*/
body {
    font-family: 'Noto Sans JP', "繝｡繧､繝ｪ繧ｪ", "Hiragino Kaku Gothic Pro", "Noto Sans Japanese", sans-serif;
    padding-bottom: 80px;
}
.logo {
    margin: 1rem auto;
}
/*メインビジュアル*/
.hero {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    height: 760px;
    min-height: 760px;
    overflow: hidden;
    background: url("/info/campaign/20thjal/images/sky.png") center top / cover no-repeat;
}
.hero-text-wrap {
    position: absolute;
    z-index: 2;
    top: 70px;
    left: 50%;
    width: min(46.875vw, 900px);
    transform: translateX(-50%);
}
.hero-text-img {
    width: 100%;
    height: auto;
}
.hero-inner {
    position: relative;
    z-index: 1;
    width: min(100%, 1550px);
    margin: 0 auto;
    transform: translateY(5%);
}
.hero-main {
    display: block;
    width: 100%;
    height: auto;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    animation: heroAppear 1.2s ease-out forwards;
}
@keyframes heroAppear {
    0% {
        opacity: 0;
        transform: scale(1.05) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}
@media screen and (min-width: 1600px) and (min-height: 900px) {
    .hero {
        height: 960px;
        min-height: 960px;
    }
    .hero-text-wrap {
        top: 90px;
        width: min(46.875vw, 900px);
    }
    .hero-inner {
        width: min(100%, 1550px);
        transform: translateY(0);
    }
}
@media screen and (min-width: 960px) and (max-width: 1599px) {
    .hero {
        height: 650px;
        min-height: 650px;
    }
    .hero-text-wrap {
        top: 45px;
        width: min(70vw, 650px);
    }
    .hero-inner {
        width: 100%;
        transform: translateY(25%);
    }
}
@media screen and (min-width: 960px) and (max-width: 1599px) and (max-height: 820px) {
    .hero {
        height: 600px;
        min-height: 600px;
    }
    .hero-text-wrap {
        top: 35px;
        width: min(55vw, 600px);
    }
    .hero-inner {
        width: 100%;
        transform: translateY(35%);
    }
}
@media screen and (min-width: 541px) and (max-width: 959px) {
    .hero {
        height: 680px;
        min-height: 680px;
    }
    .hero-text-wrap {
        top: 45px;
        width: min(78%, 650px);
    }
    .hero-inner {
        width: 100%;
        transform: translateY(5%);
    }
}
@media screen and (max-width: 540px) {
    .hero {
        display: block;
        width: 100%;
        height: auto;
        min-height: 0;
        padding-top: 25px;
        background-position: center top;
    }
    .pcOnly {
        display: none;
    }
    .spOnly {
        display: block;
    }
    .hero-text-wrap {
        position: relative;
        top: auto;
        left: auto;
        width: min(92%, 430px);
        margin: 0 auto;
        transform: none;
    }
    .hero-inner {
        width: 100%;
        margin-top: clamp(20px, 6vw, 38px);
        transform: none;
    }
    .hero-main {
        width: 100%;
        height: auto;
        mask-image: none;
        -webkit-mask-image: none;
    }
}
@media screen and (max-width: 375px) {
    .hero {
        padding-top: 18px;
    }
    .hero-text-wrap {
        width: 94%;
    }
    .hero-inner {
        margin-top: 18px;
    }
}
@media screen and (max-width: 959px) and (orientation: landscape) {
    .hero {
        min-height: 480px;
        height: 480px;
    }
    .hero-text-wrap {
        top: 25px;
        width: min(58%, 500px);
    }
    .hero-inner {
        margin-top: 20px;
    }
}
/*メインビジュアル*/
.inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}
@media screen and (max-width: 659px) {
    .inner {
        padding: 1rem;
    }
}
/*コンテンツ01*/
h1 {
    margin: 2rem auto -5.5rem;
    text-align: center;
}
.catch_text {
    font-size: 2.2rem;
    color: #0b1e3d;
    margin: 2rem auto;
    line-height: 1.7;
    text-align: center;
}
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 2s ease;
}
.fade-in.is-active {
    opacity: 1;
    transform: translateY(0);
}
.button a {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 700px;
    margin: 2rem auto;
    background-color: #c8161d;
    color: #fff;
    font-size: 2.4rem;
    font-weight: bold;
    text-align: center;
    padding: 1.5rem 2rem;
    box-shadow: 3px 3px #bc0b12;
    outline: 1px solid #ffffff;
    outline-offset: -5px;
}
.button .arrow {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 2.5px;
    background-color: #ffffff;
    margin-left: 15px;
}
.button .arrow::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 15px;
    height: 2.5px;
    background-color: #ffffff;
    transform: rotate(35deg);
    transform-origin: right bottom;
}
@media screen and (max-width: 659px) {
    h1 {
        margin: 1.5rem auto -2.5rem;
    }
    .bg_gray {
        padding: 1rem;
    }
    .catch_text {
        font-size: 1.3rem;
        margin: 1rem auto;
        line-height: 1.4;
    }
    .button a {
        margin: 1.5rem auto;
        font-size: 1.5rem;
        font-weight: bold;
    }
}
/*コンテンツ01*/
/*コンテンツ02*/
.bg_navy {
    background-color: #0b1e3d;
    padding: 2rem 1rem;
}
.decorated-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 2.8rem;
    color: #fff;
    text-align: center;
    margin-bottom: 3rem;
}
.decorated-heading::before {
    content: '';
    display: inline-block;
    width: 60px;
    height: 20px;
    background: url('/info/campaign/20thjal/images/deco01.png') no-repeat center / contain;
    transform: scaleX(-1);
}
.decorated-heading::after {
    content: '';
    display: inline-block;
    width: 60px;
    height: 20px;
    background: url('/info/campaign/20thjal/images/deco01.png') no-repeat center / contain;
}
.card-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 700px;
    margin: 0 auto;
    box-sizing: border-box;
}
.card {
    border: 1.5px solid #c5a059;
    padding: 1.5rem;
    position: relative;
}
.card p {
    color: #fff;
    font-size: 1.8rem;
    margin: 1.2rem;
    line-height: 1.3;
}
.card-inner {
    background-color: #fff;
    aspect-ratio: 1 / 1;
    max-width: 300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-inner img {
    line-height: 1;
    display: block;
}
.btn02 .card-images img {
    max-width: 120px;
    padding: 10px 10px 0;
}
.btn02 a {
    background-color: #ac8921;
    box-shadow: 3px 3px #937316;
    line-height: 1.3;
    flex-direction: column;
    position: relative;
    padding-right: 50px;
}
.btn02 .arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    width: 30px;
    height: 2.5px;
    background-color: #ffffff;
}
.btn02 .arrow::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 15px;
    height: 2.5px;
    background-color: #ffffff;
    transform: rotate(35deg);
    transform-origin: right bottom;
}
@media screen and (max-width: 659px) {
    .card-container {
        display: block;
    }
    .card {
        width: 80%;
        margin: 1.5rem auto;
        padding: 8px;
    }
    .card p {
        font-size: 1.4rem;
        margin: 1rem;
    }
    .bg_navy {
        padding: 1rem;
    }
    .decorated-heading {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    .decorated-heading::before {
        width: 40px;
        height: 20px;
    }
    .decorated-heading::after {
        width: 40px;
        height: 20px;
    }
    .btn02 a {
        background-color: #ac8921;
        box-shadow: 3px 3px #937316;
    }
    .btn02 .card-images img {
        max-width: 80px;
        padding: 5px 5px 0;
    }
}
/*追従エリア*/
.fixed-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 12px 20px;
    box-sizing: border-box;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
}
.fixed-banner .button {
    margin: 0;
}
.fixed-banner .button a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    font-size: 18px;
}
@media screen and (min-width: 660px) and (max-height: 700px) {
    .fixed-banner {
        padding: 0 16px;
    }
    .fixed-banner .button a {
        min-height: 38px;
        font-size: 15px;
    }
}
@media screen and (min-width: 660px) and (max-height: 550px) {
    .fixed-banner {
        padding: 0 12px;
    }
    .fixed-banner .button a {
        min-height: 32px;
        font-size: 13px;
    }
}
@media screen and (max-width: 659px) {
    .fixed-banner {
        padding: 0 20px;
    }
    .fixed-banner .button a {
        min-height: 40px;
        font-size: 15px;
    }
}