.slider-text {
    width: 100%;
    height: 107px; /* スライド1つ分の高さ */
    overflow: hidden;
}
.slick-slide {
    opacity: 0; /* 初期状態で非表示 */
    transition: opacity 1s ease-in-out; /* フェードアニメーション */
}

/* Slickでアクティブなスライドをフェードイン */
.slick-active {
    opacity: 1;
}
@font-face {
	font-family: 'NotoSansJP';
	font-weight: 400;
	font-style: normal;
	font-display: swap;
	src: url("../fonts/NotoSansJP-Regular.woff2") format("woff2"),
		 url("../fonts/notosansjp/NotoSansJP-Regular.woff") format("woff");
}
@font-face {
	font-family: 'NotoSansJP';
	font-weight: 500;
	font-style: normal;
	font-display: swap;
	src: url("../fonts/NotoSansJP-Medium.woff2") format("woff2"),
		url("../fonts/notosansjp/NotoSansJP-Medium.woff") format("woff");
}
@font-face {
	font-family: 'NotoSansJP';
	font-weight: 700;
	font-style: normal;
	font-display: swap;
	src: url("../fonts/NotoSansJP-Bold.woff2") format("woff2"),
		url("../fonts/notosansjp/NotoSansJP-Bold.woff") format("woff");
}
@font-face {
	font-family: 'Outfit';
	font-weight: 500;
	font-style: normal;
	font-display: swap;
	src: url("../fonts/Outfit-Medium.woff2") format("woff2"),
    url("../fonts/outfit/Outfit-Medium.woff") format("woff");
}
@font-face {
	font-family: 'Outfit';
	font-weight: 700;
	font-style: normal;
	font-display: swap;
	src: url("../fonts/Outfit-Bold.woff2") format("woff2"),
    url("../fonts/outfit/Outfit-Bold.woff") format("woff");
}

:root {
	--oc-link-color: #3188c9;
	--oc-primary-color: #3E3A39;

	--oc-btn-primary-color: #3188C9;
	--oc-btn-alt-color: #233b68;

	--oc-blog-heading-mt: 1.9rem;
	--oc-blog-heading-mb: 1.625rem;
	--oc-blog-heading-pt: 1.625rem;
	--oc-blog-font-size: calc(1rem + .069vw);
	--oc-blog-heading1-fs: calc(1.6rem + .069vw);
	--oc-blog-heading2-fs: calc(1.5rem + .069vw);
	--oc-blog-heading3-fs: calc(1.35rem + .069vw);
	--oc-blog-line-height: 1.625rem;

	--header-height: 60px;
}

body {
	color: var(--oc-primary-color);
	font-family: "NotoSansJP", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
	line-height: 2;
	letter-spacing: 0.05rem;
	background: #fff;
}

.text-primary-color{
	color: var(--oc-primary-color);
}
.clear-fix { clear: both; }

a {
	text-decoration: none;
	color: var(--oc-link-color);
}
a:hover {
	color: #6EB6EC;
}
img {
	max-width: 100%;
}

.bg-image {
	z-index: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.text-bg-top {
	z-index: 0;
	height: 200px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.text-bg-top .caption {
}
.text-bg-top .caption h1,
.text-bg-top .caption h2 {
	color: #fff;
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
}

.content-none {
    text-align: center;
    font-size: 20px;
    padding: 80px 10px;
}
.content-none .error-number {
    font-size: 70px;
}
.content-none .content-none-btn {
    margin: 20px auto;
    text-align: center;
}

/* OC Button Style */
.site-btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 375px;
    height: 73px;
    max-width: 90%;
    border: 1px solid #fff;
    color: #fff;
    background-color: transparent;
    transition: all 0.5s;
}
.site-btn {
    color: var(--oc-primary-color);
    border-color: var(--oc-primary-color);
}

/* END - OC Button Style */

/* OC Modal Style */
.modal-design {
	height: 80vh;
	overflow: scroll;
	margin: 15% 0 10% 0;
	border-radius: unset;
} 
.modal-dialog{
	max-width: 800px;
	padding: 1rem;
}

@media (min-width: 576px){
	.modal-dialog {
		max-width: 500px;
		margin: 1.75rem auto;
	}
}

.close-btn {
	position: fixed;
	right: 0x;
	top: 25px;
}
.modal-side-margin {
	margin: 0;
}

.modal-body-design {
	padding: 0;
}

.round_btn {
	display: block;
	width: 45px;
	height: 45px;
	border: 2px solid #AA8400; /* 枠の調整 */
	border-radius: 50%;  /* 丸みの度合い */
	background: #fff; /* ボタンの背景色 */
}

.round_btn::before, .round_btn::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 3px; /* 棒の幅（太さ） */
	height: 22px; /* 棒の高さ */
	background: #AA8400; /* バツ印の色 */
}

.round_btn::before {
	transform: translate(-50%,-50%) rotate(45deg);
}

.round_btn::after {
	transform: translate(-50%,-50%) rotate(-45deg);
}

/* END - OC Modal Style */
*{
	word-break: break-word;
}
a,
a img{
    transition: all .3s;
}
a:hover img{
	opacity: 0.5;
}
p{
	margin-bottom: 35px;
}
p:last-child{
	margin-bottom: 0;
}
img{
	max-width: 100%;
}
figure{
	margin-bottom: 0;
}
i{
	font-style: normal;
}
table{
	width: 100%;
}
ul.reset,
ol.reset,
#header ul,
#footer ul,
.home dl,
.home dd,
.home ul,
.home ol{
	margin: 0;
	padding: 0;
}
ul.reset li,
ol.reset li,
#header li,
#footer li,
.home li{
	list-style: none;
}
.mt0{margin-top: 0px!important;}
.mt5{margin-top: 5px!important;}
.mt10{margin-top: 10px!important;}
.mt15{margin-top: 15px!important;}
.mt20{margin-top: 20px!important;}
.mt25{margin-top: 25px!important;}
.mt30{margin-top: 30px!important;}
.mt35{margin-top: 35px!important;}
.mt40{margin-top: 40px!important;}
.mt45{margin-top: 45px!important;}
.mt50{margin-top: 50px!important;}
.mt55{margin-top: 55px!important;}
.mt60{margin-top: 60px!important;}
.mt65{margin-top: 65px!important;}
.mt70{margin-top: 70px!important;}
.mt75{margin-top: 75px!important;}
.mt80{margin-top: 80px!important;}
.mt85{margin-top: 85px!important;}
.mt90{margin-top: 90px!important;}
.mt95{margin-top: 95px!important;}
.mt100{margin-top: 100px!important;}
.mb0{margin-bottom: 0px!important;}
.mb5{margin-bottom: 5px!important;}
.mb10{margin-bottom: 10px!important;}
.mb15{margin-bottom: 15px!important;}
.mb20{margin-bottom: 20px!important;}
.mb25{margin-bottom: 25px!important;}
.mb30{margin-bottom: 30px!important;}
.mb35{margin-bottom: 35px!important;}
.mb40{margin-bottom: 40px!important;}
.mb45{margin-bottom: 45px!important;}
.mb50{margin-bottom: 50px!important;}
.mb55{margin-bottom: 55px!important;}
.mb60{margin-bottom: 60px!important;}
.mb65{margin-bottom: 65px!important;}
.mb70{margin-bottom: 70px!important;}
.mb75{margin-bottom: 75px!important;}
.mb80{margin-bottom: 80px!important;}
.mb85{margin-bottom: 85px!important;}
.mb90{margin-bottom: 90px!important;}
.mb95{margin-bottom: 95px!important;}
.mb100{margin-bottom: 100px!important;}
.mlr10{margin-left: 10px!important;margin-right: 10px!important;}
.mlr20{margin-left: 20px!important;margin-right: 20px!important;}
.mlr30{margin-left: 30px!important;margin-right: 30px!important;}
.mlr40{margin-left: 40px!important;margin-right: 40px!important;}
.mlr50{margin-left: 50px!important;margin-right: 50px!important;}
.mlr60{margin-left: 60px!important;margin-right: 60px!important;}
.mlr70{margin-left: 70px!important;margin-right: 70px!important;}
.mlr80{margin-left: 80px!important;margin-right: 80px!important;}
.mlr90{margin-left: 90px!important;margin-right: 90px!important;}
.mlr100{margin-left: 100px!important;margin-right: 100px!important;}
.tb,
.sp{
	display: none;
}
.flex{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.anchor-parent{
	position: relative;
}
.anchor{
	position: absolute;
	top: calc(-1 * var(--header-height));
}
.f1{
	font-family: 'Outfit';
	font-weight: 500;
	font-style: normal;
}
img.full{
	width: 100%;
}
.text-s1{
	overflow: hidden;
}
.text-s1>span{
	display: inline-block;
	position: relative;
	padding: 0 20px;
	height: 70px;
	font-weight: bold;
	font-size: 30px;
	line-height: 60px;
	border: #fff 5px solid;
}
.text-s1>span:after{
	content: '';
	position: absolute;
	top: -20px;
	left: 53%;
	width: 7px;
	height: 160px;
	background: #3188c9;
	transform: rotate(-28deg);
}
.text-s1 span span{
	position: relative;
	z-index: 1;
}
.header-s1{
	position: relative;
	margin-bottom: 50px;
	padding-top: 50px;
	padding-bottom: 30px;
	font-size: 30px;
	font-weight: bold;
	text-align: center;
	letter-spacing: 0.2rem;
}
.header-s1:before{
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 44px;
	height: 4px;
	background: #3188c9;
    transform: translateX(-50%);
}
.header-s2{
	font-size: 60px;
	color: #fff;
	font-weight: bold;
	line-height: 1;
	letter-spacing: 0.8rem;
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: #3188C9;
}
.btn-s1{
	letter-spacing: 0.2rem;
	border: #3188c9 1px solid;
    transition: all .3s;
}
.btn-s1:hover{
	background: #6EB6EC!important;	
}

@media screen and (max-width:820px) {
	.tb{
		display: block;
	}
	.pc.large{
		display: none;
	}
}

@media screen and (max-width:767px) {
	.pc{
		display: none;
	}
	.sp{
		display: block;
	}
	.text-s1>span{
		height: 47px;
		font-size: 20px;
		line-height: 37px;
		border: #fff 4px solid;
	}
	.text-s1>span:after{
		width: 5px;
	}
	.header-s1{
		margin-bottom: 18vw;
		padding-top: 35px;
		padding-bottom: 20px;
		font-size: 25px;
	}
	.header-s2{
		font-size: 30px;
	}
}

/*base*/
#container{
	padding-top: var(--header-height);
	overflow: hidden;
}
.home .container,
.container.sub{
	margin: 0;
	padding: 0;
	max-width: 100%;
}
.wrap{
	margin: 0 auto;
	max-width: 1195px;
	padding: 0 25px;
}
.wrap.l{
	max-width: 1430px;
}

/*ヘッダー*/
#header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #fff;
	z-index: 99;
}
#header #hinr{
	align-items: center;
	position: relative;
	padding: 0 15px;
	height: var(--header-height);
}
#header .right{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	width: calc(100% -220px);
}
#header .logo{
	margin: 0;
	padding: 0;
	width: 200px;
}
#header .logo img{
	display: block;
}
#header .menu ul{
	display: flex;
	gap: 35px;
}
#header .menu a{
	color: var(--oc-primary-color);
	font-weight: 500;
}
#header .menu a:hover{
	color: #6EB6EC;
}
#header .contact{
	display: flex;
	gap: 15px;
}
#header .contact a{
	display: block;
	padding-left: 35px;
	height: 30px;
	color: #fff;
	font-weight: bold;
	line-height: 28px;
	border-radius: 2px;
}
#header .contact .f a{
	width: 150px;
	background: #3188c9 url(../img/icon-mail.svg) no-repeat 14px center;
}
#header .contact .f a:hover{
	opacity: 1;
	background-color: #6EB6EC;
}
#header .contact .s a{
	width: 114px;
	background: #d6856c url(../img/icon-hands.svg) no-repeat 14px center;
}
#header .contact .s a:hover{
	opacity: 1;
	background-color: #F5B09A;
}
.sp-menu{
	position: fixed;
	right: -100%;
	bottom: 0;
	width: auto;
	padding: 0 25px;
	padding-bottom: 50px;
	width: 350px;
	height: calc(100% - var(--header-height));
	color: #fff;
    background: rgba(49,136,201, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all .8s cubic-bezier(0.19, 1, 0.22, 1);
    overflow: auto;
}
.sp-menu.on{
	right: 0;
}
.sp-menu .upper{
	margin-bottom: 20px;
}
.sp-menu li{
	padding: 30px 0;
	border-bottom: #fff 1px solid;
}
.sp-menu li a{
	display: block;
	padding-right: 35px;
	color: #fff;
	line-height: 1.6;
	background: url(../img/arrow.svg) no-repeat right 10px center;
}
.sp-menu .bottom a{
	display: block;
	height: 60px;
	font-weight: bold;
	text-align: center;
	line-height: 60px;
	border-radius: 5px;
}
.sp-menu .f a{
	margin-bottom: 20px;
	color: #3188c9;
	background: #fff;
}
.sp-menu .s a{
	color: #fff;
	background: #d6856c;
}
.sp-menu .bottom span{
	display: inline-block;
	padding-left: 20px;
}
.sp-menu .bottom .f span{
	background: url(../img/icon-mail03.svg) no-repeat 0 25px;
}
.sp-menu .bottom .s span{
	background: url(../img/icon-hands.svg) no-repeat 0 24px;
}
.menu-trigger{
	display: none;
	position: absolute;
	top: 50%;
	right: 15px;
	width: 24px;
	height: 17px;
	cursor: pointer;
    transform: translateY(-50%);
    transition: all .3s;
}
.menu-trigger span {
	position: absolute;
	right: 0;
	width: 100%;
	height: 2px;
	background: #3E3A39;
	transition: all .4s;
}
.menu-trigger span:nth-of-type(1) {
	top: 0;
}
.menu-trigger span:nth-of-type(2) {
	top: 50%;
	transform: translateY(-50%);
}
.menu-trigger span:nth-of-type(3) {
	bottom: 0;
}
.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(7px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
  animation: active-menu-bar02 .8s forwards;
}
@-webkit-keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}
@keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}
.menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-8px) rotate(45deg);
}

@media screen and (max-width:1000px) {
	#header .right{
		display: none;
	}
	.menu-trigger{
		display: block;
	}
}

@media screen and (max-width:767px) {
	#header #hinr{
		padding: 0 10px;
	}
	#header .logo{
		width: 135px;
	}
	.menu-trigger{
		width: 15px;
		height: 12px;
	}
	.menu-trigger.active span:nth-of-type(1) {
	  transform: translateY(5px) rotate(-45deg);
	}
	.menu-trigger.active span:nth-of-type(3) {
	  transform: translateY(-5px) rotate(45deg);
	}
}

/*メインカラム*/
.top-mv {
	position: relative;
	margin-bottom: 60px;
}
.top-mv:before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 75%;
    background: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0.5));
	z-index: 1;
}
.top-mv .text{
	position: absolute;
	top: 45%;
	left: 0;
	width: 100%;
	color: #fff;
	text-align: center;
	z-index: 2;
}
.top-mv .img-inr{
	display: flex;
	flex-wrap: wrap;
}
.top-mv .img-inr span{
	position: relative;
	width: 25%;
}
.top-mv .img-inr span:before{
	content: '';
	display: block;
	padding-top: 58%;
}
.top-mv .img-inr img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.top-mv .text p.s1{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 20px;
	height: 100px;
	text-align: left;
	background: url(../img/deco02.svg) no-repeat center center;
	background-size: auto 100%;
}
.top-mv p.s1 .l{
	display: flex;
	justify-content: flex-end;
	padding-right: 35px;
	width: 50%;
	font-size: 40px;
	font-weight: bold;
	line-height: 1.2;
}
.top-mv p.s1 .l i{
	display: block;
	padding-left: 60px;
}
.top-mv p.s1 .r{
	display: flex;
	justify-content: flex-start;
	padding-left: 35px;
	width: 50%;
	font-size: 60px;
}
.top-mv p.s1 .r>span{
	margin-top: -15px;
}
.top-mv p.s2{
	margin-bottom: 30px;
	font-size: 23px;
	font-weight: bold;
}
.top-mv p.s2 b{
	display: inline-block;
	margin: 0 10px;
	padding: 10px;
	width: 117px;
	height: 69px;
	text-indent: -9999px;
	background: url(../img/top-mv01.svg) no-repeat center center;
}
.top-mv p.s3{
	font-size: 20px;
	font-weight: bold;
}
.top-content.c01 {
	margin-bottom: 140px;
}
.top-content.c01 .inr{
	display: flex;
	flex-wrap: wrap;
	gap: 50px 2%;
}
.top-content.c01 .box{
	width: 32%;
}
.top-content.c01 h2{
	margin-bottom: 30px;
	font-size: 30px;
	font-weight: bold;
	line-height: 1.2;
}
.top-content.c01 .image{
	margin-bottom: 25px;
	border: #ddd 1px solid;
}
.top-content.c02 {
	padding-top: 100px;
	padding-bottom: 145px;
	color: #fff;
	background: #3188c9;
}
.top-content.c02 .upper{
	margin-bottom: 90px;
}
.top-content.c02 h2{
	margin-bottom: 100px;
	text-align: center;
}
.top-content.c02 h2 b{
	font-size: 40px;
}
.top-content.c02 .upper .inr{
	display: flex;
	flex-wrap: wrap;
	gap: 40px 2%;
}
.top-content.c02 .upper .box{
	position: relative;
	padding-top: 70px;
	width: 32%;
}
.top-content.c02 .upper .box:before{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
	width: 40px;
	height: 26px;
	background: url(../img/num01.svg) no-repeat center center;
	background-size: auto 100%;
}
.top-content.c02 .upper .box:nth-of-type(2):before{
	background: url(../img/num02.svg) no-repeat center center;
}
.top-content.c02 .upper .box:nth-of-type(3):before{
	background: url(../img/num03.svg) no-repeat center center;
}
.top-content.c02 .upper h3{
	display: flex;
	align-items: center;
	position: relative;
	margin-bottom: 20px;
	font-weight: 500;
	font-size: 25px;
	line-height: 1.4;
}
.top-content.c02 .upper h3:before{
	content: '';
	position: absolute;
	top: -24px;
	left: 0;
	width: 21px;
	height: 6px;
	background: linear-gradient(90deg, rgba(255, 207, 90,1) 19.99974110035556%,rgba(254, 207, 90,1) 19.99974110035556%,rgba(246, 208, 250,1) 79.98107930518707%);
}
.top-content.c02 .upper .image{
	margin-bottom: 25px;
}
.top-content.c02 .bottom h3{
	margin-bottom: 10px;
	font-size: 25px;
	font-weight: bold;
}
.top-content.c02 .bottom .inr{
	align-items: center;
	gap: 30px 0;
	padding: 35px;
	color: #3188c9;
	background: #fff;
}
.top-content.c02 .bottom .left{
	padding-left: 15px;
	width: 430px;
}
.top-content.c02 .bottom .right{
	position: relative;
	width: calc(100% - 450px);
	max-width: 575px;
}
.top-content.c02 .bottom .right:before{
	content: '';
	display: block;
	padding-top: 54%;
}
.top-content.c02 .bottom p.s1{
	margin-bottom: 8px;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.2;
}
.top-content.c02 .bottom p.s2{
	margin-bottom: 10px;
}
.top-content.c02 .bottom p.s2>span{
	border: #3188c9 5px solid;
}
.top-content.c02 .bottom p.s2>span:after{
	background: #fff;
}
.top-content.c02 .bottom p.s3{
	font-size: 18px;
}
.top-content.c02 .bottom p.s3 span{
	padding-left: 10px;
}
.top-content.c02 .bottom iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%!important;
	height: 100%!important;
}
.top-content.c03 {
	margin-bottom: 160px;
	padding-bottom: 150px;
	color: #fff;
	background: #3188c9;
}
.top-content.c03 h2{
	position: relative;
	margin-bottom: 55px;
	font-size: 40px;
	font-weight: 500;
	letter-spacing: 0.5rem;
}
.top-content.c03 h2:before{
	content: 'PERFORMANCE';
	position: absolute;
	top: 0;
	right: 0;
	color: #4694ce;
	font-size: 60px;
	font-weight: bold;
	font-family: 'Outfit';
	font-style: normal;
	letter-spacing: 0.2rem;
	line-height: 1;
}
.top-content .sub.flex{
	margin-bottom: 75px;
	height: 24px;
	font-size: 20px;
	line-height: 24px;
}
.top-content .sub.flex .left{
	padding-right: 35px;
	background: url(../img/arrow.svg) no-repeat right center;
}
.top-content .sub.flex .right{
	display: flex;
	align-items: center;
	font-size: 26px;
}
.top-content .sub.flex .right *{
    transition: all .3s;
}
.top-content .sub.flex .arrow{
	margin-right: 25px;
	cursor: pointer;
}
.top-content .sub.flex .arrow i{
	display: inline-block;
	position: relative;
	width: 15px;
	height: 24px;
}
.top-content .sub.flex .prev{
	margin-right: 25px;
}
.top-content .sub.flex .next:after,
.top-content .sub.flex .prev:after,
.top-content .sub.flex .next:before,
.top-content .sub.flex .prev:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 15px;
	height: 24px;
	background: url(../img/arrow02.svg) no-repeat center center;
	background-size: auto 100%;
    transition: all .3s;
}
.top-content .sub.flex .prev:after{
	opacity: 0;
	background: url(../img/arrow09.svg) no-repeat center center;
	background-size: auto 100%;
}
.top-content .sub.flex .next:before{
	background: url(../img/arrow03.svg) no-repeat center center;
	background-size: auto 100%;
}
.top-content .sub.flex .next:after{
	opacity: 0;
	background: url(../img/arrow10.svg) no-repeat center center;
	background-size: auto 100%;
}
.top-content .sub.flex .right .arrow i:hover:before{
	opacity: 0;
}
.top-content .sub.flex .right .arrow i:hover:after{
	opacity: 1;
}
.top-content .sub.flex .index{
	width: 54px;
	letter-spacing: 4px;
}
.top-content .slick-list{
	overflow: visible;
}
.top-content.c03 .inr{
	width: 910px;
}
.top-content.c03 .box{
	padding-right: 80px;
}
.top-content.c03 dt{
	position: relative;
	margin-bottom: 25px;
	padding-top: 40px;
	font-weight: 500;
	font-size: 30px;
}
.top-content.c03 dt:before{
    content: 'Case ' attr(data-order) '.';
	position: absolute;
	top: 0;
	left: 0;
	padding-left: 5px;
	width: 107px;
	height: 28px;
	font-family: 'Outfit';
	font-style: normal;
	font-weight: bold;
	font-size: 20px;
	line-height: 28px;
	color: #3188c9;
	background: url(../img/deco03.svg) no-repeat 0 0;
}
.top-content.c03 .gallery{
	width: 39%;
}
.top-content.c03 .gallery .main{
	position: relative;
	margin-bottom: 30px;
}
.top-content.c03 .gallery .nav span:before,
.top-content.c03 .gallery .main:before{
	content: '';
	display: block;
	padding-top: 100%;
}
.top-content.c03 .gallery img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.top-content.c03 .gallery .main img:not(.show){
	opacity: 0;
}
.top-content.c03 .gallery .nav{
	display: flex;
	gap: 30px 9.5%;
}
.top-content.c03 .gallery .nav span{
	position: relative;
	width: 27%;
	cursor: pointer;
}
.top-content.c03 .text{
	width: 56.5%;
}
.top-content.c04 {
	margin-bottom: 180px;
}
.top-content.c04 h2{
	background: url(../img/icon-fukidashi.svg) no-repeat center 0;
}
.top-content.c04 .sub.flex{
	margin-bottom: 55px;
	color: #3188c9;
}
.top-content.c04 .sub.flex .left {
    background: url(../img/arrow04.svg) no-repeat right center;
}
.top-content.c04 .sub.flex .prev:before{
	background: url(../img/arrow05.svg) no-repeat center center;
	background-size: auto 100%;
}
.top-content.c04 .sub.flex .prev:after{
	background: url(../img/arrow09.svg) no-repeat center center;
	background-size: auto 100%;
}
.top-content.c04 .sub.flex .next:before{
	background: url(../img/arrow06.svg) no-repeat center center;
	background-size: auto 100%;
}
.top-content.c04 .sub.flex .next:after{
	background: url(../img/arrow10.svg) no-repeat center center;
	background-size: auto 100%;
}
.top-content.c04 .inr{
	width: 350px;
}
.top-content.c04 .box{
	padding-right: 30px;
}
.top-content.c04 dt{
	margin-bottom: 20px;
	align-items: center;
}
.top-content.c04 .image{
	width: 117px;
}
.top-content.c04 .text{
	width: 185px;
	font-weight: 500;
	line-height: 1;
}
.top-content.c04 .text p.s1{
	margin-bottom: 10px;
	padding-bottom: 10px;
	color: #3188c9;
	font-size: 14px;
	border-bottom: #3188c9 2px solid;
}
.top-content.c04 .text p.s2 span{
	margin-left: 10px;
	font-size: 14px;
}
.top-content.c05 {
	position: relative;
	margin-bottom: 200px;
}
.top-content.c05:after,
.top-content.c05:before {
	content: '';
	position: absolute;
	top: 0;
	left: calc(50% + 572.5px);
	width: 5000px;
	height: 100%;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
	z-index: 10;
}
.top-content.c05:after {
	left: auto;
	right: calc(50% + 572.5px);
}
.top-content.c05 h2{
	margin-bottom: 30px;
	padding-top: 35px;
	background: url(../img/icon-deco.svg) no-repeat center 0;
}
.top-content.c05 .sub{
	margin-bottom: 10px;
	padding-right: 5px;
	color: #3188c9;
	font-size: 20px;
	text-align: right;
}
.top-content.c05 .sub .right{
	display: inline-block;
	padding-right: 35px;
	background: url(../img/arrow04.svg) no-repeat right center;
}
.top-content.c05 .upper{
	margin: 0 auto;
	margin-bottom: 10px;
	width: 685px;
}
.top-content.c05 .upper span{
	padding: 0 5px;
}
.top-content.c05 .upper .slick-arrow{
	top: 52%;
	left: -45px;
	width: 30px;
	height: 30px;
	z-index: 10;
}
.top-content.c05 .upper .slick-next{
	left: auto;
	right: -45px;

}
.top-content.c05 .upper .slick-arrow:before {
    font-size: 30px;
}
.top-content.c05 .bottom{
	margin: 0 auto;
	width: 1100px;
	height: 60px;
}
.top-content.c05 .bottom span{
	display: block;
	padding: 0 5px;
}
.top-content.c06 {
	margin-bottom: 220px;
}
.top-content.c06 .header{
	margin-bottom: 40px;
	text-align: center;
}
.top-content.c06 h2{
	margin-bottom: 30px;
	padding-top: 65px;
	background: url(../img/icon-couple.svg) no-repeat center 0;
}
.top-content.c06 .inr{
	display: flex;
	flex-wrap: wrap;
}
.top-content.c06 .box{
	position: relative;
	padding: 5px 30px 90px 30px;
	width: calc(100% / 3);
}
.top-content.c06 .box:not(:nth-child(3n)){
    background-size: 1px 6px;
    background-repeat: repeat-y;
    background-position: right bottom;
    background-image: linear-gradient(to top, #C5C4C4, #C5C4C4 2px, transparent 2px, transparent 6px);
}
.top-content.c06 h3{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
	color: #3188c9;
	font-weight: 500;
	font-size: 25px;
	line-height: 1.4;
	text-align: center;
}
.top-content.c06 .b{
	display: flex;
	justify-content: space-between;
	gap: 10px;
	position: absolute;
	left: 30px;
	bottom: 0;
	width: calc(100% - 60px);
}
.top-content.c06 .b a{
	display: block;
	width: 100%;
	height: 50px;
	text-align: center;
	line-height: 48px;
	border: #3188c9 1px solid;
	border-radius: 25px;
}
.top-content.c06 .b a:hover{
	color: #fff;
	opacity: 1;
	background: #6EB6EC;
}
.top-content.c07 {
	margin-bottom: 165px;
}
.top-content.c07 h2{
	display: inline-block;
	position: relative;
	margin-bottom: 55px;
	padding-right: 60px;
	font-size: 20px;
	font-weight: bold;
}
.top-content.c07 h2:before{
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 44px;
	height: 4px;
	background: #3188c9;
    transform: translateY(-50%);
}
.top-content.c07 .inr{
	display: flex;
	flex-wrap: wrap;
	gap: 30px 2.5%;
}
.top-content.c07 a{
	width: 18%;
}
.top-content.c08 {
	margin-bottom: 170px;
}
.top-content.c08 .inr{
	align-items: center;
}
.top-content.c08 .left{
	padding-left: 50px;
	width: 280px;
}
.top-content.c08 .right{
	width: 59%;
}
.top-content.c08 h2{
	position: relative;
	padding-top: 70px;
	font-size: 25px;
	font-weight: bold;
	margin-bottom: 70px;
}
.top-content.c08 h2:before{
	content: 'NEWS';
	position: absolute;
	top: 0;
	left: 0;
	color: #3188c9;
	font-size: 60px;
	font-weight: bold;
	font-family: 'Outfit';
	font-style: normal;
	line-height: 1;
	letter-spacing: 0.3rem;
}
.top-content.c08 .news-btn{
	display: inline-block;
	color: #3188c9;
    font-size: 18px;
    padding-right: 35px;
    background: url(../img/arrow04.svg) no-repeat right center;
}
.top-content.c08 .right .box {
	margin-bottom: 50px;
}
.top-content.c08 .right .box:last-of-type{
	margin-bottom: 0;
}
.top-content.c08 .box a{
	color: var(--oc-primary-color);
}
.top-content.c08 .image{
	width: 29.5%;
}
.top-content.c08 .content{
	width: 65.5%;
}
.top-content.c08 .image img{
	width: 100%;
	height: auto;
}
.top-content.c08 h3{
	position: relative;
	margin-bottom: 10px;
	padding-bottom: 15px;
	font-size: 20px;
	font-weight: bold;
}
.top-content.c08 h3:before{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 25px;
	height: 4px;
	background: #3188c9;
}
.top-content.c09 {
	padding: 160px 0;
	background: #f5f9fc;
}
.top-content.c09 .header{
	margin-bottom: 50px;
	text-align: center;
}
.top-content.c09 h2{
	margin-bottom: 45px;
	padding-top: 45px;
	background: url(../img/icon-mail02.svg) no-repeat center 0;
}
select,
textarea,
[type="password"],
[type="email"],
[type="number"],
[type="text"]{
	padding: 15px;
	width: 100%;
	border: #3E3A39 2px solid;
	border-radius: 5px;
	box-shadow: none;
	-webkit-appearance: none;
}
[type="checkbox"]{
    margin-top: 20px;
    margin-right: 5px;
    width: 20px;
    height: 20px;
    background: #fff;
	border: #3E3A39 2px solid;
    border-radius: 5px!important;
}
textarea{
	min-height: 225px;
}
select {
	width: 100%;
	background: #fff url(../img/arrow07.svg) no-repeat right 22px center;
}
select:focus{
	background: #fff;
}
::placeholder {
  color: #aaa;
}
.form-content {
	margin: 0 auto;
	max-width: 675px;
}
.form-content dl{
	margin-bottom: 50px;
}
.form-content dt{
	display: inline-block;
	position: relative;
	margin-bottom: 18px;
	font-size: 20px;
	font-weight: bold;
	line-height: 1;
}
.form-content .privacy label:after,
.form-content dt:before{
	content: '任意';
	position: absolute;
	top: 0;
	right: -44px;
	margin-right: 3px;
	width: 35px;
	height: 22px;
	color: #3188C9;
	font-size: 13px;
	font-weight: normal;
	text-align: center;
	line-height: 22px;
	background: #CEE2F2;
	border-radius: 3px;
}
.form-content .privacy label:after,
.form-content .req dt:before{
	content: '必須';
	color: #fff;
	background: #B0353C;
}
.form-content .b{
	text-align: center;
}
.form-content .privacy{
	display: inline-block;
	margin-bottom: 50px;
	width: 400px;
	height: 60px;
	font-weight: 500;
	line-height: 60px;
	background: #E1EEF7;
	border-radius: 5px;
}
.form-content .privacy label{
	position: relative;
	padding-right: 40px;
}
.form-content .privacy label:after{
	top: 50%;
	right: -2px;
    transform: translateY(-50%);
}
.form-content [type="submit"]{
	display: inline-block;
	width: 320px;
	height: 60px;
	color: #fff;
	font-size: 20px;
	font-weight: 500;
	text-align: center;
	line-height: 60px;
	background: #3188c9;
	border: none;
	box-shadow: none;
	border-radius: 30px;
}

@media screen and (max-width:1000px) {
	.top-mv .text{
		top: 38%;
	}
	.top-content.c02 .bottom .left{
		order: 2;
		padding-left: 0;
		width: 100%;
	}
	.top-content.c02 .bottom .right{
		position: relative;
		width: 100%;
		max-width: 100%;
	}
	.top-content.c07 .inr{
		gap: 30px 4%;
	}
	.top-content.c07 a{
		width: 22%;
	}
	.top-content.c08 .right{
		width: 64%;
	}
}

@media screen and (max-width:900px) {
	.top-content.c03 .inr{
		width: 100%;
	}
	.top-content.c03 .box{
		padding-right: 40px;
	}
	.top-content.c08 .left{
		margin-bottom: 50px;
		padding-left: 0;
		width: 100%;
		text-align: center;
	}
	.top-content.c08 .right{
		width: 100%;
	}
	.top-content.c08 h2:before {
		width: 100%;
	}
}

@media screen and (max-width:820px) {
	.top-mv p.s1 .l{
		font-size: 33px;
	}
	.top-mv p.s1 .r{
		font-size: 50px;
	}
	.top-content.c01 .box,
	.top-content.c02 .upper .box{
		width: 100%;
	}
	.top-content.c02 h2 {
	    margin-bottom: 8vw;
	}
	.top-content.c03 {
	    margin-bottom: 16vw;
	    padding-bottom: 10vw;
	}
	.top-content.c05 .upper .slick-arrow{
		left: 10px;
	}
	.top-content.c05 .upper .slick-next{
		left: auto;
		right: 10px;
	
	}
	.top-content.c08,
	.top-content.c07,
	.top-content.c05,
	.top-content.c04 {
	    margin-bottom: 16vw;
	}
	.top-content.c06{
		margin-bottom: 10vw;
	}
	.top-content.c06 .box {
		margin-bottom: 30px;
		padding-bottom: 100px;
	    width: 100%;
	}
	.top-content.c06 .box:not(:nth-child(3n)){
		background: none;
	}
	.top-content.c06 .box:not(:last-child) {
	    background-size: 6px 1px;
	    background-repeat: repeat-x;
	    background-position: left bottom;
	    background-image: linear-gradient(to right, #C5C4C4 2px, transparent 2px);
	}
	.top-content.c06 .b{
		bottom: 25px;
	}
	.top-content.c07 .inr{
		gap: 30px 5%;
	}
	.top-content.c07 a{
		width: 30%;
	}
	.top-content.c09 {
	    padding: 12vw 0;
	}
}

@media screen and (max-width:767px) {
	.top-mv {
	    margin-bottom: 12vw;
	}
	.top-mv:before {
	    height: 100%;
	}
	.top-mv .img-inr span{
		width: 50%;
	}
	.top-mv .text{
		top: 25%;
	}
	.top-mv .text p.s1{
		margin-bottom: 5px;
		height: auto;
		background: none;
	}
	.top-mv p.s1 .r,
	.top-mv p.s1 .l{
		display: block;
		padding: 0;
		width: 100%;
		font-size: 11vw;
		text-align: center;
	}
	.top-mv p.s1 .l i{
		padding-left: 0;
	}
	.top-mv p.s1 .r{
		font-size: 14vw;
	}
	.top-mv p.s1 .r>span{
		margin-top: -10px;
		line-height: 1.2;
	}
	.top-mv p.s3{
		display: none;
	}
	.top-content.c01 {
	    margin-bottom: 12vw;
	}
	.top-content.c01 h2{
		margin-bottom: 20px;
		font-size: 25px;
		text-align: center;
	}
	.top-content.c01 .image{
		margin-bottom: 20px;
		border: none;
	}
	.top-content.c02 {
	    padding-top: 12vw;
	    padding-bottom: 20vw;
	}
	.top-content.c02 h2{
		margin-bottom: 8vw;
	}
	.top-content.c02 h2 b{
		font-size: 27px;
	}
	.top-content.c02 .upper {
	    margin-bottom: 15vw;
	}
	.top-content.c02 .upper .box{
		padding-top: 14vw;
	}
	.top-content.c02 .upper h3{
		margin-bottom: 15px;
		font-size: 20px;
	}
	.top-content.c02 .upper h3:before{
		top: -4vw;
		width: 21px;
		height: 3px;
	}
	.top-content.c02 .upper .image {
	    margin-bottom: 10px;
	}
	.top-content.c02 .bottom h3{
		font-size: 20px;
		font-weight: 500;
	}
	.top-content.c02 .bottom .inr{
		gap: 15px;
		padding: 10px;
	}
	.top-content.c02 .bottom p.s1{
		margin-bottom: 8px;
		font-size: 16px;
	}
	.top-content.c02 .bottom p.s2{
		margin-bottom: 5px;
	}
	.top-content.c02 .bottom p.s2>span{
		display: block;
		padding: 0;
		height: 52px;
		text-align: center;
		line-height: 40px;
		border: #3188c9 4px solid;
	}
	.top-content.c02 .bottom p.s2>span>span{
		font-size: 23px;
	}
	.top-content.c02 .bottom p.s3{
		font-size: 16px;
	}
	.top-content.c02 .bottom p.s3 span{
		padding: 0;
		font-size: 14px;
	}
	.top-content .slick-list {
	    overflow: hidden;
	}
	.top-content.c03{
		margin-bottom: 20vw;
		padding-bottom: 10vw;
	}
	.top-content .sub.flex{
		margin-bottom: 30px;
	}
	.top-content .sub.flex .arrow i {
		width: 15px;
    	height: 24px;
	}
	.top-content .sub.flex .next:after,
	.top-content .sub.flex .prev:after,
	.top-content .sub.flex .next:before,
	.top-content .sub.flex .prev:before {
		width: 10px;
        height: 16px;
		top: 50%;
		transform: translateY(-50%);
	}
	.top-content .sub.flex .right {
		font-size: 20px;
	}
	.top-content.c03 h2{
		margin: 0 -10px;
		margin-bottom: 12vw;
		padding-top: 14vw;
		font-size: 25px;
		text-align: center;
	}
	.top-content.c03 h2:before{
		width: 100%;
		font-size: 11vw;
		text-align: center;
		letter-spacing: 0;
	}
	.top-content.c03 .inr{
		width: calc(100% + 25px);
	}
	.top-content.c03 .box{
		padding-right: 25px;
	}
	.top-content.c03 dt{
		margin-bottom: 10px;
		padding-top: 30px;
		font-size: 20px;
		line-height: 1.6;
	}
	.top-content.c03 dt:before{
		width: 76px;
		height: 20px;
		font-size: 14px;
		line-height: 20px;
		background: url(../img/deco04.svg) no-repeat 0 0;
		background-size: 100% auto;
	}
	.top-content.c03 .text,
	.top-content.c03 .gallery{
		width: 100%;
	}
	.top-content.c03 .gallery{
		margin-bottom: 15px;
	}
	.top-content.c03 .gallery .main {
	    margin-bottom: 20px;
	}
	.top-content.c04{
		position: relative;
		margin-bottom: 22vw;
		padding-bottom: 2vw;
	}
	.top-content.c04 h2{
		margin-bottom: 12vw;
	}
	.top-content .sub.flex .right .arrow i:hover:after{
		opacity: 0;
	}
	.top-content .sub.flex .right .arrow i:hover:before {
		opacity: 1;
	}
	.top-content.c04 .inr{
		width: calc(100% + 25px);
	}
	.top-content.c04 .box{
		padding-right: 25px;
	}
	.top-content.c05{
		position: relative;
		margin-bottom: 18vw;
		padding-bottom: 15vw;
	}
	.top-content.c05 h2{
		margin-bottom: 16vw;
	}
	.top-content.c05 .sub {
		position: absolute;
		left: 0;
		bottom: 0;
	    margin-bottom: 0;
	    padding-right: 0;
		width: 100%;
		text-align: center;
	}
	.top-content.c05 .upper{
		width: 100%;
	}
	.top-content.c05 .upper span{
		padding: 0;
	}
	.top-content.c05 .upper .slick-arrow,
	.top-content.c05 .upper .slick-next{
		display: none!important;
	}
	.top-content.c05 .bottom{
		margin-left: -30px;
		width: 1100px;
		height: 60px;
	}
    .top-content.c06 .box{
    	padding-right: 0;
    	padding-left: 0;
    }
	.top-content.c06 h3{
		font-size: 20px;
	}
	.top-content.c06 .b {
		left: 0;
	    width: 100%;
	}
	.top-content.c06 .b a {
		width: 100%;
	}
	.top-content.c07{
		margin-bottom: 20vw;
	}
	.top-content.c07 h2{
		display: block;
		margin-bottom: 8vw;
		padding-right: 0;
		padding-bottom: 25px;
		font-size: 25px;
		text-align: center;
	}
	.top-content.c07 h2:before{
		top: auto;
		right: 50%;
		bottom: 0;
	    transform: translateY(0) translateX(50%);
	}
    .top-content.c07 .inr {
    	justify-content: space-between;
        gap: 20px;
    }
    .top-content.c07 a {
        width: 46.5%;
    }
    .top-content.c08{
    	margin-bottom: 12vw;
    }
    .top-content.c08 .left {
        margin-bottom: 12vw;
    }
	.top-content.c08 h2{
		padding-top: 35px;
		font-size: 18px;
		margin-bottom: 0;
	}
	.top-content.c08 h2:before{
		font-size: 25px;
	}
	.top-content.c08 .right .box {
	    margin-bottom: 18vw;
	}
	.top-content.c08 .right .box:last-of-type {
	    margin-bottom: 18vw;
	}
	.top-content.c08 .news-btn {
		display: block;
		width: fit-content;
		margin: 0 auto;
	}
	.top-content.c08 .image,
	.top-content.c08 .content{
		width: 100%;
	}
	.top-content.c08 .image{
		margin-bottom: 15px;
	}
	.top-content.c09{
		padding-top: 18vw;
		padding-bottom: 12vw;
	}
	.top-content.c09 .header {
	    margin-bottom: 18vw;
	}
	.top-content.c09 h2 {
	    margin-bottom: 25px;
	    padding-top: 40px;
	}
	.form-content dl {
	    margin-bottom: 25px;
	}
	.form-content dt{
		margin-bottom: 15px;
		font-size: 16px;
	}
	select,
	textarea,
	[type="password"],
	[type="email"],
	[type="number"],
	[type="text"]{
		padding: 12px;
	}
	[type="checkbox"]{
	    margin-top: 13px;
	}
	textarea{
		min-height: 150px;
	}
	select {
		background: #fff url(../img/arrow07.svg) no-repeat right 15px center;
	}
	select:focus{
		background: #fff;
	}
	.form-content .privacy label:after,
	.form-content dt:before{
		top: -2px;
	}
	.form-content .privacy{
		display: block;
		margin-bottom: 30px;
		width: 100%;
	}
	.form-content .privacy label{
		display: block;
		padding-top: 8px;
		padding-left: 10px;
		text-align: left;
	}
	.form-content .privacy span{
		display: inline-block;
		line-height: 1.2;
	}
	.form-content .privacy label:after{
		top: 46%;
		right: 15px;
		margin: 0;
	    transform: translateY(-50%);
	}
}

/*フッター*/
#footer {
	color: #fff;
	background: #404042;
}
#footer a{
	color: #fff;
}
#footer .upper{
	padding-top: 80px;
	padding-bottom: 170px;
}
#footer .logo{
	margin-bottom: 30px;
	width: 324px;
}
#footer .menu{
	display: flex;
	flex-wrap: wrap;
	gap: 45px;
}
#footer .menu a:hover{
	color: #6EB6EC;
}
#footer .sns{
	display: flex;
	gap: 20px;
}
#footer .sns a{
	display: block;
	width: 30px;
	height: 30px;
}
#footer .fnav ul{
	display: flex;
	flex-wrap: wrap;
	gap: 35px;
}
#footer .bottom{
	height: 44px;
	font-size: 13px;
	text-align: center;
	line-height: 44px;
	background: #313133;
}

@media screen and (max-width:1000px) {
	#footer .upper {
	    padding-top: 45px;
	    padding-bottom: 30px;
	}
	#footer .logo{
		margin: 0 auto;
		margin-bottom: 40px;
		width: 166px;
	}
	#footer .sns{
		margin: 0 auto;
	}
	#footer .fnav{
		display: none;
	}
	#footer .bottom{
		font-size: 11px;
	}
}

/*下層*/
.pankuzu {
	margin-bottom: 70px;
	padding: 10px 15px;
	background: #f4f9fc;
}
.pankuzu ul{
	display: flex;
	gap: 20px;
}
.pankuzu li{
	font-size: 14px;
	line-height: 1.2;
}
.pankuzu a{
	display: block;
	position: relative;
	text-decoration: underline;
}
.pankuzu a:before{
	content: '';
	position: absolute;
	top: 51%;
	right: -14px;
	color: #3e3a39;
	width: 5px;
	height: 7px;
	background: url(../img/arrow08.svg) no-repeat center;
    transform: translateY(-50%);
}
.page-header h1{
	position: relative;
	margin-bottom: 70px;
	padding-left: 15px;
	font-size: 30px;
	font-weight: bold;
	line-height: 1.2;
}
.page-header h1:after,
.page-header h1:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 6px;
	height: 36px;
	background: #3188c9;
}
.page-header h1:after{
	top: 12px;
	height: 24px;
	background: #3E3A39;
}

@media screen and (max-width:767px) {
	.pankuzu {
		margin-bottom: 30px;
	}
	.pankuzu li{
		font-size: 12px;
	}
	.page-header h1{
		margin-left: -10px;
		margin-bottom: 25px;
		padding-left: 12px;
		font-size: 25px;
	}
	.page-header h1:after,
	.page-header h1:before{
		top: 4px;
		width: 5px;
		height: 25px;
	}
	.page-header h1:after{
		top: 12px;
		height: 17px;
	}
}

/*私たちについて*/
body.about .content dl,
body.about .content dd{
	margin-bottom: 0;
}
body.about .content .text{
	width: 55.5%;
}
body.about .content .image{
	width: 38.5%;
}
body.about .content.c01 {
	margin-bottom: 115px;
}
body.about .content.c01 .left{
	width: 55.5%;
}
body.about .content.c01 .right{
	width: 41%;
}
body.about .content.c01 .left .u{
	margin-bottom: 60px;
}
body.about .content.c01 h2{
	margin-bottom: 30px;
}
body.about .content.c01 .left .u h3{
	margin-bottom: 45px;
	font-size: 25px;
	font-weight: bold;
	line-height: 2;
}
body.about .content.c01 .left .b h3{
	margin-bottom: 15px;
	color: #3188c9;
	font-size: 25px;
	font-weight: bold;
}
body.about .content.c01 .left .box{
	padding: 10px 20px;
	border: #3188c9 3px solid;
}
body.about .content.c01 .left .b dl{
	padding: 10px 0;
}
body.about .content.c01 .left .b dl:not(:last-child){
    background-size: 4px 1px;
    background-repeat: repeat-x;
    background-position: left bottom;
    background-image: linear-gradient(to right, #3188C9 1px, transparent 1px);
}
body.about .content.c01 .left .b dt{
	width: 60px;
	font-weight: normal;
}
body.about .content.c01 .left .b dd{
	width: calc(100% - 80px)
}
body.about .content.c01 .right .u{
	margin-bottom: 10px;
}
body.about .content.c01 .name{
	position: relative;
}
body.about .content.c01 .name dd {
}
body.about .content.c01 .name dd span{
	display: inline-block;
	width: 150px;
	height: 24px;
	text-indent: -9999px;
	background: url(../img/about/about-c01-02.png) no-repeat center;
	background-size: 100% auto;
}
body.about .content.c01 .name dd a {
	position: absolute;
	top: 0;
	right: 0;
}
body.about .content.c02 {
	margin-bottom: 115px;
}
body.about .content.c02 h2{
	position: relative;
	margin-bottom: 90px;
	padding-top: 70px;
	color: #3188c9;
	font-size: 25px;
	font-weight: bold;
	line-height: 2;
}
body.about .content.c02 h2:before{
	content: 'FOUNDER STORY';
	position: absolute;
	top: 0;
	left: 0;
	font-size: 60px;
	color: #fff;
	font-weight: bold;
	line-height: 1;
	letter-spacing: 0.8rem;
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: #3188C9;
}
body.about .content.c02 h2 span{
	margin-left: 10px;
}
body.about .content.c02 .upper{
	margin-bottom: 80px;
}
body.about .content.c02 .upper h3{
	margin-bottom: 30px;
	font-size: 25px;
	font-weight: bold;
	line-height: 2;
}
body.about .content.c02 .middle {
	margin-bottom: 100px;
}
body.about .content.c02 .middle-bottom {
	margin-bottom: 70px;
}
body.about .content.c03 {
	margin-bottom: 115px;
}
body.about .content.c03 h2{
	position: relative;
	margin-bottom: 10px;
	font-size: 30px;
	font-weight: bold;
	letter-spacing: 0.2rem;
}
body.about .content.c03 h2:before{
	content: 'COMPANY';
	position: absolute;
	right: -10px;
	bottom: -17px;
	color: #eaf3fa;
	font-size: 60px;
	font-weight: bold;
	font-family: 'Outfit';
	font-style: normal;
	line-height: 1;
	letter-spacing: 0.8rem;
}
body.about .content.c03 .inr{
	padding: 65px 110px;
	padding-bottom: 120px;
	border: #3188c9 6px solid;
}
body.about .content.c03 dl{
	padding: 30px 0;
    background-size: 7px 1px;
    background-repeat: repeat-x;
    background-position: left bottom;
    background-image: linear-gradient(to right, #3188C9 4px, transparent 4px);
}
body.about .content.c03 dt{
	padding-right: 10px;
	width: 25%;
}
body.about .content.c03 dd{
	width: 75%;
}
body.about .content.c04{
	padding: 85px 0;
	background: url(../img/about/about-c04-bg.jpg) no-repeat center center;
	background-size: cover;
}
body.about .content.c04 .inr{
	margin: 0 auto;
	padding: 40px 15px 60px 15px;
	max-width: 825px;
	text-align: center;
	color: #000;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.6;
	background: #fff;
}
body.about .content.c04 .link a{
	display: inline-block;
	width: 323px;
	height: 60px;
	color: #fff;
	line-height: 60px;
	text-align: center;
	background: #3188c9;
	border-radius: 30px;
}

@media screen and (max-width:820px) {
	body.about .content.c01 .wrap{
		position: relative;
		padding-top: 50px;
	}
	body.about .content.c02 .text,
	body.about .content.c02 .image,
	body.about .content.c01 .left,
	body.about .content.c01 .right{
		width: 100%;
	}
	body.about .content.c01 .left{
		order: 2;
		margin-top: 30px;
	}
	body.about .content.c01 h2{
		position: absolute;
		top: -30px;
		left: 25px;
	}
	body.about .content.c01 .pc.name{
		display: none;
	}
	body.about .content.c01 .name-wrap{
		text-align: right;
	}
	body.about .content.c01 .tb.name{
		display: inline-block;
		padding-right: 45px;
		text-align: left;
	}
	body.about .content.c01 .left .u {
	    margin-bottom: 49px;
	}
	body.about .content.c02 .upper,
	body.about .content.c02 .upper .text,
	body.about .content.c02 .middle,
	body.about .content.c02 .middle-bottom,
	body.about .content.c02 .middle-bottom .image{
		margin-bottom: 50px;
	}
	body.about .content.c02 h2 {
	    margin-bottom: 40px;
	}
	body.about .content.c04{
		padding: 18px 0;
		background: url(../img/about/about-c04-bg-sp.jpg) no-repeat center center;
		background-size: cover;
	}
}

@media screen and (max-width:767px) {
	body.about .content.c01 {
	    margin-bottom: 14vw;
	}
    body.about .content.c01 .left {
        margin-top: 15px;
    }
	body.about .content.c01 h2{
		top: 0;
	}
	body.about .content.c01 .left .u h3{
		margin-bottom: 25px;
		font-size: 20px;
		line-height: 1.4;
	}
    body.about .content.c01 .name-wrap {
        text-align: left;
    }
    body.about .content.c01 .tb.name {
        display: block;
    }
	body.about .content.c01 .left .b h3{
		margin-bottom: 5px;
		font-size: 20px;
	}
	body.about .content.c01 .left .box{
		padding: 15px 20px;
		padding-top: 0;
	}
	body.about .content.c01 .left .b dl{
		padding: 20px 0;
		padding-bottom: 10px;
	}
	body.about .content.c01 .left .b dt,
	body.about .content.c01 .left .b dd{
		width: 100%;
		line-height: 1.4;
	}
	body.about .content.c01 .left .b dt{
		margin-bottom: 5px;
	}
	body.about .content.c02 {
		margin-bottom: 24vw;
	}
	body.about .content.c02 h2{
		margin-bottom: 20px;
		padding-top: 40px;
		font-size: 20px;
		text-align: center;
	}
	body.about .content.c02 h2:before{
		width: 100%;
		font-size: 35px;
		text-align: center;
		letter-spacing: 0.1rem;
	}
	body.about .content.c02 .upper h3{
		margin-bottom: 20px;
		font-size: 18px;
	}
	body.about .content.c03 {
		margin-bottom: 10vw;
	}
	body.about .content.c03 h2{
		margin-bottom: 14vw;
		font-size: 25px;
		letter-spacing: 0.2rem;
		text-align: center;
	}
	body.about .content.c03 h2:before{
		right: 0;
		bottom: -15vw;
		width: 100%;
		font-size: 40px;
		text-align: center;
		letter-spacing: 0.5rem;
	}
	body.about .content.c03 .inr{
		padding: 5px 12px;
	}
	body.about .content.c03 dl{
		padding: 25px 0;
	}
	body.about .content.c03 dl:last-child{
		background: none;
	}
	body.about .content.c03 dt,
	body.about .content.c03 dd{
		width: 100%;
	}
	body.about .content.c03 dt{
		margin-bottom: 7px;
		padding: 0;
	}
	body.about .content.c04 .wrap{
		padding: 0 15px;
	}
	body.about .content.c04 .inr{
		padding: 25px 10px;
	}
	body.about .content.c04 p{
		margin-bottom: 15px;
		font-size: 16px;
		letter-spacing: 0;
	}
}