@charset "UTF-8";
/* CSS Document */
html {
  scroll-behavior: smooth;
}
/*基準を1rem=10pxに設定*/
html {
  font-size: 62.5%;
}
body {
  color: #121212;
  font-family: 'Noto Sans JP', sans-serif;
}
a {
  color: #121212;
  text-decoration: none;
}
img {
  /*max-width: 100%;*/
  vertical-align: bottom;
}
li {
  list-style: none;
}
p {
  font-size: clamp(1.0rem, calc(0.9rem + 0.625vw), 1.4rem);
  line-height: 2;
}
ul{
    padding: 0;
    list-style: none;
}
.category-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.category-list-item{
    margin: 0 5px;
}
/*==================================================
機能編　6-1-6 複数画像を並列に見せる
===================================*/
.slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
   width:100%;
    margin:0 auto;
}

.slider img {
    width:100%;/*スライダー内の画像を横幅100%に*/
    height:auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/
  /* ここにパソコン向けのCSSを記述 */ 
.slider .slick-slide {
    margin: 0 0.5% 5px 0.5% ;
}

.slick-track{
	display: flex !important;
    justify-content: flex-start!important;
}
li.slick-slide {
    width: 24% !important;
}


/*矢印の設定*/

/*戻る、次へ矢印の位置*/

/*ドットナビゲーションの設定*/

.slick-dots {
    text-align:center;
	margin:0 0 0px 0;
}

.slick-dots li {
    display:inline-block;
	margin:0 5px;
}

/*===========================================================*/
/* 機能編 5-3-1中心から外に線が伸びる（下部）*/
/*===========================================================*/

.sort-btn{
	display: flex;
	justify-content: center;
	margin:50px 0;
	list-style: none;
    text-transform: uppercase;
}

.sort-btn li{
	position: relative;
    cursor: pointer;
    margin: 0 20px;
}

.sort-btn li::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom:-5px;
    left: 25%;
    /*線の形状*/
    width: 50%;
    height: 2px;
    background:#a0a0a0;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0, 1);/*X方向0、Y方向1*/
    transform-origin: center top;/*上部中央基点*/
}

/*現在地とhoverの設定*/
.sort-btn li.active::after,
.sort-btn li:hover::after{
    transform: scale(1, 1);/*X方向にスケール拡大*/
}

/*横幅が375px以下になった際の指定*/
@media only screen and (max-width: 375px) {
.sort-btn{
    flex-wrap: wrap;
	justify-content: space-between;
}
	
.sort-btn li{
	width:48%;
	margin:0 0 10px 0;
	text-align:center;
	}	
}

/*@keyframes rotation1{
  0%{ transform:rotateY(0);}
  100%{ transform:rotateY(360deg); }
}
.bright.trigger.move{
  animation:5s linear infinite rotation1;
}*/
/*最小値:1.1rem → 可変（0.9rem + 0.625vw（画面幅320px:2px, 800px:5px, 1200px:7.5px））→ 最大値:1.6rem*/
.sS {
  font-size: clamp(1.1rem, calc(0.9rem + 0.625vw), 1.6rem);
}
/*最小値:1.2rem → 可変（1rem + 0.625vw（画面幅320px:2px, 800px:5px, 1200px:7.5px））→ 最大値:1.7rem*/
.sM {
  font-size: clamp(1.2rem, calc(1rem + 0.625vw), 1.7rem);
}
/*最小値:1.6rem → 可変（2.2rem + 0.625vw（画面幅320px:2px, 800px:5px, 1200px:7.5px））→ 最大値:2.9rem*/
.sL {
  font-size: clamp(2.4rem, calc(2.2rem + 0.625vw), 2.9rem);
}
/*最小値:1.6rem → 可変（2.2rem + 0.625vw（画面幅320px:2px, 800px:5px, 1200px:7.5px））→ 最大値:2.9rem*/
.sLL {
  font-size: clamp(7rem, calc(2.2rem + 0.625vw), 9.9rem);
}
.ei {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-style: normal;
	    color: #484848;
}
.wrapper_contain {
  width: 100%;
  margin: 0;
}
main {
  width: 100%;
  overflow: hidden;
}
/* ビデオ切り替え */
.sp-video {
  display: block;
}
.pc-video {
  display: none;
}
.sp {
  display: block;
}
.pc {
  display: none;
}
#pcfv{
	position: relative;
    width: 100vw;
    height: 100svh;
    overflow: hidden;
    z-index: 1005;
}
#pcfv #fv_bg > img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  min-width: 100%;
  min-height: 100%;
}
#pcfv .logo_img{
  -webkit-transform: translate(-50%, -50%);
  left: 53%;
  position: absolute;
  text-align: center;
  top: 48%;
  transform: translate(-50%, -50%);
  width: 50%;
  z-index: 10;
	}

#videosp1  video{
	max-width: 750px;
	width: 100%;
}
@media screen and (min-width: 821px) {
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
  .sp-video {
    display: none;
  }
  .pc-video {
    display: block;
  }
}
/* 右下メニュー */
.right_contain {
  position: fixed;
  /* width: 200px; */
  /* height: 200px; */
  bottom: 2%;
  right: 2%;
  z-index: 4000;
}
.right_contain .block {
  position: relative;
  width: 100%;
  height: 100%;
}
.circle {
  overflow: visible;
  -webkit-animation: rotation 18s linear infinite;
  animation: rotation 18s linear infinite;
}
.right_contain .botan {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* サイドメニューの横幅分だけ左にmarginをとる */
.container {
  /*margin-left: 300px;*/
}
/* コンテンツ幅を設定するための共通クラス */
.wrapper {
  max-width: 900px;
  padding: 80px 20px;
  margin: 0 auto;
}
.site-title {
  line-height: 1px;
  margin-bottom: 30px;
}
.site-title a {
  display: block;
}
.site-title img{
	width: 100%;
}
@media screen and (max-width: 822px) {
#fv {
    position: relative;
    width: 100vw;
    height: 28svh;
	min-height: 220px;
    overflow: hidden;
    z-index: 0;
}
	#fv > img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
		width: 100%;
    min-width: 100%;
    min-height: 100%;
}
	#video .logo_img {
    top: 10%;
    width: 90%;
    max-width: 524px;
    /* mix-blend-mode: overlay; */
}
}
/*-------------------------------------------
ヘッダー
-------------------------------------------*/

#header {
  height: 100%;
  background-color: #ffffffcf;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(24px);
  padding: 40px 1% 0px 1.5%;
  position: fixed;
  top: 0;
  /* 画面の高さが低くてメニューが隠れてしまった場合に、縦スクロールが出るよう設定 */
  overflow-y: auto;
  z-index: 5000;
}
.site-title{
	width: 170px;
}
#header .nav-menu {
  margin-bottom: 60px;
}
#header li {
  font-size: clamp(1.1rem, calc(0.9rem + 0.625vw), 1.6rem);
  padding: 8px 0;
  /*font-family: "Jost", sans-serif;*/font-family: "DM Serif Display", serif;
}
ul.nav-sns {
    display: -webkit-flex;
    display: flex;	
}
img.to_insta {
  width: 30px;
  margin-right: 10px;
}
img.to_tel {
  width: 30px;
}
.box {
  width: 100%;
  height: 100svh;
  background: -moz-linear-gradient(315deg, rgba(255, 255, 255, 1) 49%, rgba(235, 235, 235, 1) 100%);
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 1) 49%, rgba(235, 235, 235, 1) 100%);
  background: linear-gradient(315deg, rgba(255, 255, 255, 1) 49%, rgba(235, 235, 235, 1) 100%);
  background-size: cover;
  mix-blend-mode: multiply;
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
}

/*-------------------------------------------
Video
-------------------------------------------*/
/*
動画を全画面表示
*/
#video {
  position: relative;
  width: 100vw;
  /*height: 100svh;*/
  overflow: hidden;
  z-index: 1005;
}
.video_no{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  min-width: 100%;
  min-height: 100%;
}
/*
「position: fixed;」で動画を固定し、「top: -220px;」で表示位置を調整
z-indexでマイナスを設定して、他のコンテンツの下に隠れるようにする
*/
#video .bg-video {}
#video > video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  min-width: 100%;
  min-height: 100%;
}
#video .logo_img {
  -webkit-transform: translate(-50%, -50%);
  left: 50%;
  position: fixed;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  max-width:524px;
  z-index: 10;
	transition: 1s;
  /*mix-blend-mode: overlay;*/

}

#video .logo_img img{
	width: 100%;
    animation: 1s canplay_logo linear both;
    transform: scale(1);
    opacity: 0.8;
}
#video .logo_img.move{
    opacity: 0;
}
@keyframes canplay_logo{
from {
transform: scale(1);
opacity: 0;
}
to {
transform: scale(1);
opacity: 1;
}
}
section {
  position: relative;
  overflow: hidden;
}
.s_s1 {
  /*padding: 10% 0;*/
  padding: 10% 0 10% 1%;
}


.inner {
  margin-left: 250px;
  width: calc(100% - 250px);
}

.cont {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
section#concept {
    z-index: 10;
    /* position: relative; */
    background: #ffffff;
}
#concept .cont {
  flex-wrap: nowrap;
}
#concept .cont1 {
  width: 40%;
  min-width: 400px;
}
#concept .cont2 {
  margin-top: -5%;
  width: 21.5%;
  padding-right: 2%;
  height: 300px;
  overflow: hidden;
}
#concept .cont3 {
  width: 30%;
  height: 80svh;
  overflow: hidden;
  text-align: center;
}
#concept .cont4 {
	display: none;
  position: absolute;
  height:28%;
  bottom: 7%;
  width: 47%;
  overflow: hidden;
}
#concept .cont5 {
  display: none;
}
.bright {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0%;
  left: 10%;
  width: 80%;
  height: 80%;
  mix-blend-mode: screen;
  z-index: 2000;
}
.bright.trigger.move {
  animation: 5s linear infinite shine01;
  right: 0;
}
.bright img {
  width: 100%;
}
@keyframes shine01 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 80
  }
  100% {
    opacity: 0
  }
}

.concept_bottom img{
	width: 100%;
	
}
#concept_after {
    z-index: 3000;
	    height: 70vh;
}
#concept_after{
    content: "";
    background: url(../img/bg_p_pcs.jpg) center center / cover no-repeat;
  background-attachment: fixed;
	height: 70vh;
}
/*-------------------------------------------
ギャラリー
-------------------------------------------*/
section#gallery1 {
  z-index: 2000;
  background: #f7f7f7;
}
section#gallery2 {
  z-index: 2000;
  background: #FFFFFF;
}
section#gallery1 .s_s1,section#gallery2 .s_s1{
	padding: 4% 3% 7% 1%;
}/* 初期状態ではflower-containの中身を非表示 */
.flower-contain .sort-item {
  display: none;
}
div.flower-contain{
	display: flex;
	flex-wrap: wrap;
  justify-content:
  flex-start; 
	width: 100%;
}
.flower-contain div img {
    width: 100%;
    display: block;
    height: 100%;
	
}
/*.flower-contain div img {
  width: 100%;
  display: block;
  height: 50svh;
  object-fit: cover;
}*/
.card p {
  font-size: 10px;
  color: #6B6B6B;
  line-height: 1.5;
}
.card a {
  color: #6B6B6B;
}
.card img {
  margin-right: 0px !important;
  margin-left: 0px !important;
}
#gallery1 .flower-contain .card {
  position: relative;
  width: 24%;
  min-width: 24%;
  margin: 0.5%;
  height: auto;
}
#gallery1 .flower-contain .card p{
    position: absolute;
    bottom: 10px;
    right: 10px;
	font-size: 12px;
    font-family: YuMincho, "Hiragino Mincho ProN", serif;
    text-align: right;
	
} 
#gallery1 .flower-contain .card .text {
    color: #FFFFFF;
    text-shadow: 0 0 3px #808080,0 0 3px #808080;
}
#gallery1 .flower-contain .card .text_w {
    color: #FFFFFF;
    text-shadow:0 0 3px #555555,0 0 3px #333333,0 0 2px #333333;
}
#gallery1 .flower-contain .card .text_b {
    color: #000000;
    text-shadow: 0px 0px 5px #ffffff,0px 0px 3px #ffffff,0px 0px 3px #ffffff,0px 0px 3px #ffffff,0px 0px 3px #ffffff,0px 0px 3px #ffffff,0px 0px 3px #ffffff,0px 0px 3px #ffffff,0px 0px 3px #ffffff;
}
#gallery1 .flower-contain .card.tyuki{
	width: 100%;
	font-size: 12px;
	background: #bdbdbd;
    color: #ffffff;
	text-align: center;
}

.linktext, .linktext a {
    color: #ffffff;
}
.flower-contain .card .line.trigger.move {
  --borderWidth: 1px;
  background: #ffffff;
  position: relative;
  border-radius: var(--borderWidth);
}
.flower-contain .card .line.trigger.move:after { /*グラデーション設定。位置は先ほどの変数を代入してclacで計算*/
  content: '';
  position: absolute;
  top: calc(-1 * var(--borderWidth));
  left: calc(-1 * var(--borderWidth));
  height: calc(100% + var(--borderWidth) * 2);
  width: calc(100% + var(--borderWidth) * 2);
  background: linear-gradient(60deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);
  z-index: -1;
  animation: animatedgradient 2s ease-out alternate;
  background-size: 300% 300%;
  animation-fill-mode: forwards;
  animation-iteration-count: 2;
  opacity: 0;
}
@keyframes animatedgradient { /*アニメーション設定*/
  0% {
    background-position: 0% 50%;
    opacity: 0;
  }
  25% {
    background-position: 100% 50%;
    opacity: 1;
  }
  50% {
    background-position: 0% 50%;
    opacity: 1;
  }
  75% {
    background-position: 100% 50%;
    opacity: 1;
  }
  100% {
    background-position: 0% 50%;
    opacity: 1;
  }
}

.flower-contain .card.move:nth-child(2):after {
  animation-delay: .8s;
}
.flower-contain .card.move:nth-child(3):after {
  animation-delay: 1.6s;
}
.flower-contain .card.move:nth-child(4):after {
  animation-delay: 2.4s;
}
#gallery2 a.toshop {
  font-size: clamp(1.0rem, calc(0.9rem + 0.625vw), 1.4rem);
  max-width: 400px;
  background: linear-gradient(45deg, rgba(254, 212, 117, 1) 0%, rgba(229, 61, 93, 1) 50%, rgba(194, 49, 134, 1) 70%, rgba(156, 56, 187, 1) 100%);
  border-radius: 25px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, .15);
  color: #ffffff;
  padding: 25px 0px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
  text-decoration: none;
  /* width: 120px; */
  margin: 50px auto 0;
  border-radius: 100vh;
  position: relative;
  transition: 0.5s;
}
#gallery2 a.toshop::before {
  content: '';
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
#gallery2 a.toshop:hover {
  background: #C63061;
  color: #fff;
}
/*-------------------------------------------
order
-------------------------------------------*/
#order {
  background: #efefef8f;
  z-index: 1000;
}
#order .s_s1 {
  /* padding: 10% 0; */
  padding: 0% 0 0% 2%;
}
#order .cont {
  flex-wrap: nowrap;
  justify-content: space-between;
}
#order p.ei.sLL {
  line-height: 1.2;
}
#order h2 {
  font-weight: normal;
  font-size: 1.3rem;
  margin-left: 1%;
}
#order .cont1 {
  width: 45%;
  min-width: 400px;
  margin-top: 7%;
  z-index: 4;
}
#order .title {
  width: 90%;
  margin-bottom: 10%;
}
#order .cont2 {
  width: 45%;
  overflow: hidden;
  position: relative;
}
#order .cont2::before {
  content: "";
  background: url(../img/orders_pc.jpg) right center fixed;
	background-size:contain;
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  max-width: 750px;
  height: 100%;
  z-index: 2;
    transition: 1.3s;
}
#order .cont2.tirgger::before {
	opacity: 0;
}
#order .cont2.tirgger.move::before{
	opacity: 1;
}



#seibun .cont01 .cont01_01{
	position: absolute;
    top:-1.3%;
    right: 0%;
	left: 0%;
	margin: auto;
    width: 39%;
    transition: .9s;
    animation-timing-function: ease-in-out;
    z-index: 2;
}
#seibun .cont01 .cont01_01.trigger{
  transform: translateY(8%);
	opacity: 0;
}
#seibun .cont01 .cont01_01.trigger.move{
  	transform: translateY(0%);
	opacity: 1;
}



#order .cont3 {
  font-size: 10rem;
  color: #ffffff;
  /*mix-blend-mode: overlay;*/
  position: absolute;
  width: 10%;
  overflow: hidden;
  writing-mode: vertical-rl;
  top: 50%;
  left: 63%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
#order .cont4 iframe {
  width: 100%;
  height: 400px;
}
#order .logo {
  width: 90%;
}
.stepbar {
  margin: 0px auto 20%;
  width: 100%;
}
.stepbar .stepbarwrap {
  position: relative;
}
.stepbar .stepbarwrap .steptitle {
  display: inline-flex;
  margin: 0em 0 2em 0;
  align-items: center;
}
.stepbar .stepbarwrap .steptitle .stepcircle {
  display: inline-block;
  width: 1.3em;
  height: 1.3em;
  content: "";
  border-radius: 50%;
  background-color: #efeeef;
  border: 3px solid #424242;
}
.stepbar .stepbarwrap .steptitle .stepnum {
  margin-left: 1em;
  padding: 1em 3em;
  font-size: 1.3em;
  color: #ffffff;
  background: #000000;
  border-radius: 100px;
}
.stepbar .stepbarwrap .steptxt {
  padding-left: 3em;
  font-size: 1.4rem;
}
.stepbar .stepbarwrap .steptxt2 {
  padding-left: 3em;
  padding-bottom: 3em;
  font-size: 1.4rem;
}
.step-title {
  padding-left: 10px;
  font-size: 1.8rem;
}
.stepbar .stepbarwrap .steptxt .steptxt-title {
  margin: 0.5em 0;
  font-weight: bold;
  font-size: 1.2em;
}
.stepbar .stepbarwrap .steptxt .steptxt-txt {
  font-size: 0.9em;
}
.stepbar .stepbarwrap .stepline1 {
  width: 1px;
  height:100%;
  background-color: #5d5d5d;
  position: absolute;
  top: 7%;
  left: 1%;
  z-index: -1;
}
.stepbar .stepbarwrap .stepline2 {
  width: 1px;
  height: 100%;
  background-color: #5d5d5d;
  position: absolute;
  top: 8%;
  left: 1%;
  z-index: -1;
}
.stepbarwrap:last-of-type .stepline:last-of-type {
  display: none;
}

#order a.toshop {
  background: #148b68;
  color: #ffffff;
  padding: 25px 0px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
  text-decoration: none;
  /* width: 120px; */
  margin: 0px 0 0px 2em;
  border-radius: 100vh;
  position: relative;
  transition: 0.5s;
}
#order a.toshop::before {
  content: '';
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
#order a.toshop:hover {
  background: #32cb3f;
  color: #fff;
}
/*-------------------------------------------
location
-------------------------------------------*/
#location {
  background: #efefef;
  z-index: 1500;
}
#location .inner{
	min-height: 900px;
}
#location .cont{
  flex-wrap: nowrap;
}
#location .cont1 {
  width: 40%;
  min-width: 400px;
}
#location .cont2 {
  margin-top: -5%;
  width:60%;
  padding-right: 2%;
  height: 300px;
  overflow: hidden;
}
#location .cont3 {
  width: 35%;
  height: 80svh;
  overflow: hidden;
}
#location .cont4 {
  position: absolute;
  top: 55%;
  /* left: -10%; */
  width: 47%;
  height: 40%;
  overflow: hidden;
}
#location .cont4 iframe {
  width: 100%;
  height: 400px;
}
#location .logo {
  width: 90%;
}


/*-------------------------------------------
フッター
-------------------------------------------*/
#footer {
  background-color: #121212;
  color: #fff;
  padding: 20px 0;
  z-index: 1500;
  position: relative;
}
#footer .menu {
  display: flex;
  justify-content: center;
  margin: 30px 0 60px 0;
}
#footer .menu li {
  border-right: solid 1px #fff;
  font-size: 0.875rem;
  padding: 0 20px;
}
#footer .menu li:last-child {
  border-right: none;
}
#footer .menu li a {
  color: #fff;
}
#footer .copyright {
  font-size: 0.75rem;
  text-align: center;
}
/*-------------------------------------------
トップへ戻るボタン
-------------------------------------------*/
/*
右下に固定で配置
表示・非表示の切り替えはjQueryで行うため、詳細は「main.js」のコメントを参照
*/
#to-top {
  width: 50px;
  height: 50px;
  background-color: #121212;
  border: solid 1px #fff;
  border-radius: 50%;
  position: fixed;
  right: 25px;
  bottom: 25px;
}
/*
中の三角は疑似要素で作成
*/
#to-top::after {
  content: "";
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #fff;
  position: relative;
  left: 17px;
  bottom: 3px;
}


.catch {
  display: flex;
  align-items: center; /* 垂直中心 */
  justify-content: center; /* 水平中心 */
  margin-top: 25px;
  margin-bottom:30px;
  font-size: 2rem;
}
.catch:before, .catch:after {
  border-top: 1px solid;
  content: "";
  width: 1em; /* 線の長さ */
}
.catch:before {
  margin-right: 1em; /* 文字の右隣 */
}
.catch:after {
  margin-left: 1em; /* 文字の左隣 */
}
/*-------------------------------------------
SP
-------------------------------------------*/
@media screen and (max-width: 1025px) {
  /*最小値:1.6rem → 可変（2.2rem + 0.625vw（画面幅320px:2px, 800px:5px, 1200px:7.5px））→ 最大値:2.9rem*/
  .sLL {
    font-size: clamp(2.6rem, calc(2.2rem + 0.625vw), 5rem);
  }

  .container {
    margin-left: 0;
  }
  .wrapper {
    padding: 60px 20px;
  }
  .site-title {
    width:260px;
    margin-bottom: 0;
    position: relative;
    left: 18px;
    top: 10px;
  }
  .sec-title {
    font-size: 1.25rem;
    margin-bottom: 30px;
  }
  .sec-title::before, .sec-title::after {
    width: 18%;
  }
  /*-------------------------------------------
  ヘッダー
  -------------------------------------------*/
  #header {
    width: 100%;
    height: 64px;
    padding: 0;
    z-index: 5000;
    background-color: #ffffff00;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
  }
  #header li {
    font-size: clamp(1.8rem, calc(0.9rem + 0.625vw), 1.6rem);
    padding: 8px 0;
    font-family: "Jost", sans-serif;
  }
  #header.show {
    background-color: #2a2f698f;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(24px);
  }
  #header.open {
    height: 100%;
  }
.site-title {
  display: none;
}
.show .site-title {
	display: block;
}
  /*
  ハンバーガーメニュー
  ※ハンバーガーメニューの説明は他の課題と重複するため割愛
  */
  #navi {
    width: 300px;
    background: #fff;
    padding: 25px;
    position: fixed;
    top: 0;
    left: -300px;
    bottom: 0;
    opacity: 0;
    overflow-y: auto;
    transition: 0.5s;
    z-index: 20;
  }
  .open #navi {
    left: 0;
    opacity: 1;
  }
  #navi ul.nav-menu {
    margin-bottom: 30px;
  }
  #navi ul li {
    padding: 10px 0;
  }
  .hamburger {
    width: 26px;
    height: 30px;
    cursor: pointer;
    position: fixed;
    top: 15px;
    right: 15px;
    transition: 0.5s;
    z-index: 20;
  }
  .hamburger span {
    width: 30px;
    height: 2px;
    background-color: #ffffff;
    border-radius: 4px;
    display: block;
    position: absolute;
    left: 0;
    transition: 0.5s;
  }
	    .show .hamburger span {
        
        background-color: #ffffff;
    }
  .hamburger span:nth-child(1) {
    top: 4px;
  }
  .hamburger span:nth-child(2) {
    top: 14px;
  }
  .hamburger span:nth-child(3) {
    bottom: 4px;
  }
  .open .hamburger span {
    background-color: #fff;
  }
  .open .hamburger span:nth-child(1) {
    transform: translateY(10px) rotate(-315deg);
  }
  .open .hamburger span:nth-child(2) {
    opacity: 0;
  }
  .open .hamburger span:nth-child(3) {
    transform: translateY(-10px) rotate(315deg);
  }
  #mask {
    display: none;
    transition: 0.5s;
  }
  .open #mask {
    width: 100%;
    height: 100%;
    background-color: #000;
    cursor: pointer;
    display: block;
    opacity: 0.8;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
  }
  /*-------------------------------------------
  Video
  -------------------------------------------*/
  /*
  スマホの場合は、動画が見切れすぎないよう高さを調整
  */
  #video .bg-video {
    /*left: 0;*/
  }
  #video .bg-video img {}
  #location .cont {
    flex-direction: column;
    padding-top: 90%;
    position: relative;
    padding-bottom: 75%;
  }

  .inner {
    margin: auto;
    width: 90%;
  }
  .right_contain {
    width: 30%;
  }
  .right_contain .block {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .bright {
    width: 90%;
  }
  .circle {
    overflow: visible;
    -webkit-animation: rotation 18s linear infinite;
    animation: rotation 18s linear infinite;
    width: 100%;
  }
  .right_contain .botan {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 80%;
    z-index: 3000;
  }
  .right_contain .botan img {
    width: 100%;
  }
  #concept .s_s1 {
    padding: 5% 0 0% 2%;
  }
  #concept .cont {
    flex-direction: column;
    /*padding-top: 161%;*/
	padding-top: 18%;
    position: relative;
    padding-bottom: 72%;
  }
  #concept .cont1 {
    order: 4;
    /* padding: 5%; */
    /* background: #ffffffa3; */
    /* margin-top: -20%; */
    z-index: 5;
    /* width: 50%;*/
    width: 100%;
    min-width: auto;
  }

  #concept img {
    width: 110%;
  }

  #order .cont {
    position: relative;
  }
  #order .s_s1 {
    padding: 0%;
  }
  #order .inner {
    width: 100%;
  }
  #order .cont1 {
    width: 100%;
    min-width: 100%;
    margin-top: 50%;
    padding: 6%;
    background: #dfdfdf;
  }
  #order .cont2 {
    width: 10%;
    margin-left: 0%;
    height:100svh;
	position: static;
  }
  #order .catch {
    font-size: 20px;
  }
  #order .cont2::before {
    content: "";
    background: url(../img/orders.jpg) center bottom fixed;
    background-size: 100%;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    max-width: initial;
    width: 100%;
	height: 100svh;
    z-index: 2;
  }
  #order .cont3 {
    font-size: 7rem;
    color: #ffffff78;
    /* mix-blend-mode: overlay; */
    position: absolute;
    width: 20%;
    overflow: hidden;
    writing-mode: vertical-rl;
    top: 50%;
    right: 5%;
    -webkit-transform: none; /* Safari and Chrome */
    -moz-transform: none; /* Firefox */
    -ms-transform: none; /* IE 9 */
    -o-transform: none; /* Opera */
    transform: none;
    z-index: 3;
  }

  .stepbar .stepbarwrap .stepline1 {
    left: 2%;
  }
  .stepbar .stepbarwrap .stepline2 {
    left: 2%;
  }
	#location 	.s_s1{
		padding:0% 0 10% 1%
	}
  #location .logo {
    width: 90%;
    max-width: 400px;
  }
	  #location .cont :nth-child(1) {
    order: 4;
  }
  #location .cont :nth-child(2) {
    order: 1;
  }
  #location .cont :nth-child(3) {
    order: 3;
  }
  #location .cont :nth-child(4) {
    order: 2;
  }
  #location .cont1 {
    order: 4;
    /* padding: 5%; */
    /* background: #ffffffa3; */
     margin-top: -20%;
    z-index: 5;
    /* width: 50%;*/
    width: 100%;
    min-width: auto;
  }
  #location .cont2 {
		margin-top: -90%;
        width: 120%;
        position: absolute;
        left: -10%;
        height: 30%;
  }
  #location .cont3 {
    margin-top: -50%;
    width: 80%;
    height: 44%;
    position: absolute;
    left: -10%;
    /* left: -10%; */
    /* border: solid 3px #ffffff; */
    z-index: 3;
  }
  #location img {
    width: 100%;
  }
  #location .cont4 {
    position: absolute;
    bottom: 10%;
    top: auto;
    padding-top: auto;
    /* left: -10%; */
    width: 100%;
    height: 25%;
    overflow: hidden;
  }

  /*-------------------------------------------
  フッター
  -------------------------------------------*/
  #footer .menu {
    flex-wrap: wrap;
  }
  #footer .menu li {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 960px) {
  .stepbar {
    width: 100%;
  }
}
@media screen and (max-width: 822px) {

  #video > video {
    width: 100%;
  }
	    #video .logo_img {
		position: absolute;
        top: 55%;
        width: 90%;
        max-width: 524px;
        /* mix-blend-mode: overlay; */
    }
	.s_s1{
		padding: 10% 0 10% 0;
}
  #concept .cont4 {
    position: absolute;
    bottom: 0;
    left: -10%;
    width: 130%;
    height: 200px !important;
    overflow: hidden;
  }
	    #concept .cont {
        /* padding-top: 161%; */
        padding-top: 3%;
        position: relative;
        padding-bottom: 10%;
    }
  #gallery1 .inner {
    width: 100%;
  }
  #gallery1 .sLL {
    padding-left: 5%;
  }
  #gallery2 .inner {
    width: 100%;
  }
section#gallery1 .s_s1, section#gallery2 .s_s1 {
    padding: 4% 1.5% 7% 1.5%;
	min-height: 300px;
}
  #gallery2 .sLL {
    padding-left: 5%;
  }
	.slider .slick-slide {
    margin: 0 10px 10px;
}
  #flowewr-contain p.ei.sLL {
    padding-left: 5%;
  }
  #gallery1 .flower-contain .card,#gallery2 .flower-contain .card {
    width: 48%;
    min-width: 48%;
    height: auto;
	  margin: 1%;
  }
#gallery2 .flower-contain .card{ margin-right: 1%; }
#gallery2 .flower-contain .card:nth-of-type(3n){ margin-right: 1%; }
#gallery2 .flower-contain .card:nth-of-type(2n){ margin-right: 0%; }	
  #order .cont2::before {
    background-size: 150% auto;
  }
  .stepbar .stepbarwrap .steptitle {
    display: inline-flex;
    margin: 0em 0 2em 0;
    align-items: center;
  }
  #location .cont4 {
    position: absolute;
    top: 70%;
    /* left: -10%; */
    width: 100%;
    height: 300px;
    overflow: hidden;
  }
  #location .cont4 iframe {
    width: 100%;
    height: 300px;
  }
}
.lb-data .lb-caption {
    font-size: 12px;
    font-weight:normal;
}
.lb-data .lb-caption a {
    color: #ffffff;
}

.slick-dots li button {
  position: relative;
  text-indent: -9999px;
}

.slick-dots li{
	width: 40px;
	height:4px;
}
.slick-dots li button:before{
	width: 40px;
	height:4px;
}
.slick-dots li *{
  display: block;
}
.slide-dots li button::before {
  background:#ffffff;
}
.slick-dots li button:before{
  background: #ffffff;
	opacity: 1; 
}
.slick-dots li.slick-active button:before{
  background: #000000 !important;
	opacity: 1 !important; 
}
/* ここから矢印カスタマイズ */
.slider .slick-arrow {
	transition: all  0.5s;
	position: absolute;
	top: 49%;
	transform: translateY(-49%);
	z-index: 10;
}
.slider .slick-arrow:hover{
	cursor: pointer;
	opacity: 0.7;
}
.slider .prev-arrow {
	left: 1%;
}
.slider .next-arrow {
	right: 1%;
}
.key-slider,
.slick-list,
.slick-track {
  height: 100%;
}
@media screen and (min-width: 768px){
	.slider .slick-arrow {
		width: 70px;
		height: 70px;
	}
	.slider .slick-arrow:hover{
		cursor: pointer;
		opacity: 0.7;
	}
}
@media screen and (max-width: 767px){
	.slider .slick-arrow {
		width: 25px;
		height: 25px;
		opacity: .8;
	}
	.key-slider,
.slick-list,
.slick-track {
  height: auto;
}
	#concept_after{
    background: #ffffff;
}
	#concept_after .inner{
    background: #ffffff;
	width: 100%;
	height: auto;
	padding:  0;
}
	
#concept_after {
	    height: auto;
}
	  stepbar .stepbarwrap .stepline1 {
        top: 16%;
		left: 2%;
    }
	  stepbar .stepbarwrap .stepline2 {
        top: 31%;
		left: 2%;
    }
}
.lb-nav{
	display: none !important;
}
.lb-data .lb-number{
	display: none !important;
}
.lb-nav a.lb-next{
	display: none !important;
}
.lb-nav a.lb-prev{
	display: none !important;
}

.stepbar .stepbarwrap .howto{
  	padding-left: 3em;
	margin-bottom: 3em;
	display: flex;
	width:100%;
	justify-content: space-evenly;
}


#order .button a{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    line-height: 1.8;
    text-decoration: none;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 500;
	height: 60px;
    border-radius: 3px;
}
#order .button1{
	width: 29%;
	background: #f3945f;
	color: #ffffff;
    border-radius: 3px;
}
#order .button1 a{color: #ffffff;}
#order .button1 a:before {
    content: "";
	width: 18px;
	height: 18px;
    position: relative;
	background: url("../img/icon_tel_how.png") no-repeat;
	background-size: contain;
	vertical-align: middle;
    margin-right: 5px;
    color: #333;
    transition: 0.3s ease-in-out;
}
#order .button1 a:hover {
    background: #e26e2e;
    color: #FFF;
}
#order .button1 a:hover:before {color: #fff;}

#order .button2{
	width: 30%;
	background: linear-gradient(45deg, rgba(254,212,117,1) 0%,rgba(229,61,93,1) 50%,rgba(194,49,134,1) 70%,rgba(156,56,187,1) 100%);
	color: #ffffff;
    border-radius: 3px;
}
#order .button2 a{color: #ffffff;}
#order .button2 a:before {
    content: "";
	width: 16px;
	height: 16px;
    position: relative;
	background: url("../img/icon_insta_howto.png") no-repeat;
	background-size: contain;
	vertical-align: middle;
    margin-right: 10px;
    color: #333;
    transition: 0.5s ease-in-out;
}
#order .button2 a:hover {
    background:  #BB1F87;
    color: #FFF;
}
#order .button2 a:hover:before {color: #fff;}

#order .button3{
	width: 30%;
	background: #D457CD;
	color: #ffffff;
    border-radius: 3px;
}
#order .button3 a{color: #ffffff;}
#order .button3 a:before {
    content: "";
	width: 18px;
	height: 18px;
    position: relative;
	background: url("../img/icon_shop.png") no-repeat;
	background-size: contain;
	vertical-align: middle;
    margin-right: 5px;
    color: #333;
    transition: 0.3s ease-in-out;
}
#order .button3 a:hover {
    background: #c12ab9;
    color: #FFF;
}
#order .button3 a:hover:before {color: #fff;}

@media screen and (max-width: 767px){
	.stepbar .stepbarwrap .howto{
 	 flex-wrap: wrap;
}
	
#order .button a{
	font-size: 14px;
    font-weight: 500;
	height: 50px;
}
	#order .button1,#order .button2,#order .button3{
	margin-bottom: 5px;
	width: 100%;
}
	#footer .menu li{
		width: 30%;
		text-align: center;
	}
#footer .menu li:nth-child(3){
		border-right:0;
	}
}