@charset "UTF-8";
body{
  font-family: "Roboto" , "Noto Sans JP", sans-serif;
  color:#333;
  line-height: 1.6;
}

.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}

.visible-pc {
  display: block;
}

.visible-sp {
  display: none;
}


/* Header */
.header {
  background: #fff;
}

.header__inner {
  height: 90px;
  padding: 0 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__nav-list {
  display: flex;
  gap: 30px;
}

.header__nav-link {
  text-decoration: none;
  color: #151515;
}

.header__nav-link.active {
  color: #DD1B57;
}

.header__nav-link:hover {
  color: #0077cc;
}

/* Hero */
.hero__title {
  max-width: 100%;
}

.hero__title img {
  width: 100%;
}

/* News */

.news{
  margin-bottom: 95px;
}
.news__inner {
  display: flex;
  justify-content: space-between;
  padding-top: 60px;
  gap: 90px;
}

.news__title ,.service__title{
  font-size: 40px;
  font-weight: bold;
  line-height: 40px;
  letter-spacing: 2px;
  color: #DD1B57;
  white-space: nowrap;
  padding-right: 20px;
  width: 165px;
}

.news__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news__item {
  display: flex;
  gap: 27px;
  flex-wrap: wrap;
  font-size: 15px;
  color: #333;
  border-bottom: 1px solid #E8E8E8;
  padding: 15px 0;
}

.news__date {
  width: 77px;
}

.news__content {
  flex: 1;
  min-width: 0;
}

/* Service */
.service {
  position: relative;
  margin-bottom: 100px;
}

.service::before {
  content: "SERVICE";
  position: absolute;
  right: 0;
  top: -40px;
  font-size: 168px;
  line-height: 168px;
  color: #f2f2f2;
  font-weight: bold;
  z-index: -10;
  pointer-events: none;
}

.service__title {
  margin-bottom: 50px;
}

.service__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  justify-items: center;
}

.service__item {
  width: 100%;
  max-width: 350px;
  border-radius: 8px;
  padding: 50px;
  background: #fff;
  box-shadow: 0px 3px 21px 0px rgba(0, 0, 0, 0.16);
  text-align: center;
}

.service__item-img{
  width: 48px;
  margin: 0 auto 5px;
}

.service__item-img img{
  padding: 6px;
}

.service__item-title {
  font-size: 18px;
  font-weight: bold;
  line-height: 20.7px;
  margin-bottom: 20px;
}

.service__item-text {
  font-size: 14px;
  line-height: 23.8px;
  text-align: left;
  font-weight: 500;
}


/* Footer */
.footer {
  background-color: #dd1b57;
  color: #fff;
  padding: 60px 0 50px;
  text-align: left;
}

.footer__nav-list {
  display: flex;
  justify-content: left;
  gap: 30px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer__nav-link {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}

.footer__nav-link:hover {
  text-decoration: underline;
}

.footer__copyright {
  font-size: 14px;
}

/* message */

.subheader{
  position: relative;
  max-width: 100%;
  margin-bottom: 60px;
}

.subheader img{
  width: 100%;
}

.subheader__title{
  font-size: 40px;
  font-weight: bold;
  color: #FFF;
  line-height: 40px;
  letter-spacing: calc(40px * 0.1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.section-title{
  font-size: 40px;
  font-weight: bold;
  line-height: 60px;
  letter-spacing: calc(40px * 0.05);
  color: #DD1B57;
  text-align: center;
  margin-bottom: 20px;
}

.section-subtitle{
  font-size: 18px;
  line-height: 28.8px;
  letter-spacing: calc(18px * 0.05);
  text-align: center;
  font-weight: 500;
  margin-bottom: 40px;
}

.section-inner{
  max-width: 830px;
  padding: 0 20px;
  margin: 0 auto;
}

.section-inner img{
  width: 100px;
  height: 100px;
  border-radius: 50%;
  float: left;
  margin-right: 25px;
  margin-bottom: 25px;
}

.section-inner p{
  font-size: 16px;
  font-weight: 500;
  line-height: 25.6px;
  letter-spacing: calc(16px * 0.05);
  margin-bottom: 80px;
}

.section-inner p a{
  color: #349BF4;
  text-decoration: underline;
}

.section-inner p::after{
  clear: both;
}

.message__image{
  max-width: 1150px;
  padding: 0 20px;
  margin: 0 auto 100px;
}

.message__image img{
  width: 100%;
}

/* company */

.company-profile{
  margin-bottom: 50px;
}

.company-profile__item{
  padding: 30px;
  border-bottom: 1px solid #ddd;
  display: flex;
  gap: 57px;
  color: #333;
}

.company-profile__term{
  font-size: 15px;
  font-weight: bold;
  line-height: 17.3px;
  letter-spacing: calc(15px * 0.05);
  width: 150px;
}

.company-profile__desc{
  font-size: 15px;
  font-weight: 500;
  line-height: 17.3px;
  letter-spacing: calc(15px * 0.05);
  flex: 1;
  font-weight: 500;
}

.map{
  width: 100%;
  height: 400px;
  margin-bottom: 80px;
}

.company-news{
  margin-bottom: 50px;
}

.company-news__item{
  padding: 15px 0px;
  border-bottom: 1px solid #ddd;
  display: flex;
  color: #333;
}

.company-news__date{
  font-size: 15px;
  font-weight: 500;
  line-height: 27px;
  width: 97px;
}

.company-news__text{
  flex: 1;
  font-size: 15px;
  font-weight: 500;
  line-height: 27px;
}


@media screen and (max-width: 767px){
  .visible-pc {
    display: none;
  }

  .visible-sp {
    display: block;
  }

  .header__inner {
    height: 60px;
    padding: 0 0 0 20px;
  }

  /* ハンバーガーボタン */
  .hamburger {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #DD1B57;
    border: 1px solid #707070;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 1001;
  }

  .hamburger.open {
    border: none;
  }

  .hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    border-radius: 50%;
    background: #FFF;
    transition: 0.5s;
  }

  .hamburger.open span {
    background: #FFF;
    transition: 0.5s;
  }

  .hamburger.open span:first-of-type{
    transform: rotate(45deg) translate(6px, 5px) scale(1.1);
  }

  .hamburger.open span:nth-of-type(2){
    transform: translateX(65px) scale(0);
  }

  .hamburger.open span:last-of-type{
    transform: rotate(-45deg) translate(6px, -5px) scale(1.1);
  }

  /* スマホメニュー */
  .header__nav-sp {
    visibility: hidden;
    position: absolute;
    top: 0;
    right: 0;
    width: 53%;
    height: 100%;
    background: RGB(221,27,87);
    opacity: 0;
    z-index: 1000;
    transition: 0.3s ease;
  }

  .header__nav-sp ul {
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
    list-style: none;
    gap: 25px;
    margin-top: 90px;
    padding-left: 50px;
    font-weight: bold;
    font-size: 16px;
  }

  .header__nav-sp a {
    text-decoration: none;
    color: #fff;
  }


  .header__nav-sp a.active {
    opacity: 0.6;
  }


  /* メニュー表示時 */
  .header__nav-sp.active {
    opacity: 1;
    visibility: visible;
    transition: 0.3s ease;
  }

  /* News */

  .news{
    margin-bottom: 52px;
  }
  .news__inner {
    flex-direction: column;
    padding-top: 40px;
    gap: 20px;
  }

  .news__title ,.service__title{
    font-size: 32px;
    line-height: 32px;
  }

  .news__list {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .news__item {
    flex-direction: column;
    gap: 0px;
    flex-wrap: wrap;
  }

  .news__date {
    width: 77px;
  }

  .news__content {
    max-width: 758px;
    line-height: 27px;
  }

/* Service */

  .service {
    margin-bottom: 60px;
  }

.service__title {
    margin-bottom: 21px;
  }

  .service__background-text {
    top: 0;
    font-size: 70px;
    line-height: 70px;
  }

  .service__list {
    gap: 20px;
  }

  .service__item {
    padding: 40px 30px;
  }

  /* Footer */
  .footer__nav-link {
    gap: 25px;
    font-size: 12px;
  }

  /* message */

  .subheader{
    margin-bottom: 40px;
  }

  .subheader__title{
    font-size: 28px;
    line-height: 28px;
    letter-spacing: calc(28px * 0.1);
  }

  .section-title{
    font-size: 24px;
    line-height: 36px;
    letter-spacing: calc(24px * 0.05);
    margin-bottom: 15px;
  }

  .section-subtitle{
    font-size: 15px;
    line-height: 24px;
    letter-spacing: calc(15px * 0.05);
    margin-bottom: 30px;
  }

  .section-inner img{
    margin-right: 15px;
    margin-bottom: 15px;
  }

  .section-inner p{
    font-size: 15px;
    line-height: 24px;
    letter-spacing: calc(15px * 0.05);
    margin-bottom: 50px;
  }

  .message__image{
    margin-bottom: 60px;
  }

  /* company */

  .company-profile__item{
    padding: 20px 0 ;
    border-bottom: 1px solid #ddd;
    display: flex;
    color: #333;
    gap: 25px;
  }

  .company-profile__term{
    font-size: 14px;
    font-weight: bold;
    line-height: 21px;
    width: 75px;
  }

  .company-profile__desc{
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
  }

  .map{
    width: 100%;
    height: 300px;
    margin-bottom: 50px;
  }

  .company-news{
    margin-bottom: 60px;
  }

  .company-news__item{
    flex-direction: column;
  }

  .company-news__text{
    line-height: 24px;
  }



}