@charset "utf-8";
body {
	background: #ffffff;
	font-family: 'Inter', sans-serif;
}

/* fadein */
.js-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js-fade-in.js-is-show {
  opacity: 1;
  transform: translateY(0);
}

/* header */
.header{
	width: 100%;

	position: fixed;
	z-index: 2;

}
.header-main {
	display: flex;
	justify-content: space-between;
	padding: 16px 32px 16px 24px;
	background: linear-gradient(rgba(255, 255, 255, 1) 90%,rgba(255, 255, 255, 0));
	position: relative;
	z-index: 1;
}
.header-logo{
	width: 151px;
	cursor: pointer;
}
.header-logo img{
	width: 100%;
}
.header-navi {
	
}
.header-navi ul {
	display: flex;
	justify-content: flex-end;
}
.header-navi ul li {
	text-align: center;
	width: 120px;
	margin-left: 20px;
	font-size: 20px;
}
.header-navi ul li a {
	cursor: pointer;
	text-decoration: none;
}
.header-hamburger{
	display: none;
}
.header-left,
.header-right {
	width: 40px;
	height: 100vh;
	position: absolute;
	z-index: 0;
	top: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	font-size: 20px;
}
.header-left a,
.header-right a{
	text-decoration: none;
}

.header-left {
	left: 0;
}
.header-right {
	right: 0;
	gap: 16px;
	transform: rotate(180deg);
}


@media screen and (max-width: 768px) {
	.header-main{
		padding: 16px;
	}
	.header-logo{
		width: 151px;
	}
	.header-logo img{
		width: 100%;
	}
	.header-navi {
		
	}
	.header-navi ul {
		display: flex;
		justify-content: flex-end;
	}
	.header-navi ul li {
		text-align: center;
		width: 120px;
		margin-left: 0;
		font-size: 20px;
	}
	.header-navi ul li a {
		cursor: pointer;
		text-decoration: none;
	}

	.header-navi {
		position: fixed;
		inset: 0;
		background: rgba(255,255,255,0.95);
		display: flex;
		justify-content: center;
		align-items: center;
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.4s ease;
	}

	.header-navi ul {
		flex-direction: column;
		gap: 32px;
		transform: translateY(20px);
		transition: transform 0.4s ease;
	}

	.header-navi._isOpen {
		opacity: 1;
		pointer-events: auto;
	}

	.header-navi._isOpen .ul {
		transform: translateY(0);
	}

	.header-hamburger {
	width: 30px;
	height: 22px;
	position: relative;
	border: none;
	background: none;
	cursor: pointer;
	display: block;
	}

	.header-hamburger span {
	position: absolute;
	width: 100%;
	height: 2px;
	background: #000;
	left: 0;
	transition: 0.4s;
	}

	.header-hamburger span:nth-child(1) { top: 0; }
	.header-hamburger span:nth-child(2) { top: 10px; }
	.header-hamburger span:nth-child(3) { top: 20px; }

	.header-hamburger._isOpen span:nth-child(1) {
		transform: rotate(45deg);
		top: 10px;
	}
	.header-hamburger._isOpen span:nth-child(2) {
		opacity: 0;
	}
	.header-hamburger._isOpen span:nth-child(3) {
		transform: rotate(-45deg);
		top: 10px;
	}

	.header-left,
	.header-right {
		/* TODO：消すべきか否か検討 */
		/* display: none; */
		width: 16px;
		font-size: 12px;
	}
}
/* footer */
.footer {
	background: #000;
	width: 100%;
	padding: 64px 60px;
	display: flex;
	justify-content: space-between;	
}
.footer-info {
	width: 278px;
	font-size: 12px;
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	line-height: 2;
}
.footer-info-text span {
	font-size: 16px;
}
.footer-info-icon {
	width: 38px;
	height: 38px;
	border-radius: 9999px;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	margin-top: 24px;
}
.footer-info-icon img {
	width: 28px;
}
.footer-logo {
	width: 278px;
}
.footer-logo img {
	width: 90px;
	margin: 0 auto
}
@media screen and (max-width: 768px) {
	.footer {
		padding: 24px 16px;
		align-items: center;
	}
	.footer-info {
		width: 280px;
		font-size: 10px;
	}
	.footer-info-text span {
		font-size: 14px;
	}
	.footer-logo {
		width: 200px;
	}
	.footer-logo img {
		width: 60px;
	}
}
/* main */
.wrap {
    width: 100%;
    padding: 62px 40px 0;
    /* padding: 62px 40px 40px; */
}
@media screen and (max-width: 768px) {
	.wrap {
		padding: 56px 16px 0;
		/* padding: 56px 16px 16px; */
	}
}
/* startAnimation */
.startAnimation {
	width: 100%;
	height: 100svh;
	position: fixed;
	z-index: 3;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px 40px;
	transition: 0.5s;
}
.startAnimation img {
	max-width: 630px;
	width: 100%;
	opacity: 0;
	transition: 0.7s;
}
.startAnimation.visible img {
	opacity: 1;
}
.startAnimation.remove {
	opacity: 0;
}
/* mv */
.mv{
	width: 100%;
}
.mv-main{
	width: 100%;
	height: 600px;
	display: flex;
	justify-content:space-around;
	align-items: center;
	max-width: 980px;
    margin: 0 auto;
}
.mv-logo{
	width: 400px;
}
.mv-logo img{
	width: 160px;
	margin: 0 auto;
}
.mv-content{
	width: 400px;
	text-align: center;
}
.mv-content-copy{
	width: 100%;
	font-weight: bold;
	font-size: 16px;
}
.mv-content-description{
	width: 100%;
	font-size: 13px;
	margin-top: 32px;
}
.mv-banner {
	width: 100%;
	aspect-ratio: 1200 / 460;
	overflow: hidden;
}
.mv-banner img,
.mv-banner video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
/* 750px以下でのスタイル */
@media screen and (max-width: 768px) {
	.mv-main{
		width: 100%;
		height: auto;
		flex-direction: column;
	}
	.mv-logo{
		width: 100%;
		max-width: 375px;
	}
	.mv-logo img{
		width: 40%;
		margin: 32px auto;
	}
	.mv-content{
		width: 100%;
	}
	.mv-content-copy{
		font-size: 16px;
	}
	.mv-content-description{
		font-size: 12px;
		margin-top: 32px;
	}
	.mv-banner {
		margin-top: 24px;
	}
}

/* section */
.section {
	width: 100%;
	margin-top: 128px;
}
.section-title {
	font-size: 36px;
	font-weight: bold;
	text-align: center;
}
.section-image {
	width: 100%;
	aspect-ratio: 1200 / 460;
	overflow: hidden;
	margin-top: 40px;
}
.section-image img,
.section-image video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.section-content {
	text-align: center;
	max-width: 750px;
	margin: 40px auto;
	position: relative;
}
.section-content-title {
	font-size: 32px;
}
.section-content-description{
	margin-top: 40px;
	font-size: 14px;
}
/* partner対応 */
#partner .section-content {
	margin: 24px auto;
}
#partner .section-content-description {
	margin-top: 0;
}

/* history対応 */
.section#history {
	/* width: 230px; */
	width: 280px;
}
#history .section-title {
	font-size: 15px;
	font-weight: normal;
	text-align: center;
}
#history .section-content{
	margin-top: 28px;
}

/* historyをスマホ時に表示調整 */
@media screen and (max-width: 1020px) {
	.section#history {
		width: 100%;
	}
	#history .section-title {
		font-size: 28px;
		font-weight: bold;
	}
	#history .section-content{
		margin-top: 28px;
	}
}

@media screen and (max-width: 768px) {
	.section {
		margin-top: 64px;
	}
	.section-title {
		font-size: 28px;
	}

	.section-content-title {
		font-size: 20px;
	}
	.section-content-description{
		margin-top: 20px;
		font-size: 12px;
	}
}

/* subMv */
.subMv {
	padding: 60px 0;
}
.subMv-title {
	font-size: 36px;
	font-weight: bold;
	width: 90%;
	max-width: 1000px;
	margin: 0 auto;
}
.subMv-description {
	text-align: center;
	font-size: 14px;
	width: 90%;
	max-width: 1000px;
	margin: 72px auto 0;
}
.subMv-image {
	width: 100%;
	aspect-ratio: 1200 / 460;
	overflow: hidden;
	margin-top: 40px;
}
.subMv-image img,
.subMv-image video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

@media screen and (max-width: 768px) {
	.subMv {
		padding: 60px 0;
	}
	.subMv-title {
		font-size: 28px;
	}
	.subMv-description {
		font-size: 12px;
		margin: 40px auto 0;
	}
}


/* placeList */
.placeList {
	max-width: 980px;
	margin: 120px auto 0;
}
.placeList-item {
	display: flex;
	justify-content: space-between;
	margin-top: 64px;
	padding-bottom: 32px;
	border-bottom: 1px solid #000;
	position: relative;
}
.placeList-item::before,
.placeList-item::after {
	content: "";
	display: block;
	position: absolute;
	bottom: -2.5px;
	width: 1px;
	height: 1px;
	border-top: transparent 2px solid;
	border-bottom: transparent 2px solid;
}
.placeList-item::before {
	left: 0;
	border-left: #000 3px solid;
}
.placeList-item::after {
	right: 0;
	border-right: #000 3px solid;
}
.placeList-item:nth-child(even) {
	flex-direction: row-reverse;
}
.placeList-item-info {
	width: 42%;
	padding:0 40px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.placeList-item-info-logo {
	width: 340px;
}
.placeList-item-info-logo img {
	width: 100%;
}
.placeList-item-info-link {
	margin-top: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.placeList-item-info-link a{
	height: 32px;
	display: block;
}
.placeList-item-info-link img {
	height: 100%;
}
.placeList-item-info-desc {
	margin-top: 20px;
	width: 280px;
	text-align: center;
	font-size: 14px;
}
.placeList-item-slider {
	width: 42%;
}
.placeList-item-slider-image {
	width: 100%;
}
/* swiper */
.swiper-pagination {
	margin-top: 20px;
	position: static;
}
.swiper-pagination-bullet {
	width: 15px;
	height: 15px;
	border-radius: 0;
	background: #D9D9D9;
	opacity: 1;
}
.swiper-pagination-bullet-active {
	background: #000;
}


@media screen and (max-width: 768px) {
	.placeList {
		width: 100%;
		margin: 40px auto 0;
	}
	.placeList-item {
		display: flex;
		flex-direction: column;
		margin-top: 32px;
		padding-bottom: 32px;
	}
	.placeList-item:nth-child(even) {
		flex-direction: column;
	}
	.placeList-item-info {
		width: 100%;
		padding: 18px 40px 0;
	}
	.placeList-item-info-logo {
		width: 100%;
		max-width: 400px;
	}
	.placeList-item-info-link {
		margin-top: 28px;
	}
	.placeList-item-info-link a {
		height: 24px;
	}
	.placeList-item-info-desc {
		margin-top: 20px;
		width: 280px;
		text-align: center;
		font-size: 12px;
	}
	.placeList-item-slider {
		width: 100%;
		max-width: 400px;
		margin: 20px auto 0;
	}
}

/* about */
.about {
	text-align: center;
	max-width: 750px;
	margin: 40px auto;
	position: relative;
}
.about-title {
	font-size: 32px;
}
.about-desc{
	margin-top: 40px;
	font-size: 14px;
}
.about-link {
	margin-top: 4px;
	font-size: 24px;
	width: 100%;
	display: block;
	text-align: right;
	text-decoration: underline;
	cursor: pointer;
}
@media screen and (max-width: 768px) {
	.about-title {
		font-size: 20px;
	}
	.about-desc{
		margin-top: 20px;
		font-size: 12px;
	}
	.about-link {
		margin-top: 12px;
		font-size: 16px;
	}
}


/* recruit */
.recruit {
	position: relative;
}
.recruit-content{
	max-width: 750px;
	margin: 0 auto;
	text-align: center;
	min-height: 760px;
	position: sticky;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
    justify-content: center;
	z-index: 1;
}
.recruit-content-title {
	font-size: 36px;
	font-weight: bold;
	text-align: center;
}
.recruit-content-copy {
	font-size: 32px;
	margin-top: 40px;
}
.recruit-content-desc {
	font-size: 14px;
	margin-top: 40px;
}
.recruit-content-link {
	margin-top: 24px;
	font-size: 24px;
	width: 100%;
	display: block;
	text-align: right;
	text-decoration: underline;
	cursor: pointer;
}
.recruit-topImages {
	margin: auto;
    min-height: 288px;
    position: absolute;
    top: 140px;
    left: 0;
    right: 0;
}
.recruit-topImages ul li {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
}
.recruit-topImages ul li:nth-of-type(1) {
	width: 300px;
	transform: translate(300px, -120px);
}
.recruit-topImages ul li:nth-of-type(2) {
	width: 250px;
	transform: translate(-260px, -180px);
}
.recruit-topImages ul li img {
	will-change: transform;
	width: 100%;
	box-shadow: 0px 5px 5px rgba(0,0,0,0.1);
	border-radius: 20px;
	opacity: 0.3;
}
.recruit-bottomImages {
	min-height: 320px;
	margin-top: -340px;
	position: relative;
}
.recruit-bottomImages ul {
	display: flex;
	flex-wrap: wrap;
}
.recruit-bottomImages ul li:nth-of-type(1) {
	width: 300px;
	margin:40px 0 0 32px;
}
.recruit-bottomImages ul li:nth-of-type(2) {
	width: 380px;
	margin: 60px 0 0 112px;
}
.recruit-bottomImages ul li:nth-of-type(3) {
	width: 290px;
	margin: 60px 0 0 112px;
}
.recruit-bottomImages ul li:nth-of-type(4) {
	width: 168px;
	margin: 20px 0 0 84px;
}
.recruit-bottomImages ul li:nth-of-type(5) {
	width: 200px;
	margin: -60px 0 0 112px;
	position: absolute;
    top: 320px;
    right: 60px;
}
.recruit-bottomImages ul li img {
	will-change: transform;
	width: 100%;
	box-shadow: 0px 5px 5px rgba(0,0,0,0.1);
	border-radius: 20px;
	opacity: 0.3;
}

@media screen and (max-width: 768px) {
	.recruit-content-title {
		font-size: 28px;
	}
	.recruit-content-copy {
		font-size: 20px;
		margin-top: 40px;
	}
	.recruit-content-desc {
		font-size: 12px;
		margin-top: 40px;
	}
	.recruit-content-link {
		font-size: 16px;
	}

}
@media screen and (max-width: 960px) {
	.recruit-topImages,
	.recruit-bottomImages{
		max-width: 414px;
        width: 100%;
	}
	.recruit-topImages ul li:nth-of-type(1) {
		width: 210px;
		transform: translate(80px, -170px);
	}
	.recruit-topImages ul li:nth-of-type(2) {
		width: 125px;
		transform: translate(-124px, -130px);
	}
	.recruit-bottomImages{
		margin: -360px auto 0;

	}
	.recruit-bottomImages ul li:nth-of-type(1) {
		width: 190px;
		margin: 40px 0 0 32px;
	}
	.recruit-bottomImages ul li:nth-of-type(2) {
		width: 260px;
		margin: 160px 0 0 112px;
	}
	.recruit-bottomImages ul li:nth-of-type(3) {
		width: 200px;
		margin: -40px 0 0 22px;
	}
	.recruit-bottomImages ul li:nth-of-type(4) {
		width: 108px;
		margin: -40px 0 0 260px;
	}
	.recruit-bottomImages ul li:nth-of-type(5) {
		width: 180px;
		margin: 0 0 0 32px;
		position: static;
	}
}

/* value */
.value {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.value-item {
	width: 50%;
}
.value-item:nth-of-type(n + 3) {
	margin-top: 54px;
}
.value-item-title {
	font-size: 20px;
	background: url(../img/effect_01.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	text-align: center;
}
.value-item-description {
	margin-top: 18px;
	font-size: 14px;
}

@media screen and (max-width: 768px) {
	.value-item {
		width: 100%;
	}
	.value-item:nth-of-type(n + 2) {
		margin-top: 32px;
	}
}


/* aboutPageContent */
.aboutPageContent {
	display: flex;
	justify-content: space-between;
}
.aboutPageContent-left {
	width: 280px;
	flex:none;
}
.aboutPageContent-right {
	width: 280px;
	display: flex;
	justify-content: center;
}
.aboutPageContent-center {
	width: 680px;
}
@media screen and (max-width: 1020px) {
	.aboutPageContent {
		display: block;
	}
	.aboutPageContent-left {
		width: 100%;
	}
	.aboutPageContent-right {
		display: none;
	}
	.aboutPageContent-center {
		width: 100%;
	}
}

/* historyList */
.historyList {
}
.historyList-item {
	display: flex;
	font-size: 10px;
}
.historyList-item p:first-child {
	width: 60px;
	font-weight: bold;
	/* flex: 1; */
}
.historyList-item p:first-child + p {
	width: calc(100% - 60px);
	text-align: left;
	/* padding-left: 6px; */
}
@media screen and (max-width: 1020px) {
	.historyList {
		width: 100%;
		max-width: 400px;
		margin: 0 auto;
		padding: 0 16px;
	}
	.historyList-item{
		font-size: 12px;
	}
}

/* shopIcons */
.shopIcons {
	width: 150px;
	height: 100%;
	overflow: hidden;
	position: relative;

	mask-image: linear-gradient(
		to bottom,
		transparent 0%,
		black 20%,
		black 80%,
		transparent 100%
	);
}
.shopIcons-wrap {
	position: absolute;
  	top: 0;
	left: 0;
	width: 100%;
	will-change: transform;
}
.shopIcons ul {
	padding: 27px 0;
	display: flex;
	flex-direction: column;
	gap: 55px;
	will-change: transform;

}
.shopIcons li {
	width: 150px;
	height: 150px;
	border-radius: 9999px;
	overflow: hidden;
}
.shopIcons li img {
	width: 100%;
}


.companyProfile {
	background-color: #EFEFEF;
	display: flex;
	/* justify-content: space-between; */
	justify-content: space-around;
	padding: 32px 120px;
	/* 領域をはみ出させる調整S */
	width: calc(100% + 80px);
    margin-left: -40px;
}
.companyProfile-info{
	width: 378px;
}
.companyProfile-info-title {
	font-size: 36px;
}
.companyProfile-info-list{
	margin-top: 28px;
	font-size: 14px;
}
.companyProfile-info-list li{
	display: flex;
	justify-content: space-between;
	border-bottom: solid 1px #000;
	padding: 4px 0;
}
.companyProfile-info-list li:not(:first-child){
	margin-top: 8px;
}	
.companyProfile-info-list li p:first-child{ 
	width:80px;
	font-weight: bold;
	text-align: center;
}
.companyProfile-info-list li p:last-child{
	flex: 1;
	padding-left: 20px;
}

.companyProfile-map{
	width:450px;
	/* height: 300px; */
	background: #ccc;
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
}
.companyProfile-map iframe{
	width: 100%;
	/* height: 100%; */
}

@media screen and (max-width: 1020px) {
	.companyProfile {
		flex-direction: column;
        justify-content: center;
        align-items: center;
	}
	.companyProfile-info{
		width: 100%;
	}
	.companyProfile-info-title {
		font-size: 28px;
	}
	.companyProfile-info-list{
		margin-top: 28px;
		font-size: 12px;
	}
	.companyProfile-map {
		width: 100%;
		margin-top: 40px;
	}
}
@media screen and (max-width: 768px) {
	.companyProfile {
		padding: 24px 32px;
		/* 領域をはみ出させる調整S */
		width: calc(100% + 32px);
		margin-left: -16px;
	}
}

.partnerList {
	width: 100%;
	max-width: 840px;
	margin-top: 40px;
}
.partnerList-wrap {
	align-items: center;
}
.partnerList-wrap li {
	width: 100%;
	aspect-ratio: 3 / 1; /* ← ロゴ領域の比率 */
	display: flex;
	align-items: center;
	justify-content: center;
}
.partnerList-wrap li a {
	  cursor: pointer;
}

.partnerList-wrap li img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;

	pointer-events: none;
}
.partnerList-wrap li p{
	/* width: 30%; */
	background: url(../img/effect_01.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	text-align: center;
	font-size: 20px;
	line-height: 1.1;
}
/* .partnerList li:nth-child(n + 4) {
	margin-top: 60px;
} */
@media screen and (max-width: 768px) {
	.partnerList{
		justify-content: space-around
	}
	.partnerList li{
		/* width: 45%; */
		font-size: 20px;
	}
	/* .partnerList li:nth-child(n + 3) {
		margin-top: 32px;
	} */
}

/* requirement */
.requirement {

}
.requirement-info{
	display: flex;
	justify-content: center;
}
.requirement-info + .requirement-info{
	margin-top: 60px;
}
.requirement-info-title{
	font-size: 24px;
}
.requirement-info-list{
	font-size: 14px;
	margin-top: 28px;
	width: 540px;
	margin-left: 24px;
	/* レイアウト調整 */
	padding-right: 100px;
}
.requirement-info-list li{
	display: flex;
	justify-content: space-between;
	border-bottom: solid 1px #000;
	padding: 4px 0;
	text-align: left;
}
.requirement-info-list li:not(:first-child){
	margin-top: 8px;
}	
.requirement-info-list li p:first-child{ 
	width:80px;
	text-align: center;
}
.requirement-info-list li p:last-child{
	flex: 1;
	padding-left: 20px;
}
@media screen and (max-width: 768px) {
	.requirement-info{
		flex-direction: column;
	}
	.requirement-info + .requirement-info{
		margin-top: 32px;
	}
	.requirement-info-title {
		font-size: 16px;
		font-weight: bold;
		text-align: left;
		width: 100%;
		max-width: 375px;
		margin: 20px auto 0;
	}
	.requirement-info-list{
		font-size: 12px;
		width: 100%;
		max-width: 375px;
		margin: 20px auto 0;
		padding-right: 0;
	}
	.requirement-info-list li p:last-child{
		padding-left: 4px;
	}

}

 
/* aboutMemberList */
.aboutMemberList {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.aboutMemberList li {
	width: 42%;
}
.aboutMemberList li:nth-of-type(n + 3){
	margin-top: 24px;
}
@media screen and (max-width: 768px) {
	.aboutMemberList li {
		width: 100%;
	}
	.aboutMemberList li:nth-of-type(n + 2){
		margin-top: 24px;
	}
}
/* aboutCEO */
.aboutCEO {
	background-color: #EFEFEF;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 32px 120px;
	/* 領域をはみ出させる調整S */
	width: calc(100% + 80px);
    margin-left: -40px;
	position: relative;
}
.aboutCEO-title {
	font-size: 36px;
	font-weight: bold;
	text-align: center;
}
.aboutCEO-profile {
	text-align: center;
	margin-top: 24px;
}
.aboutCEO-profile-icon {
	width: 200px;
	height: 200px;
	border-radius: 9999px;
	overflow: hidden;
	margin: 0 auto;
}
.aboutCEO-profile-icon img {
	width: 100%;
}
.aboutCEO-profile-name {
	font-weight: bold;
	font-size: 24px;
	margin-top: 32px;
}
.aboutCEO-profile-name p:first-of-type {
	font-size: 36px;
}
.aboutCEO-profile-description {
	font-size: 14px;
	margin-top: 24px;
}
.aboutCEO-history {
	position: absolute;
	left: 40px;
	top: 32px;
	margin-top: 0;
}
.aboutCEO-contact {
	margin-top: 64px;
	text-align: center;
	display: flex;
	align-items: center;
	flex-direction: column;
}
.aboutCEO-contact-title {
	font-size: 36px;
	font-weight: bold;
}
.aboutCEO-contact-description {
	font-size: 14px;
	margin-top: 24px;
}
.aboutCEO-contact-icon {
	width: 38px;
    height: 38px;
    border-radius: 9999px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-top: 24px;
}
.aboutCEO-contact-icon img {
	width: 28px;
}
@media screen and (max-width: 1020px) {
    .aboutCEO-history {
		position: static;
		margin-top: 24px;
	}
}
@media screen and (max-width: 768px) {
	.aboutCEO {
		padding: 24px 32px;
		/* 領域をはみ出させる調整S */
		width: calc(100% + 32px);
		margin-left: -16px;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.aboutCEO-title {
		font-size: 28px;
	}
	.aboutCEO-profile-icon {
		width: 140px;
		height: 140px
	}
	.aboutCEO-profile-name {
		font-size: 16px;
		margin-top: 24px;
	}
	.aboutCEO-profile-name p:first-of-type {
		font-size: 28px;
	}
	.aboutCEO-profile-description {
		font-size: 12px;
		margin-top: 16px;
	}
	.aboutCEO-contact {
		margin-top: 32px;
	}
	.aboutCEO-contact-title {
		font-size: 28px;
	}
	.aboutCEO-contact-description {
		font-size: 12px;
		margin-top: 16px;
	}
}