@charset "UTF-8";
@import url(main.css);

/* 初期セット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Kiwi Maru", serif;
    font-weight: 300;
    font-style: normal;
}

body {
    font-family: "Kiwi Maru", serif;
    font-weight: 400;
    font-style: normal;
}

body {
    font-family: "Kiwi Maru", serif;
    font-weight: 500;
    font-style: normal;
}


/* 全体セット */
ul {
    list-style-type: none;
}

a {
    text-decoration: none;
}

/* headerの設定 */
.header-contant {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h1 {
    margin-top: 30px;
}

.menu-main ul {

    display: flex;
    justify-content: center;

}

.menu-main li {
    margin-right: 20px;
    font-weight: bold;

}

.menu-main {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
}

.menu-main li:nth-child(1) {
    position: relative;
    /* 画像の基準点をこのliにする */
    padding: 80px 30px 10px 12px;
    overflow: hidden;
    /* 画像がはみ出ないようにする */
    margin-bottom: 0;
    display: block;
}



.menu-main li:nth-child(2) {
    position: relative;
    /* 画像の基準点をこのliにする */
    padding: 80px 43px 10px 30px;
    overflow: hidden;
    /* 画像がはみ出ないようにする */
    margin-bottom: 0;
    display: block;
}

.menu-main li:nth-child(3) {
    position: relative;
    /* 画像の基準点をこのliにする */
    padding: 80px 53px 10px 37px;
    ;
    overflow: hidden;
    /* 画像がはみ出ないようにする */
    margin-bottom: 0;
    display: block;
}

.menu-main li:nth-child(4) {
    position: relative;
    /* 画像の基準点をこのliにする */
    padding: 80px 40px 10px 23px;
    overflow: hidden;
    /* 画像がはみ出ないようにする */
    margin-bottom: 0;
    display: block;
}

.menu-main li a:hover {
    color: #fff;
}


.menu-main a {
    /* background-color: #3498db; */
    padding: 45px 30px 10px 0;
    margin-bottom: 0%;
}


.menu-image {
    position: absolute;
    bottom: -100px;
    /* 初期位置：要素の下に隠す */
    left: 10px;
    width: 160px;
    opacity: 0;
    /* 最初は透明 */
    transition: all 0.25s ease;
    /* アニメーションの設定 */
    z-index: -1;
    /* テキストの後ろに配置 */
}

/* ホバー時の設定 */
.menu-main li:hover .menu-image {
    bottom: 0;
    /* 画像の位置を上にずらす */
    opacity: 1;
    /* 画像を表示する */
}


.menu-main li:nth-child(-n+4)::before {
    content: "";
    display: inline-block;
    width: 25px;
    height: 15px;
    margin-right: -3px;
    background: url(../img/nikukyuu.png) no-repeat;
    background-size: contain;
    position: relative;
    bottom: -2px;
}

.menu-main li:nth-child(-n+4):hover::before {
    content: "";
    display: inline-block;
    width: 25px;
    height: 15px;
    margin-right: -3px;
    background: url(../img/siro_nikukyuu.png) no-repeat;
    background-size: contain;
    position: relative;
    bottom: -2px;
}

.menu-main a {
    color: black;
}

.menu5 {
    margin-top: 98px;
    margin-bottom: 0;
}

.menu5 a {
    color: #fff;
    background-color: #a4175d;
    padding: 20px 20px 15px 20px;
    margin-right: 90px;
    border-radius: 24px 24px 0 0;

}

.menu5 a:hover {
    background-color: #640f39;
}

.menu5 a::before {
    content: "";
    display: inline-block;
    width: 25px;
    height: 15px;
    margin-right: -3px;
    background: url(../img/sironeko.png) no-repeat;
    background-size: contain;
    position: relative;
    bottom: -2px;
}

/* sub-mainの設定 */
#sub-reservation img{
    width: 150px;
}



html {
    scroll-behavior: smooth;
}

/* 2. ボタンの固定表示 */
.page-top {
    position: fixed;
    right: 0px;
    bottom: 60px;
    background-color: #e79ec7;
    color: #030303;
   padding: 10px 20px 0px 20px;
    border-radius: 50%;
   
    font-weight: bold;
    
}

.page-top a {
    font-size: 17px;
     width: 50px;
}

.page-top::after {
    content: "";
    display: block;
    left: 30px;
    width: 10px;
    height: 10px;
    margin: 7px 0px 10px 18px;
    border-top: 4px solid rgb(27, 27, 27);
    border-right: 4px solid rgb(0, 0, 0);
    -webkit-transform: rotate(45deg);
    transform: rotate(-45deg);
}


/* mainの設定 */
h2 {
    background-color: #f9cfcf;
    color: #625b5b;
    font-size: 40px;
    letter-spacing: 0.2em;
    padding: 36px;
    margin-top: auto;
    text-align: center;
}

/* footerの設定 */
.footer_contact {
    background-color: #d99495;
    text-align: center;
    padding: 20px 20px 40px 20px;
}

.footer_contact p {
    margin-top: 10px;
}

h3 {
    font-size: 30px;
    line-height: 1;
    letter-spacing: 0.1em;
}

h3 small {
    font-size: 20px;
}


.footer_adress p {
    font-size: 20px;
    color: #000000;

}

.footer_adress-tell::before {
    content: "";
    display: inline-block;
    width: 37px;
    height: 28px;
    margin-right: -1px;
    background: url(../img/tell.png) no-repeat;
    background-size: contain;
    position: relative;
    bottom: -5px;
}

.footer_adress-tell a {
    color: #050505;
    line-height: 1.8;
}

.footer_adress-time::before {
    content: "";
    display: inline-block;
    width: 35px;
    height: 32px;
    background: url(../img/clok.png) no-repeat;
    background-size: contain;
    position: relative;
    vertical-align: middle
}


.footer_adress p small {
    font-size: 15px;
}

.footer_reserve a {
    color: #fff;
    font-size: 25px;
    padding: 15px;
    background-color: #a4175d;
    font-size: 20px;
    margin-top: 30px;
    box-shadow: -3px 15px 19px -15px #777777;
    border-radius: 20px;
    width: 340px;
    margin-left: auto;
    margin-right: auto;
    display: block;

}

.footer_reserve a:hover {
    background-color: #5a2434;
    padding: 15px;
}

.footer_reserve a:active {
    transform: translateY(10px);
    transition: 0.3s;
    /* 滑らかに動く */
    box-shadow: -1px 1px 1px -1px #777777;
}



.footer_reserve a::before {
    content: "";
    display: inline-block;
    width: 37px;
    height: 28px;
    margin-right: 4px;
    background: url(../img/sironeko.png) no-repeat;
    background-size: contain;
    position: relative;
    bottom: -5px;
}

.footer_menu ul {
    background-color: #fef2f1;
    border: 1px solid #d6bcc0;
    margin: 25px 0px;
    padding: 20px;

    border-bottom: 2px dashed #958f8e;
    border-top: 2px dashed #958f8e;

    display: flex;
    justify-content: center;
}

.footer_menu li::before {
    content: "";
    display: inline-block;
    width: 32px;
    height: 23px;
    margin-right: -12px;
    background: url(../img/yazirusi.png) no-repeat;
    background-size: contain;
    position: relative;
    bottom: -5px;
}

.footer_menu li:nth-child(-n+5)::after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 15px;
    margin-left: 15px;
    background: url(../img/../img/naname_sen.png) no-repeat;
    background-size: contain;
    position: relative;
    bottom: -3px;
}


.footer_menu a {
    color: #564d4c;
    margin-left: 10px;
    margin-right: 10px;
    padding: 20px 20px 0 20px;
}

.footer_small {
    text-align: center;
    color: #766c6a;
    padding-bottom: 20px;
}



/* -------------------------introduction----------------------------------------- */

.self-content img {
    padding-top: 30px;
    width: 30%;
}

.content-introduction {
    background-color: #f8dfe1;
    padding-bottom: 5px;
}

.self-content {
    background-color: #fff;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-around;
    align-items: start;
    margin: 40px auto;
    border-radius: 30px;
    width: 1300px;
    padding-bottom: 30px;
}

.self-content p {
    width: 700px;
    padding-bottom: 20px;
    /* padding-top: 10px; */
    line-height: 2;
    font-size: 1.1em;
}

.p9 {
    padding-top: 30px;
}

/* --------------------reservation------------------------------------------------- */

.h2_reservation {
    background-color: #a4175d;
    color: #fff;
}

#toiawase {
    width: 100%;
    margin-bottom: 30px;
    border: 2px solid #f6bb9e;
}

#toiawase th,
#toiawase td {
    padding: 10px 20px;
}


/* --------------------fee---------------------------------------- */
td {
    font-weight: bold;
}

.b td {
    text-align: center;
}

.a td {
    padding-left: 100px;
}

.a th:nth-child(2) {
    text-align: left;
}

.example {
    text-align: center;
    border: 3px dotted rgb(94, 87, 89);
    background-color: #e4e2e2;
    margin: 30px 150px 0 150px;
}


#example-p{
    font-size: 1.2em;
    padding-left: 150px;
}

h3 {
    text-align: center;
    padding: 30px;
    width: 100%;
}

table th,
table td {
    padding: 15px;
    border: 1px solid #a4175d;
}

table {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    width: 80%;
    border-collapse: collapse;
}

thead {
    background-color: #e66faa;
}

tbody th {
    background-color: #f3acb669;
}


#home_cleaning{
    margin: 50px auto 90px auto;
}


.home_cleaning-img img{
    width: 10%;
    padding: 0 20px;
}
.home_cleaning-img img:nth-child(3){
    width: 10%;}

.home_cleaning-img{
    margin: 30px 0;
    display: flex;
    justify-content: center;
    background-color: rgb(247, 233, 243);
}










/* ーーーーーーーーーーーreservationーーーーーーーーーーーーーー */

/* それぞれの設定 */



strong {
    color: #d13a67;
}

caption {
    font-size: 1.8em;
    margin: 20px;
}

input[type="text"],
input[type="email"] {
    width: 250px;
    height: 40px;
}

input[type="tel"] {
    width: 250px;
    height: 35px;
}

textarea {
    width: 100%;
    height: 140px;
}

input[type="submit"],
input[type="reset"] {

    margin-left: auto;
    margin-right: auto;
    text-align: center;
}


/* 性別の設定 */
label {
    margin-right: 40px;
    margin-left: 10px;
}


/* selectの設定 */
select {
    width: 320px;
    border: 1px solid gray;
    background: #fff;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
}

/* 表組設定 */
#toiawase {
    width: 100%;
    margin-bottom: 30px;
    border: 2px solid #e6a96fa2;
    margin-left: auto;
    margin-right: auto;
}

#toiawase th,
.toiawase td {
    padding: 10px 20px;
    border: 1px solid #e984b6;
    border-collapse: collapse;
}


/* カーソル形状 */
label,
input,
textarea,
select,
button {
    cursor: pointer;
}

/* ボタンの設定 */
#buttun {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-size: larger;
}

/* ボタンの基本スタイル設定 */
input[type="submit"],
input[type="reset"] {
    width: 200px;

    margin: 0 10px;
    padding: 10px;
    font-size: 1em;
    background: #fff;
    border: 2px solid #e44d7d;
    border-radius: 10px;
}


/* 返信用ボタン */
input[type="submit"] {
    background: #f59bb8;
}

/* ボタンがマウスに乗ったとき */
#buttun input:hover {
    opacity: 0.7;
}

/* クリックしたとき */
#buttun input:active {
    transform: translateY(10px);
    transition: 0.3s;
    /* 滑らかに動く */
    box-shadow: -1px 1px 1px -1px #777777;
}


/* 必須設定の色 */
input:required {
    background-color: #ff0c0c1a;
}

/* ---------------question------------------ */

#question-box1, #question-box2, #question-box3, #question-box4{
    background-color: #fff3f3;
    padding: 20px;
    margin: 100px auto;
    border-radius: 20px;
    width: 800px;
    line-height: 1.8;
}

/* .table-p{
 padding: 10px 0;
}
.main-question table p{
    padding: 10px;
} */
.question3-table a{
    color: #202020;
    background-color: #91b64b;
    border-radius: 10px;
    padding: 5px 10px;
    margin: 0 5px 0 10px;
}

.question3-table a:hover{
    opacity: 0.7;
}

.main-question th {
    background: #ee89a4;
}

.main-question th:nth-child(2) {
    border-width: 0;
    border-radius: 0 20px 0 0;
    font-size: 1em;
    text-align: left;

}

.main-question th:nth-child(1) {
    border: 0px;
    font-size: 1.5em;
    text-align: right;
    border-radius: 20px 0 0 0;
}

.main-question td:nth-child(1) {
    font-size: 1.5em;
    background: #f6d5d8;
    border-radius: 0 0 0 20px;
    border: 0px;
    padding-left: 30px;
}

.main-question td:nth-child(2) {
    border-radius: 0 0 20px 0;
    border: 0px;
    background: #f6d5d8;
    font-size: 1.1em;
}

.main-question table{
    border-radius: 20px;
    margin: 0 0 45px 5px;
    width: 100%;
    float: left;

}

.question1-table, .question2-table, .question3-table, .question4-table{
    overflow: hidden;
}



.main-question table:nth-child(2){
    margin-right: auto;
}

/* -------------------左上のアイコンーーーーーーーー */
#acaunt a{
    color: #3d3838;
    position: fixed;
    background-color: #ffd9d9;
    border-radius: 100px;
    border: 2px dashed #f29c9f;
    font-weight: 1000;
    text-align: center;
}


#acaunt a:first-child{
    padding: 10px 19px;
    font-size: 16px;
    top: 190px;
    left: 210px;
}

#acaunt a:nth-child(2){
    position: fixed;
    top: 300px;
    left: 210px;   
    padding: 20px 18px;
    font-size: 18px;
    margin-top: 10px;
}

#acaunt a:nth-child(3){
    position: fixed;
    top: 410px;
    left: 210px;   
    padding: 20px 18px;
    font-size: 18px;
    margin-top: 20px;
}

#acaunt a:nth-child(4){
    position: fixed;
    top: 518px;
    left: 210px;  
        padding: 16px 25px;
        font-size: 15px;
        margin-top: 30px;
 
}

#acaunt a:hover{
    color: #000000;
    opacity: 0.7;
}

/* --------------------------------index----------------------------------- */
#main-menu img:first-child{
    width: 300px;
    height: 80%;
    border-radius: 40px 0 40px 0;
    border: none; /* 従来のborderは使わない */
  box-shadow: 0 0 0 4px #f4aeb0,  /* 1本目の線（外側） */
              0 0 0 6px #fff,  /* 隙間（白にする） */
              0 0 0 10px #da5893; /* 2本目の線（内側） */
}

#main-menu a{
    margin: 0 35px;
    position: relative;
}

#main-menu a:hover{
    opacity: 0.7;
}

.menu-list{
    display: flex;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 50px;
    margin-left: 50px;
    margin-left: 50px;
}

#main-menu li{
    margin: 0 40px;
}

.nekonote{
    position: absolute;
    width: 80px;
    top: -35px;
    right: 0;
}

#main-menu{
    display: flex;
    justify-content: center;
}



#main-menu p{
    text-align: center;
    font-size: 30px;
    color: #433f3f;
    font-weight: bold;
    text-decoration: underline;
    text-decoration-line: underline;
  text-decoration-color: #f2a6c7; /* 色 */
  text-decoration-style: wavy; /* 波線 */
  text-decoration-thickness: 2px; /* 太さ */
  text-underline-offset: 8px; /* 文字との隙間 */


}

#top-title{
 background-color: #fff3f3;
 padding: 30px;
}

#top-title h3{
     text-decoration: underline;
    text-decoration-line: underline;
  text-decoration-color: #f5abae; /* 色 */
  text-decoration-thickness: 2px; /* 太さ */
  text-underline-offset: 8px; /* 文字との隙間 */
}

#top-title h3, #top-title p, #top-title a{
    text-align: center;
}

#top-title h2{
    text-align: left;
    font-size: 30px;
}

#top-title a{
    color: #2b2828;
    background-color: #ed999c;
    font-size: 25px;
    border-radius: 40px;
    padding: 10px 20px;
    margin-top: 20px;
    font-weight: 600;
    width: 25%;
    margin-left: auto;
    margin-right: auto;
    display: block;
     box-shadow: 5px 0px 16px 2px rgba(238, 231, 231, 0.911), 5px 5px 10px 0px rgba(0, 0, 0, 0.3);
}

#top-title a:hover{
    opacity: 0.7;
}



#top-alia{
    margin: 0;
    padding-bottom: 150px;
}

#top-alia small{
    padding-left: 145px;
    padding-top: 10px;
}

#top-table{
    border: 2px solid #e87c94;
}

#top-table th, #top-table td{
    border: none;
}

#top-alia img{
    width: 100px;
    margin-top: 100px;
}

#top-alia {
  background-image: url(/img/machi.png); /* 画像のパス */
  background-repeat: repeat-x; /* 横方向のみリピート */
  background-position: bottom;

}


#cat-top image{
    width: 50%;
}

#cat-top{
    position: relative;
}

#cat-top h2{
    position: absolute;
    background-color: rgba(176, 224, 230, 0);
    color: white;
    top: 500px;
    right: 10px;
    text-align: left;
    font-size: 50px;
    text-decoration:underline;
    text-decoration-color: rgb(230, 129, 191);
    text-shadow: 1px 1px 2px rgb(122, 119, 120);
}
