@charset "UTF-8";

/* --- 全体共通のスタイル --- */

html {
	box-sizing: border-box;
}

*, *::before, *::after {
	box-sizing: inherit;
}

img {
	border: 0;
	vertical-align: top;
}

body {
	background-color: #fff;
	color: #333333;
	margin: 80px 0 0 0;
	line-height: 1.8em;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-size: 16px;
}

@media screen and (max-width: 768px) {
	body {
		margin: 70px 0 0 0;
		font-size: 14px;
	}
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
	color: inherit;
}
        
[id] {
	scroll-margin-top: 80px;
}

@media screen and (max-width: 768px) {
	[id] {
		scroll-margin-top: 70px;
	}
}
/* --- ヘッダーのスタイル --- */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 80px;
	background-color: #fff;
	z-index: 99;
}

header .wrapper {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	height: 80px;
	justify-content: space-between;
	align-items: center;
	padding: 0 30px;
}

@media screen and (max-width: 768px) {
	header {
		height: 70px;
	}
	
	header .wrapper {
		padding: 0 20px;
		height: 70px;
	}
}

header h1 img {
	height: 32px;
	width: auto;
}

@media screen and (max-width: 768px) {
	header h1 img {
		height: 26px;
	}
}

/* --- PC用メニューのスタイル --- */
header ul {
	display: flex;
	gap: 20px;
	font-weight: 700;
}
@media screen and (max-width: 768px) {
	header ul {
		display: none;
	}
}

/* --- ハンバーガーメニューのスタイル --- */
.hamburger-menu {
	display: none;
}

@media screen and (max-width: 768px) {
	.hamburger-menu {
		width: 30px;
		height: 24px;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		cursor: pointer;
		position: relative;
		z-index: 101;
	}

	.hamburger-menu span {
		display: block;
		width: 100%;
		height: 2px;
		background-color: #333333;
		border-radius: 2px;
		transition: transform 0.3s, opacity 0.3s;
	}

	.hamburger-menu.is-active span:nth-child(1) {
		transform: translateY(10.5px) rotate(45deg);
	}
	.hamburger-menu.is-active span:nth-child(2) {
		opacity: 0;
	}
	.hamburger-menu.is-active span:nth-child(3) {
		transform: translateY(-10.5px) rotate(-45deg);
	}
}

/* --- モーダルメニューのスタイル --- */
.modal-menu {
	display: none;
}

@media screen and (max-width: 768px) {
	.modal-menu {
		display: none;
		position: fixed;
		top: 70px;
		left: 0;
		width: 100%;
		height: calc(100vh - 70px);
		background-color: rgba(46, 105, 178, 0.95);
		justify-content: center;
		align-items: center;
		text-align: center;
		flex-direction: column;
		z-index: 100;
		overflow-y: auto;
	}
}

.modal-menu.is-active {
	display: flex;
}

.modal-menu li {
	margin: 20px 0;
}
.modal-menu a {
	color: #FFFFFF;
	font-weight: 700;
	font-size: 16px;
}

/* --- main内のスタイル --- */
.main_img {
	background-image: url("../img/bg.png");
	aspect-ratio: 2 / 1;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

.main_img .fukunaga-rotated {
	position: absolute;
    top: -233px;
    left: 107px;
	transform: rotate(90deg);
	transform-origin: top left;
	font-size: 215px;
	font-weight: 900;
	mix-blend-mode: difference;
	color: #F18D7C;
}

@media screen and (max-width: 1440px) {
	.main_img .fukunaga-rotated {
		top: -130px;
		left: 66px;
		font-size: 120px;
	}
}

@media screen and (max-width: 1150px) {
	.main_img .fukunaga-rotated {
		top: -74px;
        left: 44px;
        font-size: 69px;
	}
}

@media screen and (max-width: 768px) {
	.main_img .fukunaga-rotated {
		top: -43px;
        left: 29px;
        font-size: 40px;
	}
}

@media screen and (max-width: 460px) {
	.main_img .fukunaga-rotated {
		top: -34px;
        left: 26px;
        font-size: 32px;
	}
}

.main_img .main-rotated {
	position: absolute;
	color: #FFFFFF;
	font-weight: 700;
	display: inline-block;
	line-height: 1.6em;
	font-size: 50px;
	padding: 0;
	top: 50%; /* 上から50%の位置 */
	right: 0; /* 右端に配置 */
	transform: translateY(-50%); /* 自身の高さの半分だけ上方向に移動 */
	margin: 0;
}

@media screen and (max-width: 1440px) {
	.main_img .main-rotated {
		font-size: 36px;
	}
}

@media screen and (max-width: 1150px) {
	.main_img .main-rotated {
		font-size: 30px;
	}
}

@media screen and (max-width: 768px) {
	.main_img .main-rotated {
		font-size: 19px;
	}
}

@media screen and (max-width: 460px) {
	.main_img .main-rotated {
		font-size: 16px;
	}
}

.section-container .main-rotated span {
	background-color: #2E69B2;
}

.section-container .main-rotated span.space {
	padding-left: 0.55em;
}

.main_top {
	background-color: #2E69B2;
}

.main_top .wrapper {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	padding: 30px;
	align-items: center;
}

.main_top .wrapper h2 {
	width: 50%;
	font-weight: 400;
	font-size: 16px;
	color: #FFFFFF;
}

.main_top .wrapper span {
	display: block;
	font-weight: 700;
	font-size: 26px;
	padding: 0 0 10px 0;
	line-height: 1.3em;
}

.main_top .wrapper .imgArea {
	width: 40%;
}

@media screen and (max-width: 768px) {
	.main_top .wrapper {
		display: block;
	}

	.main_top .wrapper h2 {
		width: 100%;
		font-size: 14px;
		padding: 0;
		margin: 0;
	}

	.main_top .wrapper span {
		font-size: 16px;
		padding: 0 0 8px 0;
		margin: 0;
	}

	.main_top .wrapper .imgArea {
		width: 100%;
		padding: 25px 0 0 0;
	}
}

.main_top .wrapper .imgArea img {
	width: 100%;
	height: auto;
}

#company,
#business,
#links {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 30px;
}

#company .wrapper,
#business .wrapper {
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 100px 0;
}

#company .wrapper {
	border-bottom: solid 1px #A6BBD5;
}


#company .wrapper h3,
#business .wrapper h3 {
	width: 25%;
	font-size: 26px;
	padding: 0 0 0 25px;
	line-height: 1.3em;
	margin: 0;
	color: #2e69b2;
	background-image: url("../img/circle.png");
	background-repeat: no-repeat;
	background-position: 0 10px;
	font-weight: 700;
}

#company .wrapper .sectionBox,
#business .wrapper .sectionBox {
	width: 75%;
}

@media screen and (max-width: 768px) {

	#company .wrapper {
		border-bottom: 0;
	}
	
	#company .wrapper,
	#business .wrapper {
		display: block;
		padding: 40px 0 0 0;
	}
	
	#business .wrapper {
		padding: 40px 0 40px 0;
	}

	#company .wrapper h3,
	#business .wrapper h3 {
		width: 100%;
		font-size: 21px;
		padding: 0 0 0 16px;
		background-position: 0 9px;
		background-size: 12px 12px;
	}
	
	#business .wrapper p {
		padding-top: 10px;
	}

	#company .wrapper .sectionBox,
	#business .wrapper .sectionBox {
		width: 100%;
	}
}

.sectionBox table,
table.sectionBox {
	border-top: solid 1px #A6BBD5;
	width: 100%;
}

.sectionBox table th,
.sectionBox table td,
table.sectionBox th,
table.sectionBox td {
	border-bottom: solid 1px #A6BBD5;
	padding: 40px 0;
}

.sectionBox table th,
table.sectionBox th {
	width: 25%;
	text-align: left;
}

table.sectionBox td {
}

table.sectionBox td a {
	color: #2e69b2;
	text-decoration: underline;
}

@media screen and (max-width: 768px) {
	.sectionBox table,
	table.sectionBox {
		border-top: solid 1px #A6BBD5;
		width: 100%;
		margin-top: 15px;
	}

	.sectionBox table th,
	.sectionBox table td,
	table.sectionBox th,
	table.sectionBox td {
		border-bottom: solid 1px #A6BBD5;
		padding: 0px 0;
		display: block;
	}

	.sectionBox table th,
	table.sectionBox th {
		width: auto;
		text-align: left;
		border-bottom: 0;
		padding: 15px 0 0 0;
	}

	.sectionBox table th br,
	table.sectionBox th br {
		display: none;
	}

	.sectionBox table td,
	table.sectionBox td {
		padding: 0 0 15px 0;
	}

	table.sectionBox td {
	}

	table.sectionBox td a {
		color: #2e69b2;
		text-decoration: underline;
	}
}


.sectionBox p {
	padding: 0;
	margin: 0;
	font-weight: 700;
}

.businessBox {
	display: flex;
	justify-content: space-between;
}

.businessBox article {
	margin-top: 30px;
	width: calc((100% - 20px) / 2);
	background-color: #2E69B2;
	color: #FFFFFF;
}

.businessBox article img {
	object-fit: cover;
	width: 100%;
	aspect-ratio: 16 / 9;
}

.businessBox article h4 {
	font-size: 14px;
	padding: 25px 0 15px 0;
	font-weight: 400;
	margin: 0 25px;
	border-bottom: solid 1px #A6BBD5;
}

.businessBox article span {
	display: block;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5;
}

.businessBox article p {
	font-size: 13px;
	padding: 20px 0 20px 0;
	font-weight: 400;
	margin: 0 25px;
	line-height: 1.7;
}

@media screen and (max-width: 768px) {
	.businessBox {
		display: block;
	}

	.businessBox article {
		margin-top: 15px;
		width: 100%;
	}

	.businessBox article img {
		object-fit: cover;
		width: 100%;
		aspect-ratio: 16 / 9;
	}

	.businessBox article h4 {
		font-size: 14px;
		padding: 25px 0 15px 0;
		font-weight: 400;
		margin: 0 25px;
		border-bottom: solid 1px #A6BBD5;
	}

	.businessBox article span {
		display: block;
		font-size: 18px;
		font-weight: 700;
		line-height: 1.5;
	}

	.businessBox article p {
		font-size: 13px;
		padding: 20px 0 20px 0;
		font-weight: 400;
		margin: 0 25px;
		line-height: 1.7;
	}
}

#recruit {
	width: 100%;
	background-color: #f4fafa;
}

#recruit .wrapper {
	max-width: 1100px;
	margin: 0 auto;
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 100px 30px;
}

#recruit .wrapper h3 {
	width: 25%;
	font-size: 26px;
	padding: 0 0 0 25px;
	line-height: 1.3em;
	margin: 0;
	color: #2e69b2;
	background-image: url("../img/circle.png");
	background-repeat: no-repeat;
	background-position: 0 10px;
	font-weight: 700;
}
#recruit .wrapper .sectionBox {
	width: 75%;
}

@media screen and (max-width: 768px) {
	#recruit .wrapper {
		display: block;
		padding: 40px 0;
	}

	#recruit .wrapper h3 {
		width: auto;
		font-size: 21px;
		padding: 0 0 10px 16px;
		background-position: 0 9px;
		background-size: 12px 12px;
		margin-left: 30px;
	}
	
	#recruit .wrapper .sectionBox {
		width: 100%;
		padding: 0 30px;
	}
	
}

#recruit .wrapper .sectionBox article {
	padding: 80px 0 0 0;
}

#recruit .wrapper .sectionBox article h4 {
	padding: 0 0 20px 0;
	margin: 0;
	color: #2E69B2;
	font-size: 20px;
	font-weight: 700;
}

#recruit .wrapper .sectionBox article p {
	font-weight: 400;
}

#recruit .wrapper .sectionBox article div {
	background-color: #FFFFFF;
	border-radius: 10px;
	padding: 25px;
	text-align: center;
	color: #2E69B2;
	font-weight: 700;
	margin-top: 20px;
}
@media screen and (max-width: 768px) {
	#recruit .wrapper .sectionBox article {
		padding: 30px 0 0 0;
	}

	#recruit .wrapper .sectionBox article h4 {
		padding: 0 0 5px 0;
		margin: 0;
		color: #2E69B2;
		font-size: 16px;
		font-weight: 700;
	}

	#recruit .wrapper .sectionBox article p {
		font-weight: 400;
	}

	#recruit .wrapper .sectionBox article div {
		background-color: #FFFFFF;
		border-radius: 10px;
		padding: 25px;
		text-align: left;
		color: #2E69B2;
		font-weight: 700;
		margin-top: 10px;
	}

	#recruit .wrapper .sectionBox article div br {
		display: none;
	}
}
#links .wrapper {
	width: 100%;
	padding: 100px 0;
}

#links .wrapper h3 {
	width: 100%;
	font-size: 26px;
	padding: 0 0 0 25px;
	line-height: 1.3em;
	margin: 0;
	color: #2e69b2;
	background-image: url("../img/circle.png");
	background-repeat: no-repeat;
	background-position: 0 10px;
	font-weight: 700;
}

#links .wrapper ul {
	display: flex;
	flex-wrap: wrap;
	gap: 1px;
	padding: 0;
	margin: 30px 0 0 0;
}

#links .wrapper ul li {
	flex-basis: calc(25% - 1px);
	gap: 1px;
	padding: 0;
	margin: 0;
}

@media screen and (max-width: 768px) {
	#links .wrapper {
		width: 100%;
		padding: 40px 0;
	}

	#links .wrapper h3 {
		width: 100%;
		font-size: 21px;
		padding: 0 0 0 16px;
		background-position: 0 9px;
		background-size: 12px 12px;
	}

	#links .wrapper ul {
		display: flex;
		flex-wrap: wrap;
		gap: 1px;
		padding: 0;
		margin: 10px 0 0 0;
	}
	
	#links .wrapper ul li {
		flex-basis: calc(50% - 1px);
	}
}

#links .wrapper ul li a {
	display: flex;
	color: #FFFFFF;
	background-color: #2e69b2;
	padding: 10px;
	justify-content: center;
	width: 100%;
	height: 100%;
	text-decoration: none;
	align-items: center;
}

@media screen and (max-width: 1150px) {
	#links .wrapper ul li a {
		font-size: 11px;
	}
}

@media screen and (max-width: 460px) {
	#links .wrapper ul li a {
		font-size: 10px;
	}
}

#links .wrapper ul li a span {
}

#links .wrapper ul li a img {
	width: 13px;
	height: 13px;
	flex-shrink: 0;
	margin-left: 8px;
}

#contact {
	width: 100%;
	background-color: #2b4f9b;
}

#contact .wrapper {
	max-width: 1100px;
	margin: 0 auto;
	width: 100%;
	padding: 55px 30px 65px 30px;
}

#contact h3 {
	text-align: center;
	font-size: 23px;
	padding: 0;
	line-height: 1.3em;
	margin: 0;
	color: #ffffff;
	font-weight: 700;
}

.contactBox {
	display: flex;
	justify-content: space-between;
}

.contactBox article {
	margin-top: 30px;
	width: calc((100% - 20px) / 2);
}

.contactBox article a {
	display: block;
	text-align: center;
	color: #2E69B2;
	background-color: #FFFFFF;
	padding: 30px 10px 30px 10px;
	width: 100%;
	height: 100%;
	text-decoration: none;
}

.contactBox article.tel {
	font-size: 18px;
	font-weight: 700;
}

.contactBox article.tel strong {
	font-size: 39px;
	display: block;
	font-weight: 700;
}

.contactBox article.tel a img {
	width: 24px;
	height: 38px;
	flex-shrink: 0;
	margin-right: 8px;
}

.contactBox article.mail {
	font-size: 18px;
	font-weight: 700;
}

.contactBox article.mail strong {
	font-weight: 700;
	font-size: 20px;
	display: block;
}

.contactBox article.mail a img {
	width: 30px;
	height: 22px;
	flex-shrink: 0;
	margin-top: 4px;
	margin-right: 8px;
}
@media screen and (max-width: 768px) {
	
	#contact {
		width: 100%;
		background-color: #2b4f9b;
	}

	#contact .wrapper {
		max-width: 1100px;
		margin: 0 auto;
		width: 100%;
		padding: 40px 30px 40px 30px;
	}

	#contact h3 {
		text-align: center;
		font-size: 21px;
		padding: 0;
		line-height: 1.3em;
		margin: 0;
		color: #ffffff;
		font-weight: 700;
	}
	
	.contactBox {
		display: block;
	}

	.contactBox article {
		margin-top: 15px;
		width: 100%;
	}

	.contactBox article a {
		display: block;
		text-align: center;
		color: #2E69B2;
		background-color: #FFFFFF;
		padding: 30px 10px 30px 10px;
		width: 100%;
		height: 100%;
		text-decoration: none;
	}

	.contactBox article.tel {
		font-size: 18px;
		font-weight: 700;
	}

	.contactBox article.tel strong {
		font-size: 31px;
		display: block;
		font-weight: 700;
	}

	.contactBox article.tel a img {
		width: 21px;
		height: 34px;
		flex-shrink: 0;
		margin-right: 8px;
	}

	.contactBox article.mail {
		font-size: 14px;
		font-weight: 700;
	}

	.contactBox article.mail strong {
		font-weight: 700;
		font-size: 16px;
		display: block;
	}

	.contactBox article.mail a img {
		width: 30px;
		height: 22px;
		flex-shrink: 0;
		margin-top: 4px;
		margin-right: 8px;
	}
	
}

footer {
	margin: 0;
	background-color: #2E69B2;
}

footer section {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

footer section address {
	width: 50%;
	padding: 30px;
	max-width: 550px;
	font-style: normal;
	color: #FFFFFF;
}

footer section address h4 {
	padding: 0;
	margin: 0;
	font-size: 18px;
}

footer section address p {
	padding: 0;
	margin: 0;
}

footer section iframe {
	width: 50%;
}

footer .copy {
	max-width: 1100px;
	margin: 0 auto;
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 30px 30px 30px 30px;
	text-align: center;
	font-size: 12px;
	color: #FFFFFF;
}

@media screen and (max-width: 768px) {
	footer {
		margin: 0;
		background-color: #2E69B2;
	}

	footer section {
		display: block;
		justify-content: flex-end;
		align-items: center;
	}

	footer section address {
		width: 100%;
		padding: 30px;
		max-width: 550px;
		font-style: normal;
		color: #FFFFFF;
	}

	footer section address h4 {
		padding: 0;
		margin: 0;
		font-size: 16px;
	}

	footer section address p {
		padding: 0;
		margin: 0;
	}

	footer section iframe {
		width: 100%;
	}

	footer .copy {
		max-width: 1100px;
		margin: 0 auto;
		width: 100%;
		display: flex;
		justify-content: space-between;
		padding: 30px 30px 30px 30px;
		text-align: center;
		font-size: 10px;
		color: #FFFFFF;
	}
}

/* --- ページトップへ戻るボタンのスタイル --- */
.page-top {
	position: fixed;
	right: 20px;
	bottom: 20px;
	width: 50px;
	height: 50px;
	background-color: rgba(0, 0, 0, 0.6);
	color: #fff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s;
	z-index: 99;
}

.page-top.is-visible {
	opacity: 1;
	visibility: visible;
}