

/* products
----------------------------------------------- */

/* ready */

.js-parallax-ready .products__label:first-child {
	opacity: 0;
	transform: translate3d(0,0,0) scale(0.8);
}
.js-parallax-ready .products__label:last-child {
	opacity: 0;
	transform: translate3d(25%,0,0);
}
.js-parallax-ready .products__plus {
	opacity: 0;
	transform: translate3d(-25%,0,0);
}

/* start */

.js-parallax-start .products__label:first-child {
	opacity: 1;
	transform: scale(1);
	transition-property: opacity, transform;
	transition-duration: 0.5s;
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.js-parallax-start .products__label:last-child {
	opacity: 1;
	transform: translate3d(0,0,0);
	transition-property: opacity, transform;
	transition-duration: 0.5s;
	transition-delay: 0.25s;
	transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}
.js-parallax-start .products__plus {
	opacity: 1;
	transform: translate3d(0,0,0);
	transition-property: opacity, transform;
	transition-duration: 0.5s;
	transition-delay: 0.5s;
	transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}


/* scene
----------------------------------------------- */

/* ready */

.js-parallax-ready.scene__item {
	opacity: 0;
	transform: scale(0.8);
	transition-property: opacity, transform;
	transition-duration: 0.25s;
	transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.js-parallax-ready.scene__item .scene__label,
.js-parallax-ready.scene__item .scene__text {
	opacity: 0;
	transition-property: opacity, transform;
	transition-duration: 0.25s;
	transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}
.js-parallax-ready.scene__item .scene__label {
	transform: translateX(-15px);
}
.js-parallax-ready.scene__item .scene__text {
	transform: translateX(15px);
}

/* start */

.js-parallax-start.scene__item {
	opacity: 1;
	transform: scale(1);
	transition-duration: 0.5s;
}
.js-parallax-start.scene__item .scene__label,
.js-parallax-start.scene__item .scene__text {
	opacity: 1;
	transform: translateX(0);
	transition-duration: 0.5s;
	transition-delay: 0.5s;
	transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}

.js-parallax-start.scene__item:nth-child(1) {
	transition-delay: 0s;
}
.js-parallax-start.scene__item:nth-child(2) {
	transition-delay: 0.1s;
}
.js-parallax-start.scene__item:nth-child(3) {
	transition-delay: 0.2s;
}
.js-parallax-start.scene__item:nth-child(4) {
	transition-delay: 0.3s;
}


/* news
----------------------------------------------- */

.news__items {
	transition-property: transform;
	transition-duration: 0.5s;
	transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}


/* intro
----------------------------------------------- */

.intro {
	margin: 127px 40px 0;
}
.intro__inner {
	position: relative;
	margin: auto;
	max-width: 960px;
	z-index: 1;
}
.intro__slide {
	overflow: hidden;
}
.intro__list {
	font-size: 0;
	white-space: nowrap;
}
.intro__item {
	display: inline-block;
}
.intro__item img {
	display: block;
	width: 100%;
	height: auto;
}
.intro__indicator {
	display: flex;
	gap: 8px;
	margin-top: 5px;
}
.intro__bar {
	position: relative;
	width: 100%;
	height: 2px;
	background-color: #c3fa64;
	overflow: hidden;
	z-index: 1;
}
.intro__progress {
	width: 100%;
	height: 100%;
	background-color: #000;
	transform: translateX(-100%);
	transition-property: transform;
}
.intro__progress.is-active {
}
.intro__control {
}
.intro__button {
	position: absolute;
	top: 50%;
	margin-top: -17px;
	width: 16px;
	height: 26px;
	cursor: pointer;
	z-index: 1;
}
.intro__button.is-prev {
	left: -34px;
}
.intro__button.is-next {
	right: -34px;
}
.intro__button.is-scroll {
	display: none;
}
.intro__button img {
	display: block;
	width: 100%;
	height: auto;
}


/* pc
----------------------------------------------- */

@media print, screen and (min-width:1000px) {


	/* body
	----------------------------------------------- */


	body {
	}


	/* section
	----------------------------------------------- */

	.section {
		padding: 0;
	}


	/* button
	----------------------------------------------- */
/*
	.button,
	.button:hover {
		display: inline-block;
		position: relative;
		background: #4a5055;
		cursor: pointer;
	}
	.button span {
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
		padding: 0 15px;
		min-width: 150px;
		height: 48px;
		color: #fff;
		font-family: "IwaNGoPro-Th";
		font-size: 14px;
		letter-spacing: 0.04em;
		z-index: 1;
		transition: color 0.25s;
	}
	.button:hover span {
		color: #000;
	}
	.button:before {
		display: block;
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		height: 100%;
		background: #c3fa64;
		transform-origin: right top;
		transform: scale(0, 1);
		transition: transform 0.25s cubic-bezier(0.77, 0, 0.175, 1);
	}
	.button:hover:before {
		transform-origin: left top;
		transform: scale(1, 1);
	}
*/


	/* news
	----------------------------------------------- */

	.news {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		pointer-events: none;
		overflow: hidden;
		z-index: 1;
	}
	.news__inner {
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 60px;
		background: rgba(0,0,0,0.6);
		overflow: hidden;
	}
	.news__items {
		margin: auto;
		width: 960px;
		pointer-events: all;
	}
	.news__item {
		display: flex;
		align-items: center;
		color: #c3fa64;
		height: 60px;
	}
	.news__time {
		margin: 0 25px 0 0;
		font-family: "Oswald";
		font-size: 18px;
	}
	.neww__text {
		padding: 2px 0 0;
		font-family: "IwaNGoPro-Th";
		font-family: sans-serif;
		font-size: 15px;
		text-overflow: ellipsis;
		white-space: nowrap;
		line-height: 1.1;
		overflow: hidden;
	}

	/* hover*/

	a.news__item:hover .neww__text {
		text-decoration: underline;
	}

	/* ready */

	.js-news-ready .news__inner {
		transform: translate3d(0,100%,0);
	}

	/* start */

	.js-news-start .news__inner {
		transform: translate3d(0,0,0);
		transition: transform 0.85s cubic-bezier(0.77, 0, 0.175, 1) 1.95s;
	}


	/* products
	----------------------------------------------- */

	.products {
		position: relative;
	}
	.products__inner {
		position: relative;
		margin: auto;
		width: 900px;
		z-index: 2;
	}

	.products__subtitle {
		padding: 75px 0 0;
		font-family: "IwaNGoPro-Th";
		font-size: 24px;
		letter-spacing: 0.04em;
		text-align: center;
		line-height: 48px;
	}
	.products__subtitle span {
		font-size: 30px;
	}
	.products__subtitle strong {
		display: inline-block;
		margin: 0 4px;
		padding: 0 4px;
		background: #c3fa64;
	}
	.products__subtitle em {
		display: inline-block;
		position: relative;
		padding: 0 4px;
		font-style: normal;
	}
	.products__subtitle em:after {
		display: block;
		content: "";
		position: absolute;
		left: 0;
		bottom: 7px;
		width: calc(100% - 2px);
		height: 12px;
		line-height: 1;
		background: #c3fa64;
		z-index: -1;
	}
	.products__subtitle sup {
		display: inline-block;
		position: relative;
		top: -13px;
		font-size: 12px;
	}

	.products__more {
		position: relative;
		margin: 50px 0 0;
		text-align: center;
		z-index: 2;
	}

	.products__item {
		position: relative;
		margin: 80px 0 0;
	}
	.products__column {
		display: flex;
		justify-content: space-between;
		align-items: center;
		position: relative;
		z-index: 2;
	}
	.products__image {
		position: relative;
		width: 370px;
		text-align: center;
	}
	.products__badge {
		position: absolute;
		top: 0;
		right: 0;
		z-index: 1;
	}
	.products__summary {
		width: 530px;
	}
	.products__item:nth-child(2) .products__image {
		order: 2;
	}

	.products__logo img {
		width: auto;
		height: 30px;
	}
	.products__copy {
		margin: 25px 0 0;
		font-family: "IwaNGoPro-Th";
		font-size: 30px;
		letter-spacing: 0.04em;
		line-height: 46px;
	}
	.products__points {
		padding: 10px 0 0;
	}
	.products__point {
		position: relative;
		padding: 6px 0 0 20px;
		font-size: 18px;
		letter-spacing: 0.04em;
		line-height: 28px;
	}
	.products__point:after {
		display: block;
		content: "";
		position: absolute;
		top: 15px;
		left: 0;
		width: 12px;
		height: 12px;
		border-radius: 12px;
		background: #c3fa64;
	}
	.products__point sup {
		display: inline-block;
		position: relative;
		top: -10px;
		font-size: 10px;
	}

	.products__labels {
		display: flex;
		align-items: center;
		margin: 30px 0 0;
		text-align: center;
	}
	.products__label {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		width: 180px;
		height: 180px;
		font-family: "IwaNGoPro-Th";
		font-size: 30px;
		letter-spacing: 0.04em;
		line-height: 1;
		border: 4px solid #c3fa64;
		border-radius: 180px;
		box-sizing: border-box;
	}
	.products__label-reverse {
		background: #c3fa64;
	}
	.products__label span {
		display: block;
	}
	.products__label .medium {
		margin: 5px 0;
		font-size: 26px;
	}
	.products__label .small {
		margin: 0 0 8px;
		font-family: "IwaGNGoPro-Bd";
		font-size: 18px;
	}
	.products__label .xsmall {
		margin: 5px 0 0;
		font-size: 16px;
		letter-spacing: 0;
	}
	.products__label .large {
		margin: 8px 0 0;
		font-size: 36px;
	}
	.products__plus {
		width: 45px;
	}
	.products__caution {
		margin: 35px 0 0;
	}
	.products__caution-center span {
		text-align: center;
	}
	.products__caution span {
		display: block;
		font-size: 12px;
		letter-spacing: 0.04em;
		line-height: 20px;
	}
	.products__cautions {
		margin: 30px auto 0;
		width: 690px;
	}
	.products__cautions .products__caution {
		margin: 0 0 15px;
	}
	.products__cautions--center .products__caution {
		text-align: center;
	}
	.products__boxcaption {
		margin: 10px 0 0;
	}
	.products__boxcaption span {
		display: inline-block;
		padding: 5px 10px;
		font-size: 12px;
		letter-spacing: 0.04em;
		line-height: 1;
		border: 1px solid #000;
	}

	/* title */

	.products .pagetitle {
		padding: 112px 0 0;
	}

	/* jelly */

	.products__item--jelly .products__image img {
		margin: 75px 0 0 -25px;
	}
	.products__item--jelly .products__badge {
		top: 25px;
		right: -55px;
		overflow: hidden;
	}
	.products__item--jelly .products__badge img {
		margin: 0;
	}


	/* hexagon
	----------------------------------------------- */

	.hexagon-01 {
		top: -75px;
		right: 50%;
		margin: 0 -20px 0 0;
	}
	.hexagon-02 {
		top: -100px;
		left: 50%;
		margin: 0 0 0 -20px;
		transform: scale(-1, 1);
	}


	/* topinterview
	----------------------------------------------- */

	.topinterview {
		margin: 80px 0 0;
		background-image: url(https://www.otsuka.co.jp/bdm/assets/images/wave_mask_top_pc.png);
		background-position: center top;
		background-repeat: repeat-x;
		background-size: 1400px 100px;
		background-color: #c3fa64;
	}
	.topinterview__inner {
		margin: 60px 0 0;
		padding: 0 0 110px;
		background-image: url(https://www.otsuka.co.jp/bdm/assets/images/wave_mask-green_top_pc.png), url(https://www.otsuka.co.jp/bdm/assets/images/wave_mask_bottom_pc.png);
		background-position: center top, center bottom;
		background-repeat: repeat-x;
		background-size: 1400px 100px;
		background-color: #f4f6f7;
	}

	.topinterview__items {
		display: flex;
		justify-content: space-between;
		margin: auto;
		padding: 30px 0 50px;
		width: 900px;
	}
	.topinterview__item {
		width: 260px;
	}
	.topinterview__item:nth-child(n + 4) {
		display: none;
	}
	.topinterview__item a {
		display: block;
	}
	.topinterview__title {
		margin: 19px 0 0;
		font-family: "IwaNGoPro-Th";
		font-size: 14px;
		letter-spacing: 0.04em;
		line-height: 24px;
	}
	.topinterview__name {
		margin: 10px 0 0;
		font-size: 12px;
		letter-spacing: 0.04em;
	}
	.topinterview__time {
		display: block;
		margin: 15px 0 0;
		color: #4a5055;
		font-family: "Oswald";
		font-size: 13px;
		letter-spacing: 0.04em;
	}

	.topinterview__more {
		text-align: center;
	}

	/* title */

	.topinterview .pagetitle {
		padding: 145px 0 0;
	}


	/* scene
	----------------------------------------------- */

	.scene {
	}
	.scene__inner {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin: auto;
		padding: 80px 0 0;
		width: 960px;
	}

	.scene__items {
		position: relative;
		width: 610px;
		height: 485px;
	}
	.scene__item {
		position: absolute;
	}
	.scene__item:nth-child(1) {
		top: 0;
		left: 128px;
	}
	.scene__item:nth-child(2) {
		top: 0;
		left: 374px;
	}
	.scene__item:nth-child(3) {
		top: 211px;
		left: 4px;
	}
	.scene__item:nth-child(4) {
		top: 211px;
		left: 249px;
	}
	.scene__item a {
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
		width: 238px;
		height: 274px;
		color: #c3fa64;
		text-align: center;
	}
	.scene__image {
		position: absolute;
		top: 0;
		left: 0;
		transition: opacity 0.25s;
	}
	.scene__label {
		position: relative;
		font-family: "Oswald";
		font-size: 26px;
		line-height: 34px;
		z-index: 1;
	}
	.scene__text {
		position: relative;
		margin: 10px 0 0;
		font-family: "IwaNGoPro-Th";
		font-size: 16px;
		letter-spacing: 0.04em;
		line-height: 24px;
		z-index: 1;
	}

	/* hover*/

	.scene__item a:hover .scene__image {
		opacity: 0.7;
	}

	/* title */

	.scene .pagetitle {
		margin: 0 0 0 10px;
		padding: 16px 0 0;
		width: 340px;
	}
	.scene .pagetitle__inner {
		width: auto;
	}


	/* pickup
	----------------------------------------------- */

	.pickup {
		margin: 100px 0 0;
		padding: 0 0 90px;
		background-image: url(https://www.otsuka.co.jp/bdm/assets/images/wave_mask_top_pc.png);
		background-position: center -1px;
		background-repeat: repeat-x;
		background-size: 1400px 76px;
		background-color: #f4f6f7;
	}
	.pickup__inner {
		position: relative;
		margin: auto;
		width: 960px;
	}
	.pickup__title {
		padding: 104px 0 0;
		font-family: "Oswald";
		font-size: 42px;
		text-align: center;
	}
	.pickup__slider {
		margin: 58px auto 0;
		width: 864px;
		overflow: hidden;
	}
	.pickup__items {
		font-size: 0;
		white-space: nowrap;
		text-align: center;
	}
	.pickup__item {
		display: inline-block;
		margin: 0 12px;
		width: 264px;
	}

	.pickup__arrow,
	.pickup__arrow {
		position: absolute;
		top: 273px;
		cursor: pointer;
		transition-property: opacity, transform;
		transition-duration: 0.25s;
	}
	.pickup__arrow-prev {
		left: 0;
	}
	.pickup__arrow-next {
		right: 0;
	}

	/* hover */

	.pickup__arrow-prev:hover {
		opacity: 0.7;
		transform: translateX(-5px);
	}
	.pickup__arrow-next:hover {
		opacity: 0.7;
		transform: translateX(5px);
	}


	/* shopbanner
	----------------------------------------------- */

	.shopbanner {
		border-top: 1px solid #c3fa64;
	}
	.shopbanner__inner {
		margin: auto;
		width: 780px;
	}
	.shopbanner__lists {
		padding: 20px 0 40px;
	}
	.shopbanner__list {
		margin: 20px 0 0;
	}


}


/* mobile
----------------------------------------------- */

@media only screen and (max-width:999px) {


	/* body
	----------------------------------------------- */

	body {
	}


	/* header
	----------------------------------------------- */

	.header:after {
		height: 79px;
		background: rgba(195,250,100,1);
	}


	/* section
	----------------------------------------------- */

	.section {
		padding: 0;
	}


	/* button
	----------------------------------------------- */
/*
	.button {
		display: inline-block;
		position: relative;
		cursor: pointer;
	}
	.button span {
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
		padding: 0 15px;
		min-width: 150px;
		height: 45px;
		color: #fff;
		font-family: "IwaNGoPro-Th";
		font-size: 12px;
		letter-spacing: 0.02em;
		background: #4a5055;
		cursor: pointer;
	}
*/


	/* news
	----------------------------------------------- */

	.news {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		pointer-events: none;
		overflow: hidden;
		z-index: 1;
	}
	.news__inner {
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 47px;
		background: rgba(0,0,0,0.6);
		overflow: hidden;
	}
	.news__items {
		margin: 0 15px;
		pointer-events: all;
	}
	.news__item {
		display: flex;
		align-items: center;
		color: #c3fa64;
		height: 47px;
	}
	.news__time {
		margin: 0 20px 0 0;
		font-family: "Oswald";
		font-size: 15px;
	}
	.neww__text {
		padding: 1px 0 0;
		font-family: "IwaNGoPro-Th";
		font-size: 14px;
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden;
	}

	/* ready */

	.js-news-ready .news__inner {
		transform: translate3d(0,100%,0);
	}

	/* start */

	.js-news-start .news__inner {
		transform: translate3d(0,0,0);
		transition: transform 0.85s cubic-bezier(0.77, 0, 0.175, 1) 1s;
	}


	/* products
	----------------------------------------------- */

	.products {
		position: relative;
	}
	.products__inner {
		position: relative;
		margin: auto;
		max-width: 640px;
		z-index: 2;
	}

	.products__subtitle {
		margin: 0 15px;
		padding: 31px 0 0;
		font-family: "IwaNGoPro-Th";
		font-size: 18px;
		letter-spacing: 0.04em;
		text-align: center;
		line-height: 37px;
	}
	.products__subtitle span {
		font-size: 24px;
	}
	.products__subtitle strong {
		display: inline-block;
		margin: 0 4px;
		padding: 0 4px;
		font-weight: normal;
		background: #c3fa64;
	}
	.products__subtitle em {
		display: inline-block;
		position: relative;
		padding: 0 4px;
		font-style: normal;
	}
	.products__subtitle em:after {
		display: block;
		content: "";
		position: absolute;
		left: 0;
		bottom: 4px;
		width: calc(100% - 2px);
		height: 9px;
		line-height: 1;
		background: #c3fa64;
		z-index: -1;
	}
	.products__subtitle sup {
		display: inline-block;
		position: relative;
		top: -10px;
		font-size: 10px;
	}
	.products__more {
		position: relative;
		margin: 30px 0 0;
		text-align: center;
		z-index: 2;
	}

	.products__item {
		position: relative;
	}
	.products__column {
		position: relative;
		margin: 0 15px;
		z-index: 2;
	}
	.products__image {
		position: relative;
		text-align: center;
	}
	.products__badge {
		position: absolute;
		top: 0;
		right: 0;
		z-index: 1;
	}

	.products__item:nth-child(1) {
		margin: 60px 0 0;
	}
	.products__item:nth-child(2) {
		margin: 92px 0 0;
	}
	.products__item:nth-child(1) .products__image img {
		width: 105px;
		height: auto;
	}
	.products__item:nth-child(2) .products__image img {
		width: 142px;
		height: auto;
	}

	.products__logo {
		margin: 15px 0 0;
		text-align: center;
	}
	.products__logo img {
		width: auto;
		height: 22px;
	}
	.products__copy {
		margin: 32px 0 0;
		font-family: "IwaNGoPro-Th";
		font-size: 24px;
		text-align: center;
		letter-spacing: 0.04em;
		line-height: 33px;
	}
	.products__points {
		margin: auto;
		padding: 14px 0 0;
		max-width: 375px;
	}
	.products__point {
		position: relative;
		padding: 6px 0 0 18px;
		font-size: 14px;
		line-height: 21px;
	}
	.products__point:after {
		display: block;
		content: "";
		position: absolute;
		top: 11px;
		left: 0;
		width: 12px;
		height: 12px;
		border-radius: 12px;
		background: #c3fa64;
	}

	.products__labels {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin: 40px auto 0;
		max-width: 312px;
	}
	.products__label {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		width: 140px;
		height: 140px;
		font-family: "IwaNGoPro-Th";
		font-size: 25px;
		letter-spacing: 0.04em;
		line-height: 1;
		border: 3px solid #c3fa64;
		border-radius: 140px;
		box-sizing: border-box;
	}
	.products__label-reverse {
		background: #c3fa64;
	}
	.products__label span {
		display: block;
	}
	.products__label .medium {
		margin: 5px 0;
		font-size: 21px;
	}
	.products__label .small {
		margin: 0 0 8px;
		font-family: "IwaGNGoPro-Bd";
		font-size: 15px;
	}
	.products__label .xsmall {
		margin: 5px 0 0;
		font-size: 12px;
		letter-spacing: 0;
	}
	.products__label .large {
		margin: 8px 0 0;
		font-size: 27px;
	}
	.products__plus {
		width: 25px;
		text-align: center;
	}
	.products__caution {
		margin: 20px 28px 0;
	}
	.products__caution span {
		display: block;
		padding: 0 0 0 23px;
		font-size: 11px;
		text-indent: -23px;
		letter-spacing: 0.04em;
		line-height: 18px;
	}
	.products__caution-center span {
		text-align: center;
	}
	.products__cautions {
		margin: 15px 15px 0;
		text-align: center;
	}
	.products__cautions .products__caution {
		margin: 0 0 20px;
	}
	.products__boxcaption {
		margin: 10px 28px 0;
	}
	.products__boxcaption span {
		display: inline-block;
		padding: 5px 10px;
		font-size: 11px;
		letter-spacing: 0.04em;
		line-height: 1;
		border: 1px solid #000;
	}

	/* title */

	.products .pagetitle {
		padding: 70px 0 0;
	}

	/* jelly */

	.products__item--jelly .products__badge {
		top: -45px;
		right: -15px;
		overflow: hidden;
	}
	.products__item--jelly .products__badge img {
		width: auto;
		height: 65px;
	}


	/* hexagon
	----------------------------------------------- */

	.hexagon-01 {
		top: 4%;
		left: -25%;
		margin: 0 0 0 -15px;
	}
	.hexagon-02 {
		top: -4%;
		right: -25%;
		margin: 0 -15px 0 0;
		transform: scale(-1, 1);
	}


	/* topinterview
	----------------------------------------------- */

	.topinterview {
		margin: 60px 0 0;
		background-image: url(https://www.otsuka.co.jp/bdm/assets/images/wave_mask_top_sp.png);
		background-position: center top;
		background-repeat: repeat-x;
		background-size: 375px 20px;
		background-color: #c3fa64;
	}
	.topinterview__inner {
		margin: 112px 0 0;
		padding: 0 0 60px;
		background-image: url(https://www.otsuka.co.jp/bdm/assets/images/wave_mask-green_top_sp.png), url(https://www.otsuka.co.jp/bdm/assets/images/wave_mask_bottom_sp.png);
		background-position: center top, center bottom;
		background-repeat: repeat-x;
		background-size: 375px 20px;
		background-color: #f4f6f7;
	}

	.topinterview__items {
		position: relative;
		top: -70px;
		margin: auto;
		max-width: 500px;
	}
	.topinterview__item {
		margin: 40px 52px 0;
	}
	.topinterview__item:nth-child(n + 4) {
		display: none;
	}
	.topinterview__item a {
		display: block;
	}
	.topinterview__image img {
		width: 100%;
		height: auto;
	}
	.topinterview__title {
		margin: 20px 0 0;
		font-family: "IwaNGoPro-Th";
		font-size: 14px;
		letter-spacing: 0.04em;
		line-height: 21px;
	}
	.topinterview__name {
		margin: 5px 0 0;
		font-size: 12px;
		letter-spacing: 0.04em;
		line-height: 20px;
	}
	.topinterview__time {
		display: block;
		margin: 5px 0 0;
		color: #4a5055;
		font-family: "Oswald";
		font-size: 12px;
		letter-spacing: 0.04em;
	}

	.topinterview__more {
		margin: -20px 0 0;
		text-align: center;
	}

	/* title */

	.topinterview .pagetitle {
		padding: 52px 0 0;
	}


	/* scene
	----------------------------------------------- */

	.scene {
		margin: auto;
		max-width: 640px;
	}
	.scene__items {
		position: relative;
		margin: 42px auto 0;
		width: 312px;
		height: 450px;
	}
	.scene__item {
		position: absolute;
	}

	.scene__item:nth-child(1) {
		top: 0;
		left: 80px;
	}
	.scene__item:nth-child(2) {
		top: 136px;
		left: 0;
	}
	.scene__item:nth-child(3) {
		top: 136px;
		left: 158px;
	}
	.scene__item:nth-child(4) {
		top: 272px;
		left: 79px;
	}

	.scene__item a {
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
		width: 155px;
		height: 178px;
		color: #c3fa64;
		text-align: center;
	}
	.scene__image {
		position: absolute;
		top: 0;
		left: 0;
	}
	.scene__image img {
		width: 155px;
		height: 178px;
	}
	.scene__label {
		position: relative;
		font-family: "Oswald";
		font-size: 17px;
		line-height: 26px;
		z-index: 1;
	}
	.scene__text {
		position: relative;
		margin: 5px 0 0;
		font-family: "IwaNGoPro-Th";
		font-size: 12px;
		letter-spacing: 0.04em;
		line-height: 18px;
		z-index: 1;
	}

	/* title */

	.scene .pagetitle {
		padding: 56px 0 0;
	}


	/* pickup
	----------------------------------------------- */

	.pickup {
		position: relative;
		margin: 60px 0 0;
		padding: 0 0 20px;
		background-image: url(https://www.otsuka.co.jp/bdm/assets/images/wave_mask_top_sp.png);
		background-position: center top;
		background-repeat: repeat-x;
		background-size: 375px 20px;
		background-color: #f4f6f7;
	}
	.pickup__inner {
		margin: auto;
		max-width: 500px;
	}
	.pickup__title {
		padding: 54px 0 0;
		font-family: "Oswald";
		font-size: 36px;
		text-align: center;
	}
	.pickup__slider {
		margin: 44px 15px 0;
	}
	.pickup__items {
		font-size: 0;
		white-space: nowrap;
		text-align: center;
	}
	.pickup__item {
		display: inline-block;
		margin: 0 15px;
	}
	.pickup__item img {
		width: 100%;
		height: auto;
	}

	.pickup__arrow,
	.pickup__arrow {
		position: absolute;
		top: 60%;
		margin: -13px 0 0;
		cursor: pointer;
	}
	.pickup__arrow-prev {
		left: 10px;
	}
	.pickup__arrow-next {
		right: 10px;
	}

	/* slick */

	.slick-dots {
		font-size: 0;
		text-align: center;
	}
	.slick-dots li {
		display: inline-block;
		padding: 15px 10px;
	}
	.slick-dots button {
		margin: 0;
		padding: 0;
		width: 9px;
		height: 9px;
		border-radius: 9px;
		border: 0;
		background: #e6e6e6;
		outline: none;
		-webkit-appearance: none;
	}
	.slick-active button {
		background-color: #a4d353;
	}


	/* shopbanner
	----------------------------------------------- */

	.shopbanner {
		border-top: 1px solid #c3fa64;
	}
	.shopbanner__inner {
		margin: auto;
		padding: 0 0 85px;
		max-width: 500px;
	}
	.shopbanner__lists {
		padding: 45px 0;
	}
	.shopbanner__list {
		margin: 15px 0 0;
	}
	.shopbanner a {
		display: block;
		margin: 0 15px;
	}
	.shopbanner img {
		width: 100%;
		height: auto;
	}


	/* intro
	----------------------------------------------- */

	.intro {
		margin: 94px 15px 0;
	}
	.intro__inner {
		max-width: initial;
	}
	.intro__indicator {
		gap: 4px;
		margin-top: 2.5px;
	}
	.intro__bar {
		height: 1.5px;
	}
	.intro__control {
		display: flex;
		justify-content: space-between;
		margin-top: 9px;
	}
	.intro__button {
		position: static;
		margin-top: 0;
	}
	.intro__button.is-scroll {
		display: block;
		margin: auto;
		width: 37px;
	}


}

