@charset "utf-8";
/* PCファースト PCはフィックスデザイン（デザインと時間の都合で） */
/* ヘッダーフッターは従来のもの、そのためのCSSも流用 */
/* 従来はフルードなヘッダーフッターを今回のPC幅に合わせてCSSで設定変更 */
/* SPブレイクポイント750px（ハンバーガーメニューの出現ポイントに合わせて設定するしかないと判断） */

/* 「/aimsbridge/contact.html」を急遽移植。そのため変な点もあるが、ご容赦を */

/* ==================== */
/* 全体の設定 */
/* ==================== */
:root {
	--ai-gold: #DCA839;
}
*,
*:before,
*:after {
	box-sizing: inherit;
}
body {
	font-family: "Noto Sans JP", sans-serif;
	font-feature-settings: "palt" 1;
}
video {
	width: 100%;
	height: auto;
}
/* PC/SPのみ表示 */
.ai-sp-display {
	display: none;		
}
@media (max-width: 750px) {
	.ai-sp-display {
		display: block;
	}
}
/* PCフィックスデザインのための幅設定 */
.ai-sec, #headerContainer, header, footer {
	min-width: 1280px;
}
header.fixed {
	min-width: auto;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: auto;
}
@media (max-width: 750px) {
	.ai-sec, header, footer {
		min-width: 100%;
	}
}
/* メニュー　現在のページの「a」のクラスに追加 */
.ai-nav-current {
	padding-bottom: 8px;
	border-bottom: 1px solid #00489B;
}
@media (max-width: 750px) {
	.ai-nav-current {
		border-bottom: none;
	}	
}
/* このページ内のsectionの基本設定 */
.ai-sec {
	font-size: 18px;
	line-height: 1.6875;
	letter-spacing: normal;
	color: #000000;
	box-sizing: border-box;
	padding: 20px 0 50px;
}
.ai-sec-container {
	width: 1180px;
	margin: 0 auto;
	padding: 0 40px;
}
@media (max-width: 750px) {
	.ai-sec {
		font-size: 16px;
	}
	.ai-sec-container {
		width: 100%;
		padding: 0 15px;
	}
}
.ai-sec-container p, .ai-sec-container li {
	text-align: justify;
}
.ai-sec-container .ai-p-center {
	text-align: center;
}
.ai-sec-container img {
	vertical-align: top;
}
.ai-sec-container a {
	transition: all 0.3s;
}
.ai-sec-container a:hover {
	opacity: 0.7;
}
/* ボタン */
.ai-btn-normal {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 22px;
	font-weight: bold;
	color: var(--ai-gold);
	max-width: 280px;
	height: 60px;
	margin: 1.5em auto;
	border: 2px solid var(--ai-gold);
	border-radius: 1.7em;
	transition: all 0.5s;
}
.ai-btn-normal div {
	line-height: 1.0;
	padding-bottom: 2px;
}
.ai-btn-normal::before, .ai-btn-normal::after {
	content: "";
	position: absolute;
	right: 30px;
	width: 13px;
	height: 3px;
	background: #DCA839;
	border-radius: 1px;
	opacity: 0.5;
}
.ai-btn-normal::after {
	top: 50%;
	transform-origin: right top;
	transform: translateY(-50%) rotate(-50deg);
}
.ai-btn-normal::before {
	bottom: 50%;
	transform-origin: right bottom;
	transform: translateY(50%) rotate(50deg);
}
.ai-btn-normal:hover {
	background: #F6E9CD;
}
.ai-btn-normal--align-left {
	margin-left: 0;
	margin-right: 0;
}
/* 固定：トップボタン */
.fix-top-btn {
	position: fixed;
	display: block;
	right: 20px;
	bottom: 20px;
	width: 60px;
	height: 60px;
	background: #ec1e79;
	border-radius: 50%;
	margin-left: auto;
	cursor: pointer;
	z-index: 9;
}
.fix-top-btn__arrow {
	position: relative;
	width: 100%;
	height: 100%;
}
.fix-top-btn__arrow::after, .fix-top-btn__arrow::before {
	content: "";
	position: absolute;
	top: 35%;
	width: calc(22/60*100%);
	height: calc(4/60*100%);
	background: #FFFFFF;
}
.fix-top-btn__arrow::after {
	right: 50%;
	transform-origin: right top;
	transform: rotate(-45deg);
}
.fix-top-btn__arrow::before {
	left: 50%;
	transform-origin: left top;
	transform: rotate(45deg);
}
@media (max-width: 750px) {
	.fix-top-btn {
		bottom: 10px;
		right: 10px;
		width: 40px;
		height: 40px;
	}
}

/* ==================== */
/* ヒーロー */
/* ==================== */
.ai-hero {
	position: relative;
	width: 100vw;
	min-width: 1280px;
	height: max(calc(100vw*600/1280),600px);
	background: top left / cover no-repeat url("../images/ai-hero-img.jpg");
}
.ai-hero-text {
	position: absolute;
	left: max(calc(100vw*90/1280),90px);
	top: max(calc(100vw*234/1280),234px);
}
.ai-hero-text__h1 {
	font-size: max(calc(100vw*48/1280),48px);
	font-weight: bold;
	text-align: center;
	text-shadow: 0px 5px 10px rgba(0,0,0,0.25); /* 乗算が不可なので似るように設定 */
	line-height: 1.4583;
	color: #FFFFFF;
	margin-bottom: 0.5em;
}
@media (max-width: 750px) {
	.ai-hero {
		min-width: auto;
		height: min(calc(100vw*1080/750),1080px);
		background: top left / cover no-repeat url("../images/ai-hero-img_sp.jpg");
	}
	.ai-hero-text {
		position: absolute;
		left: 0;
		top: min(calc(100vw*175/750),175px);
		width: 100%;
	}
	.ai-hero-text__h1 {
		font-size: min(calc(100vw*68/750),68px);
	}
}
.ai-hero-text--subpage {
	position: absolute;
	left: max(calc(100vw*90/1280),90px);
	top: max(calc(100vw*105/1280),105px);
}
.ai-hero-text__h1--subpage {
	text-align: left;
}
@media (max-width: 750px) {
	.ai-hero-text--subpage {
		left: min(calc(100vw*63/750),63px);
		top: min(calc(100vw*112/750),112px);
	}
	.ai-hero-text__h1--subpage {
		font-size: min(calc(100vw*72/750),72px);
	}
}
.ai-hero--subpage-02 {
	height: max(calc(100vw*350/1280),350px);
	background: top left / cover no-repeat url("../images/info-hero-img.jpg");
}
.ai-hero--info {
	background: top right / cover no-repeat url("../images/info-hero-img.jpg");
}
@media (max-width: 750px) {
	.ai-hero--subpage-02 {
		min-width: auto;
		height: min(calc(100vw*400/750),400px);
	}
}
/* contact.html */
.info-hero-text {
	position: absolute;
	left: max(calc(100vw*90/1280),90px);
	top: max(calc(100vw*110/1280),110px);
}
.info-hero-text__h1 {
	font-size: max(calc(100vw*46/1280),46px);
	font-weight: bold;
	line-height: 1.4347;
}
.info-hero-text__h2 {
	font-size: max(calc(100vw*32/1280),32px);
}
.info-hero-text--contact {
	top: max(calc(100vw*140/1280),140px);
}
.info-hero-text__h1--contact {
	color: #000000;
}
@media (max-width: 750px) {
	.info-hero-text {
		left: min(calc(100vw*63/750),63px);
		top: min(calc(100vw*112/750),112px);
	}
	.info-hero-text--contact {
		top: min(calc(100vw*145/750),145px);
	}
	.info-hero-text__h1--contact {
		font-size: min(calc(100vw*72/750),72px);
	}
}
/* ==================== */
/* contact.html */
/* ==================== */
/* イントロ */
.ai-contact-intro {
	border-bottom: 1px solid #808080;
	margin-top: 3em;
	padding-bottom: 10px;
}
.ai-contact-intro-h1 {
	font-size: 24px;
	color: #BC1653;
	margin: 0.5em 0;
}
.ai-contact-intro-h2 {
	font-size: 28px;
	font-weight: bold;
	margin: 0.5em 0;
}
.ai-contact-intro-p {
	margin-top: 3.4em;
}
/* ポリシー */
.ai-contact-policy {
	border-bottom: 1px solid #808080;
	padding-bottom: 70px;
	margin-bottom: 70px;
}
.ai-contact-policy-h2 {
	font-size: 20px;
	font-weight: bold;
	margin: 0.5em 0;
}
.ai-contact-policy p {
	line-height: 2.0;
}
.ai-contact-policy > ul > li {
	text-indent: -0.5em;
	padding-left: 0.5em;
}
.ai-contact-policy__intro {
	margin-bottom: 2em;
}
.ai-contact-policy__point {
	line-height: 2.0;
	margin-top: 2em;
}