@charset "UTF-8";
/* **************************************************
Name: cypremos.css
Description: Astemo Cypremos Common CSS changes
Create: 2024.12
Update: 2024.12.02
***************************************************** */
@font-face {
	font-family: 'Noto Sans JP';
	src: url('./fonts/NotoSansJP-VariableFont_wght.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'roboto-thin';
	src: url('./fonts/Roboto-VariableFont_wdth,wght.ttf') format('truetype');
	font-weight: 100;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'roboto-normal';
	src: url('./fonts/Roboto-VariableFont_wdth,wght.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'roboto-bold';
	src: url('./fonts/Roboto-VariableFont_wdth,wght.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
.video-container {
	height: calc(100vh - 105px);
}
.background-video {
	position: relative;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}
.wrapper {
	max-width: 1275px;
	margin: 0 auto;
	padding: 0px 4%;
	box-sizing: border-box;
}
.content01 {
	position: absolute;
	top: 0;
	left: 0;
	text-align: center;
	height: calc(100vh - 105px);
	width: 100%;
	padding-top: 105px;
}
h1 {
	font-family: Helvetica;
	font-size: 106px;
	font-weight: bold;
}
.fadeIn {
	opacity: 0;
	transform: translateY(40px); /* 下からふわっと表示 */
	transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}
.fadeIn.is-show {
	opacity: 1;
	transform: translateY(0);
}
.fade-target {
	transform: translateY(40px);
	transition: opacity 0.7s ease, transform 1s ease;
}
.is-show {
	opacity: 1;
	transform: translateY(0);
}

/* index */
.content01 .text {
	font-family: "Helvetica LT Std" ,sans-serif;
	font-size: 69px;
	opacity: 0;
}
.content01 .text span {
	display: inline-block;
	animation: scaleOut 0.7s ease-out 1.5s forwards;
	transform-origin: bottom left;
	margin-right: 30px;
}
.content01 .text strong {
	color: #333;
}
@keyframes scaleOut {
	0% {
		scale: 1.5;
	}
	100% {
		scale: 1;
	}
}
.content01 h1 .fade-part1,
.content01 h1 .fade-part2 {
	opacity: 0;
	transition: opacity 0.7s ease, transform 1s ease;
}
.content01 h1 .fade-part1.is-show,
.content01 h1 .fade-part2.is-show {
	opacity: 1;
}
.content01 h1,
.content01 .text {
	position: absolute;
	width: 100%;
	padding: 20px;
	top: 50%;
	transform: translateY(-50%);
	transition: opacity 2.0s ease-in-out;
	box-sizing: border-box;
}
.content01 h1.is-show,
.content01 .text.is-show {
	opacity: 1;
}
.content02 h2,
.content03 h2,
.content04 h2 {
	font-family: "roboto-thin";
	font-size: 116px;
	color: #b3000d;
	background: none;
}
.content02 h2 {
	color: #fff;
}
.content02 {
	text-align: left;
	position: relative;
	background: rgb(37,64,28);
	background: linear-gradient(180deg, rgba(37,64,28,1) 0%, rgba(64,112,48,1) 100%);
	padding: 100px 2%;
}
.inner {
	max-width: 1275px;
	margin: 0 auto;
	padding: 0 50px;
	box-sizing: border-box;
	position: relative;
}
.aboutUsArea p {
	color: #fff;
	font-size: 38px;
	font-weight: bold;
	font-family: "Noto Sans JP";
	margin-bottom: 50px;
}
.aboutUsArea p a {
	color: #fff;
	text-decoration: none;
}
.arrowButton {
	display: inline-block;
	left: 90%;
	width: 150px;
	height: 9px;
	border: none;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	transform: skew(45deg);
	transition: .3s;
}
a:hover .arrowButton {
	width: 165px;
}
.content03 {
	position: relative;
	background: #dcdedc;
	padding: 100px 2%;
}
.technologyList {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 50px 0;
}
.technologyList li {
	width: 275px;
}
.technologyList li a {
	text-decoration: none;
}
.technologyList li a .img {
	overflow: hidden;
	margin-bottom: 8px;
}
.technologyList li a .img img {
	transition: transform .6s ease;
}
.technologyList li a:hover .img img {
	transform: scale(1.1);
}
.technologyList li a:hover .arrowButton {
	width: 115px;
}
.technologyList li a .arrowButton {
	border-right: 1px solid #465046;
	border-bottom: 1px solid #465046;
	width: 100px;
	margin-left: 50%;
}
.listTitle {
	font-family: "Noto Sans JP";
	font-size: 18px;
	color: #465046;
}
.content04 {
	height: 100vh;
	background-image: url(../../img/index_sec04_bg.png);
	background-size: cover;
	background-position: center;
}
.grassHeadArea {
	background: rgba(255, 255, 255, 0.6);
	height: 390px;
}
.grassHeadArea .inner {
	display: flex;
	justify-content: start;
	gap: 100px;
	flex-wrap: wrap;
}
.grassHeadArea h2 {
	font-family: "roboto-thin";
	font-size: 116px;
	color: #b3000d;
	background: none;
	margin-top: 60px;
}
ul.companyMenuList {
	margin-top: 107px;
	display: flex;
	flex-direction: column;
	gap: 60px;
}
.companyMenuList li a {
	font-family: "roboto-normal";
	font-size: 48px;
	color: #33281e;
	text-decoration: none;
	display: flex;
	width: 100%;
	gap: 40px;
	align-items: end;
}
.companyMenuList li a span:first-child {
	width: 300px;
	line-height: 1.0;
}
.companyMenuList li a span.arrowButton {
	border-right: 1px solid #33281e;
	border-bottom: 1px solid #33281e;
}
.content02 a:hover,.content03 a:hover,.content04 a:hover {
	opacity: 0.7;
}

/*  */
.mw900 {
	max-width: 900px;
	margin: 0 auto 80px;
}
.kvImg {
	max-width: 1275px;
	margin-bottom: 80px;
}
.kvImg img {
	width: 100%;
}
.profileBox {
	max-width: 1160px;
	padding: 30px 15px;
	margin: 0 auto 100px;
	background: #DCDEDB;
	box-sizing: border-box;
}
.profileBox .mw900 {
	margin: 0 auto;
}
.nameText {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 0.25em;
}
.jobTitle {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 0.5em;
}
.secTitle {
	font-size: 24px;
	font-weight: bold;
	line-height: 1.0;
	margin: 0 !important;
	background: none;
}
.mw900 + .ImgOnlyStyle {
	max-width: 1275px;
	margin-bottom: 80px;
}
.mw900 + .ImgOnlyStyle img {
	width: 100%;
}
/* company_info */
#companyInfo .video-container {
	margin-top: initial;
	height: initial;
	overflow: hidden;
}
#companyInfo .background-video {
	position: absolute;
	top: initial;
	left: 50%;
	object-fit: initial;
	z-index: -1;
	transform: translateX(-50%);
}
#companyInfo .wrapper {
	margin: 0 auto 0px;
	padding-bottom: 20px;
}
#companyInfo .wrapper + .bgWhite {
	padding-top: 80px;
	padding-bottom: 100px;
	background-color: #fff;
}
.pageTitleArea {
	padding-top: 60px;
}
.pageTitleArea h1 {
	font-size: 50px;
}
.outlineContent {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding-top: 50px;
}
.outlineContent .tableColumn table {
	font-size: 20px;
	background: #fff;
	padding: 26px;
	border-radius: 12px;
	display: block;
}
.outlineContent .tableColumn table th {
	font-weight: bold;
	background: none;
	border: none;
	border-right: solid 1px #ECECEC;
	padding: 0 20px 20px 0;
	vertical-align: top;
	width: 16%;
}
.outlineContent .tableColumn table td {
	background: none;
	border: none;
	padding: 0 0 20px 20px;
	vertical-align: top;
}
.outlineContent .tableColumn table td dl {
	display: flex;
	flex-wrap: wrap;
	justify-content: end;
}
.outlineContent .tableColumn table td dl dt {
	width: 40%;
	margin-bottom: 1em;
}
.outlineContent .tableColumn table td dl dd {
	width: 60%;
}
.outlineContent .image {
	margin-top: 100px;
	position: relative;
	z-index: 1;
}
.outlineContent .image img {
	width: 100%;
}
.outlineContent .image .bg {
	position: absolute;
	right: -80%;
	top: 100px;
	z-index: -1;
}

/* aboutus */
#aboutus {
	overflow: hidden;
}
.aboutusMainVisualArea {
	width: 100%;
	margin-bottom: 150px;
	position: relative;
}
.aboutus_video {
	width: 100%;
}
.aboutusMainVisualArea .mw1275 {
	width: 100%;
	max-width: 1275px;
	margin: 0 auto;
	text-align: right;
	position: relative;
}
.videoBtnSet {
	position: absolute;
	bottom: 20px;
	right: 6%;
}
.videoBtnSet .btn {
	position: absolute;
	display: flex;
	justify-content: center;
	gap: 16px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.aboutusBgImg {
	background-image: url(../../aboutus/img/bg_img.png);
	position: relative;
	padding-bottom: 150px;
}
.aboutusBgImg img {
	max-width: max-content;
	width: 100%;
}
.aboutusBgImg .bg {
	position: absolute;
	right: 2%;
	top: -10%;
	z-index: -1;
}
.pause_btn:hover,
.play_btn:hover {
	opacity: 0.4;
	cursor: pointer;
}
.btn_active {
	opacity: 0.4;
}

/* message */
.mvSec {
	position: relative;
	margin-bottom: 80px;
}
.mvSec .kvImg {
	margin-bottom: 0;
}
.mvTextSet {
	position: absolute;
	top: 50%;
	left: 5%;
	transform: translateY(-50%);
}
.mvTextSet {
	font-size: 24px;
}
.mvTextSet strong {
	font-size: 32px;
	line-height: 1.5;
}
@media screen and (max-width: 1240px) {
.grassHeadArea {
	height: auto;
}
.grassHeadArea .inner { 
	flex-direction: column;
	gap: 0;
}
.content02 ,
.content03 {
	padding: 60px 2%;
}
.content02 h2,
.content03 h2,
.content04 h2 {
	font-size: 64px;
}
ul.companyMenuList {
	margin-top: 0;
	margin-bottom: 50px;
	flex-direction: column;
	gap: 30px;
}
.companyMenuList li a {
	font-size: 24px;
	gap: 40px;
	align-items: end;
}
.companyMenuList li a span:first-child {
	width: 150px;
}
.companyMenuList li a span.arrowButton {
	width: 95px;
}
.companyMenuList li a:hover span.arrowButton {
	width: 105px;
}
}
@media screen and (max-width: 960px) {
.mvTextSet {
	font-size: 16px;
}
.mvTextSet strong {
	font-size: 28px;
}
}
@media screen and (max-width: 767px) {
.content01 h1 {
	font-size: 34px;
	font-weight: bold;
}
.content01 .text {
	font-size: 28px;
}
.content01 .text span:nth-child(even) {
	margin-right: 0;
}
.inner {
	padding: 0 30px;
}
.listTitle {
	font-size: 16px;
}
.videoBtnSet {
	bottom: 0;
	right: 40px;
}
.videoBtnSet > svg {
	width: 60px;
}
.pause_btn > svg {
	width: 7px;
}
.play_btn > svg {
	width: 7px;
}
.aboutUsArea p {
	font-size: 16px;
}
.technologyList {
	flex-direction: column;
	align-items: center;
	gap: 50px;
}
.outlineContent {
	display: block;
	padding-top: 60px;
}
.outlineContent .tableColumn table th {
	width: 28%;
}
.outlineContent .tableColumn table td dl dt {
	width: 55%;
}
.outlineContent .tableColumn table td dl dd {
	width: 45%;
}
.outlineContent .image .bg {
	right: -70%;
	top: 0px;
}
.mw900 {
	margin: 0 auto 40px;
}
.mvSec {
	margin-bottom: 40px;
}
.kvImg {
	margin-bottom: 20px;
}
.mvTextSet {
	position: relative;
	left: 0;
	transform: none;
	font-size: 16px;
}
.mvTextSet strong {
	font-size: 18px;
}
.mw900 + .ImgOnlyStyle {
	margin-bottom: 40px;
}
.profileBox {
	padding: 15px 15px;
	margin: 0 auto 40px;
}
.nameText {
	font-size: 20px;
}
.jobTitle {
	font-size: 16px;
}
.secTitle {
	font-size: 20px;
}
}
