@charset "utf-8";

/*========================================
common
========================================*/
:root {
    --bp-white: #FDFDFD;
    --bp-backGround: #fff5c8;
    --bp-txt: #333333;
    --bp-Green: #00b430;
    --bp-Brown: #78300B;
    --bp-backGroundComment: #FFFFE1;
    --bp-backGroundVoice: #e8f4dd;
    --bp-backGroundGreen: #D7F8BA;
    --bp-linePink: #FC6C00;
    --bp-Orange: #FC6C00;
    --contentWidth: 94.1%;
    --contentPadding: 4.2%;
}

html {
    font-size: 62.5%;
}

body {
    font-family: 'Noto Sans Jp', Arial, sans-serif;
    font-style: normal;
    color: var(--bp-txt, #333333);
    font-weight: 400;
    font-size: 1.4rem;
    background-color: var(--bp-backGround, #fff5c8);
    line-height: 1.5;
    min-width: 440px;
}

img {
    width: 100%;
    height: auto;
    line-height: 1;
}

.main {
    margin: 0 auto;
    min-width: 440px;
}

.btn {
    max-width: 1024px;
    text-align: center;
    margin: 10px 0 0;
    padding: 0 1rem 100px;
}

.btn:hover {
    opacity: 0.8;
    transition: 0.4s;
}

.btn__topic {
    max-width: 400px;
    margin-bottom: 10px;
}

.btn__set {
    max-width: 700px;
    margin: 80px auto 0;
}

.about__image,
.point__image {
    max-width: 1040px;
    margin: 0 auto;
}

.point__image img {
    padding: 50px 2% 0 6%;
}

.spBr {
    display: none;
}

@media screen and (max-width: 768px) {
    .btn {
        min-width: 440px;
    }

    .btn__topic {
        max-width: 300px;
        text-align: left;
        margin: 60px auto 0 2rem;
    }
}

@media screen and (max-width: 450px) {
    .spBr {
        display: block;
    }
}

/*========================================
header
========================================*/
.header {
    width: 100%;
    height: 110px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--bp-white);
    border-top: solid 20px var(--bp-Green);
    z-index: 99;
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.3);
}

.headerItem {
    gap: 0 10px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: top;
}

.headerTittleSub {
    margin-top: 10px;
    color: var(--bp-Brown);
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.2;
}

.headerTittleMain {
    color: var(--bp-Green);
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1;
}

.headerPhoneN {
    color: var(--bp-Brown);
    font-size: 4.4rem;
    font-weight: 800;
    line-height: 1;
}

.free{
    width: 50px;
}

.headerBtn {
    width: 320px;
}

.headerBtn img {
    padding-left: 15px;
    margin-top: -20px;
}

@media screen and (max-width: 1024px) {
    .header {
        border-top: solid 17px var(--bp-Green);
        height: 85px;
    }

    .headerItem {
    gap: 0 16px;
    }
    
    .headerBtn img {
        margin-top: -17px;
    }

    .headerTittleMain {
        font-size: 2.8rem;
    }

    .headerPhoneN {
        font-size: 3.2rem;
    }

    .headerTittleSub {
        font-size: 1.4rem;
    }

    .headerBtn {
        width: 220px;
    }

    .headerBtn_start {
        width: 100%;
    }

    .free{
    width: 40px;
    }
}

@media screen and (max-width: 768px) {
    .header {
        border-top: solid 14px var(--bp-Green);
        height: 70px;
    }

    .headerItem {
    gap: 0 6%;
    }

    .headerBtn img {
        margin-top: -14px;
    }

    .headerTittleMain {
        font-size: 2.2rem;
    }

    .headerPhoneN {
        font-size: 2.4rem;
    }

    .headerTittleSub {
        font-size: 1.2rem;
    }

    .headerBtn {
        display: none;
    }

    .free{
    width: 32px;
    }
}

@media screen and (max-width: 660px) {
    .headerBtn {
        display: none;
    }
}

@media screen and (max-width: 440px) {
    .headerBtn {
        display: none;
    }

    .headerItem {
    gap: 0 10px;
    }

    .header {
        border-top: solid 12px var(--bp-Green);
        height: 70px;
    }

    .headerTittleMain {
        font-size: 2.1rem;
    }

    .headerPhoneN {
        font-size: 2.3rem;
    }

    .headerTittleSub {
        font-size: 1.2rem;
    }
}

/*========================================
topImage
========================================*/
.topImage {
    width: 100%;
    position: relative;
}

.topImage img {
    padding-top: 0;
    width: 100%;
    display: block;
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
}

.annotation {
    font-size: 1.2rem;
    padding-top: 10px;
    margin-left: 10px;
}

.annotation--topImage {
    padding: 8px 3rem 0;
}

.topImage__notice {
    font-weight: 500;
}

.btn__set--sp {
    display: none;
}

.btn--top {
    padding: 0;
    position: absolute;
    bottom: 0;  
    right: 5%;  
}

.btn--top img{
    width: 360px;
    margin-bottom: 18px;
}

@media screen and (max-width: 1024px) {
    .btn--top img{
        width: 300px;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 768px) {
    .btn__set--sp {
        display: block;
        position: fixed;
        text-align: center;
        width: 100%;
        background-color: var(--bp-backGroundComment);
        z-index: 99;
        bottom: 0;
        padding: 20px 8%;
    }

    .btn__set--sp img {
        max-width: 400px;
    }

    .btn__topic img {
        padding-left: 2rem;
        width: 80%;
    }

    .btn--about img {
        width: 80%;
    }

    .btn {
        padding-bottom: 0;
    }

    .btn .topImage img {
        padding-top: 50px;
        min-width: 440px;
    }

    .annotation--topImage {
        font-size: 1.2rem;
        padding: 195px 3rem 0;
        /* padding-top: 10px;
        margin-left: 10px; */
    }
}

@media screen and (max-width: 440px) {
    .btn__set--sp {
        display: block;
        position: fixed;
        width: 100%;
        background-color: var(--bp-backGroundComment);
        z-index: 99;
        bottom: 0;
        padding: 20px 8%;
    }

    .btn__topic img {
        padding-left: 2rem;
        width: 80%;
    }

    .btn--about img {
        width: 80%;
    }

    .btn {
        padding-bottom: 0;
    }

    .btn .topImage img {
        padding-top: 50px;
        min-width: 440px;
    }

    .annotation--topImage {
        font-size: 1.2rem;
        padding: 195px 3rem 0;
        /* padding-top: 10px;
        margin-left: 10px; */
    }
}

/*========================================
about
========================================*/
.section--about {
    max-width: 1024px;
    margin: 0 auto;
    padding-top: 0;
    background-color: #ffffe1;
}

.about__topic {
    font-size: 2.8rem;
    font-weight: 600;
    text-align: center;
    margin-top: 60px;
}

.aboutList {
    background-image: url(../images/bp_aboutMemoPc.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    padding: 40px;
    max-width: 570px;
    width: 100%;
    height: 360px;
    margin: 0 auto;
}

.aboutList__item {
    font-size: 2.2rem;
    font-weight: 600;
    text-align: left;
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

.aboutList__item::before {
    content: "";
    display: block;
    background-image: url(../images/bp_aboutCheck.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 28px;
    height: 28px;
    margin-left: 10px;
}

.annotation--about {
    font-size: 1.5rem;
    text-align: center;
    margin-top: 10px;
}

.btn--about {
    max-width: 700px;
    text-align: center;
}

.about__blowing {
    display: block;
    max-width: 30%;
    margin: 0 auto;
}

.about__comment1 {
    font-size: 3.4vw;
    font-weight: 500;
    line-height: 1.2;
    color: var(--bp-Green);
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 3rem 2rem;
    margin-top: 30px;
}

.about__comment1::after {
    content: "";
    display: block;
    background-image: url(../images/bp_aboutTopicPc1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.about__comment1::before {
    content: "";
    display: block;
    background-image: url(../images/bp_aboutTopicPc2.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 40px;
    height: 32px;
    position: absolute;
    top: 0%;
    left: 70%;
}

.about__comment2 {
    font-size: 3.4vw;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    margin-top: 8px;
}

.btn--about{
    padding-bottom: 60px;
}

.btnSp {
    transition: transform 0.2s ease;
    display: block;
    width: 100%;
    margin: 0 auto;
}
.btnSp:hover {
    transform: scale(0.95) translateY(2px);
}
.btnSp.headerBtn:active {
    transform: scale(0.90) translateY(4px);
}

.headerBtn{
    transition: transform 0.2s ease;
}
.headerBtn:hover {
    transform: scale(0.95) translateY(2px);
}
.headerBtn.headerBtn:active {
    transform: scale(0.90) translateY(4px);
}

.btnPc1{
    transition: transform 0.2s ease;
}
.btnPc1:hover {
    opacity: 0.8;
    transform: scale(0.95) translateY(2px);
}
.btnPc1.headerBtn:active {
    transform: scale(0.90) translateY(4px);
}

.btnPc2{
    transition: transform 0.2s ease;
}
.btnPc2:hover {
    opacity: 0.8;
    transform: scale(0.95) translateY(2px);
}
.btnPc2.headerBtn:active {
    transform: scale(0.90) translateY(4px);
}

@media screen and (max-width: 768px) {
    .aboutSp {
        display: block;
        margin: 0 auto;
        max-width: 440px;
        padding-top: 0;
    }

    .aboutSp {
        margin-top: 20px;
        padding: 0;
    }

    .aboutList {
        height: 360px;
    }

    .about__topic {
        font-size: 2rem;
    }

    .annotation--topImage {
        padding: 10px 3rem 0;
    }

    .about__annotation {
        font-size: 1.2rem;
    }

    .btnSp {
        margin: 0 auto;
    }
}

@media screen and (max-width: 660px) {
    .aboutList {
        padding: 0;
        margin: 0 auto;
        background-position: top;
        width: 100%;
        height: 360px;
    }

    .aboutList__item {
        font-size: 3.6vw;
        padding-right: 0;
        padding-left: 6%;
        margin-top: 2.8%;
        margin-left: 20px;
    }

    .aboutList__item:first-of-type {
        padding-top: 5%;
    }

    .aboutList__item::before {
        width: 20px;
        height: 20px;
        margin-left: 6px;
    }
}

@media screen and (max-width: 440px) {
    .aboutList {
        background-image: url(../images/bp_aboutMemoPc.png);
        padding: 20px 2.5%;
        max-width: 400px;
        height: auto;
        margin: 0 auto;
    }

    .aboutList__item {
        font-size: 4vw;
        margin-top: 8px;
        gap: 4px;
        margin-left: 8px;
    }

    .aboutList__item::before {
        margin-left: 0;
        width: 16px;
        height: 16px;
    }

    .aboutList__item:first-of-type {
        padding-top: 0%;
        margin-top: 0;
    }

    .aboutList__item:last-of-type {
        margin-bottom: 24px;
    }

    .about__topic {
        margin-top: 40px;
        margin-bottom: 20px;
    }

    .btn--top {
        display: block;
        margin-top: 0;
    }

    .btnPc1 {
        margin: 30px auto 0;
        width: 360px;
    }
    
    .btnPc2 {
        margin: 30px auto 0;
        width: 360px;
    }

    .btn--Sp {
        width: 100%;
    }

    .about__blowing {
        max-width: 50%;
        margin-top: 20px;
    }

    .about__comment1 {
        font-size: 6.5vw;
        line-height: 1.4;
    }

    .about__comment1::after {
        width: 90%;
    }

    .about__comment2 {
        font-size: 6.5vw;
        line-height: 1.4;
        margin-top: 0;
    }
}

/*========================================
variation
========================================*/
.section--variation {
    max-width: 1024px;
    margin: 0 auto;
    padding-top: 0;
    background-color: #ffffe1;
}

.variation__top {
    padding: 80px 3% 0;
}

.variation__topImage {
    width: 100%;
    min-width: 260px;
}

.variation__topic {
    margin-top: 40px;
    font-size: 3.2rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.5;
}

.variation__title {
    font-size: 4.2rem;
    font-weight: 500;
    text-align: center;
    color: var(--bp-Green);
    margin-top: 80px;
}

.variation__sub {
    font-size: 2.8rem;
    font-weight: 500;
    text-align: center;
}

.ariation__txtMax {
    font-size: 5rem;
    color: var(--bp-Green);
}

.variation__txtMin {
    font-size: 1.2rem;
}

.annotation--variation1 {
    font-size: 1.2rem;
    margin-top: 10px;
    padding: 0 7% 0;
}

.annotation--variation2 {
    font-size: 1.2rem;
    margin-top: 10px;
    padding: 0 7% 0;
    text-align: center;
}

.variation__image--toic {
    display: block;
    margin: 24px auto 0;
    width: 330px;
}

.variation__txt {
    font-size: 2rem;
    line-height: 1.8;
    font-weight: 500;
    width: 400px;
    margin: 20px auto 0;
}

.variation__bottom1 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 40px 3% 0;
}

.brSp {
    display: none;
}

@media screen and (max-width: 1024px) {
    .section--variation {
        padding: 0 5% 60px;
    }
}

@media screen and (max-width: 768px) {
    .section--variation {
        padding-bottom: 60px;
    }

    .variation__top {
        padding-top: 60px;
    }

    .variation__topic {
        margin-top: 40px;
        font-size: 2.4rem;
        font-weight: 500;
        text-align: center;
        line-height: 1.5;
    }

    .variation__title {
        font-size: 3.4rem;
        font-weight: 500;
        margin-top: 50px;
    }

    .variation__sub {
        font-size: 2.4rem;
        font-weight: 500;
    }

    .btn__set {
        display: none;
    }
}

@media screen and (max-width: 450px) {
    .btn__set--process {
        display: none;
    }

    .section--variation {
        padding-bottom: 0;
    }

    .variation__top {
        padding: 40px 8% 0;
    }

    .variation__topic {
        margin-top: 40px;
        font-size: 2.4rem;
        font-weight: 500;
        text-align: center;
        line-height: 1.5;
    }

    .variation__title {
        font-size: 3.4rem;
        font-weight: 500;
        margin-top: 50px;
    }

    .variation__sub {
        font-size: 2.4rem;
        font-weight: 500;
    }

    .brSp {
        display: block;
    }

    .annotation--variation1 {
        font-size: 1.2rem;
        padding: 0 6% 0;
    }

    .annotation--variation2 {
        font-size: 1.2rem;
    }

    .variation__txt {
        padding: 0 8%;
    }

    .variation__bottom1 {
        padding: 0 8%;
        margin-top: 40px;
    }
}

/*========================================
point
========================================*/
.section--pointTopic {
    background-color: #FFF586;
    width: 100%;
    padding-top: 45px;
    padding-bottom: 90px;
}

.topic--pointTopic {
    display: flex;
    justify-content: center;
    width: 100%;
}

.pointTopicIllust img {
    width: 320px;
    height: 245px;
    flex-shrink: 0;
    object-fit: contain;
    padding-left: 40px;
}

.h2 {
    font-size: 5rem;
    color: var(--bp-Green);
    line-height: 1.6;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.h2Go {
    font-size: 5rem;
    color: var(--bp-txt);
    line-height: 1.6;
    font-weight: 800;
    font-family: serif;
    letter-spacing: -0.05em;
}

.h2Mi {
    font-size: 5.8rem;
    color: var(--bp-txt);
    line-height: 1.6;
    font-weight: 800;
    font-family: serif;
    letter-spacing: -0.05em;
}

.h4 {
    margin: 30px 20% 0;
    color: var(--bp-txt);
    font-weight: 500;
    max-width: 976px;
    font-size: 2.8rem;
    line-height: 1.75;
    letter-spacing: 0.025em;
}

.h4Gr {
    color: var(--bp-Green);
}

.fukidashi {
    text-align: center;
    max-width: 1024px;
    background-color: var(--bp-backGroundComment);
    margin: 0 auto;
}

.fukidashi img {
    width: 250px;
}

.pointTopicTxt{
    padding-left: 40px;
}

.section--point {
    max-width: 1024px;
    margin: 0 auto;
    padding-top: 0;
    background-color: var(--bp-backGroundComment);
}

.annotation--point {
    font-size: 1.2rem;
    padding-left: 6%;
}


@media screen and (max-width: 1025px) {
    .section--pointTopic {
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .h4 {
        margin: 30px 9% 0;
    }

    .btn__set--point {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .pointTopicIllust img {
        width: 220px;
        height: auto;
        padding-bottom: 20px;
        padding-left: 0;
    }

    .section--pointTopic {
        padding-top: 30px;
        padding-bottom: 40px;
    }

    .topic--pointTopic {
        display: block;
        text-align: center;
    }

    .h2 {
        margin: 0 6%;
        font-size: 3.2rem;
        line-height: 1.3;
    }

    .h2Go {
        font-size: 3.2rem;
        line-height: 1.3;
    }

    .h2Mi {
        font-size: 4.4rem;
        line-height: 1.3;
    }

    .h4 {
        margin: 10px 12% 0;
        font-size: 2rem;
        line-height: 1.6;
    }

    .pointSp {
        display: block;
        margin: 0 auto;
        max-width: 440px;
        padding-top: 0;
    }

    .section--point {
        padding: 0 5% 60px;
    }

    .annotation--point {
        padding: 0 5%;
    }
}

@media screen and (max-width: 450px) {
    .section--pointTopic {
        padding-top: 10px;
        padding-bottom: 30px;
    }

    .pointTopicIllust img {
        width: 200px;
        height: auto;
    }

    .btn__set--point {
        display: none;
    }

    .h2 {
        margin: 0;
        font-size: 3.2rem;
        line-height: 1.3;
    }

    .h2Go {
        font-size: 3.2rem;
        line-height: 1.3;
    }

    .h2Mi {
        margin: 0 0 0 1%;
        font-size: 3.2rem;
        line-height: 1.3;
    }

    .h4 {
        font-size: 2rem;
        line-height: 1.75;
    }

    .section--point {
        padding-bottom: 40px;
    }

    .pointTopicTxt{
        padding-left: 0;
    }
}

/*========================================
process
========================================*/
.section--process {
    max-width: 1024px;
    margin: 0 auto;
    padding-top: 0;
    background-color: var(--bp-backGroundComment);
}

@media screen and (max-width: 768px) {
    .btn__set--process {
        display: none;
    }
}

@media screen and (max-width: 450px) {
    .btn__set--process {
        display: none;
    }
}

/*========================================
movie
========================================*/
.section--movie {
    max-width: 1024px;
    margin: 0 auto;
    padding-top: 0;
    background-color: var(--bp-backGroundComment);
    position: relative;
}

.movie__link {
    position: absolute;
    width: 55%;
    aspect-ratio: 16/9;
    top: 32%;
    left: 50%;
    transform: translateX(-50%);
}

.movie__topic{
    display: none;
}

@media screen and (max-width: 768px) {
    .section--movie {
        margin: 0 auto;
        padding: 40px 6%;
        background-color: var(--bp-backGroundComment);
    }

    .movie__link {
        margin-top: 26px;
        width: 33%;
        aspect-ratio: 16/9;
        position: static;
        width: 100%;
        transform: translateX(0);
    }

    .movie__image {
        display: none;
    }

    .movie__topic{
        display: block;
        font-size: 2.4rem;
        font-weight: 500;
        text-align: center;
    }
}

@media screen and (max-width: 450px) {
    .movie__topic{
        font-size: 2rem;
    }
}

/*========================================
comment
========================================*/

/* -----------------------------
共通セクション
----------------------------- */
.section {
    width: 100%;
    box-sizing: border-box;
}

/* -----------------------------
commentTopic セクション
----------------------------- */
.commentn--pointTopic {
    width: 100%;
    margin: 0 auto;
    padding: 40px 16px;
    background-color: #FFF586;
}

.commentTopicTxt {
    text-align: center;
}

.commentTopicMain {
    font-family: serif;
    font-size: 5rem;
    font-weight: 600;
    line-height: 1.75;
    margin-top: 30px;
}

.commentTopicMainGr {
    font-family: 'Noto Sans JP', Arial, sans-serif;
    color: var(--bp-Green);
    font-weight: 800;
    overflow: visible;
}

.underline {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.underline::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 9px;
    width: 110%;
    height: 14px;
    background-color: white;
    transform: translateX(-50%) rotate(-2deg) scaleX(0);
    transform-origin: center bottom;
    z-index: -1;
    transition: transform 0.6s ease;
}

.underline.active::after {
    transform: translateX(-50%) rotate(-3deg) scaleX(1);
}

.commentTopicCap {
    text-align: left;
    margin: 30px auto;
    max-width: 820px;
    font-size: 2.8rem;
    line-height: 1.75;
    font-weight: 700;
}

@media screen and (max-width: 768px) {
    .commentTopicMain {
        font-size: 3.8rem;
        line-height: 1.5;
    }

    .underline::after {
        bottom: 2px;
        height: 12px;
    }

    .commentTopicCap {
        text-align: left;
        font-size: 2.2rem;
        line-height: 1.75;
        margin: 20px 3%;
    }
}

@media screen and (max-width: 450px) {
    .commentn--pointTopic {
        padding: 20px 16px;
    }

    .commentTopicMain {
        font-size: 2.8rem;
        line-height: 1.2;
        margin-top: 10px;
    }

    .underline::after {
        bottom: 6px;
        height: 12px;
    }

    .commentTopicMainGr {
        line-height: 1.8;
    }

    .commentTopicCap {
        text-align: left;
        font-size: 1.8rem;
        line-height: 1.75;
        margin: 10px 2%;
        letter-spacing: -0.01em;
    }
}

/* -----------------------------
comment セクション
----------------------------- */
.section--comment {
    max-width: 1024px;
    margin: 0 auto;
    padding-top: 40px;
    padding-bottom: 60px;
    background-color: var(--bp-backGroundComment);
}

.comment {
    display: flex;
    margin: 0 9.75%;
}

.comment__image {
    /* width: 208px;
    min-width: 208px; */
    flex-shrink: 0;
    max-width: none;
}

.comment__image img {
    width: 100%;
    max-width: 450px;
    display: block;
}

.commentTxt {
    margin-left: 6%;
    margin-top: 41px;
}

.commentTittle {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.55;
    max-width: 564px;
}

.commentCap {
    margin-top: 41px;
    font-family: 'Sawarabi Gothic', sans-serif;
    font-size: 18px;
    line-height: 1.65;
    max-width: 564px;
}

/* -----------------------------
レスポンシブ（タブレット以下）
----------------------------- */
@media screen and (max-width: 768px) {
    .comment {
        margin: 0 4%;
        flex-direction: column;
    }

    .comment {
        text-align: center;
    }

    .comment__image {
        margin: 0 auto;
    }

    .commentTxt {
        text-align: left;
        margin: 0 auto;
    }

    .commentTittle {
        margin-top: 20px;
        text-align: center;
    }
}

@media screen and (max-width: 450px) {
    .comment__image {
        margin: 0 auto;
    }

    .comment {
        margin: 0 6%;
    }

    .commentTxt {
        padding-left: 20px;
    }

    .commentTittle {
        font-size: 2.5rem;
        line-height: 1.55;
        max-width: 350px;
    }

    .commentCap {
        margin-top: 20px;
    }
}

/*========================================
voice
========================================*/
.bgGreen {
    width: 100%;
    background-color: var(--bp-backGroundGreen);
}

.section--voice {
    display: block;
    max-width: 1024px;
    margin: 0 auto;
    padding: 50px 0 70px;
    background-color: var(--bp-backGroundVoice);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.section--voice::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 50%;
    width: 100%;
    height: 100%;
    background-image: url(../images/bp_commentBg.png);
    background-repeat: no-repeat;
    transform: translateX(-50%);
    z-index: -1;
    background-position: center top;
}


.voiceMainTittl {
    color: var(--bp-Green);
    font-size: 4rem;
    line-height: 1;
    font-weight: 600;
    rotate: -5deg;
    padding-left: 10%;
    padding-top: 65px;
    position: relative;
    display: inline-block;
    z-index: 1;
}

.voiceMainTittl::before {
    content: "";
    position: absolute;
    top: 54%;
    right: -63%;
    width: 48%;
    height: 48%;
    background-image: url("../images/bp_voiceMainTittl_icon.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translate(-50%, 0%) rotate(1deg);
    z-index: -1;
    pointer-events: none;
}

.voiceFrame {
    margin: 0 14%;
}

.voiceTittlFrame {
    background-color: var(--bp-white);
    display: block;
    margin-top: 43px;
    background-color: var(--bp-white);
    padding: 16px 32px;
    border: 1px solid #00b430;
    width: fit-content;
}

.voiceTittl {
    font-size: 2.4rem;
    line-height: 1.75;
    font-weight: 600;
}

.voiceCassette {
    display: flex;
    margin-top: 18px;
}

.voicePhoto {
    width: 107px;
    min-width: 107px;
    flex-shrink: 0;
    max-width: none;
}

.voiceTittlSub {
    color: var(--bp-Green);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.5;
    margin-left: 18px;
    letter-spacing: -0.02em;
}

.voiceProfile {
    font-size: 1.8rem;
    line-height: 1.5;
    margin: 14px 0 0 18px;
}

.voiceTxt {
    max-width: 725px;
    margin-top: 18px;
    font-family: 'Sawarabi Gothic', sans-serif;
    font-size: 1.8rem;
    line-height: 1.7;
}

.linePink {
    margin: 43px 11% 0;
    height: 1px;
    background-color: var(--bp-linePink);
}

@media screen and (max-width: 768px) {
    .voiceMainTittl {
        font-size: 3.6rem;
        padding-left: 5%;
    }

    .voiceTittlFrame {
        padding: 12px 16px;
    }

    .voiceTittl {
        line-height: 1.5;
    }

    .voiceTittlSub {
        line-height: 1.5;
    }

    .voiceFrame {
        margin-left: 5%;
        margin-right: 5%;
    }

    .linePink {
        margin: 43px 4% 0;
    }

    .section--voice {
        padding: 50px 0 50px;
    }
}

@media screen and (max-width: 450px) {
    .voiceCassette {
        display: block;
        text-align: center;
    }
    
    .voiceMainTittl::before {
        top: 63%;
        right: -48%;
        width: 35%;
        height: 35%;
    }

    .voiceTittlFrame {
        text-align: center;
        margin: 40px auto 0;
    }

    .voicePhoto {
        margin: 0 auto;
    }

    .voiceMainTittl {
        font-size: 3.2rem;
    }

    .section--voice {
        padding: 50px 0 30px;
    }
}

/*========================================
facility
========================================*/
.section--facility {
    max-width: 1024px;
    margin: 0 auto;
    padding-top: 0;
    background-color: var(--bp-backGroundComment);
}

.facility {
    padding-top: 70px;
    text-align: center;
}

.facility__image img {
    max-width: 756px;
}

@media screen and (max-width: 768px) {
    .facility {
        padding: 35px 5% 0;
    }

    .btn__set--facility {
        display: none;
    }

    .section--facility {
        padding-top: 30px;
        padding-bottom: 60px;
    }
}

@media screen and (max-width: 450px) {
    .section--facility {
        padding-top: 0;
        padding-bottom: 30px;
    }
}

/*========================================
select
========================================*/
.topic--selectTopic {
    background-color: var(--bp-backGround);
    position: relative;
    overflow: hidden;
}

.topic--selectTopic {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.topic--selectTopic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1024px;
    height: 100%;
    background-color: var(--bp-backGroundComment);
    z-index: -1;
}

.selectTopic__image {
    position: relative;
    z-index: 2;
}

.selectTittle {
    text-align: center;
    font-size: 5rem;
    line-height: 1.75;
    font-weight: 600;
    padding-top: 80px;
}

.set-highlight {
    color: var(--bp-Green);
    position: relative;
    display: inline-block;
    z-index: 1;
}

.set-highlight::before {
    content: '';
    position: absolute;
    top: 12px;
    left: -15px;
    right: -7px;
    bottom: 5px;
    border: 2px solid green;
    background-color: white;
    z-index: -1;
}

.section--select {
    max-width: 1024px;
    margin: 0 auto;
    padding-top: 0;
    background-color: var(--bp-backGroundComment);
}

.selectDown {
    font-size: 4rem;
}

.setTittle {
    font-size: 6rem;
    font-weight: 600;
    color: var(--bp-Green);
}

.setTittleDown {
    font-size: 5rem;
    color: var(--bp-txt);
}

.setTxt {
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.5;
}

@media screen and (max-width: 768px) {
    .selectTittle {
        font-size: 3.8rem;
        line-height: 1.5;
        padding-top: 60px;
    }

    .set-highlight::before {
        top: 3px;
        left: -10px;
        right: -2px;
        bottom: -2px;
    }

    .setTittle {
        font-size: 4.4rem;
        font-weight: 600;
        color: var(--bp-Green);
    }

    .setTittleDown {
        font-size: 3.2rem;
        color: var(--bp-txt);
    }

    .setTxt {
        font-size: 3.2rem;
        font-weight: 600;
        line-height: 1.5;
    }
}

@media screen and (max-width: 450px) {
    .selectTittle {
        font-size: 2.8rem;
        line-height: 1.5;
        padding-top: 30px;
    }

    .set-highlight::before {
        top: 3px;
        left: -7px;
        right: -5px;
        bottom: -2px;
    }

    .selectDown {
        font-size: 2.4rem;
    }

    .setTittle {
        font-size: 3.8rem;
        font-weight: 600;
        color: var(--bp-Green);
    }

    .setTittleDown {
        font-size: 2.8rem;
        color: var(--bp-txt);
    }

    .setTxt {
        font-size: 2.4rem;
        font-weight: 600;
        line-height: 1.5;
    }

    .pointSp3 {
        width: 100%;
    }
}

/*========================================
set
========================================*/
.section--set {
    max-width: 1024px;
    margin: 0 auto;
    padding-top: 0;
    background-color: var(--bp-backGroundComment);
}

.set {
    text-align: center;
    padding: 30px 5% 0;
}

.set__image img {
    max-width: 875px;
}

.set__image2 img {
    max-width: 820px;
}

.cre--Ri {
    font-size: 1.2rem;
    line-height: 1.2;
    margin-top: 20px;
    text-align: right;
    padding-right: 30px;
}

@media screen and (max-width: 450px) {
    .set {
        padding: 20px 0 0;
    }

    .cre--Ri {
        text-align: left;
        padding-left: 25%;
        margin-top: 10px;
    }

    .set__image img {
        max-width: 335px;
    }

    .set__image2 img {
        max-width: 335px;
    }

    .btn__set {
        display: none;
    }
}

/*========================================
price
========================================*/
.priceTittle {
    padding-top: 60px;
    text-align: center;
}

.priceSub {
    font-size: 4rem;
    font-weight: 600;
}

.priceSubGr {
    color: var(--bp-Green);
}

.priceSubOr {
    color: var(--bp-Orange);
}

.price__image0 img {
    max-width: 790px;
    padding: 20px 5% 70px;
}

.topic--priceTopic {
    background-color: var(--bp-backGroundGreen);
    position: relative;
    overflow: hidden;
}

.topic--priceTopic::before {
    content: "";
    display: block;
    width: 100%;
    max-width: 1024px;
    height: 100%;
    background-color: var(--bp-backGroundComment);
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 0;
}

.topic--priceTopic img {
    position: relative;
    z-index: 1;
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.section--price {
    max-width: 1024px;
    margin: 0 auto;
    padding-top: 0;
    background-color: var(--bp-backGroundComment);
    text-align: center;
}

.price__image {
    max-width: 1026px;
}

.price__image img {
    width: 100%;
    margin-top: 100px;
    padding: 0 5%;
}

.price__image:nth-of-type(1) img {
    margin-top: 50px;
}

.crePrice {
    text-align: left;
    max-width: 820px;
    font-size: 1.2rem;
    line-height: 1.2;
    margin-top: 20px;
    padding: 0 5%;
}

@media screen and (max-width: 768px) {
    .section--price {
        padding-bottom: 60px;
    }

    .section--price {
        padding-bottom: 0;
    }

    .crePrice {
        padding: 0 7%;
        padding-bottom: 40px;
    }

    .price__image img {
        margin-top: 50px;
        padding: 0 7%;
    }

    .priceSub {
        font-size: 3.2rem;
    }
}

@media screen and (max-width: 450px) {
    .priceTittle {
        padding-top: 20px;
    }

    .section--price {
        padding-bottom: 0px;
    }

    .price__image:nth-of-type(1) img {
        margin-top: 20px;
    }

    .priceSub {
        font-size: 2.8rem;
    }

    .price__image img {
        margin-top: 0px;
    }

    .price__image0 img {
        max-width: 300px;
        padding: 20px 5% 40px;
    }
}

/*========================================
case
========================================*/
.case {
    text-align: center;
}

.caseTopicTxt {
    text-align: center;
    line-height: 1.9;
}

.caseTopicTxtSub {
    color: var(--bp-Green);
}

.caseTopicTxtSubTxt {
    font-weight: 400;
    color: var(--bp-txt);
}

.caseTopicTxtSubOrange {
    color: var(--bp-Orange);
}

.caseTopicTxtSub,
.caseTopicTxtSubOrange {
    display: inline-block;
    padding: 0 0.4em;
    background-color: var(--bp-white);
    font-size: 3.2rem;
    font-weight: 600;
}

.caseTopicTxtSub {
    color: var(--bp-Green);
}

.caseTopicTxtSubTxt {
    font-weight: 400;
    color: var(--bp-txt);
    font-size: 3.2rem;
}

.caseTopicTxtSubOrange {
    color: var(--bp-Orange);
}

.caseTopicMain {
    font-family: serif;
    font-size: 5rem;
    font-weight: 600;
    line-height: 1.6;
    margin-top: 30px;
}

.caseTopicMainGoGr {
    position: relative;
    display: inline-block;
    font-family: 'Noto Sans JP', Arial, sans-serif;
    color: var(--bp-Green);
    z-index: 2;
}

.caseTopicMainGoGr::before {
    content: '';
    position: absolute;
    top: 85%;
    left: -4%;
    width: 108%;
    height: 0.3em;
    background-color: var(--bp-white);
    transform: translateY(-50%);
    z-index: -1;
}

.case__image {
    text-align: center;
    display: block;
    padding-bottom: 80px;
    margin: 30px 5% 0;
}

.case__image img {
    max-width: 815px;
}

.section--caseChart {
    margin: 0 10%;
    max-width: 900px;
    text-align: left;
}

.BL {
    max-width: 900px;
    height: 1px;
    background-color: var(--bp-txt);
}

.section--caseChartBox {
    display: flex;
    align-items: center;
}

.caseChartSub {
    text-align: left;
    padding-left: 25px;
    width: 120px;
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.caseChartTxt {
    padding: 10px 0;
    margin-left: 1%;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.5;
}

.cre {
    font-size: 1.2rem;
    line-height: 1.2;
    margin-top: 20px;
}

.cre--caseTopic {
    padding-bottom: 80px;
}

.section--case {
    max-width: 1024px;
    margin: 0 auto;
    padding-top: 0;
    background-color: var(--bp-backGroundComment);
}

@media screen and (max-width: 768px) {
    .caseTopicTxtSubTxt {
        font-size: 2.4rem;
    }

    .caseTopicTxt {
        line-height: 1.3;
    }

    .caseTopicTxtSubTxt {
        line-height: 1.7;
    }
    
    .caseTopicTxtSub,
    .caseTopicTxtSubOrange {
        font-size: 2.4rem;
        padding: 0.2em 0.4em;
        background-color: #fff;
    }

    .caseTopicMain {
        font-size: 3.8rem;
        line-height: 1.4;
        margin-top: 20px;
    }

    .case__image {
        padding-bottom: 30px;
        margin: 20px 5% 0;
    }

    .caseChartTxt {
        margin-left: 30px;
    }

    .section--caseChart {
        margin: 0 5%;
        max-width: 900px;
    }
}

@media screen and (max-width: 450px) {
    .caseTopicTxt {
        margin-top: 20px;
        line-height: 1.3;
    }

    .caseTopicTxtSub {
        font-size: 2rem;
        color: var(--bp-Green);
    }

    .caseTopicTxtSubTxt {
        font-size: 2.4rem;
        line-height: 1.5;
    }

    .caseTopicTxtSubOrange {
        font-size: 2rem;
    }

    .caseTopicMain {
        font-size: 3rem;
        line-height: 1.4;
        margin-top: 20px;
    }

    .caseChartSub {
        width: 60px;
        font-size: 1.3rem;
        padding-left: 0px;
        text-align: left;
        margin-left: 0;
    }

    .caseChartTxt {
        padding-top: 10px;
        margin-left: 0.8rem;
        font-size: 1.4rem;
    }

    .caseTopicTxt--2 {
        margin-bottom: 0px;
    }

    .cre--caseTopic {
        padding-bottom: 30px;
    }
}

/*========================================
quolity
========================================*/
.quolityTopicTxt {
    text-align: center;
}

.quolityTopicMain {
    font-family: serif;
    font-size: 5rem;
    font-weight: 600;
    line-height: 1.6;
    margin-top: 30px;
}

.quolity {
    text-align: center;
}

.section--quolity {
    max-width: 1024px;
    margin: 0 auto;
    padding-top: 0;
    padding-bottom: 100px;
    background-color: var(--bp-backGroundComment);
}

.quolityImage {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 5% 0;
}

.quolityTittle {
    margin-top: 100px;
    font-size: 5rem;
    line-height: 1.75;
    font-weight: 800;
}

.quolityTittleGr {
    display: inline-block;
    padding: 0.1em 0.4em;
    border: 1px solid var(--bp-Green);
    background-color: var(--bp-white);
    color: var(--bp-Green);
    font-weight: 700;
    box-sizing: border-box;
    line-height: 1.2;
}

.quolityTittle40 {
    font-size: 40px;
    line-height: 1.2;
}

.chartTittle {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.75;
    color: var(--bp-Green);
    padding: 60px 30px 0;
}

.quolity__image {
    width: 800px;
}

.quolity__image img {
    margin: 0 auto;
    padding: 50px 11% 0;
}

.quolityCre {
    padding: 20px 11% 0;
    max-width: 800px;
    text-align: left;
}

.quolityTxt {
    text-align: c;
    font-size: 3.2rem;
    line-height: 1.75;
    font-weight: 800;
    margin: 0 3%;
    padding-top: 75px;
}

@media screen and (max-width: 768px) {
    .chartTittle {
        padding: 10px 30px 0;
    }

    .quolityTxt {
        padding-bottom: 100px;
    }

    .quolityTopicMain {
        font-size: 3.2rem;
        line-height: 1.4;
        margin-top: 10px;
    }

    .quolityImage {
        max-width: 720px;
        margin: 0 auto;
        padding: 60px 5% 0;
    }

    .quolityTittle {
        margin-top: 50px;
        font-size: 3.8rem;
        line-height: 1.5;
        font-weight: 800;
    }

    .quolityTittleGr {
        display: inline-block;
        padding: 0.05em 0.4em;
        border: 1px solid var(--bp-Green);
        background-color: var(--bp-white);
        color: var(--bp-Green);
        font-weight: 700;
        box-sizing: border-box;
        line-height: 1.2;
    }

    .quolityTittle40 {
        font-size: 2.8rem;
        line-height: 1;
    }

    .quolityCre {
        padding: 20px 5% 0;
    }

    .quolityTxt {
        font-size: 2.8rem;
        line-height: 1.75;
        margin-left: 10%;
        padding-top: 40px;
    }
}

@media screen and (max-width: 450px) {
    .quolityTittle {
        margin-top: 50px;
        font-size: 2.8rem;
        line-height: 1.5;
        font-weight: 600;
    }

    .quolityTxt {
        font-size: 2rem;
        line-height: 1.75;
        margin-left: 10%;
        padding-top: 30px;
        padding-bottom: 20px;
    }

    .quolityTittle40 {
        font-size: 2.2rem;
        line-height: 1;
    }

    .chartTittle {
        font-size: 2rem;
        padding: 20px 0 0;
        line-height: 1.5;
    }

    .quolityImage {
        padding: 20px 5% 0;
    }
}

/*========================================
questionTopic
========================================*/
.section--questionTopic {
    margin-top: 100px;
}

.questionTopic__image img {
    margin-top: -120px;
    background-color: var(--bp-backGroundComment);
}

.section--questionTopic {
    max-width: 1024px;
    margin: 0 auto;
    padding-top: 0;
    background-color: #ffe6b4;
}

/*========================================
question
========================================*/
.section--question {
    max-width: 1024px;
    margin: 0 auto;
    padding-top: 0;
    background-color: #ffe6b4;
}

details {
    margin: 0 auto;
    max-width: 1024px;
    border-radius: 4px;
    margin-bottom: 10px;
    overflow: hidden;
    padding: 0 105px;
}

summary {
    font-size: 2.8rem;
    color: var(--bp-white);
    background-color: var(--bp-Green);
    height: 70px;
    padding: 10px 15px;
    cursor: pointer;
    font-weight: bold;
    list-style: none;
    position: relative;
    user-select: none;
    padding-right: 80px;
    display: flex;
    align-items: center;
    gap: 15px;
}

summary::-webkit-details-marker {
    display: none;
}

.question-mark {
    background-color: white;
    width: 58px;
    height: 46px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.8rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    color: var(--bp-Green);
    flex-shrink: 0;
    margin-right: 15px;
}

.accordion-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 25px;
    height: 25px;
    background-color: white;
    border-radius: 2px;
}

.accordion-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 15px;
    height: 3px;
    background-color: #666;
    transition: transform 0.2s ease-in-out;
}

.accordion-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    display: block;
    width: 15px;
    height: 3px;
    background-color: #666;
    transition: transform 0.2s ease-in-out;
}

details[open] .accordion-icon::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

details[open] .accordion-icon::after {
    transform: translate(-50%, -50%) rotate(135deg);
}

details div {
    font-size: 2.8rem;
    color: var(--bp-txt);
    padding: 23px 30px;
    background-color: var(--bp-white);
    line-height: 1.75;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 1s ease-out, opacity 0.8s ease-out;
    padding-top: 0;
    padding-bottom: 0;
}

details[open] div {
    max-height: 500px;
    opacity: 1;
    padding-top: 23px;
    padding-bottom: 30px;
}

@media screen and (max-width: 768px) {
    summary {
        font-size: 2.8rem;
        height: auto;
    }

    details {
        width: 95%;
        padding: 0 20px;
        margin: 0 auto 20px;
    }

    .question-mark {
        width: 48px;
        height: 38px;
        font-size: 2.4rem;
        margin-right: 0px;
    }

    details div {
        font-size: 2.4rem;
    }
}

@media screen and (max-width: 450px) {
    summary {
        font-size: 2rem;
        line-height: 1.3;
        height: auto;
    }

    details {
        margin: 0 auto;
        width: 95%;
        border-radius: 4px;
        padding: 0 0 20px;
        margin: 0 auto ;
    }

    .question-mark {
        width: 36px;
        height: 30px;
        border-radius: 4px;
        font-size: 2rem;
        margin-right: 4px;
    }
    
    details div {
        font-size: 2rem;
    }

    details[open] div {
        max-height: 500px;
        opacity: 1;
        padding-top: 15px;
        padding-bottom: 20px;
    }
}

/*========================================
companyInfo
========================================*/
.section--companyInfo {
    max-width: 1024px;
    margin: 0 auto;
    padding-top: 0;
    background-color: var(--bp-backGroundComment);
    text-align: center;
}

.companyInfoTittle {
    font-size: 3.2rem;
    font-weight: 500;
    line-height: 1.75;
    padding: 75px 0 10px;
}

.companyName {
    font-size: 2rem;
    font-weight: 800;
    color: var(--bp-Green);
    padding: 0 5%;
}

.section--companyInfoChart {
    margin: 0 10%;
    max-width: 900px;
    text-align: left;
}

.section--companyInfoBox {
    display: flex;
    align-items: center;
}

.companyInfoSub {
    text-align: right;
    padding-left: 25px;
    width: 280px;
    font-size: 1.4rem;
    font-weight: 700;
    flex-shrink: 0;
    letter-spacing: 0.1em;
}

.companyInfoTxt {
    padding: 10px 0;
    margin-left: 1%;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.3;
}

.cre--R {
    padding-bottom: 20px;
}

@media screen and (max-width: 1024px) {
    .companyInfoTittle {
        font-size: 2.8rem;
        line-height: 1.5;
        padding: 75px 0 5px;
    }
}

@media screen and (max-width: 450px) {
    .companyInfoTittle {
        font-size: 2rem;
        line-height: 1.5;
        padding: 30px 0 5px;
    }

    .section--companyInfoBox {
        display: block;
    }

    .companyInfoSub {
        text-align: left;
        padding-left: 0px;
        font-size: 1.3rem;
        font-weight: 700;
        flex-shrink: 0;
        letter-spacing: 0;
    }

    .companyInfoTxt {
        padding-top: 0;
        margin-left: 2%;
        font-size: 1.4rem;
        font-weight: 400;
        line-height: 1.3;
    }

    .cre--R {
        padding-bottom: 10px;
    }
}

/*========================================
footer
========================================*/
footer {
    text-align: center;
    margin: 120px auto 0;
    position: relative;
    overflow: visible;
    width: 100%;
    height: 60px;
    background-color: var(--bp-Green);
}

.footerCircle {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 500px;
    transform: translateX(-50%);
}

.footerTittle {
    position: absolute;
    top: -115%;
    left: 50%;
    transform: translateX(-50%);
    color: var(--bp-white);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.4;
}

footer::before {
    content: "";
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1024px;
    height: 120px;
    background-color: var(--bp-backGroundComment);
    z-index: 0;
}

@media screen and (max-width: 768px) {
    footer {
        margin-top: 100px;
    }

    .footerCircle {
        bottom: 90%;
        width: 270px;
    }

    .footerTittle {
        font-size: 2rem;
        top: -45px;
    }

    footer {
        height: 160px;
    }

    footer::before {
        top: -100px;
        height: 100px;
    }
}

@media screen and (max-width: 450px) {
    footer {
        margin-top: 80px;
        height: 160px;
    }

    .footerCircle {
        bottom: 90%;
        width: 220px;
    }

    .footerTittle {
        top: -40px;
        font-size: 1.6rem;
    }

    footer::before {
        top: -80px;
        height: 80px;
    }
}