/* ------------------------------------------------------------
    基本
------------------------------------------------------------ */
:root {
    --gold1: #b19552;
    --blue: #13173e;
    --brown: #785b37;
    --text-color: #333; /* 基本のテキストカラー */
    --bg-color: #080c22; /* 背景色 */
}
html {
    overflow: auto;
    scroll-behavior: smooth;
}
body {
    font-family: "Shippori Mincho", serif;
    font-weight: 500; /* 400 500 600 700 */
    font-size: clamp(14px, 1.9vw, 20px);
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    background-image: url("../img/bg.jpg");
    background-repeat: repeat-y;
    background-size: 100vw;
    overflow-x: hidden;
}
.pc {
    display: none;
}
@media (min-width: 960px) {
    .sp {
    display: none;
}
    .pc {
    display: block;
}
}
/* .fadeup {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
} */


/*フェードアップ*/
.fadeup {
	opacity: 0;
    transform: translateY(30px);
}
.fadeup.show {
	opacity: 1;
    transform: translateY(0);
	transition: .8s;
}

/* 英語 */
.en {
    font-family: "Cormorant Garamond", serif;
}
/* リンク */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: 0.4s ease;
}
/* 画像 */
img {
    vertical-align: bottom;
    max-width: 100%;
    height: auto;
    transition: 0.4s ease;
}
a:hover img {
    opacity: 0.8;
}

/* 上下に余白 */
.sec {
    padding-top: clamp(40px, 6vw, 100px);
    padding-bottom: clamp(40px, 6vw, 100px);
}
/* 左右に余白 */
.inner {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 5vw;
    padding-right: 5vw;
}
/* 中央寄せ */
.ma {
    margin-left: auto;
    margin-right: auto;
}
/* 英語見出し */
.sec-ttl.en {
    text-align: center;
    color: var(--gold1);
    font-size: clamp(38px, 6vw, 70px);
    margin-bottom: 1em;
}
/* ボタン */
.btn {
    width: fit-content;
    margin: auto;
}
.btn a {
    padding: 1.25em 2.5em 1.25em 1.5em;
    background-color: var(--gold1);
    font-size: 1.3em;
    color: #fff;
    position: relative;
    transition: .3s;
    display: block;
    text-align: center;
}
.btn a::before {
    position: absolute;
    content: "";
    display: block;
    border: 1px solid #fff;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    top: 3px;
    left: 3px;
}
.btn a::after {
    position: absolute;
    content: "";
    display: block;
    background-image: url("../img/arrow-white.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    width: 1em;
    height: 1em;
    top: 50%;
    left: calc(100% - 1.75em);
    transform: translateY(-50%);
    transition: .2s;
    will-change: transform;
}
.btn a:hover {
    background-color: var(--brown);
}
.btn a:hover::after {
    left: calc(100% - 1.6em);
}
@media (min-width: 960px) {
    .btn a {
    min-width: 600px;
}
}

/* ------------------------------------------------------------
    ローディング
------------------------------------------------------------ */
.loader-overlay{
    position:fixed;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    background: var(--blue);
    color:#fff;
    z-index:9999;
    will-change:opacity,visibility;
    transition:opacity .5s ease,visibility .5s ease;
	pointer-events: none;
}
.loading-text{
    font-weight:500;
    font-size:20px;
    opacity:1;
    animation: textFade 0.8s ease 0.6s forwards;
}
@keyframes textFade{
    from { opacity: 1; transform: scale(1); }
    to   { opacity: 0; transform: scale(0.98); }
}
body.loaded .loader-overlay {
    opacity:0;
    visibility:hidden;
    pointer-events:none;
}

main {
opacity: 0;
  transition: opacity .5s ease;
  background: transparent; /* 背景色を消す */
}

body.loaded main {
    opacity:1;
    transform:scale(1);
}

/* ------------------------------------------------------------
    ヒーロー
------------------------------------------------------------ */
.sec-hero .hero-campaign a:hover img {
    opacity: 1;
    box-shadow: 0 0 15px #fff;
}
.sec-hero .hero-campaign {
    gap: 5%;
}
.sec-hero .hero-campaign li {
    flex: 1;
}



@media (max-width: 959px) { /* 縦並び */
    .sec-hero {
    background-image: url("../img/hero-shootingstar.png");
    background-repeat: no-repeat;
    background-size: 28vw;
    background-position: right top;
}
    .sec-hero .logo {
    width: 35vw;
    max-width: 280px;
    margin-right: auto;
    margin-left: 0;
    padding-top: 10px;
}
    .sec-hero h1 {
    width: 75vw;
    margin: 5vw auto 0;
}
    .sec-hero .hero-img {
    position: relative;
    transform: translateY(-8vw);
}
    .sec-hero .hero-ribbon {
    position: absolute;
    bottom: -15vw;
    right: 0;
    overflow-x: hidden;
    /* transform: rotate(2deg) scale(150%) translateX(20); */
}
    .sec-hero .hero-ribbon img.pc {
    display: none;
}
    .sec-hero .hero-campaign {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90vw;
    margin: -4vw auto 0;
    position: relative;
}

}

@media (min-width: 960px) { /* 横並び */
    .sec-hero {
    width: 100vw;
    /* height: 96vh; */
    position: relative;
    background-image: url("../img/hero-shootingstar.png");
    background-repeat: no-repeat;
    background-size: 15vw;
    background-position: center top;
}
    .sec-hero .logo {
    width: 25%;
    max-width: 350px;
    margin-right: auto;
    margin-left: 0;
    padding-top: 1%;
    position: absolute;
    z-index: 2;
}
    .sec-hero .hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 4fr 6fr;
    grid-template-rows: auto auto;
}
    .sec-hero h1 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    align-self: self-end;
    margin-left: 7vw;
    padding-bottom: 2.5vw;
    margin-left: 4vw;
}
    .sec-hero h1 img {
    width: 125%;
    max-width: none;
}
    .sec-hero .hero-img {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    align-self: center;
    position: relative;
    overflow: hidden;
    padding-bottom: 10%;
    margin-right: -3vw;
    margin-top: -3vw;
}
    .sec-hero .hero-campaign {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -6vw auto 0 2vw;
    transform: translateX(5vw);
    position: relative;
    z-index: 2;
}
    .sec-hero .hero-ribbon img.sp {
    display: none;
}
    .sec-hero .hero-ribbon {
    width: 100vw;
    position: absolute;
    bottom: -5.3vw;
    left: 0;
    overflow-x: hidden;
}
}
.sec-hero .hero-img {
    transition-delay: .2s;
}
.sec-hero .hero-campaign {
    transition-delay: .4s;
}

.hero-img img{
	pointer-events: none;
}


/* ------------------------------------------------------------
    コンセプト・ストーリー
------------------------------------------------------------ */
.sec-concept {
    color: #fff;
/*     position: relative; */
    padding-bottom: 0;
}
.sec-concept .concept-lead {
    display: flex;
    justify-content: center;
    padding-top: 10vw;
    position: relative;
    transition-delay: .4s;
}
.sec-concept .concept-lead .lead {
    display: inline-block;
    font-size: clamp(18px, 2vw, 25px);
    letter-spacing: .25em;
    line-height: 2.5;
    padding-bottom: 10%;
    writing-mode: vertical-rl;
}
.sec-concept .concept-lead .star-line {
    position: absolute;
    width: 30%;
    max-width: 450px;
    left: 50%;
}
.sec-concept .concept-lead .star-line-left {
    transform: translateX(-150%) translateY(-120%);
}
.sec-concept .concept-lead .star-line-right {
    bottom: -5%;
    transform: translateX(calc(100% - 50%));
}
.sec-concept .concept-story .story-ttl {
    text-align: center;
    line-height: 2.4;
    padding-bottom: 10%;
}

@media (min-width: 960px) {
    .sec-concept {
    padding-top: 0;
}
    .sec-concept .concept-lead .star-line-left {
    transform: translateX(-160%) translateY(-50%);
}
    .sec-concept .concept-lead .star-line-right {
    transform: translateX(calc(100% - 55%));
}
}


/* 開幕 */
.sec-concept .kaimaku {
    background-image: url("../img/kaimaku-curtain-l.png"),url("../img/kaimaku-curtain-r.png"),url("../img/kaimaku-bg.png?0926");
    background-repeat: no-repeat;
    background-position: -4vw -0vw, 84vw -0vw, center top;
    background-size: 20% 94%, 20% 94%, cover;
    padding-bottom: 5vw;
    position: relative;
    /* clip-path: polygon(50% 10%, 100% 0, 100% 100%, 0 100%, 0% 0%); */
}
.sec-concept .kaimaku-v {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    overflow-x: hidden;
    z-index: 2;
}
.sec-concept .kaimaku-v img {
    display: block;
}
@media (max-width: 959px) {
    .sec-concept .kaimaku-v {
    width: 200vw;
    top: -8.7vw;
}
}

.sec-concept .kaimaku-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 96vw;
    max-width: 1200px;
    margin: 0 auto 0;
    padding-top: 15vw;
}
.sec-concept .kaimaku-txt {
    transform: translateY(0);
}
.sec-concept .kaimaku-otori {
    transform: scale(108%) translateX(4.2vw);
    transition-delay: .2s;
}
.sec-concept .kaimaku-otori.show {
    transform: scale(108%) translateX(4.5vw);
}
.sec-concept .kaimaku-hiryu {
    transform: scale(108%) translateX(-2.5vw);
    transition-delay: .2s;
}
.sec-concept .kaimaku-hiryu.show {
    transform: scale(108%) translateX(-2.8vw);
}


@media (min-width: 960px) {
/* 開幕 */
    .sec-concept .kaimaku {
    background-position: -3vw 0vw, right -2vw top 0vw, center top;
    background-size: auto 100%, auto 100%, cover;
    padding-bottom: 5vw;
    position: relative;
}
    .sec-concept .kaimaku-v {
    top: -4.9vw;
    width: 150vw;
}
    .sec-concept .kaimaku-flex {
    width: 80vw;
}
    .sec-concept .kaimaku-otori {
    transform: scale(103%) translateX(0vw);
}
    .sec-concept .kaimaku-otori.show {
    transform: scale(103%) translateX(1vw);
}
    .sec-concept .kaimaku-hiryu {
    transform: scale(103%) translateX(-0vw);
}
    .sec-concept .kaimaku-hiryu.show {
    transform: scale(103%) translateX(-1vw);
}
}
@media (min-width: 1850px) {
    .sec-concept .kaimaku-v {
    top: -5.3vw;
}
}


/* ------------------------------------------------------------
    商品（しあわせふとん・ロマンスエコー）
------------------------------------------------------------ */
.sec-item {
    background-color: #fff9df;
}
.sec-item .sec-ittem-grid {
    padding-left: 5vw;
    padding-right: 5vw;
}
.sec-item .item-ttl {
    width: fit-content;
    max-width: 850px;
    margin: 0 auto 5vw;
}
.sec-item .item-ttl img {
    position: relative;
    z-index: 1;
}
/* メイン写真 */
.sec-item .item-main-pht {
    margin-bottom: 5vw;
    width: fit-content;
    margin: auto;
}
/* リード */
.sec-item .item-lead {
    writing-mode: vertical-rl;
    margin: 8vw auto 0;
    font-size: clamp(18px, 3.5vw ,26px);
    font-weight: 600;
    line-height: 2.5;
    opacity: 0;
}
.sec-item .item-lead.show {
    opacity: 1;
    transition: 1s;
    transition-delay: .2s;
}
/* ロゴ */
.sec-item .item-logo {
    width: 62%;
    max-width: 420px;
}
.sec-item-echo .item-logo {
    width: 50%;
    max-width: 300px;
}
.sec-item h3 {
    font-size: clamp(24px, 4vw, 36px);
    margin-top: 0.4em;
}
/* アイテム詳細 */
.sec-item .item-sub-box {
    background-color: #fff;
}
.sec-item .item-detail {
    display: flex;
    justify-content: space-between;
    column-gap: 3.0vw;
    margin-top: 3vw;
    font-family: "Helvetica Neue",
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
}
.sec-item .item-detail p {
    flex: 1;
    font-size: clamp(14.5px, 3.0vw, 20px);
    line-height: 1.5;
}
.sec-item .item-detail .item-sub-pht {
    flex: 1;
    max-width: 370px;
}
/* ロマンスエコー */
.sec-item-echo {
    padding-bottom: clamp(50px, 10vw, 150px);
}
.sec-item-echo .item-logo {
    display: flex;
    column-gap: 3vw;
    width: 45%;
    max-width: 220px;
}
/* ボタン */
.sec-item .btn a {
    box-shadow: 0 0px 10px rgba(151,145,100,.5);
}

@media (max-width: 1139px) {
/* アイテム詳細 */
    .sec-item .item-sub-box {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: 10vw;
    padding: 10vw 5vw;
}
/* リード */
    .sec-item .item-lead {
    position: relative;
    background-color: rgba(255,255,255,.7);
    padding: 2em;
    z-index: 3;
    margin-top: -20vw;
    margin-right: 2.5vw;
}
    .sec-item.sec-item-echo .item-lead {
    margin-left: 2.5vw;
}
}

@media (min-width: 1140px) {
    .sec-item .sec-ittem-grid {
    display: grid;
    grid-template-columns: minmax(auto, min(50vw, 890px)) 1fr;
    grid-template-rows: auto auto;
    align-items: start;
    gap: 5vw 3vw;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 7vw;
}
    .sec-item .item-ttl {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    margin-bottom: 0;
}
/* メイン写真 */
    .sec-item .item-main-pht {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    align-self: self-start;
    margin: 0;
    z-index: 2;
}
    .sec-item .item-txtwrap {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}   
/* リード */
    .sec-item .item-lead {
    margin: 170px auto 5vw;
    transform: translateX(-2vw);
}
    .sec-item h3 {
    margin-top: 0.4em;
}
/* アイテム詳細 */
    .sec-item .item-sub-box {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
}
    .sec-item.sec-item-futon .item-sub-box {
    transform: translateX(-8vw);
    width: calc(100% + 3vw);
    padding: 5vw 5vw 5vw 8vw;
}
    .sec-item.sec-item-echo .item-sub-box {
    transform: translateX(2.5vw);
    padding: 5vw 8vw 5vw 5vw;
}
    .sec-item .item-detail {
    column-gap: 2vw;
    margin-top: 2vw;
    margin-bottom: 0;
}
/* ロマンスエコー */
    .sec-item.sec-item-echo .sec-ittem-grid {
    grid-template-columns: 1fr minmax(auto, min(50vw, 827px));
    gap: 5vw 0;
    padding-left: 0;
    padding-right: 0;
}
    .sec-item-echo .item-main-pht {
    grid-column: 2 / 3;
    justify-self: flex-end;
}
    .sec-item-echo .item-txtwrap {
    grid-column: 1 / 2;
}  
    .sec-item-echo .item-logo,
    .sec-item-echo h3,
    .sec-item-echo .item-detail {
    /* margin-left: 5vw; */
}    
    .sec-item-echo .item-detail {
    /* margin-right: 5vw; */
}
}



/* ------------------------------------------------------------
    スペシャルコンテンツ
------------------------------------------------------------ */
.sec-mv {
    background-color: #001f54;
    color: #fff;
    margin-top: 0;
    margin-bottom: 0;
}
.sec-mv .inner {
    padding-left: 7vw;
    padding-right: 7vw;
}
/* スペシャルコンテンツタイトル */
.sec-mv .sec-ttl.en {
    color: #fff;
    line-height: 1.2;
}
/* 動画タイトル */
.sec-mv .mv-ttl {
    text-align: center;
    font-size: clamp(17px, 2.5vw ,26px);
    margin: 0 auto .75em;
}


/* 動画 */
.sec-mv .mv-wrap {
    display: flex;
    flex-direction: column;
    gap: 2em;
    align-items: center;
}
.sec-mv .mv-item {
    width: 100%;
    max-width: 700px;
}
.mv-box {
    position: relative;
    aspect-ratio: 16 / 9;
}
.mv-box::before {
    position: absolute;
    content: "";
    display: block;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    background-image: url("../img/mv-waku.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
    aspect-ratio: 16 / 9;
    z-index: 1;
    pointer-events: none;
}
.mv {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
}
.mv iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (min-width: 1140px) {
/* 動画 */
    .sec-mv .mv-wrap {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    column-gap: 4%;
    row-gap: 4vw;
}
    .sec-mv .mv-wrap .mv-item {
    flex-basis: 48%;
}
}


/* ------------------------------------------------------------
    キャンペーン
------------------------------------------------------------ */
/* タイトル */
.sec-camp .camp-ttl {
    margin: auto;
    position: relative;
    overflow: hidden;
}
/* キャンペーンナビ */
.sec-camp .camp-nav {
    display: flex;
    flex-direction: column;
    row-gap: 1.5em;
    width: clamp(300px,75vw,600px);
    margin: 0 auto;
}
.sec-camp .camp-nav li {
    background-color: #fff;
    border: 2px solid var(--gold1);
    position: relative;
    transition: .4s;
    border-radius: 5px;
}
.sec-camp .camp-nav li a {
    display: flex;
    color: var(--brown);
    position: relative;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    
}
.sec-camp .camp-nav li .num {
    width: 2em;
    height: 2em;
    line-height: 2em;
    background-color: var(--gold1);
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 1.15em;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    margin-top: -0.9em;
    text-align: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.sec-camp .camp-nav li .txt {
    padding: 1.5em 1.0em .75em .75em;
    line-height: 1.4;
    text-align: center;
}
.sec-camp .camp-nav li::after {
    position: absolute;
    content: "";
    display: block;
    right: 0;
    bottom: 0;
    border-bottom: 7px solid var(--gold1);
    border-left: 7px solid transparent;
}
.sec-camp .camp-nav li:hover {
    background-color: #fdf7e1;
}

.capm-cont-wrap.inner {
    padding-left: 3vw;
    padding-right: 3vw;
    max-width: 1500px;
}
.sec-camp .sec-ttl.en {
    color: #fff;
}
.sec-camp .camp-poster {
    width: fit-content;
    margin: auto;
}

@media (min-width: 960px) {
/* タイトル */
    .sec-camp .camp-ttl .camp-person {
    left: 50%;
}
    .sec-camp .camp-ttl .camp-hiryu {
    transform: translateX(-170%);
}
    .sec-camp .camp-ttl .camp-otori {
    transform: translateX(75%);
}
/* キャンペーンナビ */
    .sec-camp .camp-nav {
    flex-direction: row;
    row-gap: 0;
    column-gap: 2vw;
    padding-left: 3vw;
    padding-right: 3vw;
    width: clamp(960px, 85vw, 1500px);
    max-width: 1500px;
}
    .sec-camp .camp-nav li {
    flex: 1;
    border: 2px solid var(--gold1);
    background-color: #fff;
}
    .sec-camp .camp-nav li a {
    justify-content: center;
    border: none;
}
    .sec-camp .camp-nav li::after {
    border-bottom: 10px solid var(--gold1);
    border-left: 10px solid transparent;
}
    .sec-camp .camp-nav li .txt {
    padding: 1.75em 0em 1em 0;
    text-align: center;
}
}

/* キャンペーン3つ */
.sec-camp .camp-box {
    position: relative;
    background-color: #fff;
    background-image: url("../img/camp-corner-lt.png"),url("../img/camp-corner-rt.png"),url("../img/camp-corner-lb.png"),url("../img/camp-corner-rb.png");
    background-repeat: no-repeat;
    background-position: left 5px top 5px, right 5px top 5px, left 5px bottom 5px, right 5px bottom 5px;
    background-size: clamp(100px, 15vw, 235px);
    border: 2px solid var(--gold1);
    color: var(--blue);
    font-weight: 600;
    padding: 5%;
}
.sec-camp .camp-box .att {
    font-size: 0.75em;
}
.sec-camp .camp-box:not(:last-of-type) {
    margin-bottom: 10vw;
}
.sec-camp .camp-cont-inner {
    width: 95%;
    margin: 6% auto;
}
.sec-camp .camp-box h3 {
    position: absolute;
    width: 86%;
    max-width: 810px;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-25%);
}
.sec-camp .camp-box h4 {
    color: var(--gold1);
    font-weight: 700;
    font-size: clamp(18px, 4vw, 36px);
    text-align: center;
    margin: 0 auto .5em;
}
.sec-camp .camp-kikan {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .25em;
    margin-top: 1.5em;
    margin-bottom: 1.5em;
}
.sec-camp .camp-kikan dt {
    background-color: var(--gold1);
    color: #fff;
    padding: .25em .75em;
    width: fit-content;
    position: relative;
}
.sec-camp .camp-kikan dd {
    font-size: 1.3em;
    text-align: center;
}
.sec-camp .camp-kikan dd span {
    display: block;
}
.sec-camp .camp-image {
    margin: auto;
    width: fit-content;
    text-align: center;
}
/* ボタン */
.sec-camp .camp03 + .btn {
    margin-top: clamp(5vw, 10vw, 80px);
    margin-bottom: clamp(1vw, 5vw, 50px);
}
/* ボタン */
.sec-camp .camp03 + .btn a {
    box-shadow: 0px 0px 20px rgba(255,255,255,.8);
}
/* ボタン */
.sec-camp .btn + .att {
    color: #fff;
    text-align: center;
    font-size: 0.8em;
}

@media (min-width: 768px) {
    .sec-camp .camp-kikan dd span {
    display: inline
}
}

@media (min-width: 960px) {
    .sec-camp .camp-cont-inner {
    margin: 2.5vw auto 1%;
    justify-content: center;
}
    .sec-camp .camp-box h4 {
    margin-bottom: 0.5em;
}
    .sec-camp .camp-kikan dt {
    font-size: 0.9em;
    white-space: nowrap;
}
    .sec-camp .camp-kikan dd {
    font-size: 1.5em;
}
    .sec-camp .camp-kikan dd span {
    display: inline;
}
}

/* キャンペーン01 */
.sec-camp .camp01, .sec-camp .camp05 {
    margin-top: 10vw;
}
.sec-camp .camp01 h4 {
    padding-top: 5vw;
}
.sec-camp .camp01 .camp-kikan dt {
    margin-top: 6vw;
}
.sec-camp .camp01 .camp-kikan dt .num {
    display: block;
    position: absolute;
    bottom: 100%;
    left: 50%;
    width: clamp(100px, 25vw, 150px);
    transform: translateX(-50%);
}
.sec-camp .camp01 .koen-wrap {
    width: fit-content;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 3vw;
    margin-bottom: 1em;
}
.sec-camp .camp01 .koen-cont {
    border: 1px solid var(--blue);
    padding: 1.5em 1.5em;
}
.sec-camp .camp01 .koen-num {
    background-color: #bf132e;
    color: #fff;
    font-size: 0.9em;
    font-weight: bold;
    width: fit-content;
    padding: .2em .75em;
    margin-bottom: 0.25em;
}
.sec-camp .camp01 .koen-ttl {
    font-size: 1.2em;
    margin-bottom: 0.25em;
}
.sec-camp .camp01 p.taisho {
    width: 94%;
    margin: auto;
}

/* キャンペーン02 */
.sec-camp .camp02 .camp-tokuten-wrap, .sec-camp .camp05 .camp-tokuten-wrap {
    display: flex;
    flex-direction: column;
    gap: 7vw;
    margin-bottom: 7vw;
}
.sec-camp .camp02 .camp-tokuten dl {
    display: flex;
    column-gap: 1em;
    margin-bottom: 1em;
}
.sec-camp .camp02 .camp-tokuten dt {
    background-color: var(--gold1);
    color: #fff;
    width: fit-content;
    padding: .25em .75em;
    white-space: nowrap;
    align-self: start;
}
.sec-camp .camp02 .camp-tokuten dd {
    font-size: 1.3em;
    line-height: 1.3;
}
.sec-camp .camp02 .camp-bear {
    width: 90%;
    margin: auto;
    padding-top: 3vw;
}
.sec-camp .camp02 .mv-item {
    max-width: 700px;
    margin: 0 auto 8vw;
}
.sec-camp .camp02 .mv-ttl {
    text-align: center;
    margin-bottom: .5em;
    font-size: 1.2em;
}

/* キャンペーン03 */
.sec-camp .camp03 .camp-cont-inner {
    display: grid;
    grid-template-rows: repeat(4, auto);
    row-gap: 1em;
}
.sec-camp .camp03 h4 {
    grid-row: 1 / 2;
    margin-top: 0;
}
.sec-camp .camp03 h4 strong {
    color: #bf132e;
}
.sec-camp .camp03 .camp-kikan {
    margin-top: .5em;
    margin-bottom: .5em;
}
.sec-camp .camp03 .cap {
    text-align: center;
    margin-top: 0.5em;
}
.sec-camp .camp04{
    margin-top: 10vw;
}
.sec-camp .camp04 h4 {
    grid-row: 1 / 2;
    margin-top: 5vw;
}
.sec-camp .camp04 div{
    width:100%;
    display: block;
}
.sec-camp .camp-card {
    width: 95%;
    margin: auto;
    text-align: center;
}
.sec-camp .camp-card img {
    /* transform: rotate(1deg); */
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

@media (min-width: 960px) {
    .sec-camp .camp-box .att {
    font-size: 0.65em;
}
   .sec-camp .camp04 div{
    width: calc( ( 100% / 2 ) - 10px );
    vertical-align: top;
    display: inline-block;
}
    .sec-camp .camp-box:not(:last-of-type) {
    margin-bottom: 8vw;
}
/* キャンペーン01 */
    .sec-camp .camp01, .sec-camp .camp05 {
    margin-top: 7vw;
}
    .sec-camp .camp01 .camp-kikan dt {
    margin-top: 3vw;
}
    .sec-camp .camp01 .camp-cont-inner {
    display: flex;
    align-items: center;
    column-gap: 3vw;
    width: fit-content;
}
    .sec-camp .camp01 .camp-image {
    max-width: 35%;
    margin: 0;
}
    .sec-camp .camp01 .camp-image::before {
    width: 40%;
    max-width: 180px;
}
    .sec-camp .camp01 .camp-cont * {
    text-align: left;
}
    .sec-camp .camp01 .camp-cont h4 {
    text-align: center;
    padding-top: 40px;
}
    .sec-camp .camp01 .camp-cont h4 + p {
    width: 70%;
    margin: auto;
}
    .sec-camp .camp01 .camp-kikan {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1em;
    margin-top: 1.25em;
    margin-bottom: 1.25em;
}
    .sec-camp .camp01 .koen-wrap {
    flex-direction: row;
    width: 100%;
    max-width: 1100px;
}    
    .sec-camp .camp01 .koen-cont {
    width: 50%;
    margin: 0;
}
    .sec-camp .camp01 p:last-of-type {
    width: 100%;
}
    .sec-camp .camp01 .camp-cont > p:last-of-type {
    text-align: center;
}
/* キャンペーン02 */
    .sec-camp .camp02 .camp-tokuten-wrap, .sec-camp .camp05 .camp-tokuten-wrap {
    flex-direction: row;
    justify-content: center;
    gap: 5vw;
    margin-top: 3vw;
    margin-bottom: 3vw;
}
    .sec-camp .camp02 h4 {
    padding-top: 20px;
}
    .sec-camp .camp02 .camp-cont-inner h4 + p {
    width: fit-content;
    margin: auto;
    text-align: center;
}
    .sec-camp .camp02 .mv-item {
    width: 48%;
    max-width: 700px;
    margin: auto;
}
/* キャンペーン03 */
    .sec-camp .camp03 .camp-cont-inner {
    grid-template-columns: 22% 1fr 20%;
    grid-template-rows: auto auto;
    row-gap: 0;
    column-gap: 3vw;
    align-items: center;
}
    .sec-camp .camp03 .camp-poster {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}
    .sec-camp .camp03 h4 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    text-align: left;
    margin-bottom: 0;
    padding-top: 20px;
}
    .sec-camp .camp04 h4 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    margin-bottom: 0;
    margin-top: 0;
}
    .sec-camp .camp03 .camp-kikan {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    margin-top: 0;
}
    .sec-camp .camp03 .cap {
    font-size: 0.8em;
    line-height: 1.5;
}
    .sec-camp .camp03 .camp-card {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
    width: 100%;
    justify-self: flex-start;
    margin: 0;
}
    .sec-camp .camp03 .cap {
    font-size: 0.8em;
    line-height: 1.5;
}
}

/* ------------------------------------------------------------
    プロフィール
------------------------------------------------------------ */
.sec-profile {
    background-color: #f6f4ed;
    color: var(--gold1);
    margin-top: 0;
    padding-bottom: 0;
}
.sec-profile .person {
    margin: 0 auto;
}
/* 人 */
.sec-profile .person-hiryu {
    position: relative;
    padding-bottom: 8vw;
}
.sec-profile .person-pht {
    background: linear-gradient(-180deg,#f6f4ed 80%, #fff 80%);
}
.sec-profile .person-pht img {
    width: 75%;
    max-width: 500px;
    margin: 0 auto;
    display: block;
}
.sec-profile .person-name {
    text-align: center;
    font-size: 1.7em;
    margin-bottom: .5em;
}
.sec-profile .person-name .name-ja {
    display: block;
    font-size: 0.6em;
}
.sec-profile .person-cmt {
    line-height: 1.6;
    background-color: #fff;
    padding-top: 4vw;
    padding-bottom: 10vw;
}
.sec-profile .person-cmt-inner {
    width: 90%;
    max-width: 480px;
    margin: auto;
}

@media (min-width: 960px) {
    .sec-profile .person-inner {
    display: flex;
    max-width: 1200px;
    margin: auto;
}
    .sec-profile .person-hiryu {
    padding-bottom: 0;
    background: linear-gradient(90deg, #f6f4ed 25%, #fff 25%);
}
    .sec-profile .person-otori {
    background: linear-gradient(90deg, #fff 25%, #f6f4ed 25%);
}    
    .sec-profile .person-otori .person-inner {
    flex-direction: row-reverse;
}
    .sec-profile .person-pht {
    flex: 1;
    background: none;
    max-width: 600px;
}
    .sec-profile .person-pht img {
    width: 100%;
    max-width: none;
    margin: 0;
}
    .sec-profile .person-cmt {
    flex: 1;
    line-height: 1.7;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    align-items: center;
}
    .sec-profile .person-name {
    text-align: left;
}
}
/* ------------------------------------------------------------
    リンクバナー
------------------------------------------------------------ */
.links{
	text-align: center;
	background: #fffffff5;
	padding: 10px;
    width: 100vw;
	position: fixed;
    bottom: 0;
	z-index: 1;
          opacity: 0;
          transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.links.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.links .btn{
	margin-top: 3px;
	display: inline-block;
    width: 45vw;
	max-width: 600px;
}
.links .btn a{
padding: 0.5em 2.5em 0.5em 1.5em;
	    font-size: .9em;
}

/* ------------------------------------------------------------
    フッター
------------------------------------------------------------ */
.footer {
    color: #fff;
    text-align: center;
}
/* ロゴ */
.footer .logo-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 1em;
}
.footer .logo-list li img {
    width: clamp(180px, 22vw, 220px);
}
/* SNS */
.footer .sns-link {
    display: flex;
    justify-content: center;
    column-gap: clamp(20px, 2vw, 25px);
    margin: clamp(30px, 2.5vw, 50px) 0 clamp(20px, 2.5vw, 50px);
}
.footer .sns-link a {
    display: inline-block;
    transition: color 0.3s ease;
}
.footer .sns-link img {
    width: clamp(25px, 2.8vw, 40px);
}
/* コピーライト */
.footer .copy {
    font-size: 0.6em;
}

@media (min-width: 768px) {
/* ロゴ */
    .footer .logo-list {
    flex-direction: row;
    align-items: flex-end;
    column-gap: clamp(20px, 3.5vw, 60px);
}
.footer .logo-list li:last-of-type img {
    width: clamp(210px, 23vw, 290px);
}
}