/********************
*  共通スタイル
********************/
:root {
	/* color */
	--fc_red: #FF4158;
	--fc_pink: #FF808F;
	/* font family */
	--got_font: "Noto Sans JP", sans-serif;
	--min_font: "Noto Serif JP", serif;
	--en_font: "EB Garamond", serif;
}

body {
	font-family: var(--got_font);
	font-weight: 300;
	line-height: 1.8;
	color: #440910;
	margin: 0;
}

img {
	max-width: 100%;
}

.container {
	max-width: 1100px;
}

/********************
* Utility
********************/
.u-shadow-red {
	text-shadow: 0 0 20px rgba(255, 0, 0, 0.34);
}

ul,
ol {
	padding: 0;
	list-style: none;
}

p,
h1,
h2,
h3,
h4,
h5 {
	margin: 0;
}

a {
	color: unset;
	text-decoration: none;
}

/***** font family *****/
.min_font {
	font-family: var(--got_font);
}

/***** font size *****/
.fontSS {
	font-size: 12px;
}

.fontS {
	/* 14px */
	font-size: clamp(0.75rem, 0.705rem + 0.23vw, 0.875rem);
}

.fontDefault {
	/* 16px */
	font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
}

.fontM {
	/* 18px */
	font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
}

.fontL {
	/* 20px */
	font-size: clamp(1.125rem, 1.08rem + 0.23vw, 1.25rem);
}

.font3L {
	/* 24px */
	font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem);
}

/***** color *****/
.fc_red {
	color: var(--fc_red);
}

/***** fadein *****/
.fadein {
	transform: translateY(30px);
	opacity: 0;
	visibility: hidden;
	transition: transform 1s, opacity 1s, visibility 1s;
}

.is-fadein {
	transform: translateX(0);
	opacity: 1;
	visibility: visible;
}

/********************
*  ttl
********************/
.ttl_block {
	position: relative;
	padding-top: 120px;
}

.ttl_blocks {
	text-align: center;
}

.ttl_block::after {
	content: "";
	width: 120px;
	height: 1px;
	background-color: var(--fc_red);
	position: absolute;
	top: 58px;
	left: 0;
	transform: rotate(-70deg);
}

.ttl_block.center::after {
	position: absolute;
	left: 50%;
	transform: translateX(-50%) rotate(-70deg);
}

.ttl_block.wh::after {
	background-color: #fff;
}

.ttl_block .en_ttl {
	font-family: var(--en_font);
	font-weight: normal;
}

.ttl_block .ja_ttl {
	font-family: var(--min_font);
	font-weight: normal;
	font-size: clamp(1.5rem, 0.955rem + 2.73vw, 3rem);
}

@media screen and (max-width: 991px) {
	.ttl_block {
		padding-top: 71px;
	}

	.ttl_block::after {
		width: 63px;
		top: 37px;
	}
}

/********************
*  header/nav
********************/
.header_wrap {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 99;
}

.nav_wrap {
	padding: 15px 40px;
	display: flex;
	justify-content: space-between;
}

.nav_wrap .logo {
	position: relative;
	z-index: 9999;
}

.header__nav {
	position: absolute;
	right: 0;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	transform: translateX(100%);
	background-color: #fff;
	transition: ease .4s;
	display: block;
}

.header__nav .top_link {
	color: #440910;
	font-size: 12px;
	background-color: #fff;
	border-radius: 30px;
	line-height: 1;
	padding: 10px 20px 10px 30px;
	position: relative;
	border: 1px solid #D1D1D1;
	display: table;
}

.header__nav .top_link::after {
	position: absolute;
	content: "";
	background-image: url(../img/top_link_arr.svg);
	width: 8px;
	height: 8px;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
}

/* ナビのリンク */
.nav-items__item a {
	color: black;
	width: 100%;
	display: block;
	text-align: center;
	font-size: 14px;
	margin-bottom: 24px;
	color: black;
}

.nav-items__item:last-child a {
	margin-bottom: 0;
}

/* ハンバーガーメニュー */
.header__hamburger {
	width: 48px;
	height: 100%;
}

.hamburger {
	background-color: transparent;
	border-color: transparent;
	z-index: 9999;
}

/* ハンバーガーメニューの線 */
.hamburger span {
	width: 100%;
	height: 1px;
	background-color: #000;
	position: relative;
	transition: ease .4s;
	display: block;
}

.hamburger span:nth-child(1) {
	top: 0;
}

.hamburger span:nth-child(2) {
	margin: 8px 0;
}

.hamburger span:nth-child(3) {
	top: 0;
}

/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
	transform: translateX(0);
}

.hamburger.active span:nth-child(1) {
	top: 5px;
	transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	top: -13px;
	transform: rotate(-45deg);
}

@media screen and (min-width: 1201px) {
	.header__nav {
		position: relative;
		transform: initial;
		background-color: inherit;
		height: inherit;
		width: auto;
		padding-top: 40px;
	}

	.header__nav .top_link {
		position: absolute;
		top: 0;
		right: 0;
	}

	.nav-items {
		position: inherit;
		top: 0;
		left: 0;
		transform: translate(0, 0);
		display: flex;
		align-items: center;
		height: initial;
		gap: 30px;
	}

	.nav-items__item a {
		margin-bottom: 0;
	}

	.hamburger {
		display: none;
	}
}

@media screen and (max-width: 1200px) {
	.header__nav .top_link {
		margin: 100px auto 20px;
		font-size: 16px;
	}

	.nav_wrap {
		padding: 15px;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.nav_wrap .logo {
		max-width: 55%;
	}

	.nav-items__item a {
		font-size: 16px;
	}
}

/********************
*  main_wrap
********************/
.main_wrap {
	background-image: url(../img/main_bg.jpg);
	background-size: cover;
	background-position: center;
	min-height: 760px;
	position: relative;
}

.main_wrap::after,
.main_wrap::before {
	content: "";
	position: absolute;
}

.main_wrap::after {
	background-color: #fff;
	clip-path: polygon(0 0, 100% 0, 30% 100%, 0% 100%);
	width: 473px;
	height: 735px;
	max-width: 35%;
	left: 0;
	top: 60%;
	z-index: 7;
}

.main_wrap::before {
	background-image: url(../img/main_img02.svg);
	background-size: contain;
	background-repeat: no-repeat;
	width: 763px;
	height: 965px;
	max-width: 60%;
	left: 0;
	top: 0;
	z-index: 8;
}

.main_wrap .main_img {
	width: 529px;
	max-width: 48%;
	z-index: 9;
	position: absolute;
	left: 0;
	top: 100px;
}

.main_wrap .ttl_wrap {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 45vw;
}

.main_wrap .h1_ttl {
	color: var(--fc_red);
	/** 44px/22px **/
	font-size: clamp(1.375rem, 1.011rem + 1.82vw, 2.75rem);
	font-family: var(--min_font);
	font-weight: 100;
	margin-bottom: 30px;
	padding-left: 25px;
}

.main_wrap .h1_ttl span {
	display: table;
	border-bottom: 1px solid var(--fc_red);
	padding-bottom: 10px;
	margin-bottom: 15px;
}

.main_wrap .main_symptom {
	padding-left: 25px;
	font-family: var(--min_font);
}

.main_wrap .main_symptom_ttl {
	color: #7B4148;
	font-size: 16px;
	margin-bottom: 5px;
}

.main_wrap .main_symptom_list {
	display: table;
	color: #fff;
	background-color: #7B4148;
	font-size: clamp(0.75rem, 0.705rem + 0.23vw, 0.875rem);
	padding: 2px 10px;
	border-radius: 4px;
}

.main_wrap .main_lead {
	padding-left: 25px;
	margin-top: 20px;
	font-family: var(--min_font);
	font-size: clamp(0.875rem, 0.761rem + 0.57vw, 1.1875rem);
	color: #440910;
}

.main_wrap .main_circle {
	position: absolute;
	z-index: 2;
}

.main_wrap .main_circle01 {
	top: 10vw;
	right: 8vw;
}

.main_wrap .main_circle02 {
	bottom: 115px;
	right: 0;
}

@media screen and (max-width: 991px) {
	.main_wrap {
		min-height: 75vh;
	}
	.main_wrap::before{
		z-index: 0;
	}
	.main_wrap::after {
		background-color:inherit;
		height: 322px;
		top: 65%;
	}

	.main_wrap .ttl_wrap {
		position: relative;
		top: inherit;
		transform: inherit;
		right: inherit;
		left: inherit;
		padding-top: 110px;
		display: table;
		margin: auto;
	}

	.main_wrap .main_img {
		top: 49vh;
		max-width: 40%;
	}

	.main_wrap .h1_ttl {
		padding-left: 0;
	}

	.main_wrap .main_symptom {
		padding-left: 0;
	}

	.main_wrap .main_lead {
		padding-left: 0;
	}

	.main_wrap .h1_ttl span {
		padding-bottom: 4px;
		margin-bottom: 10px;
	}

	.main_wrap .main_circle01 {
		top: 15vw;
		right: 3vw;
		width: 20%;
	}

	.main_wrap .main_circle02 {
		bottom: 72px;
		width: 33%;
	}
}

/********************
* product_wrap
********************/
.product_wrap {
	padding-top: 100px;
	padding-bottom: 256px;
	background-image: url(../img/product_bg.jpg);
	background-size: cover;
	position: relative;
}

.product_wrap::after {
	content: "";
	background-image: url(../img/product_img01.jpg);
	background-size: cover;
	background-position: right center;
	clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
	width: 1345px;
	height: 950px;
	max-width: 80%;
	position: absolute;
	right: 0;
	top: -100px;
	z-index: 1;
}

.product_wrap::before {
	content: "";
	background-color: #fff;
	clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);
	width: 683px;
	height: 122px;
	max-width: 60%;
	position: absolute;
	left: 0;
	bottom: -1px;
	z-index: 2;
}

.product_wrap .container {
	position: relative;
	z-index: 9;
}

.product_wrap .btm_space {
	padding-bottom: 70px;
}

.product_wrap .features_con {
	background-size: cover;
	position: relative;
	min-height: 305px;
}

.product_wrap .features_con.con1 {
	background-image: url(../img/product_con_bg01.jpg);
}

.product_wrap .features_con.con2 {
	background-image: url(../img/product_con_bg02.jpg);
}

.product_wrap .features_con.con3 {
	background-image: url(../img/product_con_bg03.jpg);
}

.product_wrap .features_con.con4 {
	background-image: url(../img/product_con_bg04.jpg);
}

.product_wrap .features_con::after {
	content: "";
	position: absolute;
	background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
	width: 100%;
	height: 50%;
	left: 0;
	bottom: 0;
}

.product_wrap .features_con>* {
	position: relative;
	z-index: 9;
}

.product_wrap .features_con .txt_area {
	position: absolute;
	width: 100%;
	padding: 20px;
	bottom: 0;
	color: #fff;
}

.product_wrap .features_con .ttl {
	font-size: clamp(1.125rem, 1.08rem + 0.23vw, 1.25rem);
	font-weight: 500;
}


@media screen and (max-width: 991px) {
	.product_wrap {
		/*padding-top: 60px;*/
    padding-top: 20px;
		padding-bottom: 120px;
	}

	.product_wrap::after {
		height: 88vh;
		max-width: 130%;
		clip-path: polygon(45% 0, 100% 0, 100% 100%, 0 100%);
		background-position: center right;
	}

	.product_wrap::before {
		height: 61px;
	}

	.product_wrap .btm_space {
		padding-bottom: 40px;
	}

	.product_wrap .ttl_block {
		text-align: center;
	}

	.product_wrap .ttl_block::after {
		left: 50%;
		transform: translateX(-50%) rotate(-70deg);
	}

	.product_wrap .features_con {
		background-size: cover;
		position: relative;
		min-height: 270px;
	}

	.product_wrap .features_con::after {
		height: 80%;
	}

}

/********************
* Component - c-symptom-list
* (product_wrap内で使用)
********************/
.c-symptom-list {
	color: #fff;
}

.c-symptom-list li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 12px;
	/*font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);*/
  font-size: clamp(0.875rem, 0.6964rem + 0.7619vw, 1.125rem);
}

.c-symptom-list li:last-child {
	margin-bottom: 0;
}

.c-symptom-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	background-image: url(../img/icon_check.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.c-symptom-lead {
	margin-top: 40px;
	color: #fff;
	font-family: var(--min_font);
	/** 24px/18px **/
	font-size: clamp(1.125rem, 0.989rem + 0.68vw, 1.5rem);
}

.c-symptom-lead__highlight {
	color: var(--fc_pink);
}

.c-ttl-small {
	font-size: 0.75em;
}

@media screen and (max-width: 991px) {
	.c-symptom-list {
		max-width: 91%;
		margin-inline: auto;
	}
  .c-symptom-list li {
    margin-bottom: 6px;
  }
	.c-symptom-lead {
		max-width: 91%;
		margin-inline: auto;
		margin-top: 30px;
	}
}

.c-features-lead {
	font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
}

/********************
* Component - c-comparison
* (product_wrap内で使用)
********************/
.c-comparison {
	background-color: rgba(255, 255, 255, 0.6);
	padding: 45px 40px 90px;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
}

.c-comparison__title {
	text-align: center;
	margin-top: -80px;
	margin-bottom: 50px;
}

.c-comparison__title span {
	display: inline-block;
	background-color: #440910;
	color: #fff;
	padding: 8px 30px;
	/** 30px/18px **/
	font-size: clamp(1.125rem, 0.852rem + 1.36vw, 1.875rem);
	font-weight: 500;
	font-family: var(--min_font);
}

@media screen and (max-width: 991px) {
	.c-comparison {
		padding: 50px 15px 60px;
	}

	.c-comparison__title {
		margin-bottom: 20px;
		margin-top: -69px;
	}

	.c-comparison__content img {
		max-width: 100%;
	}
}

/********************
* Component - c-merit-list
* (c-comparison内で使用)
********************/
.c-merit-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.c-merit-list__item {
	text-align: center;
}

.c-merit-list__icon {
	width: 148px;
	height: 148px;
	margin: 0 auto 20px;
	border-radius: 50%;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.c-merit-list__icon img {
	width: 100%;
	height: 100%;
}

.c-merit-list__title {
	font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
	font-weight: 500;
	color: #440910;
	margin-bottom: 15px;
}

.c-merit-list__text {
	font-size: 14px;
	line-height: 1.8;
	color: #440910;
	text-align: left;
}

@media screen and (max-width: 991px) {
	.c-merit-list {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px 15px;
	}

	.c-merit-list__icon {
		width: 100px;
		height: 100px;
		margin-bottom: 15px;
	}

	.c-merit-list__title {
		margin-bottom: 10px;
	}
  .c-merit-list__text {
    font-size: clamp(0.875rem, 0.7989rem + 0.3247vw, 1rem);
  }
}

/********************
* safety_area
* (安全対策と運用体制セクション)
********************/
.safety_area {
	background-color: #fff;
	padding: 80px 0;
	position: relative;
}

.safety_area__deco {
	position: absolute;
	top: -82px;
	left: 0;
	max-width: 400px;
	z-index: 9;
}

.safety_area .features_con {
	background-size: cover;
	position: relative;
	min-height: 305px;
}

.safety_area .features_con.con1 {
	background-image: url(../img/product_con_bg01.jpg);
}

.safety_area .features_con.con2 {
	background-image: url(../img/product_con_bg02.jpg);
}

.safety_area .features_con.con3 {
	background-image: url(../img/product_con_bg03.jpg);
}

.safety_area .features_con.con4 {
	background-image: url(../img/product_con_bg04.jpg);
}

.safety_area .features_con::after {
	content: "";
	position: absolute;
	background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
	width: 100%;
	height: 50%;
	left: 0;
	bottom: 0;
}

.safety_area .features_con>* {
	position: relative;
	z-index: 9;
}

.safety_area .features_con .txt_area {
	position: absolute;
	width: 100%;
	padding: 20px;
	bottom: 0;
	color: #fff;
}

.safety_area .features_con .ttl {
	font-size: clamp(1.125rem, 1.08rem + 0.23vw, 1.25rem);
	font-weight: 500;
}

@media screen and (max-width: 991px) {
	.safety_area {
		padding: 50px 0;
	}

	.safety_area .features_con {
		min-height: 270px;
	}

	.safety_area .features_con::after {
		height: 80%;
	}

	.safety_area__deco {
		top: -45px;
		max-width: 161px;
	}
}



/********************
* flow_wrap
********************/
.flow_wrap {
	position: relative;
	background-color: var(--fc_pink);
	padding-bottom: 140px;
}

.flow_wrap::before,
.flow_wrap::after {
	content: "";
	position: absolute;
	background-repeat: no-repeat;
}

.flow_wrap::before {
	background-image: url(../img/flow_bg01.png);
	background-size: contain;
	width: 1000px;
	height: 418px;
	max-width: 80%;
	top: 0;
	left: 0;
	z-index: 1;
}

.flow_wrap .container {
	position: relative;
	z-index: 9;
}

.flow_wrap .flow_h3_ttl {
	position: relative;
}

.flow_wrap u {
	display: inline-block;
}

.flow_wrap .flow_h3_ttl::before {
	content: "";
	background-color: #fff;
	width: 100%;
	height: 1px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.flow_wrap .flow_h3_ttl span {
	position: relative;
	z-index: 9;
	display: table;
	margin-inline: auto;
	background-color: #440910;
	color: #fff;
	padding: 10px 20px;
	font-size: clamp(1.25rem, 1.023rem + 1.14vw, 1.875rem);
	font-weight: 200;
	font-family: var(--min_font);
}

@media screen and (max-width: 991px) {
	.flow_wrap {
		padding-bottom: 60px;
	}
}

/********************
* faq_wrap
********************/
.faq_wrap {
	background-color: #F2F2F2;
	background-image: url(../img/faq_bg.jpg);
	background-size: 100%;
	background-position: top;
	background-repeat: no-repeat;
	padding-bottom: 120px;
	position: relative;
}


.faq_wrap .qa_box {
	background-color: #fff;
	margin-bottom: 40px;
	max-width: 730px;
	margin-inline: auto;
}

.faq_wrap .qa_box:last-child {
	margin-bottom: 0;
}

.faq_wrap .q_ttl,
.faq_wrap .a_txt {
	position: relative;
	padding: 15px 100px;
}

.faq_wrap .q_ttl::before,
.faq_wrap .a_txt::before {
	content: "";
	position: absolute;
	left: 30px;
	top: 22px;
	font-family: var(--min_font);
	background-size: contain;
	background-repeat: no-repeat;
}

.faq_wrap .q_ttl::before {
	background-image: url(../img/faq_Q.svg);
	width: 21px;
	height: 24px;
}

.faq_wrap .a_txt::before {
	background-image: url(../img/faq_A.svg);
	width: 21px;
	height: 22px;
}

.faq_wrap .q_ttl {
	background: linear-gradient(to right, #FC6473, #FFAF53);
	color: #fff;
	font-weight: 500;
	font-size: clamp(1.125rem, 1.08rem + 0.23vw, 1.25rem);
}

.faq_wrap .a_txt {
	font-size: clamp(0.75rem, 0.705rem + 0.23vw, 0.875rem);
}

.faq_wrap .a_txt ul {
	background-color: #FFEEEA;
	padding: 20px;
	margin-top: 15px;
}

@media screen and (max-width: 991px) {
	.faq_wrap {
		padding-bottom: 60px;
	}

	.faq_wrap .q_ttl,
	.faq_wrap .a_txt {
		position: relative;
		padding: 15px 20px 15px 50px;
	}

	.faq_wrap .q_ttl::before,
	.faq_wrap .a_txt::before {
		left: 16px;
	}

	.faq_wrap .a_txt ul {
		padding: 15px;
	}
}



/********************
* cta_wrap
********************/
.cta_wrap {
	background-image: url(../img/cta_bg.jpg);
	background-size: cover;
	background-position: center;
	padding: 120px 0;
	position: relative;
}

.cta_wrap::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-image: url(../img/cta_deco.svg);
	background-repeat: no-repeat;
	background-size: auto 100%;
	background-position: left center;
	aspect-ratio: 1 / 1;
}

.cta_wrap .row {
	position: relative;
}

.cta_wrap__label {
	position: absolute;
	top: -170px;
	left: 0;
	width: auto;
}

.cta_wrap__ttl {
	font-size: clamp(1.5rem, 1.227rem + 1.36vw, 2.25rem);
	font-family: var(--min_font);
	font-weight: 500;
	margin-bottom: 20px;
	line-height: 1.3;
}

.cta_wrap__btn_area {
	background-color: rgba(255, 255, 255, 0.6);
	padding: 40px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.cta_wrap__btn_area a {
	transition: opacity 0.3s;
}

.cta_wrap__btn_area a:hover {
	opacity: 0.7;
}

@media screen and (max-width: 991px) {
	.cta_wrap {
		padding: 25px 0;
	}
.cta_wrap::before {
	width: 45%;
	background-size: 100% 100%;
	aspect-ratio: auto;
}
	.cta_wrap__btn_area {
    padding: 25px;
    margin-top: 20px;
    gap: 15px;
    align-items: center;
}

	.cta_wrap__ttl {
		text-align: center;
	}

	.cta_wrap__txt {
		text-align: center;
	}
}

/********************
* message_wrap
********************/
.message_wrap {
	background-color: #fff;
	padding: 80px 0 220px;
	position: relative;
}

.message_wrap::before {
	content: "";
	background-color: var(--fc_pink);
	clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);
	width: 683px;
	height: 122px;
	max-width: 60%;
	position: absolute;
	left: 0;
	bottom: -1px;
	z-index: 2;
}

.message_wrap__block {
	background-image: url(../img/message_bg.jpg);
	background-size: cover;
	background-position: center;
	padding: 0 40px 120px;
	position: relative;
}

.message_wrap__block .ttl_block {
	transform: translateY(-58px);
}

.message_wrap__sign {
	position: absolute;
	bottom: -50px;
	right: 20px;
}

.message_wrap__text {
	max-width: 80%;
	margin: 0 auto;
}

@media screen and (max-width: 991px) {
	.message_wrap__text {
		max-width: 100%;
    font-size: clamp(0.875rem, 0.7989rem + 0.3247vw, 1rem);
	}
}

.fc_pink {
	color: var(--fc_pink);
}

@media screen and (max-width: 991px) {
	.message_wrap {
		padding: 50px 0 120px;
	}

	.message_wrap::before {
		height: 61px;
	}

	.message_wrap__block {
		padding: 40px 20px;
	}

	.message_wrap__sign {
		width: 200px;
		bottom: -26px;
	}
}

/********************
* p-access
* (アクセス・診療時間セクション)
********************/
.p-access {
	background-color: var(--fc_pink);
	padding: 0 0 120px;
}

.p-access__inner {
	background-color: rgba(255, 255, 255, 0.6);
	padding: 80px;
}

.p-access__card {
	background-color: #fff;
	border-radius: 20px;
	padding: 30px;
	display: flex;
	align-items: center;
	gap: 40px;
}

.p-access__img {
	flex-shrink: 0;
	width: 445px;
}

.p-access__img img {
	width: 100%;
	height: auto;
	display: block;
}

.p-access__info {
	flex: 1;
}

.p-access__name {
	font-family: var(--min_font);
	font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
	font-weight: 500;
}

.p-access__branch {
	font-family: var(--min_font);
	font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem);
	font-weight: 500;
	margin-bottom: 10px;
}

.p-access__address a {
	color: var(--fc_pink);
	text-decoration: underline;
	transition: opacity 0.3s;
}

.p-access__address a:hover {
	opacity: 0.7;
}


@media screen and (max-width: 991px) {
	.p-access {
		padding: 0 0 60px;
	}

	.p-access__inner {
		padding: 30px 15px;
	}

	.p-access__card {
		flex-direction: column;
		padding: 20px;
		gap: 20px;
	}

	.p-access__img {
		width: 100%;
		max-width: 100%;
	}

	.p-access__detail-row {
		flex-direction: column;
		gap: 5px;
	}

	.p-access__detail dt {
		width: auto;
	}
	.p-access__info {
		width: 100%;
		font-size: 14px;
	}
}

/********************
* footer_wrap
********************/
.footer_wrap {
	background-color: #440910;
}

.blue_bg {
	background-color: #440910;
	color: #fff;
}

/********************
* float_cta
********************/

.float_cta{
	position: fixed;
	top: 20vh;
	right: 0;
	z-index: 10;
}
.float_cta_bt{
	margin-bottom: 1rem;
}
@media screen and (max-width: 991px) {
.float_cta{
	position: fixed;
	top: inherit;
	bottom: 0;
	left: 0;
	display: flex;
}
.float_cta_bt{
	margin-bottom: 0;
}
.float_cta_bt img{
	width: 50vw;
}
}
