@charset "UTF-8";

/* INITIALIZE */
*{
 box-sizing: border-box;
 font-family: 'Noto Sans JP', sans-serif;
}
html, body, div, span, iframe, h1, h2, h3, h4, h5, h6, p, pre, address, em,figure, img, q, small, strong, var, b, i,dl, dt, dd, ol, ul, li, form, label, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, footer, header, menu, nav, section, summary, time, audio, video {
 margin:0;
 padding:0;
 border:0;
 outline:0;
 vertical-align:baseline;
 background:transparent;
 }
ul{
 list-style: none;
}
a {
 margin: 0;
 padding: 0;
 vertical-align: baseline;
 text-decoration: none;
 color: inherit;
}
section {
}
img {
 max-width: 100%;
}


/* COMMON */
body{
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.13em;
  color: #3A220D;
}
h1 {
  font-size: 22px;
 }
h2 {
  font-size: 20px;
}
h3 {
  font-size: 18px;
}
.content, .sub-content{
  width: 100%;
  margin: 0 auto;
  padding: 40px 0;
}
.content{
  max-width: 1200px;
}
.sub-content{
  max-width: 730px;
}
.main-group{
  /* margin-top: 80px; */
}
.bk-primary{
  background-color: #3A220D;
}
.bk-green{
  background-color: #E7F0DD;
}
.bk-white{
  background-color:#fff;
}
.bk-bage{
  background-color: #e6d4b9;
}
.color-pr-white{
  color: #E6D4B9;
}
.color-gray{
  color: #939393;
}
.color-red{
  color: rgba(200,30,30,1);
}
.w-100{
  width: 100%;
}
.w-50{
  width: 50%;
}
.w-30{
  width: calc(100% / 3);
}
.w-25{
  width: 25%;
}
.spacer-s{
  margin-top: 16px;
}
.spacer-m{
  margin-top: 24px;
}
.spacer-l{
  margin-top: 32px;
}
.center{
  text-align: center;
}
.right{
  text-align: right;
}
.bold{
  font-weight: bold;
}
.d-flex{
  display: flex;
  align-items: center;
}
.flex-reverse{
  flex-direction: row-reverse;
}
.d-flex-between{
  justify-content: space-between;
}
.d-flex-center{
  justify-content: center;
}
.d-column{
  flex-direction: column;
}
.align-start{
  align-items: start;
}
.align-end{
  align-items: end;
  justify-content: end;
}
.blur{
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.hover{
  transition: .3s all;
}
.hover:hover{
  box-shadow: 0 0 16px rgba(58,34,13,.5);
}
.btn{
  color:#3A220D;
  background: none;
  cursor: pointer;
  border: 3px solid #3A220D;
  border-radius: 4px;
  font-size: 16px;
  padding: 8px 24px;
  position: relative;
  overflow: hidden;
  transition: .3s all;
}
.btn:hover,
.btn:hover a{
  color: #E6D4B9;
  z-index: 2;
}
.btn::after{
  content:"";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 15px 0 0;
  border-color: #3A220D transparent transparent transparent;
}
.btn::before{
  content:'';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #3A220D;
  z-index: -1;
  transition: .3s left;
}
.btn:hover::before{
  left: 0;
}
input, textarea{
  padding: 8px 16px;
  margin-top: 8px;
  border: 1px solid #3A220D;
  line-height: 1.7;
  letter-spacing: 0.1em;
  color: #3A220D;
}
table{
  width: 100%;
  border-collapse: collapse;
}
th, td{
  padding: 16px;
  text-align: left;
}
table th, table td{
  border-top: 1px solid #ADADAD;
}
table tr:last-child th, table tr:last-child td{
  border-bottom: 1px solid #ADADAD;
}
.marker{
  height: 10px;
  padding-left: 4px;
}
.red{
  background:linear-gradient(transparent 70%, rgba(231,28,36,.7) 0%);
}
.green{
  background:linear-gradient(transparent 70%, rgba(57,175,74,.7) 0%);
}
.yellow{
  background:linear-gradient(transparent 70%, rgba(246,232,33,.7) 0%);
}
.shadow{
  box-shadow: 0 8px 16px rgba(58,34,13,.5);
}
.sp_show{
  display: none !important;
}
@media (max-width:1200px){
  .content,
  .sub-content{
    width: 100%;
    padding: 30px 16px;
  }
}
@media (max-width:768px){
  table th, table td{
    display: block;
    width: 100%;
  }
  table th{
    padding: 16px 16px 8px;
  }
  table td{
    padding: 0px 16px 16px;
  }
  table td, table tr:last-child th{
    border: none;
  }
  table tr:last-child th{
    border-top: 1px solid #ADADAD;
  }
  .btn{
    min-width: 280px;
    text-align: center;
    padding: 16px 24px;
  }
  .sp_show{
    display: block !important;
  }
}


/* HEADER */
header {
  width: 100%;
  height: 80px;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 2;
}
header .content {
  border-radius: 0 0 30px 30px;
  padding: 0 38px !important;
  height: 100%;
}
header .content > div {
  height: 100%;
}
.logo-area{
  width: 150px;
}
header nav>ul>li {
 color: #E6D4B9;
 padding-left: 30px;
}
#menu-btn,
#smp-bk{
  display: none;
}
.firstview{
  width: 100%;
  position: relative;
}
.firstview img{
  width: 100%;
}
.veg-bk,
.catch-wrap{
 position: absolute;
 width: 100%;
 max-width: 1200px;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
}
.veg-bk{
  height: 100%;
}
.veg-bk > div{
  width: 80%;
  height: calc(100% - 16px);
  background-image: url('../img/mainv-vege-pc.png');
  background-size: contain;
  background-repeat: repeat-x;
}
.veg-bk img{
  height: calc(100% - 10px);
}
.catch{
  font-size: 1.8vw;
  padding: 0 40% 0 32px;
  font-size: 16px;
}
.catch p{
  font-size: 23px;
}
.catch p.main-copy{
  font-size: 41px;
  line-height: 1.7;
}
.sp-break{
  display: none;
}
@media (max-width:1600px){
  .veg-bk > div{
    width: 60%;
  }
}
@media (max-width:1200px){
  .firstview{
    margin-top: 50px;
  }
  .catch p{
    font-size: 18px;
  }
  .catch p.main-copy{
    font-size: 29px;
  }
  .veg-bk > div{
    height: calc(100% - 30px);
  }
}
@media (max-width:768px){
  header.content {
    padding: 0 38px;
  }
  .sp-break{
    display: block;
  }
  #menu-btn,
  #smp-bk{
    display: block;
  }
  header nav{
    display: none;
    position: fixed;
    top: 0;
    left:0;
    width: 100%;
    padding: 80px 16px 0;
  }
  header nav.open{
    display: flex;
    flex-direction: column;
  }
  header nav.open > ul{
    flex-direction: column;
    margin-top: 30px;
  }
  header nav.open > ul li{
    padding-left: 0;
    padding: 16px 0;
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    color: #3A220D;
    text-align: center;
  }
  #menu-btn{
    height: 100%;
    padding: 8px 0;
    cursor: pointer;
    z-index: 10;
  }
  .menu-btn-wrap {
    width: 100%;
    height: 100%;
  }
  .hamberger{
    width: 30px;
    height: 100%;
    margin-left: 16px;
    position: relative;
  }
  .hamberger span{
    width: 100%;
    height: 3px;
    background-color: #E6D4B9;
    display: block;
    position: absolute;
    transition: .3s all;
  }
  .hamberger span:first-child{
    top: calc(50% + 10px);
  }
  .hamberger span:nth-child(2){
    top: 50%;
  }
  .hamberger span:last-child{
    top: calc(50% - 10px);
  }
  #menu-btn.open .hamberger span{
    top: 50%;
    opacity: 0;
  }
  #menu-btn.open .hamberger span:first-child{
    rotate: -45deg;
    opacity: 1;
  }
  .hamberger span.open:nth-child(2){
    right: -100vw;
  }
  #menu-btn.open .hamberger span:last-child{
    rotate: 45deg;
    opacity: 1;
  }
  #smp-bk{
    position: fixed;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: none;
  }
  #smp-bk.open{
    display: block;
    animation: fadein .5s ease;
  }
  @keyframes fadein {
    0%{
      opacity: 0;
    }
    100%{
      opacity: 1;
    }
  }
  .catch {
    padding: 0 30% 0 16px;
  }
  .catch p{
    font-size: 16px;
  }
  .catch p.main-copy{
    font-size: 22px;
  }
}


/* FOOTER */
footer {
  border-top: 1px solid #ADADAD;
}
footer nav ul {
 gap: 35px;
 font-size: 18px;
}
.footer-addressbox {
 gap:35px;
}
.footer-logo {
 text-align: center;
}
.place-title {
 font-weight: bold;
 border-bottom: solid 1px #ADADAD;
}
@media (max-width:768px){
  footer nav ul,
  footer .footer-addressbox{
    flex-direction: column;
    align-items: center;
  }
  footer .footer-addressbox > div{
    width: 100%;
  }
  footer .footer-addressbox > div:first-child{
    margin-top: 24px;
  }
  .footer-logo {
    max-width: 400px;
  }
}


/* TOP PAGE */
.topview{
  position: relative;
  margin-top: -80px;
  padding: 0 16px;
}
.topview > div{
  border-radius: 30px;
  padding: 30px;
}
.topview .imgs{
  gap: 16px;
}
.jigyou{
  height: 320px;
  border-radius: 30px;
}
.jigyou h2{
  border-bottom: 4px solid #3A220D;
  display: inline-block;
}
.eyecatch{
  width: 45%;
}
.jigyou > .jigyou-content{
  width: 40%;
  height: 100%;
  margin: 0 auto;
}
.jigyou.img-right{
  flex-direction: row-reverse;
}
.jigyou.img-right img{
  max-height: 440px;
  margin-bottom: 53px;
}
.jigyou-img{
  width: 80%;
  gap: 30px;
  margin-left: 20%;
  justify-content: flex-end;
}
.jigyou__fisrt .jigyou-img{
  margin-top: 80px;
}
.jigyou__fisrt .eyecatch img{
  border-radius: 30px 0 0 0;
}
.jigyou__second{
  margin-top: 120px;
}
#point-list{
  position: relative;
}
#point-list > .bk-green{
  position: absolute;
  top: 50%;
  bottom: 0;
  width: 100%;
  height: 85%;
  transform: translate(0%, -50%);
  z-index: -1;
}
#point-list > .bk-green div{
  background: url('../img/mainv-vege-pc.png');
  background-repeat: repeat;
  opacity: .3;
  width: 100%;
  height: 100%;
}
.list-wrap{
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.list-wrap li{
  border-radius: 16px;
  width: calc(50% - 45px);
}
.list-wrap li:nth-child(1),
.list-wrap li:nth-child(3){
  margin-right: 90px;
}
.list-wrap li:nth-child(3){
  margin-top: 50px;
}
.list-wrap li:nth-child(2),
.list-wrap li:nth-child(4){
  margin-top: 100px;
}
.list-wrap li h3,
.list-wrap li p{
  padding: 24px;
}
.list-wrap li div>div{
  width: 100%;
  max-height: 360px;
  overflow: hidden;
}
#reasons h4{
  border-top: 1px solid #ADADAD;
  padding-top: 4px;
}
#reasons li > div:first-child{
  width: 60%;
}
#reasons li > div p{
  width: 80%;
}
/* #reasons li.flex-reverse h4, */
#reasons li.flex-reverse h4{
  padding-left: 20%;
}
#reasons li.flex-reverse .numbers.num2,
#reasons li.flex-reverse > div p{
  margin-left: 20%;
}

.numbers{
  background: url('../img/numbers1.svg');
  background-repeat: no-repeat;
  background-size: cover;
  width: 40px;
  height: 25px;
}
.numbers.num1{
  background-position: 0;
}
.numbers.num2{
  background-position: -40px;
}
.numbers.num3{
  background-position: -86px;
}
@media(max-width:1200px){
  .jigyou-img{
    width: 100%;
    margin-left: 0;
  }

}
@media(max-width:768px){
  .topview{
    margin-top: -15vw;
  }
  .topview > div {
    border-radius: 16px;
    padding: 16px;
  }
  .topview .imgs {
    gap: 8px;
    margin-top: 16px;
  }
  .jigyou{
    flex-direction: column;
    height: auto;
    padding-bottom: 30px;
  }
  .jigyou.img-right {
    flex-direction: column;
    align-items: flex-end;
  }
  .jigyou.img-right img {
    max-height: unset;
    margin-bottom: 0;
  }
  .jigyou > .jigyou-content {
    width: calc(100% - 60px);
  }
  .eyecatch {
    width: 60%;
  }
  .jigyou-img{
    flex-direction: column;
    gap: 16px;
  }
  .jigyou__fisrt .jigyou-img {
    margin-top: 24px;
  }
  .list-wrap li {
    margin: 24px 0 0 0 !important;
  }
  .list-wrap li {
    width: 100%;
  }
  #reasons li{
    flex-direction: column;
  }
  #reasons li > div:first-child,
  #reasons li > div p  {
    width: 100%;
  }
  #reasons li > div p  {
    margin: 16px 0;
  }
  #reasons li.flex-reverse .numbers.num2, #reasons li.flex-reverse > div p{
    margin-left: 0;
  }
  #reasons li.flex-reverse h4{
    padding-left: 0;
  }
}


/* ABOUT PAGE */
.about-page th{
  font-weight: normal;
  min-width: 10rem;
}



/* CONTACT PAGE */
form ul li{
  padding: 0px 16px;
}
form .submit-btn{
  text-align: right;
}
@media (max-width:768px){
  form ul li{
    padding: 0px;
  }
}