/* CSS Document */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  word-break: normal;
  word-wrap: break-word;
}

#wrapper {
  opacity: 0;
}

html {
  font-size: 20px;
  line-height: 2;
  color: black;
}

body {
  background-color: #f0f0f0;
  color: black;
  font-family: "Sawarabi Gothic", sans-serif;
}

a {
  color: black;
}

img {
  vertical-align: bottom;
  margin: 0;
  padding: 0;
  border: 0;
  max-width: 100%;
}

.clearfix:before,
.clearfix:after {
  display: table;
  content: " ";
}

.clearfix:after {
  clear: both;
}

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

td,
th {
  padding: 0;
}

table {
  background-color: transparent;
}

table col[class*=col-] {
  position: static;
  display: table-column;
  float: none;
}

table td[class*=col-],
table th[class*=col-] {
  position: static;
  display: table-cell;
  float: none;
}

ul li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0px;
  font-weight: normal;
}

.fixedcontainer {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0px;
}

a:visited,
a:link,
a:hover,
a:active,
a:focus {
  outline: none;
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
  transition: opacity 0.5s ease;
}

.red {
  color: #ed1c24;
}

.yellow {
  color: #e58e55;
}

.bkyellow {
  background-color: #fff100;
}

.bold {
  font-weight: bold;
}

.btline {
  text-decoration: underline;
}

.underline {
  text-decoration: underline;
}

.text-center {
  text-align: center;
}

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

.text-right {
  text-align: right;
}

.visible-sp {
  display: none;
}

.hidden-sp {
  display: block;
}

.visible-xs {
  display: none;
}

.hidden-xs {
  display: block;
}

.visible-500 {
  display: none;
}

.hidden-500 {
  display: block;
}

.flex_part .flex_img_left {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.flex_part .flex_img_left > img {
  -o-object-fit: contain;
     object-fit: contain;
}
.flex_part .flex_body {
  flex: 1;
}
.flex_part .flex_multi {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.flex_part .flex_img_right {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.flex_part .flex_img_right > img {
  -o-object-fit: contain;
     object-fit: contain;
}

/* slick */
.slick-next::before {
  content: "";
  background: url(../images/slick_next.png) no-repeat;
}

.slick-prev::after {
  content: "";
  background: url(../images/slick_prev.png) no-repeat;
}

.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 50px;
  height: 50px;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  z-index: 100;
}

.slick-prev::after,
.slick-next::before {
  font-family: initial;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  opacity: 1;
}

.slick-dots {
  bottom: -45px;
}

.slick-dotted.slick-slider {
  margin-bottom: 50px;
}

.slick-dots li button:before {
  font-family: "slick";
  font-size: 32px;
  line-height: 45px;
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  height: 3px;
  content: "";
  text-align: center;
  opacity: 1;
  color: #c9caca;
  background: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 3px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
  opacity: 0.3;
}
.slick-dots li.slick-active {
  opacity: 1;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  color: #00a0e9;
}

.hover_anim {
  position: relative;
  overflow: hidden;
}

.hover_anim::after {
  background: #fff;
  content: "";
  height: 400px;
  left: -300px;
  opacity: 0.2;
  position: absolute;
  top: -80px;
  transform: rotate(35deg);
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  width: 150px;
  z-index: 100;
}

.hover_anim:hover::after {
  left: 120%;
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.fade-top {
  opacity: 0.1;
  transform: translate(0, 80px);
  transition: all 1000ms ease-out 0s;
}

.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.custom_checkbox {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  position: relative;
}
.custom_checkbox input[type=checkbox] {
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  left: 0;
  top: 0;
}
.custom_checkbox input[type=checkbox]:focus {
  outline: none;
}
.custom_checkbox input[type=checkbox]:checked {
  background: #036eb8;
  z-index: 0;
}
.custom_checkbox input[type=checkbox]:checked + span {
  color: white;
}
.custom_checkbox span {
  z-index: 100;
}

.inviewfadeInUp {
  opacity: 0;
  transform: translate(0, 8px);
  -webkit-transform: translate(0, 8px);
  transition: 0.6s;
}

.inviewfadeInUp2 {
  opacity: 0;
  transform: translate(0, 8px);
  -webkit-transform: translate(0, 8px);
  transition: 0.6s ease-in-out 0.2s;
}

.inviewfadeInUp3 {
  opacity: 0;
  transform: translate(0, 8px);
  -webkit-transform: translate(0, 8px);
  transition: 0.6s ease-in-out 0.4s;
}

.inviewfadeInUp4 {
  opacity: 0;
  transform: translate(0, 8px);
  -webkit-transform: translate(0, 8px);
  transition: 0.6s ease-in-out 0.6s;
}

.inviewfadeInUp5 {
  opacity: 0;
  transform: translate(0, 8px);
  -webkit-transform: translate(0, 8px);
  transition: 0.6s ease-in-out 0.8s;
}

.fadeInUp {
  opacity: 1;
  transform: translate(0, 0);
}

#header .g_nav {
  display: none;
  text-align: center;
}

/* loading
------------------------------------------------- */
#loading {
  width: 100vw;
  height: 100vh;
  background: #444444;
  left: 0;
  top: 0;
  position: fixed;
  z-index: 9999;
}

#loading {
  width: 100%;
  height: 100vh;
  background: #444444;
  left: 0;
  top: 0;
  position: fixed;
  z-index: 9999;
  display: none;
}
#loading img {
  width: 170px;
  opacity: 0;
  transform: translateY(-40px);
  transition: all 1s ease;
}
#loading.active img {
  opacity: 1;
  transform: translateY(0);
  transition: all 1s ease;
}

.first_icon {
  text-align: center;
}

.second_icon {
  text-align: center;
  padding-top: 20px;
}

.loading_wrap {
  position: fixed;
  top: 50vh;
  left: 50vw;
  text-align: center;
  display: inline-flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  transform: translate(-50%, -50%);
}

.loading_icon {
  animation: blur 2s ease 0s;
  -webkit-animation: blur 2s ease 0s;
  -moz-animation: blur 2s ease 0s;
}

.loading_icon2 {
  animation: opacity_animation 4s ease 0s;
  -webkit-animation: opacity_animation 4s ease 0s;
  -moz-animation: opacity_animation 4s ease 0s;
}

#line {
  margin: 50vh auto 0;
  width: 100%;
  height: 26px;
  background: white;
  position: relative;
  text-align: center;
}

#line1 {
  margin: 0 auto 0;
  width: 100%;
  height: 100%;
  background: #EDEDED;
  position: relative;
  text-align: center;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.fullwidth .expand {
  width: 100%;
  height: 26px;
  margin-left: 0;
  text-align: center;
  background: url(./../images/377.gif) no-repeat;
  background-position: center;
  position: absolute;
  left: 0;
}

@-webkit-keyframes fullexpand {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes fullexpand {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.font16 {
  font-size: 0.8rem;
}
.font17 {
  font-size: 0.85rem;
}
.font18 {
  font-size: 0.9rem;
}
.font19 {
  font-size: 0.95rem;
}
.font20 {
  font-size: 1rem;
}
.font21 {
  font-size: 1.05rem;
}
.font22 {
  font-size: 1.1rem;
}
.font23 {
  font-size: 1.15rem;
}
.font24 {
  font-size: 1.2rem;
}
.font25 {
  font-size: 1.25rem;
}
.font26 {
  font-size: 1.3rem;
}
.font27 {
  font-size: 1.35rem;
}
.font28 {
  font-size: 1.4rem;
}
.font29 {
  font-size: 1.45rem;
}
.font30 {
  font-size: 1.5rem;
}
.font31 {
  font-size: 1.55rem;
}
.font32 {
  font-size: 1.6rem;
}
.font33 {
  font-size: 1.65rem;
}
.font34 {
  font-size: 1.7rem;
}
.font35 {
  font-size: 1.75rem;
}
.font36 {
  font-size: 1.8rem;
}
.font37 {
  font-size: 1.85rem;
}
.font38 {
  font-size: 1.9rem;
}
.font39 {
  font-size: 1.95rem;
}
.font40 {
  font-size: 2rem;
}

#pc_menu1 {
  width: 100%;
  text-align: center;
  background: #fff;
  height: 170px;
  padding-top: 30px;
  top: 0;
  left: 0;
}
#pc_menu1 .logo1 {
  width: 79px;
}
#pc_menu1 .menu_area {
  width: 100%;
  max-width: 656px;
  padding: 0 0 0 5px;
  margin: 15px auto 0;
  text-align: left;
  display: flex;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  align-items: center;
  justify-content: space-between;
}
#pc_menu1 .menu_area a {
  cursor: pointer;
  color: black;
  font-size: 0.6rem;
  display: flex;
  align-items: center;
}
#pc_menu1 .menu_area a img {
  width: 25px;
}
#pc_menu1 .menu_area a:hover {
  border-bottom: 1px solid black;
}
#pc_menu1 .menu_area a.active {
  border-bottom: 1px solid black;
}
#pc_menu1 .header_logo1 {
  display: inline-block;
  padding-top: 0;
}
#pc_menu1 .header_btnarea1 {
  padding-top: 0;
  display: flex;
  align-items: center;
}
#pc_menu1 .header_tel {
  width: 501px;
}
#pc_menu1 .header_btn1 {
  display: inline-block;
  width: 134px;
}

#pc_menu2 {
  width: 100%;
  min-width: 1200px;
  margin: 0 auto;
  padding: 35px 0;
  background: #f6f6f6;
  text-align: center;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
}
#pc_menu2 .top_menu_link {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-size: 16px;
  color: #814900;
  padding: 0 30px;
  border-right: 1px solid #ccc;
}
#pc_menu2 .top_menu_link span {
  font-size: 22px;
  font-weight: bold;
  color: #444;
}
#pc_menu2 .top_menu_link:last-child {
  border-right: 0px solid #ccc;
}
#pc_menu2 .top_menu_link:hover {
  opacity: 0.3;
}

#drag_menu {
  position: fixed;
  top: -100px;
  left: 0;
  z-index: 101;
  width: 100%;
  text-align: center;
  height: 78px;
  background: #fff;
  border-bottom: 1px solid #e1e1e2;
}
#drag_menu .menu_area {
  width: 100%;
  max-width: 656px;
  padding: 0 0 0 5px;
  margin: 15px auto 0;
  text-align: left;
  display: flex;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  align-items: center;
  justify-content: space-between;
}
#drag_menu .menu_area a {
  cursor: pointer;
  color: black;
  font-size: 0.6rem;
  display: flex;
  align-items: center;
}
#drag_menu .menu_area a img {
  width: 25px;
}
#drag_menu .header_logo1 {
  display: inline-block;
  width: 270px;
  padding-top: 15px;
  margin: 0 auto 0;
}

.drag_nav {
  margin: auto;
  width: 1100px;
  padding: 20px 0 0;
  text-align: center;
}
.drag_nav ul {
  width: 100%;
  line-height: 1.2em;
  list-style: none;
  display: inline-block;
  justify-content: space-between;
}
.drag_nav ul > li {
  text-align: left;
}
.drag_nav ul > li a {
  font-size: 14px;
}
.drag_nav .top_menu_link {
  display: inline-block;
  vertical-align: top;
  margin: 0 auto;
  text-align: center;
  letter-spacing: 0.05em;
  font-size: 12px;
  color: #814900;
  line-height: 1.4;
}
.drag_nav .top_menu_link span {
  font-size: 16px;
  font-weight: bold;
  color: #444;
}
.drag_nav .top_menu_link:hover {
  opacity: 0.3;
}

#drag_side {
  display: block;
  position: fixed;
  z-index: 101;
  right: -200px;
  top: 200px;
  width: 7%;
  max-width: 140px;
}

.top {
  width: 100%;
  position: relative;
  height: 740px;
}
.top .container {
  text-align: center;
}
.top .top_ttl {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.top .top_txt1 {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

.top .top_txt1 img {
  width: 100%;
}

.loopSlider1 {
  margin: 0;
  width: 100%;
  height: 740px;
  text-align: left;
  overflow: hidden;
  position: relative;
}
.loopSlider1 ul {
  margin: 0;
  width: 100%;
  height: 740px;
  float: left;
  display: inline-block;
  overflow: hidden;
  padding: 0;
}
.loopSlider1 ul li {
  float: left;
  width: 555px;
  height: 740px;
  display: inline;
  overflow: hidden;
}
.loopSlider1 ul li div {
  width: 555px;
  height: 740px;
  padding: 0;
  border: 0px solid #289cdc;
  text-align: center;
  margin: 0;
}
.loopSlider1 ul li img {
  width: 100%;
  height: auto;
  background: white;
}
.loopSlider1:after {
  content: "";
  display: none;
  clear: none;
}

hr {
  border: none;
  border-top: 2px solid;
}

.loopSliderWrap2 {
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  margin: 0;
  overflow: hidden;
  position: absolute;
}

.loopSlider2 {
  margin: 40px 0 0;
  width: 100%;
  height: 200px;
  text-align: left;
  overflow: hidden;
  position: relative;
}
.loopSlider2 ul {
  margin: 0;
  width: 100%;
  height: 200px;
  float: left;
  display: inline-block;
  overflow: hidden;
  padding: 0;
}
.loopSlider2 ul li {
  float: left;
  width: 300px;
  height: 200px;
  display: inline;
  overflow: hidden;
}
.loopSlider2 ul li div {
  width: 300px;
  height: 200px;
  padding: 0;
  border: 0px solid #289cdc;
  text-align: center;
  margin: 0;
}
.loopSlider2 ul li img {
  width: 100%;
  height: auto;
  background: white;
}

a {
  cursor: pointer;
}

.loopSliderWrap2:after {
  content: "";
  display: none;
  clear: none;
}

.loopSliderWrap1 {
  top: 0;
  left: 0;
  width: 100%;
  height: 740px;
  margin: 0;
  overflow: hidden;
  position: absolute;
}

.loopSliderWrap2 {
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  margin: 0;
  overflow: hidden;
  position: absolute;
}

/*-------------header----------------------*/
.eigo {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
}

/*-----------        -----------------*/
body {
  letter-spacing: 1px;
  padding-left: 57px;
  background: #ededed;
  color: #333;
}

#header {
  position: fixed;
  z-index: 101;
  background: #EDEDED;
  top: 0;
  height: 100vh;
  left: 0;
  width: 57px;
}
#header h1 {
  transition: all 0.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  opacity: 1;
  position: relative;
  z-index: 1;
}
#header h1 a {
  display: block;
  line-height: 1;
}
#header h1 a img {
  width: 30px;
}
#header.top_bg h1 {
  transition: all 0.8s ease-in-out;
  opacity: 0;
}
#header .menu-trigger {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 3px;
  width: 25px;
  height: 8px;
  z-index: 1002;
}
#header .menu-trigger img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
#header .menu-trigger img:nth-child(1) {
  display: initial;
}
#header .menu-trigger img:nth-child(2) {
  display: none;
}
#header .menu-trigger.active img:nth-child(2) {
  display: initial;
}
#header .menu-trigger.active img:nth-child(1) {
  display: none;
}
#header .menu-trigger p {
  position: absolute;
  bottom: 12px;
  font-size: 2.5vw;
  text-align: center;
  width: 100%;
  color: black;
}
#header .menu-trigger.active .close {
  display: none;
}
#header .menu-trigger:not(.active) .open {
  display: none;
}
#header .menu-trigger:hover {
  opacity: 1;
}
#header .menu-trigger span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
  cursor: pointer;
  float: right;
  position: absolute;
  width: 25px;
  height: 2px;
  left: 0;
  background: white;
  right: 0;
  margin: auto;
}
#header .menu-trigger p {
  position: absolute;
  top: 40px;
}
#header .menu-trigger span:nth-of-type(1) {
  top: 0;
}
#header .menu-trigger span:nth-of-type(2) {
  top: 8px;
}
#header .menu-trigger.active span:nth-of-type(1) {
  transform: translateY(4px) rotate(-45deg);
}
#header .menu-trigger.active span:nth-of-type(2) {
  transform: translateY(-4px) rotate(45deg);
}
#header .shop {
  position: absolute;
  width: 60px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 55px;
}

.g_nav {
  position: fixed;
  width: 100%;
  left: 0;
  background: #ededed;
  height: 100vh;
  top: 0;
  z-index: 100;
  display: none;
  text-align: center;
}
.g_nav.commercial a, .g_nav.privacy a {
  font-size: 14px;
}

@-webkit-keyframes slideUp {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-20px);
    opacity: 0;
  }
}

@keyframes slideUp {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-20px);
    opacity: 0;
  }
}
@-webkit-keyframes slideDown {
  0% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slideDown {
  0% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
.g_nav ul {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  letter-spacing: 0.1em;
  margin-top: 15vw;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  min-width: 220px;
  -webkit-animation: slideUp 1s ease-in-out;
          animation: slideUp 1s ease-in-out;
  opacity: 0;
}
.g_nav.active ul {
  transform: translateY(0);
  opacity: 1;
  -webkit-animation: slideDown 1s ease-in-out;
          animation: slideDown 1s ease-in-out;
}

.g_nav ul li {
  float: none;
  font-size: 20px;
  padding: 12px 30px;
  margin: 0;
  text-align: center;
}
.g_nav ul li.commercial {
  padding-top: 30px;
}
.g_nav ul li.privacy {
  padding-top: 0;
}
.g_nav ul li:first-child {
  width: 100%;
  padding-bottom: 40px;
}

.g_nav ul li a {
  display: inline-block;
  padding: 0 0;
  color: black;
  text-decoration: none;
  line-height: 1;
  font-size: 22px;
  font-weight: normal;
}
.g_nav ul li a .logo {
  max-width: 145px;
  margin-bottom: 0;
}
.g_nav ul li a.insta img {
  width: 50px;
}

.g_nav ul li a:hover {
  opacity: 0.9;
  position: relative;
}
.g_nav ul li a:hover.insta::after {
  content: none;
}

a.left_arrow {
  position: relative;
}
a.left_arrow::after {
  position: absolute;
  content: "";
  right: 13px;
  top: 50%;
  transform: rotate(-45deg) translateY(-50%);
  width: 6px;
  height: 6px;
  display: block;
  border-bottom: 1px solid #4d4d4d;
  border-right: 1px solid #4d4d4d;
}

.lightbox {
  position: fixed;
  z-index: 1001;
  width: calc(100% - 57px);
  display: none;
  height: 100vh;
  top: 0;
  right: 0;
}
.lightbox .bg {
  background: rgba(240, 240, 240, 0.8);
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.lightbox .boxcontent {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.lightbox .boxcontent .close_btn {
  position: absolute;
  right: 0;
  top: -80px;
}
.lightbox .boxcontent .close_btn img {
  width: 33px;
}
.lightbox .boxcontent .flex_img {
  width: 750px;
  margin: auto;
}
.lightbox .boxcontent .flex_img img {
  width: 100%;
  mix-blend-mode: darken;
}
.lightbox .boxcontent .flex_body {
  max-width: 750px;
  margin: auto;
}

#lightbox_wrapper {
  position: fixed;
  z-index: 1001;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
}
#lightbox_wrapper .lightbox {
  display: block;
}

@-webkit-keyframes animate {
  from {
    transform: scale(1.2);
  }
  to {
    transform: scale(1);
  }
}

@keyframes animate {
  from {
    transform: scale(1.2);
  }
  to {
    transform: scale(1);
  }
}
@-webkit-keyframes myMove {
  from {
    transform: scale(1, 1);
    transform-origin: 50% 50%;
  }
  to {
    transform: scale(1.1, 1.1);
    transform-origin: 50% 0%;
  }
}
@keyframes myMove {
  from {
    transform: scale(1, 1);
    transform-origin: 50% 50%;
  }
  to {
    transform: scale(1.1, 1.1);
    transform-origin: 50% 0%;
  }
}
@-webkit-keyframes discoverAnimatin {
  0% {
    background-position: bottom 0 center;
  }
  20% {
    background-position: bottom -100px center;
  }
  60% {
    background-position: bottom -100px center;
  }
  80% {
    background-position: bottom -200px center;
  }
  100% {
    background-position: bottom -200px center;
  }
}
@keyframes discoverAnimatin {
  0% {
    background-position: bottom 0 center;
  }
  20% {
    background-position: bottom -100px center;
  }
  60% {
    background-position: bottom -100px center;
  }
  80% {
    background-position: bottom -200px center;
  }
  100% {
    background-position: bottom -200px center;
  }
}
#sec1 {
  width: calc(100% - 57px);
  top: 0;
  left: 57px;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  position: absolute;
}
#sec1 .part1 {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
}
#sec1 .part1 h1 {
  padding-top: 60px;
}
#sec1 .part1 h1 img {
  width: 688px;
}
#sec1 .part1 p {
  font-size: 13px;
  color: white;
  text-align: center;
}
#sec1 .news_block {
  position: absolute;
  width: 884px;
  bottom: 76px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 20px;
  height: 80px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#sec1 .news_block .piece {
  align-items: center;
  display: inline-flex;
}
#sec1 .news_block .piece h3 {
  line-height: 1;
  font-size: 16px;
  padding: 10px 70px;
  color: #444;
  border-right: 1px solid #444;
}
#sec1 .news_block .piece h3 img {
  width: 55px;
}
#sec1 .news_block .piece h3 span {
  font-size: 12px;
  padding-left: 20px;
}
#sec1 .news_block .piece .piece_block {
  padding: 0 70px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
#sec1 .news_block .piece .piece_block .date {
  font-size: 12px;
  line-height: 1.4;
  line-height: 1;
}
#sec1 .news_block .piece .piece_block .category {
  font-size: 12px;
  padding: 0 38px;
}
#sec1 .news_block .piece .piece_block .title {
  font-size: 14px;
  line-height: 1.4;
}
#sec1 .bg {
  height: 100vh;
  width: 100%;
}
#sec1 .bg .slicker_parts .slicker_part.slider-track img {
  -webkit-animation: animate 10s forwards;
          animation: animate 10s forwards;
}
#sec1 .bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#sec1 .bg img {
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#sec1 .scroll {
  width: 100%;
  text-align: center;
  position: absolute;
  height: auto;
  bottom: 0;
}
#sec1 .scroll::after {
  margin: auto;
  display: block;
  margin-top: 20px;
  content: "";
  width: 1px;
  background: linear-gradient(to bottom, white, white 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0));
  background-size: 100% 200px;
  height: 100px;
  -webkit-animation: discoverAnimatin 2s cubic-bezier(0.79, 0, 0.15, 1) infinite;
  animation: discoverAnimatin 2s cubic-bezier(0.79, 0, 0.15, 1) infinite;
}

h2 {
  text-align: center;
  font-size: 25px;
  position: relative;
  padding-top: 56px;
  margin-bottom: 56px;
  font-weight: bold;
}
h2::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 2px;
  background: #4f4f4f;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
}

#news_sec {
  margin-top: 100vh;
}
#news_sec .part1 {
  display: flex;
  align-items: flex-start;
  gap: 26px;
}
#news_sec .part1 a {
  width: 316px;
  font-weight: 400;
}
#news_sec .part1 a img {
  width: 100%;
  height: 237px;
  -o-object-fit: cover;
     object-fit: cover;
}
#news_sec .part1 a .date {
  font-size: 12px;
  position: relative;
  margin-top: 12px;
  padding-bottom: 5px;
}
#news_sec .part1 a .date::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 1px;
  background: black;
  left: 0;
  bottom: -2px;
}
#news_sec .part1 a .title {
  padding-top: 5px;
  font-size: 14px;
}

#sec2 {
  position: relative;
  z-index: 3;
}
#sec2 .part1 {
  background: url(./../images/bg1.png) no-repeat;
  padding-top: 100px;
  text-align: center;
  background-position: top 10px left 10px;
}
#sec2 .part1 .block {
  align-items: stretch;
}
#sec2 .part1 .block .flex_img {
  position: relative;
  z-index: 3;
  width: 50%;
}
#sec2 .part1 .block .flex_img img {
  position: relative;
  z-index: 3;
  width: 100%;
  height: auto;
}
#sec2 .part1 .block .flex_body {
  background: #4d4d4d;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: left;
}
#sec2 .part1 .block .flex_body h3 {
  text-align: left;
  font-size: 25px;
  position: relative;
  margin-bottom: 30px;
  color: white;
}
#sec2 .part1 .block .flex_body h3::after {
  content: "";
  width: 148px;
  height: 2px;
  background: white;
  display: block;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
#sec2 .part1 .block .flex_body .subtitle {
  font-size: 12px;
  color: #a8d8d6;
  padding-top: 0;
  line-height: 1;
}
#sec2 .part1 .block .flex_body img {
  padding-top: 20px;
  width: 338px;
}
#sec2 .part1 .block .flex_body p {
  font-size: 13px;
  line-height: 2.3;
  color: white;
  max-width: 420px;
}
#sec2 .part1 .block .flex_body a {
  display: inline-flex;
  width: 247px;
  height: 47px;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  background: white;
  position: relative;
  margin-top: 30px;
  font-weight: 400;
}
#sec2 .part1 .block .flex_body a::after {
  width: 6px;
  content: "";
  height: 6px;
  border-right: 1px solid #4d4d4d;
  border-bottom: 1px solid #4d4d4d;
  display: inline-block;
  transform: translateY(-50%) rotate(-45deg);
  position: absolute;
  z-index: 3;
  top: 50%;
  right: 15px;
}

#sec3 {
  position: relative;
  z-index: 4;
  background: url(./../images/sec2.jpg) no-repeat;
  background-size: cover;
  height: 665px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#sec3 .part1 h2 {
  text-align: center;
  color: white;
  font-size: 25px;
  position: relative;
  padding-top: 0;
}
#sec3 .part1 h2::after {
  background: white;
}
#sec3 .part1 p {
  font-size: 13px;
  color: white;
  text-align: center;
  line-height: 2.3;
}
#sec3 .part1 a {
  background: white;
  font-size: 13px;
  width: 248px;
  height: 47px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  font-weight: 400;
}

footer {
  position: relative;
  z-index: 3;
  background: #4d4d4d;
}
footer .part0 ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
footer .part0 ul li {
  text-align: center;
}
footer .part0 ul li:first-child {
  padding: 50px 0 25px;
  width: 100%;
}
footer .part0 ul li:first-child img {
  width: 96px;
}
footer .part0 ul li a {
  color: white;
  font-size: 13px;
  padding: 0 14px;
  font-weight: 400;
}
footer .part1 {
  padding: 25px 0 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}
footer .part1 a {
  display: block;
  font-size: 11px;
  margin: auto;
}
footer .part1 a.insta {
  margin-left: auto;
  margin-right: auto;
}
footer .part1 a.insta img {
  width: 24px;
  mix-blend-mode: screen;
}
footer .part2 {
  padding-top: 0;
  padding-bottom: 60px;
  padding-right: 0;
  font-size: 12px;
  color: white;
  text-align: center;
}

#about_sec1 {
  background: url(./../images/about_fv.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  height: 620px;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  position: relative;
}
#about_sec1 .part1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#about_sec1 .part1 h2 {
  font-size: 32px;
  color: white;
  text-align: center;
  line-height: 1.4;
}
#about_sec1 .part1 h2::after {
  content: none;
}

#about_sec2 {
  background: url(./../images/about_sec1_bg.jpg);
  background-size: 100% 100%;
  padding-top: 60px;
  position: relative;
  z-index: 3;
}
#about_sec2 .bg1 {
  position: absolute;
  top: 180px;
  right: 160px;
}
#about_sec2 .part1 h2 {
  text-align: center;
  font-size: 16px;
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;
  font-weight: bold;
  color: white;
}
#about_sec2 .part1 h2::after {
  content: none;
}
#about_sec2 .part1 > p {
  font-size: 13px;
  line-height: 2.3;
  color: white;
  padding-bottom: 130px;
  padding-top: 32px;
  color: white;
}
#about_sec2 .part2 .block {
  align-items: center;
}
#about_sec2 .part2 .block .flex_img {
  width: 50%;
}
#about_sec2 .part2 .block .flex_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#about_sec2 .part2 .block .flex_body {
  flex: 1;
  width: 50%;
}
#about_sec2 .part2 .block .flex_body img {
  width: 100%;
}
#about_sec2 .part2 .block .flex_body .block_body {
  padding: 0;
  max-width: 470px;
  margin: auto;
}
#about_sec2 .part2 .block .flex_body h3 {
  text-align: left;
  font-size: 25px;
  position: relative;
}
#about_sec2 .part2 .block .flex_body h3::after {
  content: "";
  width: 64px;
  height: 2px;
  background: #ff002a;
  display: block;
  position: absolute;
  bottom: -10px;
  left: 0;
}
#about_sec2 .part2 .block .flex_body p {
  padding-top: 30px;
  line-height: 2.3;
  font-size: 15px;
}
#about_sec2 .part3 h2 {
  padding-top: 110px;
  text-align: center;
  font-size: 25px;
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;
  color: white;
}
#about_sec2 .part3 h2::after {
  background: white;
}
#about_sec2 .part3 > p {
  font-size: 13px;
  line-height: 2.3;
  color: white;
  padding-bottom: 110px;
  padding-top: 32px;
  color: white;
}

#about_sec3 {
  padding-top: 0;
  position: relative;
  z-index: 3;
}
#about_sec3 .part2 {
  text-align: center;
  padding-top: 45px;
}
#about_sec3 .part2 img {
  width: 215px;
}
#about_sec3 .part2 p {
  padding-top: 15px;
  padding-bottom: 54px;
  font-size: 12px;
}
#about_sec3 .part2 .block1 {
  display: flex;
  justify-content: center;
  padding-bottom: 80px;
}
#about_sec3 .part2 .block1 a {
  display: block;
  margin: 0 30px;
}
#about_sec3 .part2 .block1 a img {
  width: 280px;
}

#about_sec4 {
  position: relative;
  z-index: 3;
}
#about_sec4 .part1 img {
  width: 100%;
}
#about_sec4 .part2 {
  padding: 45px 0;
  background: url(./../images/bg5.png) no-repeat;
  background-position: left 100px center;
}
#about_sec4 .part2 p {
  font-size: 15px;
  text-align: center;
}

#about_sec5 .part1 {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding-top: 66px;
  padding-bottom: 60px;
}
#about_sec5 .part1 .block {
  position: relative;
  margin: 0 18px;
}
#about_sec5 .part1 .block h3 {
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#about_sec5 .part1 .block h3 .eigo {
  font-size: 31px;
  line-height: 1.4;
  color: white;
  text-align: center;
  white-space: nowrap;
}
#about_sec5 .part1 .block h3 .nihongo {
  text-align: center;
  color: white;
  font-size: 13px;
}
#about_sec5 .part2 {
  padding-bottom: 60px;
}
#about_sec5 .part2 a {
  display: block;
  width: 700px;
  margin: auto;
  font-size: 12px;
  background: #444444;
  color: white;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#contact_fv {
  background: url(./../images/contact_fv.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  height: 620px;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  position: relative;
}
#contact_fv .part1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#contact_fv .part1 h2 {
  font-size: 32px;
  color: white;
  text-align: center;
  line-height: 1.4;
}
#contact_fv .part1 h2 img {
  width: 56px;
}
#contact_fv .part1 h2::after {
  content: none;
}

#hinmoku_sec1 {
  background: url(./../images/hinmoku_sec_fv.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  height: 620px;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  position: relative;
}
#hinmoku_sec1 .part1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#hinmoku_sec1 .part1 h2 {
  font-size: 39px;
  color: white;
  text-align: center;
  line-height: 1.4;
}
#hinmoku_sec1 .part1 h2 img {
  width: 56px;
}

#hinmoku_sec2 {
  padding-top: 60px;
  position: relative;
  z-index: 3;
}
#hinmoku_sec2 .bg1 {
  position: absolute;
  top: 180px;
  right: 0;
}
#hinmoku_sec2 .bg2 {
  position: absolute;
  top: 130vw;
  left: 28%;
  width: 29vw;
}
#hinmoku_sec2 .img_wrapper {
  margin-bottom: 60px;
}
#hinmoku_sec2 .img_wrapper img {
  width: 100%;
}
#hinmoku_sec2 .part1 h2 {
  text-align: center;
  font-size: 25px;
  position: relative;
}
#hinmoku_sec2 .part1 h2::after {
  content: "";
  width: 64px;
  height: 2px;
  background: #ff002a;
  display: block;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
#hinmoku_sec2 .part1 > p {
  font-size: 15px;
  line-height: 2.3;
  padding-bottom: 60px;
  padding-top: 40px;
}
#hinmoku_sec2 .part2 .block {
  align-items: center;
}
#hinmoku_sec2 .part2 .block .flex_img {
  width: 50%;
}
#hinmoku_sec2 .part2 .block .flex_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#hinmoku_sec2 .part2 .block .flex_body {
  flex: 1;
  width: 50%;
}
#hinmoku_sec2 .part2 .block .flex_body .block_body {
  padding: 0;
  max-width: 470px;
  margin: auto;
}
#hinmoku_sec2 .part2 .block .flex_body h3 {
  text-align: left;
  font-size: 25px;
  position: relative;
}
#hinmoku_sec2 .part2 .block .flex_body h3::after {
  content: "";
  width: 64px;
  height: 2px;
  background: #ff002a;
  display: block;
  position: absolute;
  bottom: -10px;
  left: 0;
}
#hinmoku_sec2 .part2 .block .flex_body p {
  padding-top: 30px;
  line-height: 2.3;
  font-size: 15px;
}
#hinmoku_sec4 {
  position: relative;
  z-index: 3;
}
#hinmoku_sec4 .part1 img {
  width: 100%;
}
#hinmoku_sec4 .part2 {
  padding: 45px 0;
  background: url(./../images/bg5.png) no-repeat;
  background-position: left 100px center;
}
#hinmoku_sec4 .part2 p {
  font-size: 15px;
  text-align: center;
}

#store_sec1 {
  background: url(./../images/store_sec_fv.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  height: 620px;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  position: relative;
}
#store_sec1 .part1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#store_sec1 .part1 h2 {
  font-size: 39px;
  color: white;
  text-align: center;
  line-height: 1.4;
}
#store_sec1 .part1 h2 img {
  width: 56px;
}

#store_sec2 {
  padding-top: 60px;
  position: relative;
  z-index: 3;
}
#store_sec2 .bg1 {
  position: absolute;
  top: 180px;
  right: 0;
}
#store_sec2 .bg2 {
  position: absolute;
  top: 70vw;
  left: 25%;
  width: 29vw;
}
#store_sec2 .part1 h2 {
  text-align: center;
  font-size: 25px;
  position: relative;
}
#store_sec2 .part1 h2::after {
  content: "";
  width: 64px;
  height: 2px;
  background: #ff002a;
  display: block;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
#store_sec2 .part1 > p {
  font-size: 15px;
  line-height: 2.3;
  padding-bottom: 80px;
  padding-top: 40px;
}
#store_sec2 .part2 {
  line-height: 0;
}
#store_sec2 .part2 img {
  width: 100%;
}

#store_sec3 {
  position: relative;
  z-index: 3;
}
#store_sec3 .part1 img {
  width: 100%;
}
#store_sec3 .part2 {
  padding: 45px 0;
  background-position: left 100px center;
}
#store_sec3 .part2 p {
  font-size: 15px;
  text-align: center;
}

#onlineshop_sec1 {
  background: url(./../images/onlineshop_sec_fv.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  height: 620px;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  position: relative;
}
#onlineshop_sec1 .part1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#onlineshop_sec1 .part1 h2 {
  font-size: 39px;
  color: white;
  text-align: center;
  line-height: 1.4;
}
#onlineshop_sec1 .part1 h2 img {
  width: 56px;
}

#onlineshop_sec2 .part1 {
  padding: 65px 0 75px;
}
#onlineshop_sec2 .part1 h2 {
  text-align: center;
  font-size: 25px;
  position: relative;
  margin-bottom: 60px;
}
#onlineshop_sec2 .part1 h2::after {
  content: "";
  width: 64px;
  height: 2px;
  background: #ff002a;
  display: block;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
#onlineshop_sec2 .part1 p {
  padding-bottom: 30px;
  text-align: center;
  font-size: 15px;
  line-height: 2.3;
}
#onlineshop_sec2 .part1 .btn_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
#onlineshop_sec2 .part1 .btn_wrapper a {
  font-size: 15px;
  text-decoration: underline;
  padding: 0 15px;
  line-height: 1;
  border-right: 1px solid #aaa;
}
#onlineshop_sec2 .part1 .btn_wrapper a:last-child {
  border-right: none;
}
#onlineshop_sec2 .part2 {
  max-width: 1031px;
  margin: auto;
}
#onlineshop_sec2 .part2 .part_body {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 49px;
}
#onlineshop_sec2 .part2 .part_body .block {
  width: 491px;
  display: inline-block;
  position: relative;
}
#onlineshop_sec2 .part2 .part_body .block img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
#onlineshop_sec2 .part2 .part_body .block .block_content {
  flex: 1;
  padding-right: 15px;
}
#onlineshop_sec2 .part2 .part_body .block .block_body .title {
  font-size: 20px;
  font-weight: normal;
  position: absolute;
  bottom: 30px;
  width: 100%;
  text-align: center;
  color: white;
}
#onlineshop_sec2 .part2 .part_body .block .block_body .price {
  margin-left: 38px;
  font-size: 20px;
  font-weight: normal;
}
#onlineshop_sec2 .part2 .part_body .block p {
  font-size: 14px;
}
#onlineshop_sec2 .part3 {
  padding-top: 40px;
  padding-bottom: 60px;
}

#reservation_sec1 {
  background: url(./../images/reservation_sec_fv.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  height: 620px;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  position: relative;
}
#reservation_sec1 .part1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#reservation_sec1 .part1 h2 {
  font-size: 39px;
  color: white;
  text-align: center;
  line-height: 1.4;
}
#reservation_sec1 .part1 p {
  font-size: 15px;
  color: white;
  text-align: center;
  letter-spacing: 4px;
}

#reservation_sec2 {
  padding-top: 44px;
}
#reservation_sec2 .part1 {
  text-align: center;
}
#reservation_sec2 .part1 p {
  font-size: 15px;
  text-align: center;
}
#reservation_sec2 .part1 p span {
  font-size: 16px;
}
#reservation_sec2 .part1 a {
  background: #444444;
  color: white;
  font-size: 15px;
  padding: 4px 6px;
}

#reservation_sec3 {
  padding-top: 0;
  position: relative;
  z-index: 3;
}
#reservation_sec3 h2 {
  margin-bottom: 37px;
  padding-top: 70px;
  position: relative;
  padding-bottom: 0;
  font-size: 27px;
  text-align: center;
}
#reservation_sec3 h2::after {
  content: "";
  width: 37px;
  height: 2px;
  background-color: #dbefee;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
#reservation_sec3 .part1 .block {
  align-items: stretch;
}
#reservation_sec3 .part1 .block .flex_img {
  width: 50%;
}
#reservation_sec3 .part1 .block .flex_img img {
  width: 100%;
}
#reservation_sec3 .part1 .block .flex_body {
  background: #f0f0f0;
  flex: 1;
}
#reservation_sec3 .part1 .block .flex_body .block_body {
  padding: 55px 0 20px;
  max-width: 470px;
  margin: auto;
}
#reservation_sec3 .part1 .block .flex_body dl {
  padding: 15px 0;
  border-top: 1px solid #969696;
  display: flex;
  align-items: center;
}
#reservation_sec3 .part1 .block .flex_body dl dt {
  width: 90px;
  font-size: 15px;
}
#reservation_sec3 .part1 .block .flex_body dl dt iframe {
  height: auto;
}
#reservation_sec3 .part1 .block .flex_body dl dd {
  flex: 1;
  font-size: 15px;
}
#reservation_sec3 .part1 .block .flex_body dl dd a {
  font-size: 15px;
}

#botanical_sec1 {
  background: url(./../images/botanical_fv.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  height: 620px;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  position: relative;
}
#botanical_sec1 .part1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#botanical_sec1 .part1 h2 {
  font-size: 32px;
  color: white;
  text-align: center;
  line-height: 1.4;
}
#botanical_sec1 .part1 h2::after {
  content: none;
}
#botanical_sec1 .part1 h2 img {
  width: 56px;
}

#botanical_sec2 {
  margin-top: 0px;
  z-index: 3;
  position: relative;
  padding-top: 80px;
  background: #4d4d4d;
}
#botanical_sec2 h2 {
  padding-top: 0;
  color: white;
}
#botanical_sec2 h2::after {
  background: white;
}
#botanical_sec2 .part1 {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 26px;
}
#botanical_sec2 .part1 .block {
  width: 316px;
}
#botanical_sec2 .part1 .block a {
  display: block;
}
#botanical_sec2 .part1 .block a img {
  width: 100%;
  height: 316px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#botanical_sec2 .part1 .block:nth-child(3n) {
  margin-right: 0;
}
#botanical_sec2 .part2 {
  padding-bottom: 75px;
}

#botanical_sec3 .part1 .block {
  align-items: stretch;
}
#botanical_sec3 .part1 .block .flex_img {
  width: 50%;
}
#botanical_sec3 .part1 .block .flex_img img {
  width: 100%;
}
#botanical_sec3 .part1 .block .flex_body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#botanical_sec3 .part1 .block .flex_body p {
  max-width: 424px;
  margin: 0 auto 30px;
  font-size: 13px;
}
#botanical_sec3 .part1 .block .flex_body a {
  font-size: 13px;
  width: 247px;
  height: 47px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #4d4d4d;
  color: white;
  font-weight: 400;
}

#botanical_sec4 {
  position: relative;
  z-index: 4;
  background: url(./../images/botanical_sec2.jpg) no-repeat;
  background-size: cover;
  height: 665px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#botanical_sec4 .part1 h2 {
  text-align: center;
  color: white;
  font-size: 25px;
  position: relative;
  padding-top: 0;
}
#botanical_sec4 .part1 h2::after {
  background: white;
}
#botanical_sec4 .part1 p {
  font-size: 13px;
  color: white;
  text-align: center;
  line-height: 2.3;
}
#botanical_sec4 .part1 a {
  background: white;
  font-size: 13px;
  width: 248px;
  height: 47px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  font-weight: 400;
}

#flowers_sec1 {
  background: url(./../images/flowers_fv.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  height: 620px;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  position: relative;
}
#flowers_sec1 .part1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#flowers_sec1 .part1 h2 {
  font-size: 32px;
  color: white;
  text-align: center;
  line-height: 1.4;
}
#flowers_sec1 .part1 h2::after {
  content: none;
}
#flowers_sec1 .part1 h2 img {
  width: 56px;
}

#flowers_sec2 {
  margin-top: 0px;
  z-index: 3;
  position: relative;
  padding-top: 80px;
  background: #4d4d4d;
}
#flowers_sec2 h2 {
  padding-top: 0;
  color: white;
}
#flowers_sec2 h2::after {
  background: white;
}
#flowers_sec2 .part1 {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 26px;
}
#flowers_sec2 .part1 .block {
  width: 316px;
}
#flowers_sec2 .part1 .block a {
  display: block;
}
#flowers_sec2 .part1 .block a img {
  width: 100%;
  height: 316px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#flowers_sec2 .part1 .block:nth-child(3n) {
  margin-right: 0;
}
#flowers_sec2 .part2 {
  padding-bottom: 75px;
}

#flowers_sec3 .part1 .block {
  align-items: stretch;
}
#flowers_sec3 .part1 .block .flex_img {
  width: 50%;
}
#flowers_sec3 .part1 .block .flex_img img {
  width: 100%;
}
#flowers_sec3 .part1 .block .flex_body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#flowers_sec3 .part1 .block .flex_body p {
  max-width: 424px;
  margin: 0 auto 30px;
  font-size: 13px;
}
#flowers_sec3 .part1 .block .flex_body a {
  font-size: 13px;
  width: 247px;
  height: 47px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #4d4d4d;
  color: white;
  font-weight: 400;
}

#flowers_sec4 {
  position: relative;
  z-index: 4;
  background: url(./../images/flowers_sec2.jpg) no-repeat;
  background-size: cover;
  height: 665px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#flowers_sec4 .part1 h2 {
  text-align: center;
  color: white;
  font-size: 25px;
  position: relative;
  padding-top: 0;
}
#flowers_sec4 .part1 h2::after {
  background: white;
}
#flowers_sec4 .part1 p {
  font-size: 13px;
  color: white;
  text-align: center;
  line-height: 2.3;
}
#flowers_sec4 .part1 a {
  background: white;
  font-size: 13px;
  width: 248px;
  height: 47px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  font-weight: 400;
}

#news_sec1 {
  background: url(./../images/news_fv.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  height: 620px;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  position: relative;
}
#news_sec1 .part1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#news_sec1 .part1 h2 {
  font-size: 32px;
  color: white;
  text-align: center;
  line-height: 1.4;
}
#news_sec1 .part1 h2 img {
  width: 56px;
}
#news_sec1 .part1 h2::after {
  content: none;
}

#news_sec2 {
  margin-top: 0px;
  z-index: 3;
  position: relative;
  padding-top: 80px;
}
#news_sec2 .part1 {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 26px;
}
#news_sec2 .part1 .block {
  width: 316px;
}
#news_sec2 .part1 .block a {
  display: block;
}
#news_sec2 .part1 .block a img {
  width: 100%;
  height: 232px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#news_sec2 .part1 .block a .block_body {
  text-align: left;
  padding-top: 0;
}
#news_sec2 .part1 .block a .block_body .title {
  font-size: 15px;
  padding-top: 5px;
}
#news_sec2 .part1 .block:nth-child(3n) {
  margin-right: 0;
}
#news_sec2 .part2 {
  padding-bottom: 75px;
}

#news_sec3 .part1 {
  padding-bottom: 60px;
}
#news_sec3 .part1 a {
  display: block;
  max-width: 700px;
  margin: auto;
}

#news_detail_sec1 h2 {
  font-size: 25px;
  text-align: left;
  position: relative;
  margin: auto;
  margin-bottom: 30px;
  width: 820px;
  padding-top: 8px;
}
#news_detail_sec1 h2::after {
  content: none;
}
#news_detail_sec1 .date {
  font-size: 16px;
  padding-top: 75px;
  text-align: left;
  width: 820px;
  margin: auto;
}
#news_detail_sec1 .part1 .block1 {
  text-align: center;
  width: 820px;
  margin: auto;
}
#news_detail_sec1 .part1 .block1 > img {
  width: 100%;
  margin-bottom: 40px;
}
#news_detail_sec1 .part1 .block1 p {
  text-align: left;
  color: black;
  font-size: 15px;
  line-height: 2.2;
}
#news_detail_sec1 .part1 .block1 img {
  width: auto;
  display: block;
  margin: auto;
  height: auto;
}
#news_detail_sec1 .part1 .block1 a {
  text-decoration: underline;
}
#news_detail_sec1 .part1 .bottom_btn {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 100px;
}
#news_detail_sec1 .part1 .bottom_btn a {
  display: inline-block;
  font-size: 15px;
  line-height: 2;
  text-decoration: underline;
}

#onlineshop_single_sec1 .part1 {
  padding: 90px 0 60px;
}
#onlineshop_single_sec1 .part1 h3 {
  font-size: 21px;
  margin-bottom: 30px;
  line-height: 1.6;
}
#onlineshop_single_sec1 .part1 .block1 {
  align-items: flex-start;
  flex-wrap: wrap;
}
#onlineshop_single_sec1 .part1 .block1 img {
  width: 460px;
  -o-object-fit: cover;
     object-fit: cover;
}
#onlineshop_single_sec1 .part1 .block1 .img_wrapper {
  width: 542px;
}
#onlineshop_single_sec1 .part1 .block1 .img_wrapper .img_previewer .slick-slide {
  width: 542px;
  height: auto;
}
#onlineshop_single_sec1 .part1 .block1 .img_wrapper .img_previewer .slick-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#onlineshop_single_sec1 .part1 .block1 .img_wrapper .img_selects {
  margin-top: 16px;
}
#onlineshop_single_sec1 .part1 .block1 .img_wrapper .img_selects .slick-list {
  padding: 0 !important;
}
#onlineshop_single_sec1 .part1 .block1 .img_wrapper .img_selects .slick-list .slick-track {
  margin-left: 0;
}
#onlineshop_single_sec1 .part1 .block1 .img_wrapper .img_selects .slick-list .slick-track .slick-slide {
  width: auto;
  padding-right: 15px;
  height: 52px;
}
#onlineshop_single_sec1 .part1 .block1 .img_wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#onlineshop_single_sec1 .part1 .block1 .flex_body {
  padding-left: 44px;
}
#onlineshop_single_sec1 .part1 .block1 .flex_body h3 {
  font-size: 23px;
  font-weight: normal;
}
#onlineshop_single_sec1 .part1 .block1 .flex_body p {
  font-size: 15px;
  font-weight: normal;
  line-height: 2;
}
#onlineshop_single_sec1 .part1 .block1 .flex_body h4 {
  font-size: 19px;
  font-weight: normal;
  padding-top: 30px;
}
#onlineshop_single_sec1 .part1 .block1 .flex_body a {
  width: 200px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: normal;
  margin-top: 30px;
  font-size: 15px;
  background: #444;
}
#onlineshop_single_sec1 .part1 .block1 .flex_body a img {
  width: 100%;
}
#onlineshop_single_sec1 .part2 {
  padding-bottom: 80px;
}
#onlineshop_single_sec1 .part2 ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
#onlineshop_single_sec1 .part2 ul li {
  font-size: 15px;
  line-height: 1;
  border-right: 1px solid #333;
  padding: 0 7px;
}
#onlineshop_single_sec1 .part2 ul li:last-child {
  border-right: none;
}
#onlineshop_single_sec1 .part2 ul li a {
  cursor: pointer;
  text-decoration: underline;
}
#onlineshop_single_sec1 .part2 .btn_wrapper {
  margin-bottom: 40px;
  text-align: center;
}
#onlineshop_single_sec1 .part2 .btn_wrapper a {
  font-size: 15px;
  text-decoration: underline;
}

label.error {
  color: red !important;
  padding-top: 10px;
}

.wpcf7-not-valid-tip {
  font-size: 12px;
}

.wpcf7 form.sent .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  border-color: #edeeee;
  display: block;
  font-size: 12px;
  text-align: center;
}

#contact_sec2 {
  padding-top: 100px;
  position: relative;
  z-index: 2;
  margin-top: 0;
}
#contact_sec2 .part1 {
  margin: auto;
}
#contact_sec2 .part1 .form-group {
  margin-bottom: 20px;
}
#contact_sec2 .part1 .form-group label {
  display: block;
  font-size: 12px;
  margin-bottom: 20px;
  color: black;
}
#contact_sec2 .part1 .form-group input,
#contact_sec2 .part1 .form-group select,
#contact_sec2 .part1 .form-group textarea {
  color: black;
  height: 50px;
  width: 100%;
  box-sizing: border-box;
  background-color: white;
  border: none;
  padding-left: 20px;
  color: #363636;
  font-size: 15px;
}
#contact_sec2 .part1 .form-group textarea {
  height: 120px;
}
#contact_sec2 .part1 .submit_btn {
  text-align: center;
}
#contact_sec2 .part1 .submit_btn input {
  background: #4d4d4d;
  width: 100%;
  display: inline-flex;
  justify-content: center;
  font-size: 13px;
  align-items: center;
  height: 48px;
  color: white;
  border: 1px solid #464646;
}

#contact_sec3 {
  position: relative;
  z-index: 4;
  background: url(./../images/contact_sec2.jpg) no-repeat;
  background-size: cover;
}
#contact_sec3 .part1 {
  padding: 200px 0 230px;
}
#contact_sec3 .part1 h2 {
  text-align: center;
  color: white;
  font-size: 25px;
  position: relative;
}
#contact_sec3 .part1 h2::after {
  background: white;
}
#contact_sec3 .part1 p {
  font-size: 13px;
  color: white;
  text-align: center;
  line-height: 2.3;
}
#contact_sec3 .part1 a {
  background: white;
  font-size: 13px;
  width: 248px;
  height: 47px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  font-weight: 400;
}

.right_bar .banner {
  margin-bottom: 20px;
  display: block;
}

#commercial_sec1 h2 {
  text-align: center;
  padding: 75px 0 70px;
  color: black;
  font-size: 19px;
}
#commercial_sec1 .part1 {
  width: 820px;
  margin: auto;
  line-height: 2;
}
#commercial_sec1 .part1 dl {
  margin-bottom: 30px;
}
#commercial_sec1 .part1 dl dt {
  font-size: 12px;
  color: black;
}
#commercial_sec1 .part1 dl dd {
  font-size: 12px;
  color: black;
}
#commercial_sec1 .part2 .link_group {
  color: black;
  text-align: center;
  padding-top: 45px;
  line-height: 1;
  font-size: 12px;
}
#commercial_sec1 .part2 .link_group a {
  color: black;
  font-size: 12px;
}
#commercial_sec1 .bottom_btn {
  padding-top: 70px;
  padding-bottom: 100px;
  text-align: center;
  color: black;
}
#commercial_sec1 .bottom_btn a {
  font-size: 13px;
  color: black;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination a,
.pagination span {
  font-size: 12px;
  border-right: 1px solid black;
  padding: 0 5px;
  line-height: 1;
}
.pagination a:last-child,
.pagination span:last-child {
  border-right: none;
}
.pagination a {
  text-decoration: underline;
}

.content {
  max-width: 1000px;
  margin: auto;
  padding: 0 80px 80px;
}
.content .form-group {
  flex: 1;
  margin: 0 25px;
}
.content .form-group label {
  font-size: 14px;
  margin-bottom: 10px;
}
.content .form-group .wpcf7-list-item {
  margin-left: 0;
}
.content .form-group > label {
  display: flex;
  width: 288px;
  font-size: 14px;
  /* margin-bottom: 20px; */
  position: relative;
  align-items: flex-start;
  padding-top: 15px;
}
.content .form-group > label .essential {
  color: red;
}
.content .form-group .wpcf7-list-item.last {
  font-size: 13px;
  align-self: center;
}
.content .form-group .wpcf7-list-item .wpcf7-list-item-label {
  padding-right: 20px;
}
.content .form-group .wpcf7-list-item.first {
  padding-top: 7px;
}
.content .form-group .wpcf7-list-item.first label input {
  display: none;
}
.content .form-group .wpcf7-list-item.first label .wpcf7-list-item-label {
  color: #e58e55;
  font-size: 0.6rem;
  font-weight: normal;
}
.content .form-group .wpcf7-form-control-wrap {
  flex: 1;
}
.content .form-group input[type=text],
.content .form-group input[type=email],
.content .form-group input[type=tel],
.content .form-group select,
.content .form-group textarea {
  height: 50px;
  width: 100%;
  box-sizing: border-box;
  background-color: white;
  padding-left: 20px;
  color: #363636;
  border: 1px solid #999999;
  font-family: "ryumin", sans-serif;
  border-radius: 5px;
  font-size: 15px;
}
.content .form-group input[type=checkbox] {
  background-color: white;
  border-radius: 5px;
  border: 1px solid #999999;
  font-family: "ryumin", sans-serif;
  outline: none;
}
.content .form-group textarea {
  height: 120px;
  resize: vertical;
  border: 1px solid #999999;
  font-family: "ryumin", sans-serif;
  border-radius: 5px;
  padding-top: 10px;
}
.content .wpcf7-list-item.first.last {
  font-size: 13px;
  align-self: center;
  width: 100%;
  text-align: center;
  margin-left: 0;
}
.content .wpcf7-not-valid-tip {
  font-size: 0.7rem;
}
.content .submit_btn {
  text-align: center;
  margin-top: 0;
  margin: 0 25px;
}
.content .submit_btn .ajax-loader {
  display: none;
}
.content .submit_btn input {
  background: #333;
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 44px;
  color: white;
  outline: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: normal;
}
.content .submit_btn input:hover {
  opacity: 0.8;
}/*# sourceMappingURL=style.css.map */