*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}

body {
    font-family: 'メイリオ', Meiryo,'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
}

a {
  text-decoration: none;
}

li {
    list-style: none;
}

.btn-cont {
  width: 100%;
  text-align: center;
  margin-top: 50px;
}

.btn {
  text-align: center;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  color: #fff;
  background: #f56500;
}

/*****************************************
header
****************************************/









/* ヘッダー */
.header {
  background-color: white;
  width: 100%;
  height: 90px;
}

.header__inner {
  overflow: hidden;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  position: relative;
}


/* ヘッダーのロゴ部分 */

.header__title a {
  font-weight: bold;
  text-decoration: none;
  color: #333;
}

/* ヘッダーのナビ部分 */
.header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  background-color: #fff;
  transition: ease .4s;
  z-index: 999;
}


.nav-items {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
}

/* ナビのリンク */
.nav-items__item a {
  width: 100%;
  display: block;
  text-align: center;
  margin-bottom: 24px;
  box-sizing: border-box;
  color: #333;
  font-weight: bold;
}

.nav-items__item:last-child a {
  margin-bottom: 0;
}

@media screen and (min-width: 960px) {
  .header__inner {
    padding: 0 10%;
  }

  .header__nav {
    position: static;
    transform: initial;
    background-color: inherit;
    height: inherit;
    display: flex;
  }

 .nav__items {
    width: 100%;
    display: flex;
    align-items: center;
    height: initial;
  }

  .nav__items li:first-child {
    margin-left: 0;
  }

  .header__inner {
    display: flex;
    justify-content: space-between;
  }

  .nav-items {
    width: auto;
    margin: 0 0 0 auto;
    position: static;
    transform: none;
  }

  .nav-items__item {
    margin: 5px 0 5px 40px;
  }
  
  .nav-items__item a {
    margin-bottom: 0;
  }
}


/* ハンバーガーメニュー */

.header__hamburger {
  width: 38px;
  height: 100%;

}

.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
}

@media screen and (min-width: 960px) {
  .hamburger {
    display: none;
  }
}

/* ハンバーガーメニューの線 */
.hamburger span {
  width: 100%;
  height: 1px;
  background-color: #000;
  position: relative;
  transition: ease .4s;
  display: block;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 8px 0;
}

.hamburger span:nth-child(3) {
  top: 0;
}


/* ハンバーガーメニュークリック後のスタイル */
body.active {
  height: 100%;
  overflow: hidden;
}

.header__nav.active {
  transform: translateX(0);
}

.header__inner.active {
  overflow: initial;
}

.hamburger.active span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;

}

.hamburger.active span:nth-child(3) {
  top: -13px;
  transform: rotate(-45deg);
}












/**************************************
    main
**************************************/
.appeal-warp {
    height: calc(100vh - 90px);
    background-image: url(../images/nami-bg.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.eightmark {
    position: absolute;
    right: 0;
    top: 100px;
    height: 300px;
}

.appeal-text-cont {
    position: absolute;
    width: 50%;
    top: 20%;
    left: 10%;
}

.logo-img-cont > img {
    width: 100%;
    max-height: 80px;
}

.text-cont {
    margin-top: 50px;
}

.appeal-text {
    display: inline-block;
    font-size: 2vw;
    font-weight: 600;
    margin-top: 1rem;
    padding: 10px 15px;
    background-color: rgba(255, 255, 255, .7);
}

@media screen and (max-width: 767px) {
  .appeal-warp {
    height: calc(40vh);
  }

  .appeal-text-cont {
    width: 100%;
    left: 0;
    top: 10%;
    padding: 20px;
    text-align: center;
  }

  .text-cont {
    margin-top: 10px;
  }

  .appeal-text {
    display: inline-block;
    font-size: 3.5vw;
    font-weight: 600;
    margin-top: 1rem;
    padding: 10px 15px;
    background-color: rgba(255, 255, 255, .7);
  }

  .eightmark {
    display: none;
  }
}

/*************************************************
company profile
*************************************************/
.company-profile-warp {
    height: 100vh;
    display: flex;
    flex-wrap: nowrap;
    margin-top: 100px;
}

.profile-imgs-cont {
    width: 50%;
    overflow: hidden;
    align-items: center;
    position: relative;
}

.profile-img {
    position: relative;
    width: 100%;
    height: 100%;
    border-top-right-radius: 400px;
    object-fit: cover;
    object-position: center bottom;
}

.profile-text-cont {
    margin: 300px 0 0 100px;
    width: 30%;
}

.company-profile-title {
    font-size: 36px;
    padding-bottom: .5rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid #000;
}

.profile-text-cont > p {
    font-size: 16px;
    line-height: 2rem;
}

/*****企業概要********/
dl {
  display: flex;
  flex-wrap: wrap;
}

dt {
  width: 35%;
  padding: 15px;
  background-color: #DADADA;
  margin: 0 0 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

dd {
  width: 65%;
  padding: 15px;
  background-color: #F3F3F3;
  margin: 0 0 10px 0;
}

.ls-txt, .ls-title {
  margin: 0;
}


@media screen and (max-width: 1120px) {
  .company-profile-warp {
    display: block;
    height: auto;
  }

  .profile-imgs-cont {
    width: 100%;
    height: 300px;
    overflow: hidden;
    align-items: center;
  }

  .profile-img {
    position: absolute;
    border-top-right-radius: 0;
    object-fit: cover;
    object-position: center bottom;
  }

  .profile-text-cont {
    width: 100%;
    text-align: left;
    margin: 50px 0 0 0;
    padding: 0 50px;
  }
}

@media screen and (max-width: 767px) {

}


/**************************************
service
**************************************/
.service-warp {
    padding-top: 300px;
    padding-bottom: 300px;
}

.service-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 100px;
}

.service-item-cont {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.service-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.service-card {
    width: 300px;
    height: 300px;
    margin: 25px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
}

.service-card:hover {
  cursor: pointer;
  box-shadow: rgba(60, 64, 67, 0.4) 0px 2px 2px 0px, rgba(60, 64, 67, 0.25) 0px 2px 3px 1px;
  transform: translateY(-5px);
}

.service-card:hover .icon, .service-card:hover .card-title {
  color: #407dc0;
}

.icon {
    display: block;
    color: #1D4086;
    font-size: 7rem;
    padding: 50px 0;
}

.card-title {
    color: #1D4086;
    font-size: 1.2rem;
    font-weight: bold;
}

@media screen and (max-width: 1120px) {
  .service-warp {
    padding-top: 100px;
    padding-bottom: 50px;
  }

  .service-title {
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 767px) {
  .service-title {
    font-size: 30px;
    text-align: center;
    margin-bottom: 30px;
  }

  .service-item-cont {
    width: 100%;
    padding: 0 20px;
  }
}

/*****************************************
contact-お問い合わせ
*****************************************/
.contact {
    width: 100%;
    display: flex;
    overflow: hidden;
}

.contact-profile {
    background-image: url(../images/profile-bg.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    width: 50%;
    height: 550px;
}

.contact-contact {
    background-image: url(../images/contact-bg.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    width: 50%;
    height: 550px;
}

.contact-profile > p, .contact-contact > p{
    font-size: 24px;
    color: white;
    position: absolute;
    bottom: 20px;
    left: 30px;
    z-index: 110;
}

.contact-profile::after, .contact-contact::after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    background-color: #333;
    opacity: .1;
    transition: 0.2s;
}

.contact-profile:hover::after{
    opacity: 0;
}

.contact-contact:hover::after{
    opacity: 0;
}

@media screen and (max-width: 767px) {
  .contact {
    width: 100%;
    height: auto;
    display: block;
  }

  .contact-profile, .contact-contact {
    display: block;
  }

  .contact-profile, .contact-contact {
    width: 100%;
    height: 300px;
  }

  .contact-profile > p, .contact-contact > p{
    font-size: 24px;
    color: white;
    position: absolute;
    bottom: 20px;
    left: 30px;
  }

  .contact-profile::after, .contact-contact::after {
    opacity: 0;
  }
}


/********************************
footer
********************************/
.footer-link {
  color: #999;
}

.flex {
  display: flex;
}

hr {
  height: 1px;
  border: 0;
  border-top: 1px solid #e5e7eb;
}

.footer {
  padding: 2rem;
  font-size: 15px;
  color: #999;
  background-color: #fff;
}

.footer__navi {
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer__navi li {
  display: inline-block;
}

.footer__navi li:not(:last-child) {
  margin-right: 16px;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-link:hover {
  color: #616161;
}

@media (min-width: 768px) {
  .md-flex {
    display: flex;
  }

  .md-justify-between {
    justify-content: space-between;
  }

  .copyright {
    text-align: left;
  }
}

/**********************************
  サービス詳細
**********************************/
.service-info-wrap {
  width: 100%;
  padding: 100px 20px;
}

.service-top-cont {
  display: flex;
  margin: 0 auto;
  width: 80%;
  align-items: center;
  justify-content: center;
}

.top-icon {
  font-size: 300px;
}

.service-top-title {
  font-size: 42px;
  font-weight: bolder;
  margin-left: 5rem;
}

.service-info-cont {
  text-align: center;
  margin: 0 auto;
  width: 70%;
  padding: 20px;
  margin-top: 80px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  border-radius: 5px;
}

.info-text {
  display: inline-block;
  text-align: left;
}

.athor-content {

}

.back-btn {
  width: 50%;
  margin: 0 auto;
  text-align: center;
  margin-top: 50px;
}

.back-btn > a {
  color: #eee;
  font-weight: 700;
  background-color: #407dc0;
  border-radius: 5px;
  padding: 10px 25px;
}


@media screen and (max-width: 1120px) {
    .top-icon {
      font-size: 250px;
    }
}

@media screen and (max-width: 767px) {
  .service-top-cont {
    display: block;
    text-align: center;
  }

  .top-icon {
    font-size: 200px;
  }
  
  .service-top-title {
    font-size: 30px;
    font-weight: bolder;
    margin-left: 0;
  }
  
  .service-info-cont {
    text-align: center;
    margin: 0 auto;
    width: 100%;
    margin-top: 30px;
  }
  
  .info-text {
    display: inline-block;
    text-align: left;
  }
}