@charset "UTF-8";

body {
    font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    margin: 0 auto;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: black;
}


p {
    text-align: justify;
}


/* 【ナビゲーション】 PC*/

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px 10px 0;
    background: #fff;
    position: relative;
    z-index: 1000;
    height: 100px;
    width: 100%;
    position: fixed;
    top: 0;

}

.logo {
    width: 20%;
}

.logo img {
    width: 100%;
    margin-top: 60px;
}

/* ---------- ナビゲーション ---------- */
.nav {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.nav li {
    margin: 0 5px;
    position: relative;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    white-space: nowrap;
}

.boder:hover {
    border-bottom: 2px solid #3EAD9C;
    padding-bottom: 2px;
    color: #3EAD9C;
    transition: 0.3s;
}

.square {
    color: #3EAD9C;
}

.sub-menu {
    display: none;
    position: absolute;
    background-color: #e6f5f3;
    top: 25px;
    left: 0;
    list-style: none;
    width: auto;
    height: auto;
    padding: 10px;
    margin: 0;
    border: 1px solid #ddd;
    width: 250px;
    /* 好きな幅に変更（例：200px） */
    min-width: 180px;
    /* 内容が長いときの保険 */
    box-sizing: border-box;
    text-align: left;
    /* テキストを左寄せ */
}

.sub-menu li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
    /* 改行を防止 */
}

.sub-menu li a:hover {
    background-color: #3EAD9C;
    color: #f0f8f6;
    transition: .4s;

}

.nav li:hover>.sub-menu {
    display: block;
}

/* ---------- ハンバーガーボタン ---------- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    width: 30px;
    height: 22px;
    gap: 6px;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #3EAD9C;
    border-radius: 3px;
    transition: 0.3s;
}

/* ---------- ハンバーガーON時のアニメーション ---------- */
.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}


/* 【ナビ】FUL */
@media (min-width:2301px) and (max-width:2560px) {

    .logo img {
        width: 100%;
        margin-top: 160px;
    }

    .nav li {
        font-size: clamp(18px, 1.8vw, 25px);
    }

        .sub-menu {
    width: 400px;
}
}

@media (min-width:1920px) and (max-width:2300px) {

    .nav li {
        font-size: clamp(18px, 1.8vw, 25px);
    }

    .logo img {
        width: 100%;
        margin-top: 140px;
    }

    .sub-menu {
    width: 350px;
}
}

/* 【ナビ】TAB/SP */
@media (min-width:769px) and (max-width:1025px) {

    header {
        height: 60px;
    }

    .logo {
        width: 30%;
    }

    .logo img {
        margin-top: 70px;
    }

    .hamburger {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.97);
        flex-direction: column;
        align-items: center;
        display: none;
        padding: 20px 0;
        border-top: 1px solid #ccc;
    }

    .nav.active {
        display: flex;
    }

    .nav li {
        margin: 10px 0;
    }

    .sub-menu {
        position: static;
        border: none;
        margin-top: 7px;
    }

    .nav li:hover>.sub-menu {
        display: none;
        /* ホバー無効 */
    }

    .nav li.open>.sub-menu {
        display: block;
    }

}

@media screen and (min-width:431px) and (max-width:768px) {

    header {
        height: 60px;
    }

    .logo {
        width: 30%;
    }

    .logo img {
        margin-top: 40px;
    }

    .hamburger {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.97);
        flex-direction: column;
        align-items: center;
        display: none;
        padding: 20px 0;
        border-top: 1px solid #ccc;
    }

    .nav.active {
        display: flex;
    }

    .nav li {
        margin: 10px 0;
    }

    .sub-menu {
        position: static;
        border: none;
        margin-top: 7px;
    }

    .nav li:hover>.sub-menu {
        display: none;
        /* ホバー無効 */
    }

    .nav li.open>.sub-menu {
        display: block;
    }

}


@media screen and (max-width: 431px) {

    header {
        height: 50px;
    }

    .logo {
        width: 30%;
    }

    .logo img {
        margin-top: 20px;
    }

    .hamburger {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.97);
        flex-direction: column;
        align-items: center;
        display: none;
        padding: 20px 0;
        border-top: 1px solid #ccc;
    }

    .nav.active {
        display: flex;
    }

    .nav li {
        margin: 10px 0;
    }

    .sub-menu {
        position: static;
        border: none;
        margin-top: 7px;
    }

    .nav li:hover>.sub-menu {
        display: none;
        /* ホバー無効 */
    }

    .nav li.open>.sub-menu {
        display: block;
    }
}

/* 【新名さん】 PC*/
.width {
    width: 100%;
    margin-top: 100px;
}

.voice {
    width: 70%;
    margin: 0 auto;
}

.voice-k {
    width: 70%;
    margin: 0 auto;
    padding-top: 100px;
}

.tittle-v {
    display: block;
    width: 15%;
    margin: 0 auto;
    padding-top: 70px;
    padding-bottom: 70px;
}

.tittle-v-n {
    text-align: right;
}

.border {
    border-bottom: 5px solid #FFA4AC;
    width: 100%;
    display: inline-block;
    padding-bottom: 20px;
    margin-bottom: 20px;
    text-align: right;
    font-size: clamp(18px, 1.8vw, 40px);
    font-weight: 700;
}

.border-1 {
    border-bottom: 5px solid #3EAD9C;
    width: 100%;
    display: inline-block;
    padding-bottom: 20px;
    margin-bottom: 20px;
    text-align: right;
    font-size: clamp(18px, 1.8vw, 40px);
    font-weight: 700;
}

.subtittle {
    font-size: clamp(16px, 1.8vw, 32px);
    font-weight: 500;
    margin-bottom: 40px;
    text-align: right;
}

.age {
    font-size: clamp(14px, 1.8vw, 22px);
}


.q1 {
    display: block;
    text-align: left;
}

.kokoro {
    font-family: "Zen Kurenaido";
    background-image: linear-gradient(to right, gray 1px, transparent 1px);
    background-size: 10px 1px;
    background-repeat: repeat-x;
    background-position: left bottom;
    line-height: 2;
    padding-bottom: 10px;
    font-size: clamp(12px, 1.8vw, 24px);
}

.interview {
    text-align: left;
    width: 100%;
    overflow: hidden;
}

.qa-grid-wrapper {
    display: flex;
    justify-content: center;
    /* 横方向中央揃え */
    width: 100%;
}

.qa-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    /* 各行はコンテンツ高さに合わせる */
    gap: 40px 80px;
    width: fit-content;
    padding-top: 20px;
}



.qa {
    width: 100%;
    text-align: left;
    overflow: hidden;
    margin-bottom: 60px;
}

.left1:nth-child(1),
.left2:nth-child(3),
.left3:nth-child(5) {
    grid-column: 1;
}

.right1:nth-child(2),
.right2:nth-child(4),
.right3:nth-child(6),
.right4:nth-child(7) {
    grid-column: 2;
}

.niina1 {
    width: 100%;
    position: relative;
    height: 500px;
    /* 親要素の高さ */
    margin: 0 auto;
    text-align: center;
}

.kinoshita1 {
    width: 100%;
    position: relative;
    height: 500px;
    /* 親要素の高さ */
    margin: 0 auto;
    text-align: center;
}

.niina1 img {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.kinoshita1 img {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.qa .tag {
    display: block;
    margin-bottom: 8px;
}

.tag img {
    width: 100%;
}

.clear {
    font-family: "Zen Kurenaido";
    background-image: linear-gradient(to right, gray 1px, transparent 1px);
    background-size: 10px 1px;
    background-repeat: repeat-x;
    background-position: left bottom;
    line-height: 2;
    padding-bottom: 10px;
    font-size: clamp(12px, 1.8vw, 24px);
}

.niina-waku img {
    width: 100%;
    margin-top: -500px;
}

.kinoshita-waku img {
    width: 100%;
    margin-top: -550px;
}



/* 【先輩の声】FUL */
@media (min-width: 2211px) and (max-width: 2560px) {
    .tittle-v {
        margin-bottom: 80px;
    }

    .voice-k {
        margin-top: 100px;
    }

    .niina1 img,
    .kinoshita1 img {
        width: 70%;
        padding-bottom: 50px;
    }

.qa-grid {
    padding-top: 20px;
}

}

@media (min-width: 1921px) and (max-width: 2210px) {
    .tittle-v {
        margin-bottom: 80px;
    }

    .voice-k {
        margin-top: 100px;
    }

    .kinoshita1 img {
        width: 95%;
        padding-bottom: 50px;
    }

    .qa-grid {
    padding-top: 30px;
}

}

@media (min-width: 1601px) and (max-width: 1920px) {

    .tittle-v {
        margin-bottom: 80px;
    }

    .voice-k {
        margin-top: 100px;
    }

    .kinoshita1 img {
        width: 95%;
    }
}


/* 【新名さん】TAB */
@media (min-width: 1441px) and (max-width: 1535px) {

    .kinoshita-waku img {
        width: 100%;
        margin-top: -450px;
    }
}

@media (min-width: 1026px) and (max-width: 1440px) {

    .voice,
    .voice-k {
        width: 55%;
    }

    .border,
    .border-1 {
        margin-top: 10px;
        font-size: clamp(25px, 1.8vw, 40px);
    }

    .subtittle {
        font-size: clamp(18px, 1.8vw, 32px);
    }

    .tittle-v {
        width: 18%;
        padding-top: 30px;
        padding-bottom: 20px;
    }

    .niina1 {
        height: 400px;
    }

    .kinoshita1 {
        height: 400px;
    }

    .niina1 img {
        width: 60%;
        margin: 0 auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .kinoshita1 img {
        width: 63%;
        margin: 0 auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding-bottom: 20px;
    }

    .qa-grid-wrapper {
        display: flex;
        justify-content: center;
        /* 横方向中央揃え */
        width: 100%;
    }

    .qa-grid {
        grid-template-columns: 1fr;
    }

    .tag img {
        width: 70%;
    }

    .left1:nth-child(1),
    .left2:nth-child(3),
    .left3:nth-child(5) {
        grid-column: 1;
    }

    .right1:nth-child(2),
    .right2:nth-child(4),
    .right3:nth-child(6),
    .right4:nth-child(7) {
        grid-column: 1;
    }

    .qa {
        margin-bottom: 30px;
    }

    .clear {
        line-height: 2.5;
    }

    .niina-waku img {
        width: 100%;
        margin-top: -100px;
    }

    .kinoshita-waku img {
        width: 100%;
        margin-top: -90px;
    }

}


@media (min-width: 769px) and (max-width: 1025px) {

.width {
    width: 100%;
    margin-top: 90px;
}

    .voice,
    .voice-k {
        width: 70%;
    }

    .border,
    .border-1 {
        margin-top: 10px;
        font-size: clamp(25px, 1.8vw, 40px);
    }

    .subtittle {
        font-size: clamp(18px, 1.8vw, 32px);
    }

    .tittle-v {
        width: 18%;
        padding-top: 30px;
        padding-bottom: 20px;
    }

    .niina1 {
        height: 400px;
    }

    .kinoshita1 {
        height: 400px;
    }

    .niina1 img {
        width: 70%;
        margin: 0 auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .kinoshita1 img {
        width: 72%;
        margin: 0 auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding-bottom: 20px;
    }

    .qa-grid-wrapper {
        display: flex;
        justify-content: center;
        /* 横方向中央揃え */
        width: 100%;
    }

    .qa-grid {
        grid-template-columns: 1fr;
    }

    .tag img {
        width: 70%;
    }

    .left1:nth-child(1),
    .left2:nth-child(3),
    .left3:nth-child(5) {
        grid-column: 1;
    }

    .right1:nth-child(2),
    .right2:nth-child(4),
    .right3:nth-child(6),
    .right4:nth-child(7) {
        grid-column: 1;
    }

    .qa {
        margin-bottom: 30px;
    }

    .clear {
        line-height: 2.5;
    }

    .niina-waku img {
        width: 100%;
        margin-top: -100px;
    }

    .kinoshita-waku img {
        width: 100%;
        margin-top: -80px;
    }

}

@media (min-width: 651px) and (max-width: 768px) {

.width{
margin-top: 90px;
}

    .voice,
    .voice-k {
        width: 70%;
    }

    .border,
    .border-1 {
        margin-top: 0;
        font-size: clamp(16px, 1.8vw, 40px);
    }

    .subtittle {
        font-size: clamp(14px, 1.8vw, 32px);
    }

    .tittle-v {
        width: 25%;
        padding-top: 30px;
        padding-bottom: 0;
    }

    .niina1 {
        height: 350px;
    }

    .kinoshita1 {
        height: 350px;
    }

    .niina1 img {
        width: 70%;
        margin: 0 auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .kinoshita1 img {
        width: 72%;
        margin: 0 auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding-bottom: 20px;
    }

    .qa-grid-wrapper {
        display: flex;
        justify-content: center;
        /* 横方向中央揃え */
        width: 100%;
    }

    .qa-grid {
        grid-template-columns: 1fr;
        gap: 40px 60px;
    }

    .tag img {
        width: 70%;
    }

    .left1:nth-child(1),
    .left2:nth-child(3),
    .left3:nth-child(5) {
        grid-column: 1;
    }

    .right1:nth-child(2),
    .right2:nth-child(4),
    .right3:nth-child(6),
    .right4:nth-child(7) {
        grid-column: 1;
    }

    .qa {
        margin-bottom: 30px;
    }

    .clear {
        line-height: 2.5;
    }

    .niina-waku img {
        width: 100%;
        margin-top: -100px;
    }

    .kinoshita-waku img {
        width: 100%;
        margin-top: -80px;
    }

}

@media (min-width: 431px) and (max-width: 650px) {

.width{
margin-top: 90px;
}

    .voice,
    .voice-k {
        width: 80%;
    }

    .border,
    .border-1 {
        margin-top: 0;
        font-size: clamp(18px, 1.8vw, 40px);
    }

    .subtittle {
        font-size: clamp(16px, 1.8vw, 32px);
    }

    .tittle-v {
        width: 23%;
        padding-top: 30px;
        padding-bottom: 0;
    }


    .niina1 {
        height: 250px;
    }

    .kinoshita1 {
        height: 250px;
    }

    .niina1 img {
        width: 60%;
        margin: 0 auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .kinoshita1 img {
        width: 65%;
        margin: 0 auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding-bottom: 30px;
    }

    .qa-grid-wrapper {
        display: flex;
        justify-content: center;
        /* 横方向中央揃え */
        width: 100%;
    }

    .qa-grid {
        grid-template-columns: 1fr;
        gap: 25px 60px;
    }

    .tag img {
        width: 70%;
    }

    .left1:nth-child(1),
    .left2:nth-child(3),
    .left3:nth-child(5) {
        grid-column: 1;
    }

    .right1:nth-child(2),
    .right2:nth-child(4),
    .right3:nth-child(6),
    .right4:nth-child(7) {
        grid-column: 1;
    }

    .qa {
        margin-bottom: 30px;
    }

    .clear {
        line-height: 2.5;
    }

    .niina-waku img {
        width: 100%;
        margin-top: -100px;
    }

    .kinoshita-waku img {
        width: 100%;
        margin-top: -80px;
    }

}

/* 【新名さん】 SP*/
@media screen and (max-width: 430px) {

.width{
margin-top: 50px;
}

   .voice,
    .voice-k {
        width: 80%;
    }

    .border,
    .border-1 {
        margin-top: 0;
        font-size: clamp(14px, 1.8vw, 40px);
        padding-bottom: 10px;
    margin-bottom: 10px;
    }

    .subtittle {
        font-size: clamp(12px, 1.8vw, 32px);
    }

    .tittle-v {
        width: 23%;
        padding-top: 30px;
        padding-bottom: 0;
    }


    .niina1 {
        height: 250px;
    }

    .kinoshita1 {
        height: 250px;
    }

    .niina1 img {
        width: 70%;
        margin: 0 auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .kinoshita1 img {
        width: 75%;
        margin: 0 auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding-bottom: 0;
    }

    .qa-grid-wrapper {
        display: flex;
        justify-content: center;
        /* 横方向中央揃え */
        width: 100%;
    }

    .qa-grid {
        grid-template-columns: 1fr;
        gap: 15px 60px;
    }

    .tag img {
        width: 70%;
    }

    .left1:nth-child(1),
    .left2:nth-child(3),
    .left3:nth-child(5) {
        grid-column: 1;
    }

    .right1:nth-child(2),
    .right2:nth-child(4),
    .right3:nth-child(6),
    .right4:nth-child(7) {
        grid-column: 1;
    }

    .qa {
        margin-bottom: 20px;
    }

    .clear {
        line-height: 2.5;
    }

    .niina-waku img {
        width: 100%;
        margin-top: -60px;
    }

    .kinoshita-waku img {
        width: 100%;
        margin-top: -35px;
    }

}


/* 【電話番号バナー※下部固定】*/
.fixed-banner {
    /* 背景や幅などを設定 */
    background-color: #F05924;
    text-align: center;
    z-index: 1000;
    /* 他の要素の上に表示させる */
    display: none;
    /* box-shadow: 0px -2px 2px rgba(160, 160, 160, 0.8); */
    width: 100%;
    padding: 7px 0 5px 0;
}

.fixed-banner img {
    width: 100%;
    animation: move-up-down 3s ease-in-out infinite;
}

@keyframes move-up-down {
    0% {
        transform: translateY(0);
        /* 開始時の位置 */
    }

    50% {
        transform: translateY(-3px);
        /* 上に移動する位置 */
    }

    100% {
        transform: translateY(0);
        /* 元の位置に戻る */
    }
}

/* スマホでのみ固定表示 */
@media (max-width: 768px) {

    /* 768px以下の画面幅で適用 */
    .fixed-banner {
        position: fixed;
        left: 0;
        bottom: 0;
        display: block;
    }
}

.fixed-banner img {
    animation: move-up-down 3s ease-in-out infinite;
}


/* 【フッター】PC*/
.upper-part {
    display: flex;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.company {
    margin-top: 30px;
    text-align: center;

}

.log {
    width: 40%;
}

.address {
    display: inline-block;
    text-align: left;
    font-size: clamp(16px, 1.8vw, 25px);
    margin-left: 0;
    margin: 0 auto;
    line-height: 1.5;
}

.f-tel{
       display: inline-block;
    text-align: left;
    font-size: clamp(16px, 1.8vw, 25px);
    margin-left: 0;
    margin: 0 auto;
    padding-top: 1rem;
}

.star {
    margin-top: 20px;
    width: 20%;
}

.bottom-part {
    text-align: center;
    color: #ffffff;
    background-color: #3EAD9C;
    padding: 30px 0;
}

/* 【フッター】TAB*/
@media (min-width: 1026px) and (max-width: 1534px) {
    .upper-part {
        display: block;
    }

    .log {
        width: 20%;
        margin-bottom: 20px;
    }

    .address {
        display: inline-block;
        text-align: left;
        font-size: clamp(20px, 1.8vw, 40px);
        margin-left: 0;
        margin: 0 auto;
    }

    .star {
        margin-top: 30px;
        width: 10%;
        margin-bottom: 40px;
    }

    iframe {
        width: 100%;
        height: auto;
    }

    .bottom-part {
        margin-bottom: 0;
    }
}


@media (min-width: 769px) and (max-width: 1025px) {

    .company {
        text-align: center;
    }

    .upper-part {
        display: block;
    }


    .log {
        width: 30%;
        margin-bottom: 40px;
    }

    .address {
        display: inline-block;
        text-align: left;
        font-size: clamp(25px, 1.8vw, 40px);
        margin-left: 0;
        margin: 0 auto;
    }

    .star {
        margin-top: 50px;
        width: 15%;
        margin-bottom: 40px;
    }

    iframe {
        width: 100%;
        height: auto;
    }

    .bottom-part {
        margin-bottom: 0;
    }


}

@media (min-width: 431px) and (max-width: 768px) {

    .upper-part {
        display: block;
    }

    .log {
        width: 25%;
    }

    .address {
        text-align: left;
        font-size: 14px;
        margin-left: 10px;
    }

    .star {
        margin-top: 20px;
        width: 12%;
        margin-bottom: 40px;
    }

    iframe {
        width: 100%;
        height: auto;
    }

    .bottom-part {
        height: 100px;
        margin-bottom: 70px;
        padding: 30px 0 50px 0;
    }



}

/* 【フッター】 SP*/
@media screen and (max-width: 430px) {

    footer {
        margin-bottom: 0;
    }

    .upper-part {
        display: block;
    }

    .company {
        margin-top: 30px;
        text-align: center;

    }

    .log {
        width: 35%;
    }

    .address {
        text-align: left;
        font-size: 12px;
        line-height: 1.5;
        margin-left: 20px;
        margin-top: 20px;
    }

    .star {
        margin-top: 20px;
        margin-bottom: 20px;
        width: 15%;
    }

    iframe {
        width: 98%;
        height: 100%;
        margin-bottom: 10px;
    }

    .bottom-part {
        padding: 15px 0 25px 0;
        margin-bottom: 57px;
    }

    .bottom-part span {
        font-size: 10px;
    }
}

@media (max-width: 320px) {
    footer {
        margin-bottom: 0;
    }

    .bottom-part {
        margin-bottom: 55px;
    }
}