@charset "utf-8";
html{
    scroll-padding-top: 50px;
    scroll-behavior: smooth;
}
body {
    font-family: "Zen Old Mincho", "Noto Serif JP", serif;
    margin: 0 !important;
}

section, main, footer, h1,h2,h3,h4,h5,h6,ul,ol,li,dl,dt,dd,p,form,fieldset {
    margin: 0;
    padding: 0;
}
h1,h2,h3,h4,h5,h6 {
    line-height: 1.1;
}
p{
    line-height: 2;
    text-align: justify;
}
li {
    list-style: none;
}

th {
    font-weight: normal;
}

em {
    font-style: normal;
}

sup {
    position: relative;
    height: 0;
    font-size: .46em;
}

article,aside,details,figcaption,figure,footer,header,main,menu,nav,section,summary {
    display: block;
}

img {
    width: 100%;
    max-width:100%;
    display: block;
    object-fit: contain;
}
a{
    text-decoration: none;
    color: #000000;
}
/* common----------------------------- */
.sp_only{
    display: none !important;
}
.pc_only{
    display: block !important;
}
@media (max-width: 768px) {
    .sp_only{
        display: block !important;
    }
    .pc_only{
        display: none !important;
    }
}
/* header----------------------------- */
.header_container{
    width: 100%;
    max-width: 1200px;
    padding: 0 40px;
    margin: 0 auto;
}
.header{
    position: fixed;
    padding: 30px 10%;
    top: 0;
    left: 50%;
    z-index: 100;
    width: calc(100% - 20%);
    transform: translateX(-50%); 
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-direction: row;
    background-color: #000;
    height: 35px;
    min-height: 35px;
}
div.header_container{
    max-width: 1200px;
    margin: 0 auto;
    width: calc(100% - 80px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.header img{
    width: 20%;
    min-width: 200px;
}
header .header .header_container ul{
    display: flex;
    justify-content: center;
    gap: 0 50px;
}
header .header .header_container ul li a{
    position: relative;
	display: inline-block;
	text-align: center;
	color: #fff;
	transition: color .3s ease;
        -webkit-transition: all .3s ease;
        -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
        -o-transition: all .3s ease;
    font-size: 0.9rem;
    white-space: nowrap; 
}
header .header .header_container ul li a::after {
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	content: '';
	width: 80%;
	height: 1px;
	background: rgba(224, 162, 8, 1);
	bottom: -1px;
	transform: scale(0, 1);
	transform-origin: center top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
	transition: transform 0.3s;
}
header .header .header_container ul li a:hover::after {
	transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}

header .header .header_container ul li.header-active a{
    background-image: radial-gradient(
        circle,
        rgba(255, 242, 58, 1),
        rgba(224, 162, 8, 1) 80%);
         /* 文字の形に背景を切り抜く */
    -webkit-background-clip: text;
    background-clip: text;
        /* 文字の色を透明にする */
    -webkit-text-fill-color: transparent; 
    font-weight: 900;
}
/* @media (max-width: 1200px) {
    header .header ul{
        gap: 20px;
    }
} */
.header_logo_link{
    display: inline-flex;
    align-items: center;
    line-height: 0;
    text-decoration: none;
}
/* 画像が親要素の影響で潰れたりしないように */
.header_logo_link img{
    display: block;
}
@media (max-width: 768px) {
    div.header_container{
        max-width: none;
        width: calc(100% - 30px);
        padding: 0 15px;
        justify-content: space-between;
    }
    .header{
        width: 100%;
        max-width: 100vw;
        left: 0;
        padding: 15px 0;
        justify-content: space-between;
        transform: none;
    }
    .header img{
        width: 50%;
    }
    
}

/* hamburger----------------------------- */
.hamburger_menu {
    width: 30px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}
.hamburger_menu span {
    display: block;
    height: 2px;
    background: #fff;
    transition: .3s;
    border-radius: 2px;
}

.hamburger_menu.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}
.hamburger_menu.active span:nth-child(2) {
    opacity: 0;
}
.hamburger_menu.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

.sp_nav {
    position: fixed;
    top: 50px;
    right: 0;
    opacity: 0;
    width: 100%;
    height: 100vh;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.8);
    transition: .4s ease;
    z-index: 999;
    padding-top: 50px;
}
.sp_nav.open {
    opacity: 1;
    visibility: visible;
}
.sp_nav ul{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 30px;
}
.sp_nav ul li a{
  color: #fff;
  text-decoration: none;
}
.sp_nav ul li a:hover{
  opacity: 0.7;
}
/* bread ----------------------------- */
.bread_wrapper{
    background-color: #cdc8bb;
}
.breadcrumb{
    padding: 10px;
    font-size: 0.8em;
    margin: 0 auto;
    background-color: #cdc8bb;
}
.breadcrumb a{
    color: #000;
    transition: ease-in-out 0.3s;
}
.breadcrumb a:hover{
    opacity: 0.7;
}
.breadcrumb span{
    pointer-events: painted;
}
/* =========================================
   TOP FV
========================================= */
.fv_top{
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 760px;
    overflow: hidden;
    background: #000;
}


.fv_title {
    position: absolute;
    top: 18%;
    width: 30%;
    padding-left: 5%;
}

.fv_top .fv_slider{
    position: absolute;
    inset: 0;
    z-index: 1;
}

.fv_top .fv_slide{
    position: absolute;
    inset: 0;
    opacity: 0;
    animation: fvFade 24s infinite;
}

.fv_top .fv_slide01{
    animation-delay: 0s;
}

.fv_top .fv_slide02{
    animation-delay: 6s;
}

.fv_top .fv_slide03{
    animation-delay: 12s;
}

.fv_top .fv_slide04{
    animation-delay: 18s;
}

.fv_top .fv_slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fv_top::before{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(0,0,0,.52) 0%, rgba(0,0,0,.20) 42%, rgba(0,0,0,.42) 100%),
        linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.15) 52%, rgba(0,0,0,.58) 100%);
    pointer-events: none;
}

.fv_top_inner{
    position: relative;
    z-index: 3;
    max-width: 1400px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 5% 36px;
    display: flex;
    align-items: flex-end;
}

.fv_copy_wrap{
    color: #fff;
    max-width: 1100px;
    padding-bottom: 10%;
}

.fv_copy_title{
    margin: 0;
    color: #fff;
    font-size: clamp(52px, 6vw, 100px);
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: .08em;
    text-shadow: 0 6px 18px rgba(0,0,0,.28);
    opacity: 0;
    animation: fvTitleIn 1.6s ease .3s forwards;
}

.fv_copy_text{
    position: relative;
    margin: 34px 0 0;
    padding-left: 28px;
    color: #fff;
    font-size: clamp(18px, 1.5vw, 26px);
    line-height: 2;
    letter-spacing: .08em;
    text-shadow: 0 4px 12px rgba(0,0,0,.25);
    opacity: 0;
    transform: translateX(-28px);
    animation: fvTextSlideIn 1.2s ease 1.1s forwards;
}

.fv_copy_text::before{
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 2px;
    height: calc(100% - 10px);
    background: rgba(255,255,255,.95);
}

@keyframes fvFade{
    0%{
        opacity: 0;
    }
    8%{
        opacity: 1;
    }
    42%{
        opacity: 1;
    }
    50%{
        opacity: 0;
    }
    100%{
        opacity: 0;
    }
}

@keyframes fvTitleIn{
    0%{
        opacity: 0;
        transform: translateY(24px);
        filter: blur(8px);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes fvTextSlideIn{
    0%{
        opacity: 0;
        transform: translateX(-28px);
    }
    100%{
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px){
    .fv_top{
        height: 80svh;
        min-height: 80svh;
    }

    .fv_title {
        position: absolute;
        top: 10%;
        width: 60%;
        padding-left: 2%;
    }

    .fv_top::before{
        background:
            linear-gradient(180deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,.12) 30%, rgba(0,0,0,.62) 100%),
            linear-gradient(90deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.08) 50%, rgba(0,0,0,.18) 100%);
    }

    .fv_top_inner{
        padding: 0 20px 28px;
        align-items: flex-end;
    }

    .fv_copy_wrap{
        width: 100%;
        max-width: none;
        padding-bottom: 25%;
    }

    .fv_copy_title{
        font-size: clamp(34px, 11vw, 58px);
        line-height: 1.4;
        letter-spacing: .08em;
    }

    .fv_copy_text{
        margin-top: 18px;
        padding-left: 12px;
        font-size: 14px;
        line-height: 1.95;
        width: 90%;
        transform: translateX(-20px);
    }

    .fv_copy_text::before{
        top: 2px;
        height: calc(100% - 4px);
    }

    @keyframes fvTextSlideIn{
        0%{
            opacity: 0;
            transform: translateX(-20px);
        }
        100%{
            opacity: 1;
            transform: translateX(0);
        }
    }
}

@media (max-width: 400px){
    .fv_top{
        height: 100svh;
        min-height: 100svh;
    }
}

/* cta */
.fixed_cta{
    display: block;
    position: fixed;
    bottom: 3%;
    right: 3%;
    margin: 0 auto;
    max-width: 160px;
    z-index: 99;
    transition: ease-in-out 0.5s;
}
.fixed_cta ul{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.fixed_cta ul li{
    position: relative;
    overflow: hidden;
    border-radius: 999px;
}
.fixed_cta ul li::before{
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 35%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(135deg);
    animation: shine 3.5s ease infinite;
}
.fixed_cta ul li:first-child:before{
    animation-delay: 0;
}
.fixed_cta ul li:last-child:before{
    animation-delay: 0.2s;
}
@keyframes shine {
    0% {
        left: -100%;
    }
    20% {
        left: 135%;
    }
    100% {
        left: 130%;
    }
}
.fixed_cta ul li a{
    display: block;
    transition: ease-in-out 0.3s;
}
.fixed_cta ul li a:hover {
    transform: scale(1.05);
}
@media (max-width: 768px) {
    .fixed_cta{
        max-width: 90px;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 3s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-animated {
    opacity: 1;
    transform: translateY(0);
}
.nojq,
.d-none,
.d-block,
.d-md-block,
.d-md-none,
.column-sidebar{
    display: none;
}