@charset "UTF-8";

/* 基本設定 */
* {
  margin: 0;
}

/* ページ全体の設定 */
body {
  display: grid;
  grid-template-columns: 20px 1fr 20px;
  grid-template-rows:
    [head]130px
    [keyvisual]380px
    [concept]auto
    [service]auto
    [news]auto
    [company]auto
    [foot]100px;
  row-gap: 20px;
  font-family: sans-serif;
}

body p {
  font-size: 14px;
  color: #333333;
}

body h2 {
  color: #333333;
}

.title-box {
  width: 140px;
  height: auto;
  text-align: center;
  padding: 10px;
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  margin: auto;
}

.disc-box {
  background-color: #fff;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2);
  z-index: -1;
}

/* パーツの配置 */
body > * {
  grid-column: 2 / -2;
}

/* ヘッダー */
header {
  grid-row: head;
  justify-self: center;
  align-self: center;
}

.logo {
  text-align: center;
  padding: 0;
}
.logo img {
  width: 180px;
  height: 55px;
  height: auto;
  align-self: center;
  margin-top: 14px;
  /* margin-bottom: 20px; */
}

/* ナビゲーション */
nav {
  grid-row: head;
  justify-self: center;
  align-self: flex-end;
}

nav ul {
  list-style-type: none;
  padding: 0;
  display: grid;
  grid-auto-flow: column;
  column-gap: 20px;
}

nav a {
  color: #666666;
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
}

nav a:hover {
  color: #0b8b42;
}

/* キービジュアル */
.keyvisual {
  grid-row: keyvisual;
  grid-column: 1 / -1;
}

.keyvisual figure img {
  width: 100%;
  max-height: 380px;
  opacity: 70%;
  object-fit: cover;
}

.catch {
  position: absolute;
  left: 0;
  right: 0;
  top: 260px;
  /* margin: auto; */
  text-align: center;
}

h1 {
  font-size: 40px;
}

/* コンセプト */
.concept {
  grid-row: concept;
  grid-column: 1 / -1;
}

.concept .background {
  background-color: #bde1da;
  position: absolute;
  height: 500px;
  width: 100%;
  margin-top: 300px;
  z-index: -2;
}

.concept-box {
  position: relative;
}

.concept .title-box {
  top: -120px;
  border-width: 5px;
  border-color: black;
  border: solid;
}

.concept .disc-box {
  margin: 20px;
  margin-top: 100px;
  /* padding-top: 20px; */
}

.concept .disc-box p {
  padding: 30px;
}

.concept .disc-box :nth-child(1) {
  padding-top: 40px;
}
.concept .disc-box :nth-child(2) {
  padding-top: 0px;
}

/* サービス */
.service {
  grid-row: service;
}

.service-box {
  position: relative;
}

.service .disc-box {
  margin-top: 30px;
}

.service .disc-box p {
  padding: 30px;
  padding-top: 40px;
}

.service-image {
  text-align: center;
}

.service-image img {
  width: 150px;
  height: auto;
  padding: 10px 20px 40px;
}

/* ニュース */
.news {
  grid-row: news;
  grid-column: 1 / -1;
  background-color: #a1d8e2;
  z-index: -2;
}

.news-box {
  position: relative;
}

.news .disc-box {
  width: 86%;
  margin: auto;
  margin-top: 50px;
  margin-bottom: 40px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.news-text {
  width: 90%;
  height: auto;
  margin: auto;
  margin-bottom: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  border-bottom: 1px #dddddd solid;
}

.news-text h3 {
  font-size: 16px;
}

/* 会社概要 */
.company {
  grid-row: company;
  grid-column: 1 / -1;
  background-color: #ffffff;
  top: 200px;
}

.company-box {
  position: relative;
}

.company .disc-box {
  width: 74%;
  margin: auto;
  margin-top: 30px;
  margin-bottom: 20px;
  padding: 30px;
  background-color: #f9f9f9;
  font-size: 14px;
  color: #333333;
}

.company table {
  width: 100%;
  margin: auto;
}
.company .disc-box th {
  width: 25%;
  vertical-align: top;
  text-align: start;
  justify-self: start;
}

/* フッター */
footer {
  grid-row: foot;
  font-size: 12px;
  position: relative;
  text-align: center;
  background-color: #666666;
  grid-column: 1 / -1;
}

.sns-icons {
  position: absolute;
  top: 20px;
  left: 30px;
}

footer ul {
  list-style-type: none;
  display: flex;
  position: absolute;
  top: 20px;
  right: 20px;
  left: 20px;
}

footer ul li {
  padding-right: 15px;
}

footer a {
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
}

footer a:hover {
  color: #0b8b42;
}

small {
  position: absolute;
  margin: auto;
  left: 0px;
  right: 0px;
  bottom: 30px;
  color: #ffffff;
}

.start_anime02 {
  animation: sample_anime04 1s;
}

.fadeInDown {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 2s;
  -ms-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  visibility: visible !important;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

/* 利用規約 */
.terms-policy {
  grid-template-rows:
    [head] 130px
    [title] auto
    [first] auto
    [second] auto
    [foot] 100px;
  grid-template-columns: 40px 1fr 40px;
  color: #333333;
}
#terms-policy-h1-title {
  grid-row: title;
  font-size: 1.8em;
  margin-top: 10px;
}

.terms-policy-lead {
  font-size: 16px;
  margin-bottom: 5px;
}

.terms-policy-h2-title {
  margin-top: 15px;
  margin-bottom: 5px;
}

.terms-policy-h3-title {
  margin-top: 15px;
  margin-bottom: 5px;
}

ol {
  margin-top: 5px;
}

ol li {
  margin-bottom: 5px;
}

/* ===== PC版の設定 ===== */
@media (min-width: 768px) {
  /* PC版：ページ全体の設定 */
  body {
    grid-template-columns: 0.2fr repeat(6, 1fr) 0.2fr;
    grid-template-rows:
      [head]120px
      [keyvisual]400px
      [concept]auto
      [service]auto
      [news]auto
      [company]auto
      [foot]100px;
    column-gap: 5%;
  }

  .disc-box {
    max-width: 800px;
  }

  /* PC版：ヘッダー */
  header {
    justify-self: start;
  }

  /* PC版：ナビゲーション */
  nav {
    justify-self: end;
    align-self: center;
  }

  /* PC版：キービジュアル */
  .keyvisual figure img {
    margin-top: -20px;
  }

  .catch {
    top: 360px;
  }

  h1 {
    font-size: 60px;
  }

  /* PC版：コンセプト */
  .concept-box {
    display: flex;
    margin: auto;
    margin-top: 120px;
    width: 600px;
  }

  .concept .title-box {
    position: relative;
  }

  .concept .disc-box {
    width: 400px;
    margin-top: 140px;
    float: right;
    margin-left: -90px;
    background-color: #ffffff;
  }

  .concept .disc-box p {
    padding: 50px;
  }

  .concept .disc-box :nth-child(1) {
    padding-top: 30px;
  }

  /* PC版：サービス */
  .service .disc-box {
    margin: auto;
  }
  .service .disc-box p {
    padding: 50px;
    padding-bottom: 30px;
  }

  .service-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 10px;
  }

  .service-image img {
    height: auto;
    margin: auto;
  }

  /* PC版：会社概要 */

  .company-box .disc-box table {
    width: 80%;
    margin: auto;
  }

  .company .disc-box tr {
    margin-bottom: 20px;
  }

  .company .disc-box th {
    padding-left: 50px;
  }

  .company .disc-box td {
    width: 40%;
  }

  /* .company .disc-box {
    width: 80%;
  } */
}
