@charset "utf-8";
/*------------------------------------------------------------
	index
------------------------------------------------------------*/

#loading {
	position: fixed;
	top: 0; left: 0;
	width: 100%; height: 100%;
	background: #fff; /* 背景色（任意で変えてOK） */
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999; /* 最前面 */
	color: #272830;
	font-family: "Outfit", sans-serif;
	font-size: 1.5rem;
  }
  
  /* シンプルなアニメーション例 */



  @keyframes blink {
	50% { opacity: 0.3; }
  }


  #main{
	overflow: hidden;
  }
#main .mainVisual {
	padding: 8.5rem 0 0;
	background: url(../img/index/main_bg01.png) no-repeat right top 10.6rem / 44rem,url(../img/index/main_bg02.png) no-repeat left 11.4rem top 13.3rem / 32.3rem,url(../img/index/main_bg03.png) no-repeat right 10.7rem bottom 7.5rem / 19.9rem,url(../img/index/main_bg04.png) no-repeat left bottom 2.7rem / 27rem;
}


#main .mainVisual .enText{
	top: 50%;
   left: 0%;
   transform: translateY(-50%);
   z-index: -1;
}

#main .mainVisual .enText span{
	color: #ECECEC;
}

#main .mainVisual .pc img.position-absolute{
	position:absolute;      /* 念のため明示 */
	left:50%;
	top:50%;
	transform:translate(-50%,-50%); /* JSがここに追記して動かします */
	will-change: transform;
	pointer-events:none; /* 画像がマウスイベントを邪魔しないように */
  }

#main .mainVisual .mainTitle {
	margin-bottom: 2.6rem;
	font-size: 5rem;
	font-weight: 900;
	text-align: center;
	letter-spacing: 0.4rem;
}
#main .mainVisual .mainImg {
	margin: 0 auto;
	max-width: 128rem;
}
#main .message {
	margin-bottom: 7.1rem;
	padding: 11.1rem 0 0.5rem;
	position: relative;
}
#main .message .enText {
	position: absolute;
	top: 34.4rem;
	left: 0;
	width: 100%;
	text-align: center;
	overflow: hidden;
}
#main .message .enText .infiniteslide {
	margin-left: -34.2rem;
	padding-bottom: 2rem;
}
#main .message .enText .sub {
	margin-right: 5rem;
	display: inline-block;
	color: rgba(255, 255, 255, 0.3);
	font-size: 20rem;
	font-family: "Outfit", sans-serif;
	line-height: 1.1;
	white-space: nowrap;
}
#main .message::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, #DBFFE5 0%, #77A4FF 100%);
	opacity: 0.5;
	content: '';
}
#main .message .content {
	max-width: 142rem;
}
#main .message .textBox {
	max-width: 80rem;
}
#main .message .headLine02 {
	margin-bottom: 5.9rem;
}
#main .message .headLine02 .en {
	color: #6D8AEF;
	font-size: 4.8rem;
	font-weight: 700;
	letter-spacing: 0.3rem;
}
#main .message .headLine02 .jp {
	margin-top: -0.3rem;
	padding-left: 3.1rem;
	font-size: 2rem;
	font-weight: 500;
	background-size: 2.3rem;
	background-position: left top 0.6rem;
	letter-spacing: 0.2rem;
}
#main .message .title {
	margin-bottom: 6.5rem;
	font-size: 5rem;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.4rem;
}
#main .message .text {
	margin-bottom: 4.9rem;
	padding: 0 1rem;
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.2rem;
}
#main .message .comLink01 {
	margin-left: 1rem;
}
#main .message .photoBox {
	margin: -18.6vw 0 -16vw auto;
	position: relative;
	z-index: 5;
	width: calc(50% + 46.2rem);
}
#main .message .photoBox img {
	width: 100%;
}
#main .company {
	margin-bottom: 4.4rem;
	padding: 17.1vw 0 16vw;
	background: url(../img/index/company_bg01.png) no-repeat left top / 100%,url(../img/index/company_bg02.png) no-repeat left bottom / 100%;
}
#main .company .imgBox {
	margin-bottom: 2.3rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#main .company .imgBox .photoBox {
	width: calc(50% + 16rem);
	min-height: 47rem;
}
#main .company .imgBox .photoBox img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#main .company .imgBox .textBox {
	padding: 3rem 0;
	position: relative;
	width: calc(50% - 16rem);
	background: #6D8AEF url(../img/index/company_bg05.png) no-repeat left top / 36.3rem;
}
#main .company .imgBox .textBox .link {
	margin: 0 auto;
	width: fit-content;
}

.circle-cta.cutout{
	position: relative;
	display: inline-block;
	width: 300px;                 /* サイズ調整 */
	aspect-ratio: 1/1;
	text-decoration: none;
	color: inherit;
  }
  
  /* ページ側の土台色（2枚目の例の青）を親で敷いておく */
  .circle-cta.cutout { background: transparent; } /* 背景は親ブロック側で青 */
  
  .circle-cta.cutout .label{
	position: absolute;
    inset: 0;
    display: flex
;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	z-index: 2;
	text-align: center;
	font-weight: 700;
  }
  .circle-cta.cutout .label .en{ font-size: clamp(18px, 2.2vw, 28px); }
  .circle-cta.cutout .label .ico{ font-size: 24px; line-height: 1; }
  
  /* くり抜きSVG（グラデは固定、テキストだけ回転） */
  .circle-cta.cutout .ring-cut{
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	opacity: 0.6;
    letter-spacing: 0.1em;
  }
  .circle-cta img{      /* viewBox中心 */
	animation: ring-spin 15s linear infinite;
  }
  
  textPath{
	font-family: "Outfit", sans-serif;
  }
  
  @keyframes ring-spin { to { transform: rotate(360deg); } }


  .circle-cta.cutout .ring-cut{ overflow: visible; }

.circle-cta.cutout .ring-cut .spin{
  transform-origin: 100px 100px;
  animation: ring-spin 15s linear infinite;
}

/* 欠け防止：はみ出し描画を許可 */
.circle-cta.cutout,
.circle-cta.cutout .ring-cut { overflow: visible; }

/* 回転基準はviewBox中心(100,100) */
.circle-cta.cutout .ring-cut .spin{
  transform-origin: 100px 100px;
  animation: ring-spin 15s linear infinite;
}

.circle-cta.cutout .ring-cut .ring-text{
  font-family: "Outfit","Inter","Noto Sans JP",sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 4px; /* ←文字間を少し広めに */
}
  

#main .company .imgBox .textBox .link a:hover {
	opacity: 0.7;
}
#main .company .imgBox .textBox .link .en {
	margin-bottom: 0.9rem;
	display: block;
	font-size: 2.4rem;
	font-weight: 500;
	letter-spacing: 0.2rem;
	font-family: "Outfit", sans-serif;
}
#main .company .imgBox .textBox .link .ico {
	display: block;
	text-align: center;
}
#main .company .imgBox .textBox .link .ico .material-symbols-outlined {
	font-size: 3rem;
}
#main .company .imgBox.reverse .textBox {
	order: 2;
}
#main .company .imgBox.style01 .textBox {
	padding-top: 3.9rem;
	background-color: #D8FF7E;
}
#main .company .imgBox.style01 .textBox .headLine03 {
	margin-bottom: 4.6rem;
	color: #272830;
}
#main .company .imgBox.style01 .textBox .headLine03 .en {
	margin-bottom: 1.6rem;
}

#main .numbers {
	margin-bottom: 37.6rem;
}
#main .numbers .comLink01 {
	margin: -14.6rem 0 8.3rem 43rem;
	max-width: 26.1rem;
}
#main .numbers .comLink01 a .sub {
	padding: 0.2rem 2.5rem 0;
	justify-content: space-between;
	min-height: 5rem;
	text-align: left;
	font-size: 2rem;
}
#main .numbers .img01 {
	margin: 0 0 5.1rem -18.7rem;
}
#main .numbers .img01 .sub {
	display: block;
	width: 208rem;
}
#main .numbers .img02 {
	margin-left: -54.8rem;
}
#main .numbers .img02 .sub {
	display: block;
	width: 232.5rem;
}
#main .numbers .img01 .sub img,
#main .numbers .img02 .sub img {
	margin-right: 5rem;
}
#main .bgBox {
	padding-bottom: 17.7vw;
	background: url(../img/index/people_bg07.png) no-repeat left bottom / 100%;
}
#main .people {
	padding: 0.5rem 0 16.1rem;
	position: relative;
	background-color: #B6C5F7;
	z-index: 1;
	
}
#main .people::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	content: '';
	z-index: -1;

	
}
#main .people::before {
	position: absolute;
	top: -28rem;
	left: 0;
	width: 100%;
	height: 30rem;
	background: url(../img/index/people_bg01.png) no-repeat center top / 100% 100%;
	content: '';
	z-index: -1;
}

#main .people .bg_img01{
	overflow: hidden;
	top: -70px;
    width: 310px;
    height: 310px;
    right: 4rem;
    z-index: -1;
	animation: ring-spin 15s linear infinite;
}

#main .people .bg_img02{
	overflow: hidden;
    bottom: 15px;
    width: 290px;
    height: 290px;
    left: 2rem;
    z-index: -1;
	
}

#main .people .bg_img02 img{
	animation: ring-spin 15s linear infinite;
}

#main .people .subContent {
	margin: -15.5rem auto 0;
	padding: 0 2rem;
	max-width: 134.4rem;
}
#main .people .headLine02 {
	margin-bottom: 6.5rem;
	padding: 0 1rem;
}
#main .people .headLine02 .en {
	color: #FFF;
}
#main .people .headLine02 .jp {
	margin-top: -0.7rem;
	padding-left: 4.5rem;
	background-position: left 0.2rem top 1.5rem;
}
#main .people .headLine02 .txt {
	margin: 0 0 0 8.3rem;
	display: inline-block;
	color: #000;
	font-size: 2rem;
	font-weight: 500;
	letter-spacing: 0.2rem;
}
#main .people .inner .subInner {
	padding: 1.6rem 1.9rem 3.5rem 1.5rem;
	width: calc((100% - 3.6rem) / 2);
	border-radius: 2rem;
	background-color: #FFF;
	box-sizing: border-box;
}
#main .people .inner .subInner .photoBox {
	margin-bottom: 3.5rem;
	aspect-ratio: 12 / 10;
	background: url(../img/index/people_bg02.jpg) no-repeat center center / cover;
	overflow: hidden;
}
#main .people .inner .subInner.style01 .photoBox {
	background-image: url(../img/index/people_bg03.jpg);
}

#main .people .inner .subInner .photoBox .photo img{

	position: relative;
	top: 10px;

}

#main .people .inner .subInner .photoBox .subBox {
	margin-bottom: -3rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
#main .people .inner .subInner .photoBox .subBox .numBox {
	padding: 1.5rem 0 0;
	width: 20rem;
	min-height: 15rem;
	background: url(../img/index/people_bg04.png) no-repeat left top / 100%;
	box-sizing: border-box;
	overflow: hidden;
}
#main .people .inner .subInner .photoBox .subBox .numBox .en {
	padding-right: 3.3rem;
	color: #6D8AEF;
	font-size: 2rem;
	font-weight: 500;
	letter-spacing: 0.2rem;
	font-family: "Outfit", sans-serif;
	text-align: center;
}
#main .people .inner .subInner .photoBox .subBox .numBox .num {
	margin-top: -2.5rem;
	padding-right: 3.8rem;
	color: #6D8AEF;
	font-size: 10rem;
	font-weight: 100;
	font-family: "Outfit", sans-serif;
	letter-spacing: 0.2rem;
	text-align: center;
	line-height: 1.2;
}
#main .people .inner .subInner.style01 .photoBox .subBox .numBox {
	background-image: url(../img/index/people_bg05.png);
}
#main .people .inner .subInner.style01 .photoBox .subBox .numBox .en,
#main .people .inner .subInner.style01 .photoBox .subBox .numBox .num {
	color: #FFF;
}
#main .people .inner .subInner .photoBox .subBox .title {
	margin-bottom: 1.2rem;
	padding: 1.1rem 1rem 1.2rem;
	width: calc(100% - 25.9rem);
	background-color: #FFF;
	font-size: 2.4rem;
	font-weight: 700;
	letter-spacing: 0.3rem;
	text-align: center;
	box-sizing: border-box;
}
#main .people .inner .subInner .comLink01 {
	margin: 0 auto;
	max-width: 41.3rem;
}
#main .people .inner .subInner .comLink01 a .sub {
	padding: 0 5.6rem 0.1rem;
	min-height: 5.6rem;
	font-size: 2rem;
	font-weight: 500;
	justify-content: space-between;
}
#main .linkArea {
	margin: -21.6rem auto 15.7rem;
	padding: 0 2rem;
	max-width: 138rem;
	align-items: flex-start;
}
#main .linkArea .subArea {
	margin-top: 10.5rem;
	width: calc((100% - 6.7rem) / 2);
	background-color: #E1FF7E;
	border-radius: 2rem;
	overflow: hidden;
}
#main .linkArea .subArea.style01 {
	margin-top: 0;
	background-color: #6D8AEF;
}
#main .linkArea .subArea .topBox {
	padding: 2.8rem 3.4rem 2.6rem;
}
#main .linkArea .subArea .topBox .title {
	margin-bottom: 2.7rem;
	padding-left: 4.3rem;
	font-size: 2.8rem;
	font-weight: 700;
	letter-spacing: 0.3rem;
	background: url(../img/common/icon03.png) no-repeat left top 1.3rem / 3rem;
}
#main .linkArea .subArea.style01 .topBox .title {
	color: #FFF;
}
#main .linkArea .subArea .topBox .comLink01 {
	margin: 0 0.5rem 0 auto;
	max-width: 41.3rem;
}
#main .linkArea .subArea .topBox .comLink01 a .sub {
	padding: 0.1rem 2.5rem 0;
	min-height: 5.5rem;
	font-size: 2rem;
	justify-content: space-between;
}
#main .linkArea .subArea .photo {
	position: relative;
}
#main .linkArea .subArea .photo .en {
	position: absolute;
	bottom: -2.2rem;
	left: 0.5rem;
	color: #D8FF7E;
	font-size: 9.6rem;
	font-weight: 600;
	font-family: "Outfit", sans-serif;
	letter-spacing: 0.2rem;
	line-height: 1.2;
}
#main .linkArea .subArea.style01 .photo .en {
	color: #6D8AEF;
}
#main .guidelines {
	padding: 2.8rem 0 11.6rem;
	position: relative;
	background: linear-gradient(180deg, #DBFFE5 0%, #77A4FF 100%);
}
#main .guidelines .enText {
	position: absolute;
	top: -4.7rem;
	left: 0;
	width: 100%;
	text-align: center;
	overflow: hidden;
}
#main .guidelines .enText .infiniteslide {
	margin-left: -14.1rem;
}

.img-rot{
	transition: opacity .45s ease; /* 好みで調整 */
  }
  .img-rot.is-fade{
	opacity: 0;
  }
#main .guidelines .enText .sub {
	margin-right: 5rem;
	padding-bottom: 2rem;
	display: inline-block;
	color: rgba(255, 255, 255, 0.2);
	font-size: 20rem;
	font-family: "Outfit", sans-serif;
	line-height: 1.1;
	white-space: nowrap;
	letter-spacing: 0.3rem;
}
#main .guidelines .headLine02 .en,
#main .guidelines .headLine02 .jp {
	color: #FFF;
}
#main .guidelines .headLine02 .jp {
	margin-top: -1rem;
	padding-left: 4.3rem;
	font-weight: 500;
}
#main .guidelines .linkList {
	margin: -13.7rem 16rem 0 0;
	justify-content: flex-end;
}
#main .guidelines .linkList li {
	margin-left: 5.7rem;
	width: 100%;
	max-width: 47.5rem;
}
#main .guidelines .linkList li:first-child {
	margin-left: 0;
}
#main .guidelines .linkList li .sub {
	padding: 0 10rem 0.1rem;
	min-height: 6.3rem;
	font-size: 2rem;
	letter-spacing: 0.2rem;
	justify-content: space-between;
}
#main .guidelines .linkList li:first-child .sub {
	padding: 0 12rem 0.1rem;
	color: #272830;
	border: 1px solid #272830;
	background-color: #FFF;
}
#main .guidelines .linkList li:first-child .sub::after {
	display: none;
}

#main .banner_wap{
	width: fit-content;
	margin: 120px auto;
	max-width: 90%;
}

#main .banner_wap a:hover{

	opacity: 0.8;
}
@media all and (max-width: 896px) {

	#main .banner_wap{
		margin: 60px auto;
	}

	#gFooter {
		padding-bottom: 5rem;
	}
	#gFooter .pageTop {
		bottom: 29rem;
	}
	#main .mainVisual {
		padding: 7.9rem 0 0;
		background: url(../img/index/main_bg01_sp.png) no-repeat right bottom 13.2rem / 10.5rem,url(../img/index/main_bg02_sp.png) no-repeat left top 7.5rem / 11.9rem;
	}
	#main .mainVisual .mainTitle {
		margin-bottom: -6.2rem;
		font-size: 2.4rem;
		letter-spacing: 0.3rem;
	}
	#main .mainVisual .mainImg {
		margin: 0;
		max-width: inherit;
	}
	#main .mainVisual .mainImg img {
		width: 100%;
	}
	#main .mainVisual .link {
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		z-index: 100;
	}
	#main .mainVisual .link a {
		padding: 0.5rem 1rem;
		position: relative;
		min-height: 5rem;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		background: #D8FF7E;
		border-radius: 5rem;
	}
	#main .mainVisual .link a .en {
		font-size: 2.5rem;
		font-weight: 700;
		font-family: "Outfit", sans-serif;
		text-align: center;
	}
	#main .mainVisual .link a .ico {
		position: absolute;
		top: 50%;
		right: 2rem;
		transform: translateY(-50%);
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		width: 3.2rem;
		height: 3.2rem;
		background-color: #6D8AEF;
		border-radius: 3.5rem;
	}
	#main .mainVisual .link a .ico .material-symbols-outlined {
		color: #FFF;
		font-size: 2.8rem;
	}

	#main .mainVisual .enText span{
		font-size:10rem;
	}
	
	#main .message {
		margin-bottom: 7.8rem;
		padding: 4rem 0 0.5rem;
	}
	#main .message .enText {
		top: 17rem;
	}
	#main .message .enText .infiniteslide {
		margin-left: -17rem;
	}
	#main .message .enText .sub {
		margin-right: 4rem;
		font-size: 10rem;
	}
	#main .message .textBox {
		max-width: inherit;
	}
	#main .message .headLine02 {
		margin-bottom: 4rem;
	}
	#main .message .headLine02 .en {
		font-size: 2.6rem;
	}
	#main .message .headLine02 .jp {
		margin-top: 0;
		padding-left: 2rem;
		font-size: 1.4rem;
		background-size: 1.4rem;
	}
	#main .message .title {
		margin-bottom: 3rem;
		font-size: 2.2rem;
		letter-spacing: 0.2rem;
	}
	#main .message .text {
		margin-bottom: 4.9rem;
		padding: 0 1rem;
		font-size: 1.4rem;
	}
	#main .message .photoBox {
		margin: 4rem 0 -16vw auto;
		width: auto;
	}
	#main .company {
		margin-bottom: 4.4rem;
		padding: 19.5vw 0 15.9vw;
		background: url(../img/index/company_bg01_sp.png) no-repeat left top / 100%,url(../img/index/company_bg02_sp.png) no-repeat left bottom / 100%;
	}
	#main .company .imgBox {
		margin-bottom: 1.5rem;
		display: block;
	}
	#main .company .imgBox .photoBox {
		width: auto;
		min-height: inherit;
	}
	#main .company .imgBox .textBox {
		padding: 2.4rem 0 1.7rem;
		width: auto;
		background: #6D8AEF url(../img/index/company_bg05_sp.png) no-repeat left top / 22.7rem;
	}
	#main .company .imgBox .textBox .link {
		margin: 0 auto;
		width: fit-content;
	}
	#main .company .imgBox .textBox .link a {
		padding: 3rem 2rem 2rem;
		min-height: 13.2rem;
	}
	#main .company .imgBox .textBox .link .en {
		margin-bottom: 0.3rem;
		font-size: 1.4rem;
	}
	#main .company .imgBox .textBox .link .ico .material-symbols-outlined {
		font-size: 2.1rem;
	}
	#main .numbers {
		margin-bottom: 14rem;
	}
	#main .numbers .comLink01 {
		margin-bottom: 4rem !important;
	}
	#main .numbers .img01 {
		margin: 0 0 5.1rem -9rem;
	}
	#main .numbers .img01 .sub {
		display: block;
		width: 104rem;
	}
	#main .numbers .img02 {
		margin-left: -22rem;
	}
	#main .numbers .img02 .sub {
		width: 116rem;
	}
	#main .bgBox {
		padding-bottom: 21.8rem;
		background-image: url(../img/index/people_bg07_sp.png);
	}
	#main .people {
		margin: 0 1.2rem;
		padding: 0.5rem 0 6rem;
	}
	
	#main .people::before {
		top: -8rem;
		height: 10rem;
		background-image: url(../img/index/people_bg01_sp.png);
	}
	#main .people .subContent {
		margin: -3rem 0 0;
		padding: 0 2rem;
		max-width: inherit;
	}

	#main .people .bg_img01{
		width: 60%;
		height: auto;
		top: 35px;
		right: -6rem;
	}

	#main .people .bg_img02{
		width: 56%;
        height: auto;
		left: -4rem;
	}

	#main .people .headLine02 {
		padding: 0;
	}
	#main .people .headLine02 .txt {
		margin: 1.5rem 0 0 -2.5rem;
		display: block;
		font-size: 1.4rem;
		letter-spacing: 0;
	}
	#main .people .inner {
		display: block;
	}
	#main .people .inner .subInner {
		margin-bottom: 2rem;
		padding: 1.5rem;
		width: auto;
		border-radius: 1rem;
	}
	#main .people .inner .subInner:last-child {
		margin-bottom: 0;
	}
	#main .people .inner .subInner .photoBox {
		margin-bottom: 2rem;
		aspect-ratio: inherit;
	}
	#main .people .inner .subInner .photoBox .subBox {
		margin-bottom: 0;
	}
	#main .people .inner .subInner .photoBox .subBox .numBox {
		padding: 0.5rem 0 0;
		width: 10rem;
		min-height: 7.5rem;
	}
	#main .people .inner .subInner .photoBox .subBox .numBox .en {
		padding-right: 0.5rem;
		font-size: 1rem;
	}
	#main .people .inner .subInner .photoBox .subBox .numBox .num {
		margin-top: -1rem;
		padding-right: 1.2rem;
		font-size: 5rem;
	}
	#main .people .inner .subInner .photoBox .subBox .title {
		margin-bottom: 1.2rem;
		padding: 0.8rem;
		width: calc(100% - 11rem);
		font-size: 1.2rem;
		letter-spacing: 0.1rem;
	}
	#main .people .inner .subInner .photoBox .photo img {
		width: 100%;
	}
	#main .linkArea {
		margin: -15rem auto 6rem;
	}
	#main .linkArea .subArea {
		margin: 0 0 2rem;
		width: auto;
		border-radius: 1rem;
	}
	#main .linkArea .subArea .topBox {
		padding: 2rem;
	}
	#main .linkArea .subArea .topBox .title {
		margin-bottom: 2rem;
		padding-left: 3rem;
		font-size: 2rem;
		letter-spacing: 0.2rem;
		background: url(../img/common/icon03.png) no-repeat left top 0.7rem / 2rem;
	}
	#main .linkArea .subArea .photo .en {
		bottom: -1.2rem;
		left: 0.5rem;
		font-size: 4.8rem;
		letter-spacing: 0.2rem;
	}
	#main .linkArea .subArea .photo img {
		width: 100%;
	}
	#main .guidelines {
		padding: 2.8rem 0 6rem;
	}
	#main .guidelines .enText {
		top: 2rem;
	}
	#main .guidelines .enText .infiniteslide {
		margin-left: -7rem;
	}
	#main .guidelines .enText .sub {
		margin-right: 4rem;
		padding-bottom: 2rem;
		font-size: 10rem;
		letter-spacing: 0.2rem;
	}
	#main .guidelines .headLine02 .jp {
		margin-top: 0 !important;
	}
	#main .guidelines .linkList {
		margin: 0;
		display: block;
	}
	#main .guidelines .linkList li {
		margin: 0 auto 2rem !important;
	}
	#main .guidelines .linkList li:last-child {
		margin-bottom: 0;
	}

	#loading .f_120{
		font-size:10vw !important;
	  }

	  .circle-cta.cutout{
		display: block;
		width: 40%;                 /* サイズ調整 */
		margin: auto;
		padding: 0;
	  }
	  
	  #main .company .imgBox .textBox .link a{
		padding: 0;
	  }

	  #main .company .imgBox.style01 .textBox .headLine03{
		margin-bottom: 1.8rem;
	  }

	  #main .numbers .img01 .sub .img-rot,
	  #main .numbers .img02 .sub .img-rot {
		  max-height: 70px;
		  margin-right: 2rem;
	  }

	  #main .numbers .img01 .sub .img-rot.txt,
	  #main .numbers .img02 .sub .img-rot.txt {

		max-height: 40px;

	  }



}