*,
*:before,
*:after {
 box-sizing: border-box;
 font-feature-settings: "palt";
}


body {
 font-size: 15px;
 font-family: 'Roboto', 'Noto Sans JP', "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro",
  "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
 font-feature-settings: "palt";
 background: #000;
 color: #F5F5F7;
 position: relative;
 min-height: 100%;
}

body::before {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background-image: url("../img/texture2.png");
 background-size: 35%;
 background-repeat: repeat;
 z-index: -1;
}


img {
 max-width: 100%;
}

p {
 margin-top: 20px;
 line-height: 1.8;
 color: #D1D1D6;
}

.pink {
 color: #e91e63;
}

a {
 color: #e91e63;
 font-weight: bold;
 text-decoration: underline;
 padding: 0 5px;
}


header.fv {
 width: 100%;
 height: 80vh;
 position: relative;
 overflow: hidden;
 background-image: url(../img/fv_bg_person.jpg);
 background-size: cover;
 background-position: 50%;
 background-color: #000;
 z-index: 10;
 /* ブレンドモードを親要素内で完結させる */
 isolation: isolate;
}

.fv-video {
 position: absolute;
 top: -5px;
 left: -5px;
 width: calc(100% + 10px);
 height: calc(100% + 10px);
 object-fit: cover;
 z-index: -1;
}

.header-inner {
 position: static;
}

/* --- Navigation --- */

.header-nav {
 position: absolute;
 top: 20px;
 right: 140px;
 /* ナビはブレンドさせないため高い数値を設定 */
 z-index: 100;
}

.header-nav ul {
 display: flex;
 list-style-type: none;
 gap: 0 20px;
}

.header-nav a {
 color: #fff;
 display: flex;
 align-items: center;
 text-decoration: none;
}

.header-nav img {
 height: 25px;
 margin-right: 8px;
 opacity: 0;
 transition: opacity 0.3s ease;
}

.header-nav a:hover img {
 opacity: 1;
}

.header-nav span {
 display: block;
 font-size: 18px;
 font-weight: bold;
}

.header-nav span:last-child {
 display: block;
 font-size: 13px;
 margin-top: 5px;
 font-weight: normal;
}

/* --- Hamburger Menu --- */

.hamburger {
 display: none;
}



.fv .left-text {
 position: absolute;
 top: -10px;
 left: -10px;
 height: 80%;
 z-index: 1;
}

.fv .right-text {
 position: absolute;
 top: -10px;
 right: -10px;
 height: 102%;
 z-index: 1;
}

.fv .title-text {
 position: absolute;
 left: 1%;
 right: 0;
 top: 0;
 bottom: 0;
 margin: auto;
 width: 92%;
 /* 確実に背景と混ぜる */
 mix-blend-mode: difference;
 z-index: 2;
}

.fv .sub-text {
 position: absolute;
 right: 20%;
 bottom: 40px;
 width: 500px;
 z-index: 3;
}

.fv .logo {
 position: absolute;
 bottom: 60px;
 left: 50px;
 width: 80px;
 z-index: 3;
}






.basic-wrap {
 padding: 100px;
}




.section-title {
 display: flex;
 flex-direction: column;
 align-items: center;
}


.section-title img {
 height: 60px;
 margin-bottom: 20px;
}

.section-title span {
 font-size: 18px;
 padding-left: 30px;
}


.flex-box {
 width: 1000px;
 margin: 0 auto;
 margin-top: 80px;
 display: flex;
 align-items: center;
 justify-content: space-between;
}


.flex-box.reverse {
 flex-direction: row-reverse;
}



.flex-box .info {
 width: 50%;
}

.flex-box .img {
 width: 45%;
}



.title-1 {
 font-size: 36px;
 font-family: serif;
 letter-spacing: -3px;
}

.center {
 text-align: center;

}



.caption {
 display: block;
 margin-top: 10px;
 font-size: 14px;
 text-align: center;
}


.news-list {
 max-width: 800px;
 margin: 0 auto;
 margin-top: 30px;
}

.news-item {
 display: flex;
 align-items: center;
 gap: 20px;
 padding: 40px 0;
 border-bottom: 1px solid gray;
 transition: opacity 0.3s;
}

.news-item:first-child {
 border-top: 1px solid gray;
}


.news-item time {
 min-width: 80px;
 color: #fff;
}

.news-item .label {
 background-color: #e91e63;
 padding: 4px 40px;
 border-radius: 50px;
 font-size: 0.9rem;
 color: #fff;
}

.news-item .title {
 margin: 0;
 line-height: 1.5;
}




.author-img {
 height: 600px;
 background-image: url(../img/roukodama.jpg);
 background-size: cover;
 background-position: 50%;
}



.single-box {
 width: 700px;
 margin: 0 auto;
}


.single-box.ex {
 margin-top: 60px;
}


.single-box .info {
 margin-top: 60px;
}

.archive-box {
 width: 1000px;
 margin: 0 auto;
 display: flex;
 justify-content: center;
 flex-wrap: wrap;
 margin-top: 60px;
}


.archive-box .img {
 margin-bottom: 60px;
}


.archive-box .img.one {
 width: 60%;
 margin-right: 3%;
}

.archive-box .img.two {
 width: 29.3%;
}

.archive-box .img.three {
 width: 29.3%;
 margin-right: 5%;
}

.archive-box .img.four {
 width: 29.3%;
}







form {
 width: 800px;
 margin: 0 auto;
 font-size: 15px;
 margin-top: 60px;
}



form .title-2 {
 margin-top: 30px;
}

form .txt {
 line-height: 1.5;
 width: 550px;
 margin: 0 auto;
 margin-top: 30px;
}


form .wrap {
 margin-top: 30px;
}

form label {
 width: 100%;
 background-color: black;
 color: #fff;
 text-align: center;
 height: 50px;
 font-weight: 600;
 display: flex;
 justify-content: center;
 align-items: center;
 width: 45%;
 border: 1px solid gray;
}

form .item {
 display: flex;
 align-items: center;
 margin: 0 auto;
 margin-bottom: 20px;
}

.item.message,
.item.radio {
 align-items: flex-start;
 height: auto;
}


form input {
 width: 55%;
 line-height: 50px;
 background: #fff;
 padding: 0 20px;
 color: black;
}

textarea {
 width: 55%;
 height: 200px;
 padding: 10px;
 background: #fff;
 color: black;
}

form button {
 text-align: center;
 display: block;
 margin: 0 auto;
 background-color: #e91e63;
 color: #fff;
 width: 300px;
 height: 60px;
 font-weight: 600;
 border-radius: 50px;
 cursor: pointer;
 border: 0px;
 margin-top: 50px;
 font-size: 16px;
}

::placeholder {
 font-size: 15px;
 color: #bbb;
}


.radio .inner {
 width: 55%;
 display: flex;
 flex-direction: column;
 padding: 30px;
 font-weight: 500;
 background: #fff;
 color: black;
}


.radio.label {
 height: 155px;
}

.radio .inner {
 height: 155px;
}


.radio span {
 margin-left: 5px;
}


.radio .inner.ex {
 flex-direction: row;
 flex-wrap: wrap;
}

.radio .inner div {
 display: flex;
 line-height: 2;
 align-items: center;
}


.radio .inner.ex div {
 margin-right: 20px;
}



.message.label {
 width: 45%;
 height: 200px;
}



.check {
 width: 20px;
 margin-bottom: 3px;
}



.copyright {
 display: block;
 text-align: center;
 font-size: 13px;
 letter-spacing: 1px;
 color: gray;
 padding-bottom: 20px;
}



.btn {
 display: inline-block;
 text-decoration: none;
 background-color: #e91e63;
 padding: 20px 40px;
 border-radius: 50px;
 color: #fff;
 margin-top: 30px;
}


/*----------------------------*/



.anm-text span {
 opacity: 0;
 display: inline-block;
}


.anm-fade_up,
.anm-fade_left,
.anm-fade_right,
.anm-fade_down,
.anm-fade_here {
 opacity: 0;
}

.animated {
 opacity: 1;
}

.anm-fade_up {
 transform: translateY(30px);
 transition: opacity 0.8s ease, transform 0.8s ease;
}

.anm-fade_left {
 transform: translateX(-30px);
 transition: opacity 0.8s ease, transform 0.8s ease;
}

.anm-fade_right {
 transform: translateX(30px);
 transition: opacity 0.8s ease, transform 0.8s ease;
}

.anm-fade_down {
 transform: translateY(-30px);
 transition: opacity 0.8s ease, transform 0.8s ease;
}

.anm-fade_here {
 transform: translate(0);
 transition: opacity 0.8s ease, transform 0.8s ease;
}


.animated.anm-fade_up,
.animated.anm-fade_left,
.animated.anm-fade_right,
.animated.anm-fade_down,
.anm-fade_here {
 transform: translateY(0);

}

.animated.anm-fade_left {
 transform: translateX(0);
}

.animated.anm-fade_right {
 transform: translateX(0);
}

.animated.anm-fade_down {
 transform: translateY(0);
}

/* 「animated」クラスを持ち、かつクラス名が「anm-fade」で始まる要素すべて */
.animated[class*="anm-fade"] {
 /* 順番 (--i) に 100ms を掛け算して遅延を計算 */
 transition-delay: calc(var(--i, 0) * 100ms);

 /* フェードの共通設定（時間はデザインに合わせて調整してください） */
 transition-duration: .7s;
 transition-timing-function: ease-out;
 transition-property: opacity, transform;
}




.thanks {
 height: 100vh;
 position: relative;

}


.thanks .inner {
 width: 400px;
 height: 120px;
 position: absolute;
 top: 0;
 right: 0;
 left: 0;
 bottom: 0;
 margin: auto;
}

.thanks a {
 display: block;
 text-align: center;
 margin-top: 10px;
}



/* ------------------------------
   デバイス切り替え
------------------------------ */
.sp {
 display: none;
}

.tab {
 display: none;
}

.pc {
 display: block;
}
