/* header */
body{
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
    margin: 0;
}

.wrapper{
    max-width: 1280px;
    margin: 0 auto 0 auto;
}

.header-position-fixed{
    position: fixed;
    width: 1280px;
    top: 0;
    z-index: 10000;
    background-color: white;
}

.header-area{
    height: 100px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    position: relative;
    border-bottom: solid 1px black;
}

.header-area__rogo{
    position: absolute;
    bottom: 5px;
    text-align: center;
}

.header-area__rogo__image{
    width: 300px;
}

.header-area__rogo__text{
    padding-top: 5px;
    font-size: 11px;
    letter-spacing: 4px;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.header-area__nav{
    position: absolute;
    bottom: 5px;
    right: 0;
    display: flex;
    margin-block-start: 0;
    margin-block-end: 0;
}

.header-area__nav__menu{
    list-style: none;
    width: 200px;
    line-height: 70px;
    font-family: 'Roboto', sans-serif;
    font-size: 30px;
    border-left: solid 1px black;
    position: relative;
}

.header-area__nav__menu:hover{
    transition: 0.5s;
    background-color: lightgray;
}

.header-area__nav__menu .header-area__nav__menu--second{
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: 'Roboto', sans-serif;
    position: absolute;
    top: 70px;
    width: 100%;
    opacity: 0;
    visibility: hidden;
}

.header-area__nav__menu:hover .header-area__nav__menu--second{
    transition: 0.5s;
    opacity: 1;
    visibility: visible;
}

.header-area__nav__menu--second li{
    display: block;
}

.header-area__nav__menu--second li:hover{
    transition: 0.5s;
    background-color: rgba(211,211,211,0.5);
}

.header-area__nav li a{
    text-decoration: none;
    display: block;
    transition: 0.5;
}

.header-area__nav li a:link{
    color: black;
}

.header-area__nav li a:visited{
    color: black;
}

.header-area__nav li a:active{
    color: tomato;
}

@media screen and (max-width:1280px) {
    .wrapper{
        max-width: 768px;
    }

    .header-position-fixed{
        width: 768px;
    }

    .header-area__rogo__image{
        width: 240px;
    }

    .header-area__rogo__text{
        padding-top: 5px;
        font-size: 11px;
        letter-spacing: 2px;
        margin: 0;
        font-family: 'Montserrat', sans-serif;
    }

    .header-area__nav__menu{
        width: 120px;
        font-size: 20px;
    }
}

@media screen and (max-width:768px) {
    .wrapper{
        max-width: 480px;
        margin: 0 auto 0 auto;
    }

    .header-position-fixed{
        width: 480px;
    }

    .header-area{
        height: 100%;
        top: 30px;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content:initial;
    }

    .header-area__rogo{
        position:initial;
        top: 10px;
    }

    .header-area__rogo__image{
        width: 300px;
    }
    
    .header-area__rogo__text{
        padding-top: 5px;
        font-size: 11px;
        letter-spacing: 4px;
        margin: 0;
        font-family: 'Montserrat', sans-serif;
    }


    .header-area__nav{
        position: initial;
        top: 10px;
        display: flex;
        flex-direction: column;
        margin-block-start: 0;
        margin-block-end: 0;
        padding-inline-start: 0;
    }

    .header-area__nav__menu{
        list-style: none;
        width: 100%;
        line-height: 70px;
        font-family: 'Roboto', sans-serif;
        font-size: 30px;
        border-left: none;
        position: relative;
        background-color: white;
    }
    .menu3 + .menu4{
        transition: 0.5s;
    }
    .menu3:hover + .menu4{
        margin-top: 140px;
    }
}

/* main */
.main-contents{
    width: 1280px;
    margin-top: 120px;
}

.main-content01{
    display: block;
}

.eyecatch-image{
    height: 600px;
    background-image: url("eyecatch_image01.jpg");
}

.eyecatch-image h1{
    margin-left: 360px;
    color: white;
    width: 920px;
    font-size: 72px;
    line-height: 72px;
    padding-top: 260px;
    margin-bottom: 20px;
    margin-block-start:0px;
    border-left: solid 3px white;
    border-bottom: solid 3px white;
}

.eyecatch-image p{
    color: white;
    font-size: 24px;
    margin-top: 0px;
    margin-block-end: 0px;
    text-align: center;
}

.eyecatch-image .box{
    width: 940px;
    height: 220px;
    border-top: solid 3px white;
    border-right: solid 3px white;
}

@media screen and (max-width:1280px) {
    .wrapper{
        max-width: 768px;
    }

    .main-contents{
        width: 768px;
    }

    .eyecatch-image{
        height: 400px;
        background-size: cover;
    }
    
    .eyecatch-image h1{
        margin-left: 205px;
        width: 600px;
        font-size: 48px;
        line-height: 48px;
        padding-top: 150px;
        margin-bottom: 10px;
    }
    
    .eyecatch-image p{
        font-size: 18px;
    }
    
    .eyecatch-image .box{
        width: 620px;
        height: 160px;
    }
}

@media screen and (max-width:768px) {
    .wrapper{
        max-width: 480px;
        margin: 0 auto 0 auto;
    }

    .main-contents{
        width: 480px;
        margin-top: 540px;
    }

    .eyecatch-image{
        height: 240px;
        background-size: cover;
    }
    
    .eyecatch-image h1{
        margin-left: 110px;
        width: 370px;
        font-size: 36px;
        line-height: 36px;
        padding-top: 90px;
        border-left: solid 1px white;
        border-bottom: solid 1px white;
    }
    
    .eyecatch-image p{
        font-size: 12px;
    }
    
    .eyecatch-image .box{
        width: 390px;
        height: 120px;
        border-top: solid 1px white;
        border-right: solid 1px white;
    }
}

/* services */
.main-content02{
    height: 600px;
    padding-top: 50px;
    padding-left: 50px;
    background-color: #F1F1E4;
}

.services{
    width: 1180px;
    height: 500px;
    border: solid 3px #A6A6A6;
    border-radius: 50px;
}

.text-area-services{
    display: block;
    width: 920px;
    margin-left: 130px;
}

.services h2{
    width: 220px;
    color: #515151;
    font-size: 36px;
    border-bottom: solid 3px #C4C4C4;
}

.services p{
    color: #515151;
    font-size: 36px;
}

.service-contents{
    margin-top: 40px;
    line-height: 36px;
}

.dot{
    padding: 0px 16px;
    margin-right: 5px;
    line-height: 36px;
    background-color: #C4C4C4;
    border-radius: 50%;
    color: #C4C4C4;
}

@media screen and (max-width:1280px) {
    .wrapper{
        max-width: 768px;
    }

    .main-contents{
        width: 768px;
    }

    .services{
        width: 668px;
        height: 500px;
    }
    
    .text-area-services{
        display: block;
        width: 568px;
        margin-left: 50px;
    }
    
    .services h2{
        width: 220px;
        font-size: 36px;
    }
    
    .services p{
        font-size: 21px;
    }
    
    .service-contents{
        margin-top: 40px;
        line-height: 36px;
    }
    
    .dot{
        padding: 0px 9px;
        margin-right: 10px;
        line-height: 21px;
        border-radius: 50%;
    }
}

@media screen and (max-width:768px) {
    .wrapper{
        max-width: 480px;
        margin: 0 auto 0 auto;
    }

    .main-contents{
        width: 480px;
    }

    .main-content02{
        height: 400px;
    }

    .services{
        width: 380px;
        height: 300px;
    }
    
    .text-area-services{
        display: block;
        width: 340px;
        margin-left: 20px;
    }
    
    .services h2{
        width: 160px;
        font-size: 24px;
    }
    
    .services p{
        font-size: 13px;
    }
    
    .service-contents{
        margin-top: 40px;
        line-height: 24px;
    }
    
    .dot{
        padding: 0px 6px;
        margin-right: 10px;
        line-height: 13px;
        border-radius: 50%;
    }
}

/* profile */
.main-contents{
    width: 1280px;
    background-color: white;
}

.main-content03{
    height: 900px;
    padding-top: 50px;
    padding-left: 100px;
}

.profile-area{
    display: flex;
}

.text-area{
    width: 450px;
}

.text-area h3{
    font-size: 24px;
}

.text-area p{
    font-size: 14px;
}

.image-area{
    margin-left: 300px;
}

.image-area img{
    width: 300px;
    border-radius: 150px;
    border: solid thin gray;
}

.works-area{
    display: flex;
}

.works1{
    width: 300px;
    margin-right: 90px;
}

.works1 img{
    width: 300px;
    border-radius: 25px;
}

.works2{
    width: 300px;
    margin-right: 90px;
}

.works2 img{
    width: 300px;
    border-radius: 25px;
}

.works3{
    width: 300px;
}

.works3 img{
    width: 300px;
    border-radius: 25px;
}

.works-area p{
    font-size: 12px;
}

.works-title h3{
    font-size: 24px;
    line-height: 0px;
    margin-top: 60px;
}


@media screen and (max-width:1280px) {
    .wrapper{
        max-width: 768px;
    }

    .main-contents{
        width: 768px;
    }

    .main-content03{
        padding-left: 50px;
    }

    .profile-area{
        display: flex;
    }
    
    .text-area-profile{
        width: 350px;
    }
    
    .text-area-profile h3{
        font-size: 24px;
    }
    
    .text-area-profile p{
        font-size: 12px;
    }
    
    .image-area{
        margin-left: 10px;
    }
    
    .image-area img{
        width: 300px;
        border-radius: 150px;
        border: solid thin gray;
    }

    .works-area{
        display: flex;
    }
    
    .works1{
        width: 210px;
        margin-right: 19px;
    }
    
    .works1 img{
        width: 210px;
        border-radius: 25px;
    }
    
    .works1 h3{
        font-size: 13px;
    }

    .works2{
        width: 210px;
        margin-right: 19px;
    }
    
    .works2 img{
        width: 210px;
        border-radius: 25px;
    }
    
    .works2 h3{
        font-size: 14px;
    }

    .works3{
        width: 210px;
    }
    
    .works3 img{
        width: 210px;
        border-radius: 25px;
    }
    
    .works3 h3{
        font-size: 14px;
    }

    .works-area p{
        font-size: 11px;
    }
    
    .works-title h3{
        font-size: 24px;
        line-height: 0px;
        margin-top: 60px;
    }
    
}

@media screen and (max-width:768px) {
    .wrapper{
        max-width: 480px;
        margin: 0 auto 0 auto;
    }

    .main-contents{
        width: 480px;
    }

    .main-content03{
        height: 2200px;
        padding-top: 50px;
        padding-left: 30px;
    }

    .profile-area{
        display: block;
    }
    
    .text-area-profile{
        width: 420px;
    }
    
    .text-area-profile h3{
        font-size: 24px;
    }
    
    .text-area-profile p{
        font-size: 14px;
    }
    
    .image-area{
        margin-left: 60px;
    }
    
    .image-area img{
        width: 300px;
        border-radius: 150px;
        border: solid thin gray;
    }

    .works-area{
        display: block;
    }
    
    .works1{
        width: 420px;
        margin-top: 50px;
    }
    
    .works1 img{
        width: 420px;
        border-radius: 25px;
    }
    
    .works1 h3{
        font-size: 18px;
    }

    .works2{
        width: 420px;
        margin-top: 50px;
    }
    
    .works2 img{
        width: 420px;
        border-radius: 25px;
    }
    
    .works2 h3{
        font-size: 18px;
    }

    .works3{
        width: 420px;
        margin-top: 50px;
    }
    
    .works3 img{
        width: 420px;
        border-radius: 25px;
    }
    
    .works3 h3{
        font-size: 18px;
    }

    .works-area p{
        font-size: 14px;
    }
    
    .works-title h3{
        font-size: 24px;
        line-height: 0px;
        margin-top: 60px;
    }
}

/* merit */
.main-content04{
    height: 600px;
    padding-left: 50px;
    background-color: #F1F1E4;
}

.text-area-merit{
    display: block;
    width: 1180px;
}

.text-area-merit h2{
    font-size: 36px;
    color: #848484;
    text-align: center;
    line-height: 36px;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-bottom: 75px;
    padding-top: 50px;
}

.merit-contents{
    display: flex;
}

.merit-icon01{
    width: 360px;
    height: 360px;
    background-color: #FFD02B;
    border-radius: 180px;
    margin-right: 50px;
}

.merit-icon02{
    width: 360px;
    height: 360px;
    background-color: #466FFF;
    border-radius: 180px;
    margin-right: 50px;
}

.merit-icon03{
    width: 360px;
    height: 360px;
    background-color: #FC62FF;
    border-radius: 180px;
}

.icon-title{
    margin-left: 60px;
    width: 240px;
    text-align: center;
    font-size: 30px;
    color: white;
    text-shadow: 2px 2px 2px #555555;
}

.icon-text{
    margin-left: 60px;
    width: 240px;
    font-size: 16px;
    color: white;
    text-shadow: 2px 2px 2px #555555;
}

@media screen and (max-width:1280px) {
    .wrapper{
        max-width: 768px;
    }

    .main-contents{
        width: 768px;
    }

    .text-area-merit{
        display: block;
        width: 768px;
    }

    .text-area-merit h2{
        font-size: 24px;
        color: #848484;
        text-align: center;
        line-height: 24px;
        margin-block-start: 0;
        margin-block-end: 0;
        margin-bottom: 40px;
        padding-top: 20px;
    }

    .main-content04{
        height: 400px;
        padding-left: 14px;
    }


    .merit-icon01{
        width: 240px;
        height: 240px;
        background-color: #FFD02B;
        border-radius: 120px;
        margin-right: 10px;
    }
    
    .merit-icon02{
        width: 240px;
        height: 240px;
        background-color: #466FFF;
        border-radius: 120px;
        margin-right: 10px;
    }
    
    .merit-icon03{
        width: 240px;
        height: 240px;
        background-color: #FC62FF;
        border-radius: 120px;
    }
    
    .icon-title{
        margin-left: 20px;
        width: 200px;
        text-align: center;
        font-size: 18px;
        color: white;
        text-shadow: 2px 2px 2px #555555;
    }
    
    .icon-text{
        margin-left: 20px;
        width: 200px;
        font-size: 12px;
        color: white;
        text-shadow: 2px 2px 2px #555555;
    }
}

@media screen and (max-width:768px) {
    .wrapper{
        max-width: 480px;
        margin: 0 auto 0 auto;
    }

    .main-contents{
        width: 480px;
    }

    .text-area-merit{
        width: 480px;
    }

    .main-content04{
        height: 900px;
        padding-left: 0;
    }

    .merit-contents{
        display: block;
    }

    .merit-icon01{
        margin-left: 120px;
        margin-bottom: 10px;
    }
    
    .merit-icon02{
        margin-left: 120px;
        margin-bottom: 10px;
    }
    
    .merit-icon03{
        margin-left: 120px;
    }

    .icon-title{
        padding-top: 10px;
    }
}

/* flow */
.main-content05{
    height: 650px;
}

.text-area h2{
    font-size: 36px;
    padding-left: 70px;
    margin-block-start: 0;
    margin-block-end: 0;
}

@media screen and (max-width:1280px) {
    .wrapper{
        max-width: 768px;
    }

    .main-contents{
        width: 768px;
    }

    .image-size1{
        width: 768px;
    }

    .text-area h2{
        font-size: 24px;
        padding-left: 40px;
        margin-block-start: 0;
        margin-block-end: 0;
    }
}

@media screen and (max-width:768px) {
    .wrapper{
        max-width: 480px;
        margin: 0 auto 0 auto;
    }

    .main-contents{
        width: 480px;
    }

    .image-size1{
        width: 480px;
    }

    .text-area h2{
        font-size: 16px;
        padding-left: 20px;
        margin-block-start: 0;
        margin-block-end: 0;
    }
}

/* Q&A */
.main-content06{
    height: 950px;
    padding-top: 50px;
    padding-left: 50px;
    background-color: #F1F1E4;
}

.Q-and-A h2{
    width: 220px;
    color: #515151;
    font-size: 36px;
    border-bottom: solid 3px #C4C4C4;
}

.accordion-container .accordion-title {
    position: relative;
    margin: 0;
    padding: 0.625em 0.625em 0.625em 2em;
    background-color: #F1F1E4;
    font-size: 1.25em;
    font-weight: normal;
    color: #515151;
    cursor: pointer;
  }
  .accordion-container .accordion-title:hover,
  .accordion-container .accordion-title:active,
  .accordion-title.open { 
    background-color: #a1a194;
  }

  .accordion-container .accordion-title::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 25px;
    width: 15px;
    height: 2px;
    /*縦線に*/
    transform: rotate(90deg);
    background: #515151;
    transition: all .3s ease-in-out;
  }
  
  .accordion-container .accordion-title::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 25px;
    /*横線*/
    width: 15px;
    height: 2px;
    background: #515151;
    transition: all .2s ease-in-out;
  }
  
  .accordion-container .accordion-title.open::before {
    transform: rotate(180deg);
  }
  
  .accordion-container .accordion-title.open::after {
    opacity: 0;
  }
  
  .accordion-content {
    display: none;
    padding-left: 2.3125em;
    padding-right: 2.3125em;
    font-size: 1.25em;
    font-weight: normal;
    color: #515151;
  }
  
  /* CSS for CodePen */
  .accordion-container {
    width: 1080px;
    margin: 0 auto;
  }

@media screen and (max-width:1280px) {
    .wrapper{
        max-width: 768px;
    }

    .main-contents{
        width: 768px;
    }

    .accordion-container {
      width: 668px;
    }

    .accordion-container .accordion-title {
      padding: 0.625em 0 0.625em 0;
    }
}

@media screen and (max-width:768px) {
    .wrapper{
        max-width: 480px;
        margin: 0 auto 0 auto;
    }

    .main-contents{
        width: 480px;
    }

    .main-content06{
      height: 750px;

  }
    .accordion-container {
      width: 380px;
    }

    .accordion-container .accordion-title {
      padding: 0.625em 2em 0.625em 0;
      font-size: 0.8em;
    }

    .accordion-content {
      font-size: 0.8em;
    }
}

/* price */
.main-content07{
    height: 600px;
    padding-top: 20px;
    padding-left: 190px;
}

.main-content07 h2{
    width: 220px;
    color: #515151;
    font-size: 36px;
    border-bottom: solid 3px #C4C4C4;
}


.table_border{
    display: block;
    border: solid 0px black;
    border-collapse: collapse;
    width: 900px;
    text-align: center;
}

th{
    border: solid 1px black;
    height: 50px;
    background-color: #d3d1c8;
}

td{
    border: solid 1px black;
    height: 50px;
}

.price{
    width: 200px;
}

.type{
    width: 300px;
}

.outside{
    width: 100px;
}

.inside{
    width: 100px;
}

.birdview{
    width: 100px;
}

.add{
    width: 100px;
}


@media screen and (max-width:1280px) {
    .wrapper{
        max-width: 768px;
    }

    .main-contents{
        width: 768px;
    }

    .main-content07{
        padding-left: 69px;
    }
    
    .table_border{
        width: 630px;
    }
    
    .price{
        width: 140px;
    }
    
    .type{
        width: 210px;
    }
    
    .outside{
        width: 70px;
    }
    
    .inside{
        width: 70px;
    }
    
    .birdview{
        width: 70px;
    }
    
    .add{
        width: 70px;
    }
}

@media screen and (max-width:768px) {
    .wrapper{
        max-width: 480px;
        margin: 0 auto 0 auto;
    }

    .main-contents{
        width: 480px;
    }

    .main-content07{
        height: 360px;
        padding-left: 51px;
    }
    
    .main-content07 h2{
        width: 120px;
        font-size: 18px;
    }
    
    
    .table_border{
        font-size: 11px;
        width: 378px;
    }
    
    th{
        height: 30px;
    }
    
    td{
        height: 30px;
    }
    
    .price{
        width: 84px;
    }
    
    .type{
        width: 126px;
    }
    
    .outside{
        width: 42px;
    }
    
    .inside{
        width: 42px;
    }
    
    .birdview{
        width: 42px;
    }
    
    .add{
        width: 42px;
    }

    .text-memo{
        font-size: 11px;
    }
}