
html.loading,
body.loading {
    overflow: hidden;
    height: 100%;
}
#preloader {
    position: fixed;
    inset: 0;
    background: #f9fafa;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 1;
    visibility: visible;
    transition:
        opacity 1.5s ease,
        visibility 1.5s ease;
}
#preloader.hide {
    opacity:0;
    pointer-events:none;
    visibility:hidden;
}
.loader-logo {
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}
.loader-copy {
    position:absolute;
    bottom:66px;
    left:50%;
    transform:translateX(-50%);
    width:102px;
}
#copy1,
#copy2,
#copy3 {

    opacity:0;

    transform:translateY(-12px);

    transform-box:fill-box;

    transform-origin:center;

}

#copy1 {
    animation:copyIn .8s ease 3s forwards;
}
#copy2 {
    animation:copyIn .8s ease 3.5s forwards;
}
#copy3 {
    animation:copyIn .8s ease 4s forwards;
}
@keyframes copyIn {
    from{
        opacity:0;
        transform:translateY(-12px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
.logo-base {
    opacity:0;
    animation:baseFade .6s ease .2s forwards;
}
@keyframes baseFade{
    from{
        opacity:0;
    }
    to{
        opacity:1;
    }
}
.logo-mark {
    animation:logoMove .8s ease 2.5s forwards;
}
@keyframes logoMove{
    to{
        transform:translateY(104px);
    }
}
#preloader .logo-mark {
    position:relative;
    width:160px;
    height: 145px;
    aspect-ratio:160 / 145;
}
#preloader .logo-mark svg {
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
}
#preloader .logo-fill {
    pointer-events:none;
}
/* 初期状態 */
#logo-m,
#logo-k {
    transform-box:fill-box;
    transform-origin:center bottom;
}
/* M */
#logo-m {
    clip-path:inset(100% 0 0 0);
    animation:mFill .8s ease .8s forwards;
}
@keyframes mFill{
    to{
        clip-path:inset(0);
    }
}
/* 力 */
#logo-k {
    clip-path:inset(100% 0 0 0);
    animation:kFill .8s ease 1.6s forwards;
}
@keyframes kFill {
    to{
        clip-path:inset(0);
    }
}

/*kv----------------------------------------*/
h1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
}
h1 img {
    width: 190px;
}
#bg-slider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    z-index: -1;
    overflow: hidden;
    background-color: black;
}
.bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}
.bg-img.is-show {
    opacity: 1;
}
@media screen and (max-width:1024px){
	.kv {
		height: 100svh;
	}
	.kv-bg {
		height: 100svh;
	}
}

/*sec01----------------------------------------*/
.sec01 {
    background-color: white;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 200px 0;
}
.sec01 .inr {
    display: flex;
    flex-direction: row-reverse;
}
.sec01 .inr .ttl {
    writing-mode: vertical-rl;
    font-feature-settings: initial;
    font-weight: normal;
    font-size: 26px;
    line-height: 2.4;
    letter-spacing: 0.15em;
    margin-left: 85px;
    -webkit-text-stroke: 0.2px black;
}
.sec01 .inr p {
    writing-mode: vertical-rl;
    font-feature-settings: initial;
    font-size: 16px;
    line-height: 3.5;
    letter-spacing: 0.12em;
    margin-left: 80px;
    -webkit-text-stroke: 0.1px black;
    white-space: nowrap;
}
.sec01 .inr a {
    width: 20px;
    display: flex;
    align-items: flex-end;
}
.sec01 .inr a:hover {
    opacity: .5;
}
.sec01 .inr a img {
    margin-top: auto;
    vertical-align: bottom
}
@media screen and (max-width:1024px){
    .sec01 {
        padding: 100px 0;
    }
    .sec01 .inr {
        display: block;
    }
    .sec01 .inr .ttl {
        writing-mode: horizontal-tb;
        font-size: 20px;
        margin-left: 8%;
        margin-bottom: 30px;
        letter-spacing: 0.1em;
    }
    .sec01 .inr p {
        writing-mode: horizontal-tb;
        font-size: 14px;
        margin-left: 8%;
        margin-right: 8%;
        margin-bottom: 40px;
        line-height: 2.8;
        letter-spacing: 0.01em;
        white-space: inherit;
    }
    .sec01 .inr a {
        width: 218px;
        margin-left: 8%;
}
}

/*sec02----------------------------------------*/
.sec02 {
    background-color: white;
    width: 100%;
    position: relative;
    height: 800px;
    display: block;
}
.sec02:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: fixed url(/top/images/img_01.jpg) no-repeat center left;
    background-size: 50% auto; 
}
.sec02:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: fixed url(/top/images/img_02.jpg) no-repeat center right;
    background-size: 50% auto; 
}
.sec02 .inr {
    background-color: white;
    position: relative;
    z-index: 2;
    max-width: 390px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /*
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.8s ease, transform 1s ease;
    */
}
/*
.sec02 .inr.show {
    opacity: 1;
    transform: translateY(0);
}
*/
.sec02 .inr img {
    width: 126px;
    margin-top: 80px;
    margin-bottom: 100px;
}
.sec02 .inr h2 {
    font-weight: normal;
    font-size: 27px;
    letter-spacing: 0.15em;
    -webkit-text-stroke: 0.2px black;
    position: relative;
}
.sec02 .inr h2:before {
    content: "";
    position: absolute;
    top: -32px;
    left: 50%;
    background-color: black;
    width: 1px;
    height: 18px;
}
.sec02 .inr h2:after {
    content: "";
    position: absolute;
    bottom: -32px;
    left: 50%;
    background-color: black;
    width: 1px;
    height: 18px;
}
.sec02 .inr ul {
    margin-top: 120px;
}
.sec02 .inr ul li {
    font-size: 16px;
    letter-spacing: 0.15em;
    -webkit-text-stroke: 0.2px black;
    margin-bottom: 40px;
    text-align: center;
}
.sec02 .inr ul li a {
    color: black;
}
.sec02 .inr ul li a:hover {
    opacity: .5;
}
@media screen and (max-width:1024px){
    .sec02 {
        height: auto;
    }
    .sec02:before {
        background: url(/top/images/img_01.jpg) no-repeat center center;
        background-size: cover;
    }
    .sec02:after {
        background: url(/top/images/img_02.jpg) no-repeat center center;
        background-size: cover;
    }
    .sec02 .inr {
        width: 50%;
        height: auto;
    }
    .sec02 .inr img {
        width: 90px;
        margin-top: 30px;
        margin-bottom: 60px;
    }
    .sec02 .inr h2 {
        font-size: 20px;
        letter-spacing: 0.1em;
    }
    .sec02 .inr h2:before {
        top: -20px;
        height: 10px;
    }
    .sec02 .inr h2:after {
        bottom: -20px;
        height: 10px;
    }
    .sec02 .inr ul {
        margin-top: 60px;
    }
    .sec02 .inr ul li {
        font-size: 14px;
        margin-bottom: 25px;
    }
}

/*sec03----------------------------------------*/
.sec03 {
    padding: 200px 0;
    background-color: white;
}
.sec03 .inr {
    max-width: 1100px;
    margin: 0 16%;
}
.sec03 h2 {
    font-size: 26px;
    line-height: 2.3;
    letter-spacing: 0.3em;
    -webkit-text-stroke: 0.3px black;
    margin-bottom: 30px;
}
.sec03 p {
    font-size: 14px;
    line-height: 2.5;
    letter-spacing: 0.3em;
    -webkit-text-stroke: 0.1px black;
}
@media screen and (max-width:1024px){
    .sec03 {
        padding: 100px 8%;
    }
    .sec03 .inr {
        margin: 0 auto;
    }
    .sec03 h2 {
        font-size: 20px;
        margin-bottom: 30px;
        letter-spacing: 0.2em;
    }
    .sec03 p {
        font-size: 13px;
        letter-spacing: 0.1em;
    }
}

/*sec04----------------------------------------*/
.sec04 {
    background-color: white;
    position:relative;
    z-index: 2;
    margin-top: -80px;
}
.sec04 .sticky {
    position:sticky;
    top:0;
    width:100%;
    height:100svh;
    overflow:hidden;
}
.sec04 .panel {
    width: 100%;
    position:absolute;
    inset:0;
    transform:translate3d(0,100%,0);
    will-change:transform;
    overflow:hidden;
}
.sec04 .panel:nth-child(1) {
    z-index:1;
}
.sec04 .panel:nth-child(2) {
    z-index:2;
}
.sec04 .panel:nth-child(3) {
    z-index:3;
}
.sec04 .panel:nth-child(4) {
    z-index:4;
}
.sec04 .panel img {
    position:absolute;
    right: 0;
    width:40%;
    height:100%;
    object-fit:cover;
    display:block;
}
.sec04 .inr {
    background-color: white;
    width: 60%;
    margin-top: 80px;
    position: relative;
    height: 100%;
    z-index:10;
}
.sec04 .panel:first-of-type .inr {
    border-top: solid 1px #e6e6e6;
}
.sec04 .content {
    position:absolute;
    left: 27%;
    bottom: 170px;
}
.sec04 h2 {
    font-size: 26px;
    letter-spacing: 0.3em;
    -webkit-text-stroke: 0.3px black;
    margin-bottom: 40px;
}
.sec04 p {
    font-size: 14px;
    line-height: 2.5;
    letter-spacing: 0.3em;
    -webkit-text-stroke: 0.1px black;
    margin-bottom: 35px;
}
.sec04 table {
    font-size: 16px;
    text-align: left;
    margin-bottom: 60px;
    letter-spacing: 0.2em;
    -webkit-text-stroke: 0.1px black;
}
.sec04 table tr th {
    padding: 0 25px 20px 0;
}
.sec04 table tr th.cap {
    font-size: 12px;
    padding-top: 5px;
} 
.sec04 a {
    display: block;
    color: black;
    font-size: 16px;
    letter-spacing: 0.25em;
    -webkit-text-stroke: 0.2px black;
    position: relative;
    height: 18px;
    line-height: 18px;
    transition: .3s;
}
.sec04 a:after {
    position: absolute;
    content: "";
    background: url(/common/images/arrow_h.svg) no-repeat center right;
    background-size: cover;
    width: 18px;
    height: 18px;
    margin-left: 15px;
}
.sec04 a:hover {
    opacity: .5;
}
@media screen and (max-width:1024px){
    .sec04 {
        z-index: 2;
        margin-top: 0;
    }
    .sec04 .sticky {
        top: 70px;
    }
    .sec04 .inr {
        width: 100%;
        position: relative;
        height: 100%;
        margin-top: 0;
    }
    .sec04 .panel img {
        position: static;
        width: 100%;
        height: 20svh;
    }
    .sec04 .content {
        padding: 50px 8% 0;
        position: static;
    }
    .sec04 h2 {
        font-size: 20px;
        margin-bottom: 30px;
        letter-spacing: 0.2em;
    }
    .sec04 p {
        font-size: 13px;
        letter-spacing: 0.1em;
        margin-bottom: 30px;
    }
    .sec04 table {
        font-size: 15px;
        margin-bottom: 20px;
        letter-spacing: 0.05em;
    }
    .sec04 table tr th.cap {
        font-size: 11px;
    } 
    .sec04 table tr td {
        padding-bottom: 20px;
        letter-spacing: 0.1em;
    }
    .sec04 a {
        font-size: 15px;
    }
    .sec04 a:after {
        width: 16px;
        height: 16px;
        margin-left: 10px;
    }
    .panel04{

        display:flex;
        flex-direction:column;

    }
}

/*sec05----------------------------------------*/
.sec05 {
    height: 800px;
    background: url(/top/images/img_09.jpg) no-repeat center right;
    background-size: cover;
    margin-top: 200px;
}
.sec05 .inr {
    background-color: white;
    width: 300px;
    height: 100%;
    padding: 0 70px;
    margin-left: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.sec05 h2 {
    writing-mode: vertical-rl;
    font-feature-settings: initial;
    font-size: 26px;
    letter-spacing: 0.1em;
    -webkit-text-stroke: 0.3px black;
    margin-bottom: 140px;
}
.sec05 p {
    font-size: 14px;
    line-height: 2.5;
    letter-spacing: 0.2em;
    -webkit-text-stroke: 0.1px black;
    margin-bottom: 60px;
    margin-right: auto;
}
.sec05 a {
    display: block;
    color: black;
    font-size: 16px;
    letter-spacing: 0.25em;
    -webkit-text-stroke: 0.2px black;
    position: relative;
    height: 18px;
    line-height: 18px;
    margin-right: auto;
}
.sec05 a:after {
    position: absolute;
    content: "";
    background: url(/common/images/arrow_h.svg) no-repeat center right;
    background-size: cover;
    width: 18px;
    height: 18px;
    margin-left: 15px;
    transition: .3s;
}
.sec05 a:hover {
    opacity: .5;
}
@media screen and (max-width:1024px){
    .sec05 {
        height: auto;
        margin-top: 0;
        padding-top: 1px;
        background: url(/top/images/img_09.jpg) no-repeat top right;
        background-size: contain;
        z-index: 5;
        position: relative;
    }
    .sec05 .inr {
        width: auto;
        height: auto;
        padding: 50px 8% 0;
        margin: 50% auto 0;
        display: block;
    }
    .sec05 h2 {
        writing-mode: horizontal-tb;
        font-size: 20px;
        margin: 0 auto 30px;
    }
    .sec05 p {
        font-size: 13px;
        letter-spacing: 0.1em;
        margin-bottom: 30px;
    }
    .sec05 a {
        font-size: 15px;
    }
    .sec05 a:after {
        margin-left: 10px;
        width: 16px;
        height: 16px;
    }
}

/*sec06----------------------------------------*/
.sec06 {
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    gap:10%;
    padding: 200px 7%;
}
.sec06 .img {
    width: 46%;
    max-width: 640px;
}
.sec06 img {
    width: 100%;
    display: block;
}
.sec06 .inr {
    height: 100%;
}
.sec06 h2 {
    font-size: 26px;
    line-height: 2.3;
    letter-spacing: 0.2em;
    -webkit-text-stroke: 0.3px black;
    margin-bottom: 50px;
}
.sec06 p {
    font-size: 14px;
    line-height: 2.5;
    letter-spacing: 0.2em;
    -webkit-text-stroke: 0.1px black;
    margin-bottom: 60px;
}
.sec06 a {
    display: block;
    color: black;
    font-size: 16px;
    letter-spacing: 0.25em;
    -webkit-text-stroke: 0.2px black;
    position: relative;
    height: 18px;
    line-height: 18px;
}
.sec06 a:after {
    position: absolute;
    content: "";
    background: url(/common/images/arrow_h.svg) no-repeat center right;
    background-size: cover;
    width: 18px;
    height: 18px;
    margin-left: 15px;
    transition: .3s;
}
.sec06 a:hover {
    opacity: .5;
}
@media screen and (max-width:1024px){
    .sec06 {
        flex-direction: column;
        gap:50px;
        padding: 100px 8%;
    }
    .sec06 .img {
        width: 90%;
    }
    .sec06 .inr {
        height: auto;
    }
    .sec06 h2 {
        font-size: 20px;
        letter-spacing: 0.2em;
        margin-bottom: 30px;
    }
    .sec06 p {
        font-size: 13px;
        letter-spacing: 0.1em;
        margin-bottom: 30px;
    }
    .sec06 a {
        font-size: 15px;
    }
    .sec06 a:after {
        margin-left: 10px;
        width: 16px;
        height: 16px;
    }
}