@charset "UTF-8";

*{
	margin:0;
	padding:0;
	box-sizing:border-box;
}
html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, menu, nav, section, time, mark, audio, video, details, summary {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
article, aside, figure, footer, header, nav, section, details, summary {
  display: block;
}
input,
button,
select {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #000;
}
img,
object,
embed {
  max-width: 100%;
}
html {
	overflow-y: scroll;
}
ul{
	list-style:none;
}
blockquote, q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
a{
	text-decoration:none;
	color:inherit;
}
del {
  text-decoration: line-through;
}
abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
th {
  font-weight: bold;
  vertical-align: bottom;
}
td {
  font-weight: normal;
  vertical-align: top;
}
td, td img {
  vertical-align: top;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
input, select {
  vertical-align: middle;
}
pre {
  white-space: pre;
  /* CSS2 */
  white-space: pre-wrap;
  /* CSS 2.1 */
  white-space: pre-line;
  /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word;
  /* IE */
}
input[type=radio] {
  vertical-align: text-bottom;
}
input[type=checkbox] {
  vertical-align: bottom;
}
label,
input[type=button],
input[type=submit],
input[type=file],
button {
  cursor: pointer;
}
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
.clickable,
label,
input[type=button],
input[type=submit],
input[type=file],
button {
  cursor: pointer;
}
button, input, select, textarea {
  margin: 0;
}
button,
input[type=button] {
  width: auto;
  overflow: visible;
}
::before,
::after {
	box-sizing: border-box;
}
.clearfix:before, .clearfix:after {
  content: " ";
  display: block;
  height: 0;
  overflow: hidden;
}
.clearfix:after {
  clear: both;
}
.clearfix {
  zoom: 1;
}


html {
	font-size: 62.5%;
	height: auto;
	overflow: visible;
}
body{
	font-family: "Yu Gothic Medium", "Yu Gothic", YuGothic, "Hiragino Sans", Meiryo, sans-serif;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 400;
	color: #2b2b2b;
	line-height: 2;
	letter-spacing: 0.05em;
	overflow-x: hidden;
	opacity: 0;
	animation: pageFadeIn .8s ease forwards;
}
@keyframes pageFadeIn {
	to {
		opacity: 1;
	}
}
body::after {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	z-index: 9999;
	pointer-events: none;
	opacity: 0;
	transition: opacity .8s ease;
}
body.fade::after {
	opacity: 1;
}
h1,h2,h3{
	font-family: var(--font-shippori);
	font-weight: 500;
}
img{
	width:100%;
	display:block;
}
.pc-only{
	display:block !important;
}
.sp-only{
	display:none !important;
}
body.is__fix{
	overflow:hidden;
}
.main{
	padding-top: 119px;
}
.main--overlay{
	padding-top: 0;
}
@media screen and (max-width: 1060px){
	.main {
		padding-top: 82px;;
	}
}
@media screen and (max-width: 768px){
	.pc-only{
		display: none !important;
	}
	.sp-only{
		display: block !important;
	}
	.main {
		padding-top: 82px;;
	}
}
/* =========================
common パーツ
========================= */
:root {
	--font-en: "Shippori Mincho",serif;
	--font-shippori: "Shippori Mincho",serif;
	--font-yugothic: "Yu Gothic","游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
.l-inner{
	padding-left: 30px;
	padding-right: 30px;
	max-width: 1060px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}
/******* image animation *******/
.fade-img{
	opacity:0;
	transform:translateY(60px);
	transition:
	opacity 1.2s ease,
	transform 1.2s ease;
}
.fade-img.is-show{
	opacity:1;
	transform:translateY(0);
}
.fade-img img{
	width:100%;
	display:block;
}
/******* common btn *******/
.c-btn{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 245px;
	min-height: 60px;
	padding-left: 25px;
	background: #a29f96;
	color: #fff;
	border: 1px solid #a29f96;
	text-decoration: none;
	overflow: hidden;
	transition: color .4s ease;
	border-radius: 8px;
}
/* hover bg */
.c-btn::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: #fff;
	transition: width .45s cubic-bezier(.77,0,.18,1);
	z-index: 1;
}
.c-btn:hover::before{
	width: 100%;
}
/* text */
.c-btn__text{
	position: relative;
	z-index: 2;
	font-size: 1.5rem;
	font-weight: 500;
	letter-spacing: .01em;
	transition: color .4s ease;
}
.c-btn:hover .c-btn__text{
  color: #a29f96;
}
/* arrow */
.c-btn__arrow{
	position: relative;
	z-index: 2;
	width: 50px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: border-color .4s ease;
}
.c-btn__arrow::before{
	position: absolute;
	content: "";
	width: 1px; 
	height: 32px;
	background: #d9d7d2;
	left: 0;
}
.c-btn__arrow img{
	width: 8px;
	height: auto;
	transition: transform .4s ease;
}
.c-btn:hover .c-btn__arrow img{
	transform: translateX(4px);
}
/* white ver */
.c-btn-white{
	background: #fff;
	color: #a29f96;
}
.c-btn-white::before{
	background: #a29f96;
}
.c-btn-white:hover .c-btn__text{
	color: #fff;
}
/* 矢印左 */
.c-btn-arrow--back{
	padding-right: 25px;
	padding-left: 0;
}
.c-btn-arrow--back .c-btn__arrow::before{
	background: #d9d7d2;
	left: auto;
	right: 0;
}
.c-btn-arrow--back .c-btn__arrow img{
	transform: rotate(180deg);
}
.c-btn-arrow--back:hover .c-btn__arrow img{
	transform: rotate(180deg) translateX(4px);
}

/* フェードイン */
.fadeUp{
	opacity:0;
	transform:translateY(80px);
}
.fadeIn{
	opacity: 0;
}

/* 回転円 */
.has-orbit{
	position: relative;
}
.circle-wrap {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
}
/* 軌道 */
.orbit {
	position: absolute;
	top: 20%;
	left: -2%;
	width: 750px;
	height: 750px;
	margin: -350px 0 0 -350px;
	z-index: -1;
}
.orbit.right {
	top: 60%;
	left: 100%;
}
/* 円 */
.circle {
	position: absolute;
	top: 50%;
	left: 50%;
	border: 1px solid rgba(233,232,229,1);
	border-radius: 50%;
	transform: translate(-50%, -50%);
}
/* 外側 */
.orbit--01 {
	animation: orbitRotate 4s linear infinite;
}
.orbit--01 .circle {
	width: 470px;
	height: 470px;
	transform:
	translate(-50%, -50%)
    translateX(60px);
}
/* 内側 */
.orbit--02 {
	animation: orbitRotate 4s linear infinite;
}
.orbit--02 .circle {
	width: 470px;
	height: 470px;
	transform:
    translate(-50%, -50%)
    translateX(30px);
}
/* 両方右回転 */
@keyframes orbitRotate {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}
@keyframes orbitLeft {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}
@keyframes orbitRight {
	from {
		transform: rotate(360deg);
	}
	to {
		transform: rotate(0deg);
	}
}

/******* 左右ライン見出し *******/
.c-heading-line {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
}
.c-heading-line__line {
	flex: 1;
	max-width: 100%;
	height: 1px;
	background: #dcdddd;
}
.c-heading-line__title {
	font-size: 3.3rem;
	line-height: 1.4;
	letter-spacing: 0;
	white-space: nowrap;
}
.c-underline{
	text-decoration: underline;
}
.c-underline.link-underline:hover{
	text-decoration: none;
}
@media screen and (max-width: 768px) {
	.l-inner{
		padding-left: 50px;
		padding-right: 50px;
	}
	.c-btn{
		/*max-width: 275px;*/
		max-width: 100%;
		margin-left: auto;
		margin-right: auto;
		min-height: 50px;
		border-radius: 4px;
	}
	.c-btn__text{
		font-size: 1.6rem;
	}
	.c-heading-line {
		gap: 13px;
	}
	.c-heading-line__line {
		max-width: none;
	}
	.c-heading-line__title {
		font-size: 2.7rem;
	}
	.orbit {
		left: 18%;
		width: 400px;
		height: 400px;
	}
	.orbit.right {
		top: 60%;
		left: 155%;
	}
	.orbit--01 .circle {
		width: 300px;
		height: 300px;
	}
	.orbit--02 .circle {
		width: 300px;
		height: 300px;
	}
}
	
/* =========================
  header
========================= */
.header{
	width:100%;
	position:fixed;
	top:0;
	left:0;
	z-index:100;
	display:flex;
	justify-content:space-between;
	padding: 38px 47px 19px 40px;
	font-family:var(--font-shippori);
	transition:all .3s ease;
	height: 119px;
}
.header.is-scrolled{
	background:#fff;
	padding: 15px 40px 15px;
	height: 80px;
}
.header.header--top .header-logo {
	width: 100px;
	transition:all .3s ease;
}
.header.is-scrolled .header-logo{
	transition:all .3s ease;
}
.header.header--top.is-scrolled .header-logo,
.header.is-scrolled .header-logo {
    width: 70px;
}

.header--overlay{
	color:#fff;
}
.header--overlay.is-scrolled{
	background:#fff;
	color:#333;
}
.header-logo{
	width: 88px;
}
.header-logo__img{
	width: 100%;
	height: auto;
	aspect-ratio: 100/69;
	display:block;
	background: url("../img/logo-red.svg") no-repeat center/contain;
	font-size: 0;
	line-height: 0;
}
.header-logo.active .header-logo__img{
	background-image: url("../img/logo-white.svg");
}
.header-nav{
	display:flex;
	align-items:flex-start;
	gap: 70px;
	position: relative;
	padding-top: 10px;
}
.header-nav__list{
	display: flex;
	gap: 32px;
	font-size: 1.5rem;
}
.header-nav__item {
	position: relative;
}
.header-nav__item--company {
	position: static;
}
.header-nav__link{
	position:relative;
	display:inline-block;
	letter-spacing: -0.01em;
	cursor: pointer;
}
.header-nav__link::after{
	content:"";
	position:absolute;
	left:0;
	bottom:0;
	width:0;
	height:1px;
	background:#2b2b2b;
	transition:width .3s ease;
}
.header--overlay .header-nav__link::after{
	content:"";
	position:absolute;
	left:0;
	bottom:0;
	width:0;
	height:1px;
	background: #fff;
	transition:width .3s ease;
}
.header--overlay.is-scrolled .header-nav__link::after{
	background: #2b2b2b;
}
.header-nav__link:hover::after,
.header--overlay .header-nav__link:hover::after{
	width:100%;
}
.header-shop{
	font-size: 1.4rem;
}
.header-shop span{
	padding-left: 26px;
	display: inline-block;
	position: relative;
	letter-spacing: 0.12em;
}
.header-shop span::before{
	position: absolute;
	content: "";
	background: url("../img/icon-cart-black.svg") no-repeat;
	width: 17px;
	height: 17px;
	left: 0;
	transform: translateY(-55%);
    top: 50%;
}
.header--overlay .header-shop span::before{
	background: url("../img/icon-cart-white.svg") no-repeat;
}
.header--overlay.is-scrolled .header-shop span::before{
	background: url("../img/icon-cart-black.svg") no-repeat;
}
.header-shop::after{
	content:"";
	position:absolute;
	left:0;
	bottom:0;
	width:0;
	height:1px;
	background:#2b2b2b;
	transition:width .3s ease;
}
.header--overlay .header-shop::after{
	background:#fff;
}
.header--overlay.is-scrolled .header-shop::after{
	background: #2b2b2b;
}
.header-shop:hover::after{
	width:100%;
}
.header-shop__item{
	position: relative;
}
.header-shop__item::after{
	position: absolute;
	content: "";
	width: 1px;
	height: 20px;
	background: #dcdddd;
	left: -38px;
	transform: translateY(-55%);
    top: 50%;
}
.header--overlay .header-shop__item::after{
	background: #fff;
}
.header--overlay.is-scrolled .header-shop__item::after{
	background: #2b2b2b;
}
.sub-nav{
	position:absolute;
	width: 330px;
	top: 48px;
	left: calc(50% - 165px);
	background:#fff;
	padding:10px;
	opacity:0;
	visibility:hidden;
	transition:.4s;
	color: #fff;
	z-index: 999;
}
.sub-nav--company{
	width: 970px;
	top: 58px;
	left: -280px;
}
.has-sub:hover .sub-nav{
	opacity:1;
	visibility:visible;
}
.sub-nav__grid{
	display:grid;
	grid-template-columns: 1fr;
	gap: 10px;
}
.sub-nav--company .sub-nav__grid{
	grid-template-columns: 1fr 1fr 1fr;
}
.sub-card{
	display: block;
	position:relative;
	overflow:hidden;
	height: 80px;
	backface-visibility: hidden;
}
.sub-card.large{
	grid-row:span 2;
	height: 170px;
}
.sub-card::before{
	content: "";
	position: absolute;
	top: 50%;
	right: 44px;
	width: 1px;
	height: 32px;
	background: rgba(255,255,255,.7);
	transform: translateY(-50%);
	z-index: 3;
}
.sub-card::after{
	content:"";
	background: url("../img/icon-arrow-right-white.svg") no-repeat;
	position:absolute;
	top:50%;
	right:22px;
	transform:translateY(-50%);
	z-index:3;
	width: 8px;
	height: 9px;
}
.sub-card__content{
	position:absolute;
	inset:0;
	display:flex;
	align-items:center;
	padding-left: 25px;
	z-index:2;
}
.sub-card.large .sub-card__content{
	padding-left: 30px;
}
.sub-card__content span{
	font-size: 1.5rem;
	letter-spacing:.08em;
}
.sub-card__content span .copy{
	display: block;
	font-size: 1rem;
	letter-spacing: 0;
	line-height: 1;
	margin-bottom: 5px;
}
.sub-card__img{
	width:100%;
	height:100%;
	overflow:hidden;
}
.sub-card__img img{
	object-fit:cover;
	transition:transform .7s ease;
	display: block;
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform;
    width: calc(100% + 1px);
    height: calc(100% + 1px);
    margin: -1px;
}
.sub-card:hover .sub-card__img img{
	transform:scale(1.08);
}	
.header-ham{
	display:none;
}
.header-nav__item.has-sub .header-nav__link{
		letter-spacing: -0.05em;
	}
@media screen and (max-width: 1369px){
	.sub-nav--company{
		width: 850px;
		left: -162px;
	}
}
@media screen and (max-width: 1239px){
	.sub-nav--company{
		width: 800px;
		left: -113px;
	}
}
@media screen and (max-width: 1199px){
	.sub-nav--company{
		width: 710px;
		left: -21px;
	}
}
@media screen and (max-width: 1100px){
	.header-nav__list{
		transition: all .3s ease;
		gap: 24px;
	}
	.sub-nav--company{
		width: 650px;
		left: -1px;
	}
}
@media screen and (min-width: 1061px){
	.header-nav__link--sp {
		display: none!important;
	}
}
@media screen and (max-width: 1060px){
	.header{
		padding: 20px;
		height: 82px;
	}
	.header.is-scrolled{
		padding: 20px;
	}
	.header--overlay.is-scrolled{
		background: none;
	}
	.header-logo{
		width: 60px;
		position:relative;
		z-index:120;
	}
	.header.header--top .header-logo,
	.header.header--top.is-scrolled .header-logo{
		width: 60px;
	}
	.header.is-scrolled .header-logo{
		width: 60px;
	}
	.header-ham{
		width: 32px;
		height: 20px;
		display:block;
		position:relative;
		z-index:120;
		border:none;
		background:none;
		top: 10px;
	}
	.header-ham span{
		position:absolute;
		left:0;
		width:100%;
		height:2px;
		background:#333;
	}
	.header-ham span:nth-child(1){
		top:0;
	}
	.header-ham span:nth-child(2){
		top: 8px;
	}
	.header-ham span:nth-child(3){
	  top: 17px;
	}
	.header-ham.active span:nth-child(1){
		transform:rotate(40deg);
		top: 8px;
		background:#fff;
	}
	.header-ham.active span:nth-child(2){
		opacity:0;
	}
	.header-ham.active span:nth-child(3){
		transform:rotate(-40deg);
		top: 8px;
		background:#fff;
	}
	.header-nav{
		position:fixed;
		inset:0;
		background: #a29f96;
		padding: 100px 45px 60px;
		display:block;
		opacity:0;
		visibility:hidden;
		transition:.4s;
		overflow:auto;
	}
	.header-nav.active{
		opacity:1;
		visibility:visible;
	}
	.header-nav__list{
		display:block;
		font-size: 1.6rem;
	}
	.header-nav__list::after{
		content: none;
	}
	.header-nav__item{
		position: relative;
		border-bottom:1px solid #d9d7d2;
	}
	.header-nav__link--pc {
		display: none!important;
	}
	.accordion-toggle{
		position: relative;
		width: 30px;
		height: 30px;
		flex-shrink: 0;
	}
	.accordion-toggle.is-open{
		border-bottom: none;
	}
	.accordion-toggle::before,
	.accordion-toggle::after{
		position: absolute;
		content: '';
		top: 30px;
		right: 0;
		width: 20px;
		height: 1px;
		background-color: #d9d7d2;
		transition: all .3s ease-in-out;
	}
	.accordion-toggle::before{
		transform: rotate(90deg);
	}
	.accordion-toggle::after{
		
	}
	.header-nav__item.has-sub.is-open .accordion-toggle::before{
		transform: rotate(180deg);
	}
	.header-nav__item.has-sub.is-open .accordion-toggle::after{
		opacity:0;
	}
	.header-nav__item::before{
		content: "";
		position: absolute;
		top: 50%;
		right: 30px;
		width: 1px;
		height: 32px;
		background: #d9d7d2;
		transform: translateY(-50%);
		z-index: 3;
	}
	.header-nav__item::after{
		content:"";
		background: url("../img/icon-arrow-right-white.svg") no-repeat;
		position:absolute;
		top:50%;
		right: 0;
		transform:translateY(-50%);
		z-index:3;
		width: 8px;
		height: 9px;
	}
	.header-nav__head{
		display: flex;
		border-bottom: 1px solid #d9d7d2;
	}
	.header-nav__item.has-sub{
		border-bottom: none;
	}
	.header-nav__item.has-sub::before,
	.header-nav__item.has-sub::after{
		content: none;
	}
	.header-nav__link{
		color: #fff;
		width:100%;
		display:flex;
		align-items:center;
		justify-content:space-between;
		padding: 12px 0;
	}
	.header-nav__link::after{
		display:none;
	}
	.header-shop span{
		color: #fff;
	}
	.sub-nav{
		position: static;
		width: 100%;
		transform: none;
		opacity: 1;
		visibility: visible;
		display: none;
		background: none;
		padding: 0 0 0 13px;
		transition: 0s;
	}
	.sub-nav__grid{
		gap: 0;
		grid-template-columns: auto;
	}
	.sub-nav--company .sub-nav__grid{
		grid-template-columns: auto;
	}
	.sub-card.large{
		height: 50px;
		grid-row:auto;
	}
	.sub-card{
		height: 50px;
		border-bottom: 1px solid rgba(255, 255, 255, .4);
	}
	.sub-nav--company .sub-card:first-child{
		display: none;
	}
	.sub-card::before{
		content: none;
	}
	.sub-card::after{
		right: 0;
	}
	.sub-card__img{
		display: none;
	}
	.sub-card__content{
		padding-left: 0;
	}
	.sub-card__content span .copy{
		display: none;
	}
	.header-shop{
		margin-top: 45px;
		display: flex;
		justify-content: center;
		border: 1px solid #d9d7d2;
		padding: 6px 28px 4px;
		font-size: 1.7rem;
		letter-spacing: 0.14em;
	}
	.header-shop__item::after{
		content: none;
	}
	.header-shop span::before{
		background: url("../img/icon-cart-white.svg") no-repeat;
	}
	.header--overlay.is-scrolled .header-shop span::before{
		background: url("../img/icon-cart-white.svg") no-repeat;
	}
}

/* =========================
TOP MV
========================= */
.mv{
	position:relative;
	height:100vh;
	overflow:hidden;
}
.mv-video{
	position:absolute;
	inset:0;
	width:100%;
	height:100%;
	object-fit:cover;
}
.mv-overlay{
	position:absolute;
	inset:0;
	background:rgba(0,0,0,.2);
}
.mv-media {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.mv-content{
	position: absolute;
	left: 60px;
	bottom: 40px;
	z-index: 2;
	color: #fff;
}
.mv-copy{
	font-size: 4rem;
	line-height:1.4;
}
.mv-text{
	margin-top: 10px;
	padding-left: 5px;
	font-family: var(--font-shippori);
}
/******* MV news *******/
.mv-news{
	position:absolute;
	right: 45px;
	bottom: 35px;
	z-index:3;
	color: #fff;
	width: 370px;
}
.mv-news__link{
	display:flex;
	align-items:flex-start;
	gap: 15px;
}
.mv-news__ttl{
	writing-mode:vertical-rl;
	font-size: 1.5rem;
	letter-spacing: 0.66em;
	line-height:1;
	padding-top: 3px;
}
.mv-news__img{
	width: 132px;
	height: 95px;
	overflow:hidden;
	background: #fff;
	display: flex;
    align-items: center;
	flex-shrink: 0;
}
.mv-news__img img{
	width:100%;
	height:100%;
	object-fit:cover;
	transition:transform .7s ease;
}
.mv-news__link:hover .mv-news__img img{
	transform:scale(1.08);
}
.mv-news__content{
	padding-top: 5px;
}
.mv-news__meta{
	display: flex;
	align-items: center;
	gap: 10px;
}
.mv-news__meta time{
	font-size: 1.3rem;
}
.mv-news__cat{
	border: 1px solid #fff;
	border-radius: 100px;
	padding: 4px 6px;
	font-size: 1.1rem;
	line-height:1;
	letter-spacing: 0;
}
.mv-news__text{
	margin-top: 5px;
	font-size: 1.5rem;
	line-height: 1.8;
}
/******* mv scroll *******/
.mv-scroll{
	position:absolute;
	width: 10px;
	right: 25px;
	top:50%;
	transform:translateY(-50%);
	z-index:3;
}
@media screen and (max-width: 1060px){
	.mv-content{
		left: 20px;
		bottom: calc(185 / 1060 * 100vw);
		width:calc(100% - 72px);
	}
	.mv-copy{
		font-size: 2.8rem;
		line-height: 1.5;
		letter-spacing:.06em;
	}
	.mv-text{
		margin-top: 10px;
		font-size: 1.6rem;
		line-height: 1.8125;
		letter-spacing:.08em;
		padding-left: 0;
	}
	/******* MV news *******/
	.mv-news{
		position:absolute;
		left:0;
		bottom:0;
		width:100%;
		padding: 15px 15px;
		background: rgba(255,255,255,.75);
		backdrop-filter:blur(8px);
		z-index:5;
	}
	.mv-news__link{
		display:grid;
		grid-template-columns: 20px calc(172 / 750 * 100%) 1fr;
		gap: 12px;
		align-items: center;
		color: #2b2b2b;
	}
	.mv-news__ttl{
		writing-mode:vertical-rl;
		font-size: 1.5rem;
		line-height:1;
		letter-spacing: 0.1em;
		padding-top: 0;
	}
	.mv-news__img{
		width: 100%;
		height: calc(124 / 1060 * 100vw);
		overflow:hidden;
	}
	.mv-news__link:hover .mv-news__img img{
		transform:scale(1.08);
	}
	.mv-news__content{
		padding-top:2px;
	}
	.mv-news__meta{
		display:flex;
		align-items:center;
		gap:14px;
		flex-wrap:wrap;
	}
	.mv-news__meta time{
		font-size: 1.1rem;
		line-height:1;
	}
	.mv-news__cat{
		padding: 4px 9px 3px;
	}
	.mv-news__text{
		margin-top: 7px;
		font-size: 1.2rem;
		line-height: 1.5;
		letter-spacing: .01em;
	}
	/******* mv scroll *******/
	.mv-scroll{
		right:18px;
		bottom: 7.5%;
		height: 140px;
        top: auto;
	}
}
@media screen and (max-width: 768px) {
	.mv-content{
		bottom: calc(250 / 750 * 100vw);
	}
	.mv-news__img{
		height: calc(124 / 768 * 100vw);
	}
}

/* ========================================
TOP ABOUT
======================================== */
.about{
	overflow: hidden;
	padding: 210px 0 200px;
}
.about-block{
	position:relative;
	margin-top: 33px;
}
/******* BLOCK 01 *******/
.about-block--01{
	display:grid;
	grid-template-columns: minmax(100px, 301px) auto minmax(200px, 382px);
	align-items:start;
	column-gap: 20px;
	justify-content: space-between;
}
/******* BLOCK 02 *******/
.about-block--02{
	display: flex;
	justify-content: space-between;
	align-items: end;
	margin-top: -104px;
}
.about-block--02 .about-content{
	margin-bottom: 60px;
	max-width: 380px;
}
.about-block--02 .about-flex__ttl{
	margin-right: -50px;
}
/******* MEDIA *******/
.about-media{
	overflow:hidden;
	position:relative;
}
.about-media img{
	width:100%;
	height:100%;
	object-fit:cover;
	display:block;
}
/* 左画像 */
.about-media--left{
	margin-top:90px;
}
/* 右画像 */
.about-media--right{
}
/* 下画像 */
.about-media--small{
	width:330px;
	margin-right: 140px;
	margin-left: 40px;
}
/******* VIDEO *******/
.about-video{
	width:520px;
	height: auto;
	aspect-ratio: 525/796;
	overflow:hidden;
}
.about-video video{
	width:100%;
	height:100%;
	object-fit:cover;
	display:block;
}
/******* CONTENT *******/
.about-content{
	position:relative;
	z-index:2;
}
.about-heading-wrap{
	display: flex;
	align-items: flex-start;
	margin-top: -40px;
}
.about-detail{
	margin-left: calc(80 / 1440 * 100vw);
	padding-top: 90px;
}
.about-en{
	font-family: var(--font-shippori);
	font-size: 1.2rem;
	letter-spacing: .08em;
	margin-bottom: 40px;
}
.about-title{
	color:#222;
}
/* 縦見出し */
.about-title--vertical{
	writing-mode: vertical-rl;
	font-size: 3.3rem;
	line-height: 1.84;
	letter-spacing: .05em;
	height: 390px;
}
.about-title--vertical .num{
	transform: rotate(-90deg) translateX(4px);
    display: inline-block;
	padding: 7px 0;
	position: relative;
    right: -2px;
}
.about-title.pc-title{
	display: block;
}
.about-title.sp-tablet-title{
	display: none;
}
/* 横見出し */
.about-title--horizontal{
	font-size: 2.6rem;
	line-height: 1.76;
	letter-spacing: .05em;
	margin-bottom: 25px;
}
.about-block--01 .about-text{
	max-width: 245px;
}
.about-block--02 .about-text{
	max-width: 380px;
}
.about-text p{
	font-size: 1.5rem;
	line-height: 2;
	letter-spacing: 0.01em;
}
/* ボタン */
.about__btn{
	margin-top: 40px;
}
@media screen and (max-width: 1060px){
	.about{
		padding: 54px 0;
	}
	.about-block--01,
	.about-block--02{
		display: flex;
		flex-direction: column-reverse;
	}
	/******* BLOCK 01 *******/
	.about-block--01{
		margin-bottom: 0;
	}
	/******* BLOCK 02 *******/
	.about-block--02{
		margin-top: -75px;
	}
	.about-block--02 .about-content{
		margin-top: 40px;
		width: 100%;
		max-width: 100%;
	}
	.about-block--02 .about-flex__ttl{
		margin-right: 0;
	}
	.about-block--02 .about-title--vertical{
		position: absolute;
		left: 50px;
		margin-top: 70px;
	}
	.about-block--02 .about-text{
		max-width: 100%;
	}
	/******* 画像 *******/
	.about-media--left{
		width: 31.374vw;
		margin: 55px 0 0 auto;
	}
	.about-media--right{
	  width:42vw;
	  margin: 0 0 0 auto;
	}
	.about-media--small{
		width: 31.374vw;
		margin: -50px auto 60px 16vw;
	}
	/******* 動画 *******/
	.about-video{
		width: 45.337vw;
		margin: 70px -20px 0 auto;
	}
	/******* CONTENT *******/
	.about-content{
		width: calc(100% - 100px);
		margin: auto;
		margin-top: calc(-570 / 1060 * 100vw);
	}
	.about-heading-wrap{
		display:block;
	}
	.about-detail{
		margin-left:0;
		padding-top:calc(235 / 1060 * 100%);
	}
	.about-title.sp-tablet-title{
		display: block;
	}
	.about-title.pc-title{
		display: none;
	}
	/* 横見出し */
	.about-title--horizontal{
		font-size:4rem;
		line-height:1.7;
		margin-bottom:34px;
	}
	.about-en{
		font-size: 1.2rem;
		margin-bottom: 40px;
	}
	.about-text{
		max-width:none;
	}
	.about-text p{
		font-size:1.5rem;
		line-height:2.1;
	}
	.about-block--01 .about-text{
		max-width: 100%;
	}
	.about-flex__ttl{
		display: flex;
	}
}
@media screen and (max-width: 768px) {
	.about{
		padding: 50px 0 0;
	}
	.about-heading-wrap{
		margin-top: 0;
	}
	.about-content{
		margin-top: calc(-456 / 768 * 100vw);
	}
	.about-detail{
		padding-top: 50px;
	}
	/* 縦見出し */
	.about-title--vertical{
		font-size: 2.7rem;
		line-height:1.5;
		height: auto;
	}
	.about-block--01{
		margin-top: 0;
	}
	.about-block--01 .about-text{
		max-width: 100%;
	}
	.about-block--02 .about-title--vertical{
		font-size: 2.3rem;
	}
	.about-media--right {
		width: 42vw;
		max-width: 220px;
		flex-shrink: 0;
	}
}

/* ========================================
TOP quality
======================================== */
.quality{
	position: relative;
	color: #fff;
	overflow: hidden;
}
.quality-bg{
	position: absolute;
	top: -20%;
	left: 0;
	width: 100%;
	height: 120%;
	background: url(../img/index/quality_bg.jpg) center center / cover no-repeat;
	z-index: -1;
}
.quality__inner{
	position: relative;
	z-index: 2;
	min-height: 100vh;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 60px;
	padding-block: 140px;
}
/******* 縦見出し *******/
.quality__lead{
	writing-mode: vertical-rl;
	flex-shrink: 0;
	margin-top: -90px;
}
.quality__lead-text{
	font-size: 2.6rem;
	line-height: 1.769;
	font-weight: 100;
}
/******* 右側 *******/
.quality__content{
	width: 252px;
	display: flex;
	flex-direction: column;
}
.quality__textbox{
	width: 100%;
}
.quality__en{
	font-family: var(--font-shippori);
	font-size: 1.2rem;
	letter-spacing: .15em;
	margin-bottom: 40px;
}
.quality__text p{
	font-size: 1.5rem;
	line-height: 2;
	letter-spacing: .01em;
}
.company__btn{
	margin-top: 40px;
}
.quality__btn{
	margin-top: 40px;
}
@media screen and (max-width: 1060px) {
	.quality__inner{
		min-height: auto;
		padding-top: 200px;
	}
}
@media screen and (max-width: 768px) {
	.quality{
		padding: 110px 0 55px;
	}
	.quality__inner{
		min-height: auto;
		display: block;
		padding-block: 0;
	}
	/* 上段 */
	.quality__content{
		width: 100%;
		display: contents;
	}
	.quality__lead{
		float: left;
		margin-right: 20px;
		margin-top: -32px;
	}
	.quality__lead-text{
		font-size: 2.3rem;
		line-height: 1.76;
	}
	.quality__en{
		font-size: 1.2rem;
	}
	.quality__text p{
		font-size: 1.6rem;
		line-height: 1.8125;
		letter-spacing: -.094em;
	}
	/* ボタン */
	.quality__btn{
		margin-top: 60px;
	}
}

/* ========================================
TOP product
======================================== */
.product-section {
	padding: 200px 0 220px;
}
.product-section__heading {
	text-align: center;
	margin-bottom: 70px;
}
.product-section__sub {
	font-family: var(--font-shippori);
	font-size: 1.2rem;
	margin-bottom: 40px;
}
.product-section__title {
	font-size: 2.6rem;
	letter-spacing: 0;
	line-height: 1.76;
}
.product-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 45px 80px;
}
.product-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
}
.product-card__image-wrap {
	background: #f3f3f1;
	padding: 16px 0;
	overflow: hidden;
}
.product-card__image {
	height: 248px;
	overflow: hidden;
	padding: 28px;
}
.product-card__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	transition: transform .5s ease;
	filter: drop-shadow(7px 7px 7px rgba(0,0,0,.25));
}
.product-card:hover .product-card__image img {
	transform: scale(1.08);
}
.product-card__body {
	padding-top: 30px;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.product-card__head {
	flex: 1;
}
.product-card__title {
	font-size: 1.7rem;
	font-weight: 700;
	line-height: 1.76;
	text-align: center;
}
/* 下線 */
.product-card__title span{
	position: relative;
}
.product-card__title span::after{
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 100%;
	height: 1px;
	background: #2b2b2b;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform .35s ease;
}
/* hover */
.product-card:hover .product-card__title span::after {
	transform: scaleX(1);
}
.product-card__text {
	font-size: 1.5rem;
	line-height: 2;
	margin-top: 18px;
	letter-spacing: -0.07em;
}
.product-card__tags {
	margin-top: 15px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.product-card__tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 54px;
	height: 24px;
	padding: 0 12px;
	border-radius: 999px;
	background: #2b2b2b;
	color: #fff;
	font-size: 1.2rem;
	letter-spacing: 0;
	line-height: 1;
}
.product-card__tag--new {
	background: #e5002d;
}
.product-section__btn {
	margin-top: 65px;
	display: flex;
	justify-content: center;
}
@media screen and (max-width: 768px) {
	.product-section {
		padding: 55px 0;
	}
	.product-section__heading {
		margin-bottom: 35px;
	}
	.product-section__sub {
		margin-bottom: 10px;
	}
	.product-section__title {
		font-size: 2.8rem;
	}
	.product-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px 29px;
	}
	.product-card__image-wrap {
		padding: 5px 10px 6px;
	}
	.product-card__image {
		height: 112px;
		padding: 14px 0;
	}
	.product-card__image img{
		filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, .25));
	}
	.product-card__body {
		padding-top: 15px;
	}
	.product-card__title {
		font-size: 1.5rem;
		text-align: left;
		line-height: 1.5;
		letter-spacing: 0;
	}
	.product-card__text {
		font-size: 1.2rem;
		line-height: 1.5;
		margin-top: 10px;
	}
	.product-card__tags {
		margin-top: 15px;
		gap: 6px;
	}
	.product-card__tag {
		min-width: 46px;
		height: 18px;
		padding: 0 10px;
		font-size: 1.1rem;
		line-height: 2;
	}
	.product-section__btn {
		margin-top: 40px;
	}
}

/* ========================================
top banner
======================================== */
.top-brand_banner {
	display: flex;
}
/******* item *******/
.top-brand_banner__item {
	position: relative;
	width: 50%;
	height: calc(370 / 1440 * 100vw);
    min-height: 370px;
	/*aspect-ratio: 960 / 370;*/
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	text-decoration: none;
	color: #fff;
	padding: 75px 10px;
}
/******* background *******/
.top-brand_banner__item::before {
	content: "";
	position: absolute;
	inset: 0;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	transition: transform 1s ease;
}
/* overlay */
.top-brand_banner__item::after {
	content: "";
	position: absolute;
	inset: 0;
}
/* hover */
.top-brand_banner__item:hover::before {
	transform: scale(1.08);
}
/* 背景画像 */
.top-brand_banner__item--01::before {
	background-image: url("../img/img_brand_01_bg.jpg");
}
.top-brand_banner__item--02::before {
	background-image: url("../img/img_brand_02_bg.jpg");
}
/******* content *******/
.top-brand_banner__content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.top-brand_banner__image {
	width: 72px;
	margin-bottom: 24px;
}
.top-brand_banner__image img {
	width: 100%;
	display: block;
	box-shadow: 10px 10px 20px rgba(0,0,0,.12);
}
.top-brand_banner__sub {
	font-family: var(--font-shippori);
	font-size: 1.5rem;
	line-height: 1.2;
	margin-bottom: 12px;
}
.top-brand_banner__title {
	font-size: 3.7rem;
	line-height: 1.189;
	letter-spacing: 0;
	font-weight: 100;
}
.top-brand_banner__title span {
	font-size: 2.2rem;
	position: relative;
	top: -5px;
}
@media screen and (max-width: 1060px) {
	.top-brand_banner__title {
		font-size: 3rem;
	}
}
@media screen and (max-width: 768px) {
	.top-brand_banner {
		display: block;
	}
	.top-brand_banner__item {
		width: 100%;
		padding: 55px 10px;
		height: calc(540 / 750 * 100vw);
        min-height: 270px;
	}
	.top-brand_banner__content {
		width: 100%;
		padding: 0 30px;
	}
	.top-brand_banner__image {
		width: 70px;
		margin-bottom: 18px;
	}
	.top-brand_banner__sub {
		font-size: 1.2rem;
		margin-bottom: 8px;
  }
	.top-brand_banner__title {
		font-size: 2rem;
	}
	.top-brand_banner__title span {
		font-size: 1.6rem;
	}
}

/* ========================================
TOP INFOMATION
======================================== */
.news {
	padding: 290px 0 220px;
	overflow: hidden;
}
.news__wrap {
	display: flex;
	align-items: flex-start;
	gap: 80px;
}
.news__content {
	width: 340px;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	margin-top: -65px;
}
.news__slider-wrap {
	flex: 1;
	min-width: 0;
}
.news__slider {
	overflow: hidden;
	margin-right: calc(50% - 50vw);
	padding-right: 230px;
}
/******* text *******/
.news__en {
	font-family: var(--font-shippori);
	font-size: 1.2rem;
}
.news__title {
	margin-top: 40px;
	font-size: 2.6rem;
	line-height: 1.75;
}
.news__text {
	margin-top: 25px;
	font-size: 1.5rem;
	line-height: 1.75;
	letter-spacing: 0.01em;
}
.news__btn {
	margin-top: 40px;
}
/******* card *******/
.ss__item{
	width: 290px !important;
}
.news-card {
	display: block;
	color: inherit;
}
.news-card__thumb {
	overflow: hidden;
	aspect-ratio: 1 / 0.63;
	background: #d9d9d9;
	border-radius: 8px;
}
.news-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .8s ease;
}
.news-card:hover .news-card__thumb img {
	transform: scale(1.08);
}
.news-card__body {
	margin-top: 22px;
}
.news-card__title {
	font-size: 1.5rem;
	line-height: 1.86;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	letter-spacing: 0;
}
.news-card__meta {
	margin-top: auto;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 10px;
}
.news-card__date {
	font-size: 1.4rem;
}
.news-card__cat {
	height: 22px;
	padding: 0 12px;
	border-radius: 100vh;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	line-height: 1;
	background: #e5002d;
	color: #fff;
}
.news-card__cat.is-gray {
	background: #f3f3f1;
	color: #2b2b2b;
}
/******* navigation *******/
.news__bottom {
	margin-top: 35px;
	display: flex;
	align-items: center;
	gap: 30px;
}
.news__nav {
	display: flex;
	gap: 4px;
}
.news__prev,
.news__next {
	width: 31px;
	height: 31px;
	background: #c8c5be;
	border: none;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: opacity .3s;
	position: relative;
}
.news__prev:hover,
.news__next:hover {
	opacity: .7;
}
.news__prev::after,
.news__next::after {
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border: 3px solid transparent;
	border-right: 0 solid transparent;
	border-left: 5px solid #fff;
}
.news__prev::after{
	transform: rotate(-180deg);
}
.news__prev.swiper-button-lock,
.news__next.swiper-button-lock {
	display: none !important;
}
.news__scrollbar {
	position: static !important;
	width: 220px;
	height: 2px !important;
	background: #ecebe9;
}
.news__scrollbar .swiper-scrollbar-drag {
	background: #c8c5be;
}
@media screen and (max-width: 768px) {
	.news {
		padding: 55px 0;
	}
	.news__wrap {
		display: flex;
		flex-direction: column;
		gap: 30px;
	}
	.news__slider-wrap {
		width: 100vw;
		margin-left: calc(50% - 50vw);
		margin-right: calc(50% - 50vw);
		order: 2;
	}
	.ss__item {
		width: 145px !important;
	}
	/* SPだけcontentの箱を消す */
	.news__content {
		display: contents;
	}
	.news__text-area {
		order: 1;
	}
	.news__slider {
		overflow: visible;
		padding-inline: 50px;
		width: auto;
		order: 2;
		margin-right: calc(50% - 50vw);
	}
	.news__btn {
		order: 3;
		margin: 10px auto 0;
	}
	.news__title {
		margin-top: 40px;
		font-size: 2.7rem;
		line-height: 1.5;
		letter-spacing: 0.05em;
	}
	.news__title span{
		letter-spacing: -0.8em;
	}
	.news__text {
		margin-top: 35px;
		font-size: 1.6rem;
		line-height: 1.8125;
	}
	.news-card__body {
		margin-top: 18px;
	}
	.news-card__title {
		font-size: 1.2rem;
		line-height: 1.5;
	}
	.news-card__meta {
		gap: 5px;
	}
	.news-card__date {
		font-size: 1.1rem;
		width: 100%;
	}
	.news-card__cat {
		height: 20px;
		font-size: 1.1rem;
		line-height: 1.1;
	}
	.news__bottom {
		margin-top: 25px;
		gap: 10px;
	}
	.news__prev,
	.news__next {
		width: 40px;
		height: 40px;
		border-radius: 3px;
	}
	.news__prev::after,
	.news__next::after {
		border-left: 6px solid #fff;
	}
	.news__scrollbar {
		width: 100%;
	}
}
@media screen and (max-width: 403px) {
	.news__title{
		letter-spacing: -0.05em;
	}
}

/* =================================
footer visual
================================= */
.footer-visual {
	width: 100%;
	overflow: hidden;
}
.footer-visual img {
	width: 100%;
	height: auto;
	display: block;
}

/* =================================
footer
================================= */
.footer {
	font-family: var(--font-shippori);
	padding: 120px 0 25px;
}
/******* logo *******/
.footer__logo {
	width: 130px;
	margin: 0 auto;
}
.footer__logo img {
	width: 100%;
	display: block;
}
/******* content *******/
.footer__content {
	display: flex;
	justify-content: space-between;
	margin-top: 60px;
}
/******* company *******/
.footer__company {
	width: 330px;
	flex-shrink: 0;
}
.footer__info {
	margin-bottom: 20px;
}
.footer__name {
	font-size: 1.7rem;
	font-weight: 700;
	line-height: 1.8;
}
.footer__address {
	margin-top: 10px;
	font-size: 1.5rem;
	line-height: 1.666;
}
/******* shop *******/
.footer__shop {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	width: 203px;
	height: 57px;
	border: 1px solid #a29f96;
	background: #fff;
	overflow: hidden;
	position: relative;
}
.footer__shop::before {
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #a29f96;
    transition: width .45s cubic-bezier(.77, 0, .18, 1);
    z-index: 1;
}
.footer__shop:hover::before {
	width: 100%;
}
.footer__shop-icon {
	width: 28px;
}
.footer__shop-icon img {
	width: 100%;
	display: block;
}
.footer__shop-text {
	font-size: 1.3rem;
	font-weight: 600;
	letter-spacing: .14em;
	position: relative;
	padding-left: 22px;
	transition: color 0.45s ease;
}
.footer__shop-text::before {
	position: absolute;
	content: "";
	background: url("../img/icon-cart-black.svg") no-repeat;
	background-size: cover;
	width: 16px;
	height: 15px;
	transform: translateY(-55%);
    top: 50%;
	left: 0;
}
.footer__shop:hover .footer__shop-text {
	color: #fff;
}
.footer__shop:hover .footer__shop-text::before {
	background-image: url("../img/icon-cart-white.svg");
}
/* テキストを前面に */
.footer__shop span,
.footer__shop img,
.footer__shop svg {
	position: relative;
	z-index: 2;
}
/******* marks *******/
.footer__marks {
	display: flex;
	gap: 25px;
	margin-top: 22px;
}
.footer__marks img {
	height: 60px;
	width: auto;
}
/******* sns *******/
.footer__sns_list {
	display: flex;
	gap: 15px;
	margin-top: 40px;
}
.footer__sns_link {
	display: block;
	width: 40px;
	height: auto;
	aspect-ratio: 1 / 1;
	font-size: 0;
	line-height: 0;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}
a.footer__sns_link:hover {
	opacity: .6;
}
.footer__sns_link--instagram {
	background-image: url("../img/icon_instagram.png");
}
.footer__sns_link--x {
	background-image: url("../img/icon_x.svg");
}
/******* nav *******/
.footer__nav-wrap {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	flex: 1;
	border-left: 1px solid #f7f8f8;
	width:  calc(100% - 330px);
    flex-wrap: wrap;
    padding-left: 100px;
}
.footer__nav-title {
	margin-bottom: 10px;
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.8;
	position: relative;
}
.footer__nav-list {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.footer__nav:nth-child(3) {margin-top: -3px;}
.footer__nav-list li a {
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.8;
	position: relative;
	transition: opacity .3s ease;
}
.footer__nav-list li a span {
	margin-left: 10px;
}
/* 下線 */
.footer__nav-title a::after,
.footer__nav-list li a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 100%;
	height: 1px;
	background: #2b2b2b;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform .35s ease;
}
.footer__nav-list--line li {
	padding-left: 15px;
	position: relative;
}
.footer__nav-list--line li::before {
	position: absolute;
	content: "";
	width: 4px;
	height: 1px;
	background-color: #2b2b2b;
	transform: translateY(-50%);
    top: 50%;
	left: 3px;
}
/* hover */
.footer__nav-title a:hover::after,
.footer__nav-list li a:hover::after {
	transform: scaleX(1);
}
/******* bottom *******/
.footer__bottom {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-top: 200px;
}
.footer__policy,
.footer__copy {
  font-size: 1.2rem;
}

.footer__copy {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}
.footer__policy {
	margin-left: auto;
	/*font-family: "Yu Gothic","游ゴシック",sans-serif;*/
	font-family: var(--font-yugothic);
	margin-right: 40px;
}
.footer__policy:hover{
	opacity: .6;
}
@media screen and (max-width: 1060px) {
	.footer__nav-wrap {
		flex-direction: column;
	}
}
@media screen and (max-width: 768px) {
	.footer {
		padding: 90px 0 15px;
	}
	/******* logo *******/
	.footer__logo {
		width: 110px;
	}
	/******* content *******/
	.footer__content {
		flex-direction: column;
		gap: 0;
		margin-top: 40px;
	}
	/******* company *******/
	.footer__company {
		width: 100%;
	}
	.footer__info {
		margin-bottom: 40px;
		text-align: center;
	}
	.footer__name {
		font-size: 1.8rem;
	}
	.footer__address {
		font-size: 1.6rem;
		line-height: 1.8125;
		margin-top: 0;
	}
	/******* shop *******/
	.footer__shop {
		height: 50px;
		width: 100%;
	}
	.footer__shop-icon {
		width: 24px;
	}
	.footer__shop-text {
		font-size: 1.7rem;
		letter-spacing: .1em;
		padding-left: 32px;
	}
	.footer__shop-text::before{
		width: 21px;
		height: 21px;
	}
	/******* marks *******/
	.footer__marks {
		justify-content: center;
		margin-top: 40px;
	}
	.footer__marks img {
		height: 59px;
	}
	/******* sns *******/
	.footer__sns_list {
		justify-content: center;
		margin-top: 40px;
	}
	.footer__sns_link {
		width: 40px;
	}
	/******* nav *******/
	.footer__nav-wrap {
		display: none;
	}
	/******* bottom *******/
	.footer__bottom {
		flex-direction: column-reverse;
		gap: 90px;
		margin-top: 40px;
	}
	.footer__policy,
	.footer__copy {
		font-size: 1.2rem;
		text-align: center;
	}
	.footer__policy{
		margin-right: auto;
	}
	.footer__copy{
		position: static;
		transform: none;
	}
}


/* =========================
page head
========================= */
.page-head {
	display: flex;
	min-height: 400px;
	margin-bottom: 160px;
}
.page-head__inner {
	width: calc(453 / 1440 * 100vw);
	max-width: 453px;
	padding: 100px 16px 80px 60px;
	display: flex;
	flex-direction: column;
}
.page-head__image {
	flex: 1;
	overflow: hidden;
	width: calc(987 / 1440 * 100%);
	max-height: 400px;
}
.page-head__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.c-page-heading{
	padding-bottom: 60px;
	margin-bottom: 20px;
	position: relative;
}
.c-page-heading::after{
	position: absolute;
	content: "";
	width: calc(370 / 1440 * 100vw);
	max-width: 370px;
	height: 1px;
	background: #dcdddd;
	bottom: 0;
	left: -60px;
}
.page-head.policy-head{
	margin-bottom: 140px;
}
@media screen and (max-width: 1060px) {
	.page-head {
		display: block;
		min-height: auto;
		margin-bottom: 70px;
	}
	.page-head.policy-head{
		margin-bottom: 70px;
	}
	.page-head__inner {
		width: 100%;
		padding: 30px 50px 42px;
	}
	.page-head__image {
		height: 155px;
		width: 100%;
	}
	.c-page-heading{
		padding-bottom: 0;
		margin-bottom: 0;
	}
	.c-page-heading::after{
		content: none;
	}
}

/* =================================
common page heading
================================= */
.c-page-heading__en {
	font-size: 1.2rem;
	letter-spacing: 0.12em;
	font-family: var(--font-en);
	color: #9fa0a0;
}
.c-page-heading__ja {
	margin-top: 18px;
	font-size: 3.6rem;
	font-weight: 600;
	line-height: 1.194;
	letter-spacing: 0.115em;
}
@media screen and (max-width: 768px) {
	.c-page-heading__ja {
		margin-top: 14px;
		font-size: 2.9rem;
	}
}
/* =================================
パンくず
================================= */
.c-breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 4px;
	font-size: 1.2rem;
	color: #999;
}
.c-breadcrumb li {
	display: flex;
	align-items: center;
}
.c-breadcrumb li:not(:last-child)::after {
	content: "-";
	margin-left: 4px;
}
.c-breadcrumb a {
	transition: opacity .3s;
}
@media (hover:hover) {
.c-breadcrumb a:hover {
	opacity: .6;
}
}
@media screen and (max-width: 1060px) {
	.c-breadcrumb {
		display: none;
	}
}
/* =================================
info archive
================================= */
.info-archive {
	position: relative;
	overflow: hidden;
}
.info-archive__layout {
	display: flex;
	align-items: flex-start;
	gap: 70px;
}
.info-archive__main {
	width: 630px;
	min-width: 0;
}
.info-archive__side {
	width: 300px;
	flex-shrink: 0;
}
.info-archive__count {
	font-size: 1.2rem;
	letter-spacing: 0.06em;
}
.info-archive__count--bottom {
	margin-top: 20px;
	text-align: center;
}
.info-archive__category__ttl {
	padding-bottom: 40px;
    font-size: 2rem;
	font-weight: 600;
	position: relative;
    padding-left: 40px;
	color: #1f1f1f;
}
.info-archive__category__ttl::before {
    position: absolute;
    content: "";
	top: 6px;
    left: 0;
	background: url(../img/icon_search-red.svg) no-repeat;
    width: 28px;
    height: 28px;
}
@media screen and (max-width: 1060px) {
	.info-archive__layout {
		display: block;
	}
	.info-archive__main {
		width: 100%;
	}
	.info-archive__side {
		width: 100%;
		margin-top: 90px;
	}
	.info-archive__count--bottom {
		margin-top: 10px;
	}
}
@media screen and (max-width: 768px) {
	.info-archive__side {
		margin-top: 50px;
	}
	.info-archive__category__ttl {
		padding-bottom: 15px;
		font-size: 1.6rem;
		line-height: 1.8125;
		padding-left: 22px;
	}
	.info-archive__category__ttl::before {
		top: 5px;
		width: 17px;
		height: 17px;
	}
}
/* =================================
info grid
================================= */
.info-grid {
	margin-top: 20px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 30px;
	row-gap: 42px;
}
@media screen and (max-width: 768px) {
	.info-grid {
		margin-top: 18px;
		grid-template-columns: repeat(2, 1fr);
		column-gap: 25px;
		row-gap: 25px;
	}
}
/* =================================
info card
================================= */
.news-card {
	display: flex;
	flex-direction: column;
	height: 100%;
}
.info-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
}
.info-card__image {
	aspect-ratio: 300 / 190;
	background: #e8e8e8;
	overflow: hidden;
	border-radius: 8px;
}
.info-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .8s cubic-bezier(.22,1,.36,1);
}
@media (hover:hover) {
	.info-card__link:hover .info-card__image img {
		transform: scale(1.08);
	}
}
.info-card__body {
	margin-top: 15px;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.info-card__title {
	font-family: var(--font-yugothic);
	font-size: 1.5rem;
	line-height: 1.86;
	letter-spacing: 0.01em;
	flex: 1;
}
.info-card__meta {
	margin-top: 10px;
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}
.info-card__date {
	font-size: 1.4rem;
	letter-spacing: 0.01em;
}
.info-card__category {
	height: 24px;
	padding: 0 12px;
	border-radius: 999px;
	background: #f3f3f1;
	font-size: 1.2rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	letter-spacing: 0;
}
.info-card__category--new {
	background: #e5002d;
	color: #fff;
}
@media screen and (max-width: 768px) {
	.info-card__body {
		margin-top: 10px;
	}
	.info-card__title {
		font-size: 1.3rem;
		line-height: 1.538;
	}
	.info-card__meta {
		gap: 8px;
		flex-direction: column;
        align-items: flex-start;
	}
	.info-card__date {
		font-size: 1.2rem;
	}
	.info-card__category {
		height: 22px;
		padding: 0 12px;
		font-size: 1.1rem;
	}
}
/* =================================
side
================================= */
.side-block + .side-block {
	margin-top: 60px;
}
.side-title {
	padding-bottom: 16px;
	border-bottom: 1px solid #edeae8;
	font-size: 1.6rem;
	line-height: 1.4;
	font-weight: 800;
	color: #1f1f1f;
}
.side-title__icon{
	position: relative;
	padding-left: 35px;
}
.side-title__icon::before{
	position: absolute;
	content: "";
	left: 0;
}
.side-title__icon--category::before{
	background: url("../img/icon-search.svg") no-repeat;
	width: 23px;
	height: 23px;
}
.side-title__icon--recommend::before{
	background: url("../img/icon-recommend.svg") no-repeat;
	width: 25px;
	height: 24px;
	top: -3px;
}
.side-title__icon--pr::before{
	background: url("../img/icon-pr.svg") no-repeat;
	width: 26px;
	height: 19px;
	top: 2px;
}
@media screen and (max-width: 768px) {
	.side-block + .side-block {
		margin-top: 56px;
	}
	.side-title {
		padding-bottom: 5px;
		font-size: 1.6rem;
	}
	.side-title__icon{
		padding-left: 20px;
	}
	.side-title__icon--category::before{
		width: 12px;
		height: 12px;
		top: 5px;
	}
	.side-title__icon--recommend::before{
		background: url("../img/icon-recommend.svg") no-repeat;
		width: 13px;
		height: 12px;
		top: 5px;
	}
	.side-title__icon--pr::before{
		background: url("../img/icon-pr.svg") no-repeat;
		width: 13px;
		height: 10px;
		top: 6px;
	}
}
/* =================================
category
================================= */
.side-category {
	margin-top: 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.side-category__item {
	padding: 0 10px;
	border-radius: 999px;
	background: #f3f3f1;
	font-size: 1.2rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background .3s, color .3s;
	letter-spacing: 0;
}
@media (hover:hover) {
.side-category__item:hover {
	background: #b4aea2;
	color: #fff;
}
}
@media screen and (max-width: 768px) {
	.side-category {
		margin-top: 15px;
	}
	.side-category__item {
		font-size: 1.1rem;
	}
}

/* =================================
recommend
================================= */
.side-recommend {
	margin-top: 20px;
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.side-recommend__item {
	display: flex;
	gap: 14px;
}
.side-recommend__image {
	width: 114px;
	height: 70px;
	background: #e8e8e8;
	flex-shrink: 0;
	overflow: hidden;
	border-radius: 6px;
}
.side-recommend__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .6s cubic-bezier(.22,1,.36,1);
}
@media (hover:hover) {
	.side-recommend__item:hover .side-recommend__image img {
		transform: scale(1.08);
	}
}
.side-recommend__body {
	flex: 1;
	min-width: 0;
}
.side-recommend__title {
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.642;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	letter-spacing: -0.05em;
}
.side-recommend__date {
	display: block;
	font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
	.side-recommend {
		gap: 16px;
	}
	.side-recommend__image {
		width: 90px;
		height: 68px;
	}
}
/* =================================
banner
================================= */
.side-banner {
	margin-top: 20px;
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.side-banner__item {
	display: block;
}
.side-banner__image {
	overflow: hidden;
}
.side-banner__image img {
	width: 100%;
	transition: transform .7s cubic-bezier(.22,1,.36,1);
}
.side-banner__title{
	font-size: 1.2rem;
	margin-top: 8px;
	color: #1f1f1f;
}
a.side-banner__item:hover .side-banner__image img {
	transform: scale(1.05);
}
/* =================================
pager
================================= */
.c-pager {
	margin-top: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
}
.c-pager__list {
	max-width: calc(100% - 40px - 52px);
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
	color: #a29f96;
}
.c-pager__item a,
.c-pager__item span.current,
.c-pager__list li a {
	width: 40px;
	height: 40px;
	border-radius: 4px;
	font-size: 1.5rem;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .3s, color .3s;
}
.c-pager__item span.current,
.c-pager__list li.is-current a {
	background: #b4aea2;
	color: #fff;
}
@media (hover:hover) {
	.c-pager__item a:hover,
	.c-pager__list li a:hover {
		background: #b4aea2;
		color: #fff;
	}
}
.c-pager__item span.dots,
.c-pager__dots {
	font-size: 1.4rem;
	color: #a29f96;
	position: relative;
}
.c-pager__arrow {
	width: 26px;
	height: 26px;
	border: 1px solid #a29f96;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .3s;
}
.c-pager__arrow img {
	width: 6px;
}
.c-pager__arrow:hover {
	background: #f5f5f5;
}
@media screen and (max-width: 768px) {
	.c-pager {
		margin-top: 70px;
		gap: 4px;
	}
	.c-pager__list {
		max-width: calc(100% - 8px - 80px);
		gap: 0;
	}
	.c-pager__item a,
	.c-pager__item span.current,
	.c-pager__list li a {
		width: 40px;
		height: 40px;
		font-size: 1.2rem;
	}
	.c-pager__arrow {
		width: 40px;
		height: 40px;
	}
}
/* =================================
下層共通バナー
================================= */
.common-banner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	padding-top: 200px;
}
/* =========================
item
========================= */
.common-banner__item,
.common-banner__shop {
	position: relative;
	overflow: hidden;
	text-decoration: none;
	color: #fff;
}
/* 左上 */
.common-banner__item--01 {
	grid-column: 1;
	grid-row: 1;
}
/* 左下 */
.common-banner__item--02 {
	grid-column: 1;
	grid-row: 2;
}
/* 右 */
.common-banner__shop {
	grid-column: 2;
	grid-row: 1 / 3;
	display: flex;
	align-items: center;
	justify-content: center;
}
/* =========================
背景
========================= */
.common-banner__item::before,
.common-banner__shop::before {
	content: "";
	position: absolute;
	inset: 0;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	transition: transform 1s ease;
}
/* hover */
.common-banner__item:hover::before,
.common-banner__shop:hover::before {
	transform: scale(1.08);
}
/* 背景画像 */
.common-banner__item--01::before {
	background-image: url("../img/img_brand_01_bg.jpg");
}
.common-banner__item--02::before {
	background-image: url("../img/img_brand_02_bg.jpg");
}
.common-banner__shop::before {
	background-image: url("../img/img_brand_03_bg.jpg");
}
/* =========================
content
========================= */
.common-banner__content {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 28px;
	height: 100%;
	padding-left: calc(130 / 1440 * 100vw);
	padding-right: 50px;
	padding-top: 60px;
    padding-bottom: 60px;
	transition: all .3s ease;
}
.common-banner__image {
	width: 72px;
	flex-shrink: 0;
}
.common-banner__image img {
	width: 100%;
	display: block;
	box-shadow: 10px 10px 20px rgba(0,0,0,.12);
}
.common-banner__sub {
	font-family: var(--font-shippori);
	font-size: 1.3rem;
	line-height: 1.29;
	letter-spacing: 0.04em;
}
.common-banner__title {
	font-size: 3.2rem;
	line-height: 1.2;
	margin-top: 8px;
}
.common-banner__title span {
	font-size: 2rem;
	position: relative;
    top: -5px;
}
/* =========================
shop
========================= */
.common-banner__shop-inner {
	position: relative;
	z-index: 2;
	width: 310px;
	height: 100px;
	border: 1px solid #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
}
.common-banner__shop-inner .common-banner__shop-text {
	font-family: var(--font-shippori);
	font-size: 1.5rem;
	font-weight: 600;
	letter-spacing: .1em;
	position: relative;
	padding-left: 22px;
}
.common-banner__shop-text::before {
	position: absolute;
	content: "";
	background: url("../img/icon-cart-white.svg") no-repeat;
	background-size: cover;
	width: 16px;
	height: 15px;
	transform: translateY(-55%);
    top: 50%;
	left: 0;
}
@media screen and (max-width: 1350px) {
	.common-banner__content{
		padding-left: calc(50 / 1350 * 100vw);
		padding-right: 30px;
	}
	.common-banner__title{
		font-size: 2.8rem;
	}
}
@media screen and (max-width: 1060px) {
	.common-banner {
		display: block;
		padding-top: 80px;
	}
	.common-banner__item{
		min-height: 110px;
		display: block;
	}
	.common-banner__shop {
		min-height: 160px;
	}
	.common-banner__content {
		padding: 25px 50px;
		padding-right: 10px;
		gap: 10px;
	}
	.common-banner__image {
		width: 45px;
	}
	.common-banner__sub {
		font-size: 1.2rem;
		line-height: 1.5;
	}
	.common-banner__title {
		font-size: 1.8rem;
		line-height: 1.333;
	}
	.common-banner__title span {
		font-size: 1.8rem;
		top: 0;
	}
	.common-banner__shop-inner {
		width: calc(100% - 100px);
		height: 50px;
	}
	.common-banner__shop-inner .common-banner__shop-text {
		font-size: 1.6rem;
	}
	.common-banner__shop-text::before{
		top: 51%;
	}
}

/*********************************
info 詳細
*********************************/
.page-head--info_detail{
	min-height: auto;
    margin-bottom: 90px;
}
.page-head--info_detail .page-head__inner{
	width: 100%;
    max-width: max-content;
	padding: 40px 58px 0;
}
.page-head--info_detail .c-page-heading__ja{
	line-height: 1.555;
}
.info-detail {
	position: relative;
	overflow: hidden;
}
.info-detail__main {
	width: calc(100% - 360px);
	min-width: 0;
}
.info-detail__meta {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 40px;
}
.info-detail__date {
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1;
}
.info-detail__category {
	font-size: 1.1rem;
	line-height: 1;
	letter-spacing: 0;
	padding: 6px 12px 5px;
	border-radius: 999px;
	background: #ebe8e3;
}
a.info-detail__category:hover {
	background: #b4aea2;
	color: #fff;
}
.info-detail__tag {
	font-size: 1.1rem;
	font-weight: 700;
	line-height: 1;
	color: #fff;
	background: #e5002d;
	border-radius: 999px;
	padding: 7px 10px 5px;
}
.info-detail__thumbnail {
	margin-bottom: 40px;
}
.info-detail__thumbnail img {
	width: 100%;
	display: block;
}
@media screen and (max-width: 1060px) {
	.page-head--info_detail .page-head__inner{
		padding: 30px 50px 0;
	}
	.page-head--info_detail{
		margin-bottom: 35px;
	}
	.info-detail__date {
		font-size: 1.2rem;
	}
	.info-detail::before,
	.info-detail::after {
		display: none;
	}
	.info-detail__main {
		width: 100%;
	}
}
@media screen and (max-width: 768px) {
	.page-head--info_detail .c-page-heading__ja{
		font-size: 2.3rem;
		line-height: 1.63;
		margin-top: 7px;
		letter-spacing: 0;
	}
	.info-detail__meta {
		gap: 10px;
		margin-bottom: 20px;
	}
	.info-detail__category,
	.info-detail__tag {
		padding: 5px 10px 3px;
		/*font-size: 1.2rem;*/
	}
	.info-detail__thumbnail {
		margin-left: calc(50% - 50vw);
		margin-right: calc(50% - 50vw);
		margin-bottom: 50px;
	}
}
/*********************************
toc 目次
*********************************/
#toc_container,
.info-detail__toc {
	background: #f9f4f2;
	padding: 15px 20px 25px;
	margin-left: 10px;
	margin-right: 10px;
	margin-bottom: 40px;
	font-family: var(--font-shippori);
	position: relative;
}
#toc_container .toc_title,
.info-detail__toc-title {
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.86;
	margin-bottom: 10px;
}
#toc_container .toc_list {
  list-style: none;
}
#toc_container .toc_list li {
	padding: 0;
}
#toc_container .toc_list li::before {
  content: none;
}
#toc_container .toc_list li a,
.info-detail__toc-list a {
	font-size: 1.5rem;
	line-height: 2;
	position: relative;
	padding-left: 20px;
	display: inline-block;
}
#toc_container .toc_list li a::before,
.info-detail__toc-list a::before {
	content: "";
	position: absolute;
	top: 12px;
	left: 0;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #0e0e0e;
}
/* 左右の囲い */
#toc_container::before,
#toc_container::after,
.info-detail__toc::before,
.info-detail__toc::after {
	content: "";
	position: absolute;
	top: -10px;
	bottom: -10px;
	width: 17px;
	pointer-events: none;
}
/* 左 [ */
#toc_container::before,
.info-detail__toc::before {
	left: -10px;
	border-left: 1px solid #ddd9d7;
	border-top: 1px solid #ddd9d7;
	border-bottom: 1px solid #ddd9d7;
}
/* 右 ] */
#toc_container::after,
.info-detail__toc::after {
	right: -10px;
	border-right: 1px solid #ddd9d7;
	border-top: 1px solid #ddd9d7;
	border-bottom: 1px solid #ddd9d7;
}
@media screen and (max-width: 768px) {
	#toc_container,
	.info-detail__toc {
		padding: 15px 20px;
		margin-bottom: 25px;
		margin-left: 5px;
		margin-right: 5px;
	}
	#toc_container .toc_title,
	.info-detail__toc-title {
		font-size: 1.6rem;
		margin-bottom: 0;
	}
	#toc_container .toc_list li a,
	.info-detail__toc-list a {
		font-size: 1.4rem;
		line-height: 1.428;
	}
	#toc_container .toc_list li a::before,
	.info-detail__toc-list a::before {
		top: 8px;
		width: 5px;
		height: 5px;
	}
	/* 左右の囲い */
	#toc_container::before,
	#toc_container::after,
	.info-detail__toc::before,
	.info-detail__toc::after {
		top: -5px;
		bottom: -5px;
		width: 8px;
	}
	/* 左 [ */
	#toc_container::before,
	.info-detail__toc::before {
		left: -5px;
	}
	/* 右 ] */
	#toc_container::after,
	.info-detail__toc::after {
		right: -5px;
	}
}
/*********************************
wysiwyg
*********************************/
.info-detail__content {
	font-size: 1.5rem;
	line-height: 1.86;
}
.info-detail__content p + p {
	margin-top: 20px;
}
.info-detail-heading--lv2 {
	font-size: 2.6rem;
	line-height: 1.23;
	padding-bottom: 15px;
	border-bottom: 1px solid #ddd9d7;
	margin-top: 50px;
	margin-bottom: 30px;
	font-weight: 700;
	letter-spacing: -0.05em;
	position: relative;
}
.info-detail-heading--lv2::before{
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	background: #ddd9d7;
	left: 0;
	bottom: -4px;
}
.info-detail-heading--lv3 {
	font-size: 2rem;
	line-height: 1.6;
	letter-spacing: 0;
	margin-top: 40px;
	margin-bottom: 15px;
	font-weight: 700;
}
.info-detail__content .dotlist {
	margin-top: 15px;
}
.info-detail__content li {
	position: relative;
	padding-left: 20px;
	line-height: 1.86;
}
.info-detail__content li::before {
	content: "";
	position: absolute;
	top: 10px;
	left: 0;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #a29f96;
}
.info-detail__content figure {
	margin: 40px 0 33px;
}
.info-detail__content figure img {
	width: 100%;
	display: block;
}
.info-detail__content figcaption {
	font-size: 1.2rem;
	line-height: 1.8;
	margin-top: 10px;
	color: #232323;
}
.info-detail__content blockquote {
	background: #fcfbfa;
	padding: 22px 30px;
	margin: 40px 0;
	position: relative;
}
.info-detail__content blockquote::before,
.info-detail__content blockquote::after {
	font-size: 1.7rem;
	line-height: 1;
	color: #232323;
	position: absolute;
	font-family: serif;
}
.info-detail__content blockquote::before {
	content: "“";
	top: 12px;
	left: 10px;
}
.info-detail__content blockquote::after {
	content: "”";
	right: 12px;
	bottom: 0;
}
.info-detail__content blockquote p {
	margin: 0;
	font-size: 1.5rem;
}
.info-detail__content blockquote cite {
	display: block;
	font-size: 1.2rem;
	margin-top: 15px;
	font-style: normal;
}
@media screen and (max-width: 768px) {
	.info-detail__content {
		font-size: 1.6rem;
		line-height: 1.8125;
		letter-spacing: 0.01em;
	}
	.info-detail__content p + p {
		margin-top: 26px;
	}
	.info-detail-heading--lv2 {
		font-size: 2.3rem;
		line-height: 1.5217;
		letter-spacing: 0.05em;
		padding-bottom: 15px;
		margin-top: 38px;
		margin-bottom: 35px;
	}
	.info-detail-heading--lv3 {
		font-size: 1.8rem;
		line-height: 1.388;
		letter-spacing: 0.05em;;
		margin-top: 25px;
		margin-bottom: 30px;
	}
	.info-detail__content figure {
		margin: 30px 0;
	}
	.info-detail__content figcaption {
		line-height: 1.5;
	}
	.info-detail__content blockquote {
		padding: 18px 20px;
		margin: 35px 0;
	}
	.info-detail__content blockquote::before,
	.info-detail__content blockquote::after {
		font-size: 1.6rem;
	}
	.info-detail__content blockquote p {
		font-size: 1.6rem;
	}
	.info-detail__content blockquote cite {
		margin-top: 7px;
	}
}
.info-detail__gallery{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-top: 33px;
}
.info-detail__gallery .info-detail__figure{
	margin: 0;
}
.info-detail__figure img{
	width: 100%;
	display: block;
}
.info-detail__figure figcaption{
	margin-top: 12px;
	font-size: 1.2rem;
	line-height: 1.8;
}
@media screen and (max-width: 768px) {
	.info-detail__gallery{
		grid-template-columns: 1fr;
		gap: 20px;
		margin-top: 40px;
	}
	.info-detail__figure figcaption{
		margin-top: 7px;
		font-size: 1.1rem;
	}
}
/*********************************
related
*********************************/
.info-detail__related {
	margin: 25px 0;
	padding: 20px;
	border: 1px solid #ddd9d7;
}
.info-detail__related-link {
	display: flex;
	gap: 20px;
	text-decoration: none;
	color: inherit;
}
.info-detail__related-image {
	width: 215px;
	flex-shrink: 0;
	overflow: hidden;
    border-radius: 8px;
}
.info-detail__related-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .6s cubic-bezier(.22,1,.36,1);
}
@media (hover:hover) {
	.info-detail__related-link:hover .info-detail__related-image img {
		transform: scale(1.08);
	}
}
.info-detail__related-content {
	flex: 1;
	min-width: 0;
}
.info-detail__related-title {
	font-size: 1.4rem;
	line-height: 1.5;
	/*margin-bottom: 16px;*/
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
.info-detail__related-title_sub{
	font-size: 1.2rem;
	line-height: 1.666;
	margin-top: 6px !important;
	letter-spacing: 0;
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.info-detail__related-meta {
	display: flex;
	align-items: center;
	gap: 5px;
	flex-wrap: wrap;
	margin-top: 15px;
}
.info-detail__related-date {
	font-size: 1.2rem;
	line-height: 1;
}
.info-detail__related-category {
	font-size: 1rem;
	line-height: 1;
	padding: 5px 10px 3px;
	border-radius: 999px;
	background: #f3f3f1;
}
.info-detail__related-tag {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1;
	color: #fff;
	background: #e5002d;
	border-radius: 999px;
	padding: 5px 10px 3px;
}
@media screen and (max-width: 768px) {
	.info-detail__related {
		padding: 15px;
		margin-top: 32px;
	}
	.info-detail__related-link {
		display: block;
	}
	.info-detail__related-image {
		width: 100%;
		margin-bottom: 10px;
	}
	.info-detail__related-title {
		line-height: 1.428;
	}
	.info-detail__related-title_sub{
		font-size: 1.2rem;
		line-height: 1.5;
	}
	.info-detail__related-meta {
		margin-top: 12px;
	}
}
/*********************************
share
*********************************/
.info-detail__bottom {
	margin-top: 60px;
	padding-top: 60px;
	border-top: 1px solid #ddd9d7;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 14px;
}
.info-detail__bottom-categoryWrap {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 10px;
}
.info-detail__bottom-category {
	font-size: 1.2rem;
	line-height: 1;
	letter-spacing: 0;
	padding: 6px 13px 5px;
	border-radius: 999px;
	background: #f3f3f1;
}
a.info-detail__bottom-category:hover {
	background: #b4aea2;
	color: #fff;
}
.info-detail__share {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 10px;
}
.info-detail__share-link {
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity .3s;
}
.info-detail__share-link:hover {
	opacity: .7;
}
.info-detail__share-link img {
	display: block;
}
@media screen and (max-width: 768px) {
	.info-detail__bottom {
		margin-top: 46px;
		padding-top: 48px;
	}
	.info-detail__share-link {
		width: 25px;
		height: 25px;
	}
	.info-detail__bottom-category {
		font-size: 1.1rem;
		padding: 6px 10px 5px;
	}
}

.copyUrl {
  position: relative;
}
.copyUrl::before {
  content: "URLをクリップボードにコピーしました";
  display: inline-block;
  height: 34px;
  padding: 0 15px;
  background: #0e0e0e;
  border-radius: 4px;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.17);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 34px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
}
.copyUrl::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 4px 0 4px;
  border-color: #0e0e0e transparent transparent transparent;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
}
.copyUrl.on::before,
.copyUrl.on::after {
  opacity: 1;
}

/*********************************
	商品一覧
*********************************/
.product-recommend .c-heading-line{
	margin-bottom: 60px;
}
.product-recommend .pickup-products{
	margin-top: 70px;
}
.product-archive{
	position: relative;
	margin-top: 100px;
	overflow-x: clip;
}
.product_bdr{
	padding-top: 100px;
	position: relative;
}
.product_bdr::before{
	position: absolute;
	content: "";
	width: calc(100% - 60px);
	height: 1px;
	background: #dcdddd;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
}
/******* 商品一覧　カテゴリ絞り *******/
.product-filter {
	margin-bottom: 70px;
}
/******* PC *******/
.product-filter__toggle {
	display: none;
}
.product-filter__list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
}
.product-filter__item {
	min-width: 170px;
	height: 43px;
	padding: 0 20px;
	border: 1px solid #2b2b2b;
	border-radius: 999px;
	background: #fff;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	transition: background .3s ease, color .3s ease;
}
.product-filter__item.is-active,
.product-filter__item:hover {
	background: #2b2b2b;
	color: #fff;
}
.product-archive .product__deco{
	position: absolute;
	z-index: -1;
}
.product-archive .product__deco--01{
	width: 168px;
	height: 188px;
	right: -20px;
	top: 610px;
}
.product-archive .product__deco--02{
	width: 174px;
	height: 212px;
	left: -30px;
	top: 2060px;
}
.product-archive .product__deco--03{
	width: 115px;
	height: 153px;
	right: 40px;
	top: 3180px;
}
.itemList .product-card {
	transition: opacity .5s ease;
}
.itemList_is_hide .product-card {
  opacity: 0;
}
.itemList .itemList__item_is_hide {
  -webkit-transition: none;
  transition: none;
  opacity: 0;
  visibility: hidden;
  height: 0;
  padding: 0;
  display: none;
}
/******* SP *******/
@media screen and (max-width: 768px) {
	.product-recommend .c-heading-line{
		margin-bottom: 35px;
	}
	.product-recommend .product-card:nth-child(n+3){
		display: none;
	}
	.product-archive{
		margin-top: 55px;
	}
	.product-recommend .pickup-products{
		margin-top: 25px;
	}
	.product_bdr{
		padding-top: 0;
	}
	.product_bdr::before{
		content: none;
	}
	.product-filter {
		margin-bottom: 50px;
		position: relative;
		z-index: 20;
	}
	.product-filter {
		border: 1px solid #c9caca;
		background: #fff;
	}
	.product-filter__toggle {
		position: relative;
		display: flex;
		align-items: center;
		width: 100%;
		height: 50px;
		padding: 0 30px 0 15px;
		background: #fff;
		border: none;
		font-size: 1.6rem;
		font-weight: 500;
		text-align: left;
		cursor: pointer;
		z-index: 2;
	}
	/* arrow */
	.product-filter__toggle::before,
	.product-filter__toggle::after {
		content: "";
		position: absolute;
		top: 50%;
		width: 6px;
		height: 1px;
		background: #c9caca;
		border-radius: 999px;
		transition: transform .3s ease;
	}
	.product-filter__toggle::before {
		right: 14px;
		transform: translateY(-50%) rotate(45deg);
	}
	.product-filter__toggle::after {
		right: 10px;
		transform: translateY(-50%) rotate(-45deg);
	}
	.product-filter.is-open .product-filter__toggle::before {
		transform: translateY(-50%) rotate(-45deg);
	}
	.product-filter.is-open .product-filter__toggle::after {
		transform: translateY(-50%) rotate(45deg);
	}
	.product-filter__list {
		display: none;
		flex-direction: column;
		gap: 0;
		border-top: 1px solid #c8c5c1;
		position: absolute;
		width: calc(100% + 2px);
		background: #fff;
		z-index: 10;
		border: 1px solid #c8c5c1;
		border-top: none;
	}
	.product-filter.is-open .product-filter__list {
		display: flex;
	}
	.product-filter__item {
		width: 100%;
		height: 50px;
		border: none;
		border-top: 1px solid #c8c5c1;
		border-radius: 0;
		text-align: left;
		padding: 0 30px 0 15px;
	}
	.product-filter__item:first-child {
		border-top: none;
	}
	.product-archive .product__deco--01{
		width: 62px;
		height: 69px;
		right: 0;
		top: 330px;
	}
	.product-archive .product__deco--02{
		width: 62px;
		height: 76px;
		left: -12px;
		top: 1630px;
	}
	.product-archive .product__deco--03{
		width: 42px;
		height: 56px;
		right: 5px;
		top: 2390px;
	}
}
/*********************************
	pickup products
*********************************/
.pickup-products__items {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
}
.pickup-product {
	font-family: var(--font-shippori);
	display: block;
	color: #fff;
	text-decoration: none;
	overflow: hidden;
	transition: opacity .3s ease;
	position: relative;
}
.pickup-product::before{
	content: "";
    position: absolute;
    inset: 0;
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 1s ease;
}
.pickup-product--01::before{
	background-image: url("../img/img_brand_01_bg.jpg");
	background-position: center -50px;
	background-size: 110%;
}
.pickup-product--02::before{
	background-image: url("../img/img_brand_02_bg.jpg");
	background-position: center -50px;
    background-size: 110%;
}
/* hover */
.pickup-product:hover::before{
	transform: scale(1.08);
}
.pickup-product__inner {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 15px;
	min-height: 110px;
	z-index: 20;
	letter-spacing: 0;
    position: relative;
}
.pickup-product__image {
	width: 60px;
	flex-shrink: 0;
}
.pickup-product__image img {
	width: 100%;
	display: block;
	object-fit: cover;
	box-shadow: 8px 8px 18px rgba(0,0,0,.15);
}
.pickup-product__content {
	flex: 1;
	min-width: 0;
}
.pickup-product__sub {
	font-size: 1.5rem;
	line-height: 1.2;
	margin-bottom: 8px;
}
.pickup-product__title {
	font-size: 2.4rem;
	font-weight: 400;
	line-height: 1.2;
	word-break: break-word;
}
.pickup-product__title span {
	font-size: 2.7rem;
}
.pickup-products--single .pickup-products__items {
	grid-template-columns: 1fr;
	max-width: 520px;
}
@media screen and (max-width: 768px) {
	.pickup-products__items {
		grid-template-columns: 1fr;
		gap: 12px;
	}
	.pickup-product__inner {
		gap: 15px;
		padding: 15px;
		min-height: 88px;
	}
	.pickup-product__image {
		width: 42px;
	}
	.pickup-product__sub {
		font-size: 1.2rem;
		line-height: 1.5;
		margin-bottom: 4px;
	}
	.pickup-product__title,
	.pickup-product__title span{
		font-size: 1.6rem;
	}
	.pickup-product--02::before{
		background-position: center -70px;
		background-size: 130%;
	}
}

/*********************************
	商品詳細
*********************************/
.main--product-detail {
	width: 100%;
	overflow: hidden;
}
/******* パンくず *******/
.page-head--item_detail {
	padding-top: 12px;
	border-top: 1px solid #e5e5e5;
}
.page-head--item_detail .l-inner{
	max-width: 100%;
}
.page-head--item_detail .c-breadcrumb {
	margin-bottom: 0;
}
.product-detail {
	padding-bottom: 140px;
}
/******* mv *******/
.product-detail__mv {
	padding-top: 60px;
	padding-bottom: 100px;
}
.product-detail__layout {
	display: grid;
	grid-template-columns: calc(475 / 1000 * 100%) 1fr;
	gap: 50px;
	align-items: start;
}
/******* gallery *******/
.product-gallery {
	position: relative;
}
.product-gallery__slider{
	position: relative;
	background: #f3f3f1;
	border-radius: 20px;
	margin-bottom: 25px;
	overflow: hidden;
}
.product-gallery .swiper-slide{
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	height: 475px;
}
.product-gallery__image{
	width: 100%;
	height: 424px;
	padding: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.product-gallery__image img{
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	display: block;
	filter: drop-shadow(7px 7px 11px rgba(0, 0, 0, .25));
}
.product-gallery-thumb .swiper-wrapper{
	max-width: 100%;
	flex-wrap: wrap;
	gap: 10px 20px;
}
.product-gallery-thumb .swiper-slide {
	width: 97px !important;
	height: 100px !important;
	cursor: pointer;
	flex-shrink: 0;
	margin: 0!important;
}
.product-gallery-thumb__image {
	width: 97px;
	height: 100px;
	background: #f3f3f1;
	border-radius: 10px;
	padding: 15px 22px;
}
.product-gallery-thumb__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	filter: drop-shadow(7px 7px 11px rgba(0, 0, 0, .25));
}
.swiper-slide-thumb-active .product-gallery-thumb__image{
	position: relative;
	overflow: hidden;
}
.swiper-slide-thumb-active .product-gallery-thumb__image::before{
	position: absolute;
	content: "";
	width: 400px;
	height: 400px;
	background: rgba(43,43,43,.4);
	top: 0;
    left: 0;
	z-index: 3;
}
.product-gallery__prev,
.product-gallery__next{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	background: #fff;
	border: 2px solid #e5e5e5;
	border-radius: 50%;
	cursor: pointer;
	z-index: 10;
}
.product-gallery__prev{
	left: 20px;
}
.product-gallery__next{
	right: 20px;
}
.product-gallery__prev::before,
.product-gallery__next::before{
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 7px;
	height: 7px;
	border-top: 2px solid #a8a8a8;
	border-right: 2px solid #a8a8a8;
}
.product-gallery__prev::before{
	transform: translate(-30%, -50%) rotate(-135deg);
}
.product-gallery__next::before{
	transform: translate(-70%, -50%) rotate(45deg);
}
.product-gallery__pagination{
	position: absolute;
	left: 50% !important;
	bottom: 20px !important;
	transform: translateX(-50%);
	z-index: 10;
	display: flex;
	justify-content: flex-end;
	padding-right: 15px;
}
.product-gallery__pagination .swiper-pagination-bullet{
	width: 8px;
	height: 8px;
	background: #fff;
	opacity: 1;
	margin: 0 5px !important;
}
.product-gallery__pagination .swiper-pagination-bullet-active{
	background: #a29f96;
}
/******* content *******/
.product-detail__content > *:first-child{
	margin-top: 0;
}
.product-detail__content .product-card__tags{
	margin-bottom: 20px;
}
.product-detail__content .pickup-products{
	margin-top: 40px;
}
.product-detail__content .product-card__tags .product-card__tag{
	height: 27px;
	padding: 0 10px;
}
.product-detail__category {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 36px;
}
.product-detail-category-chip{
	border: 1px solid #2b2b2b;
	border-radius: 50px;
	min-width: 108px;
	min-height: 27px;
	font-size: 1.2rem;
	line-height: 1.16;
	display: flex;
    justify-content: center;
    align-items: center;
	padding-top: 3px;
}
.product-detail__title {
	font-size: 3.3rem;
	line-height: 1.39;
	margin-top: 36px;
	margin-bottom: 12px;
	letter-spacing: 0;
}
.product-detail__title:first-child{
	margin-top: 0;
}
.product-detail__text {
	font-size: 1.5rem;
	line-height: 2;
	letter-spacing: -0.01em;
}
.product-detail__btn {
	margin-top: 27px;
}
.product-detail__note {
	font-size: 1.2rem;
	margin-top: 15px;
}
.product-detail__note-text{
	display: block;
	text-indent: -1em;
	padding-left: 1em;
}
.product-detail__note-text::before {
	content: "※";
}
/******* lead *******/
.product-detail__lead {
	padding-bottom: 90px;
	position: relative;
}
.product-detail__lead .circle-wrap {
	overflow: visible;
}
.product-detail__lead-block {
	display: grid;
	grid-template-columns: 1fr calc(475 / 1000 * 100%);
	gap: 50px;
	/*align-items: center;*/
	margin-bottom: 70px;
}
.product-detail__lead-block:last-of-type{
	margin-bottom: 0;
}
.product-detail__heading {
	font-size: 2.6rem;
	line-height: 1.75;
	margin-bottom: 25px;
}
.product-detail__description {
	font-size: 1.5rem;
	line-height: 2;
	letter-spacing: 0.01em;
	/*margin-bottom: 20px;*/
}
.product-detail__description + .product-detail__description{
	margin-top: 20px;
}
.product-detail__lead-image img {
	width: 100%;
	display: block;
}
.product-detail__lead .orbit.right{
	left: 90%;
}
.product-detail__lead .orbit--01 .circle{
	width: 870px;
	height: 870px;
}
.product-detail__lead .orbit--02 .circle{
	width: 870px;
	height: 870px;
}
/******* spec *******/
.product-spec {
	background: #fcf8f5;
	padding: 100px 0;
}
.product-spec__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 50px;
}
.product-spec__title {
	font-family: var(--font-yugothic);
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.8;
	margin-bottom: 12px;
	position: relative;
	padding-left: 20px;
}
.product-spec__title span {
	font-size: 1.2rem;
	font-weight: 500;
}
.product-spec__title::before {
	content: "";
	position: absolute;
	left: 0;
	top: 15px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #e5002d;
}
.product-spec__table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
}
.product-spec__table th,
.product-spec__table td {
	border: 1px solid #c9caca;
	padding: 15px 20px;
	font-size: 1.5rem;
	text-align: left;
	vertical-align: middle;
}
.product-spec__table th {
	width: 150px;
	background: #efefef;
	font-weight: 700;
	vertical-align: middle;
}
.product-spec__meta{
	display: flex;
    justify-content: space-between;
	padding-top: 10px;
}
.product-spec__meta__txt{
	font-size: 1.2rem;
}
.product-spec__meta__txt.right{
	margin-left: auto;
}
.product-spec__meta__txt--text {
	display: block;
	text-indent: -1em;
	padding-left: 1em;
}
.product-spec__meta__txt--text::before {
	content: "※";
}
.product-spec__block {
	margin-top: 60px;
}
.product-spec__single {
	background: #fff;
	border: 1px solid #c9caca;
	padding: 14px 20px;
	font-size: 1.5rem;
	line-height: 2;
}
/******* allergy *******/
.product-allergy {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	border-top: 1px solid #ddd;
	border-left: 1px solid #ddd;
}
.product-allergy__item {
	border-right: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	padding: 12px 5px;
	text-align: center;
	font-size: 1.5rem;
	line-height: 1.2;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	min-height: 60px;
	letter-spacing: 0;
}
.product-allergy__item.is-active {
	background: #2b2b2b;
	color: #fff;
}
.product-allergy__note {
	font-size: 1.2rem;
	margin-top: 10px;
}
.product-allergy__note--text {
	display: block;
	text-indent: -1em;
	padding-left: 1em;
}
.product-allergy__note--text::before {
	content: "※";
}
.product-recommend-category{
	padding-top: 100px;
}
.product-recommend-category .item-btn{
	margin: 70px auto 0;
}
@media screen and (max-width: 1060px) {
	.page-head--item_detail{
		display: none;
	}
	.product-detail__layout {
		grid-template-columns: 1fr;
		gap: 50px;
	}
	.product-detail__gallery{
		min-width: 0;
	}
	.product-gallery__slider{
		border-radius: 15px;
		margin-bottom: 25px;
		padding: 0;
	}
	.product-gallery .swiper-slide{
		height: 275px;
	}
	.product-gallery__image{
		height: 270px;
	}
	.product-gallery-thumb .swiper-wrapper{
		gap: 10px 12px;
	}
	.product-gallery-thumb .swiper-slide {
		width: 59px !important;
		height: 60px !important;
	}
	.product-gallery-thumb__image{
		width: 59px;
		height: 60px;
		border-radius: 5px;
		padding: 9px 13px 8px;
	}
	.swiper-slide-thumb-active .product-gallery-thumb__image::before{
		width: 100px;
		height: 100px;
	}
	.product-gallery__prev,
	.product-gallery__next{
		width: 35px;
		height: 35px;
		border: 1px solid #e5e5e5;
	}
	.product-gallery__prev{
		left: -16px;
	}
	.product-gallery__next{
		right: -16px;
	}
	.product-gallery__prev::before,
	.product-gallery__next::before{
		width: 6px;
		height: 6px;
		border-top: 1px solid #a8a8a8;
		border-right: 1px solid #a8a8a8;
	}
	.product-gallery__pagination{
		bottom: 10px !important;
		padding-right: 8px;
	}
	.product-gallery__pagination .swiper-pagination-bullet{
		width: 6px;
		height: 6px;
		margin: 0 3px !important;
	}	
}
@media screen and (max-width: 768px) {
	.product-detail__mv {
		padding-top: 30px;
		padding-bottom: 55px;
	}
	/******* content *******/
	.product-detail__content .product-card__tags{
		margin-bottom: 15px;
	}
	.product-detail__content .product-card__tags .product-card__tag{
		height: 18px;
		padding: 0 9px;
	}
	.product-detail__category {
		gap: 5px;
		margin-bottom: 43px;
	}
	.product-detail-category-chip{
		min-width: 65px;
		min-height: 18px;
		font-size: 1.1rem;
		padding-top: 3px;
		padding: 2px 10px 0;
	}
	.product-detail__title {
		font-size: 2.7rem;
		line-height: 1.5;
		margin-top: 43px;
		margin-bottom: 35px;
	}
	.product-detail__title:first-child{
		margin-top: 0;
	}
	.product-detail__text {
		font-size: 1.6rem;
		margin-bottom: 28px;
		line-height: 1.84375;
	}
	.product-detail__btn {
		margin-top: 28px;
	}
	.product-detail__lead {
		padding-bottom: 55px;
	}
	.product-detail__lead-block,
	.product-detail__lead-block--reverse {
		grid-template-columns: 1fr;
		gap: 30px;
		margin-bottom: 50px;
	}
	.product-detail__lead .orbit.right{
		left: 140%;
	}
	.product-detail__lead .orbit--01 .circle{
		width: 436px;
		height: 436px;
	}
	.product-detail__lead .orbit--02 .circle{
		width: 436px;
		height: 436px;
	}
	.product-detail__heading {
		font-size: 1.8rem;
		margin-bottom: 30px;
	}
	.product-detail__description {
		font-size: 1.4rem;
		line-height: 1.84375;
	}
	.product-detail__description + .product-detail__description{
		margin-top: 25px;
	}
	/******* spec *******/
	.product-spec {
		padding: 50px 0;
	}
	.product-spec__grid {
		grid-template-columns: 1fr;
		gap: 45px;
	}
	.product-spec__title {
		padding-left: 15px;
		line-height: 1.2;
		margin-bottom: 22px;
	}
	.product-spec__title span {
		font-size: 1.3rem;
		display: inline-block;
        letter-spacing: 0;
	}
	.product-spec__title::before {
		top: 9px;
	}
	.product-spec__table th,
	.product-spec__table td {
		padding: 5px 5px 3px 10px;
		font-size: 1.4rem;
		letter-spacing: 0;
	}
	.product-spec__table th {
		width: 120px;
		border-right: none;
	}
	.product-spec__table td{
		border-left: none;
	}
	.product-spec__meta{
		padding-top: 5px;
	}
	.product-spec__meta__txt{
		font-size: 1.3rem;
	}
	.product-spec__block {
		margin-top: 40px;
	}
	.product-spec__single {
		padding: 12px 20px;
		font-size: 1.4rem;
		line-height: 1.785;
	}
	/******* allergy *******/
	.product-allergy {
		grid-template-columns: repeat(4, 1fr);
	}
	.product-allergy__item {
		padding: 5px 0;
		font-size: 1.2rem;
		line-height: 1.16;
		min-height: 34px;
		letter-spacing: 0;
	}
	.product-allergy__item .f-s{
		font-size: 1rem;
		display: block;
	}
	.product-allergy__note {
		font-size: 1.3rem;
		line-height: 1.3846;
		margin-top: 10px;
	}
	.product-recommend-category{
		padding-top: 50px;
	}
	.product-recommend-category .item-btn{
		margin-top: 40px;
	}
}

/*********************************
	お問い合わせ
*********************************/
.contact .l-inner{
	max-width: 860px;
}
/******* heading *******/
.contact__heading {
	font-size: 3.3rem;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 0;
	margin-bottom: 30px;
}
/******* tel *******/
.contact__tel-note-box{
	border: 1px solid #dfe0e0;
	padding: 45px calc(98/ 800 * 100%) 40px;
	background: #fff;
	border-radius: 10px;
	font-family: var(--font-shippori);
}
.contact__tel {
	margin-bottom: 85px;
}
.contact__tel-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: calc(45/ 600 * 100%);
}
.contact__tel-main {
	display: flex;
	align-items: center;
	gap: 25px;
}
.contact__tel-icon {
	width: 45px;
	flex-shrink: 0;
}
.contact__tel-icon img {
	width: 100%;
	display: block;
}
.contact__tel-number {
	font-family: "Lora", serif;
	font-size: 4rem;
	line-height: 1;
	font-weight: 500;
	color: #2b2623;
	text-decoration: none;
}
.contact__tel-info p {
	line-height: 1.8;
	letter-spacing: 0;
}
.contact__tel-info .anno{
	font-size: 1.1rem;
}
.contact__tel-note {
	font-size: 1.2rem;
	margin-top: 18px;
	padding-top: 25px;
	border-top: 1px solid #dfe0e0;
	text-align: center;
	letter-spacing: 0;
	font-weight: 600;
}
/******* form *******/
.contact__text {
	font-size: 1.5rem;
	line-height: 2;
	padding-bottom: 30px;
	border-bottom: 1px solid #dfe0e0;
	letter-spacing: -0.05em;
}
.contact-form__item {
	display: flex;
	border-bottom: 1px solid #dfe0e0;
	padding: 20px 0;
}
.contact-form__head {
	width: 250px;
	padding-right: 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-shrink: 0;
}
.contact-form__head label {
	font-size: 1.5rem;
	font-weight: 600;
	letter-spacing: 0;
}
.contact-form__required {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 24px;
	background: #e5132a;
	color: #fff;
	font-size: 1.4rem;
	line-height: 1;
	border-radius: 5px;
	font-family: var(--font-shippori);
}
.contact-form__body {
	flex: 1;
	line-height: 0;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
	width: 100%;
	border: 1px solid #dfe0e0;
	background: #fff;
	font-size: 1.5rem;
	padding: 0 18px;
	appearance: none;
	border-radius: 0;
	border-radius: 8px;
}
.contact-form input,
.contact-form select {
	height: 45px;
}
.contact-form textarea {
	height: 200px;
	padding-top: 18px;
	resize: vertical;
	line-height: 1.2;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: #d0d0d0;
}
.contact-form select {
	background-image: url("../img/icon-arrow-select.svg");
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 8px;
	padding-right: 45px;
	max-width: 300px;
	position: relative;
}
.contact-form select.select-type02 {
	max-width: 100%;
}
.contact-form .form-err {
  margin-top: 10px;
	font-size: 1.4rem;
  color: #f00;
	line-height: 1.4;
}
.contact-form__privacy {
	text-align: center;
	margin-top: 55px;
	font-size: 1.4rem;
	letter-spacing: 0;
}
.contact-form__privacy a{
	position: relative;
}
.contact-form__privacy a::after {
	content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #2b2b2b;
    transition: width .3s ease;
}
.contact-form__privacy a:hover::after {
	width: 0%;
}
.contact-form__recaptcha {
  width: 100%;
  text-align: center;
  margin-top: 55px;
}
.contact-form__recaptcha .g-recaptcha {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contact-form__recaptcha .form-err-recaptcha {
  margin-top: 10px;
  color: #f00;
  text-align: center;
}
.contact-form__button {
	display: flex;
	justify-content: center;
	margin-top: 40px;
}
/******* button *******/
.contact-btn{
	margin: 50px auto 0;
}
@media screen and (max-width: 1060px) {
	.contact__tel-note-box{
		padding:  45px calc(40/ 800 * 100%) 40px
	}
}
@media screen and (max-width: 768px) {
	.contact__heading {
		font-size: 3rem;
		font-weight: 500;
		line-height: 1.5;
		margin-bottom: 33px;
	}
	.contact__tel-note-box {
		padding: 22px 15px;
		border-radius: 7px;
		font-weight: 700;
	}
	.contact__tel {
		margin-bottom: 45px;
	}
	.contact__tel-box {
		display: block;
	}
	.contact__tel-main {
		margin-bottom: 5px;
		gap: 10px;
	}
	.contact__tel-icon {
		width: 28px;
	}
	.contact__tel-number {
		font-size: 2.5rem;
	}
	.contact__tel-info p {
		font-size: 1.6rem;
	}
	.contact__tel-info .anno{
		font-size: 1.2rem;
	}
	.contact__tel-note {
		font-size: 1.6rem;
		line-height: 1.8125;
		margin-top: 20px;
		padding-top: 22px;
		text-align: left;
	}
	.contact__form-area .contact__heading{
		margin-bottom: 38px;
	}
	.contact__text {
		font-size: 1.6rem;
		line-height: 1.8125;
		letter-spacing: -0.04em;
		padding-bottom: 42px;
		margin-bottom: 0;
	}
	.contact-form__item {
		display: block;
		padding: 18px 0 20px;
	}
	.contact-form__head {
		width: 100%;
		padding-right: 0;
		margin-bottom: 14px;
		justify-content: flex-start;
	}
	.contact-form__head label {
		font-size: 1.6rem;
		line-height: 1;
		font-weight: 700;
	}
	.contact-form__required{
		margin-left: 10px;
		font-size: 1.2rem;
        min-width: 32px;
        height: 20px;
	}
	.contact-form input,
	.contact-form select {
		height: 42px;
		font-size: 1.4rem;
		max-width: 100%;
	}
	.contact-form textarea {
		height: 216px;
		font-size: 1.4rem;
	}
	.contact-form .form-err {
		margin-top: 7px;
		font-size: 1.2rem;
	}
	.contact-form__privacy {
		font-size: 1.2rem;
		margin-top: 35px;
	}
  .contact-form__recaptcha {
    margin-top: 35px;
  }
	.contact-btn{
		margin-top: 32px;
	}
}
/*********************************
	お問い合わせ 確認
*********************************/
.contact-form__confirm-head,
.contact-form__confirm-text{
	font-size: 1.5rem;
	line-height: 2;
	word-break: break-word;
}
.contact-form__confirm-head{
	font-weight: 600;
}
.contact-form__confirm-message {
	font-size: 1.5rem;
	line-height: 1.866;
	word-break: break-word;
}
.contact-confirm__buttons {
	display: flex;
	justify-content: center;
	gap: 60px;
	margin-top: 60px;
}
.confirm__buttons{
	max-width: 200px;
}
@media screen and (max-width: 768px) {
	.contact-confirm__item{
		padding: 14px 0;
	}
	.contact-confirm__item .contact-form__head{
		margin-bottom: 3px;
	}
	.contact-form__confirm-head{
		font-size: 1.6rem;
	}
	.contact-form__confirm-message{
		font-size: 1.4rem;
	}
	.contact-form__confirm-text{
		font-size: 1.4rem;
	}
	.contact-confirm__buttons {
		flex-direction: column-reverse;
		justify-content: center;
		gap: 25px;
	}
	.contact-confirm__buttons .confirm__buttons {
		max-width: 100%;
	}
	.contact-confirm__buttons .confirm__buttons .c-btn__arrow {
		margin-left: auto;
	}
	.contact-confirm__buttons .confirm__buttons .c-btn__text {
		margin-left: auto;
	}
	.contact-confirm__buttons .confirm__buttons.c-btn-arrow--back .c-btn__arrow {
		margin-right: auto;
		margin-left: 0;
	}
	.contact-confirm__buttons .confirm__buttons.c-btn-arrow--back .c-btn__text {
		margin-right: auto;
		margin-left: 0;
	}
}
/*********************************
	お問い合わせ 完了
*********************************/
.contact__form-thanks-area{
	border-top: 1px solid #dfe0e0;
	border-bottom: 1px solid #dfe0e0;
	padding: 60px 0;
}
.contact__thanks-text{
    line-height: 2;
}
.thanks__btn{
	margin: 45px auto 0;
}
@media screen and (max-width: 768px) {
	.contact__form-thanks-area{
		border-top: 2px solid #dfe0e0;
		border-bottom: 2px solid #dfe0e0;
		padding: 45px 0 55px;
	}
	.contact__thanks-text{
		line-height: 1.8125;
	}
	.thanks__btn{
		margin: 52px auto 0;
	}
}
/*********************************
	privacy policy
*********************************/
.policy{
	position: relative;
}
.policy .l-inner{
	max-width: 860px;
}
.policy-heading__ja{
	letter-spacing: -0.06em;
    font-size: 3.5rem;
}
.policy__intro{
	font-size: 1.5rem;
	line-height: 2;
	margin-bottom: 25px;
	letter-spacing: -0.05em;
}
.privacy-policy__list {
	counter-reset: policy-number;
	display: flex;
	flex-direction: column;
	gap: 26px;
}
.privacy-policy__item {
	position: relative;
	line-height: 1.666;
	font-size: 1.5rem;
	list-style: none;
	padding-left: 32px;
}
.privacy-policy__item::before {
	counter-increment: policy-number;
	content: counter(policy-number) ".";
	flex-shrink: 0;
	min-width: 20px;
	position: absolute;
	top: 0;
	left: 0;
}
.privacy-policy__sublist {
	margin-top: 10px;
	padding-left: 2px;
	display: flex;
	flex-direction: column;
}
.privacy-policy__subitem {
	position: relative;
	padding-left: 18px;
}
.privacy-policy__subitem::before {
	content: "";
	position: absolute;
	top: 9px;
	left: 0;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #262626;
}
.privacy-policy__meta{
	text-align: right;
	margin-top: 55px;
}
.privacy-policy__meta--bold{
	font-weight: 600;
}
.policy .orbit{
	top: 70%;
}
.policy .orbit.right{
	top: 25%;
	left: 93%;
}
.policy .orbit--01 .circle,
.policy .orbit--02 .circle{
	width: 600px;
	height: 600px;
}
@media screen and (max-width: 768px) {
	.policy__intro{
		font-size: 1.6rem;
		line-height: 1.8125;
		margin-bottom: 50px;
	}
	.privacy-policy__list {
		gap: 30px;
	}
	.privacy-policy__item {
		line-height: 1.8125;
		padding-left: 28px;
	}
	.privacy-policy__item::before {
		min-width: 25px;
	}
	.privacy-policy__sublist {
		margin-top: 8px;
		padding-left: 5px;
	}
	.privacy-policy__subitem {
		padding-left: 14px;
	}
	.privacy-policy__subitem::before {
		top: 11px;
	}
	.privacy-policy__meta{
		margin-top: 50px;
		font-size: 1.5rem;
	}
	.policy .orbit{
		top: 30%;
		left: 28%;
	}
	.policy .orbit.right{
		display: block;
		top: 11%;
		left: 152%;
	}
	.policy .orbit--01 .circle,
	.policy .orbit--02 .circle{
		width: 274px;
		height: 274px;
	}
}
/*********************************
	特設
*********************************/
.special-kurogomakinako{
	background: url("../img/kurogomakinako/bg_kurogomakinako_fv.jpg") top center / contain no-repeat;
}
.special-omatchahorori{
	background: url("../img/omatchahorori/bg_omatchahorori_fv.jpg") top center / contain no-repeat;
}
/******* special fv *******/
.special-fv {
	position: relative;
	padding: 16px 0 0;
	overflow: hidden;
}
.special-fv__inner {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 90px;
}
.special-omatchahorori .special-fv__inner{
	padding-bottom: 40px;
}
/******* main *******/
.special-fv__main {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.special-fv + .special-breadcrumb .c-breadcrumb--white{
	margin-top: 100px;
}
.special-omatchahorori .special-fv + .special-breadcrumb .c-breadcrumb--white{
	margin-top: 60px;
}
/******* image *******/
.special-fv__image{
	width: min(1040px, calc(100% - 180px));
	height: auto;
	aspect-ratio: 1040 / 667;
	flex-shrink: 0;
	position: relative;
}
.special-fv__image video,
.special-fv__image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/******* head *******/
.special-fv__head {
	display: flex;
	align-items: flex-end;
	flex-direction: column;
	gap: 85px;
	padding-top: 30px;
	text-orientation: mixed;
	color: #fff;
}
.special-omatchahorori .special-fv__head {
	gap: 148px;
}
.special-fv__head__txt{
	writing-mode: vertical-rl;
}
.special-omatchahorori .special-fv__head__txt {
	padding-right: 22px;
}
.special-fv__sub {
	font-family: var(--font-shippori);
	font-size: 1.5rem;
	line-height: 1.5;
	letter-spacing: .04em;
	padding-left: 12px;
	font-weight: 600;
}
.special-fv__title {
	font-size: 4.4rem;
	line-height: 1.61;
	letter-spacing: .08em;
}
.special-fv__title span {
	font-size: 3.6rem;
	padding-bottom: 9px;
    font-weight: 600;
}
/******* package *******/
.special-fv__package {
	margin-top: auto;
}
.special-fv__package img {
	width: 100%;
	display: block;
	box-shadow: 7px 7px 11px rgba(0, 0, 0, .20);
}
.special-kurogomakinako .special-fv__package {
	width: calc(134 / 205 * 100%);
}
.special-omatchahorori .special-fv__package {
	width: calc(134 / 220 * 100%);
	position: relative;
}
.special-omatchahorori .special-fv__package::before,
.special-omatchahorori .special-fv__package::after{
	position: absolute;
	content: "";
	width: 78px;
	height: 75px;
	background: url("../img/omatchahorori/img_package_deco.png") no-repeat top center;
	background-size: cover;
}
.special-omatchahorori .special-fv__package::before{
	top: -34px;
    left: -36px;
}
.special-omatchahorori .special-fv__package::after{
	bottom: -44px;
    right: -46px;
    transform: rotate(90deg);
}
/******* breadcrumb *******/
.special-breadcrumb{
	max-width: 1440px;
	margin: auto;
	padding-right: 25px;
}
.c-breadcrumb--white {
	margin-top: 44px;
	justify-content: flex-end;
	color: #fff;
}
.c-breadcrumb--white li,
.c-breadcrumb--white a {
	color: #fff;
}
/******* special intro *******/
.special-intro {
	position: relative;
	padding: 90px 0 0;
	max-width: 1440px;
	margin: auto;
	/*color: #fff;*/
}
.special-intro__inner {
	max-width: 1340px;
	margin: 0 auto;
	margin-right: 0;
	display: flex;
	color: #fff;
	justify-content: flex-end;
	padding-left: 30px;
}
.special-intro--type02 .special-intro__inner{
	justify-content: flex-start;
	align-items: center;
	padding-left: 0;
	padding-right: 30px;
	margin-left: 0;
}

.special-omatchahorori .special-intro{
	position: relative;
	overflow: hidden;
}
.special-omatchahorori .special-intro .special__deco{
	position: absolute;
	z-index: -1;
}
.special-omatchahorori .special-intro .special__deco--01{
	width: 200px;
    height: 323px;
    right: -40px;
    top: 8%;
}
/******* title *******/
.special-intro__title {
	writing-mode: vertical-rl;
	text-orientation: mixed;
	margin-right: calc(69 / 1440 * 100%);
	margin-top: 15px;
}
.special-intro__title h2 {
	font-size: 3.3rem;
	line-height: 1.848;
	letter-spacing: .08em;
}
.special-intro--type02 .special-intro__title{
	margin-right: 0;
	margin-left: calc(69 / 1440 * 100%);
	order: 2;
	margin-top: -80px;
}
/******* content *******/
.special-intro__content {
	max-width: 340px;
	margin-right: clamp(40px, 6.8vw, 80px);
	padding-top: 95px;
}
.special-intro--type02 .special-intro__content{
	margin-right: 0;
	margin-left: clamp(40px, 6.8vw, 80px);
	order: 3;
	padding-top: 0;
}
.special-intro__lead {
	font-family: var(--font-shippori);
	font-size: 1.2rem !important;
	letter-spacing: .05em !important;
	margin-bottom: 40px;
}
.special-intro__content p {
	font-size: 1.5rem;
	line-height: 2;
	letter-spacing: -0.06em;
}
.special-intro__content p + p {
	margin-top: 40px;
}
/******* image *******/
.special-intro__image {
	width: 100%;
	max-width: 645px;
}
.special-intro--type02 .special-intro__image{
	order: 1;
}
.special-intro__image img {
	width: 100%;
	display: block;
}
.special-intro__image_sub{
	display: flex;
	justify-content: center;
    column-gap: 178px;
	margin-top: 168px;
	padding: 0px 50px 0 68px;
}
.special-intro__image_sub--01{
	width: 380px;
}
.special-intro__image_sub--02{
	width: 530px;
	padding-top: 157px;
}

.special-intro--type02 .special-intro__image_sub {
	flex-direction: row-reverse;
}
@media screen and (max-width: 1060px) {
	/******* special fv *******/
	.special-kurogomakinako{
		background: url("../img/kurogomakinako/bg_kurogomakinako_fv-sp.jpg") top center / contain no-repeat;
		background-size: 100% 19%;
	}
	.special-omatchahorori{
		background: url("../img/omatchahorori/bg_omatchahorori_fv-sp.jpg") top center / contain no-repeat;
		background-size: 100% 19%;
	}
	.special-omatchahorori .special-fv__inner{
		padding-bottom: 0;
	}
	.special-omatchahorori .special-fv{
		overflow: hidden;
	}
	.special-omatchahorori .special-fv::before,
	.special-omatchahorori .special-fv::after{
		position: absolute;
		content: "";
		width: calc(124 / 750 * 100%);
		height: calc(120 / 750 * 100%);
		background: url("../img/omatchahorori/img_package_deco.png") no-repeat;
		background-size: cover;
		z-index: 5;
	}
	.special-omatchahorori .special-fv::before{
		right: -22px;
		top: 0;
	}
	.special-omatchahorori .special-fv::after{
		left: -18px;
		bottom: -36px;
		transform: rotate(90deg);
	}
	.special-fv__inner {
		padding: 0;
	}
	/******* main *******/
	.special-fv__main {
		position: relative;
		display: block;
	}
	/******* image *******/
	.special-fv__image {
		width: 100%;
		padding-top: calc(397 / 750 * 100%);
		/*margin-left: 20px;*/
		position: relative;
		z-index: 1;
	}
	/******* head *******/
	.special-fv__head {
		position: absolute;
		top: 8%;
		right: 0;
		left: 0;
		margin: auto;
		z-index: 3;
		width: 75%;
		gap: 12px;
		padding-top: 0;
		align-items: flex-end;
	}
	/******* package *******/
	.special-fv__package {
		position: absolute;
		left: 0;
		max-width: none;
		margin: 0;
		z-index: 2;
	}
	.special-kurogomakinako .special-fv__package {
		width: calc(306 / 750 * 100vw);
	}
	.special-omatchahorori .special-fv__package {
		width: calc(420 / 750 * 100%);
		position: absolute;
	}
	.special-omatchahorori .special-fv__package::before,
	.special-omatchahorori .special-fv__package::after{
		content: none;
	}
	.special-intro{
		overflow: hidden;
	}
	.special-intro__title h2 {
		font-size: 2.7rem;
	}
	.special-intro--type02 .special-intro__title{
		margin-top: 0;
	}
	.special-intro__content p {
		font-size: 1.6rem;
		line-height: 1.8125;
	}
}
@media screen and (max-width: 767px) {
	.special-omatchahorori{
		background: url("../img/omatchahorori/bg_omatchahorori_fv-sp.jpg") top center / contain no-repeat;
		background-size: 100% 16.5%;
	}
	/******* special fv *******/
	.special-fv {
		padding: 0;
	}
	/******* head *******/
	.special-fv__sub {
		font-size: 1.2rem;
		line-height: 1.6;
		padding-left: 3px;
	}
	.special-fv__title {
		font-size: 2.7rem;
		line-height: 1.5;
	}
	.special-fv__title span {
		font-size: 2.7rem;
	}
	.special-omatchahorori .special-fv__head__txt {
		padding-right: 0;
	}
	/******* breadcrumb *******/
	.c-breadcrumb--white {
		margin-top: 18px;
		padding: 0 20px;
		justify-content: flex-start;
	}
	/******* special intro *******/
	.special-intro {
		padding: 70px 0 0;
	}
	.special-intro__inner {
		display: grid;
		grid-template-columns: 1fr 1.6fr;
		grid-template-areas:
			"title image"
			"content content";
		column-gap: 40px;
		row-gap: 45px;
		padding-left: 50px;
	}
	.special-intro--type02 .special-intro__inner{
		padding-right: 0;
		padding-left: 50px;
		align-items: self-start;
	}
	.special-omatchahorori .special-intro .special__deco--01{
		width: 62px;
        height: 100px;
        right: 0;
        top: 22%;
        z-index: 1;
	}
	/******* title *******/
	.special-intro__title {
		grid-area: title;
		display: flex;
        align-items: center;
		margin-right: 0;
		margin-top: 0;
	}
	.special-intro--type02 .special-intro__title {
		margin-left: 0;
	}
	.special-intro__title h2 {
		line-height: 1.5;
	}
	/******* content *******/
	.special-intro__content {
		grid-area: content;
		max-width: none;
		padding-right: 50px;
		margin-right: 0;
		padding-top: 0;
	}
	.special-intro--type02 .special-intro__content{
		margin-left: 0;
	}
	.special-intro__lead{
		letter-spacing: .1em !important;
		margin-bottom: 30px;
	}
	.special-intro__content p + p {
		margin-top: 25px;
	}
	/******* image *******/
	.special-intro__image {
		grid-area: image;
	}
	.special-intro__image_sub{
		column-gap: 30px;
		margin-top: 45px;
	}
	.special-intro__image_sub--01{
		width: calc(240 / 620 * 100vw);
	}
	.special-intro__image_sub--02{
		width: calc(240 / 620 * 100vw);
		padding-top: 45px;
	}
	.special-intro--type02 .special-intro__image_sub{
		padding: 0;
		padding-right: 50px;
	}
	.special-intro--type02 .special-intro__image_sub--01 {
        width: calc(240 / 620 * 100vw);
		padding-top: 75px;
    }
	.special-intro--type02 .special-intro__image_sub--02 {
		width: calc(342 / 620 * 100vw);
        padding-top: 0;
	}
}
/*********************************
	特設 feature
*********************************/
.special-feature {
	padding: 200px 0 180px;
	position: relative;
	overflow: hidden;
}
.special-feature__heading {
	text-align: center;
	margin-bottom: 60px;
}
.special-feature__en {
	font-family: var(--font-shippori);
	font-size: 1.2rem;
	letter-spacing: .03em;
	margin-bottom: 40px;
}
.special-feature__title {
	font-size: 2.6rem;
	line-height: 1.6;
}
/******* item *******/
.special-feature-item {
	display: flex;
	justify-content: space-between;
	gap: 100px;
}
.special-feature-item + .special-feature-item {
	margin-top: 185px;
}
.special-feature-item__content {
	/*width: 360px;*/
	flex-shrink: 0;
}
.special-feature-item__num {
	font-family: var(--font-shippori);
	font-size: 1.3rem;
	color: #c9a063;
}
.special-omatchahorori .special-feature-item__num{
	color: #71a876;
}
.special-feature-item__title {
	font-family: var(--font-yugothic);
	font-size: 2.2rem;
	line-height: 1.636;
	font-weight: 600;
	margin-bottom: 15px;
}
.special-feature-item__text {
	font-size: 1.5rem;
	line-height: 2;
	letter-spacing: -0.05em;
}
.special-feature-item__image img {
	width: 100%;
	display: block;
}
/*** 01 ***/
.special-feature-main{
	position: relative;
	max-width: 1362px;
	margin: 0 auto calc(180 / 1440 * 100%);;
}
.special-feature-main__image img{
	width: 100%;
	display: block;
}
.special-feature-main__content{
	position: absolute;
	right: 0;
	bottom: 0;
	width: 700px;
	background: #fff;
	padding: 80px 180px 0 100px;
}
.special-feature-main .special-feature-item__num{
	margin-bottom: 5px;
}
.special-feature-main .special-feature-item__title{
	margin-bottom: 10px;
}

/** お抹茶ほろり **/
.special-omatchahorori .special-feature-main{
	margin: 0 auto 220px;
}
.special-omatchahorori .special-feature-main.special-feature-main--01{
	margin-bottom: 270px;
}
.special-omatchahorori .special-feature-main__content{
	width: 640px;
	left: 0;
	padding: 80px 100px 0 180px;
}

/*** 02 ***/
.special-feature-item--02{
	justify-content: center;
	gap: 45px;
	padding: 0 50px;
}
.special-feature-item--02 .special-feature-item__image{
	width: 685px;
	display: flex;
	gap: 1px;
}
/** お抹茶ほろり **/
.special-omatchahorori .special-feature-item--02{
	max-width: 1214px;
    margin: auto;
	gap: 90px;
	flex-direction: row-reverse;
	transition: all .3s ease;
	justify-content: flex-end;
	padding: 0;
}
.special-feature-item--02 .special-feature-item__content{
	max-width: 270px;
}
.special-omatchahorori .special-feature-item--02 .special-feature-item__image{
	width: 741px;
	gap: 27px;
}
.special-omatchahorori .special-feature-item--02 .special-feature-item__image div:nth-child(1){
	margin-top: -70px;
}
.special-omatchahorori .special-feature-item--02 .special-feature-item__image div:nth-child(2){
	margin-top: -15px;
}
.special-omatchahorori .special-feature-item--02 .special-feature-item__image div:nth-child(3){
	margin-top: -45px;
}
.special-omatchahorori .special-feature-item--02 .special-feature-item__text{
	max-width: 270px;
}

/*** 03 ***/
.special-feature-item--03{
	max-width: 1240px;
    margin: auto;
    justify-content: flex-start;
	gap: 85px;
	align-items: center;
}
.special-feature-item--03 .special-feature-item__content{
	max-width: 430px;
}
.special-feature-item--03 .special-feature-item__image{
	width: 607px;
}
/** お抹茶ほろり **/
.special-feature-main.special-feature-main--03 .special-feature-main__image{
	max-width: 1027px;
	margin: 175px 55px 0 auto;
}
.special-feature-main.special-feature-main--03 .special-feature-main__content{
	top: 0;
	bottom: auto;
	left: 0;
	width: 575px;
	padding: 0 90px 70px 184px;
}
/*** 04 ***/
.special-feature-item--04{
	justify-content: center;
	gap: 85px;
	padding-left: 85px;
}
.special-feature-item--04 .special-feature-item__content{
	max-width: 385px;
}
.special-feature-item--04 .special-feature-item__images {
	display: flex;
	justify-content: space-between;
}
.special-feature-item--04 .special-feature-item__image{
	max-width: calc(355 / 1440 * 100vw);
	margin-right: 80px;
}
.special-feature-item--04 .special-feature-item__image--small {
	max-width: calc(185 / 1440 * 100vw);
	margin-top: -45px;
	margin-right: 0;
}
.special-feature .special__deco{
	position: absolute;
	z-index: -1;
}
.special-feature .special__deco--01{
	width: 228px;
    height: 278px;
    right: -62px;
    top: 57%;
}
.special-feature .special__deco--02{
	width: 202px;
    height: 207px;
    right: -70px;
    top: 72.2%;
}
/** お抹茶ほろり **/
.special-feature-item_type02--04__wrap{
	max-width: 1440px;
	margin: auto;
}
.special-feature-item_type02--04{
	max-width: 1396px;
	margin: auto;
	margin-right: 0;
	gap: 90px;
	position: relative;
}
.special-feature-item_type02--04 .special-feature-item__image--01{
	max-width: 606px;
}
.special-feature-item_type02--04 .special-feature-item__content{
	max-width: 316px;
	padding-top: calc(110 / 1440 * 100%);
}
.special-feature-item_type02--04 .special-feature-item__title{
	letter-spacing: -0.04em;
}
.special-feature-item_type02--04 .special-feature-item__images{
	max-width: 288px;
}
.special-feature-item_type02--04 .special-feature-item__image--02{
	max-width: calc(220 / 288 * 100%);;
	margin-top: -75px;
	margin-left: auto;
}
.special-feature-item_type02--04 .special-feature-item__image--03{
	max-width: calc(178 / 288 * 100%);
	margin-top: 154px;
}

@media screen and (max-width: 1270px) {
	.special-omatchahorori .special-feature-item--02{
		gap: 40px;
	}
}
@media screen and (max-width: 1060px) {
	.special-feature-item,
	.special-feature-item--02,
	.special-feature-item--03,
	.special-feature-item--04 {
		flex-direction: column;
	}
	.special-feature-item__content {
		width: 100%;
		padding:  0 50px;
	}
	/*** 01 ***/
	.special-feature-main{
		margin-bottom: 35px;
		padding: 0 15px;
	}
	.special-feature-main__content{
		position: static;
		width: 100%;
		padding: 40px 35px 0;
		background: transparent;
	}
	/** お抹茶ほろり **/
	.special-omatchahorori .special-feature-main{
		margin-bottom: 40px;
	}
	.special-omatchahorori .special-feature-main__content{
		width: 100%;
		padding: 40px 35px 0;
	}
	.special-omatchahorori .special-feature-main.special-feature-main--01{
		margin-bottom: 35px;
	}
	
	/*** 02 ***/
	.special-feature-item--02{
		padding: 0;
		gap: 0;
	}
	.special-feature-item--02 .special-feature-item__content{
		width: 100%;
	}
	.special-feature-item--02 .special-feature-item__image{
		width: calc(700 / 750 * 100vw);
		margin-top: 30px;
		gap: 0;
	}
	
	/** お抹茶ほろり **/
	.special-omatchahorori .special-feature-item--02{
		gap: 55px;
		flex-direction: column;
	}
	.special-feature-item--02 .special-feature-item__content{
		max-width: 100%;
	}
	.special-omatchahorori .special-feature-item--02 .special-feature-item__image{
		width: 100%;
		gap: 13px;
		margin-top: 0;
	}
	.special-omatchahorori .special-feature-item--02 .special-feature-item__image div:nth-child(1){
		margin-top: -27px;
	}
	.special-omatchahorori .special-feature-item--02 .special-feature-item__image div:nth-child(2){
		margin-top: 0;
	}
	.special-omatchahorori .special-feature-item--02 .special-feature-item__image div:nth-child(3){
		margin-top: -16px;
	}
	.special-omatchahorori .special-feature-item--02 .special-feature-item__text{
		max-width: 100%;
	}
	
	/*** 03 ***/
	.special-feature-item--03{
		flex-direction: column-reverse;
		gap: 30px;
	}
	.special-feature-item--03 .special-feature-item__content{
		max-width: 100%;
	}
	.special-feature-item--03 .special-feature-item__image{
		width: calc(650 / 750 * 100%);
		margin-left: auto;
	}
	
	.special-feature-main.special-feature-main--03 {
		flex-direction: column-reverse;
        display: flex;
	}
	.special-feature-main.special-feature-main--03 .special-feature-main__image{
		max-width: calc(650 / 690 * 100%);
		margin: 30px auto 0;
		margin-right: -15px;
	}
	.special-feature-main.special-feature-main--03 .special-feature-main__content{
		width: 100%;
		padding: 40px 35px 0;
	}
	
	/*** 04 ***/
	.special-feature-item--04{
		justify-content: center;
		gap: 40px;
		padding-left: 0;
	}
	.special-feature-item--04 .special-feature-item__content{
		margin-left: 0;
		max-width: 100%
	}
	.special-feature-item--04 .special-feature-item__images {
		padding: 0 50px;
	}
	.special-feature-item--04 .special-feature-item__image{
		max-width: 100%;
		width: calc(314 / 550 * 100%);
		margin-right: 0;
	}
	.special-feature-item--04 .special-feature-item__image--small {
		max-width: 100%;
		width: calc(164 / 550 * 100%);
		margin-top: -25px;
	}
	.special-feature .special__deco--01,
	.special-feature .special__deco--02{
		display: none;
	}
	
	/** お抹茶ほろり **/
	.special-feature-item_type02--04{
		max-width: 1396px;
		margin: auto;
		margin-right: 0;
		gap: 30px;
		position: relative;
	}
	.special-feature-item_type02--04 .special-feature-item__image--01{
		max-width: calc(420 / 750 * 100%);
		order: 2;
	}
	.special-feature-item_type02--04 .special-feature-item__content{
		max-width: 100%;
		padding-top: 0;
		order: 1;
	}
	.special-feature-item_type02--04 .special-feature-item__images{
		max-width: 100%;
		order: 3;
	}
	.special-feature-item_type02--04 .special-feature-item__image--02{
		max-width: calc(245 / 750 * 100%);
	}
	.special-feature-item_type02--04 .special-feature-item__image--03{
		max-width: calc(198 / 750 * 100%);
		margin-top: -30px;
		margin-left: auto;
        margin-right: calc(280 / 750 * 100%);
	}
}
@media screen and (max-width: 767px) {
	.special-feature {
		padding: 50px 0 76px;
	}
	.special-feature__heading {
		margin-bottom: 35px;
	}
	.special-feature__title {
		font-size: 2.8rem;
		line-height: 1.392;
	}
	.special-feature-item + .special-feature-item {
		margin-top: 40px;
	}
	
	.special-feature-item__image {
		width: 100%;
	}
	.special-feature-item__title {
		font-size: 1.6rem;
		line-height: 1.8125;
		margin-bottom: 15px;
		letter-spacing: -0.07em;
	}
	.special-feature-item__text {
		font-size: 1.6rem;
		line-height: 1.8125;
		letter-spacing: -0.08em;
	}

	.special-feature-item__images {
		gap: 18px;
	}
	.special-feature-item__image--small {
		width: 28%;
	}
}
/*********************************
	特設 PRODUCT
*********************************/
.special-product{
	padding: 235px 0 190px;
}
.special-kurogomakinako .special-product{
	background: url("../img/kurogomakinako/bg_special-product.jpg") top left repeat-y;
	background-size: cover;
}
.special-omatchahorori .special-product{
	background: url("../img/omatchahorori/bg_special-product.jpg") top left repeat-y;
	background-size: cover;
}
.special-product__block{
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 40px;
}
/*** left ***/
.special-product__gallery{
	width: calc(480 / 1000 * 100%);
	flex-shrink: 0;
}
.special-product__gallery .swiper-wrapper{
	align-items: stretch;
}
.special-product__gallery .swiper-slide{
	height: auto;
	display: flex;
}
.special-product__main{
	background: #f5f2ef;
	padding: 110px 89px;
	height: 100%;
	width: 100%;
}
.special-product__main img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, .25));
}
/*** right ***/
.special-product__content{
	width: calc(480 / 1000 * 100%);
	display:flex;
	flex-direction:column;
}
.special-product__heading{
	font-family: var(--font-shippori);
	font-size: 1.2rem;
	margin-bottom: 40px;
}
.special-product__title{
	font-size: 2.6rem;
	line-height: 1.4;
	margin-bottom: 25px;
}
.special-product__text{
	font-size: 1.5rem;
	line-height: 2;
	letter-spacing: -0.07em;
	margin-bottom: 30px;
}
/*** button ***/
.special-product .c-btn{
	margin-top: 30px;
}
/*** thumb ***/
.special-product__thumbs{
	display: flex;
	gap: 0;
	margin-top: 40px;
	width: 100%;
}
.special-product__thumb{
	width: 120px;
	height: 143px;
	background: #f5f2ef;
	border: none;
	padding: 25px;
	cursor: pointer;
	transition: .3s;
}
.special-product__thumb img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, .25));
}
.special-product__thumbs .swiper-wrapper{
	flex-wrap: wrap;
	gap: 10px 17px;
}
.special-product__thumb:hover{
	opacity: .7;
}
.special-product__thumbs .swiper-slide{
	width: 120px;
	height: 143px;
	margin: 0!important;
}
@media screen and (max-width: 767px) {
	.special-product{
		padding: 80px 0;
	}
	.special-product__block{
		display:flex;
		flex-direction:column;
		gap: 15px;
	}
	/***** image *****/
	.special-product__gallery{
		order:1;
		width: 100%;
	}
	.special-product__main{
		padding: 56px 50px;
	}
	/***** thumb *****/
	.special-product__thumbs{
		margin-top: 0;
		margin-bottom: 45px;
		order:-1;
	}
	.special-product__thumb{
		width: 60px;
		height: 72px;
		padding: 13px;
	}
	.special-product__thumbs .swiper-wrapper{
		flex-wrap: wrap;
		gap: 10px;
	}
	.special-product__thumbs .swiper-slide{
		width: 60px;
		height: 72px;
	}
	/***** content *****/
	.special-product__content{
		order:2;
		width: 100%;
		padding-top: 0;
	}
	.special-product__heading{
		font-size: 1.2rem;
	}
	.special-product__title{
		font-size: 2.7rem;
		line-height: 1.5;
		margin-bottom: 35px;
	}
	.special-product__text{
		font-size: 1.6rem;
		line-height: 1.8125;
		margin-bottom: 25px;
	}
	.special-product .c-btn{
		max-width: none;
		width: 100%;
		margin-top: 35px;
	}
	.special-product__thumbs .swiper-slide:nth-child(n + 4){
		margin-top: 0 !important;
	}
	.special-product__thumbs .swiper-slide:nth-child(4n){
		margin-right: 0 !important;
	}
	.special-product__thumbs .swiper-slide:nth-child(n + 5){
		margin-top: 0 !important;
	}
}
/*********************************
	特設 spec
*********************************/
.special-product-spec{
	padding: 160px 0 0;
}
.special-product-spec .product-spec__grid{
	gap: 40px;
}
.special-product-spec .product-spec__title{
	padding-left: 0;
	margin-bottom: 20px;
}
.special-product-spec .product-spec__title::before{
	content: none;
}
.special-product-spec .product-spec__table th{
	width: 150px;
	letter-spacing: -0.05em;
	padding: 15px 14px 15px 20px;
	border-right: none;
}
.special-product-spec .product-spec__table td{
	border-left: none;
}
@media screen and (max-width: 767px) {
	.special-product-spec{
		padding: 50px 0 0;
	}
	.special-product-spec .product-spec__grid{
		gap: 55px;
	}
	.special-product-spec .product-spec__table th{
		width: 120px;
		min-width: 90px;
        max-width: 138px;
        white-space: nowrap;
		padding: 8px 5px 10px 10px;
	}
	.special-product-spec .product-spec__single{
		line-height: 1.428;
	}
}
/*********************************
	特設 REVIEWS
*********************************/
.special-review{
	padding: 196px 0 0;
}
.special-review__heading{
	font-family: var(--font-shippori);
	font-size: 1.2rem;
	margin-bottom: 40px;
}
.special-review__title{
	font-size: 2.6rem;
	line-height: 1.2;
}
/***** swiper *****/
.special-review .swiper-wrapper{
	display: flex;
	align-items: stretch;
}
.special-review .swiper{
	overflow: hidden;
    margin-right: calc(50% - 50vw);
    padding-right: 30px;
}
.special-review .swiper-slide{
	width: 326px;
	height: auto;
	display: flex;
}
.special-review__title_controls{
	display: flex;
    justify-content: space-between;
	margin-bottom: 30px;
}
/***** card *****/
.special-review-card{
	display: flex;
	flex-direction: column;
	width: 100%;
}
.special-review-card__body{
	flex: 1;
	min-height: 200px;
	padding: 19px 22px;
	background: #f7f8f8;
	border: 1px solid #efefef;
	border-radius: 5px;
	font-size: 1.5rem;
	line-height: 1.86;
	letter-spacing: -0.02em;
}
.special-review-card__date{
	font-size: 1.4rem;
	margin-top: 12px;
}
/***** nav *****/
.special-review__controls{
	display: flex;
	justify-content: flex-end;
	gap: 6px;
}
.special-review__prev,
.special-review__next{
	width: 31px;
	height: 31px;
	background: #c8c5be;
	border-radius: 5px;
	display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity .3s;
}
.special-review__prev:hover,
.special-review__next:hover{
	background: #ddd;
}
.special-review__prev::before,
.special-review__next::before{
	content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border: 3px solid transparent;
    border-right: 0 solid transparent;
    border-left: 5px solid #fff;
}
.special-review__prev::before{
	    transform: rotate(-180deg);
}
/***** note *****/
.special-review__note{
	font-size: 1.2rem;
	color: #9fa0a0;
	margin-top: 20px;
	letter-spacing: -0.085em;
}
@media screen and (max-width: 767px) {
	.special-review{
		padding:90px 0 0;
		overflow:hidden;
	}
	.special-review__title{
		font-size: 2.7rem;
		font-weight: 700;
	}
	/***** swiper *****/
	.special-review .swiper-slide{
		width: 163px;
	}
	.special-review__title_controls{
		margin-bottom: 35px;
	}
	/***** card *****/
	.special-review-card__body{
		height: auto;
		min-height: 150px;
		padding: 10px;
		font-size: 1.2rem;
		line-height: 1.5;
	}
	.special-review-card__date{
		font-size: 1.2rem;
		margin-top: 2px;
	}
	/***** nav *****/
	.special-review__controls{
		justify-content: flex-start;
		padding-right: 0;
		gap: 4px;
	}
	.special-review__prev,
	.special-review__next{
		width: 40px;
		height: 40px;
		border-radius: 3px;
	}
	.special-review__prev::before,
	.special-review__next::before{
		border-left: 6px solid #fff;
	}
	/***** note *****/
	.special-review__note{
		text-align: left;
		padding-right: 0;
		margin-top: 0;
	}
	/***** scrollbar *****/
	.special-review__bottom{
		display: flex;
		align-items: center;
		gap: 10px;
		margin-top: 12px;
	}
	.special-review__scrollbar{
		position: static !important;
		width: 100%;
		height: 2px !important;
		background: #ecebe9;
		margin-top: 5px;
	}
	.special-review__scrollbar .swiper-scrollbar-drag{
		background: #c8c5be;
	}
}
/*********************************
	特設 HOW TO PROCESS
*********************************/
.special-process{
	padding: 290px 0 0;
}
.special-omatchahorori .special-process{
	padding: 195px 0 0;
}
.special-process__wrap{
	max-width: 1440px;
	margin: 0 auto;
	padding-left: 20px;
}
.special-process__inner{
	max-width: 1220px;
	margin: auto;
	margin-right: 0;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.special-process__content{
	max-width: 400px;
	flex-shrink: 0;
	margin-right: calc(80 / 1220 * 100%);
}
.special-process__heading{
	font-family: var(--font-shippori);
	font-size: 1.2rem;
	margin-bottom: 40px;
}
.special-process__title{
	font-size: 2.6rem;
	line-height: 1.7;
	margin-bottom: 25px;
}
.special-process__text p{
	font-size: 1.5rem;
	line-height: 2;
	letter-spacing: -0.02em;
}
.special-process__text p + p{
	margin-top: 25px;
}
.special-process__image{
	max-width: 720px;
	height: auto;
	aspect-ratio: 720 / 690;
	position: relative;
}
.special-process__image video,
.special-process__image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media screen and (max-width: 767px) {
	.special-process,
	.special-omatchahorori .special-process{
		padding: 75px 0 0;
	}
	.special-process__wrap{
		padding: 0;
	}
	.special-process__inner{
		display: block;
	}
	.special-process__content{
		max-width: none;
		padding: 0 50px;
		margin-right: 0;
	}
	.special-process__heading{
		margin-bottom: 40px;
	}
	.special-process__title{
		font-size: 2.7rem;
		line-height: 1.5;
		margin-bottom: 35px;
	}
	.special-process__text p{
		font-size: 1.6rem;
		line-height: 2;
		letter-spacing: -0.08em;
	}
	.special-process__text p + p{
		margin-top: 25px;
	}
	.special-process__image{
		width: 100%;
		margin-top: 28px;
		padding: 0 15px;
	}
}
/*********************************
	404 not found
*********************************/
.error404-area{
	border-top: 1px solid #dfe0e0;
	border-bottom: 1px solid #dfe0e0;
	padding: 60px 0;
	max-width: 800px;
	margin: auto;
}
.error404__heading {
	font-size: 3.3rem;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 0;
	margin-bottom: 30px;
}
.error404-text{
    line-height: 2;
	letter-spacing: 0;
}
.error404__btn{
	margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
	.error404-area{
		border-top: 2px solid #dfe0e0;
		border-bottom: 2px solid #dfe0e0;
		padding: 45px 0 55px;
	}
	.error404-area .error404__heading{
		line-height: 1.48;
		font-size: 2.7rem;
	}
	.error404-text{
		line-height: 1.8125;
	}
	.error404__btn{
		margin: 40px auto 0;
	}
}

/*********************************
	会社情報
*********************************/
.company-overview__inner{
	display:flex;
	align-items:flex-start;
	gap:83px;
}
.company-overview-nav{
	width: 150px;
	position: sticky;
	top: 90px;
	flex-shrink: 0;
}
.company-overview-content{
	max-width: 850px;
	width: 100%;	
}
/***** 丸 *****/
.company-overview{
	position: relative;
}
.company-overview .orbit--01 .circle,
.company-overview .orbit--02 .circle{
	width: 520px;
    height: 520px;
}
.company-overview .orbit {
    top: 20%;
}
.company-overview .orbit.right {
    top: 40%;
    left: 90%;
}
.company-overview .orbit.right02 {
    top: 90%;
	left: 90%;
}
/***** 左ナビ *****/
.company-overview-nav__list{
	display:flex;
	flex-direction:column;
	border-top: 1px solid #c9caca;
}
.company-overview-nav__link{
	font-family: var(--font-shippori);
	display:flex;
	align-items:center;
	justify-content:space-between;
	transition:.3s;
	border-bottom: 1px solid #c9caca;
	padding: 17px 0 15px;
	letter-spacing: -0.01em;
	position: relative;
}
.company-overview-nav__link::after{
	position: absolute;
	content: "";
	right: 12px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #c9caca;
}
.company-overview-nav__list li:nth-child(4) .company-overview-nav__link{
	letter-spacing: -0.1em;
}
.company-overview-nav__link.is-current{
	font-weight: 700;
}
.company-overview-nav__link.is-current::after{
	background: #2b2b2b;
}
/***** 共通セクション *****/
.overview-section{
	padding-bottom: 54px;
	margin-bottom: 65px;
	border-bottom: 1px solid #c9caca;
}
.overview-section__label{
	font-family: var(--font-shippori);
	font-size: 2rem;
	line-height: 1.2;
	margin-bottom: 25px;
	padding-left: 15px;
	position: relative;
}
.overview-section__label::before{
	position: absolute;
	content: "";
	width: 2px;
	height: 20px;
	background: #262626;
	left: 0;
	top: 2px;
}
.overview-section__title{
	font-size: 3.3rem;
	line-height: 1.818;
	letter-spacing: .05em;
	color: #262626;
}
.overview-section__lead{
	font-size: 1.5rem;
	line-height: 1.7333;
	margin-bottom: 30px;
	letter-spacing: 0;
}
/***** MISSION / VISION / VALUE *****/
.overview-concept{
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.overview-concept__heading{
	font-size: 1.2rem;
	color: #c9caca;
	letter-spacing: .15em;
}
.overview-concept__title{
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.8;
	margin-bottom: 10px;
}
.overview-concept__title.vision__ttl{
	margin-bottom: 0;
}
.overview-concept__txt{
	font-size: 1.5rem;
	line-height: 1.7333;
}
.overview-concept__list{
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.overview-concept__list li{
	line-height: 2;
	padding-left: 20px;
}
.overview-concept__list li span{
	position: relative;
	font-size: 1.7rem;
	font-weight: 700;
}
.overview-concept__list li span::before{
	position: absolute;
	content: "";
	width: 5px;
	height: 2px;
	background: #2b2b2b;
	left: -19px;
	top: 10px;
}
/***** 企業理念 *****/
.concept-section{
	padding-right: 90px;
}
.concept-section .overview-section__title{
	margin-bottom: 22px;
}
/***** 会社概要 *****/
.overview-profile{
	padding-bottom: 40px;
	margin-bottom: 50px;
	border-bottom: 1px solid #c9caca;
}
.overview-profile__title{
	font-size: 3.3rem;
	margin-bottom: 35px;
	line-height: 1;
	color: #262626;
}
.overview-profile__table{
	width: 100%;
	border-collapse: collapse;
}
.overview-profile__table tr{
	border-bottom: 1px solid #c9caca;
	font-size: 1.5rem;
	line-height: 1.733;
}
.overview-profile__table tr:first-child th,
.overview-profile__table tr:first-child td{
	padding-top: 0;
}
.overview-profile__table tr:last-child{
	border-bottom: none;
}
.overview-profile__table th{
	width: 130px;
	padding: 24px 0;
	text-align: left;
	font-weight: 700;
	vertical-align: middle;
}
.overview-profile__table td{
	padding: 24px 0;
	/*line-height: 2;*/
}
.overview-profile__tel:hover{
	text-decoration: underline;
}
/***** サステナブルへの取り組み *****/
.overview-sdgs__title{
	font-size: 3.3rem;
	margin-bottom: 15px;
	color: #262626;
}
.overview-sdgs__lead{
	font-size: 1.5rem;
	line-height: 1.733;
	margin-bottom: 30px;
	letter-spacing: -.01em;
}
.overview-sdgs-item{
	margin-bottom: 35px;
	padding-left: 20px;
}
.overview-sdgs-item:last-child{
	margin-bottom: 0;
}
.overview-sdgs-item__title{
	font-size: 1.7rem;
	font-weight: 700;
	margin-bottom: 6px;
	position: relative;
}
.overview-sdgs-item__title::before{
	position: absolute;
	content: "";
	width: 5px;
	height: 2px;
	background: #2b2b2b;
	left: -19px;
	top: 15px;
}
.overview-sdgs-item__text{
	font-size: 1.5rem;
	line-height: 1.733;
	margin-bottom: 14px;
	letter-spacing: 0;
}
.overview-sdgs-item__box{
	background: #fcf8f5;
	padding: 25px 30px;
	margin-bottom: 25px;
}
.overview-sdgs-item__box ul{
	display: flex;
	flex-direction: column;
	/*gap: 10px;*/
}
.overview-sdgs-item__box ul li{
	font-size: 1.5rem;
	padding-left: 17px;
	line-height: 1.733;
	position: relative;
}
.overview-sdgs-item__box ul li::before{
	position: absolute;
	content: "";
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #2b2b2b;
	left: 0;
	top: 12px;
}
.overview-sdgs-item__icons{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.overview-sdgs-item__icons img{
	width: 96px;
	height: auto;
	display: block;
}
@media screen and (max-width: 768px) {
	.company-overview__inner{
		display:block;
	}
	.company-overview-nav{
		width:auto;
		position:static;
		margin-bottom: 50px;
		overflow-x:auto;
	}
	/***** 丸 *****/
	.company-overview .orbit--01 .circle,
	.company-overview .orbit--02 .circle{
		width: 274px;
		height: 274px;
	}
	.company-overview .orbit {
		top: 92%;
		left: 30%;
	}
	.company-overview .orbit.right {
		top: 36.5%;
		left: 140%;
	}
	.company-overview .orbit.right02 {
		display: none;
	}
	/***** 左ナビ *****/
	.company-overview-nav__list{
		display:grid;
		grid-template-columns:repeat(2,1fr);
		column-gap:24px;
		row-gap: 15px;
		border-top: none;
	}
	.company-overview-nav__link{
		font-size: 1.6rem;
		padding: 0;
		position: relative;
	}
	.company-overview-nav__link:nth-child(4){
		letter-spacing: -0.1em;
	}
	.company-overview-nav__link::after{
		content: none;
	}
	.company-overview-nav__link::before{
		position: absolute;
		content: "";
		width: 6px;
		height: 6px;
		border: 0;
		border-bottom: solid 1px #c9caca;
		border-right: solid 1px #c9caca;
		transform: rotate(45deg);
		top: 0;
		right: 1px;
		bottom: 0;
		margin: auto;
	}
	.company-overview-nav__link.is-current{
		font-weight: 500;
	}
	/***** 共通セクション *****/
	.overview-section{
		padding-bottom: 54px;
		margin-bottom: 54px;
	}
	.overview-section__label{
		font-size: 1.6rem;
		margin-bottom: 40px;
		padding-left: 8px;
	}
	.overview-section__label::before{
		width: 1px;
		height: 15px;
	}
	.overview-section__title{
		font-size: 2.7rem;
		line-height: 1.5;
	}
	.overview-section__lead{
		font-size: 1.6rem;
		line-height: 1.8125;
		margin-bottom: 40px;
	}
	/***** MISSION / VISION / VALUE *****/
	.overview-concept{
		gap: 20px;
	}
	.overview-concept__heading{
		font-size: 1.4rem;
		letter-spacing: .1em;
		margin-bottom: 15px;
	}
	.overview-concept__title{
		font-size: 2rem;
		line-height: 1.45;
	}
	.overview-concept__title.vision__ttl{
		margin-bottom: 0;
	}
	.overview-concept__txt{
		font-size: 1.6rem;
		line-height: 1.8125;
	}
	.overview-concept__list{
		gap: 30px;
	}
	.overview-concept__list li{
		line-height: 1.8125;
	}
	.overview-concept__list li span{
		font-size: 2rem;
		line-height: 1.4;
	}
	.overview-concept__list li span::before{
		left: -19px;
		top: 10px;
	}
	/***** 企業理念 *****/
	.concept-section{
		padding-right: 0;
	}
	.concept-section .overview-section__title{
		margin-bottom: 35px;
	}
	/***** 会社概要 *****/
	.overview-profile{
		padding-bottom: 40px;
		margin-bottom: 50px;
		border-bottom: 1px solid #c9caca;
	}
	.overview-profile__title{
		font-size: 2.7rem;
		margin-bottom: 35px;
	}
	.overview-profile__table tr{
		font-size: 1.6rem;
		line-height: 1.8125;
		display: flex;
		flex-direction: column;
	}
	.overview-profile__table th{
		width: 100%;
		padding: 15px 0 6px;
	}
	.overview-profile__table td{
		width: 100%;
		padding: 0 0 13px;
	}
	/***** サステナブルへの取り組み *****/
	.overview-sdgs__title{
		font-size: 2.7rem;
		line-height: 1.5;
		margin-bottom: 35px;
	}
	.overview-sdgs__lead{
		font-size: 1.6rem;
		line-height: 1.8125;
		/*margin-bottom: 30px;*/
	}
	.overview-sdgs-item{
		margin-bottom: 38px;
		padding-left: 15px;
	}
	.overview-sdgs-item__title{
		font-size: 1.8rem;
		line-height: 1.68;
		margin-bottom: 6px;
	}
	.overview-sdgs-item__title::before{
		left: -15px;
		top: 13px;
	}
	.overview-sdgs-item__text{
		font-size: 1.6rem;
		line-height: 1.8125;
	}
	.overview-sdgs-item__box{
		padding: 20px;
	}
	.overview-sdgs-item__box ul li{
		font-size: 1.6rem;
		line-height: 1.8125;
		padding-left: 10px;
	}
	.overview-sdgs-item__icons{
		gap: 5px;
	}
	.overview-sdgs-item__icons img{
		width: 60px;
	}
}

/*********************************
	こだわり
*********************************/
.commitment-orbit {
  position: relative;
}
.commitment-orbit .circle {
  width: 872px;
  height: 872px;
}
.commitment-orbit .orbit {
  width: 872px;
  height: 872px;
  margin: 0;
}
.commitment-orbit .orbit.right {
  display: none;
}
@media screen and (max-width: 768px) {
  .commitment-orbit .orbit.right {
    display: block;
    top: 370px;
    left: calc(100% - 40px);
    left: 70%;
  }
}
.commitment-orbit .orbit.right2 {
  display: none;
}
.commitment-orbit .orbit.left {
  top: 13%;
  left: -390px;
}

@media screen and (max-width: 768px) {
  .commitment-orbit .circle {
    width: 436px;
    height: 436px;
  }
  .commitment-orbit .orbit {
    width: 436px;
    height: 436px;
  }
  .commitment-orbit .orbit.right {
    top: 5.3333333333vw;
    left: calc(100% - 130px);
  }
  .commitment-orbit .orbit.left {
    top: auto;
    bottom: 250px;
    left: -187px;
    width: 374px;
    height: 374px;
  }
  .commitment-orbit .orbit.left .circle {
    width: 374px;
    height: 374px;
  }
}
.commitment-block {
  display: grid;
  grid-template-columns: minmax(100px, 280px) auto minmax(100px, 645px);
  -moz-column-gap: 60px;
       column-gap: 60px;
  grid-template-areas: "title body image";
  align-items: flex-start;
  max-width: 1440px;
  margin-inline: auto;
  position: relative;
}
.commitment-block__title-area {
  grid-area: title;
  display: flex;
  justify-content: center;
  padding: 0 0 0 190px;
}
.commitment-block__body {
  grid-area: body;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  max-width: 378px;
  margin-top: -30px;
}
.commitment-block__text {
  font-size: 1.5rem;
}
.commitment-block__text + .commitment-block__text {
  margin-top: 2em;
}
.commitment-block__image {
  grid-area: image;
  position: relative;
}
.commitment-block__image-item01 {
  position: absolute;
  top: calc(100% - 30px);
  right: 0;
  width: 201px;
}
.commitment-block__title {
  margin-bottom: 30px;
  writing-mode: vertical-rl;
  font-size: 3.3rem;
  line-height: 1.8484848485;
}

@media screen and (max-width: 768px) {
  .commitment-block {
    padding-inline: 50px;
    grid-template-columns: 1fr auto;
    grid-template-areas: "title image" "body body";
    -moz-column-gap: 17.3333333333vw;
         column-gap: 17.3333333333vw;
  }
  .commitment-block__title-area {
    margin-left: -4.6666666667vw;
    padding-left: 0;
  }
  .commitment-block__body {
    max-width: 100%;
    margin-top: 3.3333333333vw;
  }
  .commitment-block__text {
    font-size: 1.6rem;
    line-height: 1.8125;
    letter-spacing: 0;
  }
  .commitment-block__text + .commitment-block__text {
    margin-top: 1.8em;
  }
  .commitment-block__image {
    width: 52vw;
    margin-right: -50px;
    margin-left: auto;
  }
  .commitment-block__image-item01 {
    top: calc(100% - 2.6666666667vw);
    right: 0;
    width: 17.6vw;
  }
  .commitment-block__title {
    font-size: 2.7rem;
    line-height: 1.5;
  }
}
.commitment-block02 {
  display: flex;
  -moz-column-gap: 75px;
       column-gap: 75px;
  align-items: flex-start;
  max-width: 1440px;
  margin-inline: auto;
  margin: 160px auto 0;
}
.commitment-block02 > * {
  flex: 1;
}
.commitment-block02__image--01 {
  position: relative;
}
.commitment-block02__image--01 img:nth-of-type(1) {
  transform: translateX(35px);
  width: 380px;
  margin-inline: auto;
}
.commitment-block02__image-item01 {
  position: absolute;
  top: calc(50% - 20px);
  left: 6.25%;
  width: 195px;
  display: block;
  margin: 0 0 0 auto;
}
.commitment-block02__image--02 {
  display: block;
  margin-top: 160px;
}
.commitment-block02__image--02 img {
  transform: translateX(16px);
  width: 531px;
}

@media screen and (max-width: 768px) {
  .commitment-block02 {
    margin: 50px auto 0;
    padding-inline: 50px;
    -moz-column-gap: 5.3333333333vw;
         column-gap: 5.3333333333vw;
  }
  .commitment-block02 > * {
    flex: none;
  }
  .commitment-block02__inner {
    grid-template-columns: 1fr;
  }
  .commitment-block02__image--01 img:nth-of-type(1) {
    transform: none;
    width: 33.3333333333vw;
    margin: 0;
  }
  .commitment-block02__image-item01 {
    position: absolute;
    top: 13.3333333333vw;
    left: -12vw;
    width: 20vw;
    display: block;
  }
  .commitment-block02__image--02 {
    margin: 10.1333333333vw auto 0;
  }
  .commitment-block02__image--02 img {
    transform: none;
    width: 34.5333333333vw;
  }
}
.commitment-block03 {
  display: grid;
  grid-template-columns: minmax(100px, 645px) minmax(30px, 62px) minmax(100px, 435px);
  grid-template-areas: "image title body";
  -moz-column-gap: 55px;
       column-gap: 55px;
  max-width: 1440px;
  margin: 190px auto 200px;
}
.commitment-block03__image {
  grid-area: image;
  max-width: 640px;
  margin: 0 auto;
}
.commitment-block03__content {
  grid-area: title;
}
.commitment-block03__title {
  margin-bottom: 30px;
  writing-mode: vertical-rl;
  font-size: 3.3rem;
  line-height: 1.8484848485;
}
.commitment-block03__body {
  grid-area: body;
  margin-top: 60px;
}
.commitment-block03__text {
  font-size: 1.5rem;
}
.commitment-block03__text + .commitment-block03__text {
  margin-top: 2em;
}

@media screen and (max-width: 768px) {
  .commitment-block03 {
    grid-template-columns: 1fr auto;
    grid-template-areas: "title image" "body body";
    -moz-column-gap: 16vw;
         column-gap: 16vw;
    margin: 14.6666666667vw auto 12.6666666667vw;
    padding-inline: 50px;
  }
  .commitment-block03__image {
    max-width: 640px;
    margin: 0vw auto 0;
    margin-right: -50px;
  }
  .commitment-block03__title {
    margin-bottom: 0;
    margin-left: -10px;
    font-size: 2.7rem;
    line-height: 1.5;
  }
  .commitment-block03__body {
    margin-top: 12vw;
  }
  .commitment-block03__text {
    font-size: 1.6rem;
    letter-spacing: 0;
    line-height: 1.8125;
  }
  .commitment-block03__text + .commitment-block03__text {
    margin-top: 1.8em;
  }
}
.commitment-story {
  position: relative;
  overflow: hidden;
  color: #fff;
  min-height: 880px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto -200px;
}
.commitment-story__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.commitment-story__video::after {
	position: absolute;
	content: "";
	inset: 0;
	background: rgba(30, 30, 30, 0.6);
}
.commitment-story__video video,
.commitment-story__video img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.commitment-story__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}
.commitment-story__title {
  font-size: 2.6rem;
  line-height: 1.7692307692;
  margin-bottom: 20px;
}
.commitment-story__content {
  padding: 30px 0 30px 14px;
}
.commitment-story__text {
  letter-spacing: normal;
  font-size: 1.5rem;
}
.commitment-story__text + .commitment-story__text {
  margin-top: 2em;
}

@media screen and (max-width: 768px) {
  .commitment-story {
    min-height: 500px;
    margin: 0;
    margin-bottom: -80px;
  }
  .commitment-story__title {
    margin-bottom: 9.3333333333vw;
    font-size: 2.3rem;
    line-height: 1.7608695652;
  }
  .commitment-story__video {
    /*position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;*/
  }
  .commitment-story__content {
    width: 100%;
    padding: 0;
  }
  .commitment-story__inner {
    flex-direction: column;
    padding: 50px;
    padding-block: 19.3333333333vw 20vw;
  }
  .commitment-story__text {
    font-size: 1.6rem;
    line-height: 1.8125;
  }
  .commitment-story__text + .commitment-story__text {
    margin-top: 1.8em;
  }
}

/*********************************
	⽇進製菓について・代表挨拶
*********************************/
.company-about-orbit {
  position: relative;
}
.company-about-orbit .circle {
  width: 872px;
  height: 872px;
}
.company-about-orbit .orbit {
  width: 872px;
  height: 872px;
  margin: 0;
}
.company-about-orbit .orbit.right {
  top: 370px;
  left: calc(100% - 40px);
  left: 70%;
}
.company-about-orbit .orbit.right2 {
  display: none;
}
.company-about-orbit .orbit.left {
  top: calc(100% - 1000px);
  left: -390px;
}

@media screen and (max-width: 768px) {
  .company-about-orbit .circle {
    width: 436px;
    height: 436px;
  }
  .company-about-orbit .orbit {
    width: 436px;
    height: 436px;
  }
  .company-about-orbit .orbit.right {
    top: 5.3333333333vw;
    left: calc(100% - 130px);
  }
  .company-about-orbit .orbit.right2 {
    display: block;
    top: 61.7333333333vw;
    left: calc(100% - 180px);
    width: 374px;
    height: 374px;
  }
  .company-about-orbit .orbit.right2 .circle {
    width: 374px;
    height: 374px;
  }
  .company-about-orbit .orbit.left {
    top: auto;
    bottom: 250px;
    left: -187px;
    width: 374px;
    height: 374px;
  }
  .company-about-orbit .orbit.left .circle {
    width: 374px;
    height: 374px;
  }
}
.company-about-block {
  display: grid;
  grid-template-columns: minmax(100px, 562px) minmax(100px, 285px) auto;
  column-gap: 20px;
  max-width: 1440px;
  margin-inline: auto;
  padding: 0 30px 0 0;
  position: relative;
}
.company-about-block__text {
  font-size: 1.5rem;
}
.company-about-block__text + .company-about-block__text {
  margin-top: 2em;
}
.company-about-block__title {
  font-size: 2.6rem;
  line-height: 1.75;
  margin-bottom: 25px;
}
.company-about-block__title--vertical {
  writing-mode: vertical-rl;
  font-size: 3.3rem;
  line-height: 1.85;
}
.company-about-block__content {
  display: flex;
  justify-content: center;
  padding: 50px 0 0 50px;
}
.company-about-block__content--02 {
  padding-top: 150px;
}
.company-about-block__en {
  font-family: var(--font-en);
  margin-bottom: 40px;
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 768px) {
  .company-about-block {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    column-gap: 13.3333333333vw;
  }
  .company-about-block__text {
    font-size: 1.6rem;
    line-height: 1.8125;
  }
  .company-about-block__image {
    width: 45.3333333333vw;
    margin-left: auto;
  }
  .company-about-block__title {
    font-size: 2.3rem;
    line-height: 1.7608695652;
    margin-bottom: 35px;
  }
  .company-about-block__title--vertical {
    font-size: 2.7rem;
    line-height: 1.5;
    margin-left: auto;
  }
  .company-about-block__content {
    flex-grow: 1;
    padding: 0;
    order: -1;
  }
  .company-about-block__content--02 {
    padding: 50px 50px 0;
  }
  .company-about-block__en {
    margin-bottom: 40px;
  }
}
.company-about-block02 {
  margin: 0 auto 0;
}
.company-about-block02__inner {
  display: grid;
  grid-template-columns: auto minmax(100px, 442px);
  column-gap: 60px;
  margin-inline: auto;
}
.company-about-block02__image--02 {
  max-width: 1560px;
  margin: 0 auto 100px;
}
.company-about-block02__image--02 img {
  width: 242px;
  display: block;
  margin: -60px 8.3333333333% 0 auto;
}
.company-about-block02__content {
  padding: 0 0 0 60px;
}
.company-about-block02__content--02 {
  padding-top: 150px;
}

@media screen and (max-width: 768px) {
  .company-about-block02 {
    margin: 50px auto 0;
  }
  .company-about-block02__inner {
    grid-template-columns: 1fr;
  }
  .company-about-block02__image {
    order: -1;
    width: 33.3333333333vw;
    margin-top: -12vw;
  }
  .company-about-block02__image--02 {
    margin: 0 auto 0;
    padding: 0 50px;
  }
  .company-about-block02__image--02 img {
    width: 33.3333333333vw;
    margin: 0 0 0 auto;
  }
  .company-about-block02__content {
    padding: 50px 0 0;
  }
}
.company-about-block03 {
  margin: 198px auto 0;
  padding: 0 0 260px;
}
.company-about-block03__inner {
  max-width: 1170px;
  display: grid;
  grid-template-columns: minmax(100px, 510px) auto;
  column-gap: 14.9572649573%;
  margin-inline: auto;
}
.company-about-block03__content {
  padding: 20px 14.4329896907% 0 0;
}

@media screen and (max-width: 768px) {
  .company-about-block03 {
    margin: 50px auto 0;
    padding: 0 0 50px;
  }
  .company-about-block03__inner {
    grid-template-columns: 1fr;
  }
  .company-about-block03__image img {
    width: 45.3333333333vw;
    margin-left: auto;
  }
  .company-about-block03__content {
    padding: 0 30px 0;
    margin-top: -12px;
  }
}
.company-story {
  color: #fff;
  background: url("../img/company/bg_about.jpg") no-repeat center;
  background-size: cover;
  min-height: 890px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto 200px;
	position: relative;
  overflow: hidden;
}
.company-story__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.company-story__video::after {
	position: absolute;
	content: "";
	inset: 0;
	background: rgba(30, 30, 30, 0.6);
}
.company-story__video video,
.company-story__video img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.company-story__en {
  font-family: var(--font-en);
  margin-bottom: 50px;
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: 0.08em;
  font-weight: bold;
}
.company-story__title {
  font-size: 2.6rem;
  line-height: 1.7692307692;
  margin-bottom: 20px;
}
.company-story__content {
  width: 50%;
  margin-left: auto;
  padding: 30px 0 30px 14px;
}
.company-story__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}
.company-story__text {
  letter-spacing: normal;
  font-size: 1.5rem;
}
.company-story__text + .company-story__text {
  margin-top: 2em;
}

@media screen and (max-width: 768px) {
  .company-story {
    min-height: 500px;
    margin: 0 auto 50px;
  }
  .company-story__en {
    margin-bottom: 40px;
  }
  .company-story__title {
    font-size: 2.3rem;
    line-height: 1.7608695652;
    margin-bottom: 35px;
  }
  .company-story__content {
    width: 100%;
    padding: 0;
  }
  .company-story__inner {
    flex-direction: column;
    padding: 50px;
  }
  .company-story__text {
    font-size: 1.6rem;
    line-height: 1.8125;
  }
}
.feature-cards__inner {
  max-width: 1060px;
  padding: 0 30px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 40px;
}

.feature-card {
  position: relative;
  aspect-ratio: 480/740;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  justify-content: flex-end;
  color: #fff;
  background: #fff;
  display: grid;
  grid-template-rows: 1fr auto;
  display: flex;
  flex-direction: column;
}
.feature-card:hover .feature-card__image img {
  transform: scale(1.08);
}
.feature-card__image {
  position: absolute;
  inset: 0;
}
.feature-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.feature-card__numberWrap {
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-shippori);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 20px;
  z-index: 2;
}
.feature-card__number {
  font-size: 3.6rem;
  line-height: 1;
}
.feature-card__en {
  padding-top: 0.2em;
  font-size: 1.2rem;
  line-height: 1.2;
}
.feature-card__content {
  position: relative;
  padding: 50px 45px 45px;
  z-index: 2;
}
.feature-card__content::before {
  content: "";
  position: absolute;
  display: block;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 5%, rgb(43, 43, 43) 100%);
  pointer-events: none;
}
.feature-card__title {
  font-size: 2.8rem;
  line-height: 1.3;
  font-weight: 400;
  filter: drop-shadow(5px 5px 4px rgba(0, 0, 0, 0.45));
  margin-bottom: 10px;
  position: relative;
}
.feature-card__text {
  font-size: 1.5rem;
  letter-spacing: normal;
  margin-bottom: 30px;
  position: relative;
}
.feature-card .c-btn {
  max-width: 100%;
  margin-top: auto;
  position: relative;
}

@media screen and (max-width: 768px) {
  .feature-cards__inner {
    grid-template-columns: 1fr;
    padding: 0 13.3333333333vw;
  }
  .feature-cards__inner > *:nth-child(2), .feature-cards__inner > *:nth-child(3) {
    aspect-ratio: 550/895;
  }
  .feature-card {
    aspect-ratio: 550/831;
    justify-content: flex-start;
  }
  .feature-card::after {
    content: "";
    position: absolute;
    display: block;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 5%, rgb(43, 43, 43) 100%);
    pointer-events: none;
  }
  .feature-card__numberWrap {
    padding: 2.6666666667vw;
  }
  .feature-card__content {
    padding: 24vw 8vw 14.6666666667vw;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .feature-card__content::before {
    display: none;
  }
  .feature-card__number {
    font-size: 7.2vw;
  }
  .feature-card__en {
    font-size: 3.2vw;
  }
  .feature-card__title {
    font-size: 6.1333333333vw;
    margin-bottom: 13.3333333333vw;
  }
  .feature-card__text {
    font-size: 4.2666666667vw;
    line-height: 1.8125;
  }
}
.company-message {
  overflow: hidden;
  padding-bottom: 200px;
}
.company-message__title {
  font-size: 4rem;
  line-height: 1.7632625;
  margin-bottom: 90px;
}
.company-message__text {
  font-size: 1.5rem;
  letter-spacing: normal;
}
.company-message__text + .company-message__text {
  margin-top: 2em;
}
.company-message__signature {
  font-size: 1.5rem;
  line-height: 1.6666666667;
}
.company-message__inner {
  max-width: 783px;
  position: relative;
}
.company-message__inner .circle {
  width: 630px;
  height: 630px;
}
.company-message__inner .orbit {
  width: 630px;
  height: 630px;
  margin: 0;
}
.company-message__inner .orbit.right {
  top: 60px;
  left: calc(100% - 40px);
}
.company-message__inner .orbit.left {
  top: calc(100% - 40px);
  left: -390px;
  animation-name: orbitRight;
}
.company-message + .common-banner {
  padding-top: 0;
}

@media screen and (max-width: 768px) {
  .company-message {
    padding-bottom: 80px;
  }
  .company-message__title {
    font-size: 2.7rem;
    line-height: 1.5;
    margin-bottom: 40px;
  }
  .company-message__text {
    font-size: 1.6rem;
    line-height: 1.8125;
  }
  .company-message__signature {
    font-size: 1.4rem;
    line-height: 1.1428571429;
  }
  .company-message__inner .circle {
    width: 374px;
    height: 374px;
  }
  .company-message__inner .orbit {
    width: 374px;
    height: 374px;
  }
  .company-message__inner .orbit.right {
    top: 275px;
    left: calc(100% - 150px);
  }
  .company-message__inner .orbit.left {
    display: none;
  }
}
.signature-texts {
  font-family: var(--font-shippori);
  width: fit-content;
  margin: 90px 0 0 auto;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.signature-texts__text {
  font-size: 1.5rem;
  line-height: 1.6666666667;
}
.signature-texts__name {
  font-size: 2.8rem;
  line-height: 1.0714285714;
}

@media screen and (max-width: 768px) {
  .signature-texts {
    margin-top: 40px;
    text-align: right;
  }
  .signature-texts__text {
    font-size: 1.4rem;
    line-height: 1.1428571429;
  }
  .signature-texts__name {
    font-size: 2.4rem;
  }
}

/*********************************
	OEM製造・販売
*********************************/
.candy-oem-intro {
  margin: auto;
  max-width: 1440px;
  position: relative;
}
.candy-oem-intro__inner {
  padding: 0 30px;
  width: 1060px;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 10px;
}
.candy-oem-intro__title {
  width: 50%;
  font-size: 3.3rem;
  margin-bottom: 27px;
  padding-right: 35px;
}
.candy-oem-intro__text {
  width: 50%;
  font-size: 1.5rem;
  line-height: calc(30 / 15);
  padding-right: 35px;
}

@media screen and (max-width: 1060px) {
  .candy-oem-intro__inner {
    width: 100%;
    padding: 0 30px;
  }
}
@media screen and (max-width: 768px) {
  .candy-oem-intro {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
  }
  .candy-oem-intro__inner {
    position: relative;
    width: 100%;
    padding: 0 50px;
    margin-top: 36px;
  }
  .candy-oem-intro__title {
    width: 100%;
    font-size: 2.7rem;
    margin-bottom: 30px;
  }
  .candy-oem-intro__text {
    width: 100%;
    padding-right: 0;
    font-size: 1.6rem;
    line-height: calc(58 / 32);
  }
}
.candy-oem-commitment {
  position: relative;
  max-width: 1440px;
  margin: 197px auto 0;
}
.candy-oem-commitment__inner {
  margin: 0 auto;
  margin-right: 0;
  display: flex;
  justify-content: flex-end;
  padding-left: 30px;
}
.candy-oem-commitment__title {
  margin-bottom: 27px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  margin-top: 10px;
  margin-right: calc(70 / 1440 * 100vw);
}
.candy-oem-commitment__title > * {
  font-size: 3.3rem;
  line-height: calc(46 / 26);
}
.candy-oem-commitment__content {
  max-width: 454px;
  padding-top: 62px;
  padding-right: 75px;
}
.candy-oem-commitment__content > * {
  font-size: 1.5rem;
  line-height: calc(30 / 15);
}
.candy-oem-commitment__content > * + * {
  margin-top: 2em;
}
.candy-oem-commitment__image {
  width: 100%;
  width: min(calc(645 / 1440 * 100vw), 645px);
  flex-shrink: 0;
}

@media screen and (max-width: 1060px) {
  .candy-oem-commitment {
    margin-top: 100px;
  }
}
@media screen and (max-width: 768px) {
  .candy-oem-commitment {
    margin-top: 42px;
    width: 100%;
  }
  .candy-oem-commitment__inner {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: "image" "title" "content";
    padding-left: 0;
  }
  .candy-oem-commitment__title {
    grid-area: title;
    writing-mode: horizontal-tb;
    text-orientation: initial;
    margin: 40px 0 0;
    padding: 0 50px;
  }
  .candy-oem-commitment__title > * {
    font-size: 2.7rem;
    letter-spacing: -.02em;
  }
  .candy-oem-commitment__content {
    grid-area: content;
    width: 100%;
    max-width: none;
    padding: 32px 50px 0;
  }
  .candy-oem-commitment__content > * {
    font-size: 1.6rem;
    line-height: calc(58 / 32);
  }
  .candy-oem-commitment__image {
    grid-area: image;
    width: 100%;
  }
}
.candy-oem-spec {
  margin-top: 200px;
  padding: 182px 0 200px;
  position: relative;
  background: url("../img/candy-oem/bg.jpg") center center/cover no-repeat;
  background-attachment: fixed;
  color: #fff;
}
.candy-oem-spec__flex {
  display: flex;
  align-items: flex-start;
}
.candy-oem-spec__text-wrap {
  width: 50%;
  padding-right: min(calc(60 / 1440 * 100vw), 60px);
}
.candy-oem-spec__title {
  font-size: 3.3rem;
  margin-bottom: 22px;
}
.candy-oem-spec__content > * {
  font-size: 1.5rem;
  line-height: calc(30 / 15);
  font-weight: 500;
}
.candy-oem-spec__content > * + * {
  margin-top: 2em;
}
.candy-oem-spec__table {
  width: 50%;
  padding: 11px 10px;
  position: relative;
  margin-top: 16px;
}
.candy-oem-spec__table::before, .candy-oem-spec__table::after {
  content: "";
  border: 1px solid #c9caca;
  width: 100%;
  height: 38px;
  position: absolute;
  margin: auto;
  left: 0;
}
.candy-oem-spec__table::before {
  top: 0;
  border-bottom: 0;
}
.candy-oem-spec__table::after {
  bottom: 0;
  border-top: 0;
}
.candy-oem-spec__table-item {
  width: 100%;
}
.candy-oem-spec__table-row > * {
  vertical-align: middle;
}
.candy-oem-spec__table-row:not(:first-child) {
  border-top: 1px solid #c9caca;
}
.candy-oem-spec__table-header {
  padding: 1.1em 1em 1.1em 1.4em;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  width: min(calc(176 / 1060 * 100vw), 176px);
  font-size: 1.5rem;
  line-height: calc(30 / 15);
  font-weight: 500;
  text-align: left;
  letter-spacing: -.04em;
}
.candy-oem-spec__table-data {
  color: #fff;
  padding: .5em .6em .5em 1.3em;
  font-size: 1.5rem;
  line-height: calc(20 / 15);
  font-weight: 500;
  text-align: left;
  white-space: nowrap;
}
.candy-oem-spec__image-wrap {
  display: flex;
  gap: 18px;
  margin-top: 100px;
}
.candy-oem-spec__image-itemFig {
	width: 100%;
	font-size: 0;
}
.candy-oem-spec__image-itemImg {
	width: 100%;
	height: auto;
}
.candy-oem-spec__image-itemCaption {
	font-size: 1.2rem;
	line-height: 1.5;
	margin-top: 10px;
}
@media screen and (max-width: 1060px) {
  .candy-oem-spec {
    margin-top: 100px;
    padding: 100px 0;
  }
  .candy-oem-spec__table-data {
    white-space: normal;
  }
}
@media screen and (max-width: 768px) {
  .candy-oem-spec {
    margin-top: 73px;
    padding: 70px 0;
  }
  .candy-oem-spec__flex {
    flex-direction: column;
  }
  .candy-oem-spec__text-wrap {
    width: 100%;
  }
  .candy-oem-spec__title {
    font-size: 2.7rem;
    margin-bottom: 27px;
  }
  .candy-oem-spec__content > * {
    font-size: 1.6rem;
    line-height: calc(58 / 32);
  }
  .candy-oem-spec__table {
    width: 100%;
    padding: 2px 6px;
    margin-top: 30px;
  }
  .candy-oem-spec__table::before, .candy-oem-spec__table::after {
    height: 22px;
  }
  .candy-oem-spec__table-row {
    display: flex;
    flex-direction: column;
  }
  .candy-oem-spec__table-header {
    margin-top: 20px;
    width: 100%;
    padding: .4em 1em .35em;
    line-height: 1;
    font-size: 1.6rem;
  }
  .candy-oem-spec__table-data {
    padding: .5em 1em .6em;
    margin-bottom: .2em;
    font-size: 1.6rem;
    line-height: calc(58 / 32);
  }
  .candy-oem-spec__image-wrap {
    margin-top: 30px;
    gap: 4px;
  }
	.candy-oem-spec__image-itemCaption {
		font-size: 1rem;
		line-height: 1.3;
		margin-top: 7px;
	}
}
.candy-oem-flow {
  margin-top: 182px;
}
.candy-oem-flow__title {
  font-size: 3.3rem;
  margin-bottom: 50px;
}
.candy-oem-flow__list {
  display: flex;
  flex-wrap: wrap;
  gap: 56px min(calc(23 / 1000 * 100vw), 23px);
}
.candy-oem-flow__item {
  position: relative;
  width: calc((100% - 46px) / 3);
  padding-right: min(calc(57 / 1000 * 100vw), 57px);
}
.candy-oem-flow__item::after {
  content: "";
  display: block;
  width: min(calc(34 / 1000 * 100vw), 34px);
  height: min(calc(34 / 1000 * 100vw), 34px);
  border-radius: 50%;
  background-color: #96948b;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.candy-oem-flow__item::before {
  content: "";
  display: block;
  width: min(calc(10 / 1000 * 100vw), 10px);
  height: min(calc(10 / 1000 * 100vw), 10px);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 0;
  right: min(calc(14 / 1000 * 100vw), 14px);
  bottom: 0;
  margin: auto;
  transform: rotate(45deg);
  z-index: 1;
}
.candy-oem-flow__item:nth-child(n+4) {
  padding-right: 0;
  padding-left: min(calc(57 / 1000 * 100vw), 57px);
}
.candy-oem-flow__item:nth-child(n+4)::after {
  left: 0;
  right: inherit;
}
.candy-oem-flow__item:nth-child(n+4)::before {
  left: min(calc(10 / 1000 * 100vw), 10px);
  right: inherit;
}
.candy-oem-flow__item-inner {
  border: 1px solid #96948b;
  padding: 5px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.candy-oem-flow__step {
  background-color: #96948b;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: relative;
  line-height: 1;
  padding: 6px;
}
.candy-oem-flow__step .step {
  font-size: 1rem;
  font-weight: 800;
  margin-top: 1px;
}
.candy-oem-flow__step .number {
  font-size: 2rem;
  font-weight: 800;
}
.candy-oem-flow__step::after {
  content: "";
  position: absolute;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background-color: #96948b;
}
.candy-oem-flow__content {
  padding: 35px 0 24px;
  text-align: center;
}
.candy-oem-flow__content-title {
  font-size: 2rem;
  line-height: calc(30 / 20);
  font-weight: 800;
  font-family: var(--font-yugothic);
  margin-bottom: 24px;
}
.candy-oem-flow__image {
  width: min(calc(100 / 1000 * 100vw), 100px);
  margin: auto;
}
.candy-oem-flow__item:first-child .candy-oem-flow__image {
  width: min(calc(115 / 1000 * 100vw), 115px);
}
.candy-oem-flow__item:nth-child(2) .candy-oem-flow__image {
  width: min(calc(106 / 1000 * 100vw), 106px);
}
.candy-oem-flow__item:nth-child(3) .candy-oem-flow__content-title {
  margin-bottom: 21px;
}
.candy-oem-flow__item:nth-child(3) .candy-oem-flow__image {
  width: min(calc(100 / 1000 * 100vw), 100px);
}
.candy-oem-flow__item:nth-child(4) .candy-oem-flow__image {
  width: min(calc(114 / 1000 * 100vw), 114px);
}
.candy-oem-flow__item:nth-child(5) .candy-oem-flow__image {
  width: min(calc(111 / 1000 * 100vw), 111px);
}
.candy-oem-flow__item:nth-child(6) .candy-oem-flow__image {
  width: min(calc(118 / 1000 * 100vw), 118px);
}

@media screen and (max-width: 1060px) {
  .candy-oem-flow {
    margin-top: 80px;
  }
}
@media screen and (max-width: 768px) {
  .candy-oem-flow {
    margin-top: 70px;
  }
  .candy-oem-flow__title {
    font-size: 2.7rem;
    margin-bottom: 40px;
    line-height: calc(81 / 54);
  }
  .candy-oem-flow__inner {
    padding: 0;
  }
  .candy-oem-flow__scroll-box {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px;
  }
  .candy-oem-flow__scroll-box::-webkit-scrollbar {
    height: 8px;
  }
  .candy-oem-flow__scroll-box::-webkit-scrollbar-track {
    background: #efefef;
    border-radius: 999px;
    margin: 0 50px;
  }
  .candy-oem-flow__scroll-box::-webkit-scrollbar-thumb {
    background: #96948b;
    border-radius: 999px;
  }
  .candy-oem-flow__list {
    flex-wrap: nowrap;
    gap: 0 calc(74 / 750 * 100vw);
    width: max-content;
    padding: 0 50px;
  }
  .candy-oem-flow__item {
    width: calc(260 / 750 * 100vw);
    padding-right: 0;
  }
  .candy-oem-flow__item::after {
    width: calc(34 / 750 * 100vw);
    height: calc(34 / 750 * 100vw);
    right: calc(-54 / 750 * 100vw);
  }
  .candy-oem-flow__item::before {
    border-width: 1px;
    width: calc(10 / 750 * 100vw);
    height: calc(10 / 750 * 100vw);
    right: calc(-40 / 750 * 100vw);
  }
  .candy-oem-flow__item:nth-child(n+4) {
    padding-left: 0;
    padding-right: 0;
  }
  .candy-oem-flow__item:nth-child(n+4)::after {
    left: auto;
    right: calc(-54 / 750 * 100vw);
  }
  .candy-oem-flow__item:nth-child(n+4)::before {
    left: auto;
    right: calc(-40 / 750 * 100vw);
  }
  .candy-oem-flow__item:last-child::after, .candy-oem-flow__item:last-child::before {
    display: none;
  }
  .candy-oem-flow__item-inner {
    padding: 2px;
  }
  .candy-oem-flow__step {
    padding: 3px 5px 2px;
    gap: 2px;
  }
  .candy-oem-flow__step .step {
    font-size: min(calc(24 / 750 * 100vw), 1.2rem);
    margin-top: 3px;
  }
  .candy-oem-flow__step .number {
    font-size: min(calc(36 / 750 * 100vw), 1.8rem);
  }
  .candy-oem-flow__step::after {
    bottom: -3px;
  }
  .candy-oem-flow__content {
    padding: 9px 0;
  }
  .candy-oem-flow__content-title {
    font-size: min(calc(31 / 750 * 100vw), 1.55rem);
    margin-bottom: 8px;
  }
  .candy-oem-flow__image {
    width: calc(120 / 750 * 100vw);
  }
  .candy-oem-flow__item:first-child .candy-oem-flow__image {
    width: calc(116 / 750 * 100vw);
  }
  .candy-oem-flow__item:nth-child(2) .candy-oem-flow__image {
    width: calc(104 / 750 * 100vw);
  }
  .candy-oem-flow__item:nth-child(3) .candy-oem-flow__content-title {
    margin-bottom: 3px;
  }
  .candy-oem-flow__item:nth-child(3) .candy-oem-flow__image {
    width: calc(100 / 750 * 100vw);
  }
  .candy-oem-flow__item:nth-child(4) .candy-oem-flow__image {
    width: calc(116 / 750 * 100vw);
  }
  .candy-oem-flow__item:nth-child(5) .candy-oem-flow__image {
    width: calc(111 / 750 * 100vw);
  }
  .candy-oem-flow__item:nth-child(6) .candy-oem-flow__image {
    width: calc(116 / 750 * 100vw);
  }
}
.candy-oem-faq {
  margin-top: 200px;
  margin-bottom: -200px;
  padding: 182px 0 200px;
  background-color: #fcf8f5;
}
.candy-oem-faq__title {
  font-size: 3.3rem;
  margin-bottom: 55px;
}
.candy-oem-faq__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.candy-oem-faq__item {
  background-color: #edeae8;
  padding: 24px 30px 30px;
}
.candy-oem-faq__question {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}
.candy-oem-faq__question > * {
  display: inline-block;
  font-size: 2rem;
  line-height: calc(30 / 20);
  font-weight: 500;
  font-family: var(--font-yugothic);
}
.candy-oem-faq__question::before {
  content: "Q";
  display: inline-block;
  font-size: 2.6rem;
  line-height: 1;
  padding: 5px 9px 7px 8px;
  background-color: #96948b;
  color: #fff;
  margin-right: 19px;
  font-family: var(--font-shippori);
  /* position: absolute;
  top: 0;
  left: 0;
  margin: auto; */
}
.candy-oem-faq__answer {
  background-color: #fff;
  padding: 14px 20px 16px;
  font-size: 1.5rem;
  line-height: calc(25 / 15);
}

@media screen and (max-width: 1060px) {
  .candy-oem-faq {
    margin-top: 100px;
    margin-bottom: -80px;
    padding: 80px 0;
  }
}
@media screen and (max-width: 768px) {
  .candy-oem-faq {
    margin-top: 80px;
    padding: 75px 0;
    margin-bottom: -80px;
  }
  .candy-oem-faq__title {
    font-size: 2.7rem;
    margin-bottom: 36px;
  }
  .candy-oem-faq__list {
    gap: 40px;
  }
  .candy-oem-faq__item {
    padding: 24px 15px 26px;
  }
  .candy-oem-faq__question {
    margin-bottom: 10px;
  }
  .candy-oem-faq__question > * {
    font-size: 1.6rem;
    line-height: calc(48 / 32);
  }
  .candy-oem-faq__question::before {
    padding: 2px 5px 6px 5px;
    margin-right: 12px;
    margin-bottom: 2px;
    font-size: 1.9rem;
  }
  .candy-oem-faq__answer {
    padding: 3px 10px 4px;
    font-size: 1.6rem;
    line-height: calc(58 / 32);
    letter-spacing: -.02em;
  }
}

/*********************************
	徹底した品質管理
*********************************/
.company-quality-approach {
  position: relative;
}
.company-quality-approach__content {
  background-color: #fff;
  width: max(530px, 50%);
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 100px 85px 30px;
}
.company-quality-approach__content > * {
  width: min(100%, 400px);
  margin-left: auto;
}
.company-quality-approach__title {
  font-size: 2.6rem;
  line-height: calc(29.979 / 26);
  margin-bottom: 34px;
}
.company-quality-approach__text {
  font-size: 1.5rem;
  line-height: calc(30 / 15);
}
.company-quality-approach__text + .company-quality-approach__text {
  margin-top: 2em;
}
.company-quality-approach__image {
  padding: 45px 0 0 78px;
  max-width: 1440px;
  width: 100%;
  margin: auto;
  height: 735px;
}
.company-quality-approach__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 1060px) {
  .company-quality-approach__content {
    position: relative;
    width: 100%;
    padding: 0 30px 45px;
  }
  .company-quality-approach__content > * {
    margin-left: 0;
    width: 100%;
  }
  .company-quality-approach__image {
    padding: 0 0 0 30px;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .company-quality-approach__content {
    position: relative;
    width: 100%;
    padding: 0 50px;
  }
  .company-quality-approach__title {
    font-size: 2.3rem;
    margin-bottom: 35px;
  }
  .company-quality-approach__text {
    font-size: 1.6rem;
    line-height: calc(58 / 32);
  }
  .company-quality-approach__image {
    padding: 44px 0 0 50px;
    height: auto;
    font-size: 1.6rem;
  }
}
.company-quality-certifications {
  margin-top: 100px;
  padding-left: 30px;
  padding-right: 30px;
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.company-quality-certifications__item {
  background-color: #fcf8f5;
  padding: 40px 52px 44px 50px;
}
.company-quality-certifications__item + .company-quality-certifications__item {
  margin-top: 50px;
}
.company-quality-certifications__title {
  font-size: 2rem;
  margin-bottom: 10px;
  font-family: var(--font-yugothic);
  font-weight: 600;
}
.company-quality-certifications__content {
  display: flex;
  align-items: center;
}
.company-quality-certifications__text-wrap {
  width: min(calc(720/1060*100vw), 720px);
  flex-shrink: 0;
  border-top: 1px solid #c9caca;
  padding-top: 13px;
}
.company-quality-certifications__text {
  font-size: 1.5rem;
  line-height: calc(28 / 15);
  letter-spacing: -0.02em;
}
.company-quality-certifications__text + .company-quality-certifications__text {
  margin-top: 1.8em;
}
.company-quality-certifications__image {
  margin-left: auto;
}
.company-quality-certifications__image .logo01 {
  width: min(calc(130/1060*100vw), 130px);
}
.company-quality-certifications__image .logo02 {
  width: min(calc(132/1060*100vw), 132px);
}

@media screen and (max-width: 1060px) {
  .company-quality-certifications__content {
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .company-quality-certifications {
    padding: 0;
    margin-top: 55px;
  }
  .company-quality-certifications__item {
    padding: 48px 50px 56px;
  }
  .company-quality-certifications__item + .company-quality-certifications__item {
    margin-top: 6px;
  }
  .company-quality-certifications__title {
    font-size: 1.8rem;
    margin-bottom: 9px;
  }
  .company-quality-certifications__content {
    flex-direction: column;
    gap: 20px;
  }
  .company-quality-certifications__text-wrap {
    width: 100%;
  }
  .company-quality-certifications__text {
    font-size: 1.6rem;
    line-height: calc(58 / 32);
  }
  .company-quality-certifications__image .logo01 {
    width: calc(130 / 750 * 100vw);
  }
  .company-quality-certifications__image .logo02 {
    width: calc(132 / 750 * 100vw);
  }
}
.company-quality-detail {
  margin-top: 200px;
}
.company-quality-detail__inner {
  max-width: 1440px;
  margin: auto;
}
.company-quality-detail__text-wrap {
  width: min((50% - 30px), 500px);
  padding-right: 130px;
  margin-left: auto;
}
.company-quality-detail__title {
  font-size: 2.6rem;
  line-height: calc(46 / 26);
  margin-bottom: 22px;
}
.company-quality-detail__text {
  font-size: 1.5rem;
  line-height: calc(30 / 15);
}
.company-quality-detail__text + .company-quality-detail__text {
  margin-top: 2em;
}
.company-quality-detail__image {
  width: min(50%, 720px);
  flex-shrink: 0;
}
.company-quality-detail__item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.company-quality-detail__item:not(:first-child) {
  margin-top: 100px;
}
.company-quality-detail__item:nth-child(even) {
  flex-direction: row-reverse;
}
.company-quality-detail__item:nth-child(even) .company-quality-detail__text-wrap {
  padding-right: 0;
  padding-left: 130px;
  margin-left: 0;
  margin-right: auto;
}
.company-quality-detail__item:nth-child(even) .company-quality-detail__image {
  margin-left: 0;
}

@media screen and (max-width: 1060px) {
  .company-quality-detail {
    margin-top: 100px;
  }
  .company-quality-detail__text-wrap {
    margin-left: 0;
    padding-right: calc(80 / 1060 * 100vw);
  }
  .company-quality-detail__item:nth-child(even) .company-quality-detail__text-wrap {
    padding-left: calc(80 / 1060 * 100vw);
  }
}
@media screen and (max-width: 768px) {
  .company-quality-detail {
    margin-top: 53px;
  }
  .company-quality-detail__text-wrap {
    width: 100%;
    padding: 0 50px;
  }
  .company-quality-detail__title {
    font-size: 2.3rem;
    line-height: calc(81 / 46);
    margin-bottom: 35px;
  }
  .company-quality-detail__text {
    font-size: 1.6rem;
    line-height: calc(58 / 32);
  }
  .company-quality-detail__text + .company-quality-detail__text {
    margin-top: 2em;
  }
  .company-quality-detail__image {
    width: calc(100% - 50px);
  }
  .company-quality-detail__item {
    flex-direction: column;
  }
  .company-quality-detail__item:not(:first-child) {
    margin-top: 55px;
  }
  .company-quality-detail__item:nth-child(even) {
    flex-direction: column;
  }
  .company-quality-detail__item:nth-child(even) .company-quality-detail__text-wrap {
    width: 100%;
    padding: 0 50px;
  }
  .company-quality-detail__item:nth-child(even) .company-quality-detail__image {
    margin: 45px auto 0 0;
  }
  .company-quality-detail__item:nth-child(odd) .company-quality-detail__text-wrap {
    width: 100%;
    padding: 0 50px;
  }
  .company-quality-detail__item:nth-child(odd) .company-quality-detail__image {
    margin: 45px 0 0 auto;
  }
}
