@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%, #A0E792 60%);
}

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

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

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

.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: 5px auto 40px auto;
    padding: 20px 0;
}

.main {
    font-size: clamp(1.25rem, 2vw, 2rem);
    margin: 0;
}

.sub {
    font-size: clamp(0.825rem, 1vw, 1.25rem);
    margin: 0;
}

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

.wrapper {
    padding: 0 3%;;
}

/*---------------
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 {
    display: flex;
    width: 100%;
    height: 360px;
    font-size: clamp(1.25rem, 2vw, 2.5rem);
    color: #0FAC47;
    align-items: center;
    justify-content: center;
    background-image: url(../img/トップ背景.jpg);
    text-shadow:
    -2px -2px 0 #fff,
     2px -2px 0 #fff,
    -2px  2px 0 #fff,
     2px  2px 0 #fff,
     0px -2px 0 #fff,
     0px  2px 0 #fff,
    -2px  0px 0 #fff,
     2px  0px 0 #fff;
}

@media screen and (max-width:600px) {
    #mainvisual {
        height: 180px;
    }
}

/*---------------
sec1
---------------*/

#sec1 {
    display: flex;
    justify-content: center;
    margin: 50px 0;
}

#sec1 .paragraph {
    display: inline-block;
    font-size: clamp(0.825rem, 2vw, 1.25rem);
    line-height: 1.5;
}

@media screen and (max-width:600px) {
    #sec1 .paragraph p {
        margin-bottom: 20px;
    }
}

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

#review {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    text-align: center;
    font-weight: normal;
    line-height: 1.3;
    border-bottom: solid 1px #E0E0E0;
    padding-bottom: 60px;
}

#review .content {
    width: 45%;
    border: solid 5px #A0E792;
    margin: 3% 0;
}

#review h2 {
    font-size: clamp(0.825rem, 2vw, 1.25rem);
    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;
    margin: 1%;
    padding: 40px 10px;
}

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

#review .paragraph {
    width: 55%;
}

@media screen and (max-width:600px) {
    #review h2 {
        margin: 30px 0 10px 0;
    }

    #review .content {
        width: 100%;
        border: solid 5px #A0E792;
        margin: 3% 0;
    }

    #review .flex-container {
        display: block;
        width: 90%;
        margin: 0 auto;
        padding: 20px 10px;
    }

    #review img {
        display: block;
        width: 70%;
        margin: 0 auto 20px auto;
    }
    
    #review .paragraph {
        width: 95%;
        margin: 0 auto;
    }
}

/*---------------
sec6
---------------*/

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

#contact .btn {
    display: block;
    width: 100%;
    height: auto;
    font-size: clamp(1rem, 2vw, 1.5rem);
    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: #00A73B;
    border: solid 5px #00A73B;
    color: #fff;
    line-height: 100%;
    font-weight: bolder;
}

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

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

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

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

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

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


/*---------------
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;
    }
    
}