@charset "UTF-8";

:root {
  --link-color: #349bf4;
  --main-color: #dd1b57;
  --text-color: #333;
}

/* 全体
-------------------*/
body {
  font-family: "Roboto", "Noto Sans JP", Arial, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  color: var(--text-color);
}

a {
  color: var(--link-color);
  text-decoration: underline;
}

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

/* レイアウト
-------------------*/
.wrapper {
  overflow-x: hidden;
}
.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 30px;
}
.content {
  display: grid;
  padding: 60px 0 100px;
  row-gap: 80px;
}

/* 見出し
-------------------*/
.heading-primary {
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--main-color);
}

/*--------------------------------
 テーブル
---------------------------------*/
.table-type01 {
  width: 100%;
  font-size: 15px;
  border-collapse: collapse;
  border-spacing: 0;
}

.table-type01 tr {
  border-bottom: solid 1px #ddd;
}

.table-type01 th,
.table-type01 td {
  text-align: left;
  padding: 30px;
}

.table-type01 th {
  width: 20%;
}

.table-type01 p:not(:last-child) {
  margin-bottom: 10px;
}

.table-type01 ul {
  margin-left: 20px;
}

/* ヘッダー
-------------------*/
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  padding: 30px 70px;
}
.header__logo {
  line-height: 1;
}

/* グローバルナビ
-------------------*/
.gnav__list {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  column-gap: 30px;
}
.gnav__item {
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: .05em;
}
.gnav__link {
  color: var(--text-color);
  text-decoration: none;
}
.gnav__link:hover {
  color: var(--main-color);
}
.gnav__link-active {
  color: var(--main-color);
}
.btn-menu {
  display: none;
}

/* メインビジュアル
-------------------*/
.mv {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 600px;
  background-image: url(images/pc_bg_mv.jpg);
  background-repeat: no-repeat;
  background-position:  center center;
  background-size: cover;
}
.mv__titleArea {
  color: #fff;
  text-align: center;
}
.mv__title {
  font-size: 160px;
  font-weight: bold;
  line-height: 1;
  text-shadow: 0 4px 6px rgb(0 0 0 / 25%);
  margin-bottom: 10px;
}
.mv__subtitle {
  font-size: 24px;
  line-height: 1;
  letter-spacing: .1em;
}

/* ニュース
-------------------*/
.news__inner {
  display: flex;
  column-gap: 90px;
}
.news__body {
  flex: 1;
}
.news-list__link {
  display: flex;
  color: var(--text-color);
  text-decoration: none;
}
.news-list__link:hover {
  color: var(--main-color);
}
.news-list__item {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e8e8e8;
}
.news-list__item:last-child {
  margin-bottom: 0;
}
.news-list__title {
  font-size: 15px;
  line-height: 1.8;
}
.news-list__date {
  margin-right: 20px;
}

/* サービス
-------------------*/
.service__heading {
  position: relative;
  margin-bottom: 50px;
}
.service__heading::before {
  display: block;
  content: "SERVICE";
  position: absolute;
  top: -40px;
  right: -20px;
  z-index: -1;
  font-size: 168px;
  font-weight: bold;
  line-height: 1;
  color: #f2f2f2;
}
.service-list {
  display: grid;
  column-gap: 30px;
  grid-template-columns: repeat(3, 1fr);
}
.service-list__item {
  padding: 50px;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 3px 21px rgba(0, 0, 0, 0.16);
}
.service-list__img-wrapper {
  text-align: center;
  margin-bottom: 10px;
}
.service-list__img {
  font-size: 48px;
  color: var(--main-color);
  vertical-align: bottom;
}
.service-list__title {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.service-list__text {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 15px;
}

/* 仮想ページ：ヘッダー
-------------------*/
.page-header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 190px;
  background-image: url(images/pc_header.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.page-header__titleArea {
  color: #fff;
  text-align: center;
}
.page-header__title {
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
}

/* 仮想ページ：メッセージ
-------------------*/
.message {
  max-width: 850px;
  margin: 0 auto;
}
.message__title {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--main-color);
  text-align: center;
  margin-bottom: 20px;
}
.message__subtitle {
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 40px;
}
.ceo-message__img-wrapper {
  width: 100px;
  margin: 0 25px 15px 0;
  float: left;
}
.ceo-message__img {
  border-radius: 50%;
}
.ceo-message__text {
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.ceo-message__txet a {
  color: var(--link-color);
}

/* 仮想ページ：会社概要
-------------------*/
.company-info__table {
  margin-bottom: 50px;
}
.company-info__map iframe {
  height: 400px;
}
.company-info__map-link {
  font-size: 14px;
  text-align: right;
  margin-top: 20px;
}

/* footer
-------------------*/
.footer {
  color: #fff;
  padding: 60px 20px 50px;
  background-color: var(--main-color);
}
.footer-nav {
  margin-bottom: 20px;
}
.footer-nav__list {
  display: flex;
  column-gap: 30px;
}
.footer-nav__item {
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
}
.footer-nav__link {
  color: var(--text-color);
  color: #fff;
  text-decoration: none;
}
.footer__copyright {
  font-size: 12px;
  letter-spacing: 0.03em;
  color: #fff;
  float: left;
}