@charset "utf-8";
/* CSS Document */

/* Base Style
---------------------------------------------------------*/

body {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	line-height: 1;
	color: #000000;
}

@media (min-width: 768px) {
	body {
		font-size: 1.5rem
	}
}

a {
	color: #000000;
	text-decoration: none;
}

a,
a:hover,
a i {
	transition: all 0.3s;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

ul {
	list-style: none;
}


/* parts 
---------------------------------------------------------*/
/* flex */
.flex {
	display: flex;
	align-items: center;
	justify-content: center;
}

/* font weight */
.bold {
	font-weight: 700;
}

.extrabold  {
	font-weight: 800;
}

/* container */
.container {
	padding: 2rem 1rem 1.5rem;
	margin-right: auto;
	margin-left: auto;
}

/* section-title */
.section-title {
	margin-top: 2rem;
	margin-bottom: 1rem;
	font-size: 1.5rem;
	text-align: center;
	position: relative;
	font-weight: 700;
}

@media (min-width: 768px) {
	.section-title {
		font-size: 2.25rem;
		margin-bottom: 3rem;
	}
}


/* header 
---------------------------------------------------------*/
.header {
	position: fixed;
	top: 0;
	left: 0rem; 
	right: 0rem;
	height: 4.125rem;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #ffffff;
}

@media (min-width: 768px) {
	.header {
		top: 0;
		height: 5rem;
	}
}

.header-logo {
	display: flex;
	padding-left: 0.5rem;
}

.header-logo a {
	color: #191970;
}

.company-logo {
	width: 3rem;
}

@media (min-width: 768px) {
	.header-logo {
		padding-left: 2.5rem;
		padding-bottom: 0.5rem;
	}
}

/* hamburger button */
.hamburger-button {
	width: 4rem;
	height: 4.125rem;
	font-size: 3.125rem;
	display: flex;
	align-items: center;
	color: #191970;
	transform: scale(1, 0.87);
	padding-left: 0.9375rem;
	padding-bottom: 0.25rem;
}

@media (min-width: 768px) {
	.hamburger-button {
		display: none;
	}
}

.hamburger-button i {
	font-size: 2.0625rem;
}


/* hamburger menu & header nav 
---------------------------------------------------------*/
@media (max-width: 767.9px) {
	.hamburger-menu {
		position: fixed;
		top: 4.125rem;
		left: 0.5rem;
		right: 0.5rem;
		width: calc(100% - 1rem);
		height: auto;
		background-color: #ffffff;
		display: flex;
		flex-direction: column;
		align-items: center;
		transition: opacity 0.5s linear;
		opacity: 0;
		visibility: hidden;
	}
}

/* active */
.hamburger-menu-active {
	opacity: 1;
	visibility: visible;
}

/* navigation */
@media (max-width: 767.9px) {
	.hamburger-menu-list-group {
		display: flex;
		flex-direction: column;
		grid-row-gap: 2.4375rem;
		padding: 3rem 0 2.5rem;
		text-align: center;
		font-size: 1.125rem;
	}
	
	.hamburger-menu-list-group li a {
		line-height: 1;
		color: #191970;
	}
}

@media (min-width: 768px) {
	.header-nav-list-group {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		font-size: 1.5rem;
		min-width: 33.75rem;
		column-gap: 2.25rem;
		height: 100%;
		padding: 0 2.75rem 0.375rem 5rem;
	}
	
	.header-nav-list-group li a {
	color: #191970;
	}
}



/* cover
---------------------------------------------------------*/
.cover {
	position: relative;
	margin-top: 4.125rem;
	z-index: 50;
}

@media (min-width: 768px) {
	.cover {
		margin-top: 5rem;
	}
}

.catch-copy {
	position: absolute;
	display: inline;
	box-sizing: content-box;
	font-size: calc((32 / 393) * 100vw + 1.47px);
	bottom: 2rem;
	left: 2rem;
	color: #191970;
	background-color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 768px){
	.catch-copy {
		font-size: calc((48 / 1151) * 100vw + 48px);
		bottom: 5rem;
	}
}


/* business
---------------------------------------------------------*/
.business {
	position: relative;
	background-color: #fff;
	display: block;
	padding-top: 4.125rem;
	margin-top: -4.125rem;
	margin-bottom: 3rem;
}

@media (min-width: 768px) {
	.business {
		margin-bottom: 10rem;
	}
}

.business .section-title {
	margin-bottom: -1rem;
	z-index: 40;
}


.swiper-slide {
  width: auto;
  height: 15rem;
  text-align: center;
}

@media (min-width: 768px) {
  .swiper-slide {
    width: 54.714rem;
    height: 23.5rem;
  }
}

.swiper-slide img {
	height: 15rem;
}


.swiper-prev-pagination-next {
  display: flex;
  justify-content: space-between;
  position: relative;
  height: auto;
  width: 15rem;
  align-items: center;
  margin-left: calc((100vw - 15rem) / 2);
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .swiper-prev-pagination-next {
    width: 25.6rem;
    margin-left: calc(50vw - 12.8rem);
    margin-top: 2.8rem;
  }
}

.swiper-button-prev,
.swiper-button-next {
  position: static;
  width: 2rem;
  height: 2rem;
  margin: 0;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 1;
}

.swiper-button-prev::after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: '\f053';
  font-size: 1.5rem;
  color: #191970;
}

.swiper-pagination {
  display: flex;
  font-size: 1.5rem;
  font-weight: 700;
  width: calc(100% - 12rem);
  position: relative;
  align-items: center;
  justify-content: center;
  margin-top: 1.3rem;
  margin-right: 0.2rem;
}

@media (min-width: 768px) {
  .swiper-pagination {
    font-size: 2.8rem;
    margin-top: 1.4rem;
    margin-left: -0.5rem;
  }
}

.swiper-pagination-current {
  margin-right: 0.6rem;
}

.swiper-pagination-total {
  margin-left: 0.6rem;
}

@media (min-width: 768px) {
  .swiper-pagination-current {
    margin-right: 0.6rem;
  }

  .swiper-pagination-total {
    margin-left: 0.6rem;
  }
}

.swiper-button-next::after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: '\f054';
  font-size: 1.5rem;
  color: #191970;
}


/* profile
---------------------------------------------------------*/
.profile {
	display: block;
	padding-top: 4.125rem;
	margin-top: -4.125rem;
	margin-bottom: 3rem;
}

@media (min-width: 768px) {
	.profile {
		margin-bottom: 10rem;
	}
}

.profile-list {
	margin:0 auto;
	width: 17rem;
}

.profile-detail {
	display: flex;
	flex-wrap: wrap;
}

@media (min-width: 768px) {
	.profile-list {
		width: 24rem;
	}
}

.profile-detail dd {
	margin-left: 1rem;
}


.profile-detail:last-child dd {
	margin-left: 1.5rem;
}

/* contact
---------------------------------------------------------*/
.contact {
	display: block;
	padding-top: 4.125rem;
	margin-top: -4.125rem;
	margin-bottom: 3rem;
}

@media (min-width: 768px) {
	.contact {
		margin-bottom: 10rem;
	}
}

.contact-detail {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.contact-detail dd {
	margin-left: 1rem;
}



/* footer
---------------------------------------------------------*/
.footer {
	background-color: #000;
}

.footer-title {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.5rem;
	color: #fff;
	padding-top: 2rem;
}

@media (mim-width: 768px) {
	.fotter-title {
		font-size: 2.5rem;
	}
}

.footer-title img {
	width: 3rem;
}

.copyright {
	font-size: 0.8rem;
	color: #fff;
	margin-top: 2rem;
	padding-bottom: 0.5rem;
	text-align: center;
}

@media (min-width: 768px) {
	.copyright {
		margin-top: 5rem;
		padding-bottom: 1rem;
	}
}

