@charset "UTF-8";

/* =================================
   Base
================================= */
html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0;
	font-family:
		"Yu Gothic",
		"Hiragino Kaku Gothic ProN",
		"Hiragino Sans",
		"Meiryo",
		sans-serif;
	font-size: 16px;
	line-height: 1.8;
	color: #222;
	background: #fff;
	min-width: 0;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

img,
video {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

a:hover {
	opacity: 0.85;
}

main.lp-main {
	display: block;
	overflow: hidden;
}

.lp-container {
	width: min(100% - 40px, 1200px);
	margin: 0 auto;
}

@media screen and (max-width: 767px) {
	.lp-container {
		width: min(100% - 30px, 707px);
	}
}

/* =================================
   Common title
================================= */

.lp-main h2 {
	font-size: 43px;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 0.5em;
}
.lp-main h3 {
	color: #ffff00;
	font-size: 33px;
	margin-bottom: 0.5em;
}
.lp-section-en {
	margin: 0 0 8px;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 0.18em;
	color: #2c67dc;
	text-align: center;
}

h2.lp-section-title {
	margin: 0 0 28px;
	font-size: 55px;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	color: #000;
	position: relative;
}

@media screen and (max-width: 767px) {
	.lp-section-en {
		font-size: 12px;
	}

	.lp-section-title {
		font-size: 26px;
		margin-bottom: 22px;
	}
}

/* =================================
   Button
================================= */
.lp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 260px;
	padding: 16px 32px;
	/*border-radius: 999px;
	background: linear-gradient(135deg, #1d6ea5 0%, #53add8 100%);*/
	background: #006bb3;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.05em;
	box-shadow: 0 10px 25px rgba(29, 110, 165, 0.2);
	position: relative;
}

/*.lp-btn::after {
	content: "›";
	display: inline-block;
	margin-left: 10px;
	font-size: 18px;
	line-height: 1;
}*/

.lp-btn:hover {
	transform: translateY(-2px);
	opacity: 1;
}

/* =================================
   Hero
================================= */
.lp-hero {
	position: relative;
	height: 100vh;
	min-height: 680px;
	max-height: 980px;
	background: #000;
}

.lp-hero__bg,
.lp-hero__video,
.lp-hero__overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.lp-hero__video {
	object-fit: cover;
	object-position: center center;
}

.lp-hero__overlay {
	background:
		linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.28)),
		linear-gradient(to right, rgba(8, 45, 73, 0.18), rgba(8, 45, 73, 0.05));
	z-index: 1;
}

.lp-hero__inner {
	position: relative;
	z-index: 2;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 40px 20px;
	text-align: center;
}

.lp-hero__copy {
	margin: 0;
	color: #fff;
	/*font-size: clamp(34px, 5vw, 76px);*/
	font-size: clamp(34px, 5vw, 60px);
	font-weight: 700;
	letter-spacing: 0.18em;
	line-height: 1.4;
	text-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
}
.lp-hero__copy_sub {
	color: #fff;
	font-size: clamp(18px, 3vw, 34px);
	font-weight: 400;
	letter-spacing: 0.18em;
	line-height: 1.4;
	text-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
}

.hl-wrap {
    background-image: url(./images/20th.jpg);
    background-size: cover;
	position: relative;
}
.hl-wrap::before {
	content: '';
	display: block;
	width: 100%;
	min-height: 1411px;
	background: url("./images/backlit.png") top center no-repeat;
	mix-blend-mode: screen;
	position: absolute;
	z-index: 0;
}


@media screen and (max-width: 767px) {
	.lp-hero {
		height: 72vh;
		min-height: 500px;
	}

	.lp-hero__copy {
		letter-spacing: 0.12em;
	}
}

/* =================================
   Intro
================================= */
.lp-intro {
	padding: 100px 0 90px;
	color: #fff;
	text-align: center;
}

.lp-intro__lead,
.lp-intro__subtitle {
	margin: 0 0 10px;
	font-size: 22px;
	font-weight: 500;
	color: #ffff00;
	letter-spacing: 0.04em;
}

.lp-intro__title {
	margin: 0 0 0.5em;
	font-size: 55px;
	font-weight: 700;
	line-height: 1.3;
	color: #fff;
	/*letter-spacing: 0.1em;*/
}

.lp-intro__text {
	width: min(100%, 972px);
	margin: 0 auto 3em;
	font-size: 20px;
	line-height: 2;
	text-align: left;
	text-shadow: 2px 3px 3px rgba(0, 54, 48, 0.35);
}
.lp-intro__text:last-child {
	margin-bottom: 0;
}
.lp-20th-txt {
	display: flex;
	justify-content: center;
	margin-top: 6.5em;
	margin-bottom: 6.5em;
}
.lp-dscription {
	font-size: 32px;
	font-weight: 500;
	line-height: 1.56;
	padding: 15px 30px;
	position: relative;
	display: inline-block;
	margin-bottom: 1.8em;
}
.lp-dscription::before,
.lp-dscription::after {
	content: '';
	width: 15px;
	height: 100%;
	position: absolute;
}
.lp-dscription::before {
	border-left: 1px solid #fff;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	top: 0;
	left: 0;
}
.lp-dscription::after {
	border-right: 1px solid #fff;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	top: 0;
	right: 0;
}
.lp-intro__img {
	width: min(100%, 972px);
    margin: 0 auto;
}

@media screen and (max-width: 767px) {
	.lp-intro {
		padding: 70px 0 60px;
	}

	.lp-intro__lead {
		font-size: 14px;
		margin-bottom: 14px;
	}

	.lp-intro__title {
		font-size: 32px;
		margin-bottom: 22px;
	}

	.lp-intro__text {
		font-size: 15px;
		line-height: 1.9;
		text-align: left;
	}
}

/* =================================
   Business
================================= */

.lp-business .lp-container {
	position: relative;
	z-index: 1;
}

.lp-business__cards {
	max-width: 1120px;
	width: 93.33%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
.lp-business-card {
	width: 46.6%;
	box-shadow: 0px 2px 10px -3px rgba(0, 54, 48, 0.15);
}

.lp-business-card__image {
	width: 100%;
	height: 326px;
	display: flex;
	justify-content: center;
}
.lp-business-card:nth-of-type(1) .lp-business-card__image {
	background: #c0ddee;
}
.lp-business-card:nth-of-type(2) .lp-business-card__image {
	background: #d3e7b5;
}

.lp-business-card__body {
	padding: 34px 50px 36px;
	background: #fff;
}

h2.lp-business-card__title {
	margin: 0 0 18px;
	font-size: 36px;
	font-weight: 700;
	line-height: 1.4;
	color: #2882dc;
	text-align: center;
}

.lp-business-card__text {
	margin: 0;
	font-size: 20px;
	font-weight: 500;
	line-height: 2.5;
	color: #000;
}

.lp-business__btn {
	margin-top: 44px;
	text-align: center;
}

@media screen and (max-width: 991px) {
	.lp-business__cards {
		grid-template-columns: 1fr;
	}

	.lp-business-card__image img {
		height: 280px;
	}
}

@media screen and (max-width: 767px) {
	.lp-business {
		padding: 70px 0;
	}

	.lp-business-card {
		border-radius: 20px;
	}

	.lp-business-card__image img {
		height: 220px;
	}

	.lp-business-card__body {
		padding: 24px 20px 26px;
	}

	.lp-business-card__title {
		font-size: 23px;
		margin-bottom: 12px;
	}

	.lp-business-card__text {
		font-size: 15px;
		line-height: 1.85;
	}
}

/* =================================
   Group Company
================================= */
.lp-group {
	padding: 110px 0;
	background: #fff;
}

.lp-group__text {
	width: min(100%, 860px);
	margin: 0 auto 4em;
	font-size: 20px;
	line-height: 1.95;
	color: #333;
}

.lp-group__logos {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.lp-group__logo {
	width: 46.66%;
	padding-bottom: 1em;
	border-bottom: 1px solid #c8c8c8;
	margin-bottom: 2em;
}
.lp-group__logo:nth-of-type(even) {
	margin-left: 6.68%;
}

.lp-group__logo a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.lp-group__logo img {
	max-width: 100%;
	max-height: 90px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.lp-group__logo--wide {
	grid-column: span 3;
}

@media screen and (max-width: 991px) {
	.lp-group__logos {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lp-group__logo--wide {
		grid-column: span 2;
	}
}

@media screen and (max-width: 767px) {
	.lp-group {
		padding: 70px 0;
	}

	.lp-group__text {
		font-size: 15px;
		line-height: 1.85;
		text-align: left;
		margin-bottom: 28px;
	}

	.lp-group__logos {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.lp-group__logo,
	.lp-group__logo--wide {
		grid-column: auto;
		min-height: 120px;
		padding: 18px;
		width: 100%;
        max-width: 500px;
	}
	.lp-group__logo:nth-of-type(even) {
		margin-left: 0;
	}
}

/* =================================
   Gallery
================================= */
.lp-gallery {
	position: relative;
	padding: 120px 0 110px;
	background: linear-gradient(180deg, #f7fcff 0%, #e8f5fb 100%);
	background: url("images/cm_back.png") top center no-repeat;
	background-size: cover;
}

.lp-gallery__wave {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 90px;
	background:
		radial-gradient(circle at 20px 100%, transparent 24px, #f7fcff 25px) repeat-x;
	background-size: 80px 90px;
	opacity: 0.5;
	pointer-events: none;
	display: none;
}
.lp-gallery__list {
	max-width: 975px;
	margin: 0 auto;
}
.lp-gallery__item {
	margin-bottom: 3em;
}
.lp-gallery__item h3 {
	font-size: 26px;
	color: #000;
	text-align: center;
	margin-top: 0.5em;
}

.lp-gallery__item a {
	display: block;
}

.lp-gallery__item img {
	width: 100%;
	height: 240px;
	object-fit: cover;
}

.lp-gallery__item a:hover img {
	transform: scale(1.03);
	transition: transform 0.4s ease;
}

.lp-gallery__youtube {
	position: relative;
	padding-top: 56.25%; /* 16:9 アスペクト比 */
	height: 0;
}
.lp-gallery__youtube iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 991px) {
	.lp-gallery__list {
		grid-template-columns: 1fr;
	}
}

@media screen and (max-width: 767px) {
	.lp-gallery {
		padding: 70px 0;
	}

	.lp-gallery__item {
		border-radius: 18px;
	}

	.lp-gallery__item img {
		height: 210px;
	}
}

/* =================================
   SDGs
================================= */
.lp-sdgs {
	padding: 110px 0 120px;
	background: #fff;
}

.lp-sdgs__head {
	display: grid;
	grid-template-columns: 485px 1fr;
	/*gap: 42px;*/
	align-items: center;
	margin-bottom: 52px;
}

.lp-sdgs__image img {
	width: 100%;
	object-fit: contain;
}
.lp-sdgs__content {
	margin-right: 16.7%;
}
.lp-sdgs__content p {
	margin: 0;
	font-size: 20px;
	line-height: 2.5;
	color: #000;font-weight: 500;
}

.lp-sdgs__cards {
	/*display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;*/
}

.lp-sdgs-card {
    background: #fff;
    border: 1px solid #CCC;
    overflow: hidden;
}

.lp-sdgs-card a {
	display: block;
	height: 100%;
}

.lp-sdgs-card__image img {
	width: 100%;
	/*height: 220px;
	object-fit: cover;*/
}

.lp-sdgs-card__body {
	padding: 24px 30px 28px;
	position: relative;
}

.lp-sdgs__cards h3.lp-sdgs-card__title {
	position: absolute;
	bottom: 100%;
	left: 1em;
	width: 188px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	font-size: 16px;
	color: #fff;
	background: #006bb3;
	margin: 0;
}

.lp-sdgs-card__text {
	margin: 0;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.85;
	color: #444;
	min-height: 111px;
}
.lp-header-area {
    margin-top: 100px;
    display: block;
    width: 100%;
    text-align: center;
    padding: 6em 1em;
    background-size: cover;
    background-position: bottom right;
    background-image: url(./images/common_bg.jpg);
}
#header.common-header a {
  color: #000;
}
h1.lp-header-title {
    font-size: 40px;
    color: #fff;
    letter-spacing: 6px;
}
h1.lp-header-title span {
    font-size: 20px;
    display: block;
}
.lp-main-img {
    display: block;
    margin: 2em auto 3em;
    max-width: 500px;
}
.common-content .lp-container {
    max-width: 800px;
    margin-bottom: 3em;
}
.common-content  h2.lp-section-title {
    font-size: 35px;
}
.common-content  .lp-section-en {
    font-size: 12px;
}
.common-content p {
    font-weight: 600;
}
.lp-section-en {
    font-size: 16px;
}
 table.company-table td, table.company-table th {
    word-break: break-all;
    text-align: left;
    padding: 22px 10px;
    border-bottom: 1px solid #ccc;
    font-weight: 600;
}
table.company-table td:first-of-type, table.company-table th:first-of-type {
    border-top: 1px solid #ccc;
}
@media screen and (max-width: 991px) {
	.lp-sdgs__head {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.lp-sdgs__image {
		max-width: 280px;
		margin: 0 auto;
	}

	.lp-sdgs__cards {
		grid-template-columns: 1fr;
	}
	.lp-sdgs__content {
		margin-right: 0;
	}
	
}

@media screen and (max-width: 767px) {
	.lp-sdgs {
		padding: 70px 0 80px;
	}

	.lp-sdgs__content p {
		font-size: 15px;
		line-height: 1.85;
		text-align: left;
	}

	.lp-sdgs-card__image img {
		height: 200px;
	}

	.lp-sdgs-card__body {
		padding: 20px 18px 22px;
	}

	.lp-sdgs__cards .lp-sdgs-card__title {
		font-size: 19px;
	}
}

/* =================================
   Footer area tune
================================= */
footer {
	background: #d3e7f3;
}
.footer-lp,
.site-footer.footer-lp {

	color: #fff;
	padding: 40px 20px;
	text-align: center;
}

.footer-lp a,
.site-footer.footer-lp a {
	color: #fff;
}
#footer .footer_bottom_left, .footer_bottom_right  {
    position: relative;
    width: 50%;
    margin-top: 20px;
    margin-bottom: 30px;
}
#footer .footer_bottom_left .text {
    color: initial;
    margin-top: 20px !important;
}
#footer .copyright {
    background-color: initial;
    font-family: initial;
    color: #333;
    text-align: right;
    position: absolute;
    bottom: 0;
    padding: 0;
    right: 0;
}
#footer .copyright .text {
    color: initial;
}
.footer_logo {
    width: 50%;
    max-width: 370px;
}

/* =================================
   Utility
================================= */
@media screen and (min-width: 768px) {
	.sp-only {
		display: none !important;
	}
}

@media screen and (max-width: 767px) {
	.pc-only {
		display: none !important;
	}
}

/* header */
#header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header-logo {
    max-width: 380px;
}
.header-navi {}
.header-navi ul {
	display: flex;
}
.header-navi ul li:nth-of-type(n + 2) {
	margin-left: 2em;
}
.header-navi ul li a {
	font-weight: 700;
}
/* コンテンツ */
section.lp-info {
	background: #d3e7f3;
	padding: 2em 0;
}
.lp-info__inner {
	width: min(100% - 40px, 1200px);
    margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 500;
}
.lp-info__inner_left {
	display: flex;
}
.lp-info__inner .dete-area {
	display: inline-block;
	font-size: 17px;
	color: #2882dc;
	width: 100px;
	margin-right: 25px;
}
.lp-info__inner .dete-area + a {
	font-size: 16px;
}
.lp-info__inner_right a::after {
	content: '\FF1E';
	margin-left: 5px;
}
ul.f-bnr-link-ul {
	width: 90%;
	max-width: 972px;
	margin: 2em auto 0;
	display: flex;
	align-items: center;
}
.f-bnr-link-ul li {
	margin: 1em;
}

/* スライダー */
.hl-slider-wrap {
	margin-bottom: 3.75em;
}
.officer-grid {
    display: grid;
    grid-template-columns: 40% 60%;
}
br.smp {
    display: none;
}
.footer-tel {
    padding-left: 4em;
}
@media screen and (max-width: 1400px) {
	#header {
		align-items: flex-start;
	}
	#header.common-header ul {
		margin-top: 6em;
	}
	#header.common-header ul a {
		color: #fff;
	}
	.header-navi ul {
		flex-direction: column;
	}
	.header-navi ul li:nth-of-type(n + 2) {
		margin-left: 0;
	}
	.lp-sdgs-card__body {
    	height: 260px;
	}
}
@media screen and (max-width: 991px) {
.lp-dscription {
    font-size: 24px;
}
.lp-main h3 {
    font-size: 24px;
}
#footer .footer_bottom_left, .footer_bottom_right {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}
#footer .copyright {
    right: 10px;
}
#footer .footer_bottom_left {
    margin-bottom: 0;
}
}
@media screen and (max-width: 768px) {
	.header-logo {
		width: 50%;
	}
	.header-navi ul li a {
		font-size: 14px;
	}
	.lp-info__inner .dete-area {
    display: block;
}
.lp-info__inner {
    width: 100%;
    display: inline-block;
}
.lp-info__inner_right {
    text-align: right;
}
.lp-info__inner {
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
}
.lp-main h3 {
    font-size: 20px;
}
.lp-sdgs-card__body {
    height: 200px;
}
	ul.f-bnr-link-ul {
		display: block;
	}
	ul.f-bnr-link-ul li {
		display: flex;
		justify-content: center;
	}
table.company-table, table.company-table p {
    font-size: 12px;
}
}
@media screen and (max-width: 640px) {
#header {
    padding: 15px;
}
.lp-business__cards {
    width: 100%;
    display: inline-block;
}
.lp-business-card {
    width: 100%;
    margin-bottom: 2em;
}
.lp-group__logo {
    width: 90%;
}
.lp-business-card__image {
    height: 225px;
}
h2.lp-section-title {
    font-size: 36px;
}
h2.lp-business-card__title {
    font-size: 26px;
}
.lp-dscription {
    font-size: 20px;
}
.lp-main h2 {
    font-size: 26px;
}
.lp-main h3 {
    font-size: 22px;
}
.lp-sdgs-card__text {
    font-size: 16px;
}
.lp-main h3, .lp-gallery__item h3 {
    font-size: 18px;
}
#footer .footer_bottom_left .text {
    font-size: 12px;
}
.common-content h2.lp-section-title {
    font-size: 20px;
}
.lp-section-en {
    font-size: 12px;
}
.common-content p {
    font-size: 14px;
}
.officer-grid {
    grid-template-columns: 60% 40%;
}
.common-content .lp-section-en {
    font-size: 11px;
}
header#header.common-header {
    padding: 5px;
}
.company-table td span {
    display: block;
}
h1.lp-header-title {
    font-size: 30px;
}
h1.lp-header-title span {
    font-size: 12px;
}
br.smp {
    display: initial;
}
.footer_bottom_right {
    margin: 0 0 10px;
}
.footer-tel {
    padding-left: 0;
}
.lp-info__inner .dete-area {
    font-size: 14px;
}
.lp-info__inner .dete-area + a, .lp-info__inner_right a {
    font-size: 14px;
}
.lp-header-area {
    margin-top: 55px;
}
.header-logo {
width: 60%;
    max-width: 280px;
}
    #header.common-header ul {
        margin-top: 4.5em;
    }
.header-navi ul li a {
font-size: 12px;
        line-height: 3em;
}
}
@media screen and (max-width: 400px) {
#header {
    padding: 5px;
}
.lp-info__inner .dete-area {
    font-size: 14px;
}
h2.lp-section-title {
    font-size: 30px;
}
.lp-intro__title {
	font-size: 24px;
}
.lp-main h2, h2.lp-business-card__title, h2.lp-section-title {
    font-size: 22px;
}
.lp-dscription {
    font-size: 18px;
}
.lp-main h3, .lp-gallery__item h3 {
    font-size: 14px;
}
.lp-info__inner_right {
    font-size: 12px;
}
.lp-sdgs-card__text, .lp-intro__lead, .lp-intro__subtitle {
    font-size: 14px;
}
.lp-sdgs-card__image img {
    height: 150px;
}
.lp-sdgs-card__body {
    height: 160px;
}
table.company-table tr {
  display: block;
}
table.company-table tr th,
table.company-table tr td {
  display: block;
  width: 100%;
}
table.company-table tr th, table.company-table tr td {
    border-bottom: none;
}
table.company-table tr th {
    background-color: #eee;
}
table.company-table tr:last-of-type td {
    border-bottom: 1px solid #ccc;
}
.common-content h2.lp-section-title {
font-size: 16px;
}
.common-content .lp-section-en {
font-size: 9px;
}
.common-content p {
font-size: 12px;
line-height: 2em;
}
#header.common-header ul a {
    font-size: 10px;
}
.lp-info__inner .dete-area {
    font-size: 12px;
}
.lp-info__inner .dete-area + a, .lp-info__inner_right a {
    font-size: 12px;
}
h1.lp-header-title {
    letter-spacing: initial;
}
}