/* -----------------------------------------------
= main
----------------------------------------------- */
.main {
	overflow: hidden;
}
/* -----------------------------------------------
= page-title
----------------------------------------------- */
@media print, screen and (min-width: 768px) {/* PC */
.page-title {
	max-width: 1300px;
	margin-inline: auto;
}
}/* @media */
/* -----------------------------------------------
= intro
----------------------------------------------- */
.intro {
	margin: 20px 13px 60px;
}
.intro h2 {
	margin-bottom: 40px;
	color: var(--red);
	font-size: calc(1.4rem / 1.6);
	font-weight: 700;
	line-height: calc(24 / 14);
}
.intro .profile {
	padding-bottom: 35px;
	border-bottom: 0.5px solid #b1b1b1;
}
.intro .profile h3 {
	position: relative;
	margin-bottom: 30px;
	font-family: var(--zen);
	font-size: calc(1.4rem / 1.6);
	font-weight: 400;
}
.intro .profile .set {
	text-align: center;
}
.intro .profile .set + .set {
	margin-top: 40px;
}
.intro .profile h3::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: calc(100% - 4em);
	border-top: 0.5px solid #b1b1b1;
}
.intro .profile img {
	width: 160px;
	margin: 0 auto 10px;
}
.intro .profile .division {
	margin-bottom: 10px;
	padding-bottom: 7px;
	border-bottom: 1px dotted #f25f69;
	font-size: calc(1.3rem / 1.6);
	line-height: calc(20 / 13);
}
.intro .profile .text {
	font-size: calc(1.3rem / 1.6);
	line-height: calc(20 / 13);
	text-align: left;
	letter-spacing: .04em;
}
@media print, screen and (min-width: 768px) {/* PC */
.intro {
	max-width: 1300px;
	margin: 60px auto;
	padding-inline: 30px;
}
.intro h2 {
	margin-bottom: 90px;
	font-size: calc(2.2rem / 1.6);
	line-height: calc(40 / 22);
}
.intro .profile {
	padding-bottom: 40px;
	border-bottom-width: 1px;
}
.intro .profile h3 {
	font-size: calc(2.4rem / 1.6);
}
.intro .profile h3::after {
	border-top-width: 1px;
}
.intro .profile .inner {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 70px 120px;
	max-width: 1125px;
	margin-inline: auto;
}
.intro .profile .set + .set {
	margin-top: 0;
}
.intro .profile .division {
	margin-bottom: 15px;
	padding-bottom: 20px;
	border-bottom-width: 2px;
	font-size: calc(1.6rem / 1.6);
	line-height: calc(24 / 16);
}
.intro .profile .text {
	font-size: calc(1.6rem / 1.6);
	line-height: calc(24 / 16);
}
}/* @media */
/* -----------------------------------------------
= index
----------------------------------------------- */
.index {
	padding: 16px;
	background: #f2f2ee;
}
.index .inner {
	display: flex;
	gap: 0 20px;
}
.index h2 {
	font-family: var(--zen);
	font-size: calc(1.4rem / 1.6);
	font-weight: 400;
}
.index li {
	font-size: calc(1.2rem / 1.6);
	line-height: calc(17 / 12);
	letter-spacing: .02em;
}
.index li + li {
	margin-top: 15px;
}
.index li a span {
	display: block;
}
.index li a span:first-child {
	margin-bottom: 3px;
	font-family: var(--zen);
	font-weight: 400;
}
@media print, screen and (min-width: 768px) {/* PC */
.index {
	margin-bottom: 160px;
	padding: 0 30px;
	background: transparent;
}
.index .inner {
	display: flex;
	gap: 0 calc(200 / 1300 * 100%);
	max-width: 1200px;
	margin-inline: auto;
	padding: 25px 50px;
	background: #f2f2ee;
}
.index h2 {
	font-size: calc(2.4rem / 1.6);
}
.index ol {
	flex: 1;
}
.index li {
	font-size: calc(1.8rem / 1.6);
}
.index li + li {
	margin-top: 20px;
}
.index li a {
	display: flex;
	gap: 0 1em;
}
.index li a span:first-child {
	min-width: 5.5em;
}
.index li a span:last-child {
	flex: 1;
	margin-left: 1.5em;
	text-indent: -1.5em;
}
.index li a span:last-child::before {
	content: "｜";
	margin-right: 1em;
}
}/* @media */
@media (hover:hover) {
.index a {
	transition: color .3s;
}
.index a:hover {
	color: var(--red);
}
}/* @media */
/* -----------------------------------------------
= side
----------------------------------------------- */
.btn-side {
	position: fixed;
	right: 0;
	bottom: 60px;
	z-index: 5;
	padding: 9px 88px 9px 20px;
	color: #fff;
	background:  #b9b9b1;
	font-family: var(--zen);
	font-size: calc(2rem / 1.6);
	font-weight: 400;
}
.btn-side::after {
	content: "";
	position: absolute;
	top: 20px;
	right: 10px;
	width: 33px;
	height: 12px;
	background: url(../../img/index/icon-index.svg) no-repeat 50% / 100% auto;
}
.btn-close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 30px;
	height: 30px;
}
.btn-close::before,
.btn-close::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 0.5px;
	background: #808080;
}
.btn-close::before {
	transform: rotate(-45deg);
}
.btn-close::after {
	transform: rotate(45deg);
}
.side.index {
	position: fixed;
	right: 0;
	bottom: 60px;
	width: calc(100% - 32px);
	z-index: 6;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .4s;
}
.side.index[aria-hidden="false"] {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
}
@media print, screen and (min-width: 768px) {/* PC */
.btn-side {
	right: auto;
	left: 0;
	padding: 6px 70px 6px 20px;
	font-size: calc(2.4rem / 1.6);
	transform: rotate(-90deg);
	transform-origin: top left;
	opacity: 0;
	pointer-events: none;
	transition: opacity .4s;
}
.btn-side::after {
	top: 17px;
	right: 6px;
	transform: rotate(90deg);
}
.btn-side.is-visible {
	opacity: 1;
	pointer-events: auto;
}
.side.index {
	right: auto;
	left: 0;
	width: 100%;
	max-width: 1300px;
	margin-bottom: 0;
	padding: 0;
	box-sizing: border-box;
}
.side.index .inner {
	padding-right: 80px;
}
}/* @media */
@media (hover:hover) {
.btn-side {
	transition: color .3s;
}
.btn-side:hover {
	color: var(--red);
}
}/* @media */
/* -----------------------------------------------
= block
----------------------------------------------- */
.block {
	margin: 0 13px 60px;
	scroll-margin-top: 47px;
}
.block .title {
	position: relative;
	min-height: 207px;
	margin-bottom: 30px;
	background: linear-gradient(90deg,#ee685c,#ffc6b3);
	border-radius: 15px;
}
.block .title::after {
	content: "";
	position: absolute;
	inset: 0;
	background: url(../../img/special03/dialogue-title-bg-sp.svg) no-repeat 0 9px / 316px auto;
}
.block .title .num {
	margin-inline: 30px;
	padding-block: 30px 65px;
	color: #fff;
	font-family: var(--zen);
	font-size: calc(1.5rem / 1.6);
	font-weight: 400;
}
.block .title h2 {
	font-size: calc(2rem / 1.6);
	font-weight: 700;
	line-height: calc(26 / 20);
	text-align: center;
}
.block .title h2 img {
	display: block;
	width: 127px;
	margin: 5px auto 0;
}
.block .text {
	font-size: calc(1.3rem / 1.6);
	line-height: calc(22 / 13);
	letter-spacing: .04em;
}
.block .text + .text {
	margin-top: 2em;
}
.block .img {
	display: block;
	max-width: 240px;
	margin: 35px auto;
	padding-left: 60px;
}
.block .img-large {
	display: block;
	max-width: 325px;
	margin: 35px auto;
	padding-left: 25px;
}
.block .item {
	display: flex;
	gap: 0 18px;
}
.block .item + .item {
	margin-top: 30px;
}
.block .item .thm {
	width: 54px;
}
.block .item .text {
	flex: 1;
	min-height: 54px;
	display: flex;
	align-items: center;
	line-height: calc(30 / 13);
}
.block .item .text img {
	width: 28.8px;
	vertical-align: middle;
}
.img-large-last {
	display: block;
	margin-bottom: 60px;
}
@media print, screen and (min-width: 768px) {/* PC */
.block {
	max-width: 1500px;
	margin: 0 auto 190px;
	padding-inline: 30px;
	scroll-margin-top: 60px;
}
.block .title {
	min-height: 170px;
	margin-bottom: 50px;
	border-radius: 20px;
}
.block .title::after {
	background: url(../../img/special03/dialogue-title-bg-pc.svg) no-repeat 0 17px / 301px auto;
}
.block .title .num {
	margin: 0;
	padding: 12px 20px 0 240px;
	font-size: calc(2.4rem / 1.6);
}
.block .title h2 {
	padding: 8px 20px 10px 240px;
	font-size: calc(3.6rem / 1.6);
	line-height: calc(48 / 36);
	text-align: left;
}
.block .title h2 img {
	width: 156px;
	margin: 0 0 0 80px;
}
.block .text {
	font-size: calc(1.8rem / 1.6);
	line-height: calc(40 / 18);
}
.block .img {
	max-width: 800px;
	margin-block: 65px;
	padding-left: 100px;
}
.block .img-large {
	width: calc(100% + 228px);
	max-width: 1300px;
	margin: 65px -114px;
	padding-left: 0;
}
.block .item {
	gap: 0 24px;
}
.block .item + .item {
	margin-top: 30px;
}
.block .item .thm {
	width: 72px ;
}
.block .item .text {
	min-height: 72px;
	line-height: calc(40 / 18);
}
.block .item .text img {
	width: 38.4px;
}
.img-large-last {
	max-width: 1500px;
	margin: 0 auto 120px;
}
}/* @media */
/* -----------------------------------------------
= dialogue
----------------------------------------------- */
.dialogue {
	position: relative;
}
.dialogue::before,
.dialogue::after {
	content: "";
	position: absolute;
	z-index: -1;
	background: rgba(255,0,0,.25);
	border-radius: 50%;
}
#dialogue01::before {
	top: 720px;
	left: -133px;
	width: 240px;
	height: 240px;
}
#dialogue01::after {
	bottom: 680px;
	right: -13px;
	width: 280px;
	height: 280px;
}
#dialogue02::before {
	top: 750px;
	right: -133px;
	width: 240px;
	height: 240px;
}
#dialogue02::after {
	bottom: 310px;
	left: -13px;
	width: 280px;
	height: 280px;
}
#dialogue03::before {
	top: 830px;
	right: -13px;
	width: 280px;
	height: 280px;
}
#dialogue03::after {
	bottom: 380px;
	left: -133px;
	width: 240px;
	height: 240px;
}
#dialogue04::before {
	top: 530px;
	left: -13px;
	width: 280px;
	height: 280px;
}
#dialogue04::after {
	bottom: 560px;
	right: -133px;
	width: 240px;
	height: 240px;
}
#dialogue05::before {
	top: 840px;
	left: -13px;
	width: 280px;
	height: 280px;
}
#dialogue05::after {
	bottom: 790px;
	right: -13px;
	width: 240px;
	height: 240px;
	clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
}
@media print, screen and (min-width: 768px) {/* PC */
.dialogue {
	max-width: 1072px;
	margin-inline: auto;
}
#dialogue01::before {
	top: 470px;
	left: -410px;
	width: 640px;
	height: 640px;
	clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
}
#dialogue01::after {
	bottom: 250px;
	right: -90px;
	width: 750px;
	height: 750px;
}
#dialogue02::before {
	top: 360px;
	right: -460px;
	width: 640px;
	height: 640px;
	clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}
#dialogue02::after {
	bottom: -50px;
	left: -13px;
	width: 750px;
	height: 750px;
}
#dialogue03::before {
	top: 810px;
	right: -410px;
	width: 750px;
	height: 750px;
}
#dialogue03::after {
	bottom: -50px;
	left: -80px;
	width: 640px;
	height: 640px;
	clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}
#dialogue04::before {
	top: 440px;
	left: -190px;
	width: 750px;
	height: 750px;
}
#dialogue04::after {
	bottom: 160px;
	right: -410px;
	width: 640px;
	height: 640px;
	clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}
#dialogue05::before {
	top: 840px;
	left: -80px;
	width: 750px;
	height: 750px;
}
#dialogue05::after {
	bottom: -150px;
	right: -133px;
	width: 640px;
	height: 640px;
}
}/* @media */
/* -----------------------------------------------
= other
----------------------------------------------- */
.other li img {
	margin-bottom: 0;
}
@media print, screen and (min-width: 768px) {/* PC */
.other {
	max-width: 1080px;
}
.other ul {
	grid-template-columns: repeat(2, 1fr);
	gap: 47px;
}
.other li img {
	margin-bottom: 0;
}
}/* @media */


