@charset "UTF-8";
/*================================================
 *  一般・共通設定
 ================================================*/

:root {
  --color-primary: #81c187;
  --color-dark: #191919;
  --color-orange: #e38e23;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.5rem;
  color: var(--color-dark);
  background-color: #fff;
  font-family: "Zen Kaku Gothic New", 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: .05em;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

.wrap {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.wide_wrap {
  max-width: 1200px;
  margin: 0 auto;
}

a {
  text-decoration: none;
}

a:hover {
  opacity: .8;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a.underline {
  text-decoration: underline;
}

p {
  margin: 0 0 0.5em 0;
  letter-spacing: 0.05em;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

img.blank {
  width: 12px;
  margin-left: 3px;
  vertical-align: super;
}

h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 30px;
}

h3 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 10px;
  border-bottom: 1px dotted;
  padding: 0 0 5px 10px;
}

@media screen and (max-width:768px) {
  html {
    font-size: 60%;
  }

  *,
  *:before,
  *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
  }

  .wrap {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .wide_wrap {
    max-width: 100%;
    margin: 0;
  }

  h2 {
    font-size: 2.4rem;
  }

}


/* ==================================================
  splash
====================================================*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #fff;
  display: flex;
}

#splash_logo {
  margin: auto;
  width: 140px;
}

@media screen and (max-width:768px) {
  #splash_logo {
    width: 80px;
  }
}

/* =======================================================
* header
* ======================================================= */
header h1 {
  position: fixed;
  top: 20px;
  left: 30px;
  z-index: 99;
  width: 400px;
}

header h1 img {
  width: 120px;
}


#g-nav {
  position: fixed;
  z-index: -1;
  opacity: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-primary);
  transition: all 0.3s;
}

#g-nav.panelactive {
  opacity: 1;
  z-index: 9;
}

#g-nav.panelactive #g-nav-list {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
}

#g-nav ul {
  display: none;
}

#g-nav.panelactive ul {
  display: block;
  width: 100%;
  margin: auto;
}

#g-nav li a {
  padding: 10px 0;
  display: block;
  color: #fff;
  text-align: center;
  font-size: 2.5rem;
}

#g-nav li a small {
  font-size: 1.5rem;
}

/* onlineshop */
#g-nav .onlineshop a {
  background: #fff;
  color: var(--color-primary);
  width: 300px;
  margin: 30px auto;
  font-size: 2.2rem;
  letter-spacing: .15em;
  border-radius: 5px;
}

#g-nav .onlineshop a span {
  display: block;
  font-size: 1.2rem;
  letter-spacing: .05em;
}

/* インスタ・LINE */
#g-nav p {
  display: inline-block;
  margin: 0 10px;
  font-size: 1.7rem;
}

#g-nav p a {
  color: #fff;
}

#g-nav p i {
  font-size: 2.2rem;
}

#g-nav .header_copylight {
  position: absolute;
  bottom: 40px;
  right: 40px;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.5);
}

/* メニューボタン */
.openbtn {
  position: fixed;
  z-index: 99;
  cursor: pointer;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  top: 25px;
  right: 25px;
  background: var(--color-primary);
  border: 2px solid #fff;
}

/*ボタン内側*/
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 27px;
  height: 2px;
  background: var(--color-primary);
  width: 40%;
}

.openbtn span:nth-of-type(1) {
  top: 23px;
}

.openbtn span:nth-of-type(2) {
  top: 31px;
}

.openbtn span:nth-of-type(3) {
  top: 38px;
}

.openbtn span:nth-of-type(3)::after {
  content: "MENU";
  position: absolute;
  top: -13px;
  left: -12px;
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: .2em;
  font-weight: bold;
}

.openbtn.active span:nth-of-type(1) {
  top: 30px;
  left: 23px;
  transform: translateY(6px) rotate(-45deg);
  width: 30px;
  background: #fff;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 41px;
  left: 23px;
  transform: translateY(-6px) rotate(45deg);
  width: 30px;
  background: #fff;
}

.openbtn.active span:nth-of-type(3)::after {
  content: none;
}

@media screen and (max-width:768px) {
  header h1 {
    left: 10px;
    width: 200px;
  }

  header h1 img {
    width: 60px;
  }

  #g-nav.panelactive ul {
    margin: 130px auto 0;
  }

  #g-nav li a {
    font-size: 1.8rem;
  }

  #g-nav .onlineshop a {
    width: 75%;
    font-size: 1.9rem;
  }

  #g-nav p {
    font-size: 1.5rem;
  }

  #g-nav .header_copylight {
    bottom: 20px;
    right: 20px;
    font-size: 10px;
  }

  /* ボタン */
  .openbtn {
    width: 55px;
    height: 55px;
    top: 15px;
    right: 15px
  }

  .openbtn span {
    left: 21px;
  }

  .openbtn span:nth-of-type(1) {
    top: 17px;
  }

  .openbtn span:nth-of-type(2) {
    top: 23px;
  }

  .openbtn span:nth-of-type(3) {
    top: 29px;
  }

  /* OPEN */
  .openbtn span:nth-of-type(3)::after {
    top: -12px;
    left: -12px;
    font-size: 10px;
  }

  .openbtn.active span:nth-of-type(1) {
    width: 20px;
    top: 18px;
    left: 17px;
  }

  .openbtn.active span:nth-of-type(3) {
    left: 17px;
    top: 30px;
    width: 20px;
  }
}

/*================================================
 *  section btn
 ================================================*/
section {
  padding-bottom: 8rem;
  position: relative;
}

.section {
  padding-top: 8rem;
}

/* ボタン */
.linkBtn {
  text-align: center;
  margin: 30px auto 0;
}

.linkBtn a {
  background: #fff;
  padding: 12px 90px;
  border-radius: 50px;
  border: 1px solid;
}

/* グリーンボタン */
.linkBtn.btn_bgreen a {
  border: 2px solid var(--color-primary);
  background: var(--color-primary);
  color: #fff;
}

.linkBtn.btn_bgreen a:hover {
  background: #fff;
  color: var(--color-primary);
  opacity: 1;
}

/* onlineShopボタン */
.onlineShop {
  margin-top: 30px;
}

.onlineShop a {
  display: inline-block;
  padding: 15px 90px;
  font-size: 2rem;
  border-radius: 5px;
  border: 2px solid #fff;
  color: #fff;
  background: var(--color-orange);
}

.onlineShop a span {
  font-size: 3rem;
  letter-spacing: .15em;
}

@media screen and (max-width:768px) {
  section {
    padding-bottom: 5rem;
  }

  .section {
    padding-top: 5rem;
  }

  .onlineShop a {
    display: block;
    width: 100%;
    padding: 15px 0;
    font-size: 1.3rem;
  }

  .onlineShop a span {
    font-size: 2.5rem;
  }

}

/*================================================
 *  main
 ================================================*/
.bg {
  position: relative;
}

.bg::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background: url(../images/bg_illust-pc.jpg) no-repeat center /cover;
}

#main {
  height: 100vh;
}

#main .main_ill {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.main_ttl {
  position: absolute;
  top: 17%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 6rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-align: center;
  line-height: 1.5;
  z-index: 2;
  width: 100%;
}

.main_ttl span {
  display: block;
  font-size: 3rem;
}

.main_ttl span.ja {
  font-size: 1.6rem;
}

@media screen and (max-width:768px) {
  .bg::before {
    background: url(../images/bg_llust-sp.jpg) no-repeat center/cover;
  }

  .main_ttl {
    font-size: 3.3rem;
    top: 120px;
  }

  .main_ttl span.ja {
    font-size: 1.2rem;
  }

}

/*================================================
 *  intro
 ================================================*/
#intro p {
  font-size: 1.8rem;
  line-height: 2;
}

@media screen and (max-width:768px) {
  #intro p {
    font-size: 1.6rem;
  }
}


/* =======================================================
* feature
* ======================================================= */
#feature ul {
  display: grid;
  gap: 15px;
  grid-template-columns: 1fr 1fr 1fr;
  font-size: 1.3rem;
  margin-bottom: 50px;

}

#feature ul li {
  background: rgba(255, 255, 255, 0.85);
  padding: 30px;
  box-sizing: border-box;
  border-radius: 5px;
}

#feature ul li img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

#feature ul li .credit {
  position: absolute;
  right: 3px;
  bottom: 0;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0;
}

@media screen and (max-width:768px) {
  #feature ul {
    grid-template-columns: 1fr;
  }
}


/*================================================
 *  news
 ================================================*/
#news dl {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.85);
  padding: 20px 50px;
  border-radius: 5px;
}

#news dl dt {
  width: 20%;
  margin-bottom: 10px;
}

#news dl dd {
  width: 80%;
  margin-bottom: 10px;
}

@media screen and (max-width:768px) {
  #news dl {
    padding: 10px 20px;
  }

  #news dl dt {
    width: 100%;
    border-bottom: none;
    margin-bottom: 0;
  }

  #news dl dd {
    width: 100%;
  }
}

/*================================================
 *  sub_main
 ================================================*/
#sub_main {
  height: 400px;
  display: flex;
  position: relative;
}

#sub_main .sub_ttl {
  margin: auto;
  font-size: 4.5rem;
  width: 100%;
  text-align: center;
  color: #fff;
}

#sub_main .sub_ttl.cl_dark {
  color: var(--color-dark);
}

#sub_main .sub_credit {
  position: absolute;
  right: 5px;
  bottom: 5px;
  font-size: 1rem;
  color: #fff;
}

@media screen and (max-width:768px) {
  #sub_main {
    height: 300px;
  }

  #sub_main .sub_ttl {
    font-size: 3rem;
  }
}

/*================================================
 *  footer
 ================================================*/
footer {
  padding: 3rem 0;
}

.footer_logo {
  width: 80px;
  margin-right: 30px;
}

.footer_menu li {
  display: inline-block;
  margin: 5px 7px;
  font-size: 1.4rem;
}

.copyright {
  text-align: right;
  font-size: 1.2rem;
  color: rgba(1, 1, 1, 0.6);
}

@media screen and (max-width:768px) {
  footer .flex {
    align-items: start;
  }

  .footer_logo {
    width: 60px;
  }

  .footer_menu li {
    display: block;
    margin: 10px 0px;
  }

  .copyright {
    margin: 30px 30px 0;
  }
}


/*================================================
 *  下層ページ/footer
 ================================================*/
footer#sub {
  background: url(../images/sub_footer-pc.png) no-repeat center bottom / cover;
  height: 300px;
  position: relative;
  padding: 0;
}

footer#sub .wrap {
  position: absolute;
  bottom: 100px;
  left: 5%;
}

footer#sub .copyright {
  position: absolute;
  bottom: 20px;
  right: 5%;
}

@media screen and (max-width:768px) {
  footer#sub {
    background: url(../images/sub_footer-sp.png) no-repeat center bottom / contain;
    height: 240px;
    margin-top: 50px;
  }

  footer#sub .wrap {
    position: static;
  }

  footer#sub .copyright {
    bottom: 10px;
    margin: 0;
    left: 5%;
    right: auto;
  }
}


/*================================================
 *  ページトップへの戻り
 ================================================*/
#pagetop {
  position: fixed;
  right: 2%;
  bottom: 10px;
  cursor: pointer;
}

#pagetop i {
  font-size: 2rem;
}