@charset "UTF-8";

html {
    font-size: 100%;
}

body {
    font-size: clamp(12px, 1vw, 16px);
    font-weight: bold;
    font-family: 'Zen Old Mincho', serif;
    color: #461F1F;
    background-color: #F5F5F5;
}

ul {
    list-style: none;
}

a {
    color: #461F1F;
    text-decoration: none;
}

img {
    width: 100%;
}

.under-line {
    position: relative;
    display: inline-block;
    background: linear-gradient(transparent 60%, #fff600 60%);
}

.container {
    display: flex;
    justify-content: center;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
}

.green {
    color: #81C784;
}

.purple {
    color: #5800FF;
}

.yellow {
    color: #FFA600;
}

.page-link {
    display: inline-block;
    width: 350px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 1.5rem;
    border-radius: 25px;
    background: #461F1F;
    color: #fff;
}

.btn {
    display: inline-block;
    width: 60%;
    height: auto;
    border-radius: 50px;
    color: #fff;
    background-color: #00A73B;
    font-weight: bolder;
    font-family: 'Inter', sans-serif;
    margin-top: 30px;
}

.main {
    font-size: clamp(1.5rem, 2vw, 2.5rem);
    line-height: 50px;
}

.sub {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    line-height: 50px;
    margin-bottom: 0;
}

@media screen and (max-width: 600px) {
    .btn {
        width: 80%;
    }
}

/*---------------
header
---------------*/

#header {
    position: fixed;
    top:0;
    left: calc(50% - 720px);
    width: 300px;
    height: 100vh;
    border-right: solid 1px #E0E0E0;
    background-color: #fff;
    z-index: 20;
}

@media screen and (max-width:1440px) {
    #header {
        left: 0;
    }
}

#header li {
    display: block;
    height: 50px;
    line-height: 50px;
    border-bottom: solid 1px #C5C5C5;
    padding-left: 5%;
}

#header li.logo {
    height: 130px;
    padding: 0;
}

#header li img {
    width: 70%;
    margin: 0 auto;
}

#header li.tel,
#header li.contact {
    padding-left: 0;
}

#header li a {
    display: flex;
    align-items: center;
    justify-content: left;
    height: 100%;
}

#header li.tel a {
    justify-content: center;
    font-size: 1.5625rem;
    font-weight: bold;
    color: #00A73B;
    background-color: #E5FFEF;
}

#header li.contact a {
    justify-content: center;
    background-color: #A0E792;
    color: #fff;
    font-weight: bolder;
}

@media screen and (max-width:1220px) {
    #header {
        left: 0;
    }
}

/*---------------
main
---------------*/

#main {
    max-width: 1140px;
    margin-left: 300px;
    background-color: #fff;
}

@media screen and (max-width:1440px) {
    #main {
        width: calc(100vw - 317px);
    }
}

/*---------------
mainvisual
---------------*/

#mainvisual {
    position: relative;
    z-index: 0;
}

#mainvisual ul {
    position: absolute;
    top: 25%;
    right: 3%;
}

#mainvisual img {
    width: 100%;
}

#mainvisual li {
    font-size: clamp(1rem, 2.5vw, 2.5rem);
    color: #fff;
    font-weight: normal;
    text-align: center;
    background-color: #00A73B;
    margin-bottom:  20px;
    padding: 5px;
}

@media screen and (max-width:600px) {
    #mainvisual ul {
        top: 40%;
        right: 3%;
    }

    #mainvisual li {
        color: #fff;
        background-color: rgba(0, 167, 59, 0.5);
        margin-bottom:  0;
        padding: 5px;
    }
}

/*---------------
contact
---------------*/

#contact {
    display: flex;
    justify-content: space-between;
    margin: 40px 0 80px 0;
}

#contact .btn {
    display: block;
    width: 80%;
    height: auto;
    font-size: clamp(1rem, 2vw, 2rem);
    text-align: center;
    border-radius: 50px;
    margin: 10px auto 0 auto;
}

#contact .left,
#contact .right {
    width: 50%;
    text-align: center;
}
 
#contact .left .btn {
    background-color: #fff;
    border: solid 5px #00A73B;
    color: #333;
    line-height: 150%;
    font-weight: bolder;
}

#contact .left .num {
    font-size: clamp(1.5rem, 2vw, 2.5rem);
    font-family: 'Inter', sans-serif;
}

#contact .right .btn {
    background-color: #00A73B;
    border: solid 5px #00A73B;
    line-height: 300%;
    color: #fff;
    font-weight: bolder;
}

#contact p {
    font-size: clamp(0.625rem, 1vw, 1rem);
}

#contact .btn {
    width: 80%;
    height: auto;
}

@media screen and (max-width:600px) {
    #contact {
        display: block;
    }

    #contact .left,
    #contact .right {
        width: 90%;
        margin: 0 auto 30px auto;
}
}

/*---------------
customer-message
---------------*/

#customer-message {
    background-image: url(../img/customer-massage.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 60px;
}

#customer-message ul {
    width: 70%;
    margin: 0 auto;
}

#customer-message .title {
    font-size: clamp(1.5rem, 1vw, 2rem);
    margin-bottom: 60px;
}

#customer-message .text p {
    font-size: clamp(1rem, 1vw, 1.25rem);
    margin-bottom: 60px;
}

#customer-message p {
    margin-bottom: 30px;
}

@media screen and (max-width:600px) {
    #customer-message ul {
        width: 90%;
        margin: 0 auto;
    }

    #customer-message .title {
        font-size: clamp(1rem, 1vw, 1.5rem);
        margin-bottom: 30px;
    }
    
    #customer-message .text p {
        font-size: clamp(0.75rem, 1vw, 1rem);
        margin-bottom: 30px;
    }
}

/*---------------
section1
---------------*/

#sec1  {
    font-size: clamp(1.25rem, 2.5vw, 2.25rem);
    text-align: center;
    background: linear-gradient(to bottom,  #e5f7ef, #ffffff);
    padding: 30px 0;
}

#sec1 .title {
    line-height: 1.5;
}

#sec1 h1 p {
    margin-bottom: 30px;
}

#sec1 .paragraph {
    display: inline-block;
    width: 100%;
    font-size: clamp(1rem, 1vw, 1.25rem);
    line-height: 2;
    margin: 20px 0;
}

#sec1 .compare-section {
    display: flex;
    justify-content: space-around;
    border-bottom: solid 1px #E0E0E0;
    margin-top: 20px;
    padding-bottom: 60px;
}

#sec1 .compare-section .img {
    width: 90%;
    height: 200px;
    margin: 0 auto;
}

#sec1 .compare-section img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#sec1 .compare-section ul {
    display: inline-block;
    text-align: left;
}

#sec1 .compare-section li {
    line-height: 1.7;
}

#sec1 .compare-section .left,
#sec1 .compare-section .right {
    width: 48%;
    height: auto;
    font-size: 1rem;
    padding-bottom: 2%
}

#sec1 .compare-section .left .title,
#sec1 .compare-section .right .title {
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    margin: 20px 0;
}


#sec1 .compare-section .left {
    background-color: #FFEDCB;
    border-radius: 30px;
}

#sec1 .compare-section .right {
    background-color: #E5FFEF;
    border-radius: 30px;
}

#sec1 .compare-section li {
    font-size: clamp(0.825rem, 1vw, 1.5rem);
}

@media screen and (max-width:600px) {
    #sec1 {
        padding: 0 1%;
    }

    #sec1 .compare-section {
        display: block;
    }

    #sec1 .paragraph {
        font-size: clamp(0.725rem, 1vw, 1rem);
    }

    #sec1 .compare-section .left,
    #sec1 .compare-section .right {
        width: 90%;
        height: auto;
        font-size: 1rem;
        padding-bottom: 2%;
        margin: 0 auto;
    }

    #sec1 .compare-section li {
        font-size: clamp(0.725rem, 1vw, 1.5rem);
    }
}

/*---------------
section2
---------------*/

#sec2 {
    display: flex;
    justify-content: space-around;
    border-bottom: solid 1px #E0E0E0;
    line-height: 1.5;
    font-weight: normal;
    padding: 60px 0;
}

#sec2 .paragraph {
    margin-bottom: 30px;
}

#sec2 .left {
    width: 45%;
    font-size: clamp(1.5rem, 2vw, 2rem);
    text-align: center;
}

#sec2 .left h2 {
    margin-bottom: 100px;
}

#sec2 .right {
    width: 48%;
}

@media screen and (max-width:600px) {
    #sec2 {
        display: block;
    }

    #sec2 .left,
    #sec2 .right {
        width: 90%;
        margin: 0 auto 30px auto;
    }
}

/*---------------
section3
---------------*/

#sec3 {
    border-bottom: solid 1px #E0E0E0;
    line-height: 1.5;
    font-weight: normal;
    text-align: center;
    padding: 60px 0;
}

#sec3 .flex-container {
    display: flex;
    justify-content: space-around;
}

#sec3 .left {
    width: 48%;
    font-size: clamp(1.25rem, 2vw, 2rem);
}

#sec3 .left h2 {
    margin-bottom: 50px;
}

#sec3 .right {
    width: 49%;
    line-height: 2;
}

#sec3 .paragraph {
    text-align: left;
    margin-bottom: 30px;
}

#sec3 h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: bold;
    margin: 50px 0;
}

#sec3 .sales p {
    text-align: center;
    font-size: clamp(1rem, 1vw, 1.25rem);
    margin-bottom: 0;
}

@media screen and (max-width:600px) {
    #sec3 .flex-container {
        display: block;
    }

    #sec3 .left,
    #sec3 .right {
        width: 90%;
        margin: 0 auto;
    }

    #sec3 h3 {
        font-size: clamp(0.9rem, 2vw, 1.5rem);
        font-weight: bold;
        margin: 30px 0;
    }

    #sec3 .sales p {
        text-align: center;
        font-size: clamp(0.825rem, 1vw, 1.25rem);
        margin-bottom: 0;
    }
}

/*---------------
section4
---------------*/

#sec4 {
    border-bottom: solid 1px #E0E0E0;
    line-height: 1.5;
    font-weight: normal;
    text-align: center;
    padding: 60px 0;
}

#sec4 .flex-container {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
}

#sec4 h2 {
    font-size: clamp(1.25rem, 2vw, 2rem);
    margin-bottom: 60px;
}

#sec4 .left {
    width: 48%;
    text-align: left;
}

#sec4 p {
    line-height: 2;
}

#sec4 .right {
    width: 48%;
}

@media screen and (max-width:600px) {
    #sec4 .flex-container {
        display: block;
    }

    #sec4 .left,
    #sec4 .right {
        width: 90%;
        margin: 0 auto;
    }

    #sec4 .right {
        width: 60%;
        margin-top: 30px;
    }
}

/*---------------
section6
---------------*/

#sec5 {
    border-bottom: solid 1px #E0E0E0;
    line-height: 1.5;
    font-weight: normal;
    text-align: center;
    padding: 60px 0;
}

#sec5 .flex-container {
    display: flex;
    justify-content: space-around;
    margin: 45px 0 30px 0;
}

#sec5 h2 {
    font-size: clamp(1.5rem, 1vw, 2rem);
    margin-bottom: 60px;
    font-weight: bold;
}

#sec5  .paragraph {
    display: inline-block;
}

#sec5 .left {
    width: 35%;
    text-align: left;
}

#sec5 .left img {
    border-radius: 30px;
}

#sec5 .right {
    width: 60%;
}

#sec5 .right .basic,
#sec5 .right .option {
    display: flex;
}

#sec5 .name {
    display: flex;
    width: 40%;
    font-size: clamp(1.25rem, 1vw, 1.5rem);
    align-items: center;
    justify-content: center;
    border: solid 1px #E0E0E0;
    vertical-align: middle;
}

#sec5 .price {
    width: 60%;
    font-size: clamp(1rem, 1vw, 1.25rem);
    border: solid 1px #E0E0E0;
    padding: 10px 0;
}

#sec5 dl {
    display: flex;
}

#sec5 dt {
    width: 40%
}

#sec5 dd {
    width: 60%;
    text-align: left;
}

#sec5 .option dt {
    width: 60%
}

#sec5 .option dd {
    width: 40%;
}

#sec5 p {
    text-align: left;
    margin: 10px;
}

@media screen and (max-width:600px) {
    #sec5 .flex-container {
        display: block;
    }

    #sec5 .left,
    #sec5 .right {
        width: 90%;
        margin: 0 auto;
    }

    #sec5 .name {
        width: 30%;
        font-size: clamp(1rem, 1vw, 1.5rem);

    }
    
    #sec5 .price {
        width: 70%;
        font-size: clamp(0.825rem, 1vw, 1.25rem);

    }
}

/*---------------
section6
---------------*/

#sec6 {
    border-bottom: solid 1px #E0E0E0;
    line-height: 1.5;
    font-weight: normal;
    text-align: center;
    padding: 60px 0;
}

#sec6 .flex-container {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
}

#sec6 h2 {
    font-size: clamp(1.25rem, 2vw, 2rem);
    margin-bottom: 60px;
}

#sec6 .left {
    width: 48%;
    text-align: left;
}

#sec6 p {
    line-height: 2;
}

#sec6 .right {
    width: 48%;
}

#sec6 .main {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    line-height: 50px;
}

#sec6 .sub {
    font-size: clamp(1rem, 2vw, 1.5rem);
    line-height: 50px;
    margin-bottom: 0;
}

@media screen and (max-width:600px) {
    #sec6 .flex-container {
        display: block;
    }

    #sec6 .left,
    #sec6 .right {
        width: 90%;
        margin: 0 auto;
    }

    #sec6 .right {
        width: 60%;
        margin-top: 30px;
    }
}

/*---------------
review
---------------*/

#review {
    text-align: center;
    font-weight: normal;
    line-height: 1.3;
    border-bottom: solid 1px #E0E0E0;
    padding-bottom: 60px;
}

#review h2 {
    font-size: clamp(1.5rem, 1vw, 2rem);
    margin: 60px 0 30px 0;
}

#review .wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
    margin-bottom: 40px;
}

#review .flex-container {
    display: flex;
    justify-content: center;
    text-align: left;
    width: 40%;
    border: solid 5px #A0E792;
    margin: 1%;
    padding: 40px 10px;
}

#review img {
    width: 45%;
    object-fit: contain;
}

#review .paragraph {
    width: 55%;
}

@media screen and (max-width:600px) {
    #review .flex-container {
        display: block;
        width: 80%;
        padding: 20px 10px;
    }

    #review img {
        width: 60%;
    }
    
    #review .paragraph {
        width: 95%;
        margin: 0 auto;
    }
}

/*---------------
sale
---------------*/

#sale {
    width: 100%;
    text-align: center;
    margin: 0 auto 50px auto;
}

#sale .flex-container {
    display: flex;
    justify-content: center;
    border: solid 5px #A0E792;
    margin: 50px auto;
}

#sale .left {
    display: flex;
    width: 35%;
    font-size: clamp(1rem, 2vw, 1.5rem);
    align-items: center;
    justify-content: center;
    border-right: solid 5px #A0E792;
}

#sale .right {
    width: 55%;
    text-align: left;
    padding: 10px 0 10px 30px;
}

#sale .guidance {
    font-size: 1.25rem;
}

#sale a img {
    width: 40%;
    margin: 10px 0;
    
}

#sale .right h3 {
    font-size: clamp(0.825rem, 2vw, 1.5rem);
    margin-bottom: 40px;
}

#sale .right .details {
    font-size: clamp(0.825rem, 2vw, 1.5rem);
    margin-bottom: 30px;
}

#sale .right .please-note {
    line-height: 1.3;
    margin: 20px;
}

@media screen and (max-width:600px) {
    #sale .flex-container {
        display: block;
        width:90%;
        align-items: center;
        padding: 10px 0;
    }

    #sale .left,
    #sale .right {
        width: 100%;
        padding: 0;
        text-align: center;
    }

    #sale .left h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    #sale .right h3 {
        font-size: clamp(1.25rem, 2vw, 2rem);
        margin-bottom: 10px;
    }
    
    #sale .right .details {
        font-size: clamp(1.25rem, 2vw, 1.5rem);
        margin-bottom: 30px;
    }

    

}

/*---------------
information
---------------*/

#information {
    width: 80%;
    text-align: center;
    border: solid 1px #333;
    margin: 50px auto;
    padding: 30px 0;
}

#information h2 {
    font-size: 1.5rem;
    margin-bottom: 40px;
}

#information li {
    margin-bottom: 30px;
}

#information li:last-child {
    margin-bottom: 0;
}

#information dl {
    display: flex;
    justify-content: space-around;
}

#information dt {
    width: 40%;
    margin-bottom: 30px;
}

#information dd {
    width: 60%;
    text-align: left;
    line-height: 1.5;
}

/*---------------
column
---------------*/

#column {
    width: 80%;
    text-align: center;
    border: solid 1px #333;
    margin: 50px auto;
    padding: 30px 0;
}

#column h2 {
    font-size: 1.5rem;
    margin-bottom: 40px;
}

#column .main {
    display: flex;
    justify-content: space-around;
    margin-bottom: 40px;
}

#column .main li {
    width: 40%;
    margin-bottom: 30px;
}

#column .main li img {
    height: 150px;
    object-fit: cover;
    border-radius: 30px;
    margin-bottom: 10px;
}

#column li {
    font-size: clamp(0.825rem, 1vw, 1.25rem);
    text-align: left;
    line-height: 1.5;
}

#column .sub {
    display: block;
    width: 40%;
    font-size: clamp(0.825rem, 1vw, 1.25rem);
    text-align: left;
    margin: 0 auto 40px auto;
    padding-left: 5%;
}

#column .sub li {
    line-height: 2;
}

#column a {
    color: initial;
    text-decoration: underline;
}

@media screen and (max-width:600px) {
    #column .main {
        display: block;
    }

    #column .main li {
        width: 90%;
        margin: 30px auto;
    }

    #column .sub {
        width: 90%;
    }
}

/*---------------
sns
---------------*/

#sns {
    display: flex;
    width: 80%;
    text-align: center;
    align-items: center;
    border: solid 1px #333;
    margin: 50px auto;
    padding: 10px 0;
}

#sns h2 {
    width: 50%;
    font-size: 1.5rem;
    text-align: right;
}

#sns img {
    width: 100px;
}

/*---------------
footer
---------------*/

#footer {
    text-align: center;
    background-image: url(../img/店内イメージ.jpg);
    color: #fff;
    font-weight: normal;
    padding: 40px 0;
}

#footer .paragraph {
    display: inline-block;
    text-align: left;
    line-height: 1.5;
    margin: 30px 0;
}

#footer .flex-container {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
}

#footer .left {
    width: 45%;
    padding-left: 2%;
}

#footer li {
    margin-bottom: 20px;
}

#footer dl {
    display: flex;
    flex-wrap: wrap;
}

#footer dt {
    width: 20%;
}

#footer dd {
    width: 80%;
    text-align: left;
}

#footer dd:nth-child(3) {
    margin-left: 20%;
}

#footer .right {
    width: 47%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 10px;
    margin: 0 auto;
}

#footer img {
    width: 100%;
    margin: 0 auto;
}

@media screen and (max-width:600px) {
    #footer .paragraph {
        width: 90%;
        margin: 30px 0;
    }

    #footer .flex-container {
        display: block;
        justify-content: space-around;
        margin-bottom: 30px;
    }

    #footer .left,
    #footer .right {
        width: 90%;
        margin: 0 auto;
    }
}

.copy {
    text-align: center;
}

/*---------------------
hamburger
---------------------*/
@media screen and (max-width:1024px) { 

    #main {
        width: 100%;
        margin-left: 0;
    }

    #header .hamburger {
      width: 50px;
      height: 50px;
      position: fixed;
      top: 20px;
      right: 20px;
      z-index: 20;
      background-color: rgba( 0, 0, 0, 0);
      border: none;
    }
    
    #header .hamburger::after {
      content:"MENU";
      width: 100%;
      font-weight: bold;
      position: absolute;
      font-size: 0.875rem;
      bottom: -20px;
      left: 0;
    }
    
    #header.open .hamburger::after {
      content:"CLOSE";
      width: 100%;
      position: absolute;
      bottom: -20px;
      left: 0;
    }
    
    #header .hamburger span:nth-child(1),
    #header .hamburger span:nth-child(2),
    #header .hamburger span:nth-child(3) {
      content: " ";
      width: 50px;
      height: 3px;
      background-color: #333;
      position: absolute;
      z-index: 21;
    }
    
    #header .hamburger span:nth-child(1) {
      top: 15px;
      right: 0;
      transition: all 0.5s  ease;
    }
    
    #header.open .hamburger span:nth-child(1) {
      top: 25px;
      transform: rotate(45deg);
    }
    
    #header .hamburger span:nth-child(2) {
      top: 25px;
      right: 0;
      transition: all 0.5s  ease;
    }
    
    #header .hamburger span:nth-child(3) {
      top: 35px;
      right: 0;
      transition: all 0.5s  ease;
    }
    
    #header.open .hamburger span:nth-child(2),
    #header.open .hamburger span:nth-child(3)  {
      top: 25px;
      transform: rotate(-45deg);
    }
    
    #header {
      height: 100vh;
      width: 300px;
      text-align: center;
      position: absolute;
      top: 0;
      left: -100vw;
      z-index: 5;
    }
    
    #header.open {
      position: fixed;
      top: 0;
      left: 0;
    }
    
    #header .navi ul {
      display: inline-block;
      height: 100vh;
      background-color: transparent;
      border: none;
      border-radius: 0;
      margin: 50px 0;
      padding: 0;
    }
    
    #header .navi li {
      font-size: 1rem;
      border-bottom: dashed 3px #dfdfdf;
      position: relative;
      margin: 1%;
      padding-bottom: 5px;
    }
    
    #header li a {
      display: block;
      width: 100%;
      position: relative;
      z-index: 1;
    }

    #header li {
        display: block;
        height: 40px;
        line-height: 40px;
        text-align: center;
        border-bottom: solid 1px #C5C5C5;
        padding-left: 5%;
    }
    
    #header li.logo {
        height: 100px;
        padding: 0;
    }

    #header li.logo img {
        width: auto;
        height: 60%;
        display: block;
        margin: 0 auto;
    }
    
}