@charset "UTF-8";

/* reset.css
---------------------------------------------------------- */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video,input {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  font-family: "游ゴシック Light", "Yu Gothic Light", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.en * {
  font-family: "Noto Sans", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
}

.kr * {
  font-family: "Noto Sans KR", sans-serif;
  font-optical-sizing: auto;
}

.cn * {
  font-family: "Noto Sans SC", sans-serif;
  font-optical-sizing: auto;
}

/* HTML5 display-role reset for older browsers */
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
  display: block;
}

body {
  line-height: 1;
}

ol,ul,li {
  list-style: none;
}

blockquote,q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --main: #D6CFD0;
  --sub: #776163;
}


/* 基本設定
---------------------------------------------------------- */
html {
  height: 100%;
  min-height: 100%;
  font-size: 62.5%;
}

html,body {
  width: 100%;
  height: 100%;
}

h1,h2,h3,h4,h5,h6 {
  font-size: 100%;
  font-weight: normal;
}

body {
  position: relative;
  height: 100%;
  color: #000;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  *font-size: small;
  *font: x-small;
}

img {
  width: 100%;
  height: auto;
  border: 0;
  vertical-align: top;
}

strong {
  font-weight: bold;
}

a {
  text-decoration: none;
  transition: .7s;
  color: #000;
}

a:hover {
  opacity: .7;
}

p {
  color: #000;
  font-weight: 200;
}

.sp_view {
  display: none !important;
}


@media (max-width: 768px) {
  .sp_view {
    display: inherit !important;
  }

  .pc_view {
    display: none !important;
  }
}


/* header
---------------------------------------------------------- */
header {
  position: relative;
  width: 100%;
  height: 100vh;
}

header nav {
  position: absolute;
  top:30px;
  right: 20px;
  z-index: 10;
}

header nav ul {
  column-gap: 20px;
  font-size: 1.5rem;
}

header .logo {
  position: absolute;
  row-gap: 20px;
  width: 100%;
  height: 100%;
  z-index: 10;
}

header .logo img {
  width: 47%;
  height: auto;
}

header .logo h1 {
  font-size: 0;
  /*
  color: #fff;
  font-weight: 400;
  font-family: "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", sans-serif;
  */
}


@media (max-width: 768px) {
  header nav ul {
    flex-direction: row !important;
  }
  header .logo img {
    width: 100%;
  }

  header .logo h1 {
    /* font-size: 1.1rem; */
  }
}


/* main
---------------------------------------------------------- */
section {
  min-height: 100vh;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.w78 {
  width: 78vw;
  margin: 0 auto;
}


.bg {
  background: var(--main);
}

.txt_en {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-style: normal;
}

.ico_ig {
  width: 30px;
  height: auto;
}

main section p {
  margin-bottom: 2em;
  font-size: 1.6rem;
  letter-spacing: .1em;
  line-height: 2;
}

main section p:last-of-type {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  section {
    min-height: inherit;
  }
  .w78 {
    width: calc(100% - 50px);
  }
  main section p {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
  }
  .sp_w100 {
    width: 100%;
  }
}

/*----------------------------------------
  button
----------------------------------------*/
.btn01 {
  padding: 1em 5em;
  border: #000 solid 1px;
  background: #000;
  color: #fff;
  font-size: 1.3rem;
}

.btn02 {
  padding: 1em 5em;
  background: var(--sub);
  border: var(--sub) solid 2px;
  color: #fff;
  font-size: 1.5rem;
}

.btn02:hover {
  background: transparent;
  color: var(--sub);
  opacity: 1;
}

.btn03 {
  position: relative;
  display: inline-block;
  padding: 20px 90px 20px 20px;
  border-bottom: #000 solid 1px;
  background: url(../img/blank.svg) no-repeat 2px center;
  background-size: 8px;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 1.25;
  transition: .5s;
}

.btn03:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  display: block;
  width: 31px;
  height: 5px;
  margin-top: -2.5px;
  background: url(../img/arw.svg) no-repeat;
  background-size: cover;
  transition: .5s;
}

.btn03:hover {
  color: #888;
}

.btn03:hover:after {
  right: -5px;
}

/*----------------------------------------
  title
----------------------------------------*/
.ttl01 {
  font-size: 3.2rem;
  letter-spacing: 0.1em;
}

.ttl01 ._sub {
  display: block;
  margin-bottom: 25px;
  color: var(--sub);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  line-height: 1;
}

.ttl02 {
  display: inline-block;
  margin-bottom: 1em;
  padding: 0 5px;
  border-bottom: #000 solid 2px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.8rem;
}


.en .ttl02 {
  font-family: "Noto Sans", sans-serif;
}
.kr .ttl02 {
  font-family: "Noto Sans KR", sans-serif;
}
.cn .ttl02 {
  font-family: "Noto Sans SC", sans-serif;
}

@media (max-width: 768px) {

  h2 {
    font-size: 2.6rem;
  }

  h2 span {
    margin-bottom: 15px;
    font-size: 1.2rem;
  }

  h2 br {
    display: block;
  }
}

/*----------------------------------------
  dl
----------------------------------------*/
.dl {
  align-items: stretch !important;
  margin: 30px 0 50px;
  border-top: #000 solid 1px;
  font-size: 1.6rem;
}
.dl dt,
.dl dd {
  display: flex;
  align-items: center;
  padding: 12px;
  border-bottom: #000 solid 1px;
  box-sizing: border-box;
}
.dl dt {
  width: 120px;
}
.dl dd {
  width: calc(100% - 120px);
}

@media (max-width: 768px) {
  .dl {
    margin: 20px 0 30px;
    flex-direction: row !important;
    font-size: 1.3rem;
  }
}

/*----------------------------------------
  stay
----------------------------------------*/
.content_stay {
  padding: 6% 0;
}

.content_stay figure img {
  margin: 0 0 15px;
}

.content_stay .txt {
  padding: 0 6%;
}

.content_stay .ttl01 {
  margin-bottom: 30px;
  letter-spacing: 0.05em;
}


@media (max-width: 768px) {
  .content_stay {
    padding: 25px 0 40px !important;
  }
  .content_stay .flex {
    padding: 0 25px;
  }
  .content_stay .img {
    margin-bottom: 25px;
  }
}


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

/*----------------------------------------
  faq
----------------------------------------*/
.content_faq {
  min-height: inherit;
}

.content_faq .bg {
  min-height: inherit;
  padding: 150px 0;
}

.faq_dl dt {
  margin-bottom: .5em;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.8rem;
}

.en .faq_dl dt {
  font-family: "Noto Sans", sans-serif;
}

.kr .faq_dl dt {
  font-family: "Noto Sans KR", sans-serif;
}

.cn .faq_dl dt {
  font-family: "Noto Sans SC", sans-serif;
}

.faq_dl dt::before {
  counter-increment: number 1;
  content: "Q" counter(number);
  margin-right: 0.5em;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-style: normal;
}

.faq_dl dd {
  margin-bottom: 2em;
  font-size: 1.6rem;
  line-height: 2;
}

@media (max-width: 768px) {
  .content_faq .bg {
    padding: 100px 25px;
  }

  .faq_dl dt {
    font-size: 1.6rem;
  }

  .faq_dl dd {
    line-height: 1.75;
    font-size: 1.4rem;
  }
}
/*----------------------------------------
  info
----------------------------------------*/
.content_info .txt {
  width: 50%;
}

.content_info .logo img {
  width: 26%;
  margin-bottom: 60px;
}

.content_info address {
  font-size: 1.6rem;
}

.info_dl {
  display: flex;
  flex-wrap: wrap;
  width: 65%;
  margin: 35px auto 0;
  text-align: left;
}
.info_dl dt {
  width: 72px;
  padding-bottom: 25px;
  font-family: 'Poppins', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.en .info_dl dt {
  font-family: "Noto Sans", sans-serif;
}
.kr .info_dl dt {
  font-family: 'Poppins', "Noto Sans KR", sans-serif;
}
.cn .info_dl dt {
  font-family: 'Poppins', "Noto Sans SC", sans-serif;
}

.info_dl dd {
  width: calc(100% - 72px);
  padding: 0 0 25px 50px;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  box-sizing: border-box;
}

.content_info .link_ig img {
  width: 30px;
}

.content_info .img {
  width: 50%;
}
.content_info .img .map {
  aspect-ratio: 1.5 / 1;
  width: 100%;
  height: auto;
}

.content_info .access {
  margin: 30px 0;
}
.content_info .access img {
  max-width: 100%;
  width: auto;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .content_info {
    flex-direction: column;
    padding: 50px 25px;
  }
  .content_info .txt {
    width: 100%;
    margin-bottom: 40px;
  }

  .content_info .logo img {
    margin-bottom: 30px;
  }
  .content_info .img {
    width: 100%;
  }
  .content_info .map {
    width: 100%;
    height: 45vh;
  }

  .content_info address {
    font-size: 1.3rem;
  }

  .content_info dl {
    width: 100%;
    margin: 40px auto 0;
    font-size: 1.4rem;
  }
  .info_dl dt {
    padding-bottom: 15px;
  }
  .info_dl dd {
    padding: 0 0 15px 15px;
  }
  .content_info .link_area {
    margin-top: 20px;
    text-align: center;
  }
  
  .content_info .btn01 {
    display: block;
    flex: 1;
  }
  .content_info .link_ig {
    display: inline-block;
  }

  .content_info .access figure {
    width: 100%;
  }
}


/*----------------------------------------
  contact
----------------------------------------*/
.content_contact {
  min-height: inherit;
  padding: 150px 0;
}

@media (max-width: 768px) {
  .content_contact {
    padding: 100px 0;
  }
}

/*----------------------------------------
  produce
----------------------------------------*/
.content_produce .inr {
  width: 53vw;
  margin: 0 auto;
  padding: 155px 0 90px;
}

.content_produce .link {
  padding: 20px 50px 20px 20px;
  font-size: 1.4rem;
}

.content_produce ul {
  display: flex;
  gap: 20px;
  margin: 80px 0 50px;
}
.content_produce ul li {
  position: relative;
  width: 25vw;
  padding-bottom: 75px;
  background: #fff;
  box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.075em;
}
.content_produce ul li h4 {
  margin: 30px 20px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
}
.content_produce ul li h4 span {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
}
.content_produce ul li p {
  margin: 0 20px 30px;
  font-size: 1.4rem;
}
.content_produce ul li a {
  position: absolute;
  bottom: 0;
  margin: 0 20px 35px;
}
.content_produce ul li p a {
  position: inherit;
  margin: 0;
  padding: 2px;
  letter-spacing: 0.025em;
  background: none;
  font-size: 1.4rem;
}

@media (max-width: 768px) {
  .content_produce .inr {
    width: calc(100% - 50px);
    padding: 50px 0;
  }

  .content_produce h2 {
    margin-bottom: 25px;
  }

  .content_produce .link {
    padding: 20px 90px 20px 20px;
  }

  .content_produce .link span br {
    display: block;
  }

  .content_produce ul {
    flex-direction: column;
    align-items: flex-start;
  }
  .content_produce ul li {
    width: 100%;
    padding: 0;
    margin-bottom: 30px;
  }
  .content_produce ul li h4 {
    margin: 20px 15px 15px;
    font-size: 1.5rem;
  }
  .content_produce ul li h4 span {
    font-size: 1.5rem;
  }
  .content_produce ul li p {
    margin: 0 15px;
  }
  .content_produce ul li a {
    position: relative;
    margin: 0 20px 30px;
  }
}

footer {
  position: relative;
}

footer .pagetop,
.en footer a,
.kr footer a,
.cn footer a {
  position: absolute;
  right: 11vw;
  top: -30px;
  display: block;
  padding: 10px;
  width: 8.5px;
  height: 132px;
  transition: .5s;
}

footer .pagetop:hover,
.en footer a:hover,
.kr footer a:hover,
.cn footer a:hover {
  top: -40px;
}
footer p {
  padding: 70px 0;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
}

/*
---------------------------------------------------------- */
.align_c {text-align: center;}
.align_r {text-align: right;}

@media (max-width: 768px) {
  .sp_align_l { text-align: left;}
}

.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.jc-c {justify-content: center;}
.jc-fs {justify-content: flex-start;}
.jc-fe {justify-content: flex-end;}
.jc-se {justify-content: space-evenly;}
.ai-fs {align-items: flex-start;}
.ai-fe {align-items: flex-end;}
.ai-s {align-items: stretch;}
.fd-c {flex-direction: column;}
.fd-cr {flex-direction: column-reverse;}
.nowrap {flex-wrap: nowrap;}

@media (max-width: 768px) {
  .sp_block {
    display: block;
  }
  .flex {
    flex-direction: column;
  }
  .sp_fd-cr {flex-direction: column-reverse;}
  .sp_jc-c {justify-content: center;}
}


.font_b {font-weight: bold;}
.font10 {font-size: 1.0rem !important;}
.font11 {font-size: 1.1rem !important;}
.font14 {font-size: 1.4rem !important;}
.font15 {font-size: 1.6rem !important;}
.font16 {font-size: 1.6rem !important;}
.font17 {font-size: 1.7rem !important;}
.font18 {font-size: 1.8rem !important;}
.font19 {font-size: 1.9rem !important;}
.font20 {font-size: 2.0rem !important;}
.font21 {font-size: 2.1rem !important;}
.font22 {font-size: 2.2rem !important;}
.font23 {font-size: 2.3rem !important;}
.font24 {font-size: 2.4rem !important;}
.font25 {font-size: 2.5rem !important;}
.font26 {font-size: 2.6rem !important;}

.mb0 {margin-bottom: 0px !important;}
.mb20 {margin-bottom: 20px !important;}
.mb50 {margin-bottom: 50px !important;}
.mb80 {margin-bottom: 80px !important;}

.mt40 { margin-top: 40px !important;}
.mt50 { margin-top: 50px !important;}

@media (max-width: 768px) {
  .mb20 { margin-bottom: 10px !important;}
  .mb50 { margin-bottom: 25px !important;}
  .mb80 { margin-bottom: 40px !important;}

  .mt40 { margin-top: 20px !important;}
}