@charset "utf-8";

/* ========================
  RESET & BASE STYLES
======================== */
* { box-sizing: border-box; }

html{
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: #3e3a39;
  line-height: 1.8;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
a:hover { opacity: 0.8; }

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.sans-en { font-family: "Jost", sans-serif; }

:focus:not(:focus-visible) {
  outline: none;
}





.wrap {
  /* ※背景固定追従のposition stickyを使うときは指定NG */
  overflow: hidden;
}
/* ↓ 変な左右の空間確認用 */
/* *{
  outline: 2px red solid;
} */



/*------------------------ 
  header
------------------------ */

/* --- MENU BUTTON --- */

.menu-btn {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity .3s, transform .3s, visibility .3s;

  position:fixed;
  top:24px;
  left:24px;
  z-index:9999;
  display:flex;
  flex-direction:column;
  align-items:center;
  border:none;
  background:none;
  cursor:pointer;
  color:#3e3a39;
}
.menu-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.hamburger {
  width:32px;
  height:20px;
  position:relative;
}
.hamburger span {
  position:absolute;
  left:0;
  width:100%;
  height:1px;
  background:#3e3a39;;
  transition:.35s;
  /* filter:drop-shadow(0 1px 3px rgba(0,0,0,.5)); */
}
.hamburger span:nth-child(1) {
  top:0;
}
.hamburger span:nth-child(2) {
  top:9px;
}
.hamburger span:nth-child(3) {
  bottom:0;
}
.menu-text {
  margin-top:5px;
  font-size:10px;
  letter-spacing:.16em;
  /* text-shadow:0 1px 4px rgba(0,0,0,.8); */
}

/* --- OPEN --- */

/* OPEN時スクロールOFF */
body.menu-open {
  overflow:hidden;
}
.menu-btn.active .hamburger span{
    background: #3e3a39;
}
.menu-btn.active .hamburger span:nth-child(1) {
  top:9px;
  transform:rotate(45deg);
}
.menu-btn.active .hamburger span:nth-child(2) {
  opacity:0;
}
.menu-btn.active .hamburger span:nth-child(3) {
  bottom:9px;
  transform:rotate(-45deg);
}
.menu-btn.active .menu-text::after {
  color:#3e3a39;
  content:"CLOSE";
}
.menu-btn.active .menu-text {
  font-size:0;
}
.menu-btn.active .menu-text::after {
  font-size:9px;
  letter-spacing:.14em;
}

/* --- MENU --- */

.menu-overlay {
  position:fixed;
  inset:0;
  display:flex;
  align-items: flex-start;
  padding-top: 10vh;
  background:#fff;
  opacity: 0.98;
  transform:translateX(-100%);
  transition:.45s ease;
  z-index:1000;
}
.menu-overlay.active {
  transform:translateX(0);
}
.menu-nav {
  width:100%;
  padding-left:15%;
}
.menu-nav ul {
  list-style:none;
}
.menu-nav li {
  margin:24px 0;
}
.menu-nav a {
  text-decoration:none;
  color:#3e3a39;
  font-size:26px;
  letter-spacing:.07em;
}

/* ------ */

@media(min-width:992px) {
  .menu-overlay {
    width:460px;
    height:100vh;
    box-shadow:10px 0 40px rgba(0,0,0,.08);
  }
}

@media(max-width: 991px) {
  .menu-btn {
    top:24px;
    left:18px;
  }
  .menu-overlay {
    padding-top: 10vh;
  }
  .menu-nav{
    padding-left:10%;
  }
}

@media(max-width: 575px) {
  .menu-nav a {
    font-size:24px;
  }
}


/*------------------------ 
  fade ページふわっと表示
------------------------ */

.fade{
  opacity: 0;
  transition: opacity 2.2s ease-out;
}

.fade.show{
  opacity: 1;
}


/*------------------------ 
  hero
------------------------ */

.hero_wrap {
  position: relative;
  height: 85vh;
  overflow: hidden;
}
#mainvisual {
  height: 100%;
}
.hero_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*ロゴ */
.hero_logo {
  position: absolute;
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.hero_logo img {
  width: 140px;
  height: auto;
}

/* ------ */

@media (max-width: 991px) {

  .hero_wrap {
    height: auto;
  }
  .hero_logo img {
    width: 90px;
  }
}

@media (max-width: 768px) {

  .hero_logo img {
    width: 80px;
  }

}

@media (max-width: 575px) {
  .hero_img_sp {
    width: 100%;
    height: auto;
  }
  .hero_logo {
    top: 20%;
    left: 50%;
  }
  .hero_logo img {
    width: 100px;
  }
}

@media (max-width: 375px) {
  .hero_wrap {
    height: auto;
    max-height: 92vh;
  }
  .hero_logo {
    top: 22%;
    left: 50%;
  }
  .hero_logo img {
    width: 90px;
  }

}


/* --- SCROLL --- */

.scrolldown {
  position: absolute;
  left: 10%;
  bottom: 0px;
  height: 110px;
  z-index: 999;
}
.scrolldown span {
  position: absolute;
  left: 15px;
  bottom: 30px;
  color: #3e3a39;
  font-size: 1rem;
  letter-spacing: 1px;
}
/* 線の描写 */
.scrolldown::after{
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 50px;
  background: #3e3a39;
  animation: pathmove 1.4s ease-in-out infinite;
  opacity:0;
}
/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
  0% {
    height:0;
    top:0;
    opacity: 0;
  }
  50% {
    height: 50px;
    opacity: 1;
  }
  100% {
    height:0;
    top: 100px;
    opacity: 0;
  }
}



/*------------------------ 
  lead
------------------------ */

#lead {
  position:relative;
  overflow:hidden;
  background: #fff;
  padding: 8% 0;
}

/* --- PC画像 --- */
/* PC */
.lead_img {
  position: absolute;
  top: 100px;
  left: 0;
  z-index: 1;
  width: 50%;
}
.lead_img img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.4;
}

/* --- テキスト --- */
.lead_content {
  position:relative;
  z-index:2;
  margin: 0 auto;
  text-align:center;
}
.lead_en {
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 42px;
  letter-spacing: .05em;
  font-weight: 600;
  margin-bottom: 24px;
}
.lead_catch {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8;
  margin-bottom: 40px;
}
.lead_text {
  font-size: 14px;
  line-height: 2.2;
  margin-bottom: 28px;
}
.lead_text:last-child {
  margin-bottom: 0;
}

/* ボタン */
.lead_btn {
  display:flex;
  align-items:center;
  justify-content:center;
  width:280px;
  height:54px;
  margin: 60px auto 0;
  font-size:16px;
  font-weight:500;
  letter-spacing:.08em;
  text-decoration:none;
  transition:.35s ease;
  background:#fff;
  color:#3e3a39;
  border:1px solid #3e3a39;
  position:relative;
  z-index:10;
}
.lead_btn:hover {
  background:#3e3a39;
  color:#fff;
  text-decoration: none;
}

/* ------ */

@media(max-width: 991px) {

  .lead_img {
    width: 70%;
    top: 70px;
    left: 0;
  }

  .lead_img img {
    opacity: 0.3;
  }

  .lead_content{
    max-width: 100%;
    padding: 0;
  }
 
  .lead_catch{
    font-size: 15px;
    margin-bottom: 32px;
  }
  .lead_text{
    font-size: 12px;
    line-height: 2.1;
    margin-bottom: 24px;
  }
  .lead_btn {
    width:90%;
    max-width:320px;
    height:50px;
    margin-top: 50px;
    line-height:1;
    font-size:15px;
  }

}

@media (max-width: 575px) {

  .lead_img {
    width: 100%;
    top: 0px;
    left: 0;
  }

  #lead {
    padding:15% 0;
  }


}

@media (max-width: 375px) {

}



/*------------------------ 
  各コンテンツ
------------------------ */

/* --- section head --- */

.sec_head {
  text-align:center;
  max-width:600px;
  margin:0 auto 80px;
}
.sec_title {
  margin: 0 0 15px;
  text-align: center;
}
.sec_title img {
  height: 40px;
  width: auto;
  display: block;
  margin: 0 auto;
}
.sec_kana {
  font-size:12px;
  letter-spacing:.15em;
  margin-bottom:40px;
}
.sec_lead {
  font-size:14px;
  line-height:2.2;
  letter-spacing:.15em;
}

/* ------ */

@media(max-width:991px){

  .sec_title img {
    height: 38px;
  }

  .sec_lead {
    font-size:12px;
    line-height:2.2;
    letter-spacing:.1em;
  }

  .sec_head {
    margin-bottom:40px;
  }
  .sec_kana {
    margin-bottom:32px;
  }

}

@media (max-width: 767px) {

  .sec_title img {
    height: 35px;
  }

}

@media (max-width: 575px) {

  .sec_title img {
    height: 30px;
  }

}


@media (max-width: 460px) {

  .sec_lead {
    margin: 0 auto;
    width: 95%;
    text-align: left;
  }
  .sec_lead_br {
    display: none;
  }
}

@media (max-width: 375px) {

  .sec_title img {
    height: 28px;
  }


}

/* --- content --- */

.content_list {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap: 40px;
}
.content_item {
  text-align:left;
  width: 90%;
    margin:0 auto;
}
.content_img img {
  display:block;
  width:100%;
  height:auto;
}
.content_body {
  margin-top:24px;
}
.content_title {
  color: #23627c;
  font-size:16px;
  font-weight:600;
  line-height:1.8;
  margin-bottom:10px;
}
.content_text {
  font-size:13px;
  line-height:2;
}

/* ------ */

@media screen and (max-width: 1200px) {

  .content_list {
    gap: 0;
  }
  .content_item {
    width: 80%;
  }

}


@media(max-width:767px){

  .content_list {
    display:block;
  }
  .content_item {
    width: 90%;
    padding-bottom: 10px;
    margin: 0 auto;
  }
  .content_body {
    margin-top: 20px;
  }
  .content_title {
    font-size:15px;
    margin-bottom:12px;
  }
  .content_text{
    font-size:13px;
  }

}


/*------------------------ 
  features
------------------------ */

#features{
  padding: 5% 0 10%;
}


@media (max-width: 575px) {
  #features{
    padding: 8% 0 10%;
  }
}


/*------------------------ 
  sustainability
------------------------ */

#sustainability {
  padding:0;
}
.sus_bg {
  width: 100%;
  max-width: 1460px;
  margin: 0 auto;
  padding: 80px 0;
  background-color: #e1f0f8;
}
.sus_wrap {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}
/* text */
.sus_content {
  max-width:460px;
  margin:0 auto;
}
.sus_en {
  font-size:43px;
  letter-spacing:.1em;
  margin-bottom:0;
  text-align:center;
}
.sus_kana {
  font-size:12px;
  letter-spacing:.15em;
  margin-bottom:40px;
  text-align:center;
}
.sus_text {
  text-align:left;
  font-size:14px;
  line-height:2.3;
}
/* image */
.sus_img img {
  display:block;
  width:85%;
  height:auto;
}

/* ------ */

@media(max-width:1200px) {
  .sus_wrap {
    gap:20px;
  }
}




@media(max-width:991px) {

  .sus_bg {
    width: 90%;
    padding: 60px 0 40px;
  }
  .sus_img img {
    width: 95%;
    margin: 0 auto;
  }
  .sus_text {
    text-align:center;
  }
  .sus_wrap{
    grid-template-columns:1fr;
    gap:40px;
  }
  .sus_content{
    max-width:100%;
  }
  .sus_en{
    font-size:34px;
  }
  .sus_kana{
    margin-bottom:32px;
  }

}

@media(max-width:575px) {



  .sus_bg {
    width: 100%;
    padding: 50px 0;
  }
  .sus_text {
    text-align:left;
    font-size:13px;
    line-height:2;
  }
  .sus_content {
    width: 90%;
  }

  .sus_en {
    font-size:30px;
  }
  .sus_kana {
    font-size: 11px;
  }

}


/*------------------------ 
  lineup
------------------------ */

#line-up {
  padding: 10% 0;
}
.lineup_list {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}
.lineup_item {
  display:flex;
  flex-direction:column;
  text-align:center;
}
.lineup_img img {
  display:block;
  width:100%;
  height:auto;
}
.lineup_title {
  color:#23627c;
  font-size:16px;
  font-weight:600;
  line-height:1.8;
  margin:24px 0 15px;
}
.lineup_text {
  font-size:13px;
  line-height:2;
  margin-bottom:24px;
  text-align:left;
  flex:1;
}
/* 詳細ボタン */
.lineup_btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:160px;
  height:44px;
  padding:0 28px;
  margin-top:auto; 
  background:#3e3a39;
  border:1px solid #3e3a39;
  border-radius:30px;
  color:#fff;
  text-decoration:none;
  font-size:13px;
  letter-spacing:.08em;
  transition:.3s ease;
  align-self:center;
}
/* hover */
.lineup_btn:hover {
  background:#fff;
  color:#3e3a39;
  text-decoration: none;
}

.lineup_btn_br {
  display: none;
}

/* ------ */

@media(max-width: 1200px) {

  .lineup_list {
    gap:20px;
  }
  .lineup_btn_br {
    display: block;
  }
  .lineup_btn {
    width: 80%;
    height:auto;
    min-height:44px;
    font-size:12px;
    line-height:1.4;
    padding:6px 12px;
    flex-direction:column;
  }

}

@media(max-width: 991px) {

  .lineup_list {
    grid-template-columns:repeat(2,1fr);
    gap:50px 15px;
  }
  .lineup_text {
    margin-bottom:28px;
    text-align:center;
  }
  .lineup_btn {
    width: 85%;
    height:auto;
    font-size:13px;
    line-height:1.4;
    padding:5px 12px;
    /* flex-direction:column; */
  }

}

@media (max-width: 767px) {

  #line-up {
    padding:60px 0 100px;
  }

  .lineup_title {
    font-size:14px;
    margin-top:18px;
    margin-bottom: 10px;
  }
  .lineup_text {
    font-size:12px;
    width: 96%;
    margin: 0 auto 18px;
  }

}

@media(max-width: 575px) {

  .lineup_title {
    margin-top:18px;
  }
  .lineup_text {
    text-align:left;
  }

}

@media(max-width: 375px) {

  .lineup_title {
    font-size:13px;
  }
  .lineup_btn {
    font-size: 12px;
  }

}


/*------------------------ 
  plant-pot
------------------------ */

#plant-pot {
  padding: 5% 0 10%;
}
.pp_wrap {
  display:flex;
  align-items:center;
  gap:70px;
}

/* Slider */
.pp_slider {
  width:58%;
  flex-shrink:0;
}
.pp_slider img {
  display:block;
  width:100%;
  aspect-ratio:7 / 6;
  object-fit:cover;
}
.pp_slider .slick-dots {
  bottom:-35px;
}
.pp_slider .slick-dots li button:before {
  font-size:10px;
  color:#3e3a39;
  opacity:.3;
}
.pp_slider .slick-dots li.slick-active button:before {
  opacity:1;
}

/* Content */
.pp_content {
  flex:1;
  margin-top: -3%;
}
.pp_title {
  margin-bottom:18px;
  font-size:21px;
  letter-spacing:.08rem;
  font-weight: 500;
}
.pp_text {
  margin-bottom:23px;
  font-size:14px;
  line-height:2.2;
}
.pp_btn {
  display:inline-flex;
  justify-content:center;
  align-items:center;
  width:260px;
  height:48px;
  margin-top:10px;
  border:1px solid #3e3a39;
  background:#3e3a39;
  color:#fff;
  text-decoration:none;
  transition:.3s;
  font-size: 14px;
}
.pp_btn:hover {
  border:1px solid #3e3a39;
  background:#fff;
  color:#3e3a39;
  text-decoration:none;
}

/* ------ */

@media (max-width:1200px){
  .pp_wrap {
    gap:50px;
  }
  .pp_slider {
    width:50%;
    flex-shrink:0;
  }
}

@media (max-width:991px){

  #plant-pot {
    padding: 5% 0 5%;
  }

  .pp_wrap {
    flex-direction:column;
  }

  .pp_slider {
    width:100%;
    flex:none;
  }
  .pp_slider img {
    aspect-ratio:3 / 2;
  }

  .pp_content {
    width:100%;
    margin-top: 0;
    text-align:center;
  }

  .pp_btn {
    width:100%;
    max-width:320px;
    height:50px;
    margin-top: 30px;
    margin-bottom: 50px;
  }

}

@media (max-width:575px){

  #plant-pot {
    padding: 0 0 5%;
  }
  .pp_text {
    font-size:13px;
    line-height:2;
    margin-top: -10px;
    padding-bottom: 5px;
  }
  .pp_title {
    margin-bottom:25px;
    font-size:20px;
  }
  .pp_btn {
    margin-top: 10px;
  }

}

@media (max-width: 393px) {
  .pp_text {
    margin: 0 auto 5px;
    text-align-last: left;
    width: 90%;
  }
  .pp_text_br {
    display: none;
  }
    .pp_btn {
    margin-top: 20px;
  }

}




/*------------------------ 
  link-btn
------------------------ */

#link-btn {
  padding:100px 0;
  background:#fff;
}
.link_btns {
  display:flex;
  justify-content:center;
  gap:50px;
}
.link_btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:280px;
  height:54px;
  font-size:18px;
  font-weight: 500;
  letter-spacing:.08em;
  text-decoration:none;
  transition:.35s ease;
}
.link_btn_black {
  background:#3e3a39;
  color:#fff;
  border:1px solid #3e3a39;
}
.link_btn_black:hover {
  background:#fff;
  color:#3e3a39;
  text-decoration:none;
}
.link_btn_white {
  background:#fff;
  color:#3e3a39;
  border:1px solid #3e3a39;
}
.link_btn_white:hover {
  background:#3e3a39;
  color:#fff;
  text-decoration:none;
}



/* ------ */

@media (max-width:991px){

  #link-btn {
    padding:70px 0;
  }
  .link_btns {
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:16px;
  }
  .link_btn {
    width:90%;
    max-width:320px;
    height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    line-height:1;
  }
  #lead .link_btns {
    margin-top: 50px;
  }

}

/*------------------------ 
  footer
------------------------ */

#footer {
  background:rgba(35,24,21,.7);
  padding:50px 0;
  color:#fff;
}
.footer_inner{
  display:flex;
  align-items:center;

  max-width:1200px;
  margin:0 auto;

  justify-content:center;
}
/* 左ロゴ */
.footer_logo {
  width:20%;
  text-align:right;
  padding-right:60px;
}
.footer_logo img {
  display:block;
  width:65px;
  height:auto;
  margin-left:auto;
}
/* 右 */ 
.footer_menu {
  width:70%;
}
.footer_title {
  font-size:16px;
  /* font-weight: 500; */
  letter-spacing:.11em;
  margin-bottom:8px;
}
.footer_menu ul {
  display:flex;
  flex-wrap:wrap;
  gap:20px 15px;
  list-style:none;
  padding:0;
  margin:0;
}
.footer_menu li {
  font-size:16px;
  letter-spacing:.08em;
}
.footer_menu a {
  color:#d6d5d5;
  text-decoration:none;
  transition:.3s;
}
.footer_menu a:hover {
  opacity:.7;
  text-decoration: underline;
}

/* ------ */

@media(max-width:991px){

  #footer {
    padding:30px 0;
  }
  .footer_inner {
    display:flex;
    flex-direction:row;
    align-items:center;
    max-width:none;
  }
  .footer_title {
    font-size:14px;
    margin-bottom:8px;
  }
  .footer_menu ul {
    gap:5px 10px;
  }
  .footer_menu li {
    font-size:12px;
  }

}

@media (max-width: 575px) {

  .footer_logo {
    width:25%;
    padding-right:30px;
    text-align:right;
  }
  .footer_logo img {
    width: 75%;
    margin-left:auto;
  }
  .footer_menu {
    width:75%;
  }
}

/*------------------------
  copyright
------------------------*/

.copyright {
  background:#3e3a39;
  color:#fff;
  padding:3px 0;
  text-align:center;
  font-size:12px;
  letter-spacing:.08em;
}
.copyright a {
  color:#fff;
  text-decoration:none;
  transition:.3s ease;
}
.copyright a:hover {
  opacity:.6;
}

/* ------ */

@media(max-width:991px){
  .copyright {
  font-size:10px;
}

}

/*------------------------
  pagetop
------------------------*/

.pagetop {
  position:fixed;
  right:30px;
  bottom:50px;
  width:50px;
  height:50px;
  display:flex;
  align-items:center;
  justify-content:center;
  border: solid 1px #3A302C;
  background:#fff;
  border-radius:50%;
  opacity:0;
  visibility:hidden;
  transition:.4s ease;
  z-index:100;
}
.pagetop::before {
  content:"";
  width:12px;
  height:12px;
  border-left:2px solid #3A302C;
  border-top:2px solid #3A302C;
  transform:rotate(45deg);
  margin-top:6px;
}
.pagetop:hover {
  background:#3A302C;
}
.pagetop:hover::before {
  border-color:#fff;
}
.pagetop.show {
  opacity:1;
  visibility:visible;
}

/* ------ */

@media(max-width:991px){

  .pagetop {
    right:25px;
    bottom:35px;
    width:40px;
    height:40px;
  }
  .pagetop::before {
    width:10px;
    height:10px;
  }

}










/* ========================
  Generic class
======================== */
.section:after,
.container:after,
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}
.section,
.container,
.clearfix {zoom:1;}



@media (min-width: 576px) {
  .container {
    padding-right: 0;
    padding-left: 0;
  }
}


.only_pc {display: block;}
.only_pc_i {display: inline;}
.only_pc_tb {display: block;}
.only_pc_tb_ib {display: inline-block;}
.only_tb {display: none;}
.only_tb_sp {display: none;}
.only_sp {display: none;}


@media (max-width: 1200px) {
  .only_pc_i {display: none;}
}


@media (min-width: 576px) and (max-width: 991px){
	.only_pc {display: none;}
	.only_pc_tb {display: block;}
  .only_pc_tb_i {display: inline-block;}
	.only_tb {display: block;}
	.only_tb_sp {display: block;}
	.only_sp {display: none;}
}
@media (max-width: 575px) {
	.only_pc {display: none;}
	.only_pc_tb {display: none;}
  .only_pc_tb_i {display:none;}
	.only_tb {display: none;}
	.only_tb_sp {display: block;}
	.only_sp {display: block;}
}