@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;700&family=Noto+Sans:wght@500&display=swap');

/* Normalize CSS */
* {
	box-sizing: border-box;
}
html {
	font-family: sans-serif;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
body,
figure {
	margin: 0;
}
article, footer, header, nav, section {
	display: block;
}
a {
	text-decoration: none;
	background-color: transparent;
	outline: none;
}
a:active, a:hover {
	outline: 0;
}
h1, h2, h3, h4, p, dl, dt, dd, td, th {
	margin: 0;
	padding: 0;
	font-weight: 400;
}
b, strong {
	font-weight: bold;
}
ol, ul {
	margin: 0;
	padding:0;
	list-style: none;
}
img {
	display: block;
	border: 0;
	vertical-align: bottom;
}
/* Variable */
:root {
	--fontsize-normal: 1.6rem;
	--color-white: #fff;
	--color-gray: #999;
	--color-dark-gray: #333;
	--color-light-gray: #f8f8f8;
	--color-black: #000;
	--border-color: #ddd;
}

/*-------------------------
	PC
--------------------------*/
/* Common */
html {
	height: -webkit-fill-available; /*Fix iOS viewport bug*/
	font-size: 10px;
}
body {
	min-width: 950px;
	min-height: 100vh;
	min-height: -webkit-fill-available; /*Fix iOS viewport bug*/
	font-family: 'Noto Sans JP', sans-serif;
	font-size: var(--fontsize-normal);
	font-weight: 300;
	color: var(--color-dark-gray);
}
.baseline {
	padding: 0 3%;
}
h2 {
	margin: 60px 0;
	font-size: 6rem;
}
.noto-sans {
	font-family: 'Noto Sans', sans-serif;
	font-weight: 500;
}
.deco-arrow {
	position: relative;
}
.deco-arrow::before {
	display: block;
	position: absolute;
	width: 24px;
	height: 24px;
	content: '';
	background: var(--color-white) url(../img/arrow.png) center/8px 7px no-repeat;
	border: 1px solid var(--border-color);
	border-radius: 50%;
	transition: all 0.2s ease;
}
/* Header */
.kv {
	display: flex;
	position: relative;
	height: 500px;
	align-items: center;
	color: var(--color-white);
	background: url(../img/kv.jpg) center center/2000px 600px no-repeat
}
.header {
	display: flex;
	position: absolute;
	width: 100%;
	height: 100px;
	top: 0;
}
.logo {
	display: flex;
	width: calc(3% + 80px);
	align-items: center;
	justify-content: flex-start;
	padding-left: 3%;
	transition: all 0.3s ease;
}
.logo a {
	transition: all 0.3s ease;
}
.logo a:hover {
	opacity: 0.6;
}
.gnav {
	display: flex;
	width: calc(97% - 80px);
	align-items: center;
	justify-content: flex-end;
	padding-right: 3%;
}
.gnav a {
	display: block;
	position: relative;
	margin-left: 3%;
	color: var(--color-white);
}
.gnav a::before {
	display: block;
	position: absolute;
	bottom: 0;
	right: 0;
	width: 0;
	height: 1px;
	content: '';
	background: var(--color-white);
	transition: width 0.2s;
}
.gnav a:hover::before {
	width: 100%;
	left: 0;
}
/* KV */
.copy {
	margin-left: 6%;
	font-weight: 700;
}
.copy-main {
	margin: 60px 0 40px 0;
	font-size: 4.8rem;
}
.copy-sub {
	line-height: 200%;
	font-size: 1.82rem;
}
/* News */
.news {
	max-height: 376px;
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
	overflow-y: scroll;
	-ms-overflow-style: none; /* IE,Edge */
	scrollbar-width: none; /* Firefox */
}
.news::-webkit-scrollbar { /* Chrome,Safari */
	display:none;
}
.news-cont {
	display: flex;
}
.news-cont:not(:last-child) {
	border-bottom: 1px solid var(--border-color);
}
.news-cont h3 {
	width: 28%;
	padding: 25px 0 25px 3%;
	font-size: var(--fontsize-normal);
	font-weight: 700;
}
.news-list {
	width: 72%;
}
.news-item {
	display: flex;
}
.news-item:not(:last-child) {
	border-bottom: 1px solid var(--border-color);
}
.news-item dt {
	width: 200px;
	padding: 25px 0 25px 50px;
}
.news-item dt::before {
	left: 10px;
}
.news-item:hover dt::before {
	border: 1px solid var(--color-dark-gray);
}
.news-item dd {
	width: calc(100% - 200px);
}
.news-item a {
	display: block;
	padding: 25px 3% 25px 0;
	color: var(--color-dark-gray);
}
.news-item:hover {
	background: var(--color-light-gray);
}
/* Service */
.service-switch {
	display: none;
}
.service-tab {
	display: flex;
}
.service-tab label {
	display: block;
	position: relative;
	margin-right: 30px;
	padding: 4px 3px 16px 42px;
	cursor: pointer;
	border-bottom: 5px solid var(--color-white);
	transition: all 0.2s ease;
}
.service-tab label::before {
	left: 3px;
}
#service1:checked ~ .service-tab .service-tab1,
#service2:checked ~ .service-tab .service-tab2,
#service3:checked ~ .service-tab .service-tab3 {
	border-bottom: 5px solid var(--color-black);
}
.service-tab label:hover {
	border-bottom: 5px solid var(--border-color);
}
#service1:checked ~ .service-tab .service-tab1:before,
#service2:checked ~ .service-tab .service-tab2:before,
#service3:checked ~ .service-tab .service-tab3:before {
	border: 1px solid var(--color-dark-gray);
}
.service-tab label:hover::before {
	border: 1px solid var(--color-dark-gray);
}
.service-cont {
	position: relative;
	right: 3.19%;
	margin-bottom: 120px;
	padding: 60px 0 60px 3.19%;
	background: var(--color-light-gray);
}
.service-item {
	height: 0;
	opacity: 0;
	visibility: hidden;
	transition: all 0s ease;
	transition: opacity 1.2s ease;
}
#service1:checked ~ .service-cont .service-item1,
#service2:checked ~ .service-cont .service-item2,
#service3:checked ~ .service-cont .service-item3 {
	height: auto;
	opacity: 1;
	visibility: visible;
}
.service-item-text {
	width: 48%;
}
.service-item-text h3 {
	margin-bottom: 40px;
	font-size: 2.6rem;
	font-weight: 700;
}
.service-item-img {
	width: 50%;
	height: 100%;
	position: absolute;
	top: 40px;
	right: -3.19%;
	overflow: hidden;
}
.service-item-img img {
	display: block;
	width: 100%;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}
/* Company */
.company-table dl {
	display: flex;
	justify-content: space-between;
}
.company-table dt {
	width: 25.5%;
	margin-right: 1.5%;
	padding: 25px 0 25px 2%;
	font-weight: 700;
	border-bottom: 1px solid var(--border-color);
}
.company-table dd {
	width: 73%;
	padding: 25px 0 25px 2%;
	border-bottom: 1px solid var(--border-color);
}
.company-table dl:first-child dt,
.company-table dl:first-child dd {
	border-top: 1px solid var(--border-color);
}
.company-table a {
	color: var(--color-dark-gray);
	text-decoration: underline;
}
.company-table a:hover {
	text-decoration: none;
}
/* Footer */
.footer {
	margin-top: 100px;
	padding: 25px 0;
	text-align: center;
	font-size: 1.2rem;
	color: var(--color-gray);
	background: var(--color-dark-gray);
}