@charset "UTF-8";

html {
	position: relative;
	margin: 0;
	padding: 0;
	width: 100%;
	box-sizing: border-box;
	-ms-overflow-style: none;
	scrollbar-width: none;
	overscroll-behavior-y: contain;
}
body {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    background-color: #F9FAFB; /* Slate 50 */
    color: #1E293B; /* Slate 800 */
}
.gradient-text {
    background: linear-gradient(to right, #3B82F6, #0EA5E9); /* Blue-500 to Cyan-500 */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cta-button {
    background-image: linear-gradient(to right, #fb297d, #fc6947);
    color: white;
    transition: all 0.3s ease;
	font-size: 120%;
	text-align: center;
	border: 3px solid #ffffff;
}
.cta-button:hover {
	background: #ffffff;
	color: #fb297d;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.2), 0 4px 6px -2px rgba(59, 130, 246, 0.15);
}
.secondary-button {
    background-color: transparent;
    border: 3px solid #112256;
    color: #112256;
    transition: all 0.3s ease;
	font-size: 105%;
	background: #ffffff;
	text-align: center;
}
.secondary-button:hover {
    background-color: #112256;
	color: #ffffff;
}
.dark-section .secondary-button {
    border-color: #60A5FA;
    color: #60A5FA;
}
.dark-section .secondary-button:hover {
    background-color: rgba(96, 165, 250, 0.1);
}
.light-card {
    background-color: white;
    border: 1px solid #E2E8F0; /* Slate 200 */
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
}
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.swiper-button-next,
.swiper-button-prev {
    color: #3B82F6; /* Blue-500 */
}
.swiper-pagination-bullet-active {
    background-color: #3B82F6; /* Blue-500 */
}
.swiper-slide {
    height: auto;
}
.blue-bg-section .swiper-button-next,
.blue-bg-section .swiper-button-prev {
    color: #fff;
    width: 3em;
    height: 3em;
	padding: 0.5em;
    border-radius: 9999px;
	background: rgba(0,0,0,0.7);
    transition: background-color 0.3s ease;
	top: calc(50% - 1.5rem);
}
.blue-bg-section .swiper-button-next:hover,
.blue-bg-section .swiper-button-prev:hover {
    background-color: #3B82F6;
}
.blue-bg-section .swiper-button-next::after,
.blue-bg-section .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}
.blue-bg-section .swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 1);
}
.blue-bg-section .swiper-pagination-bullet-active {
    background-color: white;
}
.dark-section-bg {
     /*background-color: #111827;*/
     background-color: #0e1931;
     background-image:
        linear-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px),
        linear-gradient(to right, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
     background-size: 20px 20px;
}
.image-glow {
    transition: box-shadow 0.3s ease-in-out;
}
.image-glow:hover {
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.5);
}
@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.scrolling-wrapper {
    display: flex;
    flex-shrink: 0;
    animation: scroll 60s linear infinite;
}
.logo-item {
    flex: 0 0 auto;
	background: linear-gradient(to right, #3B82F6, #0EA5E9);
    color: #ffffff;
    padding: 0.4em 1em;
    margin: 0 0.5em;
    font-weight: 700;
    font-size: 1.15rem;
    white-space: nowrap;
	transform: skewX(-12deg);
}


main h2 {
	line-height: 1.2 !important;
	padding: 0 1em 0.6em;
	position: relative;
	margin-bottom: 1em;
}
main h2:after {
	content: "";
	position: absolute;
	display: block;
	margin: 0 auto;
	bottom: 0;
	left: 0;
	right: 0;
	width: 2.5em;
	height: 0.2em;
	background: linear-gradient(to right, #3B82F6, #0EA5E9);	
	transform: skewX(-12deg);
}
#change h2:after,
#learning h2:after {
	background: #ffffff;
}
#about h2:after,
#job h2:after,
#reason h2:after,
#change h2:after,
#price h2:after,
#flow h2:after,
#cta h2:after {
	content: none;
}

.txt_em {
	color: #e7ff62;
	font-size: 105%;
	background: linear-gradient(to right, #3d78e8, #2392e1);
	transform: skewX(-12deg);
	margin-right: 0.2em;
	padding: 0 0.3em;
}
.txt_em.bg_yellow {
	color: #3d78e8;
	background: #e7ff62;
}
ul.list-disc li {
	font-size: 1.1rem;
	line-height: 1.6;
	list-style: none;
	position: relative;
	padding-left: 1.1em;
}
ul.list-disc li:before {
	content: "●";
	display: inline;
	position: absolute;
	color: #0EA5E9;
	font-size: 85%;
	left: 0;
	top: 0.15em;
}
.i_block {
	display: inline-block;
}
.pagetop {
    display: none;
    position: fixed;
    right: 20px;
    bottom: 20px;
	z-index: 100;
}
.pagetop a {
	position: relative;
    display: block;
    font-size: 0;
    width: 50px;
    height: 50px;
    text-align: center;
    background: #3B82F6;
    border-radius: 50%;
    line-height: 50px;	
	filter: alpha(opacity=75);
	-moz-opacity:0.75;
	opacity:0.75;
}
.pagetop a:hover{
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}
.pagetop a::before {
    display: block;
    content: '';
    position: absolute;
    z-index: 2;
    margin: auto;
    top: 20px;
	left: 0;
    right: 0;
    width: 10px;
    height: 10px;
    border-right: 3px solid #FFFFFF;
    border-bottom: 3px solid #FFFFFF;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

@media (max-width: 768px) {
	main h2 {
		font-size: 1.7rem !important;
	}
	.logo-item {		
		font-size: 1rem;
	}
	.pagetop {
		right: 2%;
		bottom: 4vw;
	}
	.scrolling-wrapper {
		animation: scroll 10s linear infinite;
	}
}

@media (min-width: 768px) {
	.container {
		max-width: inherit;
		padding-left: 4% !important;
		padding-right: 4% !important;
	}
	#header .container {
		max-width: inherit;
	}
}
@media (min-width: 1040px) {
	.container {
		max-width: 1040px !important;
	}
	#header .container {
		max-width: inherit !important;
	}
}
@media (min-width: 1280px) {
	#mv .container {
		max-width: 1200px !important;
	}
	#header .container {
		max-width: 1200px !important;
	}
}


/* mv */
#mv {
	position: relative;
	height: 520px;
	overflow: hidden;
	
}
#mv .mv_movie {
	position: absolute;
	top: 0;
	right: calc(50% - 55vw);
	width: 100%;
	height: 520px;
}
#mv video {
	margin: 0 0 0 auto;
	height: 520px;
}
#mv .mv_bg {
	position: absolute;
	top: 0;
	left: calc(50% - 760px);
	height: 520px;	
}
#mv .mv_bg img {
	width: auto;
  height: 100%;
}

#mv .catch {
	margin-bottom: 0.5em;
}
#mv h1 {
	margin-bottom: 0.5em;
}
.mv_lead {
	display: inline-block;
  background: rgba(255,255,255,0.8);
  padding: 0 0.3em;
  color: #000d6b;
}
.mv_lbl {
	max-width: 31em;
	display: flex;
}
.mv_lbl > div {
	border-width: 7px;
	width: 150px;
	height: 150px;
	border-radius: 50%;
}
.mv_lbl > div svg {
	color: #fb297d;
}
.mv_lbl > div > span {
	font-size: 1.5rem;
}
.mv_lbl > div span.txt_lar {
	font-size: 120%;
}
.mv_lbl > div span.txt_sml {
	font-size: 1.25rem;
	letter-spacing: -0.05em;
}

@media (min-width: 1380px) {
	#mv {
		max-width: 1380px;
		margin: 0 auto;
	}
	#mv .mv_movie {
		right: calc(50% - 40vw);
	}
	#mv .mv_movie video {
		height: 110%;
	}
}
@media (min-width: 768px) {
	#mv .container {
		max-width: inherit;
	}
}
@media (max-width: 959px) {
	#mv {
		height: 430px;
	}
	#mv .mv_movie {
		right: calc(50% - 65vw);
		height: 430px;
	}
	#mv video {
		height: 430px;
	}
	#mv .mv_bg {
		left: calc(50% - 560px);
  		height: 430px;
	}
	#mv h1 {
		width: 65vw;
		margin-bottom: 0;
	} 
	#mv .catch {
		width: 60vw;
	}
	.mv_lbl {
		max-width: 25em;
	}
	#mv .btnarea {
		margin-top: 0;
	}
}
@media (max-width: 768px) {
	#header {
		position: relative;		
	}
	#header > div {
		padding-left: 4%;
		padding-right: 4%;
	}
	#header #mobile-menu {
		padding: 1rem 1.5rem 2rem;
    	border-top: 1px solid #e5e7eb;
	}
	#header #mobile-menu ul {
		margin-bottom: 1.5em;
	}
	#header #mobile-menu ul li {
		padding: 0.5em;
	}
	#header #mobile-menu ul li a {
		position: relative;
		padding-left: 1.2em;
		color: #3B82F6;
		font-weight: 600;
	}
	#header #mobile-menu ul li a:before {
        display: inline-block;
        content: '';
        width: 0.45em;
        height: 0.45em;
        position: absolute;
        top: 50%;
        left: 0;
        margin-top: -0.2em;
        border-top: 2px solid #3B82F6;
        border-right: 2px solid #3B82F6;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        transition: 0.4s;
	}
	#mv .container {
		padding: 8vw 5%;
		background: url("../images/mv_inner_bg_sp.jpg") no-repeat 0 0 / cover;
	}
	#mv {
		height: inherit;
	}
	#mv .mv_movie {
		right: 0;
		height: inherit;
		top: calc(28vw + 40px);
	}
	#mv video {
		height: inherit;
		max-width: 110%;
	}
	#mv .mv_bg {
		left: calc(30% - 240px);
  		height: 100%;
	}
	#mv h1 {
		width: 100%;
		margin-bottom: 54vw;
	} 
	#mv .catch {
		width: 100%;
	}
	.mv_lbl {
		max-width: inherit;
		width: 100%;
		justify-content: center;
	}
	#mv .btnarea {
		justify-content: center;
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}
@media (max-width: 374px) {
	#mv .btnarea {
		margin-top: 2rem;
		padding-left: 0;
		padding-right: 0;
	}	
}

/* ailogos */
#ailogos {
	position: relative;
}
@media (max-width: 768px) {
	#ailogos {
		padding-top: 1.2rem;
		padding-bottom: 1.2rem;
	}	
}

/* about */
#about {
	background: #02070f url("../images/bg_dark.jpg") no-repeat 50% 50% / cover;
	padding-bottom: 7rem;
}
#about h2 {
	color: #ffffff;
	
}
#about .about_lead {
	color: #3b82f6;
	font-size: 21px;
}
#about .about_lead .txt_em {
	margin-top: 0.2em;
}
#about .about_cont_main {
	background-color: rgba(255,255,255,0.9);
	background-image: url("../images/bg_triangle_lef.png"), url("../images/bg_triangle_rig.png");
	background-repeat: no-repeat;
	background-position: 0 100%, 100% 100%;
	background-size: 267px auto;
	justify-content: space-between;
	align-items: flex-start;
	padding-bottom: 4em;
	
}
#about .about_cont:first-of-type > div:first-of-type,
#about .about_cont:first-of-type > div:last-of-type {
	width: 45%;
	text-align: center;
}

#about .about_cont .logoarea {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	height: 4.5em;
	margin-bottom: 1em;
}
#about .about_cont h3 {
	font-size: 1.7rem;
	font-weight: 500;
	line-height: 1.3;
}
#about .about_cont h3 .txt_sml {
	font-size: 1.2rem;
}
#about .about_cont > div.txt_x {
	position: absolute;
	width: 200px;
	margin: 0 auto;
	top: 2.2em;
	left: 0;
	right: 0;	
}

#about .about_cont p {
	display: flex;
	text-align: left;
	line-height: 1.7;	
}
#about .about_cont div svg {
	color: #e7ff62;
	
}

#about .about_cont h4 {
	position: relative;
	display: inline-block;
	padding: 0 0.5em;
}
#about .about_cont h4:before {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 1.4em;
  background: linear-gradient(to right, rgba(59, 130, 246, 0.7), rgba(14, 165, 233, 0.7));
  transform: skewX(-12deg);
	margin: auto;
	top: 0;
	left: 0;
	z-index: -1;
	right: 0;
	bottom: 0;
}
#about .about_cont > div:nth-of-type(3) h4 {
	letter-spacing: -0.05em;
}
#about .about_cont:last-of-type > div:nth-of-type(2) {
	border-left: 1px solid rgba(255,255,255,0.7);
	border-right: 1px solid rgba(255,255,255,0.7);	
}

@media (max-width: 768px) {
	#about {
		padding: 3em 0;
	}	
	#about .about_lead {
		font-size: 16px;
	}
	#about .about_lead .txt_em {
		margin-top: 0.4em;
		font-size: 1.35rem;
		margin-right: 0;
	}
	#about .container {
		padding: 0 4%;
	}
	#about .container .about_cont_main {
		padding: 0 1em 2em 1em;
	}
	#about .container .about_cont_main p {
		font-size: 0.95rem;
	}
	#about .about_cont .logoarea {
		padding: 0 4vw;
		height: 80px;
	}
	#about .about_cont .logoarea img {
		max-width: 90%;
	}
	#about .about_cont > div.txt_x {
		width: 16vw;
	}
	#about .about_cont > div.txt_x svg {
		width: 16vw;
  		height: 16vw;
	}
	#about .about_cont h3 {
		font-size: 1.3rem;
		min-height: 80px;
	}
	#about .about_cont h3 .txt_sml {
		font-size: 0.95rem;
	}
	#about .about_cont h4 {
		font-size: 1.25rem;
	}
	#about .about_cont div svg {
		width: 3rem;
		height: 3rem;
	}
	#about .about_cont:first-of-type > div:first-of-type,
	#about .about_cont:first-of-type > div:last-of-type {
		width: 48%;
	}
	#about .about_cont:last-of-type > div:nth-of-type(2) {
		border: none;
	}
}
@media (max-width: 374px) {
	#about .about_cont h3 .txt_sml {
		font-size: 4vw;
	}
}


/* why */
#why {
	background-color: #ffffff;
	background-image: url("../images/illust04.svg"), url("../images/illust03.svg");
	background-repeat: no-repeat;
	background-position: left calc(50% - 440px) bottom 30px, left calc(50% + 440px) bottom 30px;
	background-size: 210px auto, 194px auto;	
	border: none;
}
#why .grid div {
	border-radius: 0 2em 0 2em;
}
#why h3 {
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 2.5em;
}
#why .imgarea {
	margin-bottom: 1.5em;
}
#why .imgarea img {
	width: 100%;
	border-radius: 0 2em 0 2em;
}
#why .grid p {
	text-align: left;
	font-size: 1.1rem;
	line-height: 1.7;
}

#why .illust01 .grid div span {
	background: -webkit-linear-gradient(transparent 60%, #fafd27 60%);
	background: -o-linear-gradient(transparent 60%, #fafd27 60%);
	background: linear-gradient(transparent 60%, #fafd27 60%);
	margin-left: 0.2em;
}
#why .illustarea {
	display: flex;
	align-items: baseline;
	margin-top: 1.5em;
	justify-content: center;
	padding-right: 4em;	
}
#why .grid.checkbox div {
	justify-content: center;
	padding: 1em;
	background: rgba(59, 130, 246,0.1);
	border-radius: 0;
}
#why .kadai p:last-of-type {
	line-height: 1.6;
}
#why .kadai .grid div {
	border-radius: 0;
	border: none;
	display: flex;
  justify-content: center;
	
}
#why .kadai .grid div h4 {
	font-size: 1.35rem;
	margin-left: 0.2em;	
}

@media (max-width: 768px) {
	#why {
		background-position: left calc(40% - 60px) bottom 30px, left calc(60% + 60px) bottom 30px;
		background-size: 140px auto, 130px auto;	
		padding: 3rem 4% 12.5em;
	}
	#why h3 {
		font-size: 1.2rem;
	}
	#why .illust01 > p {
		font-size: 1.4rem;
	}
	#why .illustarea {
		margin-top: 0.5em;
		padding-right: 1em;
	}
	#why .illustarea img:first-of-type {
		width: 170px;
	}
	#why .illustarea img:last-of-type {
		width: 110px;
	}
	#why .illust01 .grid div span {
		font-size: 1.35rem;
	}
	#why .kadai .grid div h4 {
		font-size: 1.25rem;
	}
	#why .kadai p:last-of-type {
		line-height: 1.4;
		font-size: 1.25rem;
	}	
}

/* job */
#job {
	border: none;
}
#job .item {
	border-radius: 0 2em 0 2em;
}
#job h3 {
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 2.5em;
}
#job .imgarea {
	margin-bottom: 1.5em;
}
#job .imgarea img {
	width: 100%;
	border-radius: 0 2em 0 2em;
}
@media (max-width: 768px) {
	#job {
		padding: 3rem 4%;
	}
	#job h2 {
		padding: 0;
	}
	#job > div p {
		font-size: 1rem;
	}
	#job ul.list-disc li {
		font-size: 1rem;
	}
}

/* change */
#change {
	background: linear-gradient(to right, #3B82F6, #0EA5E9);
}
#change .swiper-slide .light-card {
	border-radius: 0 2em 0 2em;
}
#change .swiper-slide .light-card div p:last-of-type {
	display: flex;
	align-items: baseline;
	text-align: left;
}
#change .lbl {
	color: #FFFFFF;
	background: linear-gradient(90deg, rgb(59, 130, 246, 0.8) 0%, rgb(14, 165, 233, 0.8) 100%);	
	display: inline-block;
	margin-right: 0.5em;
	padding: 0 0.3em;
	transform: skewX(-12deg);
}
#change .swiper-slide .light-card div p:last-of-type .lbl {
	background: #fb297d;
	background: linear-gradient(90deg, rgb(251, 41, 125, 0.8) 0%, rgb(252, 105, 71, 0.8) 100%);
	font-size: 105%;
}
#change .imgarea {
	position: relative;
	margin-bottom: 1em;
}
#change .imgarea img {
	border-radius: 0 1em 0 1em;
	width: 100%;
}
#change .imgarea .lbl {
	position: absolute;
	top: -0.4em;
	left: 0.4em;	
}
#change .arrow img {
	margin: 0 auto;
}

@media (max-width: 768px) {
	#change {
		padding: 3rem 4% 0;
	}
	#change > div {
		margin-bottom: 2rem;
	}
	main #change h2 {
		font-size: 1.5rem !important;
		padding: 0;
		margin-bottom: 0;
	}
	#change h2 .txt_em.bg_yellow {
		padding: 0 0.2em;
	}	
}

/* case */
#case {
	background: url("../images/bg.jpg") no-repeat 50% 50% / cover;
}
#case .grid {
	row-gap: 3em;
}
#case .grid div {
	border-radius: 0 2em 0 2em;
}
#case .grid div.ttlarea {
	position: relative;
	padding-top: 1em;
	border-radius: 0;
}


#case .case-swiper {
	padding-top: 60px;
	padding-bottom: 50px;
}
#case .icon {
	position: absolute;
	display: inline-block;
	width: 4em;
	height: 4em;
	border-radius: 50%;
	background: linear-gradient(to right, #3B82F6, #0EA5E9);
	top: -3.5em;
	left: 0;
	right: auto;
	box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
}
#case .icon svg {
	color: #ffffff;
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;	
}
#case h3 {
	line-height: 1.4;
	font-size: 1.1rem;
}
#case .imgarea {
	margin-bottom: 1em;
}
#case .imgarea img {
	width: 100%;
	border-radius: 0 2em 0 2em;
}
#case .swiper-slide p {
	min-height: 5em;
	/*display: flex;
	align-items: center;*/	
}

@media (max-width: 768px) {
	#case {
		padding: 3rem 4%;
	}
	#case > div p {
		font-size: 1rem;
	}
}

/* reason */
#reason h3 {
	position: relative;
	padding-left: 2.2em;
}
#reason h3 span {
	font-weight: 500;
	font-size: 6rem;
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 1em;
	transform: skewX(-12deg);
	padding: 0.2em 0;
}
#reason img {
	border-radius: 0 2em 0 2em;
	box-shadow: 0 0 25px rgba(59, 130, 246, 0.5);
}
@media (max-width: 768px) {
	#reason {
		padding: 3rem 4% 1.5rem;
	}
	#reason .container > div {
		margin-bottom: 2rem;
	}
	#reason h2 {
		padding: 0;
		margin-bottom: 0;
	}
	#reason h3 {
		font-size: 1.4rem;
		padding-left: 2.4em;
	}
	#reason h3 span {
		font-size: 4.5rem;
	}
	#reason h3 br {
		display: none;
	} 
	#reason .container > div p {
		font-size: 1rem;
	}
}

/* tools */
#tools {
	background: linear-gradient(90deg, #deeefd 0%, #d7f8fe 100%);
}
#tools .tools_wrap h3 {
	background: linear-gradient(90deg, rgba(36, 95, 173, 0.2) 0%, rgba(108, 185, 214, 0.2) 100%);
	padding: 0.2em;
	margin: 2.5em auto 1.5em;
}
#tools .tools_wrap div span {
	color: #ffffff;
	background: linear-gradient(to right, #3B82F6, #0EA5E9);
	font-weight: 700;
	transform: skewX(-12deg);	
}
@media (max-width: 768px) {
	#tools {
		padding: 3rem 4%;
	}
	#tools .container {
		padding: 0;
	}
	#tools h2 {
		padding-left: 0;
		padding-right: 0;
	}
	#tools .tools_wrap h3 {
		font-size: 1.15rem;
		margin: 2em auto 1.1em;
	}
}

/* dify */
#dify p {
	line-height: 1.8;
}
#dify .dify_about {
	border-radius: 0 2em 0 2em;
	padding-top: 1.5em;
	padding-bottom: 1.5em;
}
#dify .dify_about .ttlarea {
	position: relative;
}
#dify .dify_about .ttlarea h3 {
	padding: 0.4em 1em 0.4em 5.5em;
	margin-bottom: 1em;
	background: linear-gradient(90deg, rgba(36, 95, 173, 0.2) 0%, rgba(108, 185, 214, 0.2) 100%);
}
#dify .dify_about .ttlarea .icon {
	position: absolute;
	top: -2.2em;
  left: 1em;
}
#dify .dify_about p {
	padding-left: 1.5em;
	padding-right: 1.5em;
}

@media (max-width: 768px) {
	#dify {
		padding: 3rem 4%;
	}
	#dify .container > div {
		align-items: flex-start;
	}
	#dify .dify_about .ttlarea h3 {
		padding-left: 5em;
	}
	#dify .dify_about .ttlarea .icon {
		width: 84px;
    	left: 0.6em;
	}
}

/* learning */
#learning {
	background: linear-gradient(to right, #3B82F6, #0EA5E9);
}
#learning h2 {
	color: #ffffff;
}

@media (max-width: 768px) {
	#learning {
		padding: 3rem 4% 0;
	}
	#learning .container > div {
		margin-bottom: 2rem;
	}
	#learning h2 {
		padding-left: 0;
		padding-right: 0;
	}
}

/* instructor */
#instructor {
	background: url("../images/bg_network.jpg") no-repeat 50% 0 / cover;
}
#instructor .instructor_wrap {
	border-radius: 0 2em 0 2em;
}
#instructor h3 .txt_sml {
	font-size: 80%;
	margin-left: 0.2em;
}
#instructor .instructor_wrap div div span {
	min-width: 50px;
	text-align: center;
}

@media (max-width: 768px) {
	#instructor {
		padding: 3rem 4% 1.5rem;
	}
	#instructor .container {
		padding-left: 0;
		padding-right: 0;	
	}
	#instructor .container > div {
		margin-bottom: 2rem;
	}
	#instructor h2 {
		padding-left: 0;
		padding-right: 0;
	}
	#instructor h3 {
		font-size: 1.5rem;
	}
	#instructor h4 {
		font-size: 1.15rem;
	}
	#instructor .instructor_wrap div div span {
		font-size: 0.9rem;
	}
}

/* curriculum */
#curriculum-accordion {
	counter-reset: titlenum;
}
#curriculum-accordion > div {
	font-size: 1.25rem;
	background: #ffffff;
	margin: 0;
	border-bottom: 1px solid #ffffff;	
}
#curriculum-accordion > div button {
	background: #c2e6fc;
	padding: 0.7em 1em 0.7em 3em;
	position: relative;
}
#curriculum-accordion > div:nth-child(2n) button {
	background: #dff4fb;
}
#curriculum-accordion > div button::before {
	counter-increment: titlenum;
	content: counter(titlenum);
	display: block;
	position: absolute;
	width: 2em;
	height: 100%;
	text-align: center;
	background: linear-gradient(to right, #3B82F6, #0EA5E9);
	color: #ffffff;
	left: 0;
 	padding-top: 0.75em;
	font-size: 1.1rem;
}
#curriculum-accordion > div button svg {
	color: #3B82F6;
}
#curriculum-accordion > div .ans {
	line-height: 1.7;
	padding: 1em 2em;
}
#days div > div {
	background: #ffffff;
	border-radius: 0 2em 0 2em;
	position: relative;	
}
#days div > div:not(:last-of-type)::before {
	position: absolute;
	display: block;
	content: "";
	width: 44px;
	height: 32px;
	top: 50%;
	right: -30px;
	transform: translateY(-50%);
	background: url("../images/icon_arr-dotted.svg") 0 0 /cover no-repeat;
	z-index: 99;
}
#days div > div p {
	background: #defc70;	
	padding: 0.2em;
	margin-bottom: 1em;
	transform: skewX(-12deg);
}

@media (max-width: 768px) {
	#curriculum {
		padding: 3rem 4% 1.5rem;
	}
	#curriculum .container {
		padding-left: 0;
		padding-right: 0;
	}
	#curriculum .container > div {
		margin-bottom: 2rem;
	}
	#curriculum h2 {
		padding-left: 0;
		padding-right: 0;
	}
	#days div > div p {
		margin-bottom: 0.5em;
		font-size: 1rem;
	}
	#days div > div h4 {
		font-size: 1.15rem;
	}
	#curriculum-accordion > div button {
		font-size: 1rem;
		padding-right: 0.7em;
	}
	#curriculum-accordion > div .ans {
		line-height: 1.5;
		padding-top: 0.8em;
		font-size: 1rem;
	}
	#curriculum-accordion > div button::before {
		font-size: 1rem;
	}
	#curriculum-accordion > div button svg {
		padding-left: 0.5em;	
	}
}
@media (max-width: 639px) {
	#days div > div:not(:last-of-type)::before {	
		width: 28px;
		height: 40px;
		top: inherit;	
		left: 0;
		right: 0;
		bottom: -3rem;
		margin: 0 auto;
		background-image: url("../images/icon_arr-dotted_v.svg") ;
	}	
}

/* cta */
#cta {
	background: url("../images/bg_cta.jpg") no-repeat 50% 50% / cover;
}
#cta .ttlarea {
	display: flex;
	justify-content: center;
	align-items: center;	
}
#cta .txtarea {
	padding: 0 110px 0 1em; 
	
}
#cta .ttlarea h2 {
	margin: 0 0 0.2em;
	padding: 0;
}
#cta .ttlarea p {
	margin: 0;
	padding: 0;
	color: #ffffff;
}
#cta .btnarea {
	margin-top: 3em;
}

@media (max-width: 768px) {
	#cta {
		background-image: url("../images/bg_cta_sp.jpg");
		padding: 2rem 4% 3rem;
	}
	#cta .container {
		padding-left: 0;
		padding-right: 0;
	}
	#cta .ttlarea {
		flex-direction: column;
	}
	#cta .ttlarea .icon {
		position: relative;
		left: -30vw;
		width: 5.5rem;
		height: 5.5rem;
		margin-bottom: 0.5em;
	}
	#cta .txtarea {
		padding-right: 0;
	}
	#cta .txtarea p {
		font-size: 1rem;
	}
	#cta .btnarea {
		margin-top: 2rem;
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}
@media (max-width: 374px) {
	#cta .btnarea {
		margin-top: 2rem;
		padding-left: 0;
		padding-right: 0;
	}	
}

/* #outline */
#outline {
	background: linear-gradient(90deg, #deeefd 0%, #d7f8fe 100%);
}
#price .lbl {
	display: block;
	width: 60%;
	padding: 0.5em;
	text-align: center;
	font-size: 1.25rem;	
	font-weight: 700;	
	color: #ffffff;
	background: linear-gradient(to right, #3B82F6, #0EA5E9);
	margin: 0 auto 1em;
	transform: skewX(-12deg);
}
#flow .step {
	align-items: inherit;
	padding: 0.5em 0;
}
#price > div {
	border-radius: 0 2em 0 2em;
}
#flow .step > div {
	background: #ffffff;
	border-radius: 0 2em 0 2em;
	box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
	position: relative;	
}
#flow .step > div:not(:last-of-type)::before {
	position: absolute;
	display: block;
	content: "";
	width: 44px;
	height: 32px;
	top: 50%;
	right: 0.5em;
	transform: translateY(-50%);
	background: url("../images/icon_arr-dotted.svg") 0 0 /cover no-repeat;
	z-index: 99;
}
#flow .step > div .imgarea {
	position: relative;
	padding-top: 2rem;
	min-height: 12rem;
	display: flex;
	align-items: center;
}
#flow .step > div .imgarea img {
	margin: 0 auto;
}
#flow .step > div .imgarea .lbl {
	position: absolute;
	top: 0;
	left: 0;
	width: 3rem;
	height: 3rem;
	border-radius: 0 0 1rem 0;
	background: linear-gradient(to right, #3B82F6, #0EA5E9);
}
#flow .step > div .txtarea {
	padding: 1.5rem;
}
#flow .step > div .txtarea h3 {
	padding-bottom: 1em;
	margin-bottom: 1em;
	border-bottom: 1px solid #EFE8DB;	
}
#flow .step > div .txtarea p {
	text-align: left;
	line-height: 1.7;
}
.bnrarea {

}
ul.bnrarea {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 3rem;
}
ul.bnrarea li {
	margin: 0.5em;	
	width: 470px;
}
ul.bnrarea li.single {
	width: 680px;
}
ul.bnrarea li img { 
	max-width: 100%;
}

@media (max-width: 768px) {
	#outline {
		padding: 3rem 4%;
	}
	#outline .container {
		padding-left: 0;
		padding-right: 0;
	}
	#price h2 {
		padding-bottom: 0;
	}
	#price .lbl {
		padding: 0.3em;
	}
	#price .yen {
		font-size: 2.6rem;
	}
	#flow h2 {
		padding-left: 0;
		padding-right: 0;
		margin-bottom: 1.5rem;
	}
	#flow .step > div .imgarea .lbl {
		width: 2.6rem;
		height: 2.6rem;
		font-size: 1.25rem;
	}
	ul.bnrarea {
		flex-direction: row;
		margin-top: 2rem;
	}
	ul.bnrarea li {
		width: 100%;
		max-width: 540px;
	}
}
@media (max-width: 640px) {
	#flow .step > div:not(:last-of-type)::before {
		content: none;
	}
	#flow .flow-swiper {
		padding-bottom: 2em;
	}
	#flow .swiper-pagination {
		bottom: 0;
	}	
}
@media (max-width: 374px) {
	#price .yen {
		font-size: 2.2rem;
	}	
}

/* faq */
#faq {
	background: #EBF1F8;
}
#faq-accordion > div {
	padding: 1em 1em 1em 1em;
	border-radius: 16px;
	font-size: 1.25rem;
	background: #ffffff;
}
#faq-accordion > div button {
	position: relative;
	padding: 0.8em 1em;
}
#faq-accordion > div button:before {
	content: "Q.";
	display: inline-block;
	position: absolute;
	width: 1.5rem;
	height: 1.5rem;
	font-size: 2rem;
	font-weight: 700;
	top: 0.3em;
	color: #3B82F6;	
}
#faq-accordion > div button span {
	padding-left: 2.2em;
}
#faq-accordion > div button svg {
	color: #3B82F6;
}
#faq-accordion > div .ans {
	position: relative;
	padding-left: 4rem;
	line-height: 1.7;
	margin-top: 0.5em;
	border-top: 3px dotted #c5d6ea;
	padding-top: 1em;
}
#faq-accordion > div .ans:before {
	content: "A.";
	display: inline-block;
	position: absolute;
	width: 1.5rem;
	height: 1.5rem;
	font-size: 2rem;
	font-weight: 700;
	top: 0.25em;
	left: 1.3rem;
	color: #fb297d;
}
@media (max-width: 768px) {
	#faq {
		padding: 3rem 4% 1.5rem;
	}
	#faq .container {
		padding-left: 0;
		padding-right: 0;
	}
	#faq .container > div {
		margin-bottom: 2rem;
	}	
	#faq h2 {
		padding-left: 0;
		padding-right: 0;		
	}
	#faq-accordion > div {
		padding: 0.5em;
		font-size: 1rem;
	}
	#faq-accordion > div button {
		padding: 0.5em 0 0.5em 0.5em;
	}
	#faq-accordion > div button:before {
		font-size: 1.55rem;
		top: 0;
	}
	#faq-accordion > div button span {
		padding-left: 2.0em;
		width: 100%;
	}
	#faq-accordion > div button svg {
		width: 1.5rem;
		height: 1.5rem;
	}
	#faq-accordion > div .ans {
		border-top-width: 2px;
		font-size: 1rem;
		padding-left: 2.5rem;
	}
	#faq-accordion > div .ans:before {
		font-size: 1.55rem;
		top: 0.2em;
		left: 0.3em;
	}
}



.btnarea a span.text-xs {
	font-size: 0.9rem;
} 



footer {
	font-family: 'Noto Sans JP', sans-serif;
}
.c-bg--white {
  background: #ffffff;
}
.p-footer__copy {
  position: relative;
  height: 560px;
  background: url(https://haa.athuman.com/images/it/bg_footer.png) center/cover no-repeat;
}
.p-footer__copy p {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 5.21vw;
  font-weight: 500;
  color: #fff;
}
.p-footer__copy p img {
  display: block;
  width: 47.82vw;
  height: auto;
  margin: 0 auto;
}
.p-footer__credit {
  padding: 24px 0;
  text-align: center;
  color: #fff;
  background: #333;
}
.p-footer__nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  font-size: 12px;
}
.p-footer__credit small {
  display: block;
  margin-top: 12px;
  font-size: 11px;
}

.p-footer__certification {
	margin-top: 74px;
  margin-bottom: 37px;
  padding-right: 1.6rem;
  padding-left: 1.6rem;
}
.p-footer__certification__list {
	display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 3rem;
  font-size: 1.2rem;
  font-weight: 400;
}
.p-footer__certification__list__item {
	display: grid;
  grid-template-columns: repeat(2, auto);
  align-items: center;
  column-gap: 1rem;
	font-size: 12px;
}
footer img {
  border-style: none;
}
.p-footer__logo {
  margin-bottom: 74px;
  text-align: center;
}
.p-footer__logo a {
	display: inline-block;
}
.p-footer__nav li:not(:first-of-type) {
	padding-right: 12px;
}

.p-footer__nav-blank {
	position: relative;
  font-size: 12px;
  font-weight: 400;
}
.p-footer__nav-blank:first-of-type {
  margin-left: 0;
}
.p-footer__nav-blank::before {
  position: absolute;
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  top: 51%;
  right: -16px;
  transform: translateY(-50%);
  background: url(https://haa.athuman.com/common/images/icon_blank.png) right/cover no-repeat;
}

@media screen and (max-width: 768px) {
	.p-footer__copy {
		height: 191px;
	}
	.p-footer__copy p {
		font-size: 32px;
	}
	.p-footer__copy p img {
		width: 311px;
	}	
	.p-footer__certification {
		margin-top: 2rem;
		margin-bottom: 1rem;
	}
	.p-footer__certification__list {
		gap: 1.5rem;
	}
	.p-footer__nav {
		gap: 12px;
	}
	.p-footer__nav li + li {
		padding-left: 12px;
		border-left: 1px solid;
	}
}

@media screen and (max-width: 552px) {

}

/* Swiperが適用されていない状態（PCサイズ）のレイアウト */
.my-carousel-container {
    /* デスクトップではFlexboxなどで3つの要素を横並びにする */
    display: flex;
    justify-content: space-between;
}

.my-carousel-container .swiper-slide {
    /* 各ボックスの幅を均等に設定 */
    width: calc(33.33% - 20px); /* 3分割とスペースを考慮 */
    margin: 0 10px;
}

/* 768px未満のブレイクポイントでは、Swiperが上書きするため、この設定は自動的に無効化されます */