@charset "utf-8";

/* 共通部分 */

body {
  color: #333;
  font-weight: 500;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.7;
  letter-spacing: .1em;
}
img {
  max-width: 100%;
  object-fit: cover;
}
a {
  transition: .3s;
}
a:hover {
  opacity: .6;
}

.sp {
  display: none;
}
@media (max-width: 768px) {
  .sp {
    display: block;
  }
  .pc {
    display: none !important;
  }
}





/* header */


.header-top {
  position: fixed;
  height: 100px;
  width: 100%;
  background: #fff;
  z-index: 10;
}
.header-inner {
  height: 100%;
  max-width: 1150px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  height: 100%;
}
.header__logo img {
  display: block;
  height: 80%;
  object-fit: contain;
}
.gnav {
  display: flex;
  height: 100%;
  align-items: center;
}
.gnav ul {
  display: flex;
  column-gap: 3vw;
  margin-right: 3vw;
  font-size: clamp(14px, 1.5vw, 20px);
  white-space: nowrap;
}
.contact-btn {
  display: inline-block;
  background: #FC3465;
  color: #FFF;
  padding: 0.5em 3em 0.5em 1em;
  font-size: 20px;
  border-radius: 30px;
  position: relative;
  white-space: nowrap;
}
.contact-btn::after {
  content: "";
  background: url(img/right-arrow.svg) no-repeat center/contain;
  position: absolute;
  right: 15px;
  width: 25px;
  height: 25px;
  top: 50%;
  transform: translateY(-50%);
}
.mv {
  background: url(img/mv.jpg) no-repeat center/cover;
  height: 80vh;
  position: relative;
}
.mv__copy {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(22px, 4vw, 40px);
  color: #fff;
  text-align: center;
  font-family: source-han-serif-japanese, serif;
  font-weight: 400;
  font-style: normal;
  white-space: nowrap;
}
.mv-btn__outer {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .header-top {
    height: 50px;
  }
  .header__logo img {
    width: 100px;
  }
}

/* ハンバーガーメニュー */

.nav__button {
	width: 63px;
	height: 63px;
	position: relative;
	z-index: 10;
}
.nav__button div {
	width: 30px;
	height: 1px;
	background: #333;
	position: absolute;
	transition: transform 0.3s;
	left: 50%;
	transform: translateX(-50%);
}
.nav__button div:nth-of-type(1) {
  transform: translate(-50%, -10px);
}
.nav__button div:nth-of-type(3) {
  transform: translate(-50%, 10px);
}
.nav__button.active div {
background: #333 ;
}
.nav__button.active div:nth-of-type(1) {
	transform: translate(-50%, 0) rotate(45deg);
}
.nav__button.active div:nth-of-type(2) {
	opacity: 0;
	transform: translateX(100%);
}
.nav__button.active div:nth-of-type(3) {
	transform: translate(-50%, 0) rotate(-45deg);
}

.nav {
  transform: translateX(100%);
	width: 100%;
	height: 100vh;
	position: absolute;
	top: 0;
	left: 0;
	transition: 0.3s;
	z-index: 7;
	position: fixed;
	background: #fff;
	transition: .3s;
}
.nav.active {
  transform: none;
}
.nav .inner {
  height: 100%;
}
.nav ul {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
}
.nav__items {
  height: 60px;
  border-bottom: 1px solid #CFCFCF;
}
.nav__items:first-of-type {
  margin-top: 100px;
}
.nav__items a {
  line-height: 60px;
}
.nav-btn__outer {
  text-align: center;
  margin-top: 50px;
}

/* main */

.inner {
  max-width: 1150px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.ttl {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 80px;
  display: inline-block;
  position: relative;
}
.ttl::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 2px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -17px;
  background: #CFCFCF;
}
.ttl__outer {
  text-align: center;
}
.content {
  padding-top: 50px;
  padding-bottom: 100px;
}


@media (max-width: 768px) {
  .ttl {
    font-size: 24px;
  }
}

/* サービス */

.service {
  font-size: 20px;
  font-weight: 700;
}
.service__item {
  display: flex;
  margin-bottom: 20px;
}
.service__ttl {
  color: #fff;
  background: #2F5597;
  font-weight: 700;
  text-align: center;
  width: 280px;
  padding: 20px 50px;
  border-radius: 15px 0 0 15px;
  border: 1px solid #2F5597;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service__text, .service__description {
  flex: 1;
  padding: 20px 20px 20px 70px;
  border-radius: 0 15px 15px 0;
  border: 1px solid #2F5597;
  font-size: 16px;
}
.service__description {
  display: flex;
  align-items: center;
}
.service__img {
  width: 30%;
  object-fit: contain;
  margin-left: 40px;
}
#logo:hover {
  opacity: 0.7 ;
  cursor: pointer;
}

@media (max-width: 768px) {
  .service__item {
    flex-direction: column;
  }
  .service__ttl {
    font-size: 18px;
    padding: 10px;
    border-radius: 15px 15px 0 0;
    width: 100%;
  }
  .service__text, .service__description {
    font-size: 14px;
    border-radius: 0 0 15px 15px;
    padding: 30px 20px 20px;
  }
  .service__description {
    flex-direction: column;
  }
  .service__img {
    margin-left: 0;
    margin-top: 10px;
  }
}

/* コンサルタント */
.content.consultant {
  background: url(img/consultant-bg.jpg) no-repeat center/cover;
  position: relative;
}
.content.consultant::before {
  content: "";
  position: absolute;
  display: block;
  background: #2F5597;
  height: 105%;
  width: 100%;
  top: 50%;
  transform: skewY(-5deg) translateY(-50%);
  z-index: -1;
}
.consultant .ttl {
  color: #fff;
}
.consultant ul {
  display: flex;
  column-gap: 20px;
  justify-content: space-between;
}
.consultant__item {
  display: flex;
  flex-direction: column;
  padding: 30px 25px;
  background-color: #fff;
  width: 32%;
}
.consultant__ttl {
  margin-bottom: 35px;
  font-size: 24px;
  text-align: center;
}
.consultant__text {
  font-size: 16px;
}

@media (max-width: 768px) {
  .content.consultant::before {
    height: 102%;
  }
  .consultant ul {
    flex-direction: column;
  }
  .consultant__item {
    width: 100%;
    margin-bottom: 30px;
  }
  .consultant__ttl {
    font-size: 20px;
  }
  .consultant__text {
    font-size: 14px;
  }
}

/* 会社概要 */
.company__outer {
  border: 1px solid #2F5597;
  padding: 70px;
}
.company dl {
  display: flex;
}
.company dt {
  width: 150px;;
}
.company dd {
  width: calc(100% - 150px);
}

@media (max-width: 768px) {
  .company__outer {
    padding: 30px;
  }
  .company dl {
    flex-direction: column;
    margin-bottom: 20px;
  }
  .company dd {
    font-size: 14px;
    width: 100%;
  }
}


/* お問い合わせ */
.content.contact {
  background: url(img/contact-bg.jpg) no-repeat center/cover;
  color: #fff;
}
.contact__text {
  text-align: center;
  margin-bottom: 50px;
}
.link__outer {
  display: flex;
  flex-direction: column;
}
.contact__phone, .contact__email {
  display: inline-block;
  position: relative;
  padding-left: 50px;
  margin: 0 auto 20px;
  width: 300px;
  font-size: 20px;
}
.contact__phone::before, .contact__email::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
}
.contact__phone::before {
  height: 42px;
  width: 42px;
  background: url(img/phone.svg) no-repeat center/contain;
}
.contact__email::before {
  height: 24px;
  width: 30px;
  background: url(img/email.svg) no-repeat center/contain;
}

/* footer */
footer {
  background: #333333;
  height: 60px;
}
.copyright {
  text-align: center;
  font-size: 13px;
  color: #fff;
  line-height: 60px;
}
