@charset 'utf-8';

:root {
    --black: #000000;
    --white: #F4F5F7;
    --darkBrown: #5F533A;
    --pink: #C0796A;
    --green: #A2A288;
    --oraange: #E59947;
    --ivory: #F2EBDC;
}

html {
    min-width: 375px;
    font-size: 62.5%;
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
    color: var(--darkBrown);
    background-color: var(--ivory);
}

body {
    font-family: "M PLUS 2", sans-serif;
    line-height: 1.6;
    font-size: 1.2rem;
}

img {
    max-width: 100%;
}

.btn {
    display: block;
    width: fit-content;
    padding: 10px 48px;
    border-radius: 50px;
    background-color: var(--oraange);
    color: var(--white);
    font-size: 1.6rem;
}

.btn-2 {
    display: block;
    width: fit-content;
    padding: 3px 48px;
    border-radius: 10px;
    background-color: var(--pink);
    color: var(--white);
}

h1 {
    display: inline-block;
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    padding: 10px 60px;

    /* margin-bottom: 30px;
    background-color: var(--green);
    color: var(--white);
    border-radius: 50px 0 50px 0; */
}

h2 {
    color: var(--darkBrown);
}

.h2-title {
    font-size: 3.6rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

.h2-subtitle {
    font-size: 4.8rem;
    font-weight: 700;
    text-align: center;
    padding-top: 60px;
    margin-bottom: 50px;
    margin-bottom: 50px;
}


/* ★.h2-titleに架線を引きたい */
.h2-title {
    background: linear-gradient(transparent 75%, #C0796A 30%);
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.h2-subtitle {
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    padding: 10px 45px;

    margin-bottom: 30px;
    background-color: var(--green);
    color: var(--white);
    border-radius: 50px 0 50px 0;
}

h3 {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 5px;
}

h4 {
    font-size: 1.6rem;
    font-weight: bold;
}

.logo {
    /* width: 100px; */
    max-width: 200px;
}

main .logo {
    padding-top: 8px;
    padding-left: 10px;
}

/* .beg-banner {
        width: 90%; 
        
    } */
    
.banner {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 60px;
        margin-bottom: 30px;
    }

.banner img {
    width: 90%;
    }  


    /* display: flex; */
    /* max-width: 728px; */
    /* width: 90%;
    margin: 60px 30px; */
    /* align-items: center; */

/* .banner {
    display: flex;
    align-items: center;
    
} */

/* パンくずリスト（↓ここから） */
.breadcrumb {
    display: flex;
    padding-top: 10px;
    padding-left: 10px;
    flex-wrap: wrap;
    list-style: none;
    font-size: 1.4rem;
  }

.breadcrumb li:last-of-type {
    font-weight: bold;
}
  
.breadcrumb li:not(:last-of-type)::after {
    content: "›";
    margin: 0 .6em; /* 記号の左右の余白 */
    color: #777; /* 記号の色 */
  }

@media (width <= 1119px) {
    header button {
        display: none;
    }

    .breadcrumb {
        display: none;
    }
}
/* パンくずリスト（↑ここまで） */



/* ヘッダー */

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
}

header div {
    display: flex;
    flex-direction: column;
    gap: 80px;
    width: 100%;
    height: 100vh;
    background-color: var(--ivory);
    justify-content: center;
    align-items: center;
    position: fixed;
    opacity: 0;
    visibility: hidden;
    transition: 1s;
}

.is-resize header div {
    transition: none;
}

/* @media (width >= 768px) { */
@media (width >= 1120px) {
    header div {
        position: static;
        /* flex-direction: row; */
        justify-content: space-between;
        height: auto;
        padding: 24px 20px;
        background-color: rgba(255,255,255,0.7);
        backdrop-filter: blur(5px);
        opacity: 1;
        visibility: visible;
    }
    main .logo {
        display: none;
    }
}

header.open div {
    opacity: 1;
    visibility: visible;
}

header div nav {
    display: flex;
    flex-direction: column;
    gap: 48px;
    font-size: 1.6rem;
    text-align: center;
}

@media (width >= 1120px) {
    header div nav {
        flex-direction: row;
        align-items: center;
    }
    header div nav .logo {
        width: 100%; 

    }
}

header div nav ul {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (width >= 1120px) {
    header div nav ul {
        flex-direction: row;
        align-items: center;
    }
}





/* ハンバーガーボタン */

header button {
    position: fixed;
    top: 8px;
    right: 10px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    background-color: var(--darkBrown);
    border-radius: 10px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

@media (width >= 1120px) {
    header button {
        display: none;
    }

}

header button::before,
header button::after {
    content: '';
}

header button::before,
header button::after,
header button span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--white);
    transition: 0.3s;
}

header.open button {
    gap: 0;
}

header.open button span {
    opacity: 0;
}

header.open button::before {
    translate: 0 3px;
    rotate: -45deg;
}

header.open button::after {
    translate: 0 -3px;
    rotate: 45deg;
}



/* メインビジュアル */



.mv {
    height: calc(0px + 70vw);
    margin-top: vw;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../img/mv-top.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center bottom 24px;
    max-width: 100%;
    text-align: center;
}

.mv div {
    padding-top: 15vw;
    translate: 0% 30%;
}

/* @media (width >= 500px) {
    .mv {
        height: calc(77px + 24px + 76px + 40px + 350px);
        background-size: 700px auto;
    }
}

@media (width >= 700px) {
    .mv {
        height: 80vw;
        background-size: contain;
    }
} */

@media (width >= 1120px) {
    .mv {
        max-width: 1440px;
        max-height: 720px;
        height: 80vw;
        color: var(--white);
        text-shadow:  2px 2px 5px var(--darkBrown);
        font-weight: bold;
        position: relative;
        margin-top: 100px;
        /* padding-top : 10px; */
    }

    .mv div {
        padding-top: 10vw;
        translate: 0% 30%;
    }

}

.mv h2 {
    font-size: max(2.4rem, 6.9vw);
    margin-bottom: 24px;
    color: var(--white);
    text-shadow:  2px 2px 5px var(--darkBrown);
    font-weight: bold;
    position: relative;
    padding-top: 0;
}


@media (width >= 1120px) {
    .mv h2 {
        font-size: 4.8rem;
    }
}

.mv p {
    font-size: max(1.6rem, 2.3vw) ;
    color: var(--white);
    text-shadow:  2px 2px 5px var(--darkBrown);
}


@media (width >= 1120px) {

    .mv p {
        font-size: 1.4rem;
    }
}

    /* .mv p br:last-of-type {
        display: none;
    }
} */


/* サービス（トップ） */

.recommend {
    margin-top: 60px;
}

.recommend dl {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5vw;
}

@media (width >= 768px) {
    .recommend dl {
        flex-direction: row;
        justify-content: center;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.recommend dl div {
    max-width: 300px;
}

.recommend dl div dd:first-of-type {
    width: 140px;
    margin: 0 auto;
}

.recommend dl div dt {
    margin-top: 24px;
    margin-bottom: 16px;
    text-align: center;
    font-size: 2.4rem;
}

.recommend dl div dd:last-of-type {
    font-size: 1.4rem;
}
/* 選ぶ理由 */

.choice {
    margin-top: 60px;
}

.choice ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10%;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
    max-width: 1028px;
    margin-left: auto;
    margin-right: auto;
}

.choice ul li {
    max-width: 300px;
}

.choice ul li a h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 24px;
}

.choice ul li a p {
    display: inline-block;
    background-color: var(--gray);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 1.4rem;
}

.choice a.btn {
    margin: 0 auto;
}


/* お客様の声 */

.reviews {
    margin-top: 60px;
}

.reviews dl {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5%;
    margin-right: 50px;
    margin-left: 50px;
}

@media (width >= 768px) {
    .reviews dl {
        flex-direction: row;
        justify-content: center;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.reviewsd dl div {
    max-width: 300px;
}

.reviews dl div dd:first-of-type {
    width: 140px;
    margin: 0 auto;
}

.reviews dl div dt {
    margin-top: 24px;
    margin-bottom: 16px;
    text-align: center;
    font-size: 1.6rem;
}

.reviews dl div dd:last-of-type {
    font-size: 1.4rem;
}
/* 流れ */



/* .flow-area img {
    display: block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.flow-area div {
    text-align: center;
} */


/* .flow-area dl div {
    max-width: 300px;
}

.flow-area dl div dd:first-of-type {
    width: 140px;
    margin: 0 auto;
}

.flow-area dl div dt {
    margin-top: 24px;
    margin-bottom: 16px;
    text-align: center;
    font-size: 2.4rem;
}

.flow-area dl div dd:last-of-type {
    font-size: 1.4rem;
} */



.flow-area ul ul {
    /* display: flex; */
    flex-wrap: wrap;
    gap: 10%;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
    max-width: 1028px;
    margin-left: auto;
    margin-right: auto;
}



.flow-area ul li{
    list-style:none;
    font-size: 1.6rem;
}

.flow-area div {
    max-width: 600px;
    margin: 0 auto;

}

/* .flow-area li{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
} */


.flow{
    max-width:400px;
    margin: 0 auto;
}

@media (width >= 768px) {
    .flow{
    max-width:600px;
}
}




.flow_item{
    display: block;
    margin-bottom:2em;
    padding:1em;
    background:var(--white);
    position:relative;
}

.flow_item span{
    margin-right:1em;
    font-weight:bold;
}


.flow_item:not(:last-of-type)::after{
    content:"";
    display:block;
    position: absolute;
    top: 100%;
    left: calc(50% - 20px);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px;
    border-color: var(--oraange) transparent transparent transparent;
} 



/* よくある質問 */
.faq {
    margin-top: 60px;
}


.faq-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;


}

    /* position: relative;
    left: 50%;
    transform: translateX(-50%); */



/* アコーディオンメニュー（↓ここから） */

.accordion-006 {
    width: 400px;
    margin-bottom: 7px;
    background-color: #f4f5f7;
    border-radius: 25px;
}

@media (width >= 768px) {
.accordion-006 {
    width: 800px;
}
}

.accordion-006 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    color: #5f533a;
    font-weight: 600;
    cursor: pointer;
    font-size: 1.6rem;
}

/* @media (width >= 768px) {
.accordion-006 summary {
    padding: 1em 1em;
}
} */

.accordion-006 summary::-webkit-details-marker {
    display: none;
}

.accordion-006 summary::before,
.accordion-006 summary::after {
    width: 3px;
    height: .9em;
    border-radius: 5px;
    background-color: #c4c5c7;
    content: '';
}

.accordion-006 summary::before {
    position: absolute;
    right: 2em;
    rotate: 90deg;
}

.accordion-006 summary::after {
    transition: rotate .3s;
}

.accordion-006[open] summary::after {
    rotate: 90deg;
}

.accordion-006 p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 2em 1.5em;
    color: #5f533a;
    transition: transform .5s, opacity .5s;
}

.accordion-006[open] p {
    transform: none;
    opacity: 1;
    
}

@media (width >= 768px) {
.accordion-006[open] p {
    font-size: 1.6rem;
}
}

/* アコーディオンメニュー（↑ここまで） */



/* サービス・料金一覧 */

.service-price {
    margin-top: 60px;
}

.service-price ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10%;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
    max-width: 1028px;
    margin-left: auto;
    margin-right: auto;
}

.service-price ul li {
    max-width: 300px;
}

.service-price ul li a h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 24px;
}

.service-price ul li a p {
    display: inline-block;
    background-color: var(--gray);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 1.4rem;
}

.service-price a.btn {
    margin: 0 auto;
}


/* サービス紹介 ページ*/

.service-mv {
    height: calc(0px + 55vw);
    margin-left: auto;
    margin-right: auto;
    background-image: url(../img/service-mv.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center bottom 24px;
    max-width: 180%;
    text-align: center;
}

.service-mv div {
    padding-top: 15vw;
    translate: 0% 30%;
}

@media (width >= 1120px) {
    .service-mv div {
        max-width: 1440px;
        max-height: 500px;
        height: 50vw;
        color: var(--white);
        text-shadow:  2px 2px 5px var(--darkBrown);
        font-weight: bold;
        position: relative;
        padding-top: 0;
    }

    .service-mv div {
        padding-top: 20vw;
        translate: 0% 30%;
    }

}

.service-mv h2 {
    font-size: max(1.6rem, 3vw);
    /* margin-bottom: 24px; */
    color: var(--white);
    text-shadow:  2px 2px 5px var(--darkBrown);
    font-weight: bold;
    position: relative;
    padding-top: 0;
}

@media (width >= 1120px) {
    .service-mv h2 {
        font-size: 3.6rem;
    }
}

.service-mv p {
    font-size: max(2.4årem, 2vw) ;
    color: var(--white);
    text-shadow:  2px 2px 5px var(--darkBrown);
    position: relative;
}


@media (width >= 1120px) {
    .service-mv p {
        font-size: 1.6rem;
    }
}

.service {
    margin-top: 20px;
    /* padding-top: 80px;
    padding-bottom: 120px; */
}

.service-area {
    width: 350px;
}


.service > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 0 10px;
    padding-bottom: 30px;
}


@media (width >= 750px) {
    .service > div {
        flex-direction: row;
        justify-content: center;
    }
}

.service > div img {
    max-width: 200px;
}

.service > div div {
    max-width: 480px;
}

.service > div div li {
    font-size: 1.4rem;
    line-height: 1.7rem;
}

.service > div div p:first-of-type {
    font-size: 1.4rem;
    margin-bottom: 5px;
    line-height: 1.7rem;
}


.service > div div p:last-of-type {
    font-size: 1.4rem;
    font-weight: bold;
}

.service-table {
    text-align: center;
}

/* 料金プラン ページ*/

.price-mv {
    height: calc(0px + 55vw);
    margin-left: auto;
    margin-right: auto;
    background-image: url(../img/price-mv.jpg);

    background-repeat: no-repeat;
    background-size: contain;
    background-position: center bottom 24px;
    max-width: 180%;
    text-align: center;
}

.price-mv div {
    padding-top: 15vw;
    translate: 0% 30%;
}

@media (width >= 1120px) {
    .price-mv {
        max-width: 1440px;
        max-height: 500px;
        height: 70vw;
        color: var(--white);
        text-shadow:  2px 2px 5px var(--darkBrown);
        font-weight: bold;
        position: relative;
        padding: 30vw;
    }

    .price-mv div {
        /* position: absolute; */
        /* padding-top: 10vw; */
        translate: 0% -40%;
    } 
} 


.price-mv h2 {
    font-size: max(1.6rem, 3vw);
    /* margin-bottom: 24px; */
    color: var(--white);
    text-shadow:  2px 2px 5px var(--darkBrown);
    font-weight: bold;
    position: relative;
    
    padding-top: 0;
}



@media (width >= 1120px) {
    .price-mv h2 {
        font-size: 3.6rem;
    }
}

.price-mv p {
    font-size: max(1.2rem, 2vw) ;
    color: var(--white);
    text-shadow:  2px 2px 5px var(--darkBrown);
    position: relative;
}


@media (width >= 1120px) {
    .price-mv p {
        font-size: 1.2rem;
    }
}

.price {
    display: block;
    background-color: var(--white);
    text-align: center;
    padding: 50px 10px 50px 10px;
}

.service-table {
    background-color: var(--white);
    max-width: 1500px;
    padding: 30px 30px 30px 30px;
    margin: 0 auto;
} 

.service-table　{
    width: 100%;
    border-collapse:separate;
    border-spacing: 0;
    font-size: 14.rem;
  }
  
  .service-table th:first-child{
    border-radius: 5px 0 0 0;
  }
  
  .service-table th:last-child{
    border-radius: 0 5px 0 0;
    border-right: 1px solid var(--darkBrown);
  }
  
  .service-table th{
    text-align: center;
    color:var(--white);
    background: var(--darkBrown);
    border-left: 1px solid var(--darkBrown);
    border-top: 1px solid var(--darkBrown);
    border-bottom: 1px solid var(--darkBrown);
    box-shadow: 0px 1px 1px var(--darkBrown) inset;
    width: 12rem;
    padding: 15px 0;
  }
  
  .service-table td{
    text-align: center;
    border-left: 1px solid #a8b7c5;
    border-bottom: 1px solid #a8b7c5;
    border-top:none;
    box-shadow: 0px -3px 5px 1px #eee inset;
    width: 12rem;
    padding: 15px 0;
  }
  
  .service-table td:last-child{
    border-right: 1px solid #a8b7c5;
  }
  
  .service-table tr:last-child td:first-child {
    border-radius: 0 0 0 5px;
  }
  
  .service-table tr:last-child td:last-child {
    border-radius: 0 0 
  }


/* お問合せフォーム ページ*/

.faq-mv {
    height: calc(0px + 55vw);
    margin-left: auto;
    margin-right: auto;
    background-image: url(../img/faq-mv.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center bottom 24px;
    max-width: 180%;
    text-align: center;
}

/* .faq-mv div {
    adding-top: 100px;
} */

@media (width >= 1120px) {
    .faq-mv {
        max-width: 1440px;
        max-height: 500px;
        height: 50vw;
        color: var(--white);
        text-shadow:  2px 2px 5px var(--darkBrown);
        font-weight: bold;
        position: relative;
        padding: 30vw;
    }

    .faq-mv div {
        /* position: absolute; */
        /* padding-top: 20vw; */
        translate: 0% 30%;
    }

}



/* .faq-mv h2 {
    font-size: max(2.4rem, 6.9vw);
    margin-bottom: 24px;
    color: var(--white);
    text-shadow:  2px 2px 5px var(--darkBrown);
    font-weight: bold;
    position: relative;
    padding-top: 0;
}

@media (width >= 500px) {
    .faq-mv h2 br {
        display: none;
    }
}

@media (width >= 1120px) {
    .faq-mv h2 {
        font-size: 4.8rem;
    }
}

.faq-mv p {
    font-size: max(1.6rem, 2.3vw) ;
}


@media (width >= 1120px) {

    .faq-mv p {
        font-size: 1.4rem;
    }
} */

/* お問合せフォーム ページ --- フォーム */

.contact-bg {
    background: var(--ivory);
    /* padding: 10px 0; */
    margin: 0 auto 0;
}
 
.contact-message {
    text-align: center;
    font-size: 14px;
    line-height: 2;
    margin-bottom: 50px;
}
 
.message-notice {
    color: #c10811;
    font-size: 14px;
}
 
.essential {
    background: #c10811;
    color: #fafafa;
    font-size: 12px;
    padding: 0 10px;
    font-weight: normal;
    margin-left: 10px;
}
 
.contact-area {
    background: #fafafa;
    padding: 90px;
    margin: 0px auto;
    width: 1000px;
}
 
.contact-table {
    width: 100%;
}

.contact-table label {
    padding-left: 10px;
}
 
.table-list {
    display: flex;
    justify-content: space-between;
    letter-spacing: 0.05em;
    width: 100%;
    margin-bottom: 40px;
}
 
.table-list th {
    font-size: 13px;
    font-weight: bold;
    width: 250px;
    text-align: left;
}
 
.table-list-address {
    flex-wrap: wrap;
}
 
.table-list-address .input-area {
    margin-bottom: 10px;
}
 
.input-area {
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 0.05em;
    padding: 0 10px;
    border: none;
    width: 550px;
    height: 40px;
    box-sizing: border-box;
    border: 1px solid #c4c4c4;
}
 
.table-list td {
    font-size: 13px;
    width: calc(100% - 250px);
}
 
input::placeholder {
    color: #bfbfbf;
    font-size: 12px;
    font-weight: bold;
}
 
textarea {
    border: none;
    width: 550px;
    height: 200px;
    padding: 0;
    border: 1px solid #c4c4c4;
    resize: vertical; /* 横方向のみサイズを固定する */
}
 
textarea::placeholder {
    color: #bfbfbf;
    font-size: 12px;
}
 
input[type="text"] {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
 
.contact-area .text {
    font-size: 13px;
    text-align: center;
    margin-bottom: 100px;
}
 
.contact-area .text a {
    color: #000;
    border-bottom: 1px solid #000;
    transition: all .3s;
    text-decoration: none;
}
 
.contact-area .text a:hover {
    border-bottom: 1px solid #777;
    padding-bottom: 5px;
    color: #777;
}
 
.submit-button {
    box-sizing: border-box;
    position: relative;
    display: block;
    margin: 30px auto 0;
    background-color: var(--pink);
    cursor: pointer;
    border: 1px solid var(--pink);
    border-radius: 50px;
    color: var(--white);
    font-size: 1.6rem;
    text-align: center;
    text-decoration: none;
    line-height: 1.5;
    outline: none;
    -webkit-transition: all .3s;
    transition: all .5s;
    padding: 20px 100px;
}
 
.submit-button:hover {
    background: #cae1e3;
    color: #000;
    border: 1px solid #cae1e3;
}
 
 
@media(max-width:1120px) {
    .contact-area {
        width: 80%;
        padding: 60px;
    }
}
 
@media(max-width:1024px) {
    .contact-area {
        padding: 50px 15px;
    }
 
    .table-list th {
        width: 180px;
    }
 
    .table-list td {
        width: 100%;
    }
 
    .input-area {
        width: 500px;
        height: 40px;
    }
 
    textarea {
        width: 500px;
        height: 200px;
    }
 
    .contact-message {
        margin-bottom: 30px;
    }
 
    .contact-area .text {
        margin-bottom: 30px;
    }
}
 
 
@media(max-width:834px) {
    .contact-bg {
        margin: 0 auto 0;
    }
 
    .contact-area {
        margin: 0px auto;
        padding: 50px 20px;
    }
 
    .check-box label {
        width: 100%;
    }
 
    .input-area {
        width: 100%;
        height: 30px;
    }
 
    textarea {
        width: 100%;
        height: 200px;
    }
 
    .table-list {
        flex-wrap: wrap;
        margin-bottom: 20px;
    }
 
    .table-list th {
        font-size: 12px;
        width: 200px;
        margin-bottom: 10px;
    }
 
    .table-list td {
        font-size: 12px;
    }
 
    .table-list td {
        width: 100%;
    }
 
    .contact-message {
        font-size: 13px;
    }
 
    .contact-area .text {
        font-size: 13px;
    }
}
 
@media (max-width:640px) {
    .contact-message {
        text-align: left;
    }
 
    .contact-area .text {
        text-align: left;
    }
}
 
@media(max-width:320px) {
    .input-area {
        width: 100%;
    }
 
    textarea {
        width: 100%;
    }
}





/* ページトップ */
.pagetop {
    text-align: right;


    /* position: fixed; */
    /* background-image: url(../img/page-top.png); */
    /* background-repeat: no-repeat; */
    /* position: relative;
    position: absolute;
    z-index: 100; */
    }


.pagetop img {
    width: 15%;
    max-width: 100px;
}



/* フッター */

footer {
    background-color: var(--pink);
    padding-top: 10px;
    color: #fff;
    text-align: center;
}

footer img {
    width: 120px;
    background-color: var(--ivory);
    border-radius: 10px;
    padding-right: 10px;
    padding-left: 10px;
}

footer p small {
    font-size: 1.2rem;
}

.foot-area_copy {
    display: block;
    background-color: var(--darkBrown);
}