@charset "UTF-8";
@media screen and (max-width: 767px) {
    .only-pc {
        display: none;
    }
}

@media print,
screen and (min-width: 768px) {
    .only-sp {
        display: none;
    }
}

body {
    font-family: "Noto Sans JP", sans-serif;
}


/*共通*/

main {
    background-color: #E1F7EE;
    margin: 0;
    padding: 5% 0;
    overflow-x: hidden;
}


/*ヘッダー*/

.header {
    margin: 0 auto;
    background-image: linear-gradient(180deg, rgba(177, 219, 203, 1), rgba(238, 255, 248, 0.75));
}

.header .logo {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 20;
}

.header .logo a {
    display: inline-block;
    width: 100%;
    height: 100%;
}

.header .logo img {
    width: 80px;
    height: 80px;
    border: #ffffff solid 1px;
}

.header .header-border {
    position: relative;
}

.header .header__inner {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 40%;
    line-height: 2;
}

@media screen and (max-width: 1200px) {
    .header .header__inner {
        position: absolute;
        top: 20%;
        right: 8%;
        max-width: 500px;
        width: 50%;
        line-height: 2;
    }
}

@media screen and (max-width: 1000px) {
    .header .header__inner {
        position: absolute;
        top: 15%;
        right: 5%;
        max-width: 450px;
        width: 50%;
        line-height: 2;
    }
}

.header .header__inner img {
    max-width: 100%;
}

.header .header__inner .header__text-box {
    color: #ffffff;
    margin-bottom: 1.5em;
    font-size: 1.25rem;
}

.header .header__inner .header__text span {
    font-weight: 500;
    font-size: 1.625rem;
}

@media screen and (max-width: 1000px) {
    .header .header__inner .header__text span {
        font-size: 1em;
    }
}

@media screen and (max-width: 940px) {
    .header .header__inner {
        position: absolute;
        max-width: 400px;
        width: 70%;
        top: 70%;
        right: 5%;
        text-align: center;
    }
    .header .logo img {
        width: 60px;
        height: 60px;
        border: #ffffff solid 1px;
    }
    .header .logo {
        top: 10px;
        left: 10px;
    }
}

.bg-img {
    width: 95%;
    margin: auto;
}

@media screen and (max-width: 940px) {
    .bg-img {
        width: 100%;
    }
}

.sp-copy {
    position: absolute;
    width: 20%;
    top: 5%;
    right: 5%;
}

.content-wrap {
    position: relative;
    margin: 5% 0 10%;
}

@media screen and (max-width: 940px) {
    .content-wrap {
        margin: 10% 0 15%;
        padding-bottom: 2em;
    }
}

.content-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3em;
    max-width: 1200px;
    margin: auto;
}

.content-flex.flex-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3em;
    max-width: 1200px;
    margin: auto;
}

@media screen and (max-width: 940px) {
    .content-flex {
        flex-direction: column;
        width: 95%;
    }
    .content-flex.flex-row {
        flex-direction: column-reverse;
        width: 95%;
    }
}

.txt-wrap {
    width: 500px;
}

@media screen and (max-width: 1140px) {
    .txt-wrap {
        width: 450px;
    }
}

@media screen and (max-width: 1140px) {
    .txt-wrap {
        width: 450px;
    }
}

@media screen and (max-width: 970px) {
    .txt-wrap {
        width: 410px;
    }
}

@media screen and (max-width: 940px) {
    .txt-wrap {
        max-width: 400px;
        width: 80%;
    }
}

.content-txt {
    border-bottom: #565658 solid 1px;
    margin-bottom: 2em;
    color: #2D2D2F;
    font-weight: 600;
}

.item-name {
    font-size: 28px;
    text-align: right;
}

@media screen and (max-width: 1140px) {
    .item-name {
        font-size: 24px;
        margin-bottom: 0.3em;
    }
}

@media screen and (max-width: 767px) {
    .item-name {
        font-size: 16px;
    }
}

.item-price {
    font-size: 40px;
    text-align: right;
    letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
    .item-price {
        font-size: 24px;
    }
}

.item-price span {
    font-size: 28px;
}

@media screen and (max-width: 767px) {
    .item-price span {
        font-size: 14px;
    }
}

.content-img {
    position: relative;
    max-width: 500px;
    box-shadow: 5px 5px 0px 0px rgba(185, 224, 209, 1);
    /* 不透明度100% */
    line-height: 0;
    opacity: 0;
    transition: opacity 0.7s, transform 0.7s;
    border: #ffffff solid 10px;
}


/* 1つ目を10度 */

.content-img:nth-of-type(1) {
    transform: rotate(-5deg) translateY(30px);
}


/* 2つ目を-10度 */

.content-img:nth-of-type(2) {
    transform: rotate(5deg) translateY(30px);
}


/* 3つ目を10度 */

.content-img:nth-of-type(3) {
    transform: rotate(-5deg) translateY(30px);
}


/* フェードイン後、傾きはそのままで浮かび上がる */

.content-img.is-visible:nth-of-type(1) {
    opacity: 1;
    transform: rotate(-5deg) translateY(0);
}

.content-img.is-visible:nth-of-type(2) {
    opacity: 1;
    transform: rotate(5deg) translateY(0);
}

.content-img.is-visible:nth-of-type(3) {
    opacity: 1;
    transform: rotate(-5deg) translateY(0);
}

.item01 {
    position: relative;
}

.item01::before {
    content: "";
    display: block;
    position: absolute;
    background-image: url(../img/code.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 420px;
    height: 400px;
    top: -16%;
    right: -36%;
    z-index: 10;
}

@media screen and (max-width: 1320px) {
    .item01::before {
        width: 360px;
        height: 340px;
        top: -13%;
        right: -20%;
    }
}

@media screen and (max-width: 1180px) {
    .item01::before {
        width: 310px;
        height: 280px;
        top: -13%;
        right: -16%;
    }
}

@media screen and (max-width: 940px) {
    .item01::before {
        width: 100%;
        height: 80%;
        top: -21%;
        right: -30%;
    }
}

.item02 {
    position: relative;
}

.item02::before {
    content: "";
    display: block;
    position: absolute;
    background-image: url(../img/tops.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 210px;
    height: 210px;
    top: -6%;
    left: -10%;
    z-index: 10;
}

@media screen and (max-width: 940px) {
    .item02::before {
        width: 60%;
        height: 40%;
        top: -12%;
        left: -17%;
    }
}

.item03 {
    position: relative;
}

.item03::before {
    content: "";
    display: block;
    position: absolute;
    background-image: url(../img/pants.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 250px;
    height: 210px;
    top: -6%;
    left: -8%;
    z-index: 10;
}

@media screen and (max-width: 940px) {
    .item03::before {
        width: 70%;
        height: 40%;
        top: -15%;
        left: -14%;
    }
}

@media screen and (max-width: 1140px) {
    .content-img {
        max-width: 400px;
    }
}

@media screen and (max-width: 940px) {
    .content-img {
        max-width: 400px;
        width: 80%;
    }
}

.bg-wt {
    position: relative;
    z-index: 1;
}

.bg-wt::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 65%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgb(255, 255, 255, 0.8);
    z-index: -1;
    box-shadow: 0px 5px 15px -5px #777777;
}

@media screen and (max-width: 1140px) {
    .bg-wt::before {
        height: 75%;
    }
}

@media screen and (max-width: 940px) {
    .bg-wt::before {
        border-radius: 0;
        top: 100%;
        transform: translate(-50%, -100%);
        z-index: -1;
    }
}

.copy-txt {
    font-size: 30px;
    font-weight: 400;
    text-align: left;
    margin-bottom: 2em;
    line-height: 1.6;
}

@media screen and (max-width: 1140px) {
    .copy-txt {
        font-size: 25px;
    }
}

@media screen and (max-width: 767px) {
    .copy-txt {
        font-size: 18px;
        letter-spacing: 0.1em;
    }
}

.txt-size {
    font-size: 18px;
    text-align: right;
    margin: 0.5em;
}

@media screen and (max-width: 767px) {
    .txt-size {
        font-size: 14px;
    }
}

.txt-size span {
    display: inline-flex;
    /* フレックスで中央揃え */
    align-items: center;
    justify-content: center;
    width: 2em;
    /* 横サイズ */
    height: 2em;
    /* 縦サイズ（＝横で真円） */
    background-color: #fff;
    /* 白背景 */
    border-radius: 50%;
    /* 真円に */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    /* ドロップシャドウ */
    margin: 0 0.2em;
    font-weight: bold;
    font-size: 1em;
    line-height: 1;
}

.marquee-bg {
    width: 100%;
    overflow: hidden;
    background: #FFFFE1;
    /* お好きな背景色に変更OK */
    padding: 10px 0;
    position: relative;
}

.marquee {
    display: flex;
    width: max-content;
    min-width: 0;
    /* 追加 */
    animation: marquee 40s linear infinite;
    /* 速度はお好みで調整 */
}

.marquee img {
    height: 30px;
    /* 画像サイズはお好みで調整 */
    margin-right: 20px;
    width: auto;
    /* ←比率維持（iOSで横伸び防止） */
    display: block;
    flex: 0 0 auto;
    /* 縮まない */
    max-width: none;
    /* iOS/Safari対策で念のため */
    object-fit: contain;
    /* 保険（なくてもOK） */
}

@media screen and (max-width: 940px) {
    .marquee img {
        height: 20px;
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-area {
    background-color: #ffffff;
    padding: 1% 0 3%;
}

@media screen and (max-width: 767px) {
    .logo-area {
        padding: 2% 0 3%;
    }
}

.logo-ft {
    max-width: 170px;
    margin: auto;
    text-align: center;
}

@media screen and (max-width: 940px) {
    .logo-ft {
        width: 106px;
    }
}

.ft-attention {
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    max-width: 1000px;
    width: 95%;
    margin: auto;
}

@media screen and (max-width: 940px) {
    .ft-attention {
        font-size: 14px;
        width: 100%;
        padding-left: 20px;
    }
}

.item-atte {
    text-align: right;
    margin-top: -1.5em;
    font-size: 16px;
}

@media screen and (max-width: 767px) {
    .item-atte {
        font-size: 14px;
    }
}