@charset "UTF-8";

/* =========================
common
============================ */
:root {
    --primary-blue:#24a7c7;
    --primary-rightbule:#B7DCEB;
    --primary-backgroundBule: #E9F4F9;
    --primary-rightgray: #EBEBEB;
    --primary-pink: #ef7093;
    --primary-yellow: #fff701;
    --primary-black: #101010;
    --primary-white: #ffff;
}
html {
    font-size: 62.5%;
}
body {
    font-family: 
        "Noto Sans JP",
        "Questrial";
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--primary-black);
    background-color: var(--primary-white);
    line-height: 1.5;
}
html, body {
    height: 100%;
}
img {
    max-width: 100%;
    height: auto;
}
/* =========================
header
============================ */
.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden; /* ボタンがはみ出さないようにする */
}

.header__btnAll {
    width: 100%;
    display: flex;
    justify-content: flex-end; /* ボタンを中央揃え */
    align-items: center;
    font-family: "Questrial";
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-white);
    text-align: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2; /* ボタンを前面にする */
}

.header__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: clamp(60px, 6vw, 80px); /* 画面幅に応じてボタンサイズを変更 */
    height: clamp(65px, 8vh, 90px);
    padding: 1vw;
    transition: transform 0.3s ease-in-out;
}

.header__btn a {
    display: block;
    width: 65px;
    height: 65px;
    color: var(--primary-white);
    padding: 25px 0;
}
.header__btn__RR {
    background-color: var(--primary-pink);
}
.header__btn__WE {
    background-color: var(--primary-blue);
}

.header__btn__CLOSE {
    background-color: var(--primary-yellow);
    padding: 24px 0;
}
@media screen and  (min-width: 600px) {
    .header__btn {
        display: flex;
        justify-content: center;
        align-items: center;
        width: clamp(100px, 6vw, 80px); /* 画面幅に応じてボタンサイズを変更 */
        height: clamp(105px, 8vh, 90px);
        padding: 1vw;
        transition: transform 0.3s ease-in-out;
        font-size: 1.6rem;
        padding: 50px 0;
    }
    .header__btn a {
        display: block;
        width: 85px;
        height: 85px;
        color: var(--primary-white);
        padding: 31px 0;
    }
    .header__btn__CLOSE {
        padding: 24px 20px;
    }
}
/* =========================
メインビジュアルをボタンにかぶせる
============================ */
.mainVisualAll {
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1; /* ボタンより後ろにする */
}

.mainVisual {
    width: 100%;
    height: auto; 
    aspect-ratio: 25 / 31; /* 画像の縦横比を指定 */
    object-fit: cover; /* 画像の見切れを調整 */
    object-position: 0 100%;
}
.mainVisualPC , .mainVisualPC1025 {
    display: none;
}

/* .nav初期表示 */
.nav {
    width: 100%;
    height: 55px;
    /*25÷375×100=6.6%*/
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
    background-color: var(--primary-white);
}
.nav__logo {
    margin-top: 6px;
    width: 60px;
    height: auto;
    background-size: contain;
}
.nav__header {
    background-color: var(--primary-white);
    display: flex;
    justify-content: space-between;
    padding: 0 0 0 6.6%;
}
.nav__list {
    background-color: var(--primary-white);
    padding: 0 0 40px;
}
.nav__item {
    width: 100%;
    text-align: center;
    font-size: 1.6rem;
    padding: 30px 0 0;
}
.nav.active {
    transform: translateX(0)
}
.nav__btn {
    width: 65px;
}

@media screen and  (min-width: 1025px) {
   .mainVisualSP {
    display: none;
   } 
   .mainVisualPC1025 {
    display: block;
    aspect-ratio: 8 / 5; /* 画像の縦横比を指定 */
   }
}
@media screen and  (min-width: 1399px) {
    .mainVisualPC1025 {
        display: none;
    }
    .mainVisualPC {
     display: block;
     aspect-ratio: 8 / 5; /* 画像の縦横比を指定 */
    }
}

/* =========================
message
============================ */
.messageAll {
    max-width: 84%;
    margin: 0 auto;
}
.messageEng,.messageJpn {
    margin-top: 30px;
}
.messageEng h2 {
    font-family: "Questrial";
    font-size: 2.3rem;
    line-height: 0.67;
    font-weight: 900;
}
.messageEng p {
    margin-top: 15px;
    font-family: "Questrial";
    font-size: 1.0rem;
    line-height: 1.7;
}
.messageJpn {
    font-family: "Noto Sans JP";
    font-size: 1.2rem;
    line-height: 1.75;
}
.messageJpn p {
    margin-top: 14px;
}
.center {
    text-align: center;
}
.pic {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 22px;
}
@media screen and  (min-width: 450px) {
    .spBr {
        display: none;
    }
}
@media screen and  (min-width: 580px) {
    .messageJpn {
        text-align: center;
    }
}
@media screen and  (min-width: 1025px) {
    .messageJpn {
        text-align: center;
    }
}
@media screen and  (min-width: 1281px) {
    .messageAll {
        max-width: 68%;
        margin: 0 auto;
    }
    .messageEng,.messageJpn {
        margin-top: 100px;
    }
    .messageEng h2 {
        font-size: 4.5rem;
    }
    .messageEng p {
        margin-top: 15px;
        font-size: 1.8rem;
    }
    .messageJpn {
        font-size: 1.8rem;
        text-align: center;
    }
    .spBr {
        display: none;
    }
    .pic {
        margin-top: 100px;
    }
}
/* =========================
aboutGigi
============================ */
.menu {
    margin: 40px 0;
    font-family: "Questrial";
    font-size: 1.4rem;
}

.menu__list {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}
.menu__item img {
    margin: 0 9px;
}
.aboutGigi {
    padding: 40px 0;
    background-color: var(--primary-backgroundBule);
}
.topic {
    max-width: 84%;
    margin: 0 auto;
    font-family: "Noto Sans JP";
    font-size: 2.0rem;
    font-weight: 700;
}
.icon_group {
    max-width: 84%;
    margin: 25px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
@media screen and  (min-width: 1025px) {
    .menu {
        margin: 100px 0;
        font-family: "Questrial";
        font-size: 2.2rem;
    }
    .menu__list {
        display: flex;
        margin-top: 30px;
    }
    .menu__item img {
        margin: 0 20px;
    }
    .aboutGigi {
        padding: 80px 0;
        background-color: var(--primary-backgroundBule);
    }
    .topic {
        max-width: 78%;
        font-size: 4.0rem;
    }
    .icon_group {
        max-width: 55%;
        margin: 50px auto 0;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }
}
/* =========================
aboutGigi__trend
============================ */
.reqruitmentRequirements .webEntry .shoplist .qa .contact {
    background-color: var(--primary-rightbule);
}
.subtitleAll {
    margin-top: 30px;
    position: relative;
}
.arrow {
    position: absolute;
    bottom: -17px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.3s;
}
.arrow.open {
    transform: translateX(-50%) rotate(180deg);
}

.section--aboutGigi__detail {
    background-image: url(../assets/images/background.png);
    padding: 40px 0 0;
}

.aboutGigi__detail {
    background-color: var(--primary-white);
    max-width: 90.6%;
    margin: 0 auto;
    padding: 40px 4.5% 50px;
}
.aboutGigi__detail__title {
    padding: 40px 4.5% 15px;
}
.aboutGigi__title {
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
}
.aboutGigi__title p {
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
}
.aboutGigi__title h2 {
    margin-top: 5px;
    font-family: "Questrial";
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1;
}
.title__icon {
    max-width: 90.6%;
    background-color: var(--primary-rightbule);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    padding: 10px 0;
}
.title__icon li {
    max-width: 13%;
}
.aboutGigi__txt h3 {
    font-family: "Noto Sans JP";
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
}
.aboutGigi__txt p {
    margin-top: 20px;
    font-family: "Noto Sans JP";
    font-size: 1.5rem;
    line-height: 1.6;
}
.aboutGigi__txt__blank {
    margin-top: 30px;
}
.aboutGigi__txt span {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary-blue);
} 
.aboutGigi__txt ul {
    margin-top: 40px;
}
.aboutGigi__picAll {
    margin-top: 40px;
}
.aboutGigi__pic {
    max-width: 95%;
    margin:  0 auto;
}
@media screen and  (min-width: 1025px) {
    .subtitleAll {
        margin-top: 40px;
        position: relative;
    }
    .arrow {
        position: absolute;
        bottom: -17px;
        left: 50%;
        transform: translateX(-50%);
        transition: 0.3s;
    }
    .arrow.open {
        transform: translateX(-50%) rotate(180deg);
    }
    
    .section--aboutGigi__detail {
        padding: 40px 0 0;
    }
    
    .aboutGigi__detail {
        max-width: 75%;
        padding: 60px 60px 100px;
    }
    .aboutGigi__detail__title {
        padding: 80px 4.5% 30px;
    }
    .aboutGigi__title {
        max-width: 75%;
        margin: 0 auto;
        text-align: center;
    }
    .aboutGigi__title p {
        font-size: 2.0rem;
    }
    .aboutGigi__title h2 {
        margin-top: 8px;
        font-size: 3.5rem;
    }
    .title__icon {
        max-width:75%;
        height: 120px;
        padding: 10px 0;
        gap: 20px;
    }
    .title__icon li {
        max-width: 6%;
    }
    .aboutGigi__txt {
        margin: 0 auto;
    }
    .aboutGigi__txt h3 {
        font-size: 2.5rem;
        max-width: 600px;
        margin: 0 auto;
    }
    .aboutGigi__txt p {
        margin: 20px auto 0;
        font-size: 1.6rem;
        max-width: 600px;
    }
    .aboutGigi__txt span {
        font-size: 1.8rem;
    } 
    .aboutGigi__pic {
        max-width: 720px;
    }
}
/* =========================
aboutGigi__academy
============================ */
.aboutGigi__title span {
    font-size: 1.8rem;
    font-weight: 550;
}
.detail p {
    font-size: 1.6rem;
    font-weight: 550;
}
.aboutGigi__txt02 {
    margin-top: 50px;
}
.academy__content {
    margin-top: 30px;
}
.detail {
    margin: 0 auto;
    position: relative;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
}
.detail h4 {
    position: absolute;
    top: 30%;
    left: 30%;
}
.detail img {
    max-width: 66%;
}
.figure {
    margin-top: 5px;
    display: block;
    max-width: 91%;
    margin: 5px auto 0;
}
@media screen and  (min-width: 700px) {
    .detail img {
        max-width: 300px;
    }
}
@media screen and  (min-width: 1025px) {
    .figure {
        max-width: 600px;
    }
}
/* =========================
aboutGigi__environment
============================ */
.environment {
    padding: 40px 4.5% 0;
}
.aboutGigi__title03 {
    max-width: 100%;
    margin: 0 auto;
}
.subTitle {
    margin-top: 20px;
}
.environment__detail {
    margin-top: 40px;
}
.environment__detail:first-of-type {
    margin-top: 20px;
}
.environment__title {
    display: flex;
    align-items: center;
    margin-top: 5px;
}
.environment__title p {
    width: 50px;
    font-family: "Questrial";
    font-size: 4.0rem;
    font-weight: 600;
    color: var(--primary-blue);
    line-height: 1;
}
.environment__title img {
   max-width: 35px;
}
.environment__Subtitle {
    font-family: "Noto Sans JP";
    font-size: 2.3rem;
    font-weight: 600;
    color: var(--primary-blue);
}
.environment__txt {
    margin-top: 10px;
    font-family: "Noto Sans JP";
    font-size: 1.5rem;
    line-height: 1.7;
}
.circle {
    max-width: 92%;
    display: block;
    margin: 30px auto 0;
}
.circle__content {
    max-width: 90.6%;
    background-color: var(--primary-white);
    margin: 0 auto;
    padding: 30px 0 0;
}
.circle__detail {
    margin-top: 30px;
}
.circle__detail:first-child {
    margin-top: 0;
}
.circle__detail p {
    padding: 0 4.5%;
    margin-top: 10px;
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    line-height: 1.6;
}
.circl__title {
    padding: 11px 0;
    background-color: var(--primary-rightgray);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.circl__title img {
    width: 20px;
}
.circl__title h4 {
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-weight: 600;
}
.environment__title02 {
    justify-content: end;
    gap: 5px;
}
.environment__Subtitle02 {
    text-align: end;
}
.environment__title02__pic {
    display: block;
    max-width: 95%;
    margin: 20px auto 0;
}
.environment__txt span {
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    color: var(--primary-blue);
    font-weight: 600;
}
.section--aboutGigi__detail03 {
    padding: 40px 0 50px;
}
@media screen and  (min-width: 500px) {
    .circle {
        max-width: 380px;
    }
}
@media screen and  (min-width: 1025px) {
    .environment {
        padding: 80px 0 15px;
    }
    .circle {
        max-width: 85%;
        display: block;
        margin: 30px auto 0;
    }
    .environment__detail {
        margin: 40px auto 0;
        max-width: 600px;
    }
    .circle__content {
        max-width: 75%;
        padding: 30px 0 0;
    }
    .circl__title h4 {
        font-size: 2.2rem;
    }
    .circle__detail p {
        max-width: 600px;
        margin: 20px auto 0;
        font-family: "Noto Sans JP";
        font-size: 1.6rem;
        line-height: 1.6;
    }
    .detail img {
        max-width: 350px;
    }
    .environment__title p {
        width: auto;
        font-size: 6.0rem;
    }
    .environment__title img {
        max-width: 63px;
    }
    .environment__Subtitle {
        font-size: 2.5rem;
    }
    .environment__txt {
        font-size: 1.6rem;
    }
    .environment__title02 {
        max-width: 600px;
        margin: 0 auto;
    }
    .environment__txt ,.environment__Subtitle02,.environment__title , .environment__Subtitle {
        max-width: 600px;
        margin: 10px auto;
    }
    .environment__title02__pic {
        max-width: 720px;
    }
}
/* =========================
aboutGigi__environment ★career★
============================ */
.career {
    background-color: var(--primary-white);
    max-width: 90.6%;
    margin: 0 auto;
    padding: 40px 0 0;
}
.career__title {
    text-align: center;
    background-color: var(--primary-rightbule);
    padding: 14px 0;
    margin-top: 10px;
}
.career__title h4 {
    font-weight: 600;
}
.careerAll {
    max-width: 88%;
    margin: 25px auto 0;
}
.careerAll__item {
    height: 35px;
    background-color: var(--primary-rightgray);
    color: var(--primary-blue);
    text-align: center;
    margin-top: 10px;
    line-height: 35px;
}
.figure02 {
    position: relative;
    margin: 3px 0;
}
.figure02 img {
    width: 35px;
    height: 20px;
    object-fit: cover;
}
.figure02__left {
    position: absolute;
    top: 10%;
    left: 24%;
}
.figure02__right {
    position: absolute;
    top: 10%;
    right: 24%;
}
.careerAll__02 {
    display: flex;
    color: var(--primary-white);
    line-height: 35px;
    text-align: center;
    gap: 10px;
    margin-top: 25px;
}
.figure03 {
    display: block;
    max-width: 11%;
    margin: 5px auto 0;
}
.half {
    flex: 1;
    background-color: var(--primary-blue);
}
.careerAll__03 {
    margin-top: 5px;
    padding: 10px 8px;
    border: 1px solid var(--primary-blue);
    font-size: 1.3rem;
}
.careerAll__03__item {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}
.careerAll__03__item01 {
    margin-top: 0;
}
.careerItem__title {
    background-color: var(--primary-blue);
    color: var(--primary-white);
    text-align: center;
    line-height: 35px;
    width: 100px;
    height: 35px;
}
.careerItem__txt {
    max-width: 62%;
}
@media screen and  (min-width: 530px) {
    .careerItem__txt {
        max-width: 70%;
    } 
}
@media screen and  (min-width: 592px) {
    .careerItem__txt {
        max-width: 75%;
    } 
}
@media screen and  (min-width: 700px) {
    .careerItem__txt {
        max-width: 80%;
    } 
}
@media screen and  (min-width: 900px) {
    .careerItem__txt {
        max-width: 85%;
    } 
}
@media screen and  (min-width: 1025px) {
    .career {
        max-width: 75%;
        padding: 10px 0;
    }
    .career__title h4 {
        font-size: 2.2rem;
    }
    .careerAll {
        max-width: 600px;
    }
    .careerItem__txt {
        max-width: 80%;
        font-size: 1.6rem;
    }
}
/* =========================
aboutGigi__environment ★interview★
============================ */

.interview {
    font-family: "Noto Sans JP";
    margin: 25px auto 0;
    padding: 0 4.5% 50px;
}
.interview__sub {
    max-width: 65%;
    margin: 0 auto;
}
.interview__content {
    margin:  20px auto 0;
    padding: 30px 15px;
    border: 1px solid var(--primary-blue);
    border-radius: 40px;
}
.interview__content img {
    height: auto;
}
.interview__detail {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-blue);   
}
.interview__name {
    margin-top: 15px;
    font-size: 2.0rem;
    line-height: 1;
}
.interview__shop {
    margin-top: 5px;
} 
.interview__career {
    font-family: "Noto Sans JP";
    color: #6E7374;
    margin: 0 auto;
    font-size: 1.3rem;
}
.interview__career p:first-of-type {
    margin-top: 15px;
}
.interview__main {
    margin-top: 25px;
}
.interview__title {
    text-align: center;
    font-weight: 600;
    font-size: 1.4rem;
}
.interview__txt {
    margin-top: 15px;
    font-size: 1.3rem;
    line-height: 1.6;
}
@media screen and  (min-width: 700px) {
    .interview {
        max-width: 600px;
    }
    .interview__content {
        padding: 50px 40px;
    }
    .interview__shop , .interview__career {
        font-size: 1.6rem;
    }
    .interview__name {
        font-size: 2.5rem;
    }
    .interview__title {
        font-size: 1.8rem;
        margin-top: 40px;
    }
    .interview__txt {
        font-size: 1.6rem;
        margin-top: 40px;
    }
}

/* =========================
aboutGigi__employee
============================ */
.section--aboutGigi__detail__employee {
    padding: 40px 0 50px;
}
.employee {
    background-color: var(--primary-white);
    padding: 10px 0 30px;
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-weight: 600;
    text-align: center;
}
.employee__title img {
    max-width: 94%;
}
.employee__picAll {
    margin-top: 5px;
}
.employee__pic {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.employee__pic02 {
    margin-top: 15px;
}
@media screen and  (min-width: 600px) {
    .employee__title img {
        max-width: 600px;
    }
}
@media screen and  (min-width: 1025px) {
    .employee__title img {
        max-width: 55%;
    }
    .employee__pic {
        gap: 50px;
    }
    .employee__pic02 {
        margin-top: 30px;
    }
}

/* =========================
reqruitmentRequirements
============================ */
.reqruitmentRequirements {
    background-color: var(--primary-backgroundBule);
    padding: 40px 0 0;
}
.reqruitmentRequirementsAll {
    background-color: var(--primary-white);
    max-width: 88%;
    margin: 30px auto 0;
}
.reqruitmentRequirements__label {
    background-color: var(--primary-rightgray);
    width: 100%;
    height: 40px;
    line-height: 40px;
    padding: 0 15px;
}
.reqruitmentRequirements__txt {
    background-color: var(--primary-white);
    padding: 15px 15px;
}
.reqruitmentRequirements__txt01 {
    background-color: var(--primary-white);
    padding: 15px 15px 40px;
}
.reqruitmentRequirements__txt--group {
    padding: 0 15px;
    margin-top: 10px;
}
.reqruitmentRequirements__txt--group01 {
    padding: 15px 15px 0;
    margin-top: 0;
}
.txt__space {
    margin-top: 5px;
}
@media screen and  (min-width: 1025px) {
    .reqruitmentRequirements {
        padding: 80px 0 0;
    }
    .title__requrite {
        font-size: 3.5rem;
    }
    .reqruitmentRequirementsAll {
        max-width: 75%;
    }
    .reqruitmentRequirements__label {
        height: 50px;
        line-height: 50px;
    }
    .reqruitmentRequirements__txt {
        padding: 20px 60px;
    }
    .reqruitmentRequirements__label {
        padding: 0 60px;
    }
    .reqruitmentRequirements__txt--group {
        padding: 0 60px;
    }
    .reqruitmentRequirements__txt--group01 {
        padding: 20px 60px 0;
    }
}

/* =========================
webEntry
============================ */
.webEntry {
    background-color: var(--primary-backgroundBule);
    padding: 50px 0 0;
}
.title__requrite {
    font-family: "Noto Sans JP";
    color: var(--primary-blue);
    font-size: 2.2rem;
    font-weight: 600;
    text-align: center;
}

.webEntry__txt, .contactAll {
    text-align: center;
}
.webEntry__txt {
    margin-top: 30px;
}
.webEntryAll__txt01 {
    margin-top: 35px;
}
.webEntryAll {
    max-width: 88%;
    margin: 30px auto 0;
    padding: 20px 15px 30px;
    background-color: var(--primary-white);
    font-family: "Noto Sans JP"; 
}
.form__category {
    margin-top: 30px;
}
.form__category01 {
    margin-top: 0;
}
.form__category span {
    font-size: 1.2rem;
}
input[type="text"],
.group--select,
.placeholder,
textarea {
    display: block;
    width: 100%;
    padding: 6px 8px;
    background-color:var(--primary-rightgray);
    font-size: 1.4rem;
    color: var(--primary-black);
    margin-top: 5px;
}
.form__flex {
    margin-top: 5px;
}
::placeholder {
    color: #4D4D4D;
}
input[type="radio"]{
    width: 20px;
    height: 20px;
    background-color:var(--primary-rightgray);
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: -5px;
}
.space {
    margin-left: 15px;
}
.group--radio {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 0;
}
input[type="radio"]:checked {
    position: relative;
}
input[type="radio"]:checked::after {
    display: block;
    content: '';
    width: 13px;
    height: 13px;
    background-color: var(--primary-pink);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.group--checkbox {
    /*もともとlabelがインライン要素のため横並びの設定が効いているが、gapやwrapなどdisplay:flexがかかっていないと設定できない設定をしたいため、display:flexをかける  */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
/* ☑ボックスに指示をかけたい場合はtype属性に設定する
→属性セレクタに指示を出す際には↓のように設定する */
input[type="checkbox"] {
    width: 20px;
    height: 20px;
    background-color:var(--primary-rightgray);
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: -5px;
}

input[type="checkbox"]:checked {
    position: relative;
}
input[type="checkbox"]:checked::after {
    display: inline-block;
    content: '';
    width: 13px;
    height: 13px;
    background-color: var(--primary-pink);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.webEntryAll__txt {
    margin-top: 35px;
    font-size: 1.4rem;
}
.btn {
    margin: 45px 0 25px;
    text-align: center;
    font-weight: 600;

}
input[type="submit"] {
    width: 130px;
    height: 35px;
    background-color: var(--primary-blue);
    font-family: "Noto Sans JP"; 
    color: var(--primary-white);
    border-radius: 4px;
}
@media screen and  (min-width: 1200px) {
    .webEntryAll {
        padding: 50px 100px 50px;
    }
}
@media screen and  (min-width: 1025px) {
    .webEntry { 
        padding: 80px 0 0;
    }
    .title__requrite {
        font-size: 3.5rem;
    }
    .webEntryAll {
        margin-top: 60px;
        max-width: 75%;
        padding: 50px 60px 50px;
    }
    .contactAll p {
        max-width: 600px;
    }
    input[type="submit"] {
        width: 200px;
        height: 50px;
        font-size: 2.0rem;
    }
    .webEntry__txt {
        margin-top: 60px;
    }
}
/* =========================
Q&A
============================ */
.faq {
    background-color: var(--primary-backgroundBule);
    padding: 0 0 50px;
} 
.faqAll {
    max-width: 88%;
    margin: 25px auto 0;
    background-color: var(--primary-white);
    padding: 30px 15px 40px;
}
.question {
    margin-top: 30px;
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-align: center;
}
.question01 {
    margin-top: 0;
}
.faq__question--title {
    margin-top: 3px;
}
.answer {
    margin-top: 10px;
}
.faq__answer,.faq__answer--title {
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-weight: 600;
    color:var(--primary-pink);
    text-align: center;
}
.faq__answer--txt {
    margin-top: 10px;
    font-family: "Noto Sans JP";
    line-height: 1.8;
    font-size: 1.4rem;
}
.faq__answer--txt span {
    font-weight: 600;
    background-color: rgb(255 247 1 / 0.5);
}
@media screen and  (min-width: 1025px) {
    .faq {
        padding: 0 0 100px;
    }
    .faqAll {
        max-width: 75%;
        margin: 60px auto 0;
        background-color: var(--primary-white);
        padding: 60px 60px 80px;
    }
    .faq__content {
        margin: 0 auto;
    }
    .faq__answer {
        font-size: 2.2rem;
    }
    .faq__answer--title,.faq__question--title {
        font-size: 1.8rem;
    }
    .answer {
        margin-top: 20px;
    }
    .question {
        display: flex;
        justify-content: center;
    }
    .faq__question {
        font-size: 2.2rem;
        margin-right: 10px;
    }
}

/* =========================
SHOP LIST
============================ */
.shoplist {
    padding: 50px 0;
    background-color: var(--primary-backgroundBule);
}
.subtitle {
    padding: 22px 0;
    background-color: var(--primary-blue);
    font-family: "Noto Sans JP";
    font-size: 2.2rem;
    font-weight: 600;
    text-align: center;
    color: var(--primary-white);
}
.shoplistAll {
    margin: 30px auto 0;
    max-width: 88%;
}
.shoplistAll h3 {
    margin-top: 30px;
    font-size: 1.6rem;
    font-weight: 600;
}
.shoplist__detail {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 23px;
}
.shoplist__detail:nth-of-type(3) {
    margin-top: 20px;
}
.shoplist__item {
    max-width: 20%;
}
@media screen and  (min-width: 1025px) {
    .subtitle {
        font-size: 2.8rem;
    }
    .shoplist {
        padding: 80px 0 100px;
    }
    .shoplistAll {
        max-width: 75%;
        margin: 60px auto 0;
    }
    .shoplistAll h3 {
        font-size: 2.5rem;
        margin-top: 60px;
    }
    .shoplist__detail {
        margin-top: 30px;
        gap: 35px;
    }
    .shoplist__detail:nth-of-type(3) {
        margin-top: 30px;
    }
    .shoplist__item {
        max-width: 15%;
    }
}
/* =========================
contact
============================ */
.contact {
    background-color: var(--primary-backgroundBule);
    text-align: center;
}
.contact__txt {
    margin-top: 30px;
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
}
.contactAll {
    margin-top: 30px;
}
.contactAll p {
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    color: var(--primary-white);
    padding: 8px 0;
    width: 61%;
    margin: 10px auto 0;
}
.instagram {
    background-color: var(--primary-pink);
}
.line {
    background-color: #94EF70;
}
.entry {
    background-color: var(--primary-blue);
}
@media screen and  (min-width: 1281px) {
    .contact__txt {
        margin-top: 60px;
    }
    .contactAll {
        margin-top: 50px;
    }
}
/* =========================
footer
============================ */
.footer {
    background-color: var(--primary-backgroundBule);   
    text-align: center; 
}
.footer__sub {
    padding: 35px 0 30px;
}
@media screen and  (min-width: 1281px) {
    .footer__sub {
        padding: 60px 0 50px; 
    }

}
/* =========================
page top
============================ */
.topBtn {
    display: inline-block;
    padding: 10px 5px;
    background-color: var(--primary-blue);
    box-shadow: 2px 2px 4px 2px rgba(36, 167, 199, 0.2);
    position: fixed;
    bottom: 11.4%;
    right: 1.4%;
}
.topBtn img {
    max-width: 35px;
}
@media screen and  (min-width: 600px) {
    .topBtn img {
        max-width: 55px;
    }
}
/* =========================
footerBanner
============================ */
.footerBanner {
    width: 100%;
    font-family: "Questrial";
    font-size: 2.0rem;
    font-weight: 600;
    color: var(--primary-white);
    display: flex;
    align-items: center;
    position: fixed;
    bottom: 0;
}
.footerBanner__RR {
    background-color: var(--primary-pink);
    text-align: center;
    flex: 1;
    padding: 20px 0;
}
.footerBanner__WE {
    background-color: var(--primary-blue);
    text-align: center;
    flex: 1;
    padding: 20px 0;
}
@media screen and  (min-width: 1281px) {
    .footerBanner {
        display: none;
    }
}