@charset "utf-8";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}
img {
    width: 100%;
    vertical-align: bottom;
}
/* header */
.hamburger {
    -webkit-tap-highlight-color: transparent;
}

.pc-header {
    display: none;
}
header {
    position: sticky;
    background: #ffffffe9;
    top: 8px;
    width: 95%;
    margin: 0 auto;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    transition: 0.6s;
    padding: 5px 20px 10px;
}
header.active {
    box-shadow: 1px 2px 5px #000;
}
header h1 {
    width: 200px;
}
.sp-nav {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.421);
    border: 1px solid #fff;
    box-shadow: 1px 1px 2px #8b8b8b;
    backdrop-filter: blur(20px);
    width: 110%;
    height: 110lvh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -1;
    transition: 0.6s;
    opacity: 0;
}
.sp-nav.active {
    opacity: 1;
    z-index: 99;
}

.sp-nav ul li a {
    display: block;
    color: rgb(4, 4, 58);
    margin: 10px;
    font-size: 20px;
}
/* hamburger */
.hamburger {
    width: 60px;
    height: 41px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.hamburger span {
    display: block;
    width: 70%;
    height: 3px;
    background: #000;
    border-radius: 10px;
    transition: 0.6s;
}
.hamburger span:first-child {
    width: 100%;
}
.hamburger span:last-child {
    margin-left: auto;
}
.hamburger.active span:nth-child(1) {
    width: 80%;
    transform: translateY(8px) translateX(12px) rotate(35deg);
}

.hamburger.active span:nth-child(2) {
    width: 80%;
    transform: translateY(-8px) rotate(-35deg);
}
.pc-header {
    display: none;
}

@media (min-width: 768px) {
    .sp-header,
    .sp-nav {
        display: none;
    }
    .pc-header {
        position: sticky;
        top: 10px;
        background-color: #fff;
        z-index: 999;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 90%;
        margin: 0 auto;
        padding: 10px 5vw;
    }
      .pc-header h1{
        width: 200px;
      }
    .pc-nav ul {
        display: flex;
        gap: 30px;
    }
    .pc-nav ul li {
        border-right: 2px solid #ccc;
        padding-right: 20px;
    }
    .pc-nav ul li:last-child {
        border-right: none;
    }
    .pc-header a{
        font-size: 1.2em;
    }
        .sp-header {
        display: none;
    }
   

}

/* hero */
.pc-hero {
    display: none;
}
.hero {
    position: relative;
    margin-top: 20px;
}
.catchcopy1 {
    position: absolute;
    top: 10%;
    left: 5%;
    color: #fff;
    font-size: 5vw;
    font-weight: bold;
}
.catchcopy2 {
    position: absolute;
    top: 30%;
    left: 5%;
    background-color: #fff;
    padding: 0 10px;
    color: orangered;
    font-size: 3vw;
}
.hero a {
    display: block;
    width: 90%;
    border: skyblue 2px solid;
    background-color: #fff;
    border-radius: 8px;
    text-align: center;
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
    font-size: 25px;
    font-weight: bold;
    color: dodgerblue;
}
@media (min-width: 768px) {
    .sp-hero {
        display: none;
    }
    .pc-hero {
        display: block;
        height: 90vh;
        object-fit: cover;
    }
    .catchcopy1 {
        font-size: 40px;
    }
    .catchcopy2 {
        top: 40vh;
        padding: 0 20px;
        font-size: 2vw;
    }
    .hero a {
        width: 40%;
        left: 5%;
        transform: translateX(0%);
        font-size: 1.5em;
    }
}
/* news */
.news {
    background-color: #aaa;
    padding: 50px 10px;
}
.inner-news {
    background-color: #fff;
    padding: 10px;
    border-radius: 8px;
}
.news h2 {
    color: skyblue;
    border-bottom: skyblue 1px solid;
    margin-bottom: 5px;
}
.news dt span {
    display: inline-block;
    border: 1px solid #000;
    border-radius: 20px;
    padding: 0 10px;
    font-size: 0.8em;
    margin-left: 1em;
}
.news dd {
    border-bottom: 1px dashed #aaa;
    padding-bottom: 5px;
}
.news dd:last-child {
    border-bottom: none;
}
.imp {
    color: red;
}
@media (min-width: 768px) {
    .inner-news {
        width: 80%;
        margin: 0 auto;
        padding: 10px 30px;
    }
    .inner-news dt {
        padding-top: 10px;
    }
    .inner-news dd {
        padding-bottom: 10px;
    }
}
/* pick-up */
.pick-up {
    padding: 0 20px;
}
.pick-up h2 {
    font-size: 10vw;
    width: fit-content;
    border-bottom: 1px solid dodgerblue;
    color: dodgerblue;
    margin: 50px auto 5px;
    padding: 0 20px;
}
.pick-up p small {
    display: block;
    text-align: center;
    margin-bottom: 30px;
    color: dodgerblue;
}
.pick-up-item h3 {
    text-align: center;
    margin-bottom: 10px;
}
.pick-up-item {
    margin-bottom: 50px;
}
.pick-up-item img {
    margin-bottom: 10px;
}
.pick-up-item p {
    padding: 0 10px;
    margin-bottom: 20px;
}
.pick-up-item a {
    display: block;
    border: 2px solid orangered;
    border-radius: 8px;
    text-align: center;
    padding: 10px 0;
    width: 90%;
    margin: 30px auto 100px;
    color: orangered;
    font-weight: bold;
}
@media (min-width: 768px) {
    .pick-up h2 {
        font-size: 3vw;
        border-bottom: 2px solid dodgerblue;
    }
    .pick-up p small {
        font-size: 1vw;
    }
    .pick-up-flex {
        width: 80%;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
    }
    .pick-up-item {
        width: 32%;
    }
}

/* service */
.service {
    background-color: #aaa;
    padding: 20px;
    padding-bottom: 50px;
}
.service h2 {
    font-size: 10vw;
    width: fit-content;
    border-bottom: 1px solid #fff;
    color: #fff;
    margin: 0 auto;
    padding: 0 20px;
}
.service p small {
    display: block;
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
}
.service-item {
    background-color: dodgerblue;
    position: relative;
    margin-bottom: 20px;
    height: auto;
}
.service-item img {
    display: block;
    width: 85%;
    aspect-ratio: 10/7;
    object-fit: cover;
    position: relative;
    left: -1px;
}
.yoko {
    position: absolute;
    bottom: 15%;
    left: 5%;
    border: 2px skyblue solid;
    border-radius: 20px;
    background-color: #fff;
    padding: 5px 15px;
    color: skyblue;
}
.tate {
    writing-mode: vertical-lr;
    position: absolute;
    top: 5%;
    right: 7.5%;
    transform: translateX(50%);
    color: #fff;
    font-weight: bold;
    font-size: 3vw;
}
.orange {
    color: orangered;
    border-color: orangered;
}
.yellow {
    color: yellow;
}
.s-p-1 {
    margin-top: 50px;
    color: #fff;
    text-align: center;
    font-size: 0.9em;
    border-bottom: #fff 1px dashed;
    font-weight: bold;
}
.s-p-2 {
    font-weight: bold;
    margin-top: 0px;
    color: yellow;
    text-align: center;
    font-size: 0.8em;
    font-size: 1em;
}
.service a {
    display: block;
    border: 2px solid orangered;
    border-radius: 8px;
    text-align: center;
    padding: 10px 0;
    width: 90%;
    background-color: #fff;
    margin: 30px auto 10px;
    color: orangered;
    font-weight: bold;
}
@media (min-width: 768px) {
    
    .service-flex {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 80%;
        margin: 0 auto;
    }
    .service-item {
        width: 48%;
    }

    .service h2 {
        font-size: 3vw;
        border-bottom: 2px solid rgb(255, 255, 255);
    }
    service p small {
        font-size: 1vw;
    }
    .pick-up-flex {
        width: 80%;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
    }
    .pick-up-item {
        width: 32%;
    }
    .s-p-1 {
    font-size: 1.5em;
    border-bottom: #fff 1px dashed;
    width: fit-content;
    margin: 100px auto 0;
    padding: 0 30px;
}
.s-p-2 {
    color: yellow;
    font-size: 2em;
}
.service a {
    padding: 10px 0;
    width: 40%;
    font-size: 1.5em;
    background-color: #fff;
    margin: 50px auto 10px;
    color: orangered;
    font-weight: bold;
}
.tate {
    font-size: 1.2vw;
}
}
/* price */
.price {
    padding: 20px;
}
.price h2 {
    font-size: 10vw;
    width: fit-content;
    border-bottom: 1px solid orangered;
    color: orangered;
    margin: 0 auto;
    padding: 0 20px;
}
.price p small {
    display: block;
    text-align: center;
    margin-bottom: 30px;
    color: orangered;
}
.price-item {
    border: 2px solid orangered;
    border-radius: 20px;
    overflow: hidden;
    margin: 0 10px 30px;
}
.price-item h3 {
    text-align: center;
    background-color: orangered;
    color: #fff;
    padding: 10px;
    font-size: 1.5em;
}
.price-item img {
    padding: 20px;
    aspect-ratio: 1.2/1;
    object-fit: cover;
}
.price-item p {
    padding: 0 20px;
}
.kakaku {
    font-weight: bold;
    text-align: right;
    margin-top: 30px;
}
.price-item a {
    display: block;
    width: 90%;
    background-color: orangered;
    margin: 20px auto 10px;
    color: #fff;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
}

.blue {
    border-color: dodgerblue;
}
.blue h3 {
    background-color: dodgerblue;
}
.blue a {
    background-color: dodgerblue;
}
@media (min-width: 768px) {
    .price h2 {
        font-size: 4vw;
        border-bottom: 2px solid orangered;
    }
    .price p small {
        font-size: 1vw;
    }
    .price-flex {
        display: flex;
        width: 80%;
        margin: 0 auto;
        justify-content: space-between;
    }
     .price-item{
        width: 32%;
     }
}
/* about */
.about h2 {
    font-family: serif;
    text-align: right;
    font-size: 5vw;
    margin-bottom: 30px;
    padding-right: 20px;
}
.about h2 span {
    color: red;
}
.yakushoku {
    font-size: 0.8em;
}
.about p {
    text-align: right;
    padding-right: 20px;
}
.about .name {
    font-size: 5vw;
    font-family: serif;
    font-weight: bold;
    position: relative;
}
.about .name::before {
    content: "";
    position: absolute;
    right: 30%;
    top: 50%;
    display: inline-block;
    width: 20%;
    height: 1px;
    background: #000;
}
.bg-grey {
    background-color: #aaa;
    position: relative;
    padding-top: 15vw;
}
.bg-grey img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55%;
}
.catchcopy3 {
    background-color: #fff;
    width: fit-content;
    margin-left: auto;
    position: relative;
    margin-bottom: 20px;
    padding: 5px 20px;
    color: orangered;
    font-weight: bold;
}
.catchcopy4 {
    background-color: #fff;
    width: fit-content;
    margin-left: auto;
    position: relative;
    margin-bottom: 20px;
    padding: 5px 20px;
    color: orangered;
    bottom: 15px;
    font-weight: bold;
}
@media (min-width: 768px) {
    .about {
        margin-top: 150px;
    }
    .about h2 {
    font-size: 4.5vw;
    margin-bottom: 50px;
    letter-spacing: 0.1em;
    padding-right: 4vw;

}
    .about img{
        width: 50%;
    }


    .yakushoku {
    font-size: 1.2em;

}
.about p {
    text-align: right;
    padding-right: 5vw;
}
.about .name {
    font-size: 3vw;
    font-family: serif;
    font-weight: bold;
    position: relative;
    margin-bottom: 50px;

}
.about .name::before {
    content: "";
    position: absolute;
    right: 20%;
    top: 50%;
    display: inline-block;
    width: 20%;
    height: 1px;
    background: #000;
}
.bg-grey {
    background-color: #aaa;
    position: relative;
    padding-top: 17vw;
    top: -40px;
}
.bg-grey img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45%;
}
.catchcopy3 {
    font-size: 2em;
    position: relative;
    bottom: 100px;
}
.catchcopy4 {
    position: relative;
    bottom: 80px;
    font-size: 2em;
}
}
/* footer */
.footer-contact{
    display: none;
}
.footer-logo {
    width: 200px;
    display: block;
    margin: 0 auto;
}
.icon-flex {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
}
.icon-flex img {
    width: 50px;
}
.footer-flex {
    display: flex;
    justify-content: center;
    gap: 30px;
}
footer p small {
    background-color: #aaa;
    display: block;
    text-align: center;
    padding: 10px;
    color: #fff;
    margin-top: 50px;
}
@media (min-width:768px) {
    .footer-contact{
        display: block;
    }
    .footer-logo {
    width: 300px;
    display: block;
    margin: 0 auto;
}
.icon-flex {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
}
.icon-flex img {
    width: 50px;
}
.footer-flex {
    display: flex;
    justify-content: center;
    gap: 30px;
    width: 80%;
    margin: 0 auto;
}
.footer-left{
    width: 30%;
}
.footer-right{
    width: 20%;
}
.footer-contact{
    width: 30%;
}
}