@charset "UTF-8";
/*	cmn-color
------------------------------------ */
/*	transition,hover
------------------------------------ */
/*	media-screen
------------------------------------ */
/*	font
------------------------------------ */
@font-face {
  font-family: "TenorSans-Regular";
  src: url("../fonts/TenorSans-Regular.ttf");
  font-display: swap;
}
@font-face {
  font-family: "ShipporiMinchoB1-Medium";
  src: url("../fonts/ShipporiMinchoB1-Medium.ttf");
  font-display: swap;
}
@font-face {
  font-family: "ShipporiMinchoB1-Bold";
  src: url("../fonts/ShipporiMinchoB1-Bold.ttf");
  font-display: swap;
}
@font-face {
  font-family: "NotoSerifCJKjp-Medium";
  src: url("../fonts/NotoSerifJP-Medium.ttf");
  font-display: swap;
}
@font-face {
  font-family: "NotoSerifCJKjp-Bold";
  src: url("../fonts/NotoSerifCJKjp-Bold.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "NotoSerifCJKjp-SemiBold";
  src: url("../fonts/NotoSerifJP-SemiBold.ttf");
  font-display: swap;
}
/*	layout
------------------------------------ */
/* animation
例）animation: fadedown .5s ease-in-out;
遅延）animation-delay: 0.5s;
最後の状態維持）animation-fill-mode: forwards;
------------------------------------ */
@keyframes fadedown {
  0% {
    transform: translateY(-10px);
    opacity: 0;
  }
  50% {
    transform: translateY(-5px);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeup {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }
  50% {
    transform: translateY(5px);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes faderight {
  0% {
    transform: translateX(10px);
    opacity: 0;
  }
  50% {
    transform: translateX(5px);
    opacity: 0.5;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes grad-fill {
  from {
    background-size: 0% 100%;
  }
  to {
    background-size: 100% 100%;
  }
}
@keyframes zoom {
  0% {
    transform: scale(0.95);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes floatY {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(var(--amp));
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes fadeInSlide {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInShadow {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInSlideSub {
  0% {
    opacity: 0;
    transform: translate(-20px, -50%);
  }
  100% {
    opacity: 1;
    transform: translate(0, -50%);
  }
}
/*	font-size  cmn
------------------------------------ */
/*	com parts  PC
------------------------------------ */
.sns-none {
  display: none !important;
}

.over {
  overflow: hidden;
}

.com-ib {
  display: inline-block;
}

.spxs-only {
  display: none;
}
@media screen and (max-width: 390px) {
  .spxs-only {
    display: inherit;
  }
}

.f26 {
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .f26 {
    font-size: 1.5rem;
  }
}

.pre {
  white-space: pre-line;
}

.nowrap {
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .nowrap {
    white-space: nowrap;
  }
}
.no-sb {
  margin: 50px auto 0;
}

.anchor-mp {
  margin: -90px auto 0;
  padding-top: 90px;
}

.com-txt-box p:nth-of-type(n+2) {
  margin: 42px 0 0;
}

.clamp1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.clamp2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.clamp3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

@media screen and (min-width: 768px) {
  .com-pd {
    padding: 160px 0;
  }
}

/*  共通パーツ
------------------------------------ */
.com-box {
  padding: 50px;
  border: 1px solid #c9bf97;
}

.news-post {
  width: 100%;
}
.news-post-item {
  width: 100%;
  max-width: 250px;
}
@media screen and (min-width: 768px) {
  .news-post-item:not(:nth-of-type(3n-2)) {
    margin-left: 40px;
  }
  .news-post-item:nth-of-type(n+4) {
    margin-top: 40px;
  }
}
.news-post-link {
  display: block;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
@media screen and (min-width: 768px) {
  .news-post-link:hover img {
    width: 110%;
    height: 110%;
  }
}
.news-post-img {
  width: 100%;
  height: 0;
  padding-top: 100%;
  overflow: hidden;
  position: relative;
}
.news-post-time {
  display: inline-block;
  margin-top: 20px;
  font-family: "TenorSans-Regular", sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .news-post-time {
    font-size: 1.5rem;
  }
}
.news-post-ttl {
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  font-family: "NotoSerifCJKjp-Bold", serif;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: #fff;
  line-height: 2.5;
}
@media screen and (max-width: 768px) {
  .news-post-ttl {
    font-size: 1.5rem;
  }
}
.news-post-tag {
  display: flex;
  margin: 6px auto 0;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.news-post-tag li {
  margin: 10px 0 0 10px;
  padding: 0 8px;
  background-color: #5b7548;
  font-family: "NotoSerifCJKjp-Bold", serif;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  line-height: 1.3;
  color: #fff;
}

.com-tag {
  display: flex;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto 0;
  flex-wrap: wrap;
}
.com-tag-item {
  width: 100%;
  max-width: 320px;
}
@media screen and (min-width: 768px) {
  .com-tag-item:nth-of-type(n+4) {
    margin-top: 60px;
  }
  .com-tag-item:not(:nth-of-type(3n-2)) {
    margin-left: 60px;
  }
}
.com-tag-link {
  display: flex;
  width: 100%;
  max-width: none;
  height: auto;
  border: 1px solid #443d34;
  background: url(../img/course/arw.png) no-repeat calc(100% - 30px) center;
  padding: 25.5px 50px;
  font-family: "NotoSerifCJKjp-Medium", serif;
  font-size: 1.7rem;
  text-align: center;
  letter-spacing: 0.08em;
  color: #443d34;
  align-items: center;
  justify-content: center;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .com-tag-link {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .com-tag-link:hover {
    background-position: calc(100% - 30px) 55%;
  }
}

/* =========================================

  main layout  all

========================================= */
/* top-concept  PC
------------------------------------ */
#top-concept .concept-bg {
  background: url(../img/top/waku-grp.png) no-repeat center bottom/100% 100%;
  position: relative;
}
#top-concept .concept-slider {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  flex-shrink: 0;
}
#top-concept .concept-slider-txt {
  display: inline-block;
  font-family: "TenorSans-Regular", sans-serif;
  font-size: 15rem;
  letter-spacing: 0;
  color: #a99982;
  line-height: 1.5;
  animation: marquee 40s linear infinite;
}
@media screen and (max-width: 768px) {
  #top-concept .concept-slider-txt {
    font-size: 7.5rem;
  }
}
#top-concept .concept-slider-txt span {
  display: inline-block;
  /* 余白をゼロにする */
  margin: 0;
  padding: 0;
}
#top-concept .concept-con {
  width: 100%;
}
@media screen and (min-width: 768px) {
  #top-concept .concept-con {
    max-width: 445px;
    margin-top: -40px;
    margin-left: auto;
  }
}
#top-concept .concept-ttl {
  color: #fff;
}
#top-concept .concept-txt-box {
  margin-top: 65px;
}
#top-concept .concept-txt-box p {
  font-size: 2rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #top-concept .concept-txt-box p {
    font-size: 1.5rem;
  }
}
#top-concept .concept-btn {
  margin-top: 65px;
  --amp: #c2b997;
}
#top-concept .concept-img02 {
  margin-top: -219px;
}
#top-concept .concept-img03 {
  margin: 63px 70px 0 auto;
  text-align: right;
}

/* top-bnr  PC
------------------------------------ */
#top-bnr .bnr-list-item {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
}
#top-bnr .bnr-list-img {
  display: block;
  width: 100%;
  height: 730px;
  position: relative;
}
#top-bnr .bnr-list-img source, #top-bnr .bnr-list-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
#top-bnr .bnr-list-con {
  width: 39.02%;
  height: 100%;
  padding-top: 160px;
  background: url(../img/top/bnr-box-bg.png) no-repeat center bottom/cover;
  position: absolute;
  top: 0;
  right: 0;
}
#top-bnr .bnr-list-txt {
  width: 100%;
  max-width: 360px;
  margin: 70px auto 0;
}
#top-bnr .bnr-list-btn {
  --amp: #a99982;
}
#top-bnr .bnr-list-btn-wrap {
  margin: 50px auto 0;
  text-align: center;
}

/* top-loka  PC
------------------------------------ */
#top-loka .loka-bg {
  background: url(../img/top/loka-bg.png) no-repeat center top/cover;
}
#top-loka .loka-inner {
  text-align: center;
}
#top-loka .loka-ttl {
  font-family: "TenorSans-Regular", sans-serif;
  font-size: 9rem;
  letter-spacing: 0;
  color: #5b7548;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #top-loka .loka-ttl {
    font-size: 4.5rem;
  }
}
#top-loka .loka-ttl-ja {
  display: inline-block;
  margin: 60px auto 0;
  padding: 5px 45px 0;
  background: url(../img/top/loka-l.png) no-repeat left top, url(../img/top/loka-r.png) no-repeat calc(100% - 10px) top;
  text-align: center;
  font-family: "ShipporiMinchoB1-Medium", serif;
  font-size: 3rem;
  letter-spacing: 0.08em;
  color: #443d34;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #top-loka .loka-ttl-ja {
    font-size: 1.5rem;
  }
}
#top-loka .loka-txt {
  margin: 45px auto 0;
  color: #443d34;
}
#top-loka .loka-btn {
  margin: 50px auto 0;
}

/* top-news  PC
------------------------------------ */
#top-news .news-bg {
  background: url(../img/pattern/pattern03.png);
}
#top-news .news-ttl {
  text-align: left;
}
#top-news .news-ttl-en {
  font-size: 8rem;
}
@media screen and (max-width: 768px) {
  #top-news .news-ttl-en {
    font-size: 4rem;
  }
}
#top-news .news-btn {
  margin-top: 66px;
}
#top-news .news-post {
  width: 100%;
  max-width: 834px;
}

/* top-access  PC
------------------------------------ */
#top-access .access-bg {
  background: url(../img/pattern/pattern02.png);
}
#top-access .access-btn {
  margin-top: 64px;
  --amp: #c2b997;
}
#top-access .access-ttl {
  text-align: left;
}
#top-access .access-ttl-en {
  font-size: 8rem;
}
@media screen and (max-width: 768px) {
  #top-access .access-ttl-en {
    font-size: 4rem;
  }
}
#top-access .access-right {
  width: 100%;
  max-width: 830px;
}
#top-access .access-map-txt {
  margin-top: 18px;
  color: #fff;
  font-family: "NotoSerifCJKjp-Medium", serif;
  font-size: 1.7rem;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #top-access .access-map-txt {
    font-size: 1.5rem;
  }
}

/* top-calender  PC
------------------------------------ */
#top-calender .calender-bg {
  background: url(../img/pattern/pattern01.png);
}
#top-calender .calender-ttl {
  text-align: left;
}
#top-calender .calender-ttl-en {
  color: #5b7548;
  font-size: 8rem;
}
@media screen and (max-width: 768px) {
  #top-calender .calender-ttl-en {
    font-size: 4rem;
  }
}
#top-calender .calender-ttl-ja {
  color: #443d34;
}
#top-calender .calender-dl {
  max-width: 270px;
  margin-top: 75px;
  padding-left: 24px;
  border-left: 1px solid #716556;
}
#top-calender .calender-dl dt {
  color: #716556;
  font-family: "TenorSans-Regular", sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #top-calender .calender-dl dt {
    font-size: 1.5rem;
  }
}
#top-calender .calender-dl dd {
  margin-top: 15px;
  font-family: "NotoSerifCJKjp-SemiBold", serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: #716556;
}
@media screen and (max-width: 768px) {
  #top-calender .calender-dl dd {
    font-size: 1.5rem;
  }
}
#top-calender .calender-right {
  width: 100%;
  max-width: 830px;
}
@media screen and (min-width: 768px) {
  #top-calender .calender-right {
    width: 65%;
  }
}
#top-calender .calender-iframe {
  width: 100%;
  height: 520px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #959595;
  font-family: "NotoSerifCJKjp-Medium", serif;
  font-size: 1.7rem;
  letter-spacing: 0.1em;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #top-calender .calender-iframe {
    font-size: 1.5rem;
  }
}
#top-calender .calender-iframe iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
#top-calender .calender-link {
  margin-top: 18px;
  color: #716556;
  font-family: "NotoSerifCJKjp-Medium", serif;
  font-size: 1.7rem;
  letter-spacing: 0.08em;
  line-height: 1.6;
  position: relative;
}
@media screen and (max-width: 768px) {
  #top-calender .calender-link {
    font-size: 1.5rem;
  }
}
#top-calender .calender-link::after {
  content: "";
  width: 100%;
  height: 1px;
  margin: auto;
  background: #5b7548;
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: all 0.4s ease;
}
#top-calender .calender-link:hover {
  opacity: 1;
}
#top-calender .calender-link:hover::after {
  transform: scale(1, 1);
}

/* =========================================

  sub layout  all

========================================= */
.sub main {
  background: url(../img/pattern/pattern01.png);
}

/* concept  PC
------------------------------------ */
#concept .concetto-ttl {
  color: #546a3f;
}
#concept .concetto-txt-box {
  margin-top: 65px;
}
#concept .concetto-txt-box p {
  color: #443d34;
}
#concept .concetto-img {
  margin-left: 70px;
  margin-bottom: 50px;
}
#concept .ingred {
  background: url(../img/concept/ingredienti-map.png) no-repeat calc(50% + 494px) top, url(../img/pattern/pattern02.png);
}
#concept .ingred-ttl {
  text-align: left;
}
#concept .ingred-ttl-sub {
  display: inline-block;
  margin-top: 63px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  font-family: "ShipporiMinchoB1-Medium", serif;
  font-size: 3rem;
  letter-spacing: 0.08em;
  color: #fff;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  #concept .ingred-ttl-sub {
    font-size: 1.5rem;
  }
}
#concept .ingred-txt-box {
  margin: 39px auto 0;
}
#concept .ingred-box {
  max-width: 1080px;
  margin: 65px auto 0;
  padding: 50px;
  border: 1px solid #c9bf97;
}
#concept .ingred-box-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
#concept .ingred-box-item:nth-of-type(n+2) {
  margin: 40px auto 0;
  flex-direction: row-reverse;
}
@media screen and (min-width: 768px) {
  #concept .ingred-box-item:nth-of-type(n+2) .ingred-box-ttl {
    padding-left: 0;
  }
  #concept .ingred-box-item:nth-of-type(n+2) .ingred-box-txt {
    padding-left: 0;
    padding-right: 30px;
  }
}
@media screen and (min-width: 768px) {
  #concept .ingred-box-img {
    flex-shrink: 0;
  }
}
#concept .ingred-box-txt {
  padding: 23px 0 0 38px;
}
#concept .archi-en {
  color: #5b7548;
}
#concept .archi-ja {
  color: #443d34;
}
#concept .archi-ttl {
  text-align: left;
}
#concept .archi-flx {
  margin: 65px auto 0;
}
#concept .archi-flx-txt {
  color: #443d34;
}
@media screen and (min-width: 768px) {
  #concept .archi-flx-txt {
    max-width: 540px;
  }
}
#concept .archi-box {
  margin: 65px auto 0;
  padding: 32px 40px;
  border: 1px solid #443d34;
}
#concept .archi-box-ttl {
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(68, 61, 52, 0.3);
  text-align: center;
  font-family: "ShipporiMinchoB1-Medium", serif;
  font-size: 3rem;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #concept .archi-box-ttl {
    font-size: 1.5rem;
  }
}
#concept .archi-box-txt {
  margin: 21px auto 0;
  color: #443d34;
}
#concept .archi-list {
  display: flex;
  margin: 60px auto 0;
  justify-content: space-between;
}
#concept .archi-list-item {
  max-width: 510px;
}
#concept .chef {
  background: url(../img/concept/chef-ico.png) no-repeat calc(50% + 500px) top, url(../img/pattern/pattern02.png);
}
#concept .chef-ttl {
  text-align: left;
}
#concept .chef-flx {
  margin: 70px auto 0;
}
@media screen and (min-width: 768px) {
  #concept .chef-con {
    width: 50%;
  }
}
#concept .chef-con-ttl {
  font-family: "NotoSerifCJKjp-Medium", serif;
  font-size: 1.7rem;
  letter-spacing: 0.08em;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #concept .chef-con-ttl {
    font-size: 1.5rem;
  }
}
#concept .chef-con-ttl, #concept .chef-con-ttl-sub, #concept .chef-con-txt-box {
  padding-left: 40px;
}
#concept .chef-con-ttl-sub {
  margin-top: 15px;
  padding-bottom: 15px;
}
#concept .chef-con-txt-box {
  margin-top: 25px;
}

/* course  PC
------------------------------------ */
#course .about-txt-box {
  text-align: center;
}
#course .about-txt-box p {
  color: #443d34;
}
#course .about-list {
  margin: 70px auto 0;
}
#course .com-course {
  background: url(../img/course/dinner-bg.png) no-repeat center top, url(../img/pattern/pattern02.png);
}
#course .com-course:nth-of-type(n+2) {
  border-top: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  #course .course-flx-con {
    max-width: 460px;
  }
}
#course .course-flx-img {
  margin-left: 80px;
}
#course .course-ttl {
  text-align: left;
}
#course .course-price {
  display: flex;
  margin-top: 63px;
}
#course .course-price li {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  font-family: "ShipporiMinchoB1-Medium", serif;
  font-size: 3rem;
  letter-spacing: 0.08em;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 768px) {
  #course .course-price li {
    font-size: 1.5rem;
  }
}
#course .course-price li.harf {
  width: 220px;
}
#course .course-price li:nth-of-type(2n) {
  margin-left: 18px;
}
#course .course-price li p {
  font-family: "NotoSerifCJKjp-Medium", serif;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: #fff;
  position: absolute;
  left: 0;
  bottom: -30px;
}
@media screen and (max-width: 768px) {
  #course .course-price li p {
    font-size: 1.5rem;
  }
}
#course .course-price span {
  font-family: "ShipporiMinchoB1-Medium", serif;
  font-size: 1.7rem;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  #course .course-price span {
    font-size: 1.5rem;
  }
}
#course .course-price-note {
  margin-top: 10px;
  font-family: "NotoSerifCJKjp-Medium", serif;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.875;
}
@media screen and (max-width: 768px) {
  #course .course-price-note {
    font-size: 1.5rem;
  }
}
#course .course-p-float {
  margin-bottom: 30px;
}
#course .course-txt {
  font-size: 1.7rem;
  letter-spacing: 0.08em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #course .course-txt {
    font-size: 1.5rem;
  }
}
#course .course-txt-box {
  margin-top: 22px;
}
#course .course-txt-box-mt {
  margin-top: 50px;
}
#course .course-img {
  display: flex;
  margin: 80px auto 0;
  justify-content: center;
}
#course .course-img li:nth-of-type(n+2) {
  margin-left: 56px;
}
#course .course-box {
  max-width: 1080px;
  margin: 80px auto 0;
  padding: 28px 40px;
  border: 1px solid #c9bf97;
}
#course .course-box-ttl {
  margin: 0 auto 20px;
}
#course .course-box-txt {
  padding-left: 18px;
  position: relative;
}
#course .course-box-txt span {
  position: absolute;
  left: 0;
  top: 0;
}

/* loka  PC
------------------------------------ */
#loka .about {
  background: url(../img/loka/about-bg.png) no-repeat center top;
}
#loka .about-ttl {
  color: #5b7548;
}
#loka .about-txt-box {
  margin: 50px auto 0;
  text-align: center;
}
#loka .about-txt-box p {
  color: #443d34;
}
#loka .products {
  background: url(../img/pattern/pattern02.png);
}
#loka .products-ttl {
  text-align: center;
  font-family: "ShipporiMinchoB1-Medium", serif;
  font-size: 4rem;
  letter-spacing: 0.08em;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #loka .products-ttl {
    font-size: 2rem;
  }
}
#loka .products-list {
  margin: 55px auto 0;
}
#loka .products-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
#loka .products-list-item::before, #loka .products-list-item::after {
  content: "";
  width: 3px;
  height: calc(100% - 40px);
  background: url(../img/pattern/pattern02.png);
  position: absolute;
  top: 20px;
}
#loka .products-list-item::before {
  left: -2px;
}
#loka .products-list-item::after {
  right: -2px;
}
#loka .products-list-item:nth-of-type(n+2) {
  margin: 60px auto 0;
}
@media screen and (min-width: 768px) {
  #loka .products-list-img {
    max-width: 440px;
    margin-right: 52px;
    flex-shrink: 0;
  }
}
#loka .products-list-ttl {
  display: flex;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  justify-content: space-between;
  align-items: flex-end;
}
#loka .products-list-ttl-ja {
  font-family: "ShipporiMinchoB1-Medium", serif;
  font-size: 3rem;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  #loka .products-list-ttl-ja {
    font-size: 1.5rem;
  }
}
#loka .products-list-ttl-en {
  font-family: "ShipporiMinchoB1-Medium", serif;
  font-size: 2.4rem;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  #loka .products-list-ttl-en {
    margin-left: 20px;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 768px) {
  #loka .products-list-ttl-en {
    font-size: 1.5rem;
  }
}
#loka .products-list-ttl-en .sm {
  font-size: 1.4rem;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  #loka .products-list-ttl-en .sm {
    font-size: 1.5rem;
  }
}
#loka .products-list-txt {
  margin-top: 30px;
  font-family: "NotoSerifCJKjp-Medium", serif;
  font-size: 1.7rem;
  letter-spacing: 0.08em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #loka .products-list-txt {
    font-size: 1.5rem;
  }
}
#loka .products-list-btn {
  margin-top: 18px;
  padding-bottom: 7px;
  padding-right: 32px;
  background: url(../img/loka/target.png) no-repeat right 10px;
  border-bottom: 1px solid #fff;
  font-family: "NotoSerifCJKjp-Medium", serif;
  font-size: 1.7rem;
  letter-spacing: 0.08em;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #loka .products-list-btn {
    font-size: 1.5rem;
  }
}
#loka .products-btn {
  display: flex;
  width: 100%;
  max-width: 480px;
  height: 80px;
  border: 1px solid #fff;
  margin: 80px auto 0;
  font-family: "NotoSerifCJKjp-Medium", serif;
  font-size: 1.7rem;
  letter-spacing: 0.08em;
  color: #fff;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #loka .products-btn {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  #loka .products-btn:hover {
    background-color: #c9bf97;
    opacity: 1;
  }
}
#loka .products-btn::after {
  content: "";
  width: 17px;
  height: 16px;
  margin-left: 14px;
  background: url(../img/loka/target.png) no-repeat center/contain;
}

/* access  PC
------------------------------------ */
#access .access-ttl {
  text-align: left;
}
#access .access-en {
  color: #5b7548;
}
#access .access-ja {
  color: #443d34;
}
#access .access-address {
  margin-top: 70px;
  font-family: "NotoSerifCJKjp-Medium", serif;
  font-size: 1.7rem;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  #access .access-address {
    font-size: 1.5rem;
  }
}
#access .access-dl {
  margin-top: 40px;
}
#access .access-dl div {
  padding-left: 20px;
  border-left: 1px solid #716556;
}
#access .access-dl div:nth-of-type(n+2) {
  margin-top: 30px;
}
#access .access-dl dt {
  font-family: "NotoSerifCJKjp-Medium", serif;
  font-size: 2.4rem;
  letter-spacing: 0.08em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #access .access-dl dt {
    font-size: 1.5rem;
  }
}
#access .access-dl dd {
  margin-top: 10px;
  font-family: "NotoSerifCJKjp-Medium", serif;
  font-size: 1.7rem;
  letter-spacing: 0.08em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #access .access-dl dd {
    font-size: 1.5rem;
  }
}
#access .access-right {
  width: 100%;
  max-width: 540px;
}
@media screen and (min-width: 768px) {
  #access .access-map {
    padding-top: 460px;
  }
}
#access .information {
  background: url(../img/pattern/pattern02.png);
}
#access .information-ttl {
  text-align: left;
}
#access .information-calender {
  margin-top: 68px;
}
@media screen and (min-width: 768px) {
  #access .information-table {
    max-width: 540px;
  }
}
#access .iframe {
  display: flex;
  width: 100%;
  height: 290px;
  background: #959595;
  font-family: "NotoSerifCJKjp-Medium", serif;
  font-size: 1.7rem;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  #access .iframe {
    width: 460px;
  }
}
@media screen and (max-width: 768px) {
  #access .iframe {
    font-size: 1.5rem;
  }
}
#access .link {
  margin-top: 10px;
  font-family: "NotoSerifCJKjp-Bold", serif;
  font-size: 1.7rem;
  letter-spacing: 0.08em;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #access .link {
    font-size: 1.5rem;
  }
}

/* contact  PC
------------------------------------ */
#contact .com-ttl02-en {
  color: #5b7548;
}
#contact .com-ttl02-ja {
  color: #443d34;
}

/* news  PC
------------------------------------ */
#news .news-post {
  width: 100%;
  margin: 40px auto 0;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  #news .news-post-item {
    margin: 0;
  }
  #news .news-post-item:not(:nth-of-type(4n-3)) {
    margin: 0 0 0 26px;
  }
  #news .news-post-item:nth-of-type(n+5) {
    margin-top: 26px;
  }
}
#news .news-post-link {
  border-color: #443d34;
}
#news .news-post-ttl, #news .news-post-time {
  color: #443d34;
}
#news .com-ttl04 {
  text-align: left;
  color: #5b7548;
  border-color: rgba(68, 61, 52, 0.3);
  line-height: 1.8;
}
#news .com-news-txt {
  color: #443d34;
}
#news .detail .news-post-flx {
  margin-top: 20px;
  padding: 0;
}
#news .detail .news-post-tag {
  margin: 6px 0 0;
}
#news .detail .news-post-time {
  font-size: 1.4rem;
}

/* privacy  PC
------------------------------------ */
#privacy .privacy-box-ttl {
  border-color: rgba(91, 117, 72, 0.3);
  color: #5b7548;
  padding-bottom: 3px;
}

/* e404  PC
------------------------------------ */
#e404 .com-txt {
  color: #443d34;
}/*# sourceMappingURL=all.css.map */