@charset "UTF-8";
/* ========================================================================== 
 * Responsive 
 * ========================================================================== */ 

/*PCのみ表示(640px以下非表示)*/
@media screen and (max-width: 640px) {
	.visible-pc {
		display: none !important;
	}
}
/*SPのみ表示(641px以上非表示)*/
@media screen and (min-width: 641px) {
	.visible-sp {
		display: none !important;
	}
}

/* navigation */
/*PCのみ表示(900px以下非表示)*/
@media screen and (max-width: 900px) {
	.navi--visible-pc {
		display: none !important;
	}
}
/*SPのみ表示(901px以上非表示)*/
@media screen and (min-width: 901px) {
	.navi--visible-sp {
		display: none !important;
	}
}
/* ==========================================================================
 * Font face
 * ========================================================================== */
.roboto {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}
.palt {
	font-feature-settings: "palt";
}

/* ==========================================================================
 * Root
 * ========================================================================== */
*,
::before,
::after {
	background-repeat: no-repeat;
	box-sizing: border-box;
}
html {
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	font-size: 62.5%;
}
body {
	margin: 0;
	font-family: "Noto Sans JP", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", Meiryo, Osaka, sans-serif;
	font-size: 1.6em;
	font-size: 1.6rem;
	line-height: 1.5;
	background-color: #fff;
}

/* ==========================================================================
 * HTML5 display definitions
 * ========================================================================== */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
	display: block;
}
audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}
audio:not([controls]) {
	display: none;
	height: 0;
}

/* ==========================================================================
 * Anchor
 * ========================================================================== */
a:link,
a:visited {
	background-color: transparent;
	color: #4f7aac;
	text-decoration: none;
}
a:active,
a:hover {
	outline: 0;
	text-decoration: underline;
}

/* ==========================================================================
 * Embedded
 * ========================================================================== */
img {
	max-width: 100%;
	height: auto;
	border: 0;
	vertical-align: bottom;
}
svg:not(:root) {
	overflow: hidden;
}

/* ==========================================================================
 * Grouping
 * ========================================================================== */
figure {
	margin: 0;
}
hr {
	box-sizing: content-box;
	height: 0;
	border: none;
	border-top: 1px solid #bbb;
}
dd {
	margin-left: 0;
}

/* ==========================================================================
 * Float
 * ========================================================================== */
.clear {
	clear: both;
}
.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}
.clearfix:after {
	clear: both;
}

/* ==========================================================================
 * List
 * ========================================================================== */
ul,
ol {
	padding: 0;
}
ul {
	margin: 0;
	list-style: none;
}
ul.list-disc {
	margin-left: 1.55em;
	list-style: disc;
}
ul.list-annotation {
	margin-left: 1.3em;
}
ul.list-annotation li::before {
	margin-left: -1.3em;
	content: "※\0020";
}
ol {
	margin-left: 1.3em;
}
ol.list-annotation {
	margin-left: 2em;
	padding: 0;
	counter-reset: number;
	list-style: none;
}
ol.list-annotation li::before {
	margin-left: -2em;
	counter-increment: number;
	content: "※"counter(number)"\0020";
}
ul.list-disc li + li,
ul.list-annotation li + li,
ol li + li {
	margin-top: 8px;
}

/* ==========================================================================
 * Text
 * ========================================================================== */
b,
strong {
	font-weight: bold;
}
mark {
	background: #ff0;
	color: #000;
}
small,
.txt-small{
	font-size: 80%;
}
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sub {
	bottom: -0.25em;
}
sup {
	top: -0.5em;
}
address {
	font-style: normal;
}
h1,
.h1 {
	font-size: 3.2rem;
	line-height: 1.2;
	margin: 0;
}
h2,
.h2 {
	font-size: 4.5rem;
	line-height: 1.2;
	margin: 0;
	color: #222222;
}
h3,
.h3 {
	font-size: 1.8rem;
	line-height: 1.2;
	margin: 0;
}
h4,
.h4 {
	font-size: 1.6rem;
	line-height: 1.2;
	margin: 0;
}
p {
	margin: 0;
	color: #222222;
	font-size: 2rem;
}
p + p {
	margin-top: .5em;
	margin-bottom: 0;
	color: #222222;
	font-size: 2rem;
}
.txt-left {
	text-align: left;
}
.txt-center {
	text-align: center;
}
.txt-right {
	text-align: right;
}
.txt-unbold {
	font-weight: normal;
}
.txt-bold {
	font-weight: bold;
}
.txt-emphasis {
	color: #e74c3c;
}
.txt-notes {
	color: #7f8c8d;
}

.txt-26 {
	font-size: 2.6rem;
}
.txt-30 {
	font-size: 3rem;
}
.txt-80 {
	font-size: 80%;
}
.txt-140 {
	font-size: 140%;
}
.txt-230 {
	font-size: 230%;
}
.txt-yellow {
	color: #ffd700;
}
.txt-red {
	color: #c21732;
}

@media screen and (max-width: 640px) {
	h2,
	.h2 {
		font-size: 11.2vw;
		line-height: 1.2;
		margin: 0;
		color: #222222;
	}
	.txt-26 {
		font-size: 5.3vw;
	}
	.txt-30 {
		font-size: 6.3vw;
	}
	p {
		margin: 0;
		color: #222222;
		font-size: 5vw;
	}
	p + p {
		margin-top: .5em;
		margin-bottom: 0;
		color: #222222;
		font-size: 5vw;
	}
}

/* ==========================================================================
 * Table
 * ========================================================================== */
table {
	border-collapse: collapse;
	border-spacing: 0;
}
td,
th {
	padding: 0;
}

@media screen and (max-width: 640px) {
	small,
	.txt-small{
		font-size: 63%;
	}
}
/* ==========================================================================
 * Form
 * ========================================================================== */
button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
	border: 1px solid #999;
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
	width: 100%;
	padding: 5px;
}
button {
	overflow: visible;
}
button,
select {
	text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}
button[disabled],
html input[disabled] {
	cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}
input {
	line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}
input[type="search"] {
	-webkit-appearance: textfield;
	box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}
textarea {
	overflow: auto;
}

/* ==========================================================================
 * Spacing
 * ========================================================================== */
.margin-none  {margin:           0px !important;}
.padding-none {padding:          0px !important;}

.margin-T0    {margin-top:       0px !important;}
.margin-T5    {margin-top:       5px !important;}
.margin-T10   {margin-top:      10px !important;}
.margin-T15   {margin-top:      15px !important;}
.margin-T20   {margin-top:      20px !important;}
.margin-T25   {margin-top:      25px !important;}
.margin-T30   {margin-top:      30px !important;}
.margin-T35   {margin-top:      35px !important;}
.margin-T40   {margin-top:      40px !important;}

.margin-T45   {margin-top:      45px !important;}
.margin-T50   {margin-top:      50px !important;}
.margin-T60   {margin-top:      60px !important;}
.margin-T70   {margin-top:      70px !important;}
.margin-T80   {margin-top:      80px !important;}
.margin-T90   {margin-top:      90px !important;}
.margin-T100  {margin-top:     100px !important;}

.margin-R0    {margin-right:     0px !important;}
.margin-R5    {margin-right:     5px !important;}
.margin-R10   {margin-right:    10px !important;}
.margin-R15   {margin-right:    15px !important;}
.margin-R20   {margin-right:    20px !important;}

.margin-B0    {margin-bottom:    0px !important;}
.margin-B5    {margin-bottom:    5px !important;}
.margin-B10   {margin-bottom:   10px !important;}
.margin-B15   {margin-bottom:   15px !important;}
.margin-B20   {margin-bottom:   20px !important;}

.margin-L0    {margin-left:      0px !important;}
.margin-L5    {margin-left:      5px !important;}
.margin-L10   {margin-left:     10px !important;}
.margin-L15   {margin-left:     15px !important;}
.margin-L20   {margin-left:     20px !important;}

.padding-T0   {padding-top:      0px !important;}
.padding-T5   {padding-top:      5px !important;}
.padding-T10  {padding-top:     10px !important;}
.padding-T15  {padding-top:     15px !important;}
.padding-T20  {padding-top:     20px !important;}
.padding-T25  {padding-top:     25px !important;}
.padding-T30  {padding-top:     30px !important;}
.padding-T35  {padding-top:     35px !important;}
.padding-T40  {padding-top:     40px !important;}
.padding-T45  {padding-top:     45px !important;}
.padding-T50  {padding-top:     50px !important;}
.padding-T60  {padding-top:     60px !important;}
.padding-T70  {padding-top:     70px !important;}
.padding-T80  {padding-top:     80px !important;}
.padding-T90  {padding-top:     90px !important;}
.padding-T100 {padding-top:    100px !important;}

.padding-R0   {padding-right:    0px !important;}
.padding-R5   {padding-right:    5px !important;}
.padding-R10  {padding-right:   10px !important;}
.padding-R15  {padding-right:   15px !important;}
.padding-R20  {padding-right:   20px !important;}

.padding-B0   {padding-bottom:   0px !important;}
.padding-B5   {padding-bottom:   5px !important;}
.padding-B10  {padding-bottom:  10px !important;}
.padding-B15  {padding-bottom:  15px !important;}
.padding-B20  {padding-bottom:  20px !important;}

.padding-L0   {padding-left:     0px !important;}
.padding-L5   {padding-left:     5px !important;}
.padding-L10  {padding-left:    10px !important;}
.padding-L15  {padding-left:    15px !important;}
.padding-L20  {padding-left:    20px !important;}

/* ==========================================================================
 * Common
 * ========================================================================== */
#page-container {
	max-width: 2000px;
	margin: 0 auto;
}
.inner--width {
	max-width: 920px;
	width: 90%;
	margin: 0 auto;
}
@media screen and (max-width: 640px) {
	.inner--width {
		width: 90%;
		margin: 0 auto;
	}
	#page--container {
		max-width: 640px;
		overflow: hidden;
		min-width: unset;
	}
	
}

/*-------------------- Back to Top --------------------*/
a.backtotop {
	position: fixed;
	bottom: 15%;
	right: 5%;
	width: 40px;
	height: 40px;
	padding: 38px 0 0;
	background-color: #ccc;
	color: #fff;
	text-align: center;
	font-size: 14px;
	cursor: pointer;
	opacity: .5;
	border-radius: 50%;
	z-index: 2;
}
a.backtotop::before {
	content: "";
	position: absolute;
	top: 10px;
	left: 10px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 10px 17.3px 10px;
	border-color: transparent transparent #ffffff transparent;
}

/* ==========================================================================
 * Header
 * ========================================================================== */
@media screen and (min-width: 641px) {
	.nav {
		justify-items: center;
		position: fixed;
		z-index: 9000;
		max-width: 2000px;
		width: 100%;
	}
	.hd__conteiner {
		background-color: #fff;
		border-radius: 50px;
		box-shadow: 0 2px 2px rgba(0,0,0,0.1);
		margin: 10px 0 0;
		padding: 0 50px;
		width: 90%;
	}
	.hd__flex {
		display: flex;
		justify-content: space-between;
		padding: 10px;
		align-items: center;
	}
	.hd__gnav--left {
		width: 20%;
	}
	.hd__right--flex .hd__right-list + ul {
		width: 30%;
	}
}
.hd__right--flex {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	width: 80%;
}
.hd__right--flex .hd__right-list {
	display: flex;
    justify-content: space-evenly;
    width: 100%;
	align-items: center;
}
.hd__right--flex .hd__right-list a {
	color: #222222;
	font-size: 1vw;
	font-weight: 500;
	text-align: center;
}

.hd__right-list li.active a,
.hd__right-list li.hover-active a {
	background-color: #c21732;
	color: #fff;
	text-decoration: none;
}

.hd__right-list li a {
	transition: all 0.3s ease;
	display: inline-block;
	padding: 8px 11px; /* 常にpaddingを適用 */
	border-radius: 20px;
}

/* ホバー時のスタイル */
.hd__right-list li a:hover {
	background-color: #c21732;
	color: #fff;
	text-decoration: none;
}

.hd__cta:hover {
	transform: scale(1.02);
}


@media screen and (max-width: 1250px) {
	.hd__right--flex .hd__right-list a {
		font-size: 1.6rem;
	}
}
@media screen and (max-width: 1100px) {
	.hd__right--flex .hd__right-list a {
		font-size: 1.4rem;
	}
}
@media screen and (max-width: 970px) {
	.hd__right--flex .hd__right-list a {
		font-size: 1.2rem;
	}
}
@media screen and (max-width: 901px) {
	.nav {
        position: static;
    }
	.hd__conteiner {
		background-color: #fff;
        box-shadow: none;
		border-radius: 0;
		margin: 0;
        padding: 10px 5%;
		width: 100%;
	}
	.hd__gnav--left {
		width: 70%;
	}
	.hd__right--flex + div {
		text-align: right;
		padding: 0 6% 0 0;
		width: 30%;
	}
	.hd__flex {
		align-items: center;
		display: flex;
		width: 100%;
	}
	.gnavi__link {
		color: #085599;
		font-weight: 700;
		background-color: #fff;
		text-decoration: none;
	}
	
	/* hamburger menu */
	.menu__btn {
		align-items: center;
		height: 50px;
		justify-content: center;
		position: fixed;
		z-index: 10000;
		width: 30px;
	}
	.menu__btn:before {
		content: "";
        background-color: #b6112a;
        border-radius: 5px;
        width: 33px;
        height: 33px;
        display: block;
        position: absolute;
        top: -15px;
        right: 1px;
	}	
	.menu__btn span,
	.menu__btn span:before,
	.menu__btn span:after {
		content: '';
		background: #fff;
		border-radius: 3px;
		display: block;
		height: 3px;
		position: absolute;
		width: 25px;
	}
	.menu__btn span:before {
		bottom: 8px;
	}
	.menu__btn span:after {
		top: 8px;
	}
	#menu__btn--check:checked ~ .menu__btn span {
		background-color: rgba(255, 255, 255, 0);
	}
	#menu__btn--check:checked ~ .menu__btn span::before {
		bottom: 0;
		transform: rotate(45deg);
	}
	#menu__btn--check:checked ~ .menu__btn span::after {
		top: 0;
		transform: rotate(-45deg);
	}
	#menu__btn--check {
		display: none;
	}
	.gnavi__hamburger-menu {
		background: #fff;
		height: 100%;
		position: fixed;
		top: 0;
		left: 100%;
		z-index: 9999;
		transition: all 0.5s;
		width: 100%;
	}
	#menu__btn--check:checked ~ .gnavi__hamburger-menu {
		left: 0;
	}
	.gnavi__hamburger-menu ul {
		padding: 70px 10px 0;
	}
	.gnavi__hamburger-menu ul li {
		border-bottom: solid 1px #b6112a;
		list-style: none;
		padding: 0 0 0 3%;
		width: 100%;
	}
	.gnavi__hamburger-menu ul li a {
		box-sizing: border-box;
		color: #000;
		display: block;
		font-size: 15px;
		padding: 18px 0 15px 0;
		position: relative;
		text-decoration: none;
		text-align: left;
		width: 100%;
	}
	.gnavi__hamburger-menu ul li.main__cta a {
		margin: 0 auto;
		width: 80%;
	}
	
	.gnavi__hamburger-menu ul li a::before {
		border-top: solid 2px #b6112a;
		border-right: solid 2px #b6112a;
		content: "";
		height: 7px;
		transform: rotate(45deg);
		position: absolute;
		right: 11px;
		top: 26px;
		width: 7px;
	}
	.gnavi__hamburger-menu ul li:last-child {
		border-bottom: none;
		margin: 20px 0 0;
		padding: 0;
		text-align: center;
	}
	.gnavi__hamburger-menu ul li:last-child a::before {
		border-top: none;
		border-right: none;
		display: none;
	}
	.navi__link {
		background: none;
	}
	.navi__link a {
		color: #000 !important;
		text-align: center !important;
	}
	.navi__link a::before {
		border-top: solid 2px #000 !important;
		border-right: solid 2px #000 !important;
	}
}
@media screen and (max-width: 640px) {
	.hd__gnav--logo {
		width: 47%;
	}
}

/* ==========================================================================
 * keyVisual
 * ========================================================================== */
.keyVisual {
	background: url("../images/pc/fv_bg.jpg") no-repeat center center/ cover;
	height: 720px;
	padding: 150px 0 75px;
}
.fv__award--flex {
	display: flex;
	justify-content: flex-start;
    align-items: flex-start;
	margin: 30px 0 0;
	gap: 5px;
}
.fv__award--6month {
	position: relative;
}
.fv__award--6month small {
	position: absolute;
	bottom: 0;
	left: 80px;
	text-shadow: 3px 3px 0 #fff, -3px 3px 0 #fff, -3px -3px 0 #fff,  3px -3px 0 #fff;
}
.fv__award--0store {
	position: relative;
}
.fv__award--0store small {
	position: absolute;
	bottom: -17px;
    left: 66px;
	text-shadow: 3px 3px 0 #fff, -3px 3px 0 #fff, -3px -3px 0 #fff,  3px -3px 0 #fff;
	text-align: center;
}
@media screen and (max-width: 640px) {
	.keyVisual {
		background: url("../images/sp/fv@2x.jpg") no-repeat center center/ cover;
		height: 142vw;
		padding: 0;
	}
	.fv__award {
		background-color: #f3f2f3;
		text-align: center;
		padding: 5% 0 10%;;
	}
	.fv__award img {
		width: 50%;
	}
	.fv__award--flex {
		display: flex;
		justify-content: flex-start;
		align-items: flex-start;
		margin: 3% 0 0;
		gap: 5px;
	}
	.fv__award--6month {
		position: relative;
	}
	.fv__award--6month small {
		position: absolute;
		bottom: -2%;
		left: 35%;
        right: 35%;
		text-shadow: none;
		font-size: 2.8vw;
	}
	.fv__award--0store {
		position: relative;
	}
	.fv__award--0store img {
		width: 94%;
	}
	.fv__award--0store small {
		position: absolute;
		bottom: -22%;
        left: 21%;
		text-shadow: none;
		font-size: 2.8vw;
		line-height: 1.2em;
	}
}

/* ==========================================================================
 * main
 * ========================================================================== */
main {
	overflow-x: hidden;
}
picture {
	display: block;
}

/* ==========================================================================
 * Cta
 * ========================================================================== */
.cta {
	background-color: #c21732;
	padding: 50px 0 70px;
	text-align: center;
}
.cta__btn--txt {
	font-size: 3rem;
	color: #fff;
	margin-bottom: 5px;
}
.cta__btn {
	cursor: pointer;
	background-repeat: no-repeat;
	width: fit-content;
	margin: 0 auto;
	display: inline-block;
}
.cta__btn:hover img {
    transform: scale(1.02);
}
.cta__knowledge {
	margin: 60px 0 0;
}
.card-list {
	margin-top: 60px;
}

@media screen and (max-width: 640px) {
	.cta {
		background-color: #c21732;
		padding: 6% 0 10%;
		text-align: center;
	}
	.cta__btn--txt {
		font-size: 7vw;
		color: #fff;
		margin-bottom: 1%;
	}
	.cta__btn {
		cursor: pointer;
		background-repeat: no-repeat;
		width: fit-content;
		margin: 0 auto;
		display: inline-block;
	}
	.cta__btn:hover img {
		transform: scale(1.02);
	}
	.cta__knowledge {
		margin: 10% 0 0;
	}
	
	.card-list {
		margin-top: 10%;
	}
	.more__content__sp {
        position: relative;
        height: auto;
        overflow: hidden;
        max-height: 110vw;
        transition: max-height 0.8s;
    }
	.more__content__sp.open {
		max-height: none;
		transition: max-height 0.8s;
		padding-bottom: 22%;
	}
	.more__content__sp::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 1;
        display: block;
        width: 100%;
        height: 210%;
        transition: 0.1s;
        background: linear-gradient(to bottom, transparent 80%, #fff 90%, #ffffff 100%);
    }
	.more__content__sp.open::after {
		z-index: -1;
		opacity: 0;
	}
	.more__btn__sp {
        position: absolute;
        width: 50%;

        font-family: ryo-gothic-plusn, sans-serif;
        font-style: normal;
        font-size: 4.7vw;
        font-weight: 600;
        background-color: #fff;
        color: #c21732;
        text-align: center;
        padding: 2% 0;
        margin: 0 auto;
        left: 50%;
        border-radius: 8px;
		z-index: 50;
        padding-right: 3px;
        bottom: 10px;
		transform: translate(-50%);
		transition: 0.5s;
    }
	.more__btn__sp:hover {
		transform: translate(calc(-50% + 3px),3px);
		box-shadow: 0 0 #333;
		background: #fff;
		color: #c21732;
	}
	.more__btn__sp::after {
        content: "";
        border: 0;
        border-top: solid 3px #c21732;
        border-right: solid 3px #c21732;
        border-radius: 1px;
        transform: rotate(135deg);
        position: absolute;
        margin-top: -7px;
        transition: 0.4s;
        width: 9px;
        height: 9px;
        top: 50%;
        right: 22px;
    }
	.more__btn__sp:hover::after {
		border-top: solid 3px #c21732;
        border-right: solid 3px #c21732;
	}
	.more__btn__sp.open {
		bottom: 3px;
		margin-top: 16px;
	}
	.more__btn__sp.open::after {
        content: "";
        border: 0;
        border-top: solid 3px #fff;
        border-right: solid 3px #fff;
        border-radius: 1px;
        transform: rotate(-43deg);
        position: absolute;
        margin-top: -7px;
        transition: 0.4s;
        width: 9px;
        height: 9px;
        top: 60%;
        right: 22px;
    }
	.more__btn__sp.open:hover::after {
		border-top: solid 3px #c21732;
        border-right: solid 3px #c21732;
	}
}
/* ==========================================================================
 * Media
 * ========================================================================== */
.media {
	background: url("../images/pc/media_bg.jpg") no-repeat center center/ cover;
	padding: 85px 0;
	text-align: center;
}
.media__ttl {
	margin-bottom: 60px;
}
.media__flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.media__flex li {
	margin-bottom: 40px;
}
.media__sub {
	background-color: #293b42;
	color: #fff;
	width: 289px;
	padding: 14px 0 14px;
	font-size: 2rem;
	height: 80px;
	align-items: center;
	display: flex;
    justify-content: center;
	margin-top: 15px;
	border-radius: 50px;
	font-weight: 500;
}
.media__sub p {
	color: #fff;
}
.media__flex small {
	text-align: left;
	display: block;
	margin-top: 10px;
}

@media screen and (max-width: 640px) {
	.media {
		background: url("../images/sp/media_bg@2x.jpg") no-repeat center center/ cover;
		padding: 13% 0;
		text-align: center;
	}
	.media__ttl {
		margin-bottom: 12%;
		width: 90%;
		display: inline-block;
	}
	.media__flex {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.media__flex li {
		margin-bottom: 2%;
		width: 48%;
	}
	.media__flex li:nth-child(3),
	.media__flex li:nth-child(4) {
		margin-bottom: 6%
	}
	.media__sub {
		background-color: #293b42;
		color: #fff;
		width: 100%;
        padding: 3% 0 3%;
        height: 20%;
        align-items: center;
        display: flex;
        justify-content: center;
        margin-top: 4%;
        border-radius: 50px;
	}
	.media__sub p {
		color: #fff;
		font-size: 3vw;

	}
	.media__flex small {
		text-align: left;
		display: block;
		margin-top: 2%;
	}
}
/* ==========================================================================
 * Voice
 * ========================================================================== */
.voice {
	background: url("../images/pc/voice_bg.jpg") no-repeat center center/ cover;
	padding: 110px 0 80px;
	text-align: center;
	position: relative;
}
.voice__tri {
	position: absolute;
	top: -30px;
    left: 30%;
    right: 30%;
	z-index: 100;
}
.voice__subttl {
	margin: 70px 0 10px;
}
.voice__box {
	background-color: #fff;
	border-radius: 10px;
	display: flex;
	justify-content: space-between;
	font-size: 2rem;
	text-align: left;
	padding: 35px 35px 15px;
	box-shadow: 3px 3px #d1c4ac;
}
.voice__box dt {
	background-color: #293b42;
	color: #fff;
	border-radius: 35px;
	padding: 5px 35px;
	display: inline-block;
	margin-bottom: 10px;
}
.voice__box dd {
	text-align: justify;
	margin-bottom: 20px;
	padding-left: 35px;
}
.voice__box--txt {
	width: 72%;
	order: 1;
}
.voice__box--img {
	order: 2;
}
.voice__box--img p {
	margin-top: 17px;
	font-weight: 500;
}

@media screen and (max-width: 640px) {
	.voice {
		background-color: #faf5ec;
		padding: 13% 0 5%;
		text-align: center;
		position: relative;
	}
	.voice__tri {
		position: absolute;
		top: -20px;
		left: 30%;
		right: 30%;
		z-index: 1;
	}
	.voice__subttl {
		margin: 13% 0 0;
	}
	.voice__box {
		background: none;
		border-radius: 10px;
		display: grid;
		justify-content: space-between;
		font-size: 2rem;
		text-align: left;
		padding: 0;
		box-shadow: none;
	}
	.voice__box dt {
		background-color: #293b42;
		color: #fff;
		border-radius: 35px;
		padding: 2% 7%;
		display: inline-block;
		margin-bottom: 5%;
		font-size: 5.6vw;
	}
	.voice__box dd {
		text-align: justify;
		margin-bottom: 7%;
		padding-left: 0;
		font-size: 5vw;
	}
	.voice__box--txt {
		width: 100%;
		order: 2;
	}
	.voice__box--img {
		order: 1;
		display: flex;
		gap: 4%;
		align-items: center;
		margin-bottom: 7%;
	}
	.voice__box--img picture {
		width: 40%;
	}
	.voice__box--img p {
		margin-top: 0;
		font-size: 5vw;
	}
}
/* ==========================================================================
 * Problem
 * ========================================================================== */
.problem {
	background-color: #f2f2f2;
	padding: 120px 0 45px;
	text-align: center;
}
.problem__check {
	margin: 50px 0;
}

@media screen and (max-width: 640px) {
	.problem {
		background-color: #f2f2f2;
		padding: 13% 0;
		text-align: center;
	}
	.problem__check {
		margin: 10% 0;
	}
}
/* ==========================================================================
 * Solution
 * ========================================================================== */
.solution {
	background-color: #fff;
	padding: 95px 0 80px;
	text-align: center;
}
.solution__point01 {
	background-color: #fff;
	border: 5px solid #333333;
	border-radius: 10px;
	position: relative;
	margin-top: 120px;
	padding: 90px 35px 60px;
}
.solution__point01--number {
	position: absolute;
	top: -55px;
	left: 30%;
	right: 30%;
}
.solution__point01--ttl p {
	background-color: #293b42;
	color: #fff;
	font-size: 3.5rem;
	border-radius: 30px;
	padding: 3px 50px;
    display: inline-block;
	margin: 0 0 10px;
	font-weight: 500;
}
.solution__point01--knowledge {
	background-color: #faf5ec;
	border-radius: 10px;
	padding: 30px 30px;
	margin: 45px 0 20px;
}
.solution__point01--knowledge p {
	font-size: 2.8rem;
	margin-bottom: 25px;
}
.solution__point01--knowledge p::before {
	content: "";
	display: inline-block;
	background: url("../images/pc/point01_check_icon.png") no-repeat center center/ cover;
	width: 38px;  /* アイコンの幅を指定 */
	height: 30px; /* アイコンの高さを指定 */
	margin-right: 5px; /* テキストとの間隔 */
	vertical-align: middle; /* テキストと縦位置を揃える */
}

.solution__point02 {
	background-color: #fff;
	border: 5px solid #333333;
	border-radius: 10px;
	position: relative;
	margin-top: 120px;
	padding: 90px 35px 60px;
}
.solution__point02--number {
	position: absolute;
	top: -55px;
	left: 30%;
	right: 30%;
}
.solution__point02--problem {
	margin: 15px 0 50px;
}

.solution__point03 {
	background-color: #fff;
	border: 5px solid #333333;
	border-radius: 10px;
	position: relative;
	margin-top: 120px;
	padding: 90px 35px 60px;
}
.solution__point03--number {
	position: absolute;
	top: -55px;
	left: 30%;
	right: 30%;
}
.solution__point03--support p {
	background-color: #293b42;
	color: #fff;
	font-size: 3.5rem;
	border-radius: 30px;
	padding: 3px 50px;
    display: inline-block;
	margin: 0 0 10px;
	font-weight: 500;
}
.solution__point03--txt {
	margin: 30px 0;
}

@media screen and (max-width: 640px) {
	.solution {
		background-color: #fff;
		padding: 13% 0;
		text-align: center;
	}
	.solution__ttl {
		width: 90%;
		display: inline-block;
	}
	.solution__point01 {
		background-color: #fff;
		border: 5px solid #333333;
		border-radius: 10px;
		position: relative;
		margin-top: 25%;
		padding: 17% 3% 12%;
	}
	.solution__point01--number {
		position: absolute;
		width: 55%;
        top: -30px;
        left: 20%;
        right: 30%;
	}
	.solution__point01--ttl p {
		background-color: #293b42;
		color: #fff;
		font-size: 5.6vw;
		border-radius: 30px;
		padding: 3%;
		display: inline-block;
		margin: 0 0 3%;
		width: 100%;
	}
	.solution__point01--knowledge {
		background-color: #faf5ec;
		border-radius: 10px;
		padding: 0% 5% 10%;
        margin: 5% 0 7%;
	}
	.solution__check--flex {
		display: flex;
		align-items: center;
		text-align: left;
		gap: 2vw; /* アイコンとテキストの間隔 */
	}
	.solution__check--flex img {
		width: 15%;
	}
	.solution__point01--knowledge p {
		font-size: 5.6vw;
		text-align: left;
		margin-bottom: 5%;
	}
	.solution__point01--knowledge p::before {
		content: "";
		display: block;
		background: none;
		width: 6vw;
		height: 6vw;
		flex-shrink: 0; /* アイコンのサイズを固定 */
		margin-top: 0.5vw; /* テキストとの縦位置微調整（必要に応じて） */
	}

	.solution__point02 {
		background-color: #fff;
		border: 5px solid #333333;
		border-radius: 10px;
		position: relative;
		margin-top: 25%;
		padding: 17% 3% 12%;
	}
	.solution__point02--number {
		position: absolute;
		width: 55%;
        top: -30px;
        left: 20%;
        right: 30%;
	}
	.solution__point02--problem {
		margin: 7% 0 20%;
	}

	.solution__point03 {
		background-color: #fff;
		border: 5px solid #333333;
		border-radius: 10px;
		position: relative;
		margin-top: 25%;
		padding: 17% 3% 12%;
	}
	.solution__point03--number {
		position: absolute;
		width: 55%;
        top: -30px;
        left: 20%;
        right: 30%;
	}
	.solution__point03--support p {
		background-color: #293b42;
		color: #fff;
		font-size: 5.6vw;
		border-radius: 30px;
		padding: 3%;
		display: inline-block;
		margin: 0 0 3%;
		width: 100%;
	}
	.solution__point03--txt {
		margin: 7% 0 10%;
		text-align: justify;
		font-size: 5vw;
	}
	.solution__point03--training {
		margin-bottom: 20%;
	}
}


/* ==========================================================================
 * Reason
 * ========================================================================== */
.reason {
	background: url("../images/pc/reason_bg.jpg") no-repeat center center/ cover;
	padding: 95px 0 100px;
	text-align: center;
	position: relative;
}
.reason01__ttl {
	margin: 70px 0 60px;
}
.reason01__graph {
	margin: 50px 0 0;
}

.reason02__ttl {
	margin: 90px 0 60px;
} 
.reason02__map {
	background: url("../images/pc/reason02_map.png") no-repeat center center/ 45%;
	position: relative;
	height: 508px;
}
.reason02__map--list {
	text-align: left;
	position: absolute;
	top: 0;
	left: 35px;
	font-size: 2rem;
}
.reason02__map--list li::before {
	content: "■";
	color: #c21732;
}
.reason02__map--sb {
	background: url("../images/pc/reason02_map_number.png") no-repeat center center/ 75%;
    display: inline-block;
    align-items: center;
    padding: 50px;
    position: absolute;
    top: -10px;
    right: 0;
}
.reason02__map--sb p {
	line-height: 1.2em;
}
.reason02__ai {
	margin: 40px 0 0;
}

.reason03__ttl {
	margin: 90px 0 60px;
}
.reason03__graph {
	margin: 60px 0 0;
}

@media screen and (max-width: 640px) {
	.reason {
		background: url("../images/pc/reason_bg.jpg") no-repeat center center/ cover;
		padding: 13% 0;
		text-align: center;
		position: relative;
	}
	.reason01__table {
		overflow-x: scroll;
        width: 100%;
        padding-bottom: 3vw;
        margin: 5% 0 0;
        position: relative;
	}
	.reason01__table::before {
		content: "";
        position: absolute;
        top: 56%;
        left: 72%;
        transform: translate(-50%, -50%);
        width: 110px;
        height: 120px;
        background-image: url(../images/sp/hand_arrow@2x.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        z-index: 10;
        pointer-events: none;
        animation: pulse 2s infinite;
	}
	.reason01__table.scrolled::before {
		opacity: 0;
		transition: opacity 0.3s ease;
	}
	.reason01__table picture {
		width: 150%;
        display: block;
	}
	.reason01 small {
		text-align: left;
		display: block;
	}
	.reason01__ttl {
		margin: 15% 0 10%;
		width: 90%;
		display: inline-block;
	}
	.reason01__graph {
		margin: 15% 0 0;
	}

	.reason02__ttl {
		margin: 15% 0 10%;
		display: inline-block;
	}
	.reason02__map--sp {
		background: url("../images/sp/reason02_map@2x.png") no-repeat center center / cover;
        position: relative;
        display: grid;
		height: 88vw;
	}
	.reason02__map--list {
		text-align: left;
		position: static;
		top: 0;
		left: 35px;
		font-size: 4.4vw;
		order: 2;
		line-height: 1.2em;
	}
	.reason02__map--list li::before {
		content: "■";
		color: #c21732;
	}
	.reason02__map--sb {
		background: url("../images/pc/reason02_map_number.png") no-repeat center 0% / 100%;
        display: inline-block;
        width: 40vw;
        height: 45vw;
        align-items: center;
        padding: 6% 0 0;
        position: static;
        margin: 0 auto;
        order: 1;
	}
	.reason02__map--sb p {
		line-height: 1.2em;
	}
	.reason02__sarani {
		width: 20%;
		display: inline-block;
	}
	.reason02__ai {
		margin: 12% 0 0;
	}

	.reason03__ttl {
		margin: 15% 0 10%;
		display: inline-block;
	}
	.reason03__graph {
		margin: 13% 0 0;
	}
}

/* ==========================================================================
 * Compare
 * ========================================================================== */
.compare {
	background-color: #faf5ec;
	padding: 80px 0 100px;
	text-align: center;
}
.compare__ttl {
	margin-bottom: 50px;
}

@media screen and (max-width: 640px) {
	.compare {
		background-color: #faf5ec;
		padding: 13% 0;
		text-align: center;
	}
	.compare__ttl {
		margin-bottom: 3%;
		width: 80%;
		display: inline-block;
	}
	.compare__table {
		overflow-x: scroll;
        width: 100%;
        padding-bottom: 3vw;
        margin: 5% 0 0;
        position: relative;
	}
	.compare__table::before {
		content: "";
        position: absolute;
        top: 56%;
        left: 72%;
        transform: translate(-50%, -50%);
        width: 110px;
        height: 120px;
        background-image: url(../images/sp/hand_arrow@2x.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        z-index: 10;
        pointer-events: none;
        animation: pulse 2s infinite;
	}
	.compare__table.scrolled::before {
		opacity: 0;
		transition: opacity 0.3s ease;
	}
	.compare__table picture {
		width: 150%;
        display: block;
	}
}
/* ==========================================================================
 * Popular
 * ========================================================================== */
.popular {
	background-color: #fff;
	padding: 95px 0 90px;
	text-align: center;
}
.popular__ttl {
	margin-bottom: 50px;
}

@media screen and (max-width: 640px) {
	.popular {
		background-color: #fff;
		padding: 13% 0;
		text-align: center;
	}
	.popular__ttl {
		margin-bottom: 10%;
		width: 80%;
		display: inline-block;
	}
}
/* ==========================================================================
 * Flow
 * ========================================================================== */
.flow {
	background-color: #faf5ec;
	padding: 95px 0 80px;
	text-align: center;
}
.flow__ttl {
	margin-bottom: 50px;
}

@media screen and (max-width: 640px) {
	.flow {
		background-color: #faf5ec;
		padding: 13% 0;
		text-align: center;
	}
	.flow__ttl {
		margin-bottom: 10%;
		display: inline-block;
	}
	.flow__img {
		width: 80%;
		display: inline-block;
	}
}
/* ==========================================================================
 * Faq
 * ========================================================================== */
.faq {
	background-color: #fff;
	padding: 95px 0 80px;
	text-align: center;
}
.faq__ttl {
	text-align: center;
	margin-bottom: 50px;
}
#faq ul {
	margin-top: 30px;
}
#faq ul li+li{
	margin-top: 30px;
}
.faq__qaList dl {
	border: solid 3px #293b42;
	border-radius: 10px;
}
.faq__qaList dt {
	background: url("../images/sp/q@2x.png") 5% 50%/4% no-repeat;
	font-size: 2.7rem;
	font-weight: bold;
	color: #293b42;
	padding: 30px 35px 30px 120px;
	position: relative;
	cursor: pointer;
	text-align: left;
}
.faq__qaList dt.open::before {
	content: "";
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 10%;
	right: 5%;
    width: 25px;
    height: 25px;
	border-top: 3px solid #293b42;
	border-right: 3px solid #293b42;
	transform: rotate(135deg);
}
.faq__qaList dt.close::after {
	content: "";
	margin: auto;
	position: absolute;
	top: 0;
	bottom: -10%;
	right: 5%;
    width: 25px;
    height: 25px;
	border-top: 3px solid #293b42;
	border-right: 3px solid #293b42;
	transform: rotate(-45deg);
}
.faq__qaList dd {
	background: url("../images/sp/a@2x.png") 5% 42%/4% no-repeat;
	color: #333333;
	font-size: 2.2rem;
	font-weight: 500;
	padding: 17px 35px 30px 120px;
	display: none;
	text-align: justify;
}

@media screen and (max-width: 640px) {
	.faq {
		background-color: #fff;
		padding: 12% 0 10%;
	}
	.faq__ttl {
		text-align: center;
		margin-bottom: 5%;
		width: 70%;
		display: inline-block;
	}
	#faq ul {
		margin-top: 6%;
	}
	#faq ul li+li{
		margin-top: 30px;
	}
	.faq__qaList dl {
		border: solid 2px #293b42;
	}
	.faq__qaList dt {
		background: url("../images/sp/q@2x.png") 5% 50%/6% no-repeat;
		font-size: 5vw;
		font-weight: bold;
		color: #293b42;
		padding: 5% 15% 5% 15%;
		position: relative;
		cursor: pointer;
	}
	.faq__qaList dt.open::before {
		content: "";
		margin: auto;
		position: absolute;
		top: 0;
		bottom: 10%;
		right: 0.9em;
		width: 12px;
		height: 12px;
		border-top: 2px solid #293b42;
		border-right: 2px solid #293b42;
		transform: rotate(135deg);
	}
	.faq__qaList dt.close::after {
		content: "";
        margin: auto;
        position: absolute;
        top: 0;
        bottom: -10%;
        right: 0.9em;
        width: 12px;
        height: 12px;
        border-top: 2px solid #293b42;
        border-right: 2px solid #293b42;
        transform: rotate(-45deg);
	}
	.faq__qaList dd {
		background: url("../images/sp/a@2x.png") 5% 42%/6% no-repeat;
		color: #333333;
		font-size: 5vw;
		font-weight: 500;
		padding: 0 5% 5% 15%;
		display: none;
		text-align: justify;
	}
}

/* ==========================================================================
 * Form
 * ========================================================================== */
.form {
	background-color: #faf5ec;
	padding: 95px 0;
	text-align: center;
}
.form__ttl {
	margin-bottom: 50px;
}

@media screen and (max-width: 640px) {
	.form {
		background-color: #faf5ec;
		padding: 13% 0;
		text-align: center;
	}
	.form__ttl {
		margin-bottom: 10%;
		width: 90%;
		display: inline-block;
	}
}
/* ==========================================================================
 * Form
 * ========================================================================== */
.about {
	background-color: #293b42;
	color: #fff;
	padding: 80px 0 60px;
	text-align: center;
	font-size: 2rem;
}
.about__ttl {
	margin-bottom: 50px;
}
.about__table--box {
	text-align: center;
	display: inline-table;
}
.about table {
	width: 600px;
	text-align: left;
}
.about th {
	width: 30%;
	padding: 20px 0 20px;
}
.about td {
	padding: 20px 0 20px;
}
.about tr {
	border-bottom: 1px solid #fff;	
}

@media screen and (max-width: 640px) {
	.about {
		background-color: #293b42;
		color: #fff;
		padding: 13% 0;
		text-align: center;
		font-size: 4.4vw;
	}
	.about__ttl {
		margin-bottom: 10%;
		width: 60%;
		display: inline-block;
	}
	.about__table--box {
		text-align: center;
		display: inline-table;
	}
	.about table {
		width: 100%;
		text-align: left;
	}
	.about th {
		width: 30%;
		padding: 20px 0 20px;
	}
	.about td {
		padding: 20px 0 20px;
	}
	.about tr {
		border-bottom: 1px solid #fff;	
	}
}
/* ==========================================================================
 * Footer
 * ========================================================================== */
.footer {
	background-color: #c21732;
	text-align: center;
	padding: 35px 0;
}
.footer__copyRight {
	color: #fff;
	font-size: 1.8rem;
}



@media screen and (max-width: 640px) {
	.footer {
		background-color: #c21732;
		text-align: center;
		padding: 5% 0;
	}
	.footer__copyRight {
		color: #fff;
		font-size: 3vw;
	}
	.ft__cta {
		background-color: #c21732;
		padding: 10px 6%;
		position: fixed;
		bottom: 0;
		z-index: 99;
	}
}