@charset "utf-8";
/* CSS Document */
.scroll-up {
  opacity: 0; 
  visibility: hidden;
  transform: translateY(50px);
  transition: all 1s;
}
.scroll-up.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

/* CSSアニメーションの設定 */
@keyframes SlideIn {
  0% {
    opacity: 0;/*初期状態では透明に*/
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.animated {
  animation: move-y .5s infinite alternate ease-in-out;
}
@keyframes move-y {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(10px);
  }
}


nav ul ul{
  display: block;
}


html {
    font-size: 10px;
	overflow-x: hidden;
}

p{
	letter-spacing: 3px;
  line-height: 2;
}

img{
	width: 100%;
}

body {
    width: 100%;
    height: 100%;
    min-width: 1020px;
    font-family: "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    color: #666666;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.8;
    letter-spacing: 0.08em;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

li{
	 list-style: none;
  letter-spacing: 3px;
  line-height: 2;
}

.sp-br{
		display: none;
	}

.pc-br{
	display: block;
}

.sp-on{
	display: none;
}

.row{
	flex-direction: row-reverse;
}

/*画像ズーム*/
.moimg1 {
	overflow: hidden;
}

.moimg2 {
	overflow: hidden;
}

.moimg1 img , .moimg2 img{
	display: block;
	transition: 0.5s;
}
.moimg1 img:hover , .moimg2 img:hover{
	transform: scale(1.1, 1.1);
}

.zoom-in{
	display: block;
	transition: 0.5s;
}

.zoom-in:hover {
	transform: scale(1.1,1.1);
}

.base_inner{
	width: 1250px;
    padding: 0;
    margin: 0 auto;
}

/*topヘッダー*/
.header-top {
position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 40px;
  box-sizing: border-box;
}

.header-page {
position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 40px;
  box-sizing: border-box;
	background: #fff;
}


header .inner {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
.logo {
  position: relative;
  margin: 0;
  padding: 10px 0 0;
    width: 10%;
}

/* header-navi */

header .navi {
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  margin: 0 0 0 auto;
  padding: 0;
  display: flex;
  list-style: none;
}
header .navi li {
  margin: 5px 0 5px 40px;
}
header .navi li:first-child {
  margin-left: 0;
}
.header-top .navi li a {
  display: block;
  box-sizing: border-box;
  text-decoration: none;
  color: #fff;
}

.header-page .navi li a {
  display: block;
  box-sizing: border-box;
  text-decoration: none;
  color: #666;
}

header .navi li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  transition: color 0.3s ease; /* じんわり色変化 */
}

header .navi a::after {
  position: absolute;
  bottom: -8px;
  left: 0;
	right: 0;
	margin: 0 auto;
  content: '';
  width: 30%;
  height: 2px;
  background: #964047;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}
header .navi li a:hover::after {
  bottom: -4px;
  opacity: 1;
  visibility: visible;
}

header .navi li a:hover {
  color: #964047; /* ホバー時の文字色 */
}

/* add css  */

#header.scroll {
  position: fixed;
  background-color: #fff;
    opacity: 0.9;
  animation-name: anime;
  animation-duration: 0.3s;
z-index: 99999;
}

#header.scroll a{
	color: #211f21;
}

#header.scroll a:hover {
  color: #964047; /* 好きな色に変更してください */
  transition: color 0.3s ease; /* じんわり変化 */
}

@keyframes anime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* layout */

body{
  margin: 0;
  padding: 0;
}
#main{
  height: 3000px;
}


/*横から出てくる*/
.slideConts {
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.slideContsL {
  transform: translate(-800px, 0);
}
.slideContsR {
  transform: translate(800px, 0);
}
.slideContsL.show {
  transform: translate(0px, 0);
}
.slideContsR.show {
  transform: translate(0, 0) !important;
}

.delayed-image {
	/* じわっと画像が表示される */
 	animation: fadeIn 3s ease 0s 1 normal;
    -webkit-animation: fadeIn 3s ease 0s 1 normal;
}
 
/* じわっと画像が表示される ---------　一度追加していたら不要*/
@keyframes fadeIn { /*上のbody内で呼び出しているアニメーションと名前をそろえる*/
    0% {opacity: 0} /* 始め */
    100% {opacity: 1} /* 終わり */
}
 
/*古いブラウザ用　---------　一度追加していたら不要*/
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
 

/*トップ*/

/* トップスライダー */
.top{
  height: 850px;
  width: 100%;
  position: relative;
}

.image {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  background-size: cover;
  background-position: center center;
  
  animation: image-switch-animation 24s infinite;
}

.src1 {
  background-image: url("../img/top-1.jpg");
}
.src2 {
  background-image: url("../img/top-2.jpg");
}
.src3 {
  background-image: url("../img/top-3.jpg");
}

@keyframes image-switch-animation {
  0% { opacity: 0; }
  5% { opacity: 1; }
  30% { opacity: 1; }
  35% { opacity: 0; }
  100% { opacity: 0; }
}
.image:nth-of-type(1) {
  animation-delay: 0s;
}
.image:nth-of-type(2) {
  animation-delay: 8s;
}
.image:nth-of-type(3) {
  animation-delay: 16s;
}
/* トップスライダーここまで */

.top-text{
  position: absolute;
  width: 10%;
  height: 350px;
    top: 40%;
    right: 0;
    bottom: 50%;
    left: 0;
    margin: auto;
}

#top-bg{
	background: url("../img/top-bg.png");
	background-size: 100% auto;
}

.top-scroll{
	position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 5%;
}

.top-concept-1{
	position: relative;
	margin-top: 150px;
}

.top-concept-2{
	    margin-top: 850px;
}

.top-info p{
  text-align: center;
  font-size: 24px;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  padding-top: 20px;
}

.top-info p span{
  font-size: 18px;
}

.about-list , .top-info{
	margin-top: 150px;
}

.top-link-area{
	margin-top: 200px;
}

.top-title-area{
  position: relative;
  padding-bottom: 200px;
}

.top-title-area h2{
  position: absolute;
  font-size: 42px;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  z-index: 2;
  letter-spacing: 4px;
  line-height: 1.5;
}

.top-title-area p{
  position: absolute;
  z-index: 1;
  top: -70px;
}

.title-en{
  font-size: 140px;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  color: rgba(255, 255, 255, 0.5);
}

/* .top-concept-1 ul{
	display: flex;
} */

.top-concept-1 li:nth-child(1){
	width: 35%;
    position: absolute;
    z-index: 10000;
    margin-top: 50px;
    max-width: 520px;
}

.top-concept-1 li:nth-child(1) img{
	width: 60%;
    padding: 100px 0;
}

.top-concept-1 li:nth-child(2){
	width: 50%;
    position: absolute;
    z-index: 0;
    right: 0;
}

.top-about-messega h3{
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-size: 24px;
  margin-bottom: 50px;
}

.parallax {
	height: 100vh;
    background: url("../img/about-2.jpg");
    background-size: contain;
	margin-left: calc( ( 100% - 100vw ) / 2 );
    margin-right: calc( ( 100% - 100vw ) / 2 );
		background-repeat: no-repeat;
}

.about-list-img{
  position: relative;
  width: 55%;
}

.sake-img{
}

.about-list-img h2{
  position: absolute;
  writing-mode: vertical-rl;
  top: 80px;
  bottom: 0;
  margin: 0 auto;
  right: -150px;
  line-height: 1;
}

.about-list ul:nth-of-type(2) .about-list-img h2{
  left: -150px;
  right: auto;
  top: 20px;
}

.about-list ul{
	display: flex;
    align-items: center;
	margin-bottom: 150px;
}

.about-list-title-1 , .about-list-title-2{
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	font-size: 42px;
    margin-bottom: 50px;
    letter-spacing: 10px;
    border-bottom: 2px solid #964047;
    display: inline-block;
}
.about-list-title-2{
	width: 60%;
}


.about-list li:nth-child(2){
	width: 33%;
  margin-left: 50px;
}

.about-list ul:nth-child(3) p{
	text-align: center;
	margin: 100px 0;
}

.top-link-2{
	margin: 0 auto;
	text-align: center;
}

.top-link-2 img{
	width: 30%;
}

.top-service{
	position: relative;
}

.top-box{
	margin: 50px;
}

.p-flex{
	display: flex;
	position: absolute;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.line-vertical{
  width: 2px;
    height: 150px;
    background-color: #fff;
    margin: 0 auto;
    margin-bottom: 20px;
}

.tate{
	-ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-size: 42px;
    font-family: 'Hannari' , serif;
    color: #fff;
}

.service-p{
	width: 50%;
    background: #f0eae5;
    position: absolute;
    left: 0;
    right: 0;
    margin:-150px auto 0;
    padding: 100px;
}

.service-p h2{
	text-align: center;
	font-size: 24px;
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
    margin-bottom: 30px;
    border-bottom: 1px solid;
    padding: 0 0 20px;
}

.top-link-area ul{
	display: flex;
    justify-content: center;
}

.top-link-area li{
	width: 10%;
    margin: 50px;
}

.target {
			transition: .5s ;
			transform: rotateY( 0deg ) ;
		}

.top-link-area li:hover .target {
			transform: rotateY( 360deg ) ;
		}

.page-footer li:hover .target {
			transform: rotateY( 360deg ) ;
		}


/*========= 流れるテキスト ===============*/

/*全共通*/

.slide-in {
	overflow: hidden;
    display: inline-block;
}

.slide-in_inner {
	display: inline-block;

}

/* 上下のアニメーション*/
.upAnime{
    opacity: 0;/* 事前に透過0 にして消しておく*/
}

.slideAnimeDownUp {
    animation-name:slideTextY100;
    animation-duration:0.8s;
    animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes slideTextY100 {
    from {
        transform: translateY(100%);/* 要素を上の枠外に移動*/
        opacity: 0;
    }
    to {
        transform: translateY(0);/* 要素を元の位置に移動*/
        opacity: 1;
    }
}
.slideAnimeUpDown {
    animation-name:slideTextY-100;
    animation-duration:0.8s;
    animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes slideTextY-100 {
    from {
    transform: translateY(-100%);/* 要素を下の枠外に移動*/
    opacity: 0;
    }
    to {
    transform: translateY(0);/* 要素を元の位置に移動*/
    opacity: 1;
    }
}

.top-info h2{
  width: 15%;
    margin: 0 auto;
}

.top-info dl , .shop-info dl{
	display: flex;
	margin: 0 0 20px;
}

.info-box{
	width: 70%;
    margin: 0 auto;
	padding: 50px 0;
}

.info-box p{
    font-size: 24px;
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
    padding-top: 20px;
    margin-bottom: 50px;
}

.info-box p span{
  font-size: 18px;
}

.info-box dt {
    width: 30%;
    font-weight: inherit;
}

.info-box dd {
    width: calc(100% - 220px);
}

.info-box span img{
	  width: 15px;
    margin-bottom: 5px;
}

.info-insta-flex{
    display: flex;
    align-items: center;
}

.info-insta-flex div{
  width: 40px;
  margin-left: 50px;
}

.top-insta{
    padding: 450px 0 0;
}

.top-insta h2{
	width: 70%;
  margin-bottom: 50px;
  padding-top: 200px;
}

.top-bg-change{
	background: #fff;
}

.title-wrap {
    position: relative;
    display: inline-block;  /* 横幅は中身に合わせる */
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  }

  .main-text {
    font-size: 140px;
    color: #eee9e4;
    margin-bottom: 50px;
  }

  .sub-text {
    position: absolute;
    left: -5px;
    top: 40%;
    transform: translateY(-50%);
    font-size: 42px;
    font-weight: normal;
    pointer-events: none; /* 選択不可にしたい場合は付けてください */
  }

  .main-text-2 {
    font-size: 140px;
    color: #FFF;
    margin-bottom: 50px;
  }

.insta-link{
    text-align: center;
    margin-top: 50px;
}

.insta-link a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.insta-link a .arrow-icon {
  width: 15px;
  height: auto;
  margin-left: 25px;
  transition: transform 0.3s ease;
}

/* ホバー時に矢印を右に動かす */
.insta-link a:hover .arrow-icon {
  transform: translateX(4px);
}

.other{
  position: relative;
}

.other-ab{
  position: absolute;
  top: -40%;
  left: 0;
  right: 0;
}

.other-ab p{
color: rgba(255, 255, 255, 0.5);
}

/*フッター*/
footer{
	text-align: center;
	padding-bottom: 50px;
}

footer ul img{
	width: 5%;
}


.footer-insta{
	width: 4%;
    margin: 0 auto;
    padding-bottom: 100px;
}

.top-footer{
		text-align: center;
    padding-bottom: 50px;
	}
	
	.top-footer li img{
		width: 5%;
    margin: 0 auto;
    margin-bottom: 100px;
	}

/*お問合せ*/
/*お問い合わせ*/
select::-ms-expand {
	display: none; /*--IEでデフォルトの矢印を消します--*/
}
select {
	width: 100%; /*--幅--*/
	-webkit-appearance: none; /*--各ブラウザのCSSを解除--*/
	-moz-appearance: none; /*--各ブラウザのCSSを解除--*/
	appearance: none; /*--各ブラウザのCSSを解除--*/
	margin: 1em 0;
	padding: 5px;
	font-size: 16px;
	border: solid 1px #ccc;
	background-image: url(../img/form-arrow.png); /*--矢印の画像を指定--*/
	background-repeat: no-repeat;
	background-size: 18px 10px;
	background-position: right 20px center;
	background-color: #fff;
}


form .page-title{
	text-align: center;
}

form .page-title img{
	width: 14%;
	margin: 85px 0;
}

@media screen and (max-width : 1127px ){
  .Form {
    margin-top: 40px;
  }
}
.Form-Item {
  padding-top: 24px;
  padding-bottom: 24px;
  width: 65%;
	margin: 0 auto;
  align-items: center;
	display: flex;
}
@media screen and (max-width : 1127px ){
  .Form-Item {
	  width: auto;
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
  }
}
.Form-Item-Label {
  width: 100%;
  max-width: 248px;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
@media screen and (max-width : 1127px ){
  .Form-Item-Label {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 15px;
  }
}
.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}
@media screen and (max-width : 1127px ){
  .Form-Item-Label.isMsg {
    margin-top: 0;
  }
}

@media screen and (max-width : 1127px ){
  .Form-Item-Label-Required {
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 32px;
    font-size: 10px;
  }
}
.Form-Item-Input {
	border: 1px solid #fff;
  flex: 1;
  width: 100%;
	background: #fff;
}
@media screen and (max-width : 1127px ){
  .Form-Item-Input {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }
}
.Form-Item-Textarea {
  border: 1px solid #fff;
  width: 100%;
height: 216px;
	background: #fff;
}
@media screen and (max-width : 1127px ){
  .Form-Item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    flex: inherit;
    font-size: 15px;
  }
}
.Form-Btn {
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
margin-bottom: 20%;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 45%;
  display: block;
  letter-spacing: 0.05em;
  background: #964047;
  color: #fff;
  text-align: center;
}
@media screen and (max-width : 1127px ){
  .Form-Btn {
    margin-top: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 100%;
    font-size: 16px;
  }
}

/*ページトップ*/
.contact-top {
    width: 30%;
    margin: 0 auto;
    margin-top: 200px;
	margin-bottom: 120px;
}

.page-top{
  width: 75%;
    margin: 0 auto;
    margin-top: 200px;
    margin-bottom: 150px;
}

.page-top ul{
    position: relative;
    text-align: center;
}

.page-top ul li:nth-child(2){
    position: absolute;
    top: -10%;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.title-jp{
  font-size: 38px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    display: inline-block; /* ← 幅の調整が可能に */
  position: relative;
}

.title-jp::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 0;
  width: 30%; /* ← 下線の長さを調整（例：50%） */
  height: 2px; /* ← 下線の太さ */
  background-color: #8e4146 /* ← 下線の色 */
}

.title-en-2{
  font-size: 120px;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  color: #fff;
  line-height: 1;
}

.prodact-top{
	margin: 65px 0;
  position: relative;
}

.product-ab{
  position: absolute;
  bottom: -60px;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
}

.prodact-list{
  margin-top: 150px;
}

.other-ab {
  top: -40%;
}

.other-ab p{
  font-size: 110px;
}

/*会社概要*/
.company{
	margin-bottom: 150px;
}

.company dl{
  width: 60%;
	display: flex;
	margin: 0 auto;
	margin-bottom: 20px;
}

.company dt {
    width: 40%;
	font-weight: inherit;
	border-bottom: 1px solid #8e4146;
	padding-bottom: 20px;
}

.company dd {
    width: calc(100% - 220px);
	border-bottom: 1px solid #666666;
	padding-bottom: 20px;
}

.year-flex {
    display: flex;
}

.year {
    width: 35%;
}

.year-p {
    width: calc(100% - 70px);
}

.page-footer img{
	width: 10%;
	margin-bottom: 100px;
}

/*おろし*/
.oroshi-1 ul{
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin-bottom: 80px;
}

.oroshi-1 li:nth-child(1){
	font-family: 'Hannari' , serif;
	 writing-mode: vertical-rl;
	font-size: 38px;
}

.oroshi-1 li:nth-child(2){
	width: 65%;
}

.oroshi-1 p{
	text-align: center;
}

.oroshi-1 {
	margin-bottom: 150px;
}

.oroshi-2{
	margin-bottom: 250px;
}

.oroshi-2 ul{
	display: flex;
}

.oroshi-2 li:nth-child(1){
	width: 50%;
    position: relative;
    z-index: 100;
}

.oroshi-2 li:nth-child(2){
	width: 43%;
    position: absolute;
    margin-top: 6%;
    right: 13%;
    background: #fff;
    padding: 100px 50px 100px 150px;
    z-index: 0;
}

.oroshi-2 h2{
	font-size: 38px;
	font-family: 'Hannari' , serif;
	border-bottom: 1px solid;
    padding-bottom: 20px;
    margin-bottom: 40px;
}

.kuramoto-list{
	margin-bottom: 150px;
}

.kuramoto-list h2{
	width: 14%;
    margin: 0 auto;
	margin-bottom: 50px;
}

.kuramoto-list ul{
	display: flex;
    flex-wrap: wrap;
	justify-content:space-evenly;
}

.kuramoto-list li{
	width: 17%;
	margin-bottom: 50px;
    background: #fff;
    text-align: center;
	position: relative;
	height: 250px;
}

.logo-thumbnail {
    display: block;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    right: 0;
    width: 45%;
    min-width: 45%;
    max-height: 200px;
}

.logo-thumbnail img {
    height: 100%;
}

/*小売*/
.link-btn{
  width: 25%;
  margin: 0 auto;
  padding-bottom: 150px;
}

.kouri-1 ul{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 100px;
}

.kouri-1 li:nth-child(1){
	font-family: 'Hannari' , serif;
	 writing-mode: vertical-rl;
	font-size: 42px;
  padding-left: 80px;
}

.kouri-1 li:nth-child(2){
	width: 50%;
}

.kouri-1 p{
	text-align: center;
}

.kouri-1 {
	margin-bottom: 150px;
}

.kouri-2{
	margin-bottom: 350px;
}

.kouri-2 ul{
	display: flex;
  padding: 0 100px;
}

.kouri-2 li:nth-child(1){
	width: 50%;
    position: relative;
    z-index: 100;
}

.kouri-2 li:nth-child(2){
  width: 43%;
    margin-top: 15%;
    background: #fff;
    padding: 100px;
    position: absolute;
    left: 13%;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.8);
}

.kouri-2 h2{
	font-size: 42px;
	font-family: 'Hannari' , serif;
	border-bottom: 1px solid;
    padding-bottom: 20px;
    margin-bottom: 40px;
}

.shop-list h2{
	width: 50%;
}

.shop-list ul{
	margin: 0 0 100px 0;
	display: flex;
	justify-content: space-between;
}

.thumbnail {
    display: inline-block; /* ここがポイント */
    margin-right: 15px;
    margin-bottom: 15px;
}
.thumbnail img {
    height: 100%;
}

.shop-info{
	background-color: #fff;
	padding-top: 150px;
}

.shop-info h2{
	width: 50%;
	margin-bottom: 100px;
}

.shop-info .info-box {
	width: auto;
	padding-bottom: 100px;
  display: flex;
  justify-content: space-between;
}

.shop-info iframe{
	margin-bottom: 150px;
  margin-top: 150px;
}

.info-left{
  width: 60%;
}

/*アバウト*/
.concept-1{
	margin-bottom: 150px;
}

.concept-1 ul{
	display: flex;
	justify-content: center;
	align-items: center;
  width: 80%;
  margin: 0 auto;
}

.concept-1 li:nth-child(1){
	font-family: 'Hannari' , serif;
    writing-mode: vertical-rl;
    font-size: 42px;
    border: 1px solid;
    padding: 25px;
    letter-spacing: 5px;
}

.concept-1 li:nth-child(2){
	  width: 73%;
    padding-left: 50px;
    padding-top: 80px;
}

.concept-2{
	margin-bottom: 600px;
}

.concept-2 li:nth-child(1){
	width: 55%;
	position: relative;
    z-index: 100;
}

.concept-2 ul{
	position: relative;
}

.concept-2 li:nth-child(2){
	position: absolute;
    top: 30%;
    width: 60%;
    right: 0;
	padding: 10% 10% 10% 20%;
	background: #8e4146;
	color: #fff;
}

.concept-2 li h2{
	font-family: 'Hannari' , serif;
	font-size: 42px;
	border-bottom: 1px solid;
    padding-bottom: 20px;
    margin-bottom: 40px;
}

.concept-3{
	margin-bottom: 150px;
}

.concept-3 ul{
	position: relative;
	color: #fff;
}

.concept-3 li:nth-child(2){
	position: absolute;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.concept-3 h2{
	font-family: 'Hannari' , serif;
    font-size: 42px;
    border: 1px solid;
    text-align: center;
    margin-left: 50px;
    padding: 30px 20px;
}

.concept-3 p{
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	letter-spacing: 6px;
    line-height: 3;
}

.rinen{
	margin:400px 0;
}

.rinen ul{
	display: flex;
	position: relative;
}

.rinen li:nth-child(1){
	width: 40%;
	position: relative;
	z-index: 100;
}

.rinen li:nth-child(2){
	position: absolute;
    background: #fff;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 70%;
	padding: 150px 100px 130px 200px;
}

.rinen-box h2{
	font-size: 42px;
    padding-bottom: 10px;
    margin-bottom: 30px;
	font-family: 'Hannari' , serif;
	position: relative;
}

.rinen-box h2::after {
  content: '';
  width: 55px;
  height: 1px;
  display: inline-block;
  background-color: #8e4146;
  position: absolute;
  bottom: -10px;
	left: 0
}

.rinen-box p{
	margin-bottom: 50px;
}

/*商品一覧*/
.ichiran h2{
	width: 20%;
    margin: 0 auto;
    margin-bottom: 20px;
    margin-top: 100px;
}

.list-flex{
	display: flex;
    justify-content: space-between;
	flex-wrap: wrap;
}

.list-flex dl{
	width: 30%;
	margin-bottom: 100px;
}

.list-flex dt{
	padding: 10px 0;
    border-bottom: 1px solid #8e4146;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}

.list-flex dt span{
	background: #8e4146;
    padding: 8px;
    color: #fff;
    font-weight: 100;
    border-radius: 5px;
	font-size: 16px;
      line-height: 3;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}

.list-flex dd{
	font-size: 13px;
}

.dd-line{
	border-bottom: 1px solid #666;
	padding: 5px 0;
}

.dd-p{
	margin-top: 5px;
}

.prodact-list ul{
	display: flex;
    justify-content: flex-start;
    text-align: center;
    margin-bottom: 150px;
	align-items: center;
	flex-wrap: wrap;
}

.prodact-list li{
	width: 30%;
    border: 1px solid #fff;
	margin: 10px;
    font-size: 14px;
	position: relative;
}

.prodact-list li:before {
    display: block;
    content: "";
    position: absolute;
	background: url("../img/link-arrow.png") no-repeat;
	background-size: contain;
    top: 50%;
    left: 20px;
    width: 10px;
    height: 8px;
    margin-top: -4px;
}

.prodact-list li a{
	width: 100%;
    height: 100%;
    display: block;
    padding: 10px 0;
}

.ichiran-link li{
	width: 30%;
    margin: 0 auto;
    padding: 50px 0 150px;
}

/* マウスオーバー時の背景色 */
.chenge{
	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}

.chenge:hover {
    background-color: #fff;
    }

/*スマホ*/
@media screen and (max-width: 768px){

  .top {
    height: 550px;
}
	
	#header{
		display: none;
	}
	
	.sp-logo{
		width: 17%;
	}
	
	.sp-on{
		display: block;
	}
	
	.page-top {
    height: auto;
    width: auto;
    margin: 0 auto;
    margin-top: 70px;
    margin-bottom: 80px;
}

.title-en-2{
  font-size: 45px;
}
	
.title-jp {
    font-size: 14px;
}

.title-jp::after{
  bottom: -5px;
}

	/*ハンバーガーメニュー*/
	nav ul .link{
		width: 90%;
		margin: 0 auto;
		margin-bottom: 10px;
		border-bottom: none;
		margin-top: 20px;
	}
	
	.hamburger {
    position: fixed;
    right: 0;
    top: 0;
    width: 65px;
    height: 60px;
    cursor: pointer;
    z-index: 99999;
}
	
	.hamburger__line {
    position: absolute;
    width: 45px;
    height: 2px;
    right: 0;
    background-color: #964047;
    transition: all 0.5s;
}
	
	.hamburger__line--1 {
    top: 16px;
    right: 9px;
}
	
	.hamburger__line--2 {
    top: 27px;
	right: 9px;
}
	
	.hamburger__line--3 {
    top: 39px;
	right: 9px;
}
	
	/*ハンバーガーがクリックされたら*/
.open .hamburger__line--1 {
  transform: rotate(-45deg);
  top: 31px;
}

.open .hamburger__line--2 {
  opacity: 0;
}

.open .hamburger__line--3 {
  transform: rotate(45deg);
  top: 31px;
}
	
	.sp-nav-logo{
		width: 40%;
		margin: 0 auto;
    padding-bottom: 20px;
	}
	
	.sp-nav {
		text-align: initial;
    position: fixed;
    right: -100%;
    top: 0;
    width: 70%;
    height: 100vh;
    background-color: #f9f3e8;
    transition: all 0.5s;
    z-index: 200;
    overflow-y: auto;
		display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    justify-content: center !important;
}
	
	.insta-nav{
    width: 10%;
    margin-left: 25%;
    padding-top: 15px;
    padding-bottom: 50px;
	}
	
	/*ハンバーガーがクリックされたら右からスライド*/
.open .sp-nav {
  right: 0;
	background: #964047;
  width: 100%;
}
	.sp-nav ul {
    margin-top: 50px;
	color: #fff;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	-webkit-font-smoothing: antialiased;
		margin-bottom: 100px;
}

.nav-contact{
  color: #964047;
    background: #fff;
    border-radius: 5px;
    text-align: center;
    padding: 5px!important;
    width: 40%!important;
}
	
	.sp-nav li {
    display: block;
    font-size: 15px;
    font-weight: bold;
    padding: 15px 0;
    width: 50%;
    margin: 0 auto;
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
	
	.black-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 5;
    background-color: rgba(0, 0, 0, 50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 100;
}
	
	/*ハンバーガーメニューが開いたら表示*/
.open .black-bg {
  opacity: 0.3;
  visibility: visible;
}
	
	nav{
		padding: 0;
    border-radius: 0;
    margin: 0;
	}

.open .hamburger__line {
  background-color: #fff; /* 開いたときの色を白に変更 */
}
	
	html{
		width: 100%;
	overflow-x: hidden;
	}
	
	.pc-on{
		display: none;
	}

	.sp-br{
		display: block;
	}
	
	.pc-br{
	display: none;
	}
	
	body {
    min-width: 320px!important;
    max-width: 100%!important;
	font-size: 15px;
    font-size: 1.5rem;
		overflow-x: hidden;
}
	
	.base_inner {
    width: 100% !important;
    padding: 0 20px !important;
}
	
	#sp-main-visial{
	position: relative;
}

.top-text{
  width: 25%;
  top: 50%;
}
	
	.top-scroll{
		width: 15%;
		bottom: -20px;
	}
	
	.top-concept-1 h2 {
    width: auto;
    font-size: 24px;
}
	
	.top-concept-1 {
    margin-top: 80px;
}
	
	.top-concept-1 ul {
    display: block;
}
	
	.top-concept-1 li:nth-child(1) {
    width: auto;
    margin-top: 10px;
	position: inherit;
}
	
	.title-en{
		text-align: initial;
    font-size: 60px;
    top: -25px;
  }

  .top-title-area p {
    top: -25px;
}

  .top-title-area{
    padding-bottom: 80px;
  }

  .top-about-messega h3{
    text-align: left;
    font-size: 18px;
    margin-bottom: 30px;
  }
	
	.top-concept-1 li:nth-child(1) img {
    width: 90%;
    padding: 50px 0;
    margin: 0 auto;
}
	
	.top-concept-1 li:nth-child(2) {
    width: auto;
    position: inherit;
}

.top-concept-2 {
    margin-top: 700px;
}
	
	.parallax{
		margin-top: -600px;
		background-image: url(../img/sp-about-2.png);
	}

.about-list-img{
  width: 100%;
}
	
	.about-list, .top-info {
    margin-top: 50px;
}

	.top-insta h2{
		display: none;
	}
	
	.about-list ul {
    display: block;
    margin-bottom: 80px;
}
	
	.service-p {
		margin-top: -100px;
		width: 90%;
		padding: 20px;
    top: 60%;
    margin: 0 auto;
	}
	
	.slideContsL.show {
    transform: translate(0px, 0) !important;
}
	.slideContsR.show {
    transform: translate(0px, 0) !important;
}
	
	.about-list-title-1 ,	.about-list-title-2{
		width: auto;
		margin-bottom: 20px;
		font-size: 24px;
}
	
	.about-list li:nth-child(2) {
    width: 90%;
    margin: 0 auto;
    padding-top: 20px;
}
	
	.ohter{
		width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
	}

  .other-ab {
  top: -70%;
}

.other-ab p{
  font-size: 55px;
}
	
	.about-list ul:nth-child(3) p{
		margin: 50px 0;
	}
	
	.top-link-2 img {
    width: 80%;
}
	
	.sp-p-flex{
		position: absolute;
		top: 50px;
	}
	
	.sp-p-flex h2{
		margin: 20px 0;
	}
	
	.sp-p-flex h2 img{
		width: 70%;
	}
	
	.sp-p-flex p{
		color: #fff;
    font-size: 24px;
		font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	}
	
	.catch {
  display: flex;
  align-items: center; /* 垂直中心 */
}
.catch:before {
  border-top: 1px solid;
  content: "";
  width: 3em; /* 線の長さ */
}
	
.catch:before {
  margin-right: 1em; /* 文字の左隣 */
}
	
.top-info dl {
    display: block;
}
	.info-box dt {
    width: auto;
}
	
	.info-box dd {
    width: auto;
    display: block;
}

.info-insta-flex div{
  width: 30px;
  margin-left: 0;
  margin-top: 20px;
}
	
	.info-box {
    width: auto;
	padding: 20px 0;
	}
	
	footer ul img {
    width: 12%;
    margin-bottom: 50px;
}
	
	footer{
		padding-bottom: 50px;
		margin-bottom: 0;
	}
	
	footer li:nth-child(1) {
    margin-bottom: 0px;
		width: auto;
    margin: 0 auto;
}

	.footer-insta{
		width: 10%;
    padding: 0 0 80px;
	}
	
	.top-footer{
		text-align: center;
    padding-bottom: 50px;
	}
	
	.top-footer li img{
		width: 10%;
    margin: 0 auto;
    margin-bottom: 80px;
	}
	
	.top-info h2 {
    width: 30%;
}
	
	.top-link-area {
    margin-top: 0;
    padding-top: 200px;
}
	
	.top-link-area li {
    width: 25%;
    margin: 10px;
}
	
	.top-bg-change iframe{
		display: none;
	}

  .service-p h2{
    font-size: 24px;
    padding: 0px 0 10px;
    margin-bottom: 20px;
  }

.main-text {
    font-size: 55px;
    margin-bottom: 15px;
}

.sub-text{
  font-size: 24px;
  top: 45%;
}

.top-insta{
  display: none;
}

.top-info p{
      line-height: 1.5;
      font-size: 18px;
}

.top-info p span {
    font-size: 15px;
}
	
/*	アバウト*/
.concept-1 ul {
    display: block;
    width: auto;
	}
	
	.concept-1 li:nth-child(1){
		writing-mode: inherit;
    font-size: 24px;
		padding: 10px;
		text-align: center;
    margin-bottom: 20px;
    width: 80%;
    margin: 0 auto;
	}
	
	.rinen li:nth-child(2){
		padding: 10px;
		width: auto;
		top: 0;
	}
	
	.rinen-box h2 {
    font-size: 24px;
		padding-bottom: 0px;
    margin-bottom: 30px;
	}
	
	.concept-1 li:nth-child(2) {
    width: auto;
    padding-left: 0;
    padding-top: 30px;
}
	
	.concept-2 li:nth-child(1) {
    width: auto;
    z-index: -100;
}
	
	.concept-2 li:nth-child(2){
		top: 70%;
    width: 90%;
    right: 0;
    left: 0;
    margin: 0 auto;
    padding: 30px;
	}
	
	.concept-1 {
    margin-bottom: 80px;
}
	
	.concept-2 li h2{
		font-size: 24px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-align: center;
	}
	
	.concept-2 {
    margin-bottom: 600px;
}
	.concept-3 h2{
    font-size: 24px;
		margin-left: 0;
    padding: 10px 20px;
    width: 70%;
    margin: 0 auto 20px;
	}
	
	.concept-3 li:nth-child(2){
		writing-mode: inherit;
		width: 90%;
	}
	
	.concept-3 p {
    letter-spacing: 6px;
    line-height: 30px;
}
	
	.rinen ul {
    display: block;
    position: inherit;
    background: #fff;
    padding: 50px 20px;
}
	
	.rinen li:nth-child(1) {
    width: auto;
    position: inherit;
}
	
	.rinen li div{
		margin-bottom: 50px;
	}
	
	.rinen-box p {
    margin-bottom: 20px;
}
	
	.rinen {
    margin-top: -30px;
		margin-bottom: 100px;
}
	
/* 小売	*/
	.kouri-1 ul{
		margin-bottom: 20px;
    margin-left: -10px;
    align-items: normal;
    justify-content: space-around;
	}
	
	.kouri-1 li:nth-child(1){
    font-size: 24px;
    padding-left: 0;
    margin-top: 30px;
	}

.kouri-1 li:nth-child(3){
  width: 55%;
}
	
.kouri-1 p {
    text-align: left;
}
	.kouri-1 {
    margin-bottom: 80px;
}

.kouri-2 ul {
    display: block;
    padding: 0;
}
	
	.kouri-2 li:nth-child(1) {
		width: auto;
	}
	
	.kouri-2 li:nth-child(2){
		width: 90%;
		padding: 30px;
		left: 0;
		right: 0;
		margin: 0 auto;
	}
	
	.kouri-2 h2 {
    font-size: 24px;
    text-align: center;
	padding-bottom: 10px;
    margin-bottom: 20px;
	}
	
	.kouri-2 {
    margin-bottom: 400px;
}

.main-text-2{
  font-size: 55px;
  margin-bottom: 20px;
}
	
	.shop-list h2 {
    width: auto;
}
	
	.shop-info h2 {
    width: auto;
    margin-bottom: 0;
}
	
	.top-info dl, .shop-info dl {
    display: block;
    margin: 0 0 10px;
}
	
	.shop-info iframe {
    margin-bottom: 50px;
    width: 100%;
}
	
	.shop-info .info-box {
  padding-bottom: 0;
  padding: 0;
  display: block;
}

.info-box p{
  padding-top: 0;
}
	
	.page-footer img {
    width: 25%;
}	
	
	.shop-list ul{
    flex-wrap: wrap;
    margin: 0 0 30px 0;
	}

  .shop-list ul li{
    width: 48%;
  }

  .link-btn{
    width: 90%;
    padding-bottom: 80px;
  }
	
	.thumbnail {
    height: auto;
    margin-right: 0;
    margin-bottom: 20px;
}

.shop-info{
  padding-top: 50px;
}

.info-box p{
  font-size: 18px;
  margin-bottom: 20px;
}

.info-box p span {
    font-size: 15px;
}

.info-left {
    width: auto;
}
	

.shop-info iframe{
margin-top: 50px;
}
/*	会社概要*/
	.company dl{
		margin-bottom: 0;
		display: block;
    width: auto;
	}
	
	.company dt {
    width: auto;
    font-weight: 700;
    border-top: 1px solid #8e4146;
	border-bottom: 0;
    padding: 20px;
}
	
	.company dd {
    width: 100%;
    border-top: 1px solid #666666;
    padding: 20px;
    font-size: 14px;
	border-bottom: 0;
}
	
	.year {
    width: 55%;
}
	
/*卸	*/
	.oroshi-1 ul {
	margin-bottom: 20px;
	}
	
	.oroshi-1 li:nth-child(1){
		font-size: 24px;
	}
	
	.oroshi-1 li:nth-child(3) {
    width: 55%;
}

.oroshi-1 p {
    text-align: left;
}
	
	.oroshi-1 {
    margin-bottom: 80px;
}
	
	.oroshi-2 ul {
    display: block;
}
	
	.oroshi-2 li:nth-child(1) {
    width: auto;
	}
	
	.oroshi-2 li:nth-child(2){
		width: 90%;
		padding: 24px;
		left: 0;
		right: 0;
		margin: 0 auto;
	}
	
	.oroshi-2 h2{
		font-size: 24px;
		text-align: center;
		padding-bottom: 10px;
		margin-bottom: 20px;
	}
	
	.kuramoto-list h2 {
    width: 30%;
    padding: 150px 0 20px;
	margin-bottom: 0;
}
	.kuramoto-list li {
    width: 22%;
    height: 140px;
	}

.logo-thumbnail{
  min-width: 60%;
}

.list-flex dt span{
  line-height: 0;
}
	
/*	商品一覧*/
	.prodact-list ul {
    display: block;
		margin-bottom: 50px;
}
	
	.prodact-list li {
    width: auto;
		margin-bottom: 20px;
	}
	
	.ichiran h2 {
    width: 43%;
		margin-top: 0;
	}
	
	.list-flex dl {
    width: auto;
    margin-bottom: 50px;
    width: 48%;
}
	
	.ichiran-link li {
    width: 65%;
    padding: 20px 0 80px;
}
	
	.prodact-top {
    margin: 60px 0 50px;
}

.list-flex dt{
  line-height: 1.2;
  margin-top: 10px;
}

.product-ab{
  bottom: -25px;
}
	
.prodact-list{
  margin-top: 100px;
}

/*	お問い合わせ*/
	.contact-top {
    height: 10vh;
    width: 65%;
    margin-top: 70px;
}
	
	.Form-Btn{
		width: 75%;
	}

	
}

/*デスクトップ*/
@media screen and (min-width:1500px){

	
}

@media screen and (min-width: 1px) and (max-width: 1400px){

}
