/*
メインビジュアル：#mv
重要なお知らせ：#important
接種対象：#target
よくあるご質問：#faq
関連リンク：#link
*/


/* ----- header ----- */
header {
	position: relative;
	z-index: 999;
}

.humberger--w {
	position: fixed;
	height: 100%;
	width: 100%;
	justify-content: center;
	align-items: center;
	width: fit-content;
	left: 0;
	top: 0;
	right: 0;
	margin: 0 auto;
	z-index: 999;
	visibility: hidden;
	gap: 5vw;
}

.humberger--w::after {
	content: "";
	background: url(../img/hunberger-line.svg) no-repeat;
	display: block;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: auto;
	margin: 0 auto;
	aspect-ratio: 1440 / 191;
	background-size: 100% 100%;
	z-index: -1;
	opacity: .7;
}

.humberger--w .img--w {
	opacity: 0;

	-webkit-transition: all .5s ease-out;
	transition: all .5s ease-out;

	-webkit-transition-delay: .1s;
	transition-delay: .1s;
}

#global-nav {
	visibility: hidden;
	/* position: fixed; */
	display: table;
	vertical-align: middle;
	color: #fff;
	top: 0;
	/* height: 100%;
	width: 100%; */
	/* text-align: center; */
	text-align: left;
}

#global-nav ul {
	display: table-cell;
	vertical-align: middle;
	list-style: none;
}

#global-nav a {
	text-decoration: none;
	/* display: block; */
	display: flex;
	align-items: center;
	padding: 10px 0;
	gap: .5rem;
	transition: .2s;
}

#global-nav a:hover {
	color: var(--color-pink-light);
}

#global-nav a::before {
	content: "";
	background: url(../img/icon-pink.svg) no-repeat;
	width: calc(var(--font-size-base) * 1px);
	height: auto;
	aspect-ratio: 21 / 32;
	display: block;
}

#global-nav ul li {
	opacity: 0;
	-webkit-transform: scaleX(0) translateX(-260px);
	transform: scaleX(0) translateX(-260px);
	-webkit-transition: none;
	transition: none;

	border-top: 1px dashed var(--color-white);
}

#global-nav ul li:last-child {
	border-bottom: 1px dashed var(--color-white);
}

#nav-bg {
	content: "";
	width: 4380px;
	height: 4380px;
	margin-right: -2200px;
	margin-top: -2200px;
	top: 5em;
	right: 5em;
	display: block;
	position: fixed;
	background: var(--color-blue-light);
	-webkit-border-radius: 50%;
	border-radius: 50%;
	-webkit-transition: all .3s ease-out;
	transition: all .3s ease-out;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: scale(.02);
	transform: scale(.02);
	opacity: 0;
}

#nav-toggle {
	position: fixed;
	right: 18px;
	top: 21px;
	width: 7em;
	height: 7em;
	cursor: pointer;
	padding: 10px 11px;
	z-index: 1001;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

#nav-toggle div {
	position: relative;
}

#nav-toggle .img-wrapper::after {
	content: "メニュー";
	font-size: calc(var(--font-size-base) / 1.75 * 1px);
	color: var(--color-black);
	width: 100%;
	text-align: center;
	display: block;
	padding: 0.25em 0 0;
}

body.open {
	overflow: hidden;
}

.open #global-nav,
.open .humberger--w {
	z-index: 999;
	visibility: visible;
}

.open #global-nav ul li {
	opacity: 1;
	-webkit-transform: scaleX(1) translateX(0);
	transform: scaleX(1) translateX(0);

	-webkit-transition: all .3s ease-out;
	transition: all .3s ease-out;

	-webkit-transition-delay: .1s;
	transition-delay: .1s;
}

.open #global-nav ul li:nth-child(2) {
	-webkit-transition-delay: .2s;
	transition-delay: .2s;
}

.open #global-nav ul li:nth-child(3) {
	-webkit-transition-delay: .3s;
	transition-delay: .3s;
}

.open #global-nav ul li:nth-child(4) {
	-webkit-transition-delay: .4s;
	transition-delay: .4s;
}

.open #global-nav ul li:nth-child(5) {
	-webkit-transition-delay: .5s;
	transition-delay: .5s;
}

.open #global-nav ul li:nth-child(6) {
	-webkit-transition-delay: .6s;
	transition-delay: .6s;
}

.open #nav-bg {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: all .6s ease-out;
	transition: all .6s ease-out;
	opacity: 1;
}

.open #nav-toggle {
	background: transparent;
}

.open #nav-toggle .img-wrapper::after {
	content: "閉じる";
	font-size: calc(var(--font-size-base) / 1.75 * 1px);
	color: var(--color-white);
	width: 100%;
	text-align: center;
	display: block;
	padding: 0.25em 0 0;
}

.open .humberger--w .img--w {
	opacity: 1;
}


/* ----- MV ----- */
#scroll {
	position: fixed;
	right: 1em;
	bottom: 1em;
	width: 50%;
	max-width: 20em;
	z-index: 900;
	padding: 0;
}

.mv-wrapper,
.news-wrapper {
	padding: var(--padding-pc) var(--padding-pc) calc(var(--padding-pc) / 2);
	position: relative;
}

.mv-wrapper .l-left,
.news-wrapper .l-left {
	position: absolute;
	top: 0;
	left: 0;
}

.mv-wrapper nav li a,
.news-wrapper nav li a {
	font-size: calc(var(--font-size-base) / 1.25 * 1px);
	padding: 1rem 0;
	transition: .2s;
	text-align: left;
}

.mv-wrapper nav li a:hover,
.news-wrapper li a:hover {
	color: var(--color-pink);
}

.news-wrapper h3 {
	text-align: left;
	margin-bottom: 1rem;
}

.news-wrapper a {
	padding: 1rem 0;
}

.news-wrapper time {
	padding: 0 2rem 0 0;
}

.news-wrapper p {
	padding: .25rem 0;
}

.category {
	font-size: calc(var(--font-size-base) / 2 * 1px);
	border-radius: 3rem;
	padding: 0.25rem 1rem;
}



/* ----- メディア ----- */
.media-wrapper .l-left {
	height: 10rem;
	width: 25%;
	text-align: center;
}

.media-wrapper .l-right {
	width: calc(74.5% - 4rem);
	text-align: center;
}



/* ----- 重要なお知らせ ----- */
#important .l-inner .l-inner {
	padding-inline: calc(var(--padding-pc) * 2);
}

#important .icon .flex {
	justify-content: center;
}

.important-wrapper {
	padding: var(--margin-pc) 0;
}

.important-wrapper .bg-rudius.contents {
	padding: 0;
}

.important-wrapper .bg-rudius.contents .bg-rudius.contents {
	border-radius: 3rem 3rem 0 0;
	/* padding: calc(var(--padding-pc) / 2) var(--padding-pc); */
	padding: var(--padding-pc);
}

.important-wrapper .asterisk li {
	justify-content: center;
}

.important-wrapper .schedule-wrapper.l-inner,
.important-wrapper .point-wrapper.l-inner {
	padding-top: 0;
}

.important-wrapper .schedule-wrapper .flex {
	align-items: center;
}

.schedule h4 {
	text-align: left;
}

/* .important-wrapper .l-left {
	width: 40%;
}

.important-wrapper .l-right {
	width: calc(60% - 2rem);
} */

.important-wrapper .l-left .title,
.important-wrapper .l-right .title {
	display: block;
	margin-bottom: 1rem;
}

.important-wrapper .point-wrapper {
	margin-top: 2rem;
}

.important-wrapper .point-wrapper li {
	padding: 2rem 0;
}

.important-wrapper .point-wrapper h3 {
	text-align: left;
	margin-bottom: .3rem;
}

.important-wrapper .point-wrapper h4 {
	text-align: left;
	margin-top: 1rem;
	margin-bottom: .75rem;
}




/* ----- 接種対象 ----- */
#target {}

.target-wrapper {}


.tab-switch {
	margin-top: 2rem;
	justify-content: center;
	gap: 0 2rem;
}

.tab-switch label {
	cursor: pointer;
	order: -1;
	text-align: center;
	position: relative;
	width: calc(100% / 2 - 1rem);
}

.tab-switch label img {
	max-width: 80%;
}

.tab-switch input {
	display: none;
}

.tab-switch .l-label {
	background-color: var(--color-white);
	border: 2px solid var(--color-pink-dullness);
}

.tab-switch label:has(:checked) .l-label {
	background-color: var(--color-pink-light);
	border: 2px solid var(--color-pink-dullness);
}

.tab-switch label:has(:checked)+.tab-content {
	display: block;
}

.tab-switch label:has(:checked) .l-label {
	position: relative;
}

.tab-switch label:has(:checked) .l-label::before {
	content: '';
	position: absolute;
	/* top: calc(100% - 4px); */
	bottom: -9px;
	left: 50%;
	transform: translateX(-50%);
	width: 18px;
	height: 9px;
	background-color: var(--color-pink-light);
	border: 2px solid transparent;
	border-bottom: 1px solid var(--color-pink-dullness);
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	z-index: 2;
}

.tab-switch label:has(:checked) .l-label::after {
	content: '';
	position: absolute;
	/* top: calc(100% - 4px); */
	bottom: -11px;
	left: 50%;
	transform: translateX(-50%);
	width: 24px;
	height: 0;
	border: 3px solid transparent;
	border-bottom: 11px solid var(--color-pink-dullness);
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	z-index: 1;
}

.tab-content {
	display: none;
	width: 100%;
	border: 2px solid var(--color-pink);
	margin-top: 20px;
	padding-inline: calc(var(--padding-pc) * 2);
	padding-bottom: 4rem;
}

.tab-content .contents {
	align-items: center;
}

.tab-content .l-left {
	width: 25%;
}

.tab-content .l-right {
	width: calc(75% - 2rem);
}

.tab-content .l-right .txt-copy {
	padding-top: 0.5rem;
	padding-bottom: 1rem;
}

.tab-content .txt-copy {
	text-align: left;
}

.tab-content ul {}

.tab-content ul li {
	margin-top: 3rem;
	color: var(--color-blue);
}

.tab-content ul .l-right p,
.tab-content ul .l-right .img-wrapper {
	padding-bottom: 0.5rem;
}

.tab-switch .img-wrapper:not(.l-left) {
	width: 100%;
	margin: 0 auto;
}

.tab-switch label .img-wrapper:not(.l-left) {
	width: 65%;
	margin: 0 auto;
}

.l-label {
	padding: 2.5rem 1rem;
	border-radius: 100vh;
}

.l-label .txt-lg {
	text-align: center;
}


/* ----- 子宮頸がんって何？ ----- */
#whats-cancer {
	/* padding-bottom: calc(var(--margin-pc) / 1.5 * 2); */
	padding-bottom: 0;
}

#whats-cancer .l-inner {
	padding-block: calc(var(--margin-pc) / 1.5);
}

#whats-cancer .l-inner .bg-rudius {
	padding-block: 4rem;
	padding-inline: calc(var(--padding-pc) * 2);
}

#whats-hpv .l-inner .bg-rudius {
	padding-block: 4rem;
	padding-inline: calc(var(--padding-pc) * 2);
}

#whats-cancer .bg-wave-blue p {
	text-align: center;
}

#whats-cancer .flex .l-left {
	width: calc(40% - 1.5rem);
}

#whats-cancer .flex .l-right {
	width: calc(60% - 1.5rem);
}

#whats-cancer .flex .l-left div {
	margin-bottom: 2rem;
	text-align: left;
}

.bg-wave-blue {
	aspect-ratio: 872 / 83;
	margin: 1.5rem auto 2rem auto;
	background: url(../img/whats-cancer_ttl-bg.svg) no-repeat;
	background-size: 100% 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 90%;
}

#whats-cancer .flex.jc-sb {
	margin: 2rem auto;
}


/* ----- 子宮頸がんにならないためには早めの予防が必要！ ----- */
#yobou {
	/*
	background-color: var(--color-white);
	padding-top: calc(var(--margin-pc) / 1.5 * 2);
	margin-top: calc(var(--margin-pc) / 1.5 * -3);
	*/
	padding-bottom: 0;
}

.hpv-wrapper,
.check-wrapper {
	position: relative;
	z-index: 20;
}

.hpv-wrapper .title-wrapper,
.check-wrapper .title-wrapper {
	position: relative;
	color: var(--color-white);
}

.hpv-wrapper .title-wrapper .l-left,
.check-wrapper .title-wrapper .l-left {
	width: 100%;
}

.check-wrapper .title-wrapper .l-right {
	position: absolute;
	bottom: -2rem;
	right: 1.5rem;
	z-index: -1;
	width: 42%;
}

.hpv-wrapper .title-wrapper .l-right {
	position: absolute;
	bottom: -4rem;
	right: 1.5rem;
	z-index: -1;
}

.hpv-wrapper .l-wrapper,
.check-wrapper .l-wrapper {
	position: relative;
}

.hpv-wrapper .l-wrapper::before,
.check-wrapper .l-wrapper::before {
	content: "";
	background-repeat: no-repeat;
	position: absolute;
	background-size: 100%;
	z-index: 0;
}

.hpv-wrapper .l-wrapper::before {
	width: 17%;
	height: auto;
	background-size: 100% 100%;
	aspect-ratio: 152.87 / 30.3;
	background-image: url(../img/yobou-1-hand.svg);
	top: -10px;
	right: 12%;
}

.check-wrapper .l-wrapper::before {
	width: 13%;
	height: auto;
	aspect-ratio: 94 / 133;
	background-image: url(../img/yobou-2-hand.svg);
	top: -6rem;
	right: 12rem;
}

#yobou .l-inner .l-wrapper .txt-md {
	display: inline-block;
	line-height: 1.5;
	text-align: center;
	font-size: clamp(20px, 1.88vw, 28px);
}

#yobou .l-inner .teiki {
	position: relative;
	margin: 2rem 0;
}

#yobou .l-inner .teiki::after {
	content: "";
	display: block;
	background: url(../img/inoculation.svg) no-repeat;
	background-size: 100% 100%;
	aspect-ratio: 1 / 1;
	width: 6rem;
	height: auto;
	position: absolute;
	top: calc(-5rem / 4);
	left: calc(-5rem / 4);
}

table th,
table td {
	border: 1px solid var(--color-pink);
	padding: 0.5rem;
}

#yobou .flex .l-right:not(.img--w) {
	width: 65%;
}

#yobou .flex .l-left {
	/* width: 35%; */
	width: fit-content;
	text-align: left;
}

#yobou .flex .l-left .txt-copy {
	text-align: left;
	font-size: 350%;
	margin-bottom: 1rem;
	line-height: 1.2;
}

.yobou-ttl {
	/* padding: 3rem 0 6rem 0; */
	padding: 6rem 0 3rem;
	background: #EC6D88;
	color: var(--color-white);
}

.pink-content {
	background: var(--color-pink);
}

.pink-content {
	position: relative;
	padding-bottom: 10%;
	background: #EC6D88;
}

.pink-cont--w,
.blue-cont--w {
	width: 55%;
	margin: 0 0 0 auto;
}

.blue-content {
	background: #7ECCE2;
}

.bg-color {
	position: relative;
}

.bg-color::before {
	content: "";
	display: flex;
	align-items: center;
	background: url(../img/progress.svg) no-repeat;
	width: calc((var(--l-inner) * 1px + var(--padding-pc) * 2) - 50%);
	left: calc((100% - (var(--l-inner) * 1px + var(--padding-pc) * 2)) / 2);
	background-size: 100% 100%;
	height: 90%;
	position: absolute;
	z-index: 1;
	background-position: center center;
	height: 100%;
	min-width: 27rem;
}

/* ピンクのなみなみ */
.custom-shape-divider-bottom-1764835651 {
	position: absolute;
	bottom: 0;
	width: 100%;
	left: 0;
	overflow: hidden;
	transform: rotate(180deg);
}

.custom-shape-divider-bottom-1764835651 svg {
	position: relative;
	display: block;
	width: calc(137% + 1.3px);
	height: 125px;
}

.shape-fill {
	fill: #7ECCE2;
}

.blue-content .l-wrapper .bg-blue-lighter {
	margin: 2rem 0;
}



/* ----- HPVワクチンって何？ ----- */
#whats-hpv {
	padding-bottom: 0;
}

#whats-hpv .l-inner {
	/* 
	padding-top: calc(var(--margin-pc) / 1.5);
	padding-bottom: calc(var(--margin-pc) / 1.5);
	margin-top: calc(var(--margin-pc) / 1.5 * -2);
	*/
	padding-block: calc(var(--margin-pc) / 1.5);
}

.sp-flow-img--w {
	display: none;
}

.bg-wave-pink-01,
.bg-wave-pink-02,
.bg-wave-pink-03 {
	color: var(--color-white);
	display: flex;
	align-items: center;
	justify-content: center;
	height: auto;
}

.bg-wave-pink-01 {
	aspect-ratio: 837 / 100;
	background: url(../img/whats-hpv_ttl-bg.svg) no-repeat;
	background-size: 100% 100%;
	width: 90%;
	margin: 2rem auto;
}

.bg-wave-pink-02 {
	aspect-ratio: 431 / 92;
	background: url(../img/whats-hpv_ttl-bg02.svg) no-repeat;
	margin: 2rem auto 2rem 0;
	width: 40%;
	background-size: 100% 100%;
}

.bg-wave-pink-03 {
	aspect-ratio: 546 / 120;
	background: url(../img/whats-hpv_ttl-bg03.svg) no-repeat;
	background-size: 100% 100%;
	width: 50%;
	margin: 2rem auto;
}

#whats-hpv .reaction .img-wrapper {
	margin: auto 0 0 auto;
	width: 45%;
}

#whats-hpv .reaction .l-left {
	display: flex;
	flex-direction: column;
	width: 35%;
}

#whats-hpv .vaccine .l-left {
	width: 35%;
}

#whats-hpv .reaction .l-right,
#whats-hpv .vaccine .l-right {
	width: 60%;
}

#whats-hpv .reaction .l-right .txt-md {
	font-size: 80%;
}

#whats-hpv .reaction .l-right ul li {
	width: fit-content;
	margin: 0 0 0 auto;
}

#whats-hpv .reaction .flex {
	justify-content: space-between;
}

#whats-hpv .vaccine .l-right .table-01 {
	width: 100%;
}

#whats-hpv .reaction table th {
	background: #FBDED3;
}

#whats-hpv table {
	background: #FFFFF9;
}

.radius-table {
	border-radius: 10px;
	border-spacing: 0;
	border-left: 1px solid var(--color-pink);
	border-top: 1px solid var(--color-pink);
	border-collapse: inherit;
}

.radius-table th {
	width: 25%;
}

.radius-table.table-01 th {
	width: 35%;
}

.radius-table.table-01 tr:first-child>*:last-child {
	vertical-align: middle;
}

.radius-table tr>* {
	border: none;
	border-right: 1px solid var(--color-pink);
	border-bottom: 1px solid var(--color-pink);
}

.radius-table tr:first-child>*:first-child {
	border-radius: 10px 0 0 0;
}

.radius-table tr:first-child>*:last-child {
	border-radius: 0 10px 0 0;
}

.radius-table tr:last-child>*:first-child {
	border-radius: 0 0 0 10px;
}

.radius-table tr:last-child>*:last-child {
	border-radius: 0 0 10px 0;
}

#whats-hpv .link--w {
	margin-top: 2rem;
}



/* ----- FAQ ----- */
#faq {
	/*
	padding-top: calc(var(--margin-pc) / 1.5 * 2);
	margin-top: calc(var(--margin-pc) / 1.5 * -3);
	*/
	border-bottom: var(--color-pink) solid 20px;
}

.faq-list {
	margin-top: 2rem;
}

#faq .details-summary {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
}

#faq .details-summary::before {
	content: "Q.";
	color: var(--color-pink);
	font-size: 2rem;
	font-family: var(--font-family-h);
	font-weight: 700;
	white-space: nowrap;
}

#faq .details-summary .question {
	width: 90%;
}

#faq details .details-content {
	padding: 1rem 1rem 1rem 4.5rem;
}



/* ----- 関連リンク ----- */
#link {
	background: var(--color-white);
	padding: 0 0 calc(var(--margin-pc) * 1.5);
}

#link h2 {
	margin: 5% 0;
}

#link ul {
	display: flex;
	flex-direction: column;
	gap: 3rem;
}

#link ul li .img-wrap {
	border-radius: 10px;
	overflow: hidden;
	aspect-ratio: 400 / 252;
	height: auto;
	width: 100%;
	border: 5px solid var(--color-pink);
}

#link ul li h3 {
	text-align: left;
	padding-bottom: .5rem;
	border-bottom: dotted 3px var(--color-pink-light);
	transition: .2s;
}

#link ul li p {
	padding-top: .5rem;
}

#link ul li a {
	justify-content: space-between;
}

#link ul li a .l-left {
	width: 40%;
}

#link ul li a .l-right {
	width: 55%;
}

#link ul li a:hover h3 {
	color: var(--color-pink);
}

#link ul li a img {
	transition: .2s;
}

#link ul li a:hover img {
	transform: scale(1.05);
}

/* ----- フッター ----- */
footer .ttl-img--w {
	align-items: center;
	width: 65%;
}

.footer--w {
	align-items: center;
	padding: 0 5%;
	justify-content: space-between;
	background: linear-gradient(180deg, var(--color-white) 0%, var(--color-white) 15%, var(--color-pink) 15%, var(--color-pink) 20%, var(--color-yellow-light) 20%, var(--color-yellow-light) 100%);
	background: linear-gradient(180deg, var(--color-white) 0%, var(--color-white) 10%, var(--color-pink) 10%, var(--color-pink) 15%, var(--color-yellow-light) 15%, var(--color-yellow-light) 100%);
}

footer .ttl-img--w .l-left {
	width: 55%;
}

footer .ttl-img--w .l-left .l-left {
	max-width: 24rem;
}

footer .ttl-img--w .l-right {
	padding-top: 5%;
	width: 40%;
}

footer nav.l-right {
	width: 35%;
	padding-top: 7%;
}

footer nav ul li a {
	padding: .5rem 0;
	transition: .2s;
}

footer nav ul li a:hover {
	color: var(--color-pink);
}

footer .copy {
	padding: 1rem;
	text-align: center;
}

/* =====================
レスポンシブ
===================== */
/* ----- max-width: 1000px ----- */
@media screen and (max-width: 1000px) {

	/* お知らせ */
	.news-wrapper {
		margin: 8% 0 5% 0;
	}

	.news-wrapper .l-left {
		display: none;
	}

	.news-wrapper .l-right {
		width: 100%;
	}

	/* 子宮頸がんにならないためには早めの予防が必要！ */
	#yobou .flex .l-left .txt-copy {
		font-size: 300%;
	}

	#yobou .l-inner .teiki::after {
		width: 5rem;
	}

	#yobou .l-inner .teiki {
		padding: 3rem 1rem;
	}

	#yobou .bg-blue-lighter {
		padding: 2rem 1rem;
	}

	.hpv-wrapper .title-wrapper .l-right {
		width: 35%;
		bottom: -2.5rem;
	}

	.hpv-wrapper .l-wrapper::before {
		width: 15%;
	}

	.check-wrapper .title-wrapper .l-right {
		width: 30%;
		bottom: -1rem;
	}

	.check-wrapper .l-wrapper::before {
		width: 10%;
		top: -3rem;
		right: 7rem;
	}

	#yobou .l-inner .l-wrapper .txt-copy,
	#yobou .l-inner .l-wrapper .txt-md {
		font-size: clamp(20px, 2.7vw, 24px);
		font-size: clamp(20px, 2.7vw, 24px);
	}

	#yobou .l-inner .l-wrapper .txt-md {
		display: block;
	}

	#yobou .l-inner .l-wrapper .txt-md .txt-md {
		margin-bottom: .5rem;
	}

	/* footer */
	footer nav.l-right {
		width: 100%;
		padding: 5% 0;
	}

	footer nav.l-right ul {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 0 1rem;
	}

	footer .ttl-img--w {
		width: 70%;
		align-items: baseline;
	}

	footer .ttl-img--w .l-left,
	footer .ttl-img--w .l-right {
		width: 50%;
	}

	footer .line-pink-top:nth-of-type(4) {
		border-bottom: 1px dashed var(--color-pink);
	}

	.footer--w {
		background: linear-gradient(180deg, var(--color-white) 0%, var(--color-white) 25%, var(--color-pink) 25%, var(--color-pink) 30%, var(--color-yellow-light) 30%, var(--color-yellow-light) 100%);
	}

	.footer--w .ttl-img--w {
		width: 100%;
	}
}

/* ----- max-width: 950px ----- */
@media screen and (max-width:950px) {

	/* 子宮頸がんにならないためには早めの予防が必要！ */
	.sp-flow-img--w {
		display: block;
		margin-bottom: 2rem;
		position: relative;
		z-index: -1;
		width: 100%;
		margin: 0 auto 8rem;
	}

	.bg-color::before {
		content: none;
	}

	.yobou-ttl {
		padding: 3rem 0;
		margin-bottom: -1px;
	}

	.pink-cont--w,
	.blue-cont--w {
		width: 100%;
	}

	.hpv-wrapper .title-wrapper .l-right {
		width: 30%;
		bottom: -3rem;
	}

	.hpv-wrapper .l-wrapper::before {
		width: 13%;
		right: 8%;
	}

	.check-wrapper .l-wrapper::before {
		width: 9%;
		top: -4em;
		right: 9em;
	}

	.custom-shape-divider-bottom-1764835651 {
		margin-bottom: -1px;
	}
}

/* ----- max-width: 872px ----- */
@media screen and (max-width:872px) {
	#mv .mv-wrapper .l-left {
		top: 50%;
		transform: translateY(-50%);
	}
}

@media screen and (min-width:769px) {
	.sp {
		display: none;
	}
}

/* ----- max-width: 768px ----- */
@media screen and (max-width:768px) {
	.pc {
		display: none;
	}

	/* MV */
	.media-wrapper .l-left {
		width: 50%;
		height: 100%;
		margin: 0 auto;
	}

	.media-wrapper .l-right {
		width: 100%;
		margin-top: calc(var(--margin-sp) / 2);
	}

	/* #mv .mv-wrapper .l-left{
		top: 50%;
		transform: translateY(-50%);
	} */

	/* 重要なお知らせ */
	#important .important-wrapper .column2 {
		flex-direction: column;
		gap: 1rem;
	}

	.important-wrapper .column2 .l-left,
	.important-wrapper .column2 .l-right {
		width: 100%;
	}

	.important-wrapper .column2 .l-right .txt-lg {
		margin-bottom: .5rem;
	}

	.schedule-wrapper .flex .l-left {
		margin-bottom: calc(var(--margin-sp) / 4);
	}

	.important-wrapper .l-left,
	.important-wrapper .l-right {
		width: 100%;
	}

	.schedule-wrapper .flex .l-left,
	.schedule-wrapper .flex .l-right {
		width: 100%;
	}

	/* 
	.icon a {
		display: flex;
		align-items: center;
		justify-content: start;
	}
	
	.icon a .img-wrapper {
		width: 1rem;
		margin-right: 0.5rem;
	}
	
	.icon span {
		width: calc(100% - 2rem);
	}
	
	.icon .flex {
		display: flex;
		align-items: center;
	} */

	/* HPVワクチンの接種対象 */
	.target-list .details,
	.target-list .details:last-of-type {
		border: none;
	}

	.target-list .details {
		border: var(--color-pink) 2px solid !important;
		background-color: var(--color-white);
		margin-top: calc(var(--margin-sp) / 4);
	}

	.target-list .flex {
		align-items: center;
	}

	.target-list .question {}

	.target-list .question .img-wrapper {
		width: 30%;
	}

	.target-list .question p.txt-lg {
		width: 65%;
		font-size: 95%;
	}

	.target-list .details-summary .question {
		width: calc(100% - var(--font-size-base) * 1.25px);
	}

	.target-list .details-content {
		margin-top: 3rem;
	}

	.target-list .details-content ul li.flex {
		margin-top: 3rem;
	}

	.target-list .details-content ul li.flex .img-wrapper {
		margin: 2rem auto;
	}

	.target-list .details-content .l-left,
	.target-list .details-content .l-right {
		width: 100%;
	}

	.target-list .details-content .l-left {
		margin-bottom: 1rem;
	}

	.target-list .details-content .l-right .txt-copy {
		margin-bottom: 1rem;
	}

	.target-list .l-right.txt-blue p.txt-lg {
		display: none;
	}

	.target-list .l-right.txt-blue p.line-pink-bottom {
		border-bottom: none;
		margin: 0 auto;
	}

	/* 子宮頸がんって何？ */
	#whats-cancer .l-inner .bg-rudius.sp {
		padding-block: 1rem;
		margin-top: 2rem;
	}

	#whats-cancer .flex.jc-sb .l-left,
	#whats-cancer .flex.jc-sb .l-right {
		width: 100%;
	}

	#whats-cancer .flex.jc-sb .l-left {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}

	#whats-cancer .flex.jc-sb .l-left div {
		width: calc(100% / 2 - 1rem);
	}

	/* HPVワクチンって何？ */
	.bg-wave-pink-03 {
		width: fit-content;
		padding: 1.5rem;
	}

	#yobou .l-inner .l-wrapper .txt-copy {
		font-size: 200%;
		margin-bottom: 1rem;
	}

	#whats-hpv .l-inner .bg-rudius.sp {
		padding-block: 1rem;
		margin-top: 2rem;
		margin-bottom: 1rem;
	}

	#whats-hpv .vaccine,
	#whats-hpv .side-reactions {
		margin-top: 1rem;
	}

	#whats-hpv .vaccine .l-left,
	#whats-hpv .vaccine .l-right,
	#whats-hpv .side-reactions .l-left,
	#whats-hpv .side-reactions .l-right {
		width: 100%;
		margin-bottom: 1rem;
	}

	#whats-hpv .side-reactions .l-left {
		display: flex;
		justify-content: space-between;
		flex-direction: initial;
	}

	#whats-hpv .reaction .l-left p {
		width: 70%;
	}

	#whats-hpv .reaction .l-left .img-wrapper {
		width: calc(30% - 2rem);
	}

	#whats-hpv .reaction .l-right p {
		margin-bottom: .5em;
	}

	#whats-hpv .link--w .link-btn {
		margin-top: 1rem;
	}

	/* よくあるご質問 */
	.bg-wave-t {
		padding-top: calc(var(--margin-pc) / 1.3);
	}
}

/* ----- max-width: 680px ----- */
@media screen and (max-width:680px) {
	html {
		font-size: 2.5vw;
	}

	/* 🍔 */
	.humberger--w .img--w {
		width: 30%;
	}

	#nav-toggle .img-wrapper::after,
	.open #nav-toggle .img-wrapper::after {
		font-size: calc(var(--font-size-base) / 2.5 * 1px);
		padding: 0.5em 0 0;
	}

	/* mv */
	#mv .mv-wrapper .bg-white {
		flex-direction: column;
		justify-content: center;
	}

	#mv .mv-wrapper .l-left {
		width: 70%;
		position: unset;
		transform: unset;
		margin: 0 auto;
	}

	#mv .mv-wrapper .l-right {
		width: 100%;
	}

	#mv .mv-wrapper .l-right .img-wrapper {
		width: 70%;
		margin: -35% auto 0;
		position: relative;
		z-index: 1;
	}

	#mv .mv-wrapper .l-right .line-pink-top .img-wrapper {
		width: 1rem;
		margin: 0 1rem 0 0;
	}

	/* HPVワクチンの接種対象？ */
	.tab-switch {
		flex-direction: column;
		gap: 1rem;
	}

	.tab-switch label {
		width: 100%;
		position: relative;
	}

	.tab-switch .l-label {
		padding: 1rem;
	}

	.tab-switch .img-wrapper:not(.l-left) {
		width: 100%;
	}

	.tab-switch label .img-wrapper:not(.l-left) {
		width: 20%;
		/* position: absolute;
		bottom: 2px;
		left: 2rem;
		z-index: 1; */
	}

	.tab-content .l-left.img-wrapper {
		width: 40%;
	}

	.tab-content .content-ttl {
		flex-direction: column;
	}

	.tab-content .content-ttl .l-right {
		width: 100%;
	}

	.tab-content ul li {
		flex-direction: column;
		gap: 1rem;
	}

	.tab-content ul li .l-left,
	.tab-content ul li .l-right {
		width: 100%;
	}

	.tab-content ul.asterisk li {
		flex-direction: unset;
	}

	/* 子宮頸がんって何？ */
	#whats-cancer .flex.jc-sb {
		flex-direction: column;
		gap: 2rem;
	}

	#whats-cancer .flex .l-left {
		width: 100%;
	}

	#whats-cancer .flex .l-left .img--w {
		width: 50%;
		margin: 0 auto;
	}

	#whats-cancer .flex .l-right {
		width: 100%;
	}

	#whats-cancer .flex.jc-sb .l-left div {
		width: 100%;
		margin-bottom: 2rem;
	}

	/* 早めの予防が必要！ */
	.hpv-wrapper .title-wrapper .l-right {
		bottom: -2rem;
	}

	/* HPVワクチンって何？ */
	.preventive-vaccine .vaccine,
	.reaction .side-reactions {
		flex-direction: column;
		gap: 1rem;
	}

	#whats-hpv .vaccine .l-left,
	#whats-hpv .vaccine .l-right,
	#whats-hpv .reaction .l-left,
	#whats-hpv .reaction .l-right {
		width: 100%;
	}

	#whats-hpv .reaction .l-left {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		gap: 1rem;
	}

	#whats-hpv .reaction .l-left p {
		width: 70%;
		order: 2;
	}

	#whats-hpv .reaction .l-left .img-wrapper {
		width: 20%;
		order: 1;
		margin: 0 auto;
	}

	.bg-wave-pink-02 {
		margin: 2rem auto;
		width: 50%;
	}

	/* 相談窓口・関連リンク */
	#link ul li a {
		flex-direction: column;
	}

	#link ul li a .l-left,
	#link ul li a .l-right {
		width: 100%;
	}

	#link ul li a .l-right {
		margin-top: 1rem;
	}

	#link ul li h3 {
		text-align: center;
	}

	/* footer */
	.footer--w {
		padding: 0 5%;
	}
}

/* ----- max-width: 430px ----- */
@media screen and (max-width: 430px) {
	html {
		font-size: 3.5vw;
	}

	.bg-wave-t {
		margin-bottom: -1px;
	}

	.bg-wave-b {
		margin-top: -1px;
	}

	/* 🍔 */
	.humberger--w {
		flex-direction: column;
	}

	.humberger--w .img--w {
		width: 40%;
	}

	/* mv */
	#mv .mv-wrapper .l-left {
		width: 95%;
	}

	#mv .mv-wrapper .l-right .img-wrapper {
		width: 85%;
	}

	.mv-wrapper nav li a {
		font-size: calc(var(--font-size-base) / 1.3 * 1px);
		font-size: calc(var(--font-size-base) / 1.5 * 1px);
	}

	.media-wrapper .l-inner {
		flex-direction: column;
		gap: 2rem;
	}

	.media-wrapper .l-left,
	.media-wrapper .l-right {
		height: auto;
		width: 100%;
		margin: 0 auto;
	}

	.media-wrapper .l-left .img-wrapper {
		width: 60%;
		margin: 0 auto;
	}

	.category {
		font-size: 2.5vw;
	}

	/* 重要なお知らせ */
	.important-wrapper {
		padding: var(--padding-sp) 0;
	}

	.important-wrapper .bg-rudius.contents .bg-rudius.contents {
		padding: 1rem;
	}

	.important-wrapper .schedule-wrapper .flex {
		/* flex-direction: column;
		gap: 1rem; */
	}

	.important-wrapper .l-left,
	.important-wrapper .l-right {
		width: 100%;
	}

	/* まずは調べてみよう！ */
	.tab-content .l-left.img-wrapper {
		width: 70%;
	}

	/* まずは調べてみよう */
	.bg-wave-blue {
		background: url(../img/whats-hpv_ttl-bg04_blue.svg) no-repeat;
		aspect-ratio: 546 / 144;
		background-size: 100% 100%;
		width: 100%;
		background-position: center center;
	}

	/* 子宮頸がんって何 */
	#whats-cancer .flex .l-left .img--w {
		width: 80%;
	}

	/* 早めの予防が必要！ */
	/* .sp-flow-img--w {
		width: 70%;
	} */

	#yobou .flex .l-left .txt-copy {
		font-size: 200%;
	}

	.hpv-wrapper .title-wrapper .l-right,
	.check-wrapper .title-wrapper .l-right {
		width: 35%;
	}

	.hpv-wrapper .l-wrapper::before {
		width: 16%;
		right: 11%;
	}

	.check-wrapper .l-wrapper::before {
		top: -3rem;
		right: 8rem;
	}

	#yobou .l-inner .teiki::after {
		width: 4rem;
	}

	#yobou .l-inner .teiki.bg-rudius,
	#yobou .l-inner .bg-blue-lighter.bg-rudius {
		padding: 2rem 1rem;
	}

	#yobou .l-inner .l-wrapper .txt-md {
		display: block;
	}

	#yobou .l-inner .l-wrapper .txt-md .txt-md {
		margin-bottom: .5rem;
	}

	.custom-shape-divider-bottom-1764835651 svg {
		height: 60px;
	}

	/* HPVワクチンって何？ */
	.bg-wave-pink-01,
	.bg-wave-pink-02,
	.bg-wave-pink-03 {
		background: url(../img/whats-hpv_ttl-bg04.svg) no-repeat;
		width: 100%;
		background-size: 100% 100%;
		aspect-ratio: 546 / 144;
	}

	#whats-hpv .reaction .l-left {
		align-items: end;
	}

	/* よくあるご質問 */
	#faq .details-summary .question {
		width: 80%;
	}

	#faq .bg-wave-t {
		padding-top: calc(var(--margin-sp) / 1.5);
	}

	/* 関連リンク */
	#link ul li a .l-right {
		margin-top: 1rem;
	}

	/* フッター */
	footer .ttl-img--w {
		width: 100%;
	}

	footer nav.l-right ul {
		grid-template-columns: 1fr;
	}

	footer .line-pink-top:nth-of-type(4) {
		border-bottom: none;
	}
}


/* ----- max-width: 375px ----- */
@media screen and (max-width: 375px) {

	/* 🍔 */
	#nav-toggle {
		width: 6rem;
		height: 6rem;
	}

	.humberger--w .img--w {
		width: 30%;
	}

	/* MV */
	.mv-wrapper nav li a {
		text-align: left;
	}

	.mv-wrapper nav li a {
		font-size: calc(var(--font-size-base) / 1.4 * 1px);
	}

	/* 早めの予防が必要 */
	.hpv-wrapper .title-wrapper .l-right {
		bottom: -1.5rem;
	}

	.check-wrapper .l-wrapper::before {
		top: -2rem;
		right: 7rem;
	}

	.bg-wave-pink-03 .sp {
		display: none;
	}
}


/*==================
#loading
==================*/
#loading {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	background: #fff;
	text-align: center;
}

#loading_box {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#loading .kvArea {
	width: 100%;
}

#loading .kvArea .img_box {
	text-align: center;
}

#loading .kvArea .img_box img {
	max-width: 100%;
	height: auto;
}

.fadeUp {
	animation-name: fadeUpAnime;
	animation-duration: 1.2s;
	animation-delay: 1.2s;
	animation-fill-mode: forwards;
	opacity: 1;
}

@keyframes fadeUpAnime {
	from {
		opacity: 1;
		transform: translateY(0);
	}

	to {
		opacity: 0;
		transform: translateY(-100px);
	}
}