@charset "utf-8";

/*
Theme Name: XeoryExtension
Author: arnk
*/

:root {
	--mplus-font : 'M PLUS 1p', sans-serif;
	--noto-font: 'Noto Sans JP', sans-serif;
	--staatliches-font: 'Staatliches', cursive;
	--font-color: #121c2d;
	--font-blue: #1d3b77;
}

body {
	/* color: var(--font-blue); */
	color: var(--font-color);
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
}

img {
	max-width: 100%;
}

.inner {
	max-width: 1235px;
	padding: 0 17.5px;
	margin: 0 auto;
}

.uppercase {
	text-transform: uppercase;
}

.link_btn {
	text-decoration: none;
	color: var(--font-blue);
	text-decoration: none;
	display: grid;
	justify-content: center;
	align-items: center;
	width: 160px;
	height: 40px;
	border: 1px solid var(--font-blue);
	margin: 0 auto;
	transition: .3s;
}

.link_btn:hover {
	color: #fff;
	background: var(--font-blue);
}

.top_section {
	/* margin-bottom: 160px; */
	margin-bottom: 80px;
}


.anchor {
	margin-top: -60px;
	padding-top: 60px;
}

/*ヘッダー*/
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
}

.header_inner {
	max-width: 1753px;
	margin: 0 auto;
	/* padding: 40px 17.5px; */
	padding: 15px 17.5px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100px;
	transition: .3s;
}

header.active {
	background: rgba(255,255,255,0.6);
}

header.active .header_inner {
	height: 60px;
}

.logo {
	line-height: 1;
}

.logo img {
	/* width: 343px; */
	width: 170px;
}

.logo a:hover {
	opacity: 0.8;
}

.gnav_pc {
	display: none;
}

.gnav_pc ul {
	display: flex;
	column-gap: 30px;
}

.gnav_pc ul li a {
	text-decoration: none;
	color: var(--font-blue);
	font-weight: bold;
}

.gnav_pc ul li a:hover {
	opacity: 0.8;
}

.gnav_sp {
	position: fixed;
	top: 0;
	right: -100%;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.8);
	padding: 90px 17.5px 20px;
	overflow-y: scroll;
	box-sizing: border-box;
	z-index: 20;
	transition: .3s;
}

.gnav_sp.open {
	transform: translateX(-100%);
}

.gnav_sp ul {
	margin-bottom: 20px;
}

.gnav_sp ul li {
	border-bottom: 1px solid #90b6d5;
	padding: 15px;
}

.gnav_sp ul li:first-child {
	border-top: 1px solid #90b6d5;
}

.gnav_sp ul li a {
	color: var(--font-blue);
	font-weight: bold;
	font-size: 1.8rem;
	text-decoration: none;
}

.gnav_sp ul li a::before {
	content: '―';
}

.gnav_sp ul li a:hover {
	opacity: 0.8;
}

.Toggle_wrap {
	position: fixed;
	z-index: 40;
	width: 40px;
	height: 26px;
	/* top: 17px; */
	top: 37px;
	right: 17.5px;
	font-size: 1rem;
	line-height: 1;
	transition: .3s;
}

.Toggle_wrap.active {
	top: 17px;
}

.Toggle_wrap p {
	text-align: center;
	text-transform: uppercase;
}

.toggle {
	width: 100%;
	height: 16px;
}

.toggle span {
	display: inline-block;
	width: 34px;
	height: 2px;
	background: var(--font-color);
	position: absolute;
	left: 3px;
	transition: .3s;
}

.toggle span:first-child {
	top: 0;
}

.toggle span:nth-child(2) {
	top: 6px;
}

.toggle.active span:first-child {
	top: 3px;
	transform: rotate(15deg);
}

.toggle.active span:nth-child(2) {
	top: 3px;
	transform: rotate(-15deg);
}

/*scroll bar*/
.scroll {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
}

.scroll p {
	line-height: 1;
	text-transform: uppercase;
	font-family: var(--staatliches-font);
}

.bar {
	width: 1px;
	height: 20px;
	background: #1c2f5e;
	display: inline-block;
	line-height: 1;
	transform-origin: top;
	animation: scrollbar 2s ease-in-out infinite normal forwards;
}

@keyframes scrollbar {
	0% {
		transform-origin: top;
		transform: scale(0);
	}
	50% {
		transform-origin: top;
		transform: scale(1);
	}
	50.1% {
		transform-origin: bottom;
		transform: scale(1);
	}
	100% {
		transform-origin: bottom;
		transform: scale(0);
	}
}

/*メイン画像*/
.hero {
	width: 100%;
	height: 100vh;
	/* background: url(img/hero.jpg) no-repeat center/cover; */
	position: relative;
	/* margin-bottom: 140px; */
	margin-bottom: 70px;
}

.hero_eye_chatch {
	width: 80%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	animation: fadeIn 1s 1s linear normal forwards 1;
	opacity: 0;
}


@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.hero video {
	width: 100%;
	height: 100vh;
	object-fit: cover;
	object-position: center;
	overflow: hidden;
}

/*contents*/
.heading_h2  {
	/* margin-bottom: 65px; */
	margin-bottom: 30px;
}

.heading_h2 h2 {
	font-family: var(--staatliches-font);
	/* font-size: 45px; */
	font-size: 30px;
	font-weight: normal;
	color: #1c2f5e;
	line-height: 1.3;
}

.heading_h2 span {
	/* font-size: 1.4rem; */
	font-size: 1.2rem;
	display: inline-block;
	transform: translateY(-5px);
	color: #0463aa;
}



/*お知らせ*/
.news_list {
	/* margin-bottom: 60px; */
	margin-bottom: 30px;
}

.news_list li {
	border-bottom: 1px solid var(--font-color);
	padding: 10px 5px;
	font-size: 1.5rem;
}

.news_list li:first-child {
	border-top: 2px solid var(--font-blue);
}


.news_list li:last-child {
	border-bottom: 2px solid var(--font-blue);
}

.news_list div {
	display: flex;
	/* column-gap: 60px; */
	column-gap: 10px;
	align-items: center;
	margin-bottom: 3px;
	color: var(--font-blue);
}

.news_list p {
	color: var(--font-color);
}

.news_cat {
	color: #fff;
	background: var(--font-blue);
	font-size: 1.2rem;
	padding: 0 10px 1px;
	border-radius: 40px;
}

.news_list li a {
	text-decoration: none;
	/* color: var(--font-blue); */
}

/*banner01*/
.banner01 {
	width: 100%;
	padding: 30px 0;
	color: #fff;
	background: url(img/top_bg01.jpg) no-repeat center/cover;
	/* margin-bottom: 160px; */
	margin-bottom: 80px;
}


.banner_txt p:first-child {
	/* font-size: 3rem; */
	font-size: 2.1rem;
	font-family: var(--mplus-font);
	transform: rotate(0.05deg);
	text-align: center;
	/* margin-bottom: 60px; */
	margin-bottom: 30px;
}

.banner_txt p span {
	display: block;
}


/*事業内容*/
.heading_h3 {
	/* margin-bottom: 60px; */
	margin-bottom: 30px;
}

.heading_h3 h3 {
	font-family: var(--mplus-font);
	color: #144a80;
	transform: rotate(0.05deg);
	/* font-size: 2.6rem; */
	font-size: 2rem;
}

.heading_h3 span {
	font-size: 1.6rem;
	font-size: 1.;
	/* font-size: 1.4rem; */
	font-size: 1.2rem;
	transform: translateY(-5px);
	color: #0463aa;
}

.businss_content {
	/* margin-bottom: 160px; */
	margin-bottom: 80px;
}

.businss_content ul {
	display: grid;
	grid-template-columns: 1fr;
	/* row-gap: 80px; */
	row-gap: 40px;
	/* margin-bottom: 100px; */
	margin-bottom: 50px;
}

.businss_content ul li img {
	display: block;
	/* margin-bottom: 20px; */
	margin: 0 auto 10px;
}

.businss_content ul li h4 {
	/* font-size: 2.2rem; */
	font-size: 2rem;
	/* margin-bottom: 20px; */
	margin-bottom: 10px;
}

.heading_h3 + p {
	color: #121c2d;
	/* margin-bottom: 60px; */
	margin-bottom: 30px;
}

.business_eyecatch {
	/* margin-bottom: 160px; */
	margin-bottom: 80px;
	display: grid;
	justify-content: center;
}

.business_eyecatch p:first-child {
	/* font-size: 3.4rem; */
	font-size: 2.4rem;
	text-align: center;
	color: #144a80;
	font-family: var(--mplus-font);
	transform: rotate(0.05deg);
	/* margin-bottom: 45px; */
	margin-bottom: 30px;
}

.business_eyecatch p:nth-child(2) {
	/* margin-bottom: 100px; */
	margin-bottom: 50px;
}

.banner02 {
	/* margin-bottom: 160px; */
	margin-bottom: 80px;
}

.sdgs_link {
	margin-bottom: 160px;
	margin-bottom: 80px;
}

.sdgs_link a:hover {
	opacity: 0.8;
}

/*施工実績*/
.prev_next_button {
	position: relative;
}

.slide_txt {
	margin-top: 10px;
}

.slide_txt time {
	color: #0463aa;
	display: inline-block;
	margin-bottom: 10px;
}

/*swiper*/
.swiper-wrapper {
	height: 100vw !important;
}
.swiper_container_wrap {
	/* overflow: hidden; */
	width: 100%;
	display: flex;
	margin-top: 30px;
    max-width: 1200px;
}

.swiper-slide {
	width: 100%;
	margin-bottom: 30px;
	color: var(--font-color);
	text-decoration: none;
}

.slide_content img {
	width: 100%;
	aspect-ratio: 270/450;
	object-fit: cover;
	overflow: hidden;
}

[class*=swiper]:focus {
	outline: none;
}

.all_slide_controls {
	display: flex;
	align-items: center;
	column-gap: 20px;
}

.swiper-scrollbar.swiper-scrollbar-horizontal {
	position: relative !important;
    width: calc(100% - 100px) !important;
    left: 0 !important;
	bottom: auto !important;
}

.prev_next_button {
    display: flex;
    width: 100px;
    column-gap: 20px;
    justify-content: center;
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev,
.swiper-button-next {
  height: 50px !important;
  width: 50px !important;
  position: relative !;
}

.pc-tab {
	display: none !important;
}


/* 前へ次への矢印カスタマイズ */
.swiper-button-prev::before,
.swiper-button-next::before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	content: "";
	-webkit-box-shadow:#ddd;
	box-shadow: #ddd;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "" !important;
  height: 40px;
  margin: auto;
  width: 40px;
}

.swiper-button-prev:after {
	background: url(img/slide_arrow_left.svg);
}

.swiper-button-next:after {
	background: url(img/slide_arrow_right.svg);
}

/* .swiper-button-prev::after,
.swiper-button-next::after {
	transform: rotate(0);
	border: none;
} */

.top_works .swiper-button-prev,
.top_works .swiper-button-next {
	position: relative;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin: 0;
}

.top_works .swiper-button-prev:hover,
.top_works .swiper-button-next:hover {
	opacity: 0.8;
}

.view_more_btn_wrap {
	margin-top: 30px;
}
/*会社概要*/
.top_company.top_section {
	/* margin-bottom: 240px; */
	margin-bottom: 160px;
}

.business_content {
	display: grid;
	row-gap: 20px;
}

.business_content h3 {
	font-size: 1.6rem;
}

.square {
	list-style: square;
	padding-left: 2rem;
	display: grid;
	row-gap: 20px;
}

/*コンテンツ一部隠す*/
.expand {/*全体*/
	max-height: 160px;
	overflow: hidden;
	position: relative;
	/* border-bottom: 1px solid #aaa; */
	transition: .5s;
}

.table_wrap dl {
	margin: 0;
}

.table_wrap > dl > dt {
	background: #eee;
	text-align: center;
	color: var(--font-blue);
	font-weight: bold;
	padding: 10px 15px;
	box-sizing: border-box;
}

.table_wrap > dl > dd {
	display: grid;
	justify-content: center;
	margin-left: 0;
	padding: 20px 15px;
	row-gap: 8px;
	font-weight: normal;
}

.table_wrap > dl > dd a {
	color: var(--font-color);
	text-decoration: none;
}

.table_wrap > dl > dd a:hover {
	opacity: 0.8;
}

.expand::before {/*グラデーション部分*/
	content: "";
	position: absolute;
	width: 100%;
	height: 50%;
	bottom: 0;
	background-image: linear-gradient(rgba(255, 255, 255, 0), #ffffff);
	pointer-events: none;
	transition: 1s;
}

.contenedor {
	position: relative;
	margin-bottom: 60px;
}

.contenedor input {/*input要素は隠しておく*/
	visibility: hidden;
	display: none;
}

.open_btn {/*ボタン部分のスタイル*/
	display: grid;
	justify-content: center;
	align-items: center;
	font-size: 1.6rem;
	cursor: pointer;
	text-transform: uppercase;
	color: var(--font-blue);
	background: #fff;
	border: 1px solid var(--font-blue);
	box-sizing: border-box;
	max-width: 160px;
	height: 40px;
	width: 100%;
	text-align: center;
	transition: .3s;
	position: absolute;
	bottom: -60px;
	left: 50%;
	transform: translateX(-50%);
}

.open_btn:hover {
	color: #fff;
	background: var(--font-blue);
	border: 1px solid var(--font-blue);
}

.open_btn:before {/*閉じている際のボタンのテキスト*/
	content: "read more";
	text-transform: uppercase;
}

/* .contenedor input:checked + label {
	display: none;
} */

.contenedor input:checked + .open_btn:before {/*開いているときは:checked状態なので、その際はボタンテキストを変える*/
	content: 'close';
	text-transform: uppercase;
}

input[type=checkbox]:checked ~ .expand {
	max-height: 3200px;
}

input[type=checkbox]:checked ~ .expand:before {
	opacity: 0
}

/*banner03*/
.banner03 {
	/* margin-bottom: 160px; */
	margin-bottom: 80px;
}

.banner03 a:hover {
	opacity: .8;
}

/*map*/
.map {
	position: relative;
	width: 100%;
	/* height: min(400px,33.4vw); */
	/* height: 67.64vw; */
	height: 290px;
}

.map iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

/*お問合せ・アクセス*/
.top_contact.top_section {
	margin-bottom: 80px;
	/* margin-bottom: 120px; */
}

.top_contact .heading_h2 + p {
	/* margin-bottom: 65px; */
	margin-bottom: 30px;
}

.top_contact ul {
	display: grid;
	grid-template-columns: 1fr;
	row-gap: 25px;
	/* margin-bottom: 60px; */
	margin-bottom: 30px;
}

.contact_bg {
	display: grid;
	width: 100%;
	aspect-ratio: 360/200;
	background: url(img/top_contact_bg.jpg) no-repeat center/cover;
	justify-content: center;
	align-items: center;
	text-align: center;
	text-decoration: none;
}

a.contact_bg:hover {
	opacity: 0.8;
}

.contact_bg div {
	background: url(img/top_contact_icon.svg) no-repeat center top/ 30px;
	padding-top: 40px;
}

.contact_bg div p:first-child {
	font-size: 2.4rem;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
}

.contact_bg div p:nth-child(2) {
	color: #fff;
	font-weight: bold;
	font-size: 2rem;
}

.at_mark::before {
	content: '@';
}

footer {
	border-top: 1px solid #6b8080;
}

.footer_inner {
	max-width: 1235px;
	padding: 0 17.5px;
	margin: 0 auto;
}

.footer_top {
	/* padding: 100px 0 60px; */
	padding: 60px 0 60px;
	display: flex;
	flex-direction: column-reverse;
}

.footer_nav {
	margin-bottom: 25px;
}

.footer_nav ul:first-child li:first-child a {
	border-top: 1px solid #90b6d5;
}

.footer_nav ul li a {
	padding: 10px 17.5px;
	text-decoration: none;
	color: var(--font-blue);
	border-bottom: 1px solid #90b6d5;
	display: block;	
	font-weight: bold;
}

.footer_nav ul li a:hover {
	opacity: .8;
}

.footer_right {
	margin-bottom: 60px;
}

.pdf_dl a {
	display: grid;
	width: 200px;
	height: 40px;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	border: 1px solid var(--font-blue);
	color: var(--font-blue);
	background: rgba(4,99,170,0.1);
	transition: .3s;
}

.pdf_dl a:hover {
	background: var(--font-blue);
	color: #fff;
}

.footer_left {
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.address_area {
	color: var(--font-blue);
	margin-bottom: 25px;
}

.address_area > p {
	font-weight: bold;
}

.address_area p {
	margin-bottom: 5px;
}

address {
	font-style: normal;
}

address a {
	color: var(--font-blue);
	text-decoration: none;
}

address a:hover {
	opacity: .8;
}

address dl {
	display: grid;
	grid-template-columns: 4rem auto;
}

address dl dt,
address dl dd {
	margin-bottom: 5px;
}

.footer_icon_area {
	width: 100%;
	display: flex;
	justify-content: flex-start;
}


.footer_bottom {
	text-align: center;
	border-top: 1px solid #6b8080;
	/* padding: 40px 0 80px; */
	padding: 25px 0 25px;
}

.footer_bottom p img {
	width: 266px;
}

/*ページトップ*/
.pageTop {
	display: block;
	width: 50px;
	height: 50px;
	position: fixed;
	z-index: 2;
	bottom: 15px;
	right: 15px;
}
/*下層ページ*/
.subpage_main {
	/* margin-top: 195px; */
	margin-top: 95px;
}

.archive_main {
	/* margin-top: 155px; */
	margin-top: 95px;
}

.subpage_h2 {
	/* margin-bottom: 100px; */
	margin-bottom: 50px;
}

.subpage_h2 h2 {
	text-align: center;
	/* padding-top: 45px; */
	padding-top: 40px;
	background: url(img/subpage_h2_icon.svg) no-repeat center top/22px;
}

/*SDGsの取り組み*/
.sdgs_poster {
	text-align: center;
	width: 80%;
	max-width: 800px;
	/* margin: 0 auto 60px; */
	margin: 0 auto 30px;
}

.sdgs_content .subpage_h3 {
	border-top: 1px solid var(--font-blue);
	border-bottom: 1px solid var(--font-blue);
	/* padding: 15px 0; */
	padding: 10px 0;
	/* font-size: 2.6rem; */
	font-size: 2.2rem;
	font-family: var(--mplus-font);
	transform: rotate(0.05deg);
	color: var(--font-blue);
	text-align: center;
	font-weight: 900;
	/* margin-bottom: 60px; */
	margin-bottom: 30px;
}

.sdgs_content .subpage_h3 h3 {
	display: inline-block;
}

.h3_logo_icon {
	padding-left: 30px;
	background: url(img/sdgs/h3_icon.svg) no-repeat left center/25px;
}

.sdgs_content_inner {
	max-width: 1000px;
	margin: 0 auto;
}

.sdgs_content {
	/* margin-bottom: 160px; */
	margin-bottom: 80px;
}

.sdgs_content.last_content {
	margin-bottom: 60px;
}

.sdgs_declear {
	/* margin-bottom: 100px; */
	margin-bottom: 50px;
	color: #1c2f5e;
	font-weight: 500;
}

.sdgs_list {
	display: grid;
	grid-template-columns: 1fr;
	/* row-gap: 100px; */
	row-gap: 50px;
}

.sdgs_list h4 {
	color: #144a80;
	font-family: var(--mplus-font);
	/* font-size: 2.6rem; */
	font-size: 2rem;
	/* margin-bottom: 60px; */
	margin-bottom: 30px;
}

.sdgs_list figure {
	position: relative;
	max-width: 580px;
	margin: 0 auto 25px;
}

.sdgs_list li {
	padding-left: 2.5rem;
	position: relative;
}

.sdgs_list li > ul > li::before {
	content: '\025cf';
	position: absolute;
	left: 0;
	top: 0;
	color: #0991cc;
}

.sdgs_icon {
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 1;
	width: 20%;
	max-width: 120px;
	min-width: 80px;
}

/*プライバシーポリシー*/
.privacy_declare {
	/* margin-bottom: 100px; */
	margin-bottom: 50px;
}

.privacy_list {
	display: grid;
	grid-template-columns: 1fr;
	/* row-gap: 80px; */
	row-gap: 40px;
	/* margin-bottom: 120px; */
	margin-bottom: 60px;
}

.privacy_list h3 {
	font-size: 2rem;
	/* font-size: 2.2rem; */
	color: #0991cc;
}

.privacy_list > li > ul {
	padding-left: 1.5rem;
	margin-left: 1rem;
	list-style: disc;
	margin-top: 20px;
	/* margin-top: 40px; */
}

.conact_link {
	display: flex;
	width: 250px;
	height: 40px;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	color: #243a73;
	border: 1px solid #243a73;
	margin-top: 25px;
	transition: .3s;
}

.conact_link:hover {
	color: #fff;
	background: #243a73;
}

.privacy_wrap {
	max-width: 1000px;
	margin: 0 auto;
}

/*一覧ページ*/
.works_wrap ul {
	display: grid;
	grid-template-columns: 1fr;
	/* row-gap: 100px; */
	row-gap: 50px;
	margin-bottom: 50px;
}

.works_wrap ul li a {
	text-decoration: none;
}

.works_wrap ul li a:hover {
	opacity: .8;
}

.works_wrap ul img {
	display: block;
	margin: 0 auto 15px;
	object-fit: cover;
	overflow: hidden;
	width: 100%;
}

.category {
	color: #fff;
	background: var(--font-blue);
	display: inline-block;
	padding: 3px 15px;
	border-radius: 40px;
	font-size: 1.2rem;
	/* margin-bottom: 25px; */
	margin-bottom: 20px;
	text-decoration: none;
}

.ttl {
	color: #0480c2;
	font-weight: bold;
	margin-bottom: 15px;
	/* font-size: 2.2rem; */
	font-size: 2rem;
	text-decoration: none;
}

.article_date {
	text-decoration: none;
	color: var(--font-color);
}

.page_nav {
	display: flex;
	justify-content: center;
	column-gap: 5px;
	/* margin-bottom: 120px; */
	margin-bottom: 60px;
}

.page_nav a {
	text-decoration: none;
	color: var(--font-blue);
	font-weight: bold;
}

.page_nav a:hover {
	opacity: .8;
}

.page-numbers.current {
	color: #fff;
	background: var(--font-blue);
	border-radius: 50%;
}

.page-numbers:not(.prev,.next) {
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.prev.page-numbers,
.next.page-numbers {
	position: relative;
	width: 20px;
	height: 30px;
}

.prev.page-numbers::before {
	content: '';
	display: block;
	width: 6px;
	height: 14px;
	background: url(img/works/arrow.svg) no-repeat;
	background-size: contain;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%) rotate(180deg);
}

.next.page-numbers::before {
	content: '';
	display: block;
	width: 6px;
	height: 14px;
	background: url(img/works/arrow.svg) no-repeat;
	background-size: contain;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.pnkz {
	margin-bottom: 25px;
}

.pnkz ol li {
	display: inline-block;
	margin-right: 10px;
}

.pnkz ol li a {
	color: #53a5d9;
	text-decoration: none;
}

.pnkz ol li a:hover {
	opacity: .8;
}

/*詳細ページ*/
.article_wrap {
	max-width: 754px;
	margin: 0 auto;
}

.article_header {
	text-align: center;
	margin-bottom: 30px;
}

.article_eyecatch {
	text-align: center;
	margin: 0 0 30px;
}

.article_eyecatch img {
	object-fit: cover;
	overflow: hidden;
	width: 100%;
}

.article_content {
	margin-bottom: 50px;
	/* margin-bottom: 100px; */
}

.article_footer {
	/* margin-bottom: 120px; */
	margin-bottom: 60px;
	color: #1c2f5e;
	font-size: 13px;
}

.article_footer a {
	color: #1c2f5e;
	text-decoration: none;
}

.article_footer a:hover {
	opacity: .8;
}

@media screen and (min-width: 375px) {
	
}

@media screen and (min-width: 420px) {
	
}

@media screen and (min-width: 600px) {
	.swiper-wrapper {
		height: 65vw !important;
	}
}

@media screen and (min-width: 768px) {
	.top_section {
		margin-bottom: 160px;
	}

	/*メイン画像*/
	.hero,
	.hero video {
		height: 52.08vw;
	}

	.hero_eye_chatch {
		width: 29.6875vw;
		left: 12.44vw;
		top: 20.625vw;
		transform: translate(0, 0);
	}

	.scroll {
		bottom: 4.6875vw;
	}

	.scroll p {
		font-size: 2rem;
	}

	.scroll span {
		height: 35px;
	}

	/*contents*/
	.heading_h2  {
		margin-bottom: 65px;
	}

	.heading_h2 h2 {
		font-size: 45px;
	}

	.heading_h2 span {
		font-size: 1.6rem;
	}

	/*お知らせ*/
	.news_list {
		margin-bottom: 60px;
	}

	.news_list li {
		font-size: 1.6rem;
	}


	.news_list div {
		column-gap: 30px;
		margin-bottom: 0;
	}

	.news_list li a:hover {
		opacity: 0.8;
	}

	.news_cat {
		font-size: 1.4rem;
	}

	/*banner01*/
	.banner01 {
		margin-bottom: 160px;
		padding: 8.229vw 0;
	}


	.banner_txt p:first-child {
		font-size: 3rem;
		margin-bottom: 60px;
		text-align: left;
	}

	.banner_txt {
		width: 472px;
		margin-left: auto;
	}

	/*事業内容*/
	.heading_h3 {
		margin-bottom: 60px;
	}

	.heading_h3 h3 {
		font-size: 2.6rem;
	}

	.heading_h3 span {
		font-size: 1.6rem;
	}

	.businss_content {
		margin-bottom: 160px;
	}

	.businss_content ul {
		row-gap: 80px;
		margin-bottom: 100px;
		display: flex;
		flex-wrap: wrap;
		column-gap: 40px;
		justify-content: space-between;
	}

	.business_img_col2 {
		display: flex;
		column-gap: 40px;
	}

	.business_img_col2 img {
		width: calc(50% - 20px);
	}

	.col1 {
		width: 100%;
	}

	.col2 {
		width: calc(50% - 20px);
	}

	.businss_content ul li img {
		margin: 0;
		margin-bottom: 20px;
	}

	.businss_content ul li h4 {
		font-size: 2.2rem;
		margin-bottom: 20px;
	}

	.heading_h3 + p {
		margin-bottom: 60px;
	}

	.business_eyecatch {
		margin-bottom: 160px;
		text-align: center;
	}

	.business_eyecatch p:first-child {
		font-size: 3.4rem;
		margin-bottom: 45px;
	}

	.business_eyecatch p:nth-child(2) {
		margin-bottom: 100px;
	}

	.banner02 {
		margin-bottom: 160px;
	}

	.sdgs_link {
		margin-bottom: 160px;
	}

	/*swiper*/
	.swiper-wrapper {
		height: 52vw !important;
	}

	/*会社概要*/
	.top_company.top_section {
		margin-bottom: 240px;
	}

	.business_content,
	.square {
		row-gap: 40px;
	}

	/*コンテンツ一部隠す*/
	.expand {/*全体*/
		max-height: 160px;
		overflow: hidden;
		position: relative;
		/* border-bottom: 1px solid #aaa; */
		transition: .5s;
	}

	.open_btn {
		bottom: -90px;
	}

	.table_wrap > dl {
		display: grid;
		grid-template-columns: 136px auto;
		border-bottom: 1px solid #80808f;
		padding: 0 min(92px, 7.6%);
	}


	.table_wrap > dl > dt {
		background: #fff;
		text-align: left;
		padding: 35px 0;
	}

	.table_wrap > dl > dd {
		display: block;
		margin-left: 0;
		padding: 35px 0;
	}

	.expand .table_wrap > dl:last-child {
		border-bottom: 2px solid #1d3b77;
	}

	.about_history1 {
		border-top: 2px solid #1d3b77;
	}


	/*banner03*/
	.banner03 {
		margin-bottom: 160px;
	}

	/*map*/
	.map {
		/* height: min(400px,33.4vw); */
	}

	/*お問合せ・アクセス*/
	.top_contact.top_section {
		margin-bottom: 120px;
	}

	.top_contact .heading_h2 + p {
		margin-bottom: 65px;
	}

	.top_contact ul {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		column-gap: 5%;
		margin-bottom: 60px;
	}

	.contact_bg div {
		background: url(img/top_contact_icon.svg) no-repeat center top/ 30px;
		padding-top: 40px;
	}

	/*footer*/
	.footer_inner {
		padding: 0 17.5px;
	}

	.footer_top {
		padding: 100px 0 60px;
		display: flex;
		/* flex-direction: row; */
		justify-content: center;
	}

	.footer_left {
		padding: 0;
		flex-direction: row;
		/* width: 50%; */
		column-gap: 40px;
		justify-content: center;
		align-items: flex-start;
	}

	.footer_icon_area {
		width: auto;
	}

	.address_area {
		color: var(--font-blue);
	}

	.address_area > p {
		font-weight: bold;
	}

	address {
		font-style: normal;
	}

	address a {
		color: var(--font-blue);
		text-decoration: none;
	}

	.footer_bottom {
		padding: 40px 0 80px;
		display: flex;
		justify-content: space-between;
		align-items: center;

	}

	.pdf_dl a {
		margin: 0;
	}

	/*ページトップ*/
	.pageTop {
		width: 90px;
		height: 90px;
	}

	/*下層ページ*/
	.subpage_main {
		margin-top: 195px;
	}

	.archive_main {
		margin-top: 155px;
	}

	.subpage_h2 {
		margin-bottom: 100px;
	}

	.subpage_h2 h2 {
		padding-top: 45px;
	}

	/*SDGsの取り組み*/
	.sdgs_poster {
		margin: 0 auto 60px;
	}

	.sdgs_content .subpage_h3 {
		padding: 15px 0;
		font-size: 2.6rem;
		margin-bottom: 60px;
	}

	.h3_logo_icon {
		padding-left: 45px;
		background: url(img/sdgs/h3_icon.svg) no-repeat left center/35px;
	}

	.sdgs_content {
		/* margin-bottom: 160px; */
		margin-bottom: min(160px,13.4%);
	}

	.sdgs_content.last_content {
		margin-bottom: 120px;
	}

	.sdgs_declear {
		margin-bottom: 100px;
		text-align: center;
	}

	.sdgs_declear span {
		display: block;
	}

	.sdgs_list {
		grid-template-columns: repeat(2, 1fr);
		row-gap: 100px;
		column-gap: 40px;
	}

	.sdgs_list h4 {
		font-size: 2.6rem;
		margin-bottom: 60px;
	}

	.sdgs_list figure {
		margin: 0 0 25px;
	}

	.sdgs_list li {
		padding-left: 2.5rem;
		position: relative;
	}

	.sdgs_list li > ul > li::before {
		content: '\025cf';
		position: absolute;
		left: 0;
		top: 0;
		color: #0991cc;
	}

	/*プライバシーポリシー*/
	.privacy_declare {
		margin-bottom: 100px;
	}

	.privacy_list {
		row-gap: 80px;
		margin-bottom: 120px;
	}

	.privacy_list h3 {
		font-size: 2.2rem;
	}

	.privacy_list > li > ul {
		margin-top: 40px;
	}

	/*一覧ページ*/
	.works_wrap ul {
		row-gap: 100px;
		grid-template-columns: repeat(2,1fr);
		column-gap: 34.5px;
		margin-bottom: 100px;
	}

	.category {
		margin-bottom: 25px;
		font-size: 1.4rem;
	}

	.ttl {
		font-size: 2.2rem;
	}

	.page_nav {
		margin-bottom: 120px;
	}

	/*詳細ページ*/
	.article_header .category {
		margin-bottom: 30px;
	}

	.article_header {
		margin-bottom: 60px;
	}

	.article_content {
		margin-bottom: 100px;
	}

	.article_footer {
		margin-bottom: 120px;
	}
}

@media screen and (min-width: 1024px) {
	/*ヘッダー*/
	.logo img {
		width: 343px;
	}

	/*トップお知らせ*/
	.news_list li a {
		display: grid;
		grid-template-columns: 180px auto;
	}

	.news_list li {
		padding: 30px min(95px, 8%);
	}

	/*フッター*/
	.footer_nav {
		margin-bottom: 30px;
		display: flex;
		justify-content: space-between;
		column-gap: 5%;
	}

	.footer_nav ul li a {
		padding: 5px 0;
		border: none;
		display: inline-block;	
	}

	.footer_nav ul:first-child li:first-child a {
		border-top: none;
	}

	.footer_nav ul li a::before {
		content: '―';
		margin-right: 5px;
	}

	.footer_left {
		width: 50%;
		justify-content: flex-start;
	}

	.footer_right {
		margin-bottom: 0;
		width: 50%;
		padding-right: max(50px,8%);
	}

	.footer_top {
		flex-direction: row;
	}

	/*一覧ページ*/
	.works_wrap ul {
		grid-template-columns: repeat(3, 1fr);
	}
}


@media screen and (min-width: 1280px) {
	/*ヘッダー*/
	.gnav_pc {
		display: block;
	}

	.gnav_sp,
	.Toggle_wrap {
		display: none;
	}

	/*swiper*/
	.swiper-wrapper {
		height: 600px !important;
	}

	.all_slide_controls_wrap {
		display: grid;
		grid-template-columns: auto 160px;
		align-items: center;
		column-gap: 60px;
	}

	.all_slide_controls {
		column-gap: 60px;
	}

	.view_more_btn_wrap {
		margin-top: 0;
	}
}

@media screen and (min-width: 1366px) {
	
}

@media screen and (min-width: 1520px) {
	
}