@import "reset.css";

:root {
	--main-color: #1032A4;
	--main-shadow: #08206F;
	--sub-color: #FF821A;
	--sub-shadow: #D86F18;
	--blue-highlight: #003FA3;
	--red-highlight: #B92B27;
	--yellow-highlight: #F9EFB0;
	--question-gradient: linear-gradient(45deg, #4158A5 0%, #08206F 100%);
	--answer-gradient: linear-gradient(45deg, #924325 0%, #E18D1B 100%);
	--required-red: #EB576B
}

/* *{
	border: 1px solid red;
} */
html {
	scroll-behavior: smooth;
	font-family: "Noto Sans JP", sans-serif;
}

.sp-only {
	display: none;
}

.tablet-only {
	display: none;
}


.inner-container {
	width: 1000px;
	margin: auto;
}

.full.inner-container {
	width: 100%;
}

/* Skip link (a11y + SEO crawlability) */
.skip-link {
	position: absolute;
	top: -100%;
	left: var(--space-sm);
	z-index: 100;
	padding: var(--space-xs) var(--space-sm);
	background: var(--color-primary);
	color: #fff;
	text-decoration: none;
	border-radius: var(--radius);
}

.skip-link:focus {
	top: var(--space-sm);
}

/* Header  */

.header-container {
	position: absolute;
	top: 0;
	width: 100%;
	display: flex;
	justify-content: space-between;
	gap: 6px;
	align-items: center;
	padding: 11px 16px;
}

.header-container>img {
	width: 252px;
	height: 33px;
}

.header-buttons {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	gap: 6px;
	right: 15px;
	z-index: 100;
	position: fixed;
}

.main-button {
	color: white;
	font-weight: 700;
	font-size: 14px;
	text-align: center;
	align-content: center;
	padding: 13px 23px;
	border-radius: 4px;
	height: fit-content;
	line-height: 1.3;
	background: #333333;
	box-shadow: 0 3px #222222;
}

.main-button.blue {
	background: var(--main-color);
	box-shadow: 0 3px var(--main-shadow);
}

.main-button.orange {
	background: var(--sub-color);
	box-shadow: 0 3px var(--sub-shadow);
}

.header-container>.main-button.blue {
	margin-left: auto;
}

/* Main visual section */

.main-visual {
	background-image: linear-gradient(#01081485), url(../assets/main-visual-background.webp);
	background-position: center 68%;
	background-repeat: no-repeat;
	background-size: 100%;
}

.main-visual>.inner-container {
	position: relative;
	padding: 103px 0 0;
	display: flex;
	flex-direction: column;
	gap: 71px;
}

.main-visual>.inner-container::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: -174px;
	width: 415px;
	background-position: center 68%;
	background-repeat: no-repeat;
	z-index: 0;
	filter: brightness(0.41);
}

/* for woman */
html					.main-visual>.inner-container::after,
html[data-style="w"]	.main-visual>.inner-container::after {
	background-image:	url(../assets/main-visual-character-woman.webp);
	height:				566px;
}

/* for man */
html[data-style="m"] .main-visual>.inner-container::after {
	background-image:	url(../assets/main-visual-character-man.webp);
	height:				600px;
}

.main-visual>.inner-container>div {
	z-index: 1;
	position: relative;
}

.main-visual-heading {
	font-family: "Noto Serif JP", serif;
	width: fit-content;
	margin-left: auto;
	color: white;
	display: flex;
	flex-direction: column-reverse;
	line-height: 1;
	gap: 10px;
}

.main-visual-heading>h1 {
	font-size: 74px;
	position: relative;
	z-index: 2;
	font-weight: 600;
}

.main-visual-heading>h1>span {
	font-size: 12px;
	position: relative;
	z-index: 2;
}

.main-visual-heading>h1>span:after {
	content: '🄬';
	position: absolute;
	top: 0;
	left: 0;
	color: var(--main-color);
	z-index: -1;
	filter: blur(5px);
	-webkit-text-stroke: 10px var(--main-shadow);
}

.main-visual-heading>h2 {
	font-size: 28px;
	margin-left: -19px;
	position: relative;
	z-index: 2;
}

/* just a white line */
.main-visual-heading>h2:after {
	content: '';
	position: absolute;
	top: 60%;
	transform: translateY(-50%);
	right: 0;
	width: 110px;
	height: 1px;
	background: white;
}

.main-visual-heading>h2>span {
	position: relative;
	z-index: 2;
	font-weight: 700;
}

.main-visual-heading>h2>span:first-child {
	font-size: 36px;
}

.main-visual-heading>h1:after,
.main-visual-heading>h2>span:first-child:after,
.main-visual-heading>h2>span:last-child:after {
	content: '金融ファクシミリ新聞';
	position: absolute;
	top: 0;
	left: 0;
	color: var(--main-color);
	z-index: -1;
	filter: blur(5px);
	-webkit-text-stroke: 10px var(--main-shadow);
}

.main-visual-heading>h2>span:first-child:after,
.main-visual-heading>h2>span:last-child:after {
	top: 7px;
}

.main-visual-heading>h2>span:first-child:after {
	content: '「金利をマネジメント」';
}

.main-visual-heading>h2>span:last-child:after {
	content: 'する経営者の参謀';
}

.main-visual-container {
	display: grid;
	grid-template-areas: "image list" "image cta";
	justify-items: center;
	grid-auto-columns: 40% 48%;
	justify-content: end;
}

.main-visual-container>img {
	width: 450px;
	height: 305px;
	grid-area: image;
	margin-top: 13px;
}

.main-visual-list {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 9px;
	align-content: flex-start;
}

.main-visual-container>button {
	grid-area: cta;
}

.main-visual-list>p {
	flex: calc(49% - 4px);
	background: white;
	border-radius: 8px;
	text-align: center;
	align-content: center;
	font-size: 17px;
	color: var(--red-highlight);
	font-weight: bold;
	position: relative;
	height: 66px;
	font-family: "Noto Serif JP", serif;
}

.main-visual-list>p:after,
.main-visual-list>p:before {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
	height: 48px;
	background-image: url(../assets/main-visual-list-back.png);
	background-repeat: no-repeat;
	opacity: 0.3;
}

.main-visual-list>p:after {
	right: 9px;
}

.main-visual-list>p:before {
	left: 9px;
	transform: translateY(-50%) rotate(180deg);
}

.main-visual-list>p.bigger {
	font-size: 21px;
	line-height: 1;
}

.main-visual-list>p.smaller {
	font-size: 15px;
	line-height: 1.4;
}

.main-visual-list>p>span {
	font-size: 26px;
	margin: 0 2px;
	font-weight: bold;
}

.main-visual-list>p.smaller>span {
	line-height: 0.7;
}

.main-visual-container>.main-button {
	position: relative;
	box-shadow: 0 5px var(--main-shadow);
	font-size: 26px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 7px;
	padding: 16px 90px;
	width: max-content;
}

.main-visual-container>.main-button>span {
	position: absolute;
	top: 0;
	transform: translate(-50%, -80%);
	background: var(--sub-color);
	font-size: 17px;
	text-align: center;
	left: 50%;
	padding: 3px 30px 4px;
	width: max-content;
	line-height: 1.3;
	border-radius: 50px;
	font-weight: 500;
}


/* triangle to down */
.main-visual-container>.main-button>span:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 82%);
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid var(--sub-color);
}

.main-visual-container>.main-button>img {
	position: absolute;
	right: 18px;
}

/* Common styles for sections */

.inner-container>h3 {
	height: 110px;
	text-align: center;
	align-content: center;
	font-size: 28px;
	font-weight: 600;
	position: relative;
	z-index: 2;
}

.inner-container>h3:after {
	content: 'Why?';
	position: absolute;
	top: 0%;
	left: 50%;
	transform: translate(-50%, -25%);
	font-family: "Noto Serif JP", serif;
	font-size: 100px;
	color: var(--blue-highlight);
	opacity: 0.1;
	z-index: -1;
}

.selected-by>.inner-container>h3:after {
	content: 'Selected';
	transform: translate(-50%, -35%);
}

.depth-section>.inner-container>h3:after {
	content: 'Depth';
	transform: translate(-50%, -50%);
}

.media>.inner-container>h3:after {
	content: 'Media';
	transform: translate(-50%, -30%);
}

.voice>.inner-container>h3:after {
	content: 'Voice';
	transform: translate(-50%, -25%);
}

.flow>.inner-container>h3:after {
	content: 'Flow';
	transform: translate(-50%, -25%);
}

.faq>.inner-container>h3:after {
	content: 'FAQ';
	transform: translate(-50%, -25%);
}

.contact>.inner-container>h3:after {
	content: 'Contact';
	transform: translate(-50%, -25%);
}

.dark-section>.inner-container>h3:after {
	text-shadow: 0 0 5px rgb(255 255 255);
	color: white;
}

.inner-container>h3>span {
	font-weight: 600;
}

.blue-highlight {
	color: var(--blue-highlight);
}

.yellow-highlight {
	color: var(--yellow-highlight);
}

/* Why us section */

.why-us {
	padding: 80px 0;
	background-image: linear-gradient(to bottom, #ffffff, #EAEDF8);
}

.numbered-item {
	display: grid;
	gap: 30px;
}

.numbered-item.left {
	margin-left: calc((100vw - 1000px) / 2);
	grid-template-areas: "text image";
	grid-auto-columns: 480px auto;
}

.numbered-item.right {
	margin-right: calc((100vw - 1000px) / 2);
	grid-template-areas: "image text";
	grid-auto-columns: auto 480px;
}

.numbered-content {
	grid-area: text;
	display: flex;
	flex-direction: column;
	gap: 15px;
	padding: 10px 0;
}

.numbered-content-header {
	display: flex;
	gap: 20px;
	align-items: center;
}

.numbered-content-header>p {
	font-size: 70px;
	font-family: "Noto Serif JP", serif;
	font-weight: 600;
	color: var(--main-shadow);
	line-height: 1;
}

.numbered-content-header>h4 {
	width: -webkit-fill-available;
	font-size: 28px;
	font-weight: 500;
	padding-bottom: 10px;
	position: relative;
	white-space: nowrap;
}

.numbered-content-header>h4:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-image: linear-gradient(to right, var(--main-shadow) 50px, #CCCCCC 0%);
}

.numbered-content-header>h4>span {
	font-weight: 500;
	position: relative;
}

.numbered-content-header>h4>span:after {
	content: 'インサイト';
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 11px;
	font-weight: 500;
}

.numbered-content>h5 {
	font-size: 24px;
	font-weight: 500;
}

.numbered-content-image {
	height: 280px;
	position: relative;
}

.numbered-content-image>img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	clip-path: polygon(100px 0, 100% 0, 100% 100%, 0 100%);
}

.numbered-item.right .numbered-content-image>img {
	clip-path: polygon(0 0, calc(100% - 100px) 0, 100% 100%, 0 100%);
}

.why-us>.inner-container>.numbered-item:nth-child(2) {
	margin-top: 30px;
}

.why-us>.inner-container>.numbered-item:nth-child(3) {
	margin-top: 50px;
	margin-bottom: 50px;
}

/* Selected by section */

.selected-by {
	padding: 75px 0 100px;
}

.selected-by>.inner-container>p {
	text-align: center;
	line-height: 2;
}

.selected-by-table>table {
	width: 1000px;
	margin: 30px auto 0;
	border-spacing: 0px;
	position: relative;
}

.selected-by-table td,
.selected-by-table th {
	border: 1px solid #707070;
	border-right: 0;
	border-bottom: 0;
	padding: 14px;
	text-align: center;
	align-content: center;
}

.selected-by-table>table>tbody>tr:last-child>td {
	border-bottom: 1px solid #707070;
}

.selected-by-table>table tr>td:last-child,
.selected-by-table>table tr>th:last-child {
	border-right: 1px solid #707070;
}

.selected-by-table th.th-empty {
	border-top: 0;
	border-left: 0;
	background: none;
}

.selected-by-table th {
	background: #5A5A5A;
	color: white;
}

.selected-by-table th.th-main {
	font-weight: 600;
	background: none;
	background-image: linear-gradient(to right, var(--main-color), #3072D9, var(--main-color));
	font-size: 18px;
	/* border: 5px solid var(--main-color);
	border-bottom: 0; */
}

.selected-by-table>table::after {
	border: 5px solid var(--main-color);
	content: '';
	height: calc(100% + 8px);
	position: absolute;
	right: 0;
	top: -4px;
	/* width: 336px; */

	width: 365px;
}

/* Depth section */

.depth-section {
	background-image: linear-gradient(to bottom, #213674, #061136);
	padding: 90px 0;
}

.dark-section>.inner-container>h3,
.dark-section>.inner-container>h4,
.dark-section>.inner-container>p {
	color: white;
}

.depth-section>.inner-container>p {
	text-align: center;
	line-height: 2;
}

.depth-section-content {
	margin-top: 20px;
	display: flex;
	flex-direction: row;
	align-items: stretch;
	gap: 40px;
}

.depth-section-content-item {
	flex: 1;
	overflow: hidden;
}

.depth-section-content-item>.depth-section-item-title {
	font-size: 20px;
	font-weight: 500;
	color: white;
}

.depth-section-content-item-inner {
	background: white;
	padding: 35px 40px;
	margin-top: 10px;
	height: 100%;
}

.depth-section-content-item-inner>h4 {
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 16px;
}

.depth-section-content-item>.yellow-highlight {
	font-size: 26px;
	font-weight: 600;
	height: auto;
	text-align: center;
	align-content: center;
}

.depth-section-footer {
	margin-top: 30px;
	background: white;
}

.depth-section-footer>p {
	font-size: 28px;
	text-align: center;
	padding: 22px 38px;
	font-weight: 500;
}

.depth-section-footer>p>span {
	font-weight: 500;
}

/* Media section */

.media {
	padding: 80px 0;
}

.media-content {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 20px;
}

.media-item {
	flex: 49%;
	padding: 22px 25px;
	border: 3px solid #BECCE2;
	border-radius: 10px;
}

.media-item>h4 {
	font-size: 22px;
	font-weight: 500;
	color: var(--main-shadow);
	text-align: center;
	border-bottom: 2px solid;
	padding-bottom: 16px;
	margin-bottom: 24px;
}

.media-number-header {
	color: var(--main-shadow);
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	gap: 20px;
	justify-content: center;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--main-shadow);
	margin-bottom: 15px;
}

.media-number-header>p {
	font-size: 20px;
	font-weight: 700;
}

.media-number-header>p>span {
	font-size: 60px;
	font-weight: 700;
	line-height: 1;
	margin: 0 4px;
}

.media-number-content {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 28px;
	justify-content: flex-end;
}

.media-number-content>p {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	font-weight: bold;
	color: var(--main-shadow);
}

.media-number-content>ul {
	font-size: 15px;
	color: #333333;
}

.media-number-content>ul>li {
	line-height: 2;
	padding-left: 15px;
	position: relative;
}

.media-number-content>ul>li:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 5px;
	height: 5px;
	background: #333333;
	border-radius: 50%;
}

.media-chart-container>p {
	font-size: 12px;
	margin-top: -20px;
	text-align: right;
	color: var(--main-shadow);
}

.media-chart-container>img {
	width: auto;
	margin: 10px auto 0;
}

.media-writers-container>ul>li {
	font-size: 18px;
	line-height: 2;
	color: var(--main-shadow);
	font-weight: 500;
	padding-left: 15px;
	position: relative;
}

.media-writers-container>ul>li:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 5px;
	height: 5px;
	background: var(--main-shadow);
	border-radius: 50%;
}

.media-topics-container>p {
	font-size: 24px;
	line-height: 1.6;
	color: var(--main-shadow);
	font-weight: 500;
}

/* Voice section */

.voice {
	background-image: url(../assets/voice-background.webp);
	background-size: 100%;
	padding: 80px 0;
}

.voice>.inner-container>h4 {
	text-align: center;
	font-weight: 500;
	font-size: 18px;
	margin-top: -25px;
}

.voice-content {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	gap: 40px;
	margin-top: 50px;
}

.voice-item {
	flex: 47%;
	background: white;
	padding: 30px;
	display: grid;
	grid-template-areas: "image header" "title title" "text text";
	gap: 15px;
	grid-template-columns: 200px auto;
	align-items: center;
}

.voice-item>img {
	grid-area: image;
	width: 200px;
	aspect-ratio: 1;
}

.voice-item-header {
	grid-area: header;
}

.voice-item-name {
	font-size: 20px;
	font-weight: bold;
}

.voice-item-age {
	font-size: 14px;
	color: #6B779B;
}

.voice-item>h5 {
	grid-area: title;
	font-size: 28px;
	font-weight: 500;
	position: relative;
	padding-bottom: 15px;
}

.voice-item>h5:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-image: linear-gradient(to right, var(--main-shadow) 80px, #CCCCCC 0%);
}

.voice-item>p {
	grid-area: text;
}

/* Flow section */

.flow {
	padding: 80px 0;
	background: #F5F5FB;
}

.flow-content {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.flow-item>h4 {
	background: linear-gradient(to bottom, #213674, #061136);
	color: white;
	text-align: center;
	font-size: 24px;
	font-weight: 500;
	padding: 8px 0;
	line-height: 1.4;
	margin-bottom: 30px;
}

.flow-list {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}

.flow-list-item>p {
	text-align: center;
}

.flow-list-item .smaller {
	font-size: 14px;
}

.flow-number {
	font-family: "Noto Serif JP", serif;
	font-size: 40px;
	font-weight: 400;
	color: var(--main-color);
}

.flow-list-item>img {
	height: 70px;
	width: 110px;
	object-fit: scale-down;
}

.flow-list-item {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	height: stretch;
	gap: 18px;
	align-items: center;
}

.flow-list-item .bold {
	font-weight: bold;
}

/* FAQ accordion */
.faq {
	padding: 80px 0;
}

.faq-content {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.faq-item {
	overflow: hidden;
}

.faq-question-container {
	display: flex;
	align-items: center;
	gap: 16px;
	width: 100%;
	border-top: 1px solid #CCCCCC;
	border-bottom: 1px solid #CCCCCC;
	border-right: 1px solid #CCCCCC;
	padding-right: 20px;
}

.faq-question-container:hover {
	opacity: 0.95;
}

.faq-question-text {
	flex: 1;
	margin: 0;
	font-weight: 600;
	line-height: 1.5;
	text-align: left;
	color: var(--main-shadow);
	font-size: 18px;
}

.faq-mark {
	flex-shrink: 0;
	margin: 0;
	font-weight: 700;
	font-size: 30px;
	color: white;
	font-family: 'Noto Serif JP';
	background: var(--question-gradient);
	width: 60px;
	text-align: center;
	align-content: center;
	padding-bottom: 7px;
}

.faq-mark.question {
	height: auto;
	aspect-ratio: 1;
}

.faq-mark.answer {
	background: var(--answer-gradient);
}

.faq-toggle {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.faq-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #fff;
	color: var(--main-color);
	font-size: 25px;
	font-weight: 400;
	line-height: 1;
}

.faq-item .faq-icon--minus {
	display: none;
}

.faq-item.is-open .faq-icon--plus {
	display: none;
}

.faq-item.is-open .faq-icon--minus {
	display: flex;
}

.faq-answer-container {
	display: none;
	align-items: flex-start;
	gap: 16px;
	align-items: stretch;
	border-bottom: 1px solid #CCCCCC;
	border-right: 1px solid #CCCCCC;
}

.faq-item.is-open .faq-answer-container {
	display: flex;
}

.faq-answer-container p:not(.faq-mark) {
	margin: 0;
	flex: 1;
	line-height: 1.7;
	padding: 20px 0;
}

/* Contact section */

.contact {
	background: linear-gradient(to bottom, #213674, #061136);
	padding: 80px 0;
}

.contact .inner-container>h4 {
	text-align: center;
	margin-top: -30px;
	font-weight: 600;
}

.form-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
}

.form-body {
	margin-top: 45px;
	background: white;
	border-radius: 10px;
	padding: 30px 25px;
}

.form-row {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 17px;
	padding-bottom: 11px;
	margin-bottom: 20px;
	border-bottom: 1px solid #CCCCCC;
}

.form-label {
	width: 230px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

.form-label>label {
	font-size: 18px;
	font-weight: 500;
}

.required-badge {
	font-size: 14px;
	color: white;
	background: var(--required-red);
	border-radius: 100px;
	padding: 1px 11px;
	line-height: 1.4;
}

.form-field {
	display: flex;
	gap: 0.5rem;
	flex: 1;
}

input {
	border: 1px solid #CCCCCC;
	padding: 11px;
	border-radius: 5px;
	width: 100%;
}

input[type="checkbox"] {
	height: 1.25rem;
	width: 1.25rem;
}

.form-field--address {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.form-address-postal {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 16px;
}

.form-address-postal-inputs {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
}

.form-address-postal-inputs>input {
	width: 100px;
}

.form-address-autofill {
	background: linear-gradient(to bottom, #F9F9F9, #DFDFDF);
	border-radius: 5px;
	padding: 11px 12px;
	border: 1px solid #CCCCCC;
	font-size: 14px;
	height: -webkit-fill-available;
}

.form-address-autofill:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.form-survey-list>li {
	margin: 15px 0;
}

.form-survey-list>li>label {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 14px;
}

.form-survey-list>li>label>input {
	width: 24px;
	height: 24px;
}

.form-row.last-row {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.trial-form.is-confirm-step .form-body {
	display: none;
}

.form-confirm {
	margin-top: 45px;
	background: white;
	border-radius: 10px;
	padding: 30px 25px;
	color: #333333;
}

.form-confirm-lead {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 24px;
	text-align: center;
}

.form-confirm-list {
	margin: 0;
}

.form-confirm-row {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 17px;
	padding-bottom: 11px;
	margin-bottom: 20px;
	border-bottom: 1px solid #CCCCCC;
}

.form-confirm-row:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.form-confirm-label {
	width: 230px;
	flex-shrink: 0;
	margin: 0;
	font-size: 18px;
	font-weight: 500;
}

.form-confirm-value {
	flex: 1;
	margin: 0;
	font-size: 16px;
	line-height: 1.6;
	word-break: break-word;
}

.form-actions {
	display: none;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 12px;
	width: 100%;
}

.trial-form:not(.is-confirm-step) .form-actions--input {
	display: flex;
}

.trial-form.is-confirm-step .form-actions--confirm {
	display: flex;
}

.form-actions--confirm .main-button.blue {
	background: var(--main-color);
	box-shadow: 0 3px var(--main-shadow);
}

.form-submit-area {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: white;
	margin-top: 40px;
}

.form-errors {
	width: 100%;
	max-width: 520px;
	margin-bottom: 16px;
	padding: 12px 16px;
	background: #fff5f6;
	border: 1px solid var(--required-red);
	border-radius: 5px;
	color: var(--required-red);
	font-size: 14px;
	text-align: left;
}

.form-errors ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.form-errors li+li {
	margin-top: 6px;
}

.form-submit-area .form-actions .main-button {
	width: 172px;
	margin-bottom: 15px;
}

.form-notice {
	font-size: 14px;
	text-align: center;
}

.site-footer {
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	justify-content: space-between;
	padding: 30px 50px;
}

.site-footer>img {
	width: 315px;
	height: auto;
}

.site-footer>p {
	font-size: 14px;
	color: #AAAAAA;
}

.thanks-footer>p {
	text-align: center;
	width: 100%;
}

.thanks-container {
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.thanks-container>h1 {
	font-size: 50px;
	font-weight: bold;
	margin: 50px 0;
	color: var(--blue-highlight);
}

.thanks-container>.main-button {
	display: block;
	width: 200px;
	margin: 50px auto;
}

.thanks-main {
	padding: 4rem 1rem;
	text-align: center;
	height: calc(100vh - 110px);
}

.thanks-notice {
	font-size: 14px;
	margin-top: 2rem;
}

@media (max-width: 1050px) {
	.inner-container {
		width: 700px;
	}

	.sp-only {
		display: none;
	}

	.tablet-only {
		display: block;
	}

	.pc-only {
		display: none;
	}

	.selected-by-table>table {
		width: 100%;
	}

	/* Main visual */
	.main-visual {
		background-size: auto 100%;
	}

	.main-visual>.inner-container {
		padding: 103px 0 43px;
		gap: 30px;
	}

	.main-visual-heading {
		margin-right: auto;
	}

	.main-visual-heading>h1 {
		font-size: 60px;
	}

	.main-visual-heading>h2 {
		font-size: 20px;
	}

	.main-visual-heading>h2>span:first-child {
		font-size: 30px;
	}

	.main-visual-container {
		grid-template-areas: "list" "image" "cta";
		grid-auto-columns: 460px;
		margin-right: 15px;
		gap: 20px;
	}

	.main-visual-container>img {
		width: 100%;
		height: auto;
		margin-top: 0;
		margin-bottom: -23px;
	}

	.main-visual-list>p.smaller {
		font-size: 14px;
	}

	/* Why us section */
	.numbered-item.right {
		margin-right: 0;
		grid-template-areas: "text" "image";
		grid-auto-columns: 100%;
	}

	.numbered-item.left {
		margin-left: 0;
		grid-template-areas: "text" "image";
		grid-auto-columns: 100%;
	}

	.numbered-content {
		padding: 10px 5%;
	}

	.numbered-item.left .numbered-content-image {
		margin-left: calc((100vw - 700px) / 2);
	}

	.numbered-item.right .numbered-content-image {
		margin-right: calc((100vw - 700px) / 2);
	}

	/* Selected by section */
	.selected-by-table>table::after {
		width: 38%;
	}

	.selected-by-table>table {
		width: 95%;
	}

	.selected-by>.inner-container {
		width: 100%;
	}

	.selected-by-table th.th-main {
		font-size: 16px;
	}

	.no-wrap {
		text-wrap: nowrap;
	}

	/* Depth section */
	.depth-section-content {
		padding: 0 15px;
		gap: 20px;
	}

	.depth-section-content-item-inner {
		padding: 15px 18px;
	}

	.depth-section-content-item-inner>h4 {
		font-size: 18px;
	}

	.depth-section-content-item-inner>p {
		font-size: 13px;
	}

	.depth-section-content-item>.yellow-highlight {
		font-size: 20px;
	}

	.depth-section-footer {
		margin: 30px 15px 0;
	}

	.depth-section-footer>p {
		font-size: 18px;
		padding: 22px 0px;
	}

	/* Media section */
	.media>.inner-container>h3:after {
		transform: translate(-50%, -45%);
	}

	.media-content {
		align-items: center;
		flex-direction: column;
	}

	.media-item {
		flex: auto;
		width: 90%;
	}

	.media-chart-container>img {
		width: 100%;
	}

	.media-writers-container>ul,
	.media-number-content>ul {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
	}

	.media-writers-container>ul>li,
	.media-number-content>ul>li {
		flex: 49%;
	}

	.media-number-content>ul>li:before {
		top: 16px;
	}

	/* Voice section */
	.voice {
		background-size: auto 100%;
		background-position: top;
	}

	.voice-content {
		flex-direction: column;
		width: 90%;
		margin: 50px auto 0;
	}

	.voice-item {
		grid-template-areas: "image header title" "text text text";
		grid-template-columns: 100px 155px auto;
		padding: 20px;
	}

	.voice-item>img {
		width: 100%;
	}

	.voice-item>h5 {
		font-size: 20px;
	}

	/* Flow section */
	.flow-item {
		margin: 0 15px;
	}

	.flow-list-item>img {
		height: 60px;
		width: 100px;
	}

	.flow-list>img {
		width: 15px;
	}

	.flow-list-item {
		font-size: 14px;
	}

	/* FAQ section */
	.faq-content {
		margin: 0 15px;
	}

	/* Contact section */
	.trial-form {
		margin: 0 15px;
	}

	.form-label {
		width: 200px;
	}

	.form-label>label {
		font-size: 16px;
	}

	.required-badge {
		font-size: 12px;
		padding: 1px 6px;
	}

	.main-visual>.inner-container::after {
		left: -120px;
		/* for man */
	}

	.site-footer {
		gap: 20px;
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 700px) {

	html,
	body {
		overflow-x: hidden;
		max-width: 100%;
	}

	img {
		max-width: 100%;
	}

	.sp-only {
		display: block;
	}

	.tablet-only {
		display: none;
	}

	.pc-only {
		display: none;
	}

	.inner-container {
		width: 96vw;
		max-width: 100%;
		box-sizing: border-box;
	}

	.numbered-item.right .numbered-content-image {
		margin-right: 4vw;
	}

	.numbered-item.left .numbered-content-image {
		margin-left: 4vw;
	}

	.flow-list {
		flex-direction: column;
	}

	.site-footer {
		flex-direction: column;
	}

	/* Header */
	.header-buttons {
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		width: 100%;
		max-width: 100%;
		flex-direction: row-reverse;
		background: #003fa3cc;
		align-items: center;
		justify-content: center;
		gap: 2vw;
		padding: 3vw 0;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(100%);
		transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
	}

	.header-buttons.is-scroll-visible {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0);
	}

	.header-container>img {
		width: 190px;
		height: auto;
	}

	.header-buttons .main-button,
	.main-button.orange {
		height: 17vw;
	}

	.main-button {
		font-size: 4.6vw;
		padding: 2vw 4vw;
	}

	.main-button.orange {
		display: flex;
		flex-direction: row;
		align-items: center;
		gap: 2vw;
	}

	.main-button.orange>img {
		width: 5vw;
		height: auto;
	}

	/* Main visual */
	.main-visual {
		overflow-x: clip;
	}

	.main-visual>.inner-container {
		padding: 23vw 0 43px;
		width: 92vw;
		max-width: 100%;
		gap: 6.5vw;
		/* min-height: 100vh; */
		/* overflow-x: clip; */
	}

	/* .main-visual-heading{
		margin-top: auto;
	} */

	.main-visual-heading>h1 {
		font-size: 8.6vw;
	}

	.main-visual-heading>h1>span {
		font-size: 2.5vw;
		margin-left: 1vw;
	}

	.main-visual-heading>h2 {
		font-size: 4vw;
		margin-left: -3vw;
	}

	.main-visual-heading>h2>span:first-child {
		font-size: 5vw;
		margin-right: -2vw;
	}

	.main-visual-heading>h2:after {
		top: 65%;
		width: 4vw;
		height: 2px;
	}

	.main-visual-heading>h2>span:first-child:after,
	.main-visual-heading>h2>span:last-child:after {
		top: 1.1vw;
	}

	.main-visual-heading>h1:after,
	.main-visual-heading>h2>span:first-child:after,
	.main-visual-heading>h2>span:last-child:after {
		-webkit-text-stroke: 7px var(--main-shadow);
	}

	.main-visual-container {
		grid-auto-columns: 100%;
		margin-right: 0;
		gap: 10vw;
		width: 100%;
		max-width: 100%;
	}

	.main-visual-list {
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
	}

	.main-visual-container>img {
		margin-bottom: -4vw;
		margin-left: auto;
		margin-right: 0;
		width: 70%;
		max-width: 100%;
	}

	.main-visual-list>p.bigger {
		font-size: 3.55vw;
	}

	.main-visual-list>p>span {
		font-size: 4.58vw;
	}

	.main-visual-list>p.smaller {
		font-size: 2.6vw;
	}

	.main-visual-list>p:after,
	.main-visual-list>p:before {
		width: 4vw;
		height: 7.7vw;
		background-size: contain;
	}

	.main-visual-list>p:after {
		right: 1.3vw;
	}

	.main-visual-list>p:before {
		left: 1.3vw;
	}

	.main-visual-list>p {
		flex: 1 1 calc(50% - 5px);
		min-width: 0;
		max-width: calc(50% - 5px);
		box-sizing: border-box;
		font-size: 3vw;
		height: 12.5vw;
	}

	.main-visual-container>.main-button {
		width: 100%;
		font-size: 5.6vw;
		padding: 4.9vw 0;
	}

	.main-visual-container>.main-button>span {
		font-size: 4vw;
	}

	.main-visual-container>.main-button>img {
		right: 4vw;
		width: 6vw;
	}

	.main-visual>.inner-container::after {
		background-size: contain;
		filter: brightness(0.61);
		width: 80vw;
	}

	/* for woman */
	html					.main-visual>.inner-container::after,
	html[data-style="w"]	.main-visual>.inner-container::after {
		height:	83vw;
		left:	-32vw;
	}

	/* for man */
	html[data-style="m"]	.main-visual>.inner-container::after {
		height:	88vw;
		left:	-28vw;
	}


	.main-visual .main-button.sp-only {
		z-index: 5;
		width: fit-content;
		margin: 0 auto;
		padding: 4vw 6vw;
	}

	/* Why us section */
	.why-us {
		padding: 31vw 0 80px;
	}

	.inner-container>h3 {
		height: auto;
		font-size: 6.15vw;
	}

	.why-us>.inner-container>.numbered-item:nth-child(2) {
		margin-top: 6vw;
	}

	.numbered-content {
		gap: 3vw;
	}

	.numbered-content-header {
		gap: 4vw;
	}

	.numbered-content-header>p {
		font-size: 15.2vw;
	}

	.numbered-content-header>h4 {
		font-size: 6.15vw;
	}

	.numbered-content>h5 {
		font-size: 5.1vw;
	}

	p {
		font-size: 3.55vw;
	}

	.numbered-content-image {
		height: 50.8vw;
	}

	.numbered-content-image>img {
		clip-path: polygon(15vw 0, 100% 0, 100% 100%, 0 100%);
	}

	.numbered-content-header>h4>span:after {
		top: -2vw;
		font-size: 2.5vw;
	}

	.inner-container>h3:after {
		font-size: 17.5vw;
		transform: translate(-50%, -75%);
	}

	/* Selected by section */
	.selected-by {
		padding: 26vw 0 100px;
	}

	.selected-by>.inner-container>h3:after {
		transform: translate(-50%, -65%);
	}

	.selected-by>.inner-container>p {
		margin-top: 3vw;
	}

	.selected-by-table td,
	.selected-by-table th {
		font-size: 3.1vw;
		padding: 2vw 1vw;
	}

	.selected-by-table th.th-main {
		font-size: 3.1vw;
	}

	.td-main>span.sp-only {
		display: inline;
	}

	.selected-by-table>table::after {
		border: 1.5vw solid var(--main-color);
		height: calc(100% + 1.5vw);
		top: -0.7vw;

		/* width: 33%; */
		width: 40%;
	}

	/* Depth section */
	.depth-section {
		padding: 29vw 0 3vw;
	}

	.depth-section>.inner-container>h3:after {
		transform: translate(-50%, -75%);
	}

	.depth-section-content {
		flex-direction: column;
		padding: 0 3vw;
		gap: 10vw;
		margin-top: 10vw;
	}

	.depth-section-content-item-inner {
		padding: 5vw 5vw;
	}

	.depth-section-content-item-inner>h4,
	.depth-section-content-item>.yellow-highlight,
	.depth-section-content-item>.depth-section-item-title {
		font-size: 5.1vw;
	}

	.depth-section-content-item-inner>p {
		font-size: 3.55vw;
	}

	.depth-section-footer>p {
		font-size: 4.56vw;
		padding: 4vw 0;
	}

	.not-show-on-sp {
		display: none;
	}

	.depth-section-content-item>.yellow-highlight {
		margin-top: 5vw;
	}

	.depth-section-footer {
		margin: 10vw 3%;
	}

	/* Media section */
	.media {
		padding: 28vw 0 12vw;
	}

	.media>.inner-container>h3:after {
		transform: translate(-50%, -65%);
	}

	.media-content {
		margin-top: 6vw;
		gap: 6vw;
	}

	.media-item {
		width: 94%;
		padding: 4vw 3vw;
	}

	.media-item>h4 {
		font-size: 4.56vw;
		padding-bottom: 2vw;
		margin-bottom: 4vw;
	}

	.media-number-header {
		gap: 3vw;
		padding-bottom: 5vw;
		margin-bottom: 4vw;
	}

	.media-number-header>p {
		font-size: 3.85vw;
	}

	.media-number-header>p>span {
		font-size: 12vw;
	}

	.media-number-content>p {
		gap: 1.5vw;
	}

	.media-number-content>img {
		width: 19vw;
	}

	.media-writers-container>ul>li,
	.media-number-content>ul>li {
		flex: 53%;
	}

	.media-number-content>ul>li {
		padding-left: 3vw;
		font-size: 3.3vw;
	}

	.media-number-content>ul>li:before {
		top: 4vw;
		width: 1vw;
		height: 1vw;
	}

	.media-chart-container>p {
		font-size: 3.1vw;
		margin-top: -3vw;
	}

	.media-writers-container>ul>li {
		font-size: 3.85vw;
	}

	.media-topics-container>p {
		font-size: 4.4vw;
	}

	/* Voice section */
	.voice {
		padding: 27vw 0 12vw;
	}

	.voice>.inner-container>h3:after {
		transform: translate(-50%, -70%);
	}

	.voice>.inner-container>h4 {
		margin-top: 1vw;
		font-size: 5.1vw;
	}

	.voice-content {
		width: 92%;
		margin: 6vw auto 0;
	}

	.voice-item {
		grid-template-areas: "image header" "title title" "text text";
		padding: 7vw 5vw 4vw;
		grid-template-columns: 34vw auto;
	}

	.voice-item-name {
		font-size: 5.1vw;
	}

	.voice-item-age {
		font-size: 2.85vw;
	}

	.voice-item>h5 {
		font-size: 5.1vw;
	}

	/* Flow section */
	.flow {
		padding: 26vw 0 12vw;
	}

	.flow>.inner-container>h3:after {
		transform: translate(-50%, -60%);
	}

	.flow-content {
		margin-top: 8vw;
	}

	.flow-item {
		margin: 0 4vw;
	}

	.flow-item>h4 {
		font-size: 5.1vw;
		margin-bottom: 8vw;
		padding: 1.5vw 0;
	}

	.flow-list {
		align-items: flex-start;
		gap: 3vw;
	}

	.flow-list-item {
		font-size: 3.55vw;
		gap: 4vw;
		flex-direction: row;
	}

	.flow-list-item>.flow-number {
		font-size: 11vw;
	}

	.flow-list-item>img {
		width: 24vw;
		height: 14.4vw;
	}

	.flow-list-item>p {
		font-size: 4.1vw;
		text-align: left;
	}

	.flow-list>img {
		margin: auto;
		transform: rotate(90deg);
		width: 7vw;
	}

	/* FAQ section */
	.faq {
		padding: 28vw 0px 12vw;
	}

	.faq>.inner-container>h3:after {
		transform: translate(-50%, -60%);
	}

	.faq-content {
		margin: 8vw 4vw 0;
		gap: 3vw;
	}

	.faq-question-container {
		align-items: stretch;
		gap: 3vw;
		padding-right: 2vw;
	}

	.faq-mark {
		font-size: 5.1vw;
		width: 11vw;
		padding-bottom: 1.5vw;
	}

	.faq-question-text {
		font-size: 4.55vw;
		padding: 1vw 0;
		line-height: 1.8;
	}

	/* Contact section */
	.contact {
		padding: 28vw 0 12vw;
	}

	.contact>.inner-container>h3:after {
		transform: translate(-50%, -65%);
	}

	.contact .inner-container>h4 {
		margin-top: 1vw;
	}

	.form-body {
		margin-top: 10vw;
		padding: 6vw 3vw;
	}

	.form-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 2vw;
		padding-bottom: 4vw;
		margin-bottom: 4vw;
	}

	.form-label {
		width: fit-content;
		gap: 4vw;
	}

	.form-label>label {
		font-size: 3.55vw;
	}

	.required-badge {
		font-size: 2.7vw;
	}

	.form-field {
		width: 100%;
	}

	.form-address-postal {
		gap: 3vw;
	}

	.form-address-postal-inputs {
		gap: 2vw;
		align-content: center;
	}

	.form-address-postal-inputs>input {
		width: 15vw;
	}

	.form-address-autofill {
		padding: 1vw 3.4vw;
		font-size: 3vw;
		max-height: 14vw;
	}

	.form-survey-list>li {
		margin: 3vw 0;
	}

	.form-survey-list>li>label {
		gap: 3vw;
		font-size: 3.5vw;
	}

	.form-survey-list>li>label>input {
		padding: 2vw;
		width: 6vw;
		height: 6vw;
	}

	.form-submit-area {
		margin-top: 8vw;
	}

	.form-confirm {
		margin-top: 10vw;
		padding: 6vw 3vw;
	}

	.form-confirm-lead {
		font-size: 4vw;
		margin-bottom: 5vw;
	}

	.form-confirm-row {
		flex-direction: column;
		gap: 2vw;
		padding-bottom: 4vw;
		margin-bottom: 4vw;
	}

	.form-confirm-label {
		width: 100%;
		font-size: 3.55vw;
	}

	.form-confirm-value {
		font-size: 3.5vw;
	}

	.form-actions {
		gap: 3vw;
	}

	.form-submit-area .form-actions .main-button {
		width: 41vw;
		text-align: center;
		justify-content: center;
		padding: 3vw 4vw;
		height: 13vw;
	}

	.form-notice {
		font-size: 3.2vw;
	}

	.trial-form {
		margin: 0 4vw;
	}

	input {
		padding: 3vw 1.5vw;
	}

	/* Site footer */
	.site-footer {
		gap: 4vw;
		padding: 6vw 0 28vw;
		align-items: center;
	}

	.site-footer>img {
		width: 80vw;
	}

	.site-footer>p {
		font-size: 3.1vw;
	}

	.form-errors li {
		font-size: 3.2vw;
	}

	.thanks-container {
		width: 100%;
	}

	.thanks-container>h1 {
		font-size: 7vw;
		margin: 7vw 0;
	}

	.thanks-container>p {
		font-size: 3.7vw;
	}

	.thanks-container>.thanks-notice {
		font-size: 3.2vw;
	}

	.thanks-container>.main-button {
		width: 60vw;
	}

	.thanks-main {
		height: calc(100vh - 60vw);
		min-height: 105vw;
	}
}