@charset "UTF-8";

/*      サイト共通   */
/*      フォント     */
html {
    font-family: "M PLUS Rounded 1c";
}
.w1000 {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 10px 30px 0 30px;
}
.w1400 {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 10px 30px 0 30px;
}
p {
    color: rgb(80, 80, 80);
}
.header-adjustment {
    margin-top: 168px;
}

header  {
    width: 1920px;
    max-width: 100%;
    background-color: rgb(177, 223, 241);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}
header .container {
    display: flex;
    justify-content: space-between;
    padding: 0;
    z-index: 5;
    /* position: fixed;
    top: 0;
    left: 0; */
}
header .row {
    display: flex;
}
header img {
    max-width: 100%;
    width: 180px;
    height: 80px;
    margin: 20px 25px;
}
.mail-img {
    max-width: 100%;
    width: 100px;
    height: 100px;
    margin:  5px 10px 0 0;
}
header h3 {
    color: blue;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
}
header p {
    line-height: 1.7;
    font-weight: bold;
    letter-spacing: 1px;
}
header p:nth-child(1) {
    margin: 20px 0 0 0;
}

/*      nav      */
header nav {
    max-width: 100%;
    /* width: 1920px; */
    display: flex;
    list-style-type: none;
    margin: 0 20%;
}
header nav li {
    width: 20%;
    font-size: 18px;
    font-weight: bold;
    color: rgb(80, 80, 80);
    border-left: 1px solid rgb(80, 80, 80);
    text-align: center;
    padding: 10px 10px 5px 10px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}
header nav li:hover {
    opacity: 0.5;
}
header nav li:nth-child(5){
    border-right: 1px solid rgb(80, 80, 80);
}

/*      ハンバーガーメニュー         */
/*      ボタン       */
 .btn {
    position: fixed;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background-color: rgb(41, 179, 233);
    z-index: 10;
}
.btn i {
    position: absolute;
    left: 10px;
    width: 40px;
    height: 2px;
    background-color: #fff;
    transition: 0.5s;
}
.btn i:nth-of-type(1) {
    top: 20px;
}
.btn i:nth-of-type(2) {
    top: 30px;
}
.btn i:nth-of-type(3) {
    top: 40px;
}
.btn.active i:nth-of-type(1) {
    transform: translateY(10px) rotate(135deg);
}
.btn.active i:nth-of-type(2) {
    opacity: 0;
}
.btn.active i:nth-of-type(3) {
    transform: translateY(-10px) rotate(-135deg);
}

/*      ハンバーガーメニューの中身       */
.sp-menu-container {
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 80vh;
    background-color: rgb(63, 166, 207);
    color: #fff;
    z-index: 9;
    opacity: 0;
    pointer-events: none;
    transition: 0.5s;
}
.sp-menu-container.active {
    opacity: 1;
    pointer-events: auto;
}
.item {
    width: 800px;
    margin: 100px 5px 0;
}
.item ul {
    margin: 30px ;
}
.item ul li {
    width:40%;
    font-size: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #fff;
    margin-bottom: 20px;
}
.sp-menu-row {
    text-align: center;
}


/*      headerとnavのレスポンシブ対応     */

@media screen and (max-width: 1120px) {
    header nav {
        margin: 0 10%;
    }
}
@media screen and (max-width: 830px) {
    header nav {
        margin: 0 5%;
    }
}
@media screen and (min-width: 750px) {
    .sp-menu {
        display: none;
    }
}
@media screen and (max-width: 749px) {
    header nav {
        display: none;
    }
    header .row {
        display: none;
    }
}

    @media screen and (max-width: 500px) {
        header img {
            width: 120px;
            height: 60px;
            margin: 15px 20px;
        }
        .item {
            width: 500px;
        }
        .item ul {
            margin: 30px ;
        }
        .item ul li {
            width:40%;
            font-size: 16px;
            padding-bottom: 10px;
        }
        .sp-menu-col p {
            font-size: 14px;
        }
        .sp-menu-col h3 {
            font-size: 16px;
        }
    }

    @media screen and (max-width: 380px) {
        .sp-menu-col p {
            font-size: 12px;
        }
        .sp-menu-col h3 {
            font-size: 14px;
        }
        .item ul li {
            width:30%;
            font-size: 14px;
            padding-bottom: 10px;
        }
    }


/*      メインビジュアル         */
.main-visual {
    background-image: url(/img/index-pic/header-bg.jpg);
    background-position: center center;
    background-size: cover;
    height: 60vh;
    display: flex;
    align-items: center;
    margin-top: 168px;
    margin-bottom: 40px;
}
.filter {
    width: 100%;
    height: 60vh;
    background-color: #000;
    opacity: 0.4;
    position: absolute;
    top: 168px;
    left: 0;
    z-index: 1;
}
.main-visual-container{
    width: 60%;
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
    position: relative;
}
.main-visual h1 {
    font-size: 56px;
    font-weight: 900;
    letter-spacing: 3px;
    background-color: #08AEEA;
    background-image: linear-gradient(0deg, #08AEEA 0%, #2AF598 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5%;
}
.main-visual p {
    display: inline;
    font-size: 24px;
    font-weight: bold;
    background: #FFEFBA;
    background: -webkit-linear-gradient(to right, #FFFFFF, #FFEFBA);
    background: linear-gradient(to right, #FFFFFF, #FFEFBA);
    padding: 2px 40px;
    opacity: 0.7;
}

@media screen and (max-width: 1338px) {
    header nav li {
        font-size: 14px;
    }
    .filter {
        top: 166px;
    }
}
@media screen and (max-width: 748px) {
    .filter {
        top: 120px;
    }
    .main-visual {
        margin-top: 120px;
    }
    .main-visual h1 {
        font-size: 32px;
        margin-bottom: 40px;
    }
    .main-visual p {
        font-size: 16px;
    }
}
@media screen and (max-width: 500px) {
    .main-visual-container{
        width: 90%;
    }
    .filter {
        top: 90px;
    }
    .main-visual {
        margin-top: 90px;
    }
    .main-visual h1 {
        font-size: 24px;
        margin-bottom: 40px;
    }
    .main-visual p {
        font-size: 12px;
    }
}
@media screen and (max-width: 400px) {
    .main-visual p {
        display: block;
        font-size: 16px;
    }
}

/*      ホーム　メインコンテンツ         */
.content {
    margin: 0 2% 0;
}
.content a .main-content {
    background-color: aqua;
    width: 1000px;
    max-width: 92%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto 50px;
    border-radius: 20px;
    background-color: rgb(177, 223, 241);
    box-shadow: 1px 1px 10px 1px rgb(000, 073, 134);
}
.content a .main-content2 {
    background-color: aqua;
    width: 1000px;
    max-width: 92%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto 50px;
    border-radius: 20px;
    background-color: rgb(139, 223, 196);
    box-shadow: 1px 1px 5px 2px rgb(38, 99, 54);
}
.main-content img, .main-content2 img{
    width: 28%;
    border-radius: 10px;
    padding: 0;
    margin: 20px;
}

.main-content-text {
    width: 68%;
}
.main-content h2, .main-content2 h2 {
    font-size: 24px;
    font-weight: bold;
    margin-top: 15px;
    color: rgb(000, 098, 172);
    margin-bottom: 15px;
    letter-spacing: 2px;
    padding: 3% 10% 0 3%;
}
.main-content p, .main-content2 p {
    font-size: 20px;
    padding: 0 10% 0 3%;
    letter-spacing: 2px;
    line-height: 1.6;
}

@media screen and (max-width: 800px) {
    .main-content h2, .main-content2 h2 {
        font-size: 20px;
    }
    .main-content p, .main-content2 p {
        font-size: 16px;
    }
}
@media screen and (max-width: 600px){
    .content a .main-content, .content a .main-content2 {
        display: block;
    }
    .main-content img, .main-content2 img{
        width: 96%;
        margin: 0 auto;
        padding: 5% 2% 0% 5%;

    }
    .main-content-text {
        width: 96%;
    }
    .main-content h2, .main-content2 h2 {
        font-size: 24px;
        padding: 0 0 0 20px;
    }
    .main-content p, .main-content2 p {
        font-size: 18px;
        padding: 0 0 20px 30px;
    }
}

/*      はじめての方へ       */
/* @media screen and (max-width: 1338px)
@media screen and (max-width: 1004px)
@media screen and (max-width: 748px)
@media screen and (max-width: 500px) */

h4 {
    padding: 0.25em 0.5em;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 2px;
    color: rgb(000, 098, 172);
    /* background: transparent; */
    border-left: solid 5px #7db4e6;
    margin-top: 40px;
    margin-left: 20px;
}
.message p {
    width: 96%;
    padding: 0.25em 0.5em;
    color: #494949;
    margin-top: 10px;
    padding-left: 40px;
    line-height: 1.6;
    letter-spacing: 2px;
}

@media screen and (max-width: 750px) {
    h4 {
        margin-top: 0px;
    }
    .message p {
        margin-top: 30px;
        margin-bottom: 30px;
    }
}

/*      依頼までの流れ      */
.beginner-section h2 {
    position: relative;
    background: #87d6f0;
    padding: 5px 5px 5px 25px;
    font-size: 24px;
    color: #474747;
    border-radius: 0 10px 10px 0;
    margin: 40px 0 0 5%;
}
.beginner-section h2:before {
    font-family: "Font Awesome 5 Free";
    content: "";
    display: inline-block;
    line-height: 40px;
    position: absolute;
    color: white;
    background: #3584bb;
    font-weight: 900;
    width: 40px;
    height: 40px;
    left: -1.35em;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border: solid 4px white;
    border-radius: 50%;
}
.beginner-section h2 span {
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 24px;
}

.beginner-section .beginner-notes-title {
    position: relative;
    background: #ffd98a;
    padding: 5px 5px 5px 25px;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #474747;
    border-radius: 0 10px 10px 0;
    margin: 40px 0 0 5%;
}
.beginner-section .beginner-notes-title:before {
    font-family: "Font Awesome 5 Free";
    content: "";
    display: inline-block;
    line-height: 40px;
    position: absolute;
    color: white;
    background: #ffa337;
    font-weight: 900;
    width: 40px;
    height: 40px;
    left: -1.35em;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border: solid 4px white;
    border-radius: 50%;
}
.beginner-section p a {
    color: rgb(024, 127, 196);
    font-weight: bold;
}
.beginner-section p a:hover {
    opacity: 0.5;
}
.beginner-section .beginner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 20px 20px 20px;
    letter-spacing: 1px;
}
.beginner-section .beginner-content .beginner-content-img {
    width: 40%;
}
.beginner-section .beginner-content .beginner-content-text {
    width: 60%;
    margin-right: 40px;
}
.beginner-section .beginner-content img {
    width: 80%;
    margin: 5% 0 0 10%;
}
.beginner-section .beginner-content p {
    padding: 0 0 0 20px;
}
.beginner-content-text p, .beginner-notes-text li {
    font-size: 18px;
    letter-spacing: 2px;
    line-height: 1.6;
}
.beginner-notes-text{
    margin-bottom: 40px;
}
.beginner-notes-text ol li{
    margin-bottom: 20px;
    /* padding-top: 20px; */
}

@media screen and (max-width: 800px){
    .beginner-section h2 {
        margin-top: 10px;
    }
    .beginner-section .beginner-content {
        display: block;
        align-items: center;
        padding: 20px 20px 20px;
        letter-spacing: 1px;
    }
    .beginner-section .beginner-content img {
        display: none;

    }
    .beginner-notes-title {
        margin-bottom: 200px;
    }
    .beginner-notes-text ol li{
        padding-top: 20px;
    }

    .beginner-section .beginner-content .beginner-content-text {
        width: 90%;
        margin-right: 5px;
        margin-bottom: 0px;
    }
}

/*      注意事項      */
.beginner-notes ol {
    width: 90%;
    line-height: 2.4;
    letter-spacing: 1px;
    margin: 30px 0 40px 50px;
}
.beginner-notes ol li {
    list-style-type: circle;
}

@media screen and (max-width: 800px) {
    .beginner-notes ol {
        margin: 0 5px 20px 40px
}
}
@media screen and (max-width: 600px) {
    .beginner-notes ol {
        width: 80%;
        padding-right: 10px;
        margin: 0 5px 20px 40px
}
}


/*      サービストップ画面       */
.top-service-logo {
    padding: 0.25em 0.5em;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 2px;
    color: rgb(000, 098, 172);
    border-left: solid 5px #7db4e6;
    margin-top: 40px;
    margin-bottom: 40px;
    margin-left: 5%;
}

.top-service-container {
    text-align: center;
    margin: 0 auto;
    margin-left: 10%;
    width: 90%;
}
.top-service-row {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin-bottom: 30px;
}

.top-service-col {
    margin: 10px;
    width: 30%;
}
.top-service-col img {
    margin: 10px;
    width: 70%;
    border-radius: 50%;
}
.top-service-content {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
}
.top-service-col p {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 20px;
    letter-spacing: 2px;
}

@media screen and (max-width: 750px) {
    .top-service-row {
        display: block;
    }
    .top-service-col {
        margin: 10px;
        width: 100%;
    }
}

/* 高さ898px */
/*      サービス・料金       */

.service-split /* サイドとメインを並列化*/{
    display: flex;
}

/*      サイドバー構築       */
side {
    width: 25%;
    padding-left: 3%;
    font-size: 16px;
    font-weight: 550;
    border-right: 4px double rgb(100,100,100);
}

/*      サービスページ用h4の構築         */
.service-container h4 {
    font-size: 24px;
    margin: 30px 2%;
}

/*     サイドバーリスト構築      */
side ul {
    padding-left: 5%;
    padding-right: 10%;
}
side ul li {
    padding: 15px 10px;
    margin: 5% 0 ;
    border-bottom: 1px solid rgb(80, 80, 80);
    letter-spacing: 2px;
}
side ul li:hover {
    opacity: 0.5;
}

/*      サービスメインの構築       */
.service-main {
    width: 75%;
    padding-left: 5%;
    padding-right: 5%;
}
/*      写真と文章の並列化 */
.service-row {
    display: flex;
}
/*      img構築      */
.service-container img {
    width: 25%;
    max-width: 100%;
    height: 100%;
    margin: 0 auto;
}
/*      文章の構築       */
.service-main table {
    width: 65%;
    margin-bottom: 3%;
}
.service-main table tr {
    font-size: 20px;
}
.service-main table th {
    width: 20%;
    color: rgb(80, 80, 80);
    letter-spacing: 1px;
}
.service-main table td {
    width: 80%;
    letter-spacing: 2px;
    line-height: 1.7;
    padding-bottom: 2%;
}
#price {
    font-size: 32px;
}
.service-main span {
    font-size: 16px;
}

hr {
    padding: 2% ;
}

/*      Price List       */
.pricelist {
    margin: 0;
    padding: 0;
}
.pricelist img {
    width: 80%;
    margin-left: 10%;
}
.price-attention {
    width: 80%;
    padding: 2%;
    margin-left: 10%;
    margin-bottom: 2%;
}


/*      サービス詳細の文章構築       */
.service-main p {
    width: 98%;
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    background-color: #85FFBD;
    background-image: linear-gradient(70deg, #13bb61 2%, #83f304 65%, #fff 94%);
    padding: 1%;
    letter-spacing: 3px;
    margin-left: 3%;
    margin-bottom: 2%;
}
.service-main .service-contents {
    width: 98%;
    margin-top: 2%;
    margin-bottom: 2%;
}

.service-main .service-contents th {
    width: 20%;
    padding-left: 5%;
    letter-spacing: 1px;
    padding-bottom: 1%;
}
.service-main .service-contents td {
    width: 80%;
    padding-left: 10%;
    letter-spacing: 1px;
}

/*      service-other        */
.other-service-row {
    display: flex;
}

.other-service-container p {
    width: 98%;
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    background-color: #85FFBD;
    background-image: linear-gradient(70deg, #13bb61 2%, #83f304 65%, #fff 94%);
    padding: 1%;
    letter-spacing: 3px;
    margin-left: 3%;
    margin-bottom: 2%;
}
.other-service-container table {
    margin: 0 1% 3% ;
}
.other-service-container th {
    width: 20%;
    padding: 1% 0 1% 5%;
    letter-spacing: 1px;
}
.other-service-container td {
    width: 50%;
    padding-left: 10%;
    letter-spacing: 2px;
    padding-bottom: 3%;
}
.other-service-container .other-service-col {
    width: 70%;
}
.other-service-container .other-service-pic {
    width: 25%;
}
.other-service-container img {
    position: relative;
    width: 24%;
    height: 50%;
}
.last-other {
    color: red;
    font-size: 18px;
}
.other-pic01 {
    position: absolute;
    top: 40%;
    left: 25%;
}
.other-pic02 {
    position: absolute;
    top: 0%;
    left: 18%;
}
.other-pic03 {
    position: absolute;
    top: 30%;
    left: 13%;
}
.other-pic04 {
    position: absolute;
    top: 30%;
    left: 17%;
}

@media screen and (max-width: 749px) {
    .other-service-row {
        display: block;
    }
    .other-service-container .other-service-col {
        width: 94%;
    }
    .other-service-img {
        width: 96%;
        display: flex;
        margin-bottom: 5%;
    }
    .other-pic01 {
        top: 0%;
        left: 0%;
    }
    .other-pic02 {
        top: 0%;
        left: 0%;
    }
    .other-pic03 {
        top: 0%;
        left: 0%;
    }
    .other-pic04 {
        top: 0%;
        left: 0%;
    }
}


@media screen and (max-width: 1338px) {
    .header-adjustment {
        margin-top: 165px;
    }
}
    /*      レスポンシブメニュー         */
    .accordion-container {
        margin: 50px auto 0;
        max-width: 90%;
        width: 100%;
    }
    .accordion-list:not(:first-child) {
        margin-top: 10px;
    }
    .accordion-title {
        background: rgb(63, 166, 207);
        cursor: pointer;
        color: #fff;
        font-size: 18px;
        padding: 20px 40px;
        position: relative;
    }
    .accordion-title:before {
        position: absolute;
        content: '';
        top: 50%;
        right: 25px;
        height: 2px;
        width: 15px;
        background: #fff;
        transform: rotate(90deg);
        transition: all .3s ease-in-out;
      }
    .accordion-title:after {
      position: absolute;
      content: '';
      top: 50%;
      right: 25px;
      height: 2px;
      width: 15px;
      background: #fff;
      transition: all .3s ease-in-out;
    }
    .accordion-title.open:before {
        transform: rotate(180deg);
      }
      .accordion-title.open:after {
        opacity: 0;
      }
      .accordion-text {
        border-left: 1px solid #DDD;
        border-right: 1px solid #DDD;
        border-bottom: 1px solid #DDD;
        display: none;
        padding: 20px 40px;
      }




    /*      レスポンシブメニューはここまで       */

@media screen and (min-width: 749px) {
    .accordion-container {
        display: none;
    }
}
@media screen and (max-width: 748px) {

    .header-adjustment {
        margin-top: 120px;
    }
    .service-main {
        width: 96%;
    }
    side {
        display: none;
    }
    .service-row {
        display: block;
    }
    .service-container img {
        width: 96%;
        margin-left: 5%;
    }
    .service-main table {
        width: 96%;
        margin-top: 10%;
        margin-left: 5%;
    }
    .service-main table td {
        width: 100%;
    }
    #price {
        font-size: 28px;
        font-weight: bold;
    }
    .service-main span {
        font-size: 18px;
    }
    .service-main p {
        width: 100%;
        font-size: 22px;
        padding: 2%;
        margin-bottom: 0;
    }
    .service-main .service-contents {
        width: 98%;
        margin: 5% 0;
    }
}


@media screen and (max-width: 500px) {
    .header-adjustment {
        margin-top: 90px;
    }
    .service-main {
        width: 96%;
    }
    .service-main table tr {
        font-size: 18px;
    }
    .service-container img {
        width: 96%;
        margin-left: 5%;
    }
    #price {
        font-size: 28px;
        font-weight: bold;
    }
    .service-main span {
        font-size: 16px;
    }
    .service-main .service-contents {
        width: 98%;
        margin: 5% 0;
    }
}

.under-space {
    background-color: red;
}


/*      service-company      */
.slider {
    box-sizing: border-box;
    visibility: hidden;
    width: 40%;
    margin: 0 auto;
}
.slider.slick-initialized {
    visibility: visible;
}
.slick-slide {
    height: auto;
}
.slick-slide img {
    width: 100%;
}
.slider img {
    width: 40vh;
    height: auto;
    z-index: 0;
}
.slick-next {
    z-index: 1;
}
.slick-prev {
    z-index: 1;
}
.slick-prev {
    left: 1%;
}
.slick-next {
    right: 1%;
}
.service-company-container {
    display: flex;
}
.service-company-text {
    width: 60%;
    padding-left: 2%;
}
.service-company-text p {
    font-size: 20px;
    letter-spacing: 2px;
    line-height: 1.8;
    background-image: none;
    background-color: #87d6f0;
    padding: 2%;
}
.service-company-text table {
    width: 100%;
    margin-top: 5%;
}
.service-company-text table th {
    width: 35%;
    padding-left: 3%;
    letter-spacing: 2px;
}
.service-company-text table td {
    width: 65%;
    font-size: 16px;
    letter-spacing: 2px;
}
@media screen and (max-width: 1200px){
    .slick-prev {
        top: 43%;
        left: 1%;
    }
    .slick-next {
        top: 43%;
        right: 1%;
    }
}
@media screen and (max-width: 1100px) {
    .service-company-container {
        display: block;
    }
    .slider {
        width: 50%;
    }
    .slider img {
        width: 90vh;
    }
    .service-company-text {
        width: 90%;
    }
    .service-company-text table {
        width: 100%;
        margin-top: 1%;
    }
    .slick-prev {
        top: 50%;
        left: 1%;
    }
    .slick-next {
        top: 50%;
        right: 1%;
    }
}
@media screen and (max-width: 700px){
    .slider {
        width: 70%;
    }
}


/*      よくある質問      */

.question-logo {
    padding: 0.25em 0.5em;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
    color: rgb(000, 098, 172);
    /* background: transparent; */
    border-left: solid 5px #7db4e6;
    margin-top: 40px;
    margin-left: 20px;
}

.question-content {
    padding: 0.25em 0.5em;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 2px;
    color: rgb(000, 098, 172);
    /* background: transparent; */
    border-left: solid 5px #7db4e6;
    margin-top: 40px;
    margin-bottom: 20px;
    margin-left: 20px;
}

.details {
    border-top: 2px solid white;
    border-left: 2px solid white;
    border-right: 2px solid white;
}

.details1 {
    border: 2px solid white;
    margin-bottom: 40px;
}

.details-summary {
	position: relative;
	display: block;
	padding: 20px 5% 20px 5%;
	color: rgb(100,100,100);
	font-size: 20px;
    letter-spacing: 1px;
	font-weight: 550;
	background-color: rgb(177, 223, 241);

	&:hover {
		cursor: pointer;
		opacity: 0.8;
	}
	.btn2 {
		position: absolute;
        top: 37%;
        right: 2%;
        width: 18px;
        height: 18px;
        transform-origin: center center;
        transition-duration: 0.5s;

        &:before,
        &:after {
            content: "";
            background-color: #fff;
            border-radius: 10px;
            width: 18px;
            height: 4px;
            position: absolute;
            top: 7px;
            left: 0;
            transform-origin: center center;
        }
        &:before {
            width: 4px;
            height: 18px;
            top: 0;
            left: 7px;
        }
    }
    &.is-active {
        .btn2 {
            -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
            &:before {
                content: none;
        	}
        }
    }
}

.details-summary::-webkit-details-marker {
	display: none;
}

.details-content {
	padding: 20px;
	p {
		margin: 0 0 20px;
		color: rgb(80, 80, 80);
		font-size: 18px;
		text-align: left;
        letter-spacing: 1px;
        padding-left: 5%;
        padding-right: 5%;
		&:last-of-type {
			margin: 0 0 0;
		}
	}
}

@media screen and (max-width: 500px) {
    .details-summary {
        padding: 20px 8% 20px 5%;
        font-size: 16px;
    }
    .details-content {
        p {
            font-size: 14px;
        }
    }
}

/*      お問合せ         */
.contact-content h4 {
    margin-bottom: 3%;
}
.contact-content {
    margin-bottom: 10%;
}
.contact-content .contact-container img {
    width: 35%;
    height: 35%;
    margin: 2% 2% 2%;
}
.contact-content .contact-container p {
    width: 60%;
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 1.6;
    margin-top: 5%;
}
.contact-container {
    display: flex;
    border: 2px solid #87d6f0;
}
.contact-container:hover {
    background-color: lightgray;
    opacity: 0.5;
}
/* @media screen and (max-width: 750px) {
    .contact-container h4 {
        
    }
} */
@media screen and (max-width: 600px) {
    .contact-container {
        display: block;
    }
    .contact-container {
        margin-bottom: 10%;
    }
    .contact-content .contact-container img {
        width: 70%;
        margin: 5% 15% 2%;
    }
    .contact-content .contact-container p {
        width: 100%;
        padding: 0 5% 5%;
    }
}

/*      お問合せフォーム         */
.w600 {
    max-width: 600px;
    width: 96%;
    margin: 0 auto;
    padding: 0;
}
.w600 h4 {
    margin-top: 35%;
    margin-bottom: 5%;
}
.w600 ul {
    padding-left: 5%;
    letter-spacing: 1px;
    line-height: 1.5;
    margin-bottom: 5%;
}
.contact-form {
    border: 1px solid #a49f9f;
    margin-bottom: 10%;
}
.contact-item {
    width: 96%;
    max-width: 600px;
    margin: 5%;
}
.inputs-flex select {
    width: 40%;
    margin-bottom: 5%;
}
.label {
    border-left: 2px solid #08AEEA;
    padding-left: 1% ;
    letter-spacing: 1px;
    width: 33%;
    float: left;
}
.contact-attention {
    width: 30%;
    font-size: 12px;
}

.required {
    color: red;
}
.inputs {
    width: 55%;
    font-size: 18px;
    border: 1px solid #a49f9f;
    border-radius: 5px;
    line-height: 2.0;
}
select {
    border-radius: 5px;
    float: left;
}
textarea {
    height: 200px;
    width: 55%;
    border: 1px solid #a49f9f;
    border-radius: 5px;
}
.radio {
    width: 55%;
    display: flex;
    justify-content: space-between;
}
.radio-service {
    display: inline-block;
}
.radio-service li {
    padding-bottom: 6%;
}
.radio-service li:nth-last-child() {
    padding-bottom: 0;
}
.button-area {
    text-align: center;
    margin-top: 10%;
    margin-bottom: 10%;
}
.contact-item.rerurn {
    display: flex;
}
.contact-item2 {
    width: 96%;
    display: flex;
    max-width: 600px;
    margin: 5%;
}
input[type="date"] {
    width: 35%;
    color: #474747;
    line-height: 0.8;
    margin-right: 4%;
}
input[type="submit"] {
    background-color: #87d6f0;
    border: none;
    padding: 10px 20px;
    color: white;
    font-size: 24px;
    font-weight: bold;
    border-radius: 5px;
    margin: 0 5% 0 0;
    box-shadow: 1px 1px 3px black;
    cursor: pointer;
}
input[type="reset"] {
    background-color: #837a7a;
    border: none;
    padding: 10px 20px;
    color: white;
    font-size: 17px;
    font-weight: bold;
    border-radius: 5px;
    margin: 0 0 0 5%;
    box-shadow: 1px 1px 3px black;
    cursor: pointer;
}

input[type="submit"]:hover, input[type="reset"]:hover {
    opacity: 0.6;
}

button,
input,
select,
textarea {
  -webkit-appearance: auto;
  appearance: auto;
  border-width: 1px;
  background-color: #fff;
  font-size: 0.9em;
  padding: 0.4em;
}
/* 選択系パーツ */
inputs[type="radio"],
inputs[type="checkbox"] {
  cursor: pointer;
  vertical-align: initial;
}

.time-schedule select {
    width: 90px;
}


/*      confirm確認画面       */
.confirm-container {
    border: 1px solid #ddd;
    padding: 5%;
    align-items: center;
    line-height: 2.2;
    padding-bottom: 0;
}
.confirm-btn {
    text-align: center;
    margin: 10% auto;
}
.confirm-btn .confirm-back {
    background-color: rgb(236, 108, 108);
    margin-right: 15%;
}
.confirm-check {
    margin-top: 50px;
    line-height: 2.2;
}







/*      aboutus      */
.aboutus-container {
    width: 70%;
    margin: 0 auto 10%;
}
.aboutus-container h4 {
    margin-top: 200px;
    margin-bottom: 5%;
}
.aboutus-container table {
    margin: 0 auto;
    width: 80%;
}
.aboutus-container table th,.aboutus-container table td{
    border: 1px solid #837a7a;
    font-size: 18px;
    padding: 2% 3%;
    letter-spacing: 1px;
    line-height: 1.7;
}
.aboutus-container table th {
    width: 20%;
    letter-spacing: 2px
}
.aboutus-container iframe {
    width: 90%;
    margin-left: 5%;
    margin-top: 2%;
    margin-bottom: 2%;
}

@media screen and (max-width: 1100px) {
    .aboutus-container {
        width: 80%;
    }
}
@media screen and (max-width: 900px) {
    .aboutus-container {
        width: 96%;
    }
}
@media screen and (max-width: 750px) {
    .aboutus-container h4 {
        margin-top: 140px;
    }
    .aboutus-container {
        width: 96%;
    }
    .aboutus-container table {
        width: 96%;
    }
}
@media screen and (max-width: 500px) {
    .aboutus-container h4 {
        margin-top: 110px;
    }
    .aboutus-container table th,.aboutus-container table td{
        font-size: 14px;
        padding: 2% 3%;
    }
}





/*      サイトポリシー       */
.policy-container {
    padding: 2% 5% 5%;
}
.policy-container h4 {
    margin-bottom: 3%;
}
.policy-row {
    border: 1px solid #837a7a;
    padding: 2% 4% 4%;
}
.policy-row p {
    font-size: 16px;
    padding-left: 2%;
    letter-spacing: 2px;
    line-height: 1.6;
}

/* フッター */
.footer-container {
    background-color: rgb(177, 223, 241);
    display: flex;
    justify-content: space-between;
    padding: 2% 2% ;
}
.footer-container div {
    width: 75%;
}
.footer-container .footer-content {
    width: 25%;
}
footer p {
    font-size: 16px;
    color: #837a7a;
    font-weight: bold;
    padding-left: 40%;
}
.footer-privacy ,.footer-aboutus {
    font-size: 16px;
    color: #3584bb;
    font-weight: bold;
    text-align: right;
}
.footer-privacy:hover ,.footer-aboutus:hover {
    opacity: 0.6;
}
.footer-aboutus {
    margin-bottom: 4%;
}

@media screen and (max-width: 1200px) {
    .footer-container {
        display: block;
    }
    .footer-container div {
        width: 96%;
    }
    .footer-container .footer-content {
        width: 96%;
    }
    footer p {
        font-size: 16px;
        padding-left: 0%;
        text-align: center;
    }
    .footer-privacy ,.footer-aboutus {
        font-size: 16px;
        color: #3584bb;
        font-weight: bold;
        text-align: center;
    }
    .footer-aboutus {
        margin: 1% 0;
    }
}



