@charset 'UTF-8';

:root {
	--vw: 1vw;
	--px: 1px;
	--inner-padding-inline: 80px;
}

html,
body {
	min-height: 100svh;
}

body {
	display: flex;
	flex-direction: column;
	font-family: sans-serif;
	font-size: 16px;
	line-height: calc(27 / 16);
	overflow-wrap: break-word;
	/* word-break: break-all;
	hyphens: auto; */
}

:where(body) > * {
	flex: 1;
}

em {
	font-style: normal;
	font-weight: bold;
	color: inherit;
}

strong {
	font-style: normal;
	font-weight: bold;
	color: #363581;
}

sup {
	font-size: .6em;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
}

video {
	vertical-align: top;
	max-width: 100%;
	height: auto;
}

:where(a:any-link) {
	color: #363581;
}

*:focus:not(:fous-visible) {
	outline: none;
}

@media (hover: none) {
	*:focus {
    outline: none;
  }
}

/* 上記では効果がなかったので下記を追加 */

a:focus:not(:focus-visible) {
  outline: none;
}

button:focus:not(:focus-visible) {
  outline: none;
}

input:focus:not(:focus-visible) {
  outline: none;
}

/* layout */

.container {
	display: flex;
	flex-direction: column;
}

:where(.container) > * {
	flex: 1;
}

.content {
	padding: 0 0 150px;
}

:where(.reference-page) .content {
	padding: 30px 0 104px;
}

.inner {
	box-sizing: border-box;
	max-width: 100%;
	padding-inline: var(--inner-padding-inline);
	width: calc(1270px + (var(--inner-padding-inline) * 2));
	margin-inline: auto;
}

.row {
	display: flex;
}

.col-img {
	flex-shrink: 0;
}

/* elements */

.title {
	font-family: "Lato", sans-serif;
	font-weight: 900;
	font-style: normal;
	line-height: 1.2;
	font-size: calc(48 * var(--px));
	color: #363581;
	margin-block: 0;
}

.sub-title {
	font-family: "Lato", sans-serif;
	font-weight: 700;
	font-style: normal;
	line-height: 1.2;
	font-size: 36px;
	color: #363581;
	margin-block: 0;
}

.lead {
	font-family: "Lato", sans-serif;
	font-weight: 700;
	font-style: normal;
	line-height: 1.2;
	font-size: 28px;
	color: #363581;
	margin-block: 0;
}

:where(.text) p:where(:has(+ p)) {
	margin-bottom: 0;
}

:where(.text p) + p {
	margin-top: 1em;
}

:where(.notes) p {
	font-size: 11px;
	line-height: calc(21 / 12);
}

:where(.notes) p:where(:has(+ p)) {
	margin-bottom: 0;
}

:where(.notes p) + p {
	margin-top: .45em;
}

dl:where(.notes) {
	display: flex;
	/* margin-bottom: 0; */
}

:where(dl.notes) > div {
	flex: 1;
	/* display: flex; */
}

:where(.notes) dt {
	font-weight: bold;
	display: inline;
}

:where(.notes) dt::after {
	content: "：";
	font-weight: normal;
}

:where(.notes) dd {
	margin-inline: 0;
	display: inline;
}

.button {
	text-decoration: none;
	border-radius: 100em;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	max-width: 100%;
	font-family: "Lato", sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 19px;
	line-height: 1.2;
}

.button--secondary {
	min-height: 48px;
	width: 180px;
	font-size: 16px;
	background: #f0eff8;
	color: #363582;
	font-weight: normal;
}

.button--cta {
	min-height: 55px;
	width: 270px;
	font-size: 19px;
	color: #fff;
	background-color: #fd7d10;
	background-image: linear-gradient( 107deg, rgb(255,180,12) 0, rgb(253,125,16) 16%, rgb(250,69,20) 50%, rgb(253,125,16) 66%, rgb(255,180,12) 88%);
	background-size: 200% 100%;
	background-position: 100% 100%;
}

@media (any-hover: hover) {
	
	a:any-link:hover {
		text-decoration: none;
	}

	.button:hover {
		animation: gradient .3s ease forwards;
	}
}


.header .button--cta {
	min-height: calc(52 * var(--px));
	width: calc(240 * var(--px));
	font-size: calc(18 * var(--px));
}

.lato-bold {
	font-family: "Lato", sans-serif;
	font-weight: 700;
	font-style: normal;
}

.lato-black {
	font-family: "Lato", sans-serif;
	font-weight: 900;
	font-style: normal;
}

@keyframes slide-in-down {
	from {
	  translate: 0 -100%;
	}
	to {
		translate: 0 0;
	}
}

@keyframes gradient {
	0% {
		background-position: 100% 100%;
	}
	100% {
		background-position: 0% 0%;
	}
}

/*
============================= .header =============================
*/

.header {
	padding: calc(34 * var(--px)) 46px;
	background: #fff;
	border-bottom: 1px solid #f2f2f9;
}

:where(.header) p {
	margin: 0;
}

:where(.header) a {
	color: inherit;
}

.header-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 64px;
}

.header-content {
	display: flex;
	align-items: center;
	column-gap: calc(47 * var(--px));
}

.header-logo {
	flex-shrink: 0;
}

.header-logo img {
	width: calc(171 * var(--px));
}

.header-lead {
	font-size: 14px;
	font-family: "Lato", sans-serif;
	font-weight: 900;
	color: #413e83;
	line-height: 1.45;
}

.header-lead span {
	display: inline-block;
	margin-right: .5em;
}

.header.sticky {
	position: sticky;
	top: 0;
	z-index: 1;
	padding: calc(16 * var(--px)) calc(31 * var(--px));
	translate: 0 -100%;
	animation: .4s ease-in forwards slide-in-down;
}

.header.sticky .header-logo img {
	width: calc(112 * var(--px));
}

.header.sticky .header-lead {
	display: none;
}

.header.sticky .button--cta {
	font-size: 14px;
	width: 168px;
	min-height: 42px;
}

/*
============================= .mv =============================
*/

.kv {
	margin: 0;
}

.kv img {
	display: block;
	width: 100%;
}

/*
============================= .about =============================
*/

.about {
	margin: 130px 0 149px;
	font-size: 15px;
	line-height: calc(24 / 15);
}

.about .row {
	column-gap: 88px;
	column-gap: calc(88 *  var(--px));
}

.about .title {
	margin: 0 0 39px;
}

.about .lead {
	margin: 0 0 27px;
	font-weight: 900;
}

.about .text {
	/* text-align: justify; */
	text-align-last: left;
}

.about .notes {
	margin-top: 20px;
}

.about .img {
	width: calc(467 * var(--px));
}

.about .cta-container {
	margin-top: 55px;
}

/*
============================= .did-you-know =============================
*/

.did-you-know {
	background: #434188;
	color: #fff;
	padding: 119px 0 137px;
}

.did-you-know .sec-header {
	text-align: center;
	margin: 0 0 88px;
}

.did-you-know .title {
	color: #fff;
}

.did-you-know .sec-header .lead {
	color: #fde200;
	margin: 20px 0 0;
}

.did-you-know .inner {
	width: calc(1445px + (var(--inner-padding-inline) * 2));
}

.did-you-know .sub-sec:nth-child(n + 2) {
	margin: 80px 0 0;
}

.did-you-know .row {
	align-items: center;
	column-gap: calc(78 * var(--px));
}

.did-you-know .sub-sec:nth-child(even) .row {
	flex-direction: row-reverse;
	justify-content: flex-end;
}

.did-you-know .sub-sec:nth-child(odd) .row {
	justify-content: flex-end;
}

.did-you-know .sub-sec:nth-child(even) .img {
	border-radius: calc(40 * var(--px)) 0 calc(40 * var(--px)) 0;
	overflow: hidden;
}

.did-you-know .sub-sec:nth-child(odd) .img {
	border-radius: 0 calc(40 * var(--px)) 0 calc(40 * var(--px));
	overflow: hidden;
}

.did-you-know .col-img {
	align-self: flex-start;
}

.did-you-know .img {
	width: calc(605 * var(--px));
}

.did-you-know .col-text-inner {
	max-width: 680px;
	min-height: calc(212 * var(--px));
}

.did-you-know .sub-title {
	color: #fde200;
	margin: 0 0 32px;
}

.did-you-know .text {
	/* text-align: justify; */
	text-align-last: left;
}

/*
============================= .ingredients =============================
*/

.ingredients {
	padding: 122px 0 0;
	background: #ecebfa;
	background-repeat: no-repeat;
	background-image: linear-gradient(0deg, #f2f2fb 0%, #ecebfa 100%);
	background-size: 100% 30%;
	background-position: center bottom;
}

:where(.ingredients .inner) > * {
	width: fit-content;
	margin-inline: auto;
}

.ingredients .title {
	font-size: 34px;
	text-align: center;
}

.ingredients .lead {
	font-size: 18px;
	margin-top: 28px;
	text-align: center;
}

.ingredients .text {
	font-size: 15px;
	margin-top: 22px;
	text-align: center;
}

.ingredients .img-wrap {
	margin-top: 32px;
}

.ingredients .img {
	width: calc(605 * var(--px));
}

.ingredients .notes {
	font-size: 11px;
	margin-top: 29px;
	margin-bottom: 0;
}

/*
============================= .benefits =============================
*/

.benefits {
	background-repeat: no-repeat;
	background-image: linear-gradient(0deg, #fff 0%, #f1f0fb 100%);
	background-size: 100% 10%;
	padding: 144px 0 0;
	margin: 0 0 110px;
}

.benefits .title {
	/* width: fit-content; */
	/* margin-inline: auto; */
	text-align: center;
}

/* .benefits-kv */

.benefits-kv {
	margin: 77px 0 0;
	box-sizing: border-box;
	width: 1508px;
	max-width: calc((100 * var(--vw)) - (var(--inner-padding-inline) * 2));
	position: relative;
	left: 50%;
	translate: -50% 0;
}

.benefits-kv::before {
	content: '';
	display: table;
}

.benefits-kv-bg {
	display: block;
	border-radius: calc(60 * var(--px)) 0 calc(60 * var(--px)) 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}

.benefits-kv-content {
	margin: calc(147 * var(--px)) 0 0;
	width: calc(1109 * var(--px));
	max-width: 100%;
	position: relative;
	z-index: 1;
}

.benefits-kv-content-inner {
	width: calc(740 * var(--px));
	max-width: 100%;
	margin-inline: auto;
}

.benefits-kv .title {
	font-size: 30px;
	text-align: center;
}

.benefits-kv .text {
	margin: 34px auto 0;
	text-align: center;
	width: 630px;
	max-width: 100%;
}

.benefits-kv .img-wrap {
	margin: calc(77 * var(--px)) 0 0;
	text-align: center;
}

.benefits-kv .img {
	width: calc(555 * var(--px));
}

.benefits-kv .img .caption {
	font-size: 12px;
	margin: 0;
}

.benefits-kv .img .caption p {
	margin: 0;
}

.benefits-kv .benefits-kv-bg-sp {
	display: none;
}

/* .benefit-list */

.benefit-list {
	--column-gap : 64px;
	list-style: none;
	display: flex;
	margin: 72px auto 0;
	padding: 0;
	column-gap: var(--column-gap);
}

.benefit-list li {
	flex: 1;
	position: relative;
	display: flex;
	column-gap: 24px;
}

.benefit-list li::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: calc(var(--column-gap) / 2 * -1);
	border-right: 1px solid #c6c6db;
}

.benefit-list li:last-child::after {
	content: none;
}

.benefit-item-img {
	flex-shrink: 0;
}

.benefit-item-text {
	padding-top: 4px;
}

.benefit-list .title {
	font-size: 17px;
	margin: 0 0 8px;
	text-align: left;
}

.benefit-list .text p {
	font-size: 14px;
	margin: 0;
}

.benefits .cta-container {
	display: flex;
	justify-content: center;
	margin: 66px 0 0;
}

/* .how-to-take */

.how-to-take {
	background: #f0eff8;
	border-radius: 24px;
	margin: 95px 0 0;
	padding: 81px 79px;
}

.how-to-take .row {
	justify-content: space-between;
	column-gap: 24px;
	/* flex-direction: column; */
}

.how-to-take .title {
	font-size: 28px;
	margin: 0;
	width: auto;
	text-align: left;
}

.how-to-take .sub-title {
	font-size: 18px;
	margin: 34px 0 0;
	color: inherit;
}

.how-to-take .text {
	font-size: 14px;
}

.how-to-take .img {
	width: calc(426 * var(--px));
}

.precaution {
	margin: 22px 0 0;
}

.precaution-title {
	font-size: 14px;
	color: inherit;
	margin: 0 0 10px;
}

.precaution-list {
	margin: 0;
	padding: 0 0 0 1em;
	font-size: 11px;
	max-width: 53em;
}

.precaution-list li + li {
	margin: 5px 0 0;
}

/*
============================= .movies =============================
*/

.movies {
	background-repeat: no-repeat;
	background-image: linear-gradient(0deg, #fefcef 0%, #fbeda3 100%);
	background-size: 100% 30%;
	background-position: center bottom;
	background-color: #fbeda3;
	padding: 110px 0 74px;
}

.movies .sub-sec:where(:nth-child(n + 2)) {
	margin: 98px 0 0;
}

.movies .row {
	align-items: center;
	column-gap: calc(51 * var(--px));
}

.movies .sub-sec:nth-child(even) .row {
	flex-direction: row-reverse;
	justify-content: space-between;
}

.movies .col-img {
	align-self: flex-start;
}

.movies .col-text {
	min-height: calc(151 * var(--px));
}

.movies .title {
	font-size: 28px;
	margin: 0 0 29px;
}

.movies .text {
	font-size: 15px;
}

.link-movie {
	appearance: none;
	border: none;
	box-shadow: none;
	background: none;
	padding: 0;
	margin: 0;
	display: block;
	cursor: pointer;
	position: relative;
	border-radius: 40px;
	overflow: hidden;
	width: calc(700 * var(--px));
}

.link-movie::after {
	content: '';
	display: block;
	background: url(../images/icon-play.svg) center/contain no-repeat;
	aspect-ratio: 1;
	width: min(20%, 56px);
	position: absolute;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
}

.movie-thumb {
	display: block;
	transition: opacity .2s ease-in-out;
}

@media (any-hover: hover) {

	.link-movie:hover .movie-thumb {
		opacity: .9;
	}
}

.movies .cta-container {
	display: flex;
	justify-content: center;
	margin: 111px 0 0;
}

/*
============================= .about-taiho =============================
*/

.about-taiho {
	background-repeat: no-repeat;
	background-image: linear-gradient(0deg, #fff 0%, #fefcef 100%);
	background-size: 100% 10%;
	padding: 72px 0 0;
}

.about-taiho .title {
	text-align: center;
}

.about-taiho .row {
	margin: 53px 0 0;
	column-gap: calc(74 * var(--px));
}

.about-taiho .img {
	width: calc(533 * var(--px));
}

.about-taiho-logo {
	display: block;
	margin: 39px auto 32px;
}

.about-taiho .text {
	font-size: 14px;
	/* text-align: justify; */
	text-align-last: left;
}

/*
============================= .footer =============================
*/

.footer {
	background: #434188;
	color: #fff;
	font-size: 12px;
	padding: 58px 0;
}

:where(.footer) p {
	margin: 0;
}

:where(.footer) a {
	color: inherit;
}

.footer-row {
	display: flex;
	align-items: flex-start;
	column-gap: 30px;
}

.footer-content {
	flex: 1;
	display: flex;
	align-items: center;
	column-gap: 30px;
	margin: 13px 0 0;
}

.footer-content-sp {
	display: contents;
}

.footer-sns {
	display: flex;
	column-gap: 11px;
}

.footer-nav {
	display: flex;
	column-gap: 24px;
}

.footer-nav a {
	display: block;
	position: relative;
}

.footer-nav a::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: -12px;
	border-left: 1px solid #fff;
}

.footer-nav a:last-child::after {
	content: none;
}

.copyright {
	margin-left: auto;
}

/*
*****************************************************************************************

responsive

*****************************************************************************************
*/

@media (max-width: 1610px) {
	:root {
		--px: calc(1 / 1610 * 100 * var(--vw));
	}
}

@media (max-width: 1400px) {
	
	:root {
		--px: calc(1 / 1400 * 100 * var(--vw));
	}

	/* .header .button--cta {
		min-height: 52px;
		width: 240px;
		font-size: 16px;
	} */
	
	.about .lead {
		font-size: calc(28 * var(--px));
	}
	
	.did-you-know .lead {
		font-size: calc(28 * var(--px));
	}

	.did-you-know .sub-title {
		font-size: calc(36 * var(--px));
	}
	
	.benefits-kv .title {
		font-size: calc(30 * var(--px));
	}

	.benefits-kv-content,
	.benefits-kv-content-inner {
		margin: 0 auto;
		width: 90%;
	}

	.benefits-kv .img-wrap {
		text-align: left;
	}

	.benefits-kv .benefits-kv-bg {
		display: none;
	}

	.benefits-kv .benefits-kv-bg-sp {
		border-radius: calc(30 * var(--px)) 0 calc(30 * var(--px)) 0;
		display: block;
	}

	.benefits-kv .img {
		margin-left: 12%;
		margin-right: auto;
		margin-top: -22%;
		width: 50%;
		position: relative;
		z-index: 1;
		display: block;
	}

	.benefits-kv .caption {
		font-size: 9px;
		margin-left: 13%;
	}
	
	.how-to-take .title {
		font-size: max(calc(28 * var(--px)), 21px);
	}
	
	.movies .title {
		font-size: calc(28 * var(--px));
	}

}

@media (max-width: 1000px) {

	.header .button--cta {
		min-height: 42px;
		width: 180px;
		font-size: 14px;
	}

	.header-lead {
		font-size: 12px;
		line-height: 1.3;
	}

	/* .benefit-list */

	.benefit-list {
		flex-direction: column;
		row-gap: calc(48 * var(--px));
		margin-top: calc(80 * var(--px));
	}

	.benefit-list li {
		align-items: center;
		column-gap: calc(24 * var(--px));
	}

	.benefit-list li::after {
		content: '';
		display: block;
		position: absolute;
		top: auto;
		bottom: -16px;
		left: 0;
		right: 0;
		border-right: none;
		border-bottom: 1px solid #c6c6db;
	}

	.benefit-item-img {
		align-self: flex-start;
	}

	.benefit-item-text {
		padding-top: 0;
	}
	
	.how-to-take .row {
		flex-direction: column;
		row-gap: 60px;
	}

	.how-to-take .col-img {
		text-align: center;
	}

	.how-to-take .img {
		width: 60%;
	}

}

@media (max-width: 768px) {
	
	:root {
		--px: 1px;
		--inner-padding-inline: 24px;
	}

	body {
		font-size: 14px;
	}

	.content {
		padding: 0 0 calc(56 * var(--px));
	}

	.button--secondary {
		font-size: inherit;
		min-height: 42px;
		width: 160px;
		font-size: 13px;
	}

	.sec.sec {
		margin-block: 0;
		padding: calc(48 * var(--px)) 0 calc(52 * var(--px));
	}

	.content > .sec.sec:last-child {
		padding-bottom: 0;
	}

	.row.row {
		flex-direction: column;
		row-gap: calc(28 * var(--px));
	}

	.title.title {
		--fs-title: calc(24 * var(--px));
		font-size: calc(24 * var(--px));
		margin-bottom: calc(28 * var(--px));
		line-height: 1.4;
	}
	
	.sub-title.sub-title {
		--fs-title: calc(20 * var(--px));
		font-size: calc(20 * var(--px));
		margin-bottom: calc(12 * var(--px));
		line-height: 1.4;
	}
	
	.lead.lead {
		--fs-lead: calc(18 * var(--px));
		font-size: calc(18 * var(--px));
		margin-bottom: calc(16 * var(--px));
		line-height: 1.4;
	}

	.text p:first-child {
		margin-top: 0;
	}

	.text p:last-child {
		margin-bottom: 0;
	}

	.notes.notes {
		--fs-notes: calc(12 * var(--px));
		font-size: calc(12 * var(--px));
		margin-top: calc(20 * var(--px));
		margin-inline: 0;
	}

	.cta-container.cta-container {
		margin-top: calc(44 * var(--px));
		text-align: center;
	}

	.button--cta {
		width: 320px;
		font-size: 18px;
	}

/*
============================= .header =============================
*/
	
	.header {
		padding: calc(15 * var(--px)) calc(20 * var(--px));
	}

	.header-logo img {
		width: calc(88 * var(--px));
	}

	.header-lead {
		display: none;
	}

	.header .button--cta {
		font-size: 12px;
		width: 108px;
		min-height: 32px;
	}

	.header.sticky {
		padding: calc(13 * var(--px)) calc(16 * var(--px));
		border-bottom: 1px solid #f2f2f9;
	}

	.header.sticky .header-logo img {
		width: calc(72 * var(--px));
	}

	.header.sticky .button--cta {
		font-size: 11px;
		width: 99px;
		min-height: 28px;
	}

/*
============================= .about =============================
*/

	.about {
		font-size: inherit;
		line-height: inherit;
	}
	
	.about .row {
		row-gap: calc(48* var(--px));
	}
	
	.about .lead {
		
	}

	.about .text {
		text-align: left;
	}

	.about .col-img {
		text-align: center;
	}

	.about .img {
		width: calc(320 * .75 * var(--px));
	}
	
/*
============================= .did-you-know =============================
*/

	.did-you-know .sec-header {
		text-align: left;
		margin-bottom: calc(36 * var(--px));
	}

	.did-you-know .title {
		margin-bottom: 0;
	}

	.did-you-know .sec-header .lead {
		margin-top: calc(16 * var(--px));
	}

	.did-you-know .sub-sec.sub-sec {
		margin-top: 0;
	}

	.did-you-know .sub-sec + .sub-sec {
		margin-top: calc(48 * var(--px));
	}

	.did-you-know .row {
		/* row-gap: calc(40 * var(--px)); */
	}
	
	.did-you-know .sub-sec:nth-child(even) .row,
	.did-you-know .sub-sec:nth-child(odd) .row {
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
	}

	.did-you-know .text {
		text-align: left;
	}

	.did-you-know .col-text-inner {
		min-height: 0;
	}

	.did-you-know .img {
		width: 100%;
	}

/*
============================= .ingredients =============================
*/

	.ingredients .title {
		text-align: left;
		margin: 0;
	}

	.ingredients .lead {
		text-align: left;
		margin-top: calc(20 * var(--px));
		margin-bottom: calc(20 * var(--px));
		margin-inline: 0;
	}

	.ingredients .text {
		font-size: inherit;
		text-align: left;
		margin: 0;
	}

	.ingredients .img-wrap {
		margin: calc(32 * var(--px)) auto;
	}

/*
============================= .benefits =============================
*/
	
	.benefits .title {
		margin-bottom: calc(32* var(--px));
		/* font-size: calc(16 * var(--px)); */
	}

	.benefits-kv {
		margin: 0;
	}

	.benefits-kv-content,
	.benefits-kv-content-inner {
		/* margin: 0; */
		width: auto;
	}

	.benefits-kv .title {
		font-size: calc(18 * var(--px));
		margin-bottom: calc(18* var(--px));
	}
	
	.benefits-kv .text {
		margin: 0;
	}

	.benefits-kv .img-wrap {
		text-align: left;
		margin: calc(40* var(--px)) 0 0;
	}

	.benefits-kv .benefits-kv-bg {
		display: none;
	}

	.benefits-kv .benefits-kv-bg-sp {
		border-radius: calc(30 * var(--px)) 0 calc(30 * var(--px)) 0;
		display: block;
	}

	.benefits-kv .img {
		margin-left: 7%;
		margin-right: auto;
		margin-top: -26%;
		width: 59%;
		position: relative;
		z-index: 1;
		display: block;
	}

	.benefits-kv .caption {
		font-size: 9px;
		margin-left: 7%;
	}

	/* .benefit-list */

	.benefit-list {
		flex-direction: column;
		row-gap: calc(32 * var(--px));
		margin-top: calc(56 * var(--px));
	}

	.benefit-list li {
		align-items: center;
		column-gap: calc(24 * var(--px));
	}

	.benefit-list li::after {
		content: '';
		display: block;
		position: absolute;
		top: auto;
		bottom: -16px;
		left: 0;
		right: 0;
		border-right: none;
		border-bottom: 1px solid #c6c6db;
	}

	.benefit-item-img {
		align-self: flex-start;
		width: min(calc(56 * var(--px)), 82px);
	}

	.benefit-item-text {
		padding-top: 0;
	}

	.benefit-list .title {
		font-size: calc(16 * var(--px));
		margin-bottom: calc(6* var(--px));
	}

	.how-to-take {
		border-radius: calc(14 * var(--px));
		margin: calc(40 * var(--px)) 0 0;
		padding: calc(36 * var(--px)) calc(32 * var(--px));
	}

	.how-to-take .title {
		font-size: calc(18 * var(--px));
		margin-bottom: calc(20* var(--px));
	}

	.how-to-take .sub-title {
		font-size: calc(16 * var(--px));
		margin: 0 0 calc(12 * var(--px));
	}

	.how-to-take .text {
		font-size: inherit;
	}

	.how-to-take .col-img {
		text-align: center;
	}

	.precaution {
		margin: calc(12 * var(--px)) 0 0;
	}

/*
============================= .movies =============================
*/
	
	.movies .row {
		row-gap: calc(24 * var(--px));
		align-items: flex-start;
	}

	.movies .sub-sec:where(:nth-child(n + 2)) {
		margin: calc(48 * var(--px)) 0 0;
	}
	
	.movies .sub-sec:nth-child(even) .row {
		flex-direction: column;
		align-items: flex-start;
	}

	.movies .col-text {
		min-height: 0;
	}

	.link-movie {
		border-radius: calc(20 * var(--px));
		width: 100%;
	}

	.movie-thumb {
		width: 100%;
	}

	.movies .title {
		font-size: calc(21 * var(--px));
		margin-bottom: calc(12 * var(--px));
	}

	.movies .text {
		font-size: inherit;
	}

/*
============================= .about-taiho =============================
*/
	
	.about-taiho .row {
		flex-direction: column-reverse;
		row-gap: calc(40 * var(--px));
		margin: 0;
	}

	.about-taiho .img {
		width: 100%;
	}

	.about-taiho-logo {
		margin-top: 0;
	}

	.about-taiho .text {
		
	}

/*
============================= .about-taiho =============================
*/

	.footer {
		padding: calc(24 * var(--px)) 0;
	}

	.footer-row {
		align-items: center;
		flex-wrap: wrap;
		/* width: fit-content; */
		/* margin-inline: auto; */
	}

	.footer-content {
		display: contents;
	}

	.footer-content-sp {
		display: block;
	}

	.footer-logo img {
		width: min(calc(56 * var(--px)), 83px);
	}

	.footer-sns {
		column-gap: 14px;
	}

	.footer-nav {
		margin: calc(8* var(--px)) 0 0 calc(4* var(--px));
	}

	.copyright {
		width: 100%;
		text-align: center;
		font-size: 9px;
		margin: calc(16* var(--px)) 0 0;
	}

}

.reference-list {
	padding-left: 2.2em;
	font-size: 14px;
	line-height: 2.25;
	margin: 32px 0 0;
}

.reference-list li {
	padding-left: .5em;
}

.reference-list li::marker {
	font-weight: bold;
}

.reference .button-container {
	text-align: center;
	margin: 56px 0 0;
}

@media (max-width: 768px) {

	.reference {
		margin: calc(16 * var(--px)) 0 0;
	}

	.reference .title {
		margin-bottom: calc(24* var(--px));
	}

	.reference-list {
		font-size: 11px;
		margin: calc(24 * var(--px)) 0 0;
		line-height: 1.6;
	}

	.reference-list li {
		margin: calc(18 * var(--px)) 0 0;
	}

	.reference .button-container {
		margin: calc(44 * var(--px)) 0 0;
	}

}