@charset "UTF-8";
/* --------------------------------------------------
    style
-------------------------------------------------- */
/* --------------------------------------------------
    Reset.css
-------------------------------------------------- */
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, div {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/* --------------------------------------------------
   mixin
   - use宣言
-------------------------------------------------- */
/* --------------------------------------------------
    color
-------------------------------------------------- */
/* --------------------------------------------------
   b r e a k p o i n t

   変数
-------------------------------------------------- */
/* --------------------------------------------------
   b r e a k p o i n t

   mixin
-------------------------------------------------- */
/* --------------------------------------------------
    s e c t i o n
	- footer
-------------------------------------------------- */
/* --------------------------------------------------
  f l e x b o x

  横並び
-------------------------------------------------- */
/* --------------------------------------------------
  r e v e r s e

  入れ替え
-------------------------------------------------- */
/* --------------------------------------------------
  画面幅いっぱい
-------------------------------------------------- */
/* --------------------------------------------------
   br
-------------------------------------------------- */
/* --------------------------------------------------
   img
-------------------------------------------------- */
/* --------------------------------------------------
    relative / absolute / fixed / static
-------------------------------------------------- */
/* --------------------------------------------------
    transform-center
-------------------------------------------------- */
/* --------------------------------------------------
   mixin
   - use宣言
-------------------------------------------------- */
/* --------------------------------------------------
   mixin
   - use宣言
-------------------------------------------------- */
/* --------------------------------------------------
   common
   - use宣言
-------------------------------------------------- */
/* --------------------------------------------------
	リセット
-------------------------------------------------- */
html {
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

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

/* --------------------------------------------------
    body
-------------------------------------------------- */
body {
  margin: 0px;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  position: relative;
  background: #f2f3d2;
}

/* --------------------------------------------------
    inner
-------------------------------------------------- */
.inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 5%;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1000px;
    padding: 0 25px;
  }
}

/* --------------------------------------------------
    回転ボタン

	- information
-------------------------------------------------- */
.btn-box {
  margin: 0 auto;
  text-align: center;
}
.btn-box .btn-roll {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  width: 100%;
  max-width: 250px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  outline: none;
}
.btn-box .btn-roll span {
  position: absolute;
  font-weight: 500;
  font-size: 2.5rem;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  border: solid 3px #c8bb9b;
  transform-style: preserve-3d;
  transition: 0.5s;
}
.btn-box .btn-roll span:nth-child(1) {
  background: #e50012;
  color: #fbfaf5;
  transform: rotateX(0deg);
  transform-origin: 0 50% -30px;
}
.btn-box .btn-roll span:nth-child(2) {
  background: #e50012;
  color: #fbfaf5;
  transform: rotateX(90deg);
  transform-origin: 0 50% -30px;
}
.btn-box .btn-roll:hover span:nth-child(1) {
  transform: rotateX(-90deg);
}
.btn-box .btn-roll:hover span:nth-child(2) {
  transform: rotateX(0deg);
}

/* --------------------------------------------------
    bg-on

	仕切りの山
-------------------------------------------------- */
.bg-yama-top {
  background-image: url("../images/common/bg-yama-top.svg");
}

.bg-shizuku {
  background-image: url("../images/common/bg-shizuku-dgrn.svg");
}

.bg-mountain-top,
.bg-mountain-btm {
  background-image: url("../images/common/bg-yama-dgrn.svg");
}

.bg-on {
  position: relative;
  height: 90px;
}
@media screen and (min-width: 768px) {
  .bg-on {
    height: 200px;
  }
}
.bg-on .bg-yama-top,
.bg-on .bg-mountain-top,
.bg-on .bg-mountain-btm,
.bg-on .bg-shizuku {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  background-position: center top;
  height: 90px;
}
@media screen and (min-width: 768px) {
  .bg-on .bg-yama-top,
  .bg-on .bg-mountain-top,
  .bg-on .bg-mountain-btm,
  .bg-on .bg-shizuku {
    height: 200px;
  }
}

.bg-yama-top,
.bg-mountain-top {
  position: absolute;
  top: 0;
  left: 0;
}

.bg-mountain-btm,
.bg-shizuku {
  position: absolute;
  bottom: 0;
  left: 0;
}

.bg-ud {
  transform: scaleY(-1);
}

/* --------------------------------------------------
    ttl-message

	- flow
	- eco
-------------------------------------------------- */
.ttl-message {
  margin: 0 auto;
  max-width: 430px;
}
@media screen and (min-width: 768px) {
  .ttl-message {
    max-width: none;
  }
}
.ttl-message h4 {
  padding-bottom: 15px;
}
.ttl-message h1 {
  padding-bottom: 25px;
}
.ttl-message img {
  display: block;
  margin: 0 auto;
  height: 60px;
  padding-bottom: 25px;
}
.ttl-message .p-big {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .ttl-message .p-big {
    text-align: center;
  }
}
.ttl-message .p-big br {
  display: none;
}
@media screen and (min-width: 768px) {
  .ttl-message .p-big br {
    display: block;
  }
}

/* --------------------------------------------------
    ttl-left

	- about
	- peaceteafactory
	- hiramito）
-------------------------------------------------- */
.ttl-left {
  margin-bottom: 25px;
}
.ttl-left h4 {
  color: #8f7a2e;
  text-align: left;
  padding-bottom: 15px;
}
.ttl-left .ttl-span {
  color: #281a14;
  padding-bottom: 25px;
  text-align: left;
}
.ttl-left img {
  height: 20px;
}

/* --------------------------------------------------
    grid-responsive

	- about
	- peaceteafactory
	- hiramito）

	@include mq(np)  ※※ 画面幅「NP」で切り替え
-------------------------------------------------- */
.grid-responsive {
  margin: 0 auto;
  max-width: 600px;
}
@media screen and (min-width: 1100px) {
  .grid-responsive {
    max-width: none;
  }
}
.grid-responsive .grid-inner {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: stretch;
}
@media screen and (min-width: 1100px) {
  .grid-responsive .grid-inner {
    grid-template-columns: 51% 44%;
    align-items: stretch;
    gap: 0;
    justify-content: space-between;
  }
}
.grid-responsive .grid-inner .in-txt {
  width: 100%;
}
.grid-responsive .grid-inner .in-txt p {
  color: #281a14;
}
.grid-responsive .grid-inner .in-txt p .btn-peace {
  color: #006934;
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
}
.grid-responsive .grid-inner .in-txt p .btn-peace:hover {
  color: #e50012;
}
.grid-responsive .grid-inner .in-img {
  line-height: 0;
  overflow: hidden;
  border: solid 3px #46352b;
  border-radius: 30px;
  position: relative;
  height: 350px;
}
@media screen and (min-width: 768px) {
  .grid-responsive .grid-inner .in-img {
    height: 480px;
  }
}
@media screen and (min-width: 1100px) {
  .grid-responsive .grid-inner .in-img {
    height: auto;
  }
}
.grid-responsive .grid-inner .in-img .grid-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.grid-responsive .text_right {
  text-align: right;
  margin-top: 25px;
}
.grid-responsive .text_right span {
  color: #8f7a2e;
}

/* --------------------------------------------------
   mixin
   - use宣言
-------------------------------------------------- */
/* --------------------------------------------------
   font
   - use宣言
-------------------------------------------------- */
/* --------------------------------------------------
   google font
-------------------------------------------------- */
/* --------------------------------------------------
   基本 - html
   16p*0.625 = 10px(=1rem)
-------------------------------------------------- */
html {
  font-size: 62.5%;
}

/* --------------------------------------------------
   基本 - body
-------------------------------------------------- */
body {
  font-size: 1.6rem;
  text-align: left;
  line-height: 160%;
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #281a14;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1.8rem;
  }
}

h1, h2, h3, h4, h5 {
  font-family: "Kiwi Maru", serif;
  letter-spacing: -0.04em;
}

p {
  font-family: "M PLUS Rounded 1c", sans-serif;
}

/* --------------------------------------------------
    カラー
-------------------------------------------------- */
h1, h2, h3, h4, h5, p {
  color: #281a14;
}

.footer-add {
  color: #fbfaf5;
}

/* --------------------------------------------------
    サイズ：font-size
-------------------------------------------------- */
h1 {
  font-size: 3.5rem;
}
@media screen and (min-width: 768px) {
  h1 {
    font-size: 4.5rem;
  }
}

h2 {
  font-size: 2.8rem;
}
@media screen and (min-width: 768px) {
  h2 {
    font-size: 3.3rem;
  }
}

h3 {
  font-size: 2.2rem;
}
@media screen and (min-width: 768px) {
  h3 {
    font-size: 2.5rem;
  }
}

h4 {
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  h4 {
    font-size: 2.2rem;
  }
}

h5 {
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  h5 {
    font-size: 2.8rem;
  }
}

p {
  font-size: 1.7rem;
}
@media screen and (min-width: 768px) {
  p {
    font-size: 2.1rem;
  }
}

.p-big {
  font-size: 1.7rem;
}
@media screen and (min-width: 768px) {
  .p-big {
    font-size: 2.1rem;
  }
}

.p-small {
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .p-small {
    font-size: 1.8rem;
  }
}

/* --------------------------------------------------
    太さ：font-weight
-------------------------------------------------- */
h1, h2, h3, h4, h5, p {
  font-weight: 500;
}

/* --------------------------------------------------
    行間：line-height
-------------------------------------------------- */
h1, h2, h3, h4, h5 {
  line-height: 120%;
}

p {
  line-height: 160%;
}

.p-big {
  line-height: 180%;
}
@media screen and (min-width: 768px) {
  .p-big {
    line-height: 170%;
  }
}

/* --------------------------------------------------
    揃え text-align
-------------------------------------------------- */
h1 {
  text-align: center;
}

h2 {
  text-align: center;
}
@media screen and (min-width: 768px) {
  h2 {
    text-align: left;
  }
}

h3 {
  text-align: center;
}

h4 {
  text-align: center;
}

h5 {
  text-align: left;
}

p {
  text-align: left;
}

.footer-add {
  text-align: left;
}

/* --------------------------------------------------
   mixin
   - use宣言
-------------------------------------------------- */
/* --------------------------------------------------
   header
   - use宣言
-------------------------------------------------- */
/* --------------------------------------------------
   LP
   ハンバーガーボタン
-------------------------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 60px;
}
header .logo {
  position: absolute;
  top: 5px;
  left: 10px;
  display: block;
  width: 60px;
}
@media screen and (min-width: 768px) {
  header .logo {
    position: absolute;
    top: 10px;
    left: 15px;
    width: 100px;
  }
}
header .logo img.logo-h-brn {
  display: block;
  width: auto;
  height: 70px;
}
@media screen and (min-width: 768px) {
  header .logo img.logo-h-brn {
    height: 90px;
  }
}
header .logo img.logo-h-brn:hover {
  opacity: 0.5;
}
header .el_humburger {
  position: absolute;
  top: 15px;
  right: 13px;
  z-index: 10000;
  width: 38px;
  height: auto;
  padding-top: 1px;
  box-sizing: border-box;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  pointer-events: auto;
}
@media screen and (min-width: 768px) {
  header .el_humburger {
    position: absolute;
    top: 20px;
    right: 20px;
  }
}
header .el_humburger span {
  background: #46352b;
  display: block;
  width: 100%;
  margin: 0 auto 9px;
  height: 3px;
  transition: all 0.2s ease-in-out;
  border-radius: 1px;
}
header .el_humburger span:last-child {
  margin-bottom: 0;
}

.js_humburgerOpen .el_humburger span {
  background: #fbfaf5;
}
.js_humburgerOpen .el_humburger .top {
  transform: translateY(12px) rotate(-45deg);
}
.js_humburgerOpen .el_humburger .middle {
  opacity: 0;
}
.js_humburgerOpen .el_humburger .bottom {
  transform: translateY(-11px) rotate(45deg);
}

/* --------------------------------------------------
   PC
   ナビゲーションボタン
-------------------------------------------------- */
.uq_spNavi {
  display: none;
}

.uq_spNavi.js_appear {
  position: fixed;
  inset: 0;
  display: block;
  z-index: 9999;
}

.uq_spNavi_screen {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.navigation {
  padding: 10vh 0 0 0;
  text-align: center;
}
.navigation .navigation_item {
  margin-bottom: 6.5vh;
}
.navigation .navigation_item a {
  color: #fbfaf5;
  text-decoration: none;
  font-size: 1.9rem;
}
@media screen and (min-width: 768px) {
  .navigation .navigation_item a {
    font-size: 2.4rem;
  }
}
.navigation .navigation_item a:hover {
  color: #d6c338;
}
.navigation .navigation_item .sns-btn {
  background: #fbfaf5;
  vertical-align: middle;
  display: inline-block;
  border-radius: 50%;
  width: 58px;
  height: 58px;
  margin-right: 15px;
}
.navigation .navigation_item .sns-btn:last-child {
  margin-right: 0;
}
.navigation .navigation_item .sns-btn:hover {
  background: #d6c338;
}
.navigation .navigation_item .sns-btn:hover i {
  color: #000000;
}
.navigation .navigation_item .sns-btn i {
  color: #000000;
  margin: 0 auto;
  display: block;
  text-align: center;
}
.navigation .navigation_item .sns-btn .fa-facebook-f {
  font-size: 3rem;
  padding-top: 13px;
  padding-right: 0;
}
.navigation .navigation_item .sns-btn .fa-instagram {
  font-size: 3.7rem;
  padding-top: 10px;
  padding-right: 0;
}
.navigation .navigation_item .sns-btn .fa-shopping-cart {
  font-size: 2.7rem;
  padding-top: 14px;
  padding-right: 2px;
}

.js_fixed {
  overflow: hidden;
  position: static;
  top: auto !important;
}

/* --------------------------------------------------
   サイドボタン
   SNS
-------------------------------------------------- */
.fixed-sns {
  position: fixed;
  right: 35px;
  bottom: 15px;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: right center;
  z-index: 9998;
  display: none;
}
@media screen and (min-width: 768px) {
  .fixed-sns {
    display: block;
  }
}
.fixed-sns .sns-ttl {
  color: #8f7a2e;
  font-weight: 400;
  font-size: 1.2rem;
  letter-spacing: 0.035em;
  display: inline-block;
  padding-right: 5px;
}
@media screen and (min-width: 768px) {
  .fixed-sns .sns-ttl {
    font-size: 1.5rem;
    padding-right: 15px;
  }
}
.fixed-sns .line-high {
  background: #8f7a2e;
  display: inline-block;
  vertical-align: middle;
  height: 1px;
  width: 10px;
  margin-right: 5px;
}
@media screen and (min-width: 768px) {
  .fixed-sns .line-high {
    width: 30px;
    margin-right: 15px;
  }
}
.fixed-sns .sns-btn {
  vertical-align: middle;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: inline-block;
}
.fixed-sns .sns-btn:hover {
  background: #e50012;
}
.fixed-sns .sns-btn:hover i {
  color: #f2f3d2;
}
.fixed-sns .sns-btn i {
  color: #8f7a2e;
  transform: rotate(-90deg);
  margin: 0 auto;
  display: block;
  text-align: center;
}
.fixed-sns .sns-btn .fa-facebook-f {
  font-size: 2.4rem;
  padding-top: 3px;
  padding-right: 17px;
}
.fixed-sns .sns-btn .fa-instagram {
  font-size: 2.8rem;
  padding-top: 1px;
  padding-right: 15px;
}
.fixed-sns .sns-btn .fa-shopping-cart {
  font-size: 2.2rem;
  padding-top: 4px;
  padding-right: 27px;
}

/* --------------------------------------------------
   mixin
   - use宣言
-------------------------------------------------- */
/* --------------------------------------------------
   footer
   - use宣言
-------------------------------------------------- */
/* --------------------------------------------------
   footer 本体
-------------------------------------------------- */
footer {
  position: relative;
}
footer .bg-footer {
  background: #006934;
}
footer .bg-footer .in-footer {
  max-width: 420px;
  margin: 0 auto;
  padding: 0 20px;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  footer .bg-footer .in-footer {
    max-width: 1050px;
    padding: 0 25px;
  }
}
@media screen and (min-width: 768px) {
  footer .bg-footer .in-footer {
    padding-bottom: 80px;
  }
}
footer .bg-footer .in-footer .sns {
  padding-top: 40px;
  margin: 0 auto 40px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  footer .bg-footer .in-footer .sns {
    padding-top: 30px;
    margin: 0 auto 30px;
  }
}
footer .bg-footer .in-footer .sns h5 {
  text-align: center;
  margin-bottom: 15px;
  margin: 0 auto 30px;
  position: relative;
  color: #d6c338;
}
footer .bg-footer .in-footer .sns h5:before {
  color: #d6c338;
  margin-right: 1rem;
  content: "＼";
}
footer .bg-footer .in-footer .sns h5:after {
  color: #d6c338;
  margin-left: 1rem;
  content: "／";
}
footer .bg-footer .in-footer .sns .sns-btn {
  background: #d6c338;
  vertical-align: middle;
  display: inline-block;
  border-radius: 50%;
  width: 58px;
  height: 58px;
  margin-right: 15px;
}
footer .bg-footer .in-footer .sns .sns-btn:last-child {
  margin-right: 0;
}
footer .bg-footer .in-footer .sns .sns-btn:hover {
  background: #e50012;
}
footer .bg-footer .in-footer .sns .sns-btn:hover i {
  color: #f2f3d2;
}
footer .bg-footer .in-footer .sns .sns-btn i {
  color: #46352b;
  margin: 0 auto;
  display: block;
  text-align: center;
}
footer .bg-footer .in-footer .sns .sns-btn .fa-facebook-f {
  font-size: 3rem;
  padding-top: 13px;
  padding-right: 0;
}
footer .bg-footer .in-footer .sns .sns-btn .fa-instagram {
  font-size: 3.7rem;
  padding-top: 10px;
  padding-right: 0;
}
footer .bg-footer .in-footer .sns .sns-btn .fa-shopping-cart {
  font-size: 2.7rem;
  padding-top: 14px;
  padding-right: 2px;
}
footer .bg-footer .in-footer .add {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: space-between;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  footer .bg-footer .in-footer .add {
    max-width: 600px;
  }
}
footer .bg-footer .in-footer .add .logo {
  width: 100%;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  footer .bg-footer .in-footer .add .logo {
    width: 40%;
    margin-bottom: 0;
  }
}
footer .bg-footer .in-footer .add .logo .logo-in {
  position: relative;
  background: #fbfaf5;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
  text-align: center;
}
@media screen and (min-width: 768px) {
  footer .bg-footer .in-footer .add .logo .logo-in {
    width: 140px;
    height: 140px;
  }
}
footer .bg-footer .in-footer .add .logo .logo-in:hover {
  background: #005a31;
}
footer .bg-footer .in-footer .add .logo .logo-in img {
  position: absolute;
  top: 20px;
  left: 30px;
  width: 80px;
}
@media screen and (min-width: 768px) {
  footer .bg-footer .in-footer .add .logo .logo-in img {
    width: 80px;
  }
}
footer .bg-footer .in-footer .add .add-text {
  color: #fbfaf5;
  margin-bottom: 30px;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  footer .bg-footer .in-footer .add .add-text {
    margin-bottom: 0;
    width: 60%;
    text-align: left;
  }
}
footer .bg-footer .in-footer .add .add-text a {
  color: #fbfaf5;
}
footer .bg-footer .in-footer .add .add-text a:hover {
  color: #e50012;
}
footer .bg-footer .copyright {
  font-size: 1.7rem;
  text-align: center;
  padding-bottom: 10px;
  color: #d6c338;
}
footer .draw-risu {
  display: none;
}
@media screen and (min-width: 768px) {
  footer .draw-risu {
    display: block;
    position: absolute;
    bottom: 87%;
    left: 50%;
    transform: translateX(calc(-50% + 330px));
    width: 120px;
    height: auto;
    z-index: 1;
  }
  footer .draw-risu img {
    width: 100%;
    height: auto;
    display: block;
  }
}

/* --------------------------------------------------
   mixin
   - use宣言
-------------------------------------------------- */
/* --------------------------------------------------
   top
   - use宣言
-------------------------------------------------- */
/* --------------------------------------------------
    T O P
-------------------------------------------------- */
#top {
  position: relative;
  width: 100%;
  height: 600px;
}
@media screen and (min-width: 768px) {
  #top {
    height: 800px;
  }
}
@media screen and (min-width: 1500px) {
  #top {
    height: 950px;
  }
}
#top .in-top .bg-top {
  margin: 0 auto;
  padding-top: 50px;
}
@media screen and (min-width: 768px) {
  #top .in-top .bg-top {
    padding-top: 60px;
  }
}
#top .in-top .bg-top img {
  width: 100%;
  height: 430px;
}
@media screen and (min-width: 768px) {
  #top .in-top .bg-top img {
    height: 600px;
  }
}
@media screen and (min-width: 1500px) {
  #top .in-top .bg-top img {
    height: 750px;
  }
}
#top .in-top .yurayura .in-yurayura {
  display: none;
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  #top .in-top .yurayura .in-yurayura {
    display: block;
  }
}
#top .in-top .yurayura .in-yurayura img {
  height: 420px;
  margin-top: 60px;
}
#top .in-top .yurayura .yurayura-r {
  transform: translateX(calc(-50% + 300px));
}
#top .in-top .yurayura .yurayura-l {
  transform: translateX(calc(-50% - 300px));
}

.scrolldown {
  position: relative;
  top: 30px;
  left: 50%;
}
@media screen and (min-width: 768px) {
  .scrolldown {
    top: 40px;
  }
}
.scrolldown span {
  position: absolute;
  top: -25px;
  left: -25px;
  color: #006934;
  font-weight: 500;
}
.scrolldown::after {
  position: absolute;
  top: 0;
  background: #006934;
  content: "";
  width: 2px;
  height: 30px;
  animation: pathmove 1.4s ease-in-out infinite;
}

@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}
/* --------------------------------------------------
    i n f o r m a t i o n
-------------------------------------------------- */
#information .in-service {
  background: #fbfaf5;
  padding: 40px 0;
}
@media screen and (min-width: 768px) {
  #information .in-service {
    padding: 60px 0;
  }
}
#information .in-service .inner {
  position: relative;
}
@media screen and (min-width: 768px) {
  #information .in-service .inner {
    margin: 0 auto;
  }
}
#information .in-service .inner .box-txt {
  width: 100%;
}
#information .in-service .inner .box-txt .logo {
  margin: 0 auto 30px;
}
@media screen and (min-width: 768px) {
  #information .in-service .inner .box-txt .logo {
    margin: 0 auto 40px;
  }
}
#information .in-service .inner .box-txt .logo img {
  display: block;
  margin: 0 auto;
  height: 135px;
}
@media screen and (min-width: 768px) {
  #information .in-service .inner .box-txt .logo img {
    height: 180px;
  }
}
#information .in-service .inner .box-txt .img-box {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 35px;
}
#information .in-service .inner .box-txt .img-box .goods {
  position: relative;
  width: 47%;
  height: 30vh;
  max-height: 320px;
  border: solid 3px #46352b;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  display: block;
  /* 黒シャドー */
  /* 白文字 */
}
#information .in-service .inner .box-txt .img-box .goods img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#information .in-service .inner .box-txt .img-box .goods::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: 0.3s ease;
  z-index: 2;
}
#information .in-service .inner .box-txt .img-box .goods::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.2rem;
  opacity: 0;
  transition: 0.3s ease;
  z-index: 3;
  text-align: center;
  white-space: nowrap;
  color: #fbfaf5;
}
#information .in-service .inner .box-txt .img-box .goods:hover::before {
  background: rgba(0, 0, 0, 0.7);
}
#information .in-service .inner .box-txt .img-box .goods:hover::after {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  #information .in-service .inner .box-txt .img-box .goods {
    width: 32%;
    height: 380px;
    max-height: 400px;
  }
}
#information .in-service .inner .box-txt .img-box .goods01:hover::after {
  content: "茶葉";
}
#information .in-service .inner .box-txt .img-box .goods02:hover::after {
  content: "ティーバッグ";
}
#information .in-service .inner .box-txt .img-box .goods03 {
  display: none;
}
@media screen and (min-width: 768px) {
  #information .in-service .inner .box-txt .img-box .goods03 {
    display: block;
  }
}
#information .in-service .inner .box-txt .img-box .goods03:hover::after {
  content: "徳用";
}
#information .in-service .inner .box-txt p {
  text-align: left;
  margin: 0 auto 30px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  #information .in-service .inner .box-txt p {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  #information .in-service .inner .box-txt p {
    margin: 0 auto 40px;
  }
}
#information .in-service .inner .box-txt p br {
  display: none;
}
@media screen and (min-width: 768px) {
  #information .in-service .inner .box-txt p br {
    display: block;
  }
}

/* --------------------------------------------------
    a b o u t
-------------------------------------------------- */
#about {
  position: relative;
  padding: 60px 0;
}
@media screen and (min-width: 768px) {
  #about {
    padding: 100px 0;
  }
}
#about .draw-kiji {
  display: none;
}
@media screen and (min-width: 768px) {
  #about .draw-kiji {
    display: block;
    position: absolute;
    bottom: -12%;
    left: 50%;
    transform: translateX(calc(-50% - 410px));
    width: 200px;
    height: auto;
    z-index: 1;
  }
  #about .draw-kiji img {
    width: 100%;
    height: auto;
    display: block;
  }
}

/* --------------------------------------------------
    f l o w

	np（1100px）で切り替え
-------------------------------------------------- */
#flow {
  position: relative;
}
#flow .draw-fox {
  display: none;
}
@media screen and (min-width: 768px) {
  #flow .draw-fox {
    display: block;
    position: absolute;
    bottom: -92px;
    left: 50%;
    transform: translateX(calc(-50% - 390px));
    width: 210px;
    height: auto;
    z-index: 1;
  }
  #flow .draw-fox img.draw-fox-img {
    width: 100%;
    height: auto;
    display: block;
  }
}

.flow-message {
  background: #006934;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .flow-message {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.flow-message .inner .ttl-message h4 {
  color: #d9cd84;
}
.flow-message .inner .ttl-message h1 {
  color: #fbfaf5;
}
.flow-message .inner .ttl-message .p-big {
  color: #fbfaf5;
}

.flow-step {
  padding-top: 70px;
  padding-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .flow-step {
    padding-top: 100px;
    padding-bottom: 140px;
  }
}
.flow-step .inner .flow-bg {
  position: relative;
}
.flow-step .inner .flow-bg .flow-inner {
  margin: 0 auto;
  max-width: 500px;
}
@media screen and (min-width: 1100px) {
  .flow-step .inner .flow-bg .flow-inner {
    max-width: none;
  }
}
.flow-step .inner .flow-bg .flow-inner .flow-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 60px;
  /* ★ ★ 子要素の幅指定は “全部削除” ★ ★ */
}
.flow-step .inner .flow-bg .flow-inner .flow-box .flow-mark {
  order: 1;
}
.flow-step .inner .flow-bg .flow-inner .flow-box .flow-txt {
  order: 2;
}
.flow-step .inner .flow-bg .flow-inner .flow-box .flow-img {
  order: 3;
}
.flow-step .inner .flow-bg .flow-inner .flow-box:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 1100px) {
  .flow-step .inner .flow-bg .flow-inner .flow-box {
    grid-template-columns: 1fr 200px 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 0;
    /* --- 偶数段（反転）--- */
  }
  .flow-step .inner .flow-bg .flow-inner .flow-box:nth-of-type(odd) .flow-txt {
    order: 1;
  }
  .flow-step .inner .flow-bg .flow-inner .flow-box:nth-of-type(odd) .flow-mark {
    order: 2;
  }
  .flow-step .inner .flow-bg .flow-inner .flow-box:nth-of-type(odd) .flow-img {
    order: 3;
  }
  .flow-step .inner .flow-bg .flow-inner .flow-box:nth-of-type(even) .flow-img {
    order: 1;
  }
  .flow-step .inner .flow-bg .flow-inner .flow-box:nth-of-type(even) .flow-mark {
    order: 2;
  }
  .flow-step .inner .flow-bg .flow-inner .flow-box:nth-of-type(even) .flow-txt {
    order: 3;
  }
}
.flow-step .inner .flow-bg .flow-inner .flow-box .flow-txt,
.flow-step .inner .flow-bg .flow-inner .flow-box .flow-mark,
.flow-step .inner .flow-bg .flow-inner .flow-box .flow-img {
  width: 100%;
  margin: 0 auto;
}
.flow-step .inner .flow-bg .flow-inner .flow-box .flow-txt {
  width: 100%;
  margin-bottom: 0;
}
.flow-step .inner .flow-bg .flow-inner .flow-box .flow-txt img.draw-img {
  display: block;
  margin: 0 auto 10px;
  height: 110px;
}
.flow-step .inner .flow-bg .flow-inner .flow-box .flow-txt h2 {
  color: #46352b;
  margin: 0 auto 15px;
  text-align: center;
  line-height: 160%;
  display: block;
  padding: 0 1rem 2px 1rem;
  border-bottom: 6px solid #d6c338;
}
@media screen and (min-width: 1100px) {
  .flow-step .inner .flow-bg .flow-inner .flow-box .flow-txt h2 {
    max-width: 340px;
  }
}
.flow-step .inner .flow-bg .flow-inner .flow-box .flow-txt .flow-p {
  margin: 0 auto;
  text-align: left;
  color: #281a14;
}
.flow-step .inner .flow-bg .flow-inner .flow-box .flow-txt .flow-p a {
  color: #006934;
}
.flow-step .inner .flow-bg .flow-inner .flow-box .flow-txt .flow-p a:hover {
  color: #e50012;
}
.flow-step .inner .flow-bg .flow-inner .flow-box .flow-mark {
  width: 100%;
  margin: 0 auto 30px;
  text-align: center;
}
@media screen and (min-width: 1100px) {
  .flow-step .inner .flow-bg .flow-inner .flow-box .flow-mark {
    margin: 0 auto;
  }
}
.flow-step .inner .flow-bg .flow-inner .flow-box .flow-mark .in-mark {
  position: relative;
  display: inline-block;
}
.flow-step .inner .flow-bg .flow-inner .flow-box .flow-mark .in-mark span {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 1.6rem;
  color: #8f7a2e;
}
@media screen and (min-width: 1100px) {
  .flow-step .inner .flow-bg .flow-inner .flow-box .flow-mark .in-mark span {
    font-size: 1.8rem;
    margin-bottom: 5px;
  }
}
.flow-step .inner .flow-bg .flow-inner .flow-box .flow-mark .in-mark h1 {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 3.2rem;
  line-height: 100%;
  color: #281a14;
}
@media screen and (min-width: 1100px) {
  .flow-step .inner .flow-bg .flow-inner .flow-box .flow-mark .in-mark h1 {
    font-size: 4rem;
  }
}
.flow-step .inner .flow-bg .flow-inner .flow-box .flow-mark .in-mark::before {
  position: absolute;
  top: 50%;
  left: 50%;
  background: #d6c338;
  display: block;
  content: "";
  width: 120px;
  height: 120px;
  margin-top: 5px;
  z-index: 0;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 1100px) {
  .flow-step .inner .flow-bg .flow-inner .flow-box .flow-mark .in-mark::before {
    width: 140px;
    height: 140px;
  }
}
.flow-step .inner .flow-bg .flow-inner .flow-box .flow-img {
  width: 100%;
  height: 330px;
  margin-bottom: 60px;
  display: inline-block;
  border-radius: 30px;
  border: solid 3px #46352b;
  overflow: hidden;
}
@media screen and (min-width: 1100px) {
  .flow-step .inner .flow-bg .flow-inner .flow-box .flow-img {
    height: 350px;
    margin-bottom: 0;
  }
}
.flow-step .inner .flow-bg .flow-inner .flow-box .flow-img img.flow-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.flow-step .inner .flow-bg .flow-inner .dot-line-r,
.flow-step .inner .flow-bg .flow-inner .dot-line-l {
  display: none;
}
@media screen and (min-width: 1100px) {
  .flow-step .inner .flow-bg .flow-inner .dot-line-r,
  .flow-step .inner .flow-bg .flow-inner .dot-line-l {
    display: block;
    height: 140px;
    padding: 20px 0;
    margin: 0 auto;
  }
}

/* --------------------------------------------------
    p e a c e t e a f a c t o r y
-------------------------------------------------- */
#peaceteafactory {
  background: #006934;
}
#peaceteafactory .bg-on {
  position: relative;
  background: #f2f3d2;
}
#peaceteafactory .inner {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media screen and (min-width: 768px) {
  #peaceteafactory .inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
#peaceteafactory .inner .grid-responsive .ttl-left h4 {
  color: #fcc800;
}
#peaceteafactory .inner .grid-responsive .ttl-left h1 {
  color: #fbfaf5;
}
#peaceteafactory .inner .grid-responsive .grid-inner .in-txt p {
  color: #fbfaf5;
}
#peaceteafactory .inner .grid-responsive .grid-inner .btn {
  text-align: right;
  padding-top: 30px;
}
#peaceteafactory .inner .grid-responsive .grid-inner .btn .btn-peace {
  color: #fcc800;
  display: inline-block;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.7rem;
}
@media screen and (min-width: 768px) {
  #peaceteafactory .inner .grid-responsive .grid-inner .btn .btn-peace {
    font-size: 2.1rem;
  }
}
#peaceteafactory .inner .grid-responsive .grid-inner .btn .btn-peace:hover {
  color: #e50012;
}

/* --------------------------------------------------
    e c o
-------------------------------------------------- */
#eco {
  padding: 80px 0;
  position: relative;
  background: #f2f3d2;
}
@media screen and (min-width: 768px) {
  #eco {
    padding: 100px 0;
  }
}
#eco .inner .ttl-message h4 {
  color: #8f7a2e;
}
#eco .inner .ttl-message h1 {
  color: #005a31;
}
#eco .draw-sun {
  display: none;
}
@media screen and (min-width: 768px) {
  #eco .draw-sun {
    display: block;
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(calc(-50% + 350px));
    width: 140px;
    height: auto;
  }
  #eco .draw-sun img {
    width: 100%;
    height: auto;
    display: block;
  }
}
#eco .draw-tree {
  display: none;
}
@media screen and (min-width: 768px) {
  #eco .draw-tree {
    display: block;
    position: absolute;
    bottom: -110px;
    left: 50%;
    transform: translateX(calc(-50% - 410px));
    width: 230px;
    height: auto;
    z-index: 1;
  }
  #eco .draw-tree img {
    width: 100%;
    height: auto;
    display: block;
  }
}

/* --------------------------------------------------
    r e c i p e
-------------------------------------------------- */
#recipe .contents {
  padding: 30px 0;
  position: relative;
  background: #006934;
}
@media screen and (min-width: 768px) {
  #recipe .contents {
    padding: 80px 0;
  }
}
#recipe .contents .inner .recipe-ttl {
  padding-bottom: 25px;
}
@media screen and (min-width: 768px) {
  #recipe .contents .inner .recipe-ttl {
    padding-bottom: 40px;
  }
}
#recipe .contents .inner .recipe-ttl img.yunomi-img {
  display: block;
  margin: 0 auto;
  padding-bottom: 25px;
  height: 120px;
}
@media screen and (min-width: 768px) {
  #recipe .contents .inner .recipe-ttl img.yunomi-img {
    height: 150px;
  }
}
#recipe .contents .inner .recipe-ttl h4 {
  color: #d6c338;
  padding-bottom: 10px;
}
#recipe .contents .inner .recipe-ttl h1 {
  color: #fbfaf5;
}
#recipe .contents .inner .recipe-bg {
  border-radius: 30px;
  background: #005a31;
}
#recipe .contents .inner .recipe-bg .recipe-box {
  padding: 3%;
}
@media screen and (min-width: 768px) {
  #recipe .contents .inner .recipe-bg .recipe-box {
    padding: 6%;
  }
}
#recipe .contents .inner .recipe-bg .recipe-box .recipe-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  #recipe .contents .inner .recipe-bg .recipe-box .recipe-info {
    grid-template-columns: 47% 47%;
    gap: 6%;
    align-items: stretch;
    margin-bottom: 50px;
  }
}
#recipe .contents .inner .recipe-bg .recipe-box .recipe-info .in-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: solid 3px #46352b;
  border-radius: 15px;
  position: relative;
  line-height: 0;
}
#recipe .contents .inner .recipe-bg .recipe-box .recipe-info .in-img img.recipe-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translateZ(0);
}
#recipe .contents .inner .recipe-bg .recipe-box .recipe-info .in-txt .item-box {
  margin-bottom: 30px;
}
#recipe .contents .inner .recipe-bg .recipe-box .recipe-info .in-txt .item-box h5 {
  color: #fbfaf5;
  border-bottom: 3px solid #d6c338;
  padding-bottom: 8px;
  margin-bottom: 8px;
}
#recipe .contents .inner .recipe-bg .recipe-box .recipe-info .in-txt .item-box p.money {
  color: #d6c338;
}
#recipe .contents .inner .recipe-bg .recipe-box .recipe-info .in-txt .item-box p.money span {
  color: #fbfaf5;
  display: inline-block;
}
#recipe .contents .inner .recipe-bg .recipe-box .recipe-info .in-txt .item-box p.money span:last-child {
  color: #d6c338;
  float: right;
}
#recipe .contents .inner .recipe-bg .recipe-box .recipe-info .in-txt p.p-small {
  color: #fbfaf5;
  margin: 0 auto 30px;
}
#recipe .contents .inner .recipe-bg .recipe-box .recipe-info .in-txt .shop-btn .btn-inner {
  z-index: 2;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  width: 100%;
  display: block;
  margin: 0 auto;
  padding: 4% 0;
  border-radius: 5px;
  position: relative;
  background: #d6c338;
  color: #281a14;
}
#recipe .contents .inner .recipe-bg .recipe-box .recipe-info .in-txt .shop-btn .btn-inner::before, #recipe .contents .inner .recipe-bg .recipe-box .recipe-info .in-txt .shop-btn .btn-inner::after {
  z-index: -1;
  position: absolute;
  display: block;
  content: "";
  box-sizing: border-box;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#recipe .contents .inner .recipe-bg .recipe-box .recipe-info .in-txt .shop-btn .btn-inner::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
}
#recipe .contents .inner .recipe-bg .recipe-box .recipe-info .in-txt .shop-btn .btn-inner:hover {
  color: #fbfaf5;
}
#recipe .contents .inner .recipe-bg .recipe-box .recipe-info .in-txt .shop-btn .btn-inner:hover::after {
  background: #e50012;
  -webkit-transform: scale(1);
  transform: scale(1);
  border-radius: 5px;
}
#recipe .contents .inner .recipe-bg .recipe-box .step {
  text-align: center;
}
#recipe .contents .inner .recipe-bg .recipe-box .step h5.copy {
  display: inline-block;
  border-bottom: 3px solid #d6c338;
  padding-bottom: 5px;
  margin: 0 auto 30px;
  color: #fbfaf5;
}
#recipe .contents .inner .recipe-bg .recipe-box .step .list-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 2%;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  #recipe .contents .inner .recipe-bg .recipe-box .step .list-step {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 0;
  }
}
#recipe .contents .inner .recipe-bg .recipe-box .step .list-step .recipe-step .recipe-draw {
  background: #fbfaf5;
  padding: 5%;
  border-radius: 5px;
  margin-bottom: 10px;
  width: 100%;
  text-align: center;
}
#recipe .contents .inner .recipe-bg .recipe-box .step .list-step .recipe-step .recipe-draw .p-small {
  color: #8f7a2e;
}
#recipe .contents .inner .recipe-bg .recipe-box .step .list-step .recipe-step .recipe-draw .recipe-img {
  width: 100%;
  height: 130px;
  display: block;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  #recipe .contents .inner .recipe-bg .recipe-box .step .list-step .recipe-step .recipe-draw .recipe-img {
    height: 150px;
  }
}
#recipe .contents .inner .recipe-bg .recipe-box .step .list-step .recipe-step .recipe-txt {
  width: 100%;
}
#recipe .contents .inner .recipe-bg .recipe-box .step .list-step .recipe-step .recipe-txt .p-small {
  color: #fbfaf5;
}
#recipe .contents .inner img.triangle {
  display: block;
  margin: 0 auto;
  height: 50px;
  margin: 50px auto;
}
@media screen and (min-width: 768px) {
  #recipe .contents .inner img.triangle {
    margin: 60px auto;
  }
}

/* --------------------------------------------------
    h i r a m i t o
-------------------------------------------------- */
#hiramito {
  position: relative;
  background: #f2f3d2;
  padding: 80px 0;
}
#hiramito .draw-shika {
  position: absolute;
  left: 50%;
  width: 120px;
  height: auto;
  z-index: 1;
  margin-bottom: 20px;
  bottom: -70px;
  transform: translateX(calc(-50% - 110px));
}
#hiramito .draw-shika img.draw-shika-img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (min-width: 768px) {
  #hiramito .draw-shika {
    bottom: -105px;
    width: 160px;
    transform: translateX(calc(-50% - 380px));
  }
}

/* --------------------------------------------------
    c o n t a c t
-------------------------------------------------- */
#contact .in-service {
  background: #006934;
  padding: 40px 0;
}
@media screen and (min-width: 768px) {
  #contact .in-service {
    padding: 60px 0;
  }
}
#contact .in-service .inner .in-ttl h4 {
  color: #d6c338;
  padding-bottom: 15px;
}
#contact .in-service .inner .in-ttl h2 {
  color: #fbfaf5;
  text-align: center;
  margin-bottom: 40px;
}
#contact .in-service .inner .in-ttl .btn-center {
  text-align: center;
  margin-bottom: 40px;
}
#contact .in-service .inner .in-ttl .btn-center a.in-add {
  display: inline-block;
  margin: 0 auto;
}
#contact .in-service .inner .in-ttl .btn-center a.in-add .mail-icon {
  width: 70px;
  height: auto;
  display: block;
  margin: 0 auto 15px;
}
@media screen and (min-width: 768px) {
  #contact .in-service .inner .in-ttl .btn-center a.in-add .mail-icon {
    margin-bottom: 20px;
  }
}
#contact .in-service .inner .in-ttl .btn-center a.in-add .mail-add {
  color: #d6c338;
  text-align: center;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  #contact .in-service .inner .in-ttl .btn-center a.in-add .mail-add {
    font-size: 2.2rem;
  }
}
#contact .in-service .inner .in-ttl .btn-center a.in-add:hover .mail-icon {
  opacity: 0.5;
}
#contact .in-service .inner .in-ttl .btn-center a.in-add:hover .mail-add {
  color: #e50012;
}
#contact .in-service .inner .in-ttl p {
  color: #fbfaf5;
  margin: 0 auto;
  max-width: 500px;
}

/* --------------------------------------------------
    f u t u r e
-------------------------------------------------- */
#future {
  position: relative;
  padding: 80px 0;
}
@media screen and (min-width: 768px) {
  #future {
    padding: 100px 0;
  }
}
#future .inner .bg-future-wrap {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  #future .inner .bg-future-wrap {
    height: 400px;
  }
}
#future .inner .bg-future-wrap .bg-future-img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 320px;
  width: auto;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  #future .inner .bg-future-wrap .bg-future-img {
    height: 400px;
  }
}
#future .inner .bg-future-wrap .flex-multi-container {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
#future .inner .bg-future-wrap .flex-multi-container .vertical-item {
  white-space: pre;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  letter-spacing: 0.01em;
  line-height: 2;
  padding: 20px;
  font-size: 3.3rem;
  color: #8f7a2e;
}
@media screen and (min-width: 768px) {
  #future .inner .bg-future-wrap .flex-multi-container .vertical-item {
    font-size: 4.3rem;
  }
}
#future .inner .p-big {
  text-align: left;
  padding-top: 20px;
  color: #46352b;
}
@media screen and (min-width: 768px) {
  #future .inner .p-big {
    text-align: center;
    padding-top: 20px;
  }
}
#future .inner .p-big br {
  display: none;
}
@media screen and (min-width: 768px) {
  #future .inner .p-big br {
    display: block;
  }
}
#future .yurayura .in-yurayura {
  display: none;
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  #future .yurayura .in-yurayura {
    display: block;
  }
}
#future .yurayura .in-yurayura img {
  height: 100px;
  margin-top: 190px;
}
#future .yurayura .yurayura-r {
  transform: translateX(calc(-50% + 420px)) translateY(-130px);
}
#future .yurayura .yurayura-l {
  transform: translateX(calc(-50% - 420px)) translateY(50px);
}
#future .draw-tori {
  display: none;
}
@media screen and (min-width: 768px) {
  #future .draw-tori {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(calc(-50% - 300px));
    width: 130px;
    height: auto;
    z-index: 1;
    display: block;
    margin-bottom: 20px;
  }
  #future .draw-tori img.draw-tori-img {
    width: 100%;
    height: auto;
    display: block;
  }
}/*# sourceMappingURL=style.css.map */