/* フォント */
body {
  font-family: Arial, "Hiragino kaku Gothic ProN" , "メイリオ" , sans-serif;
}

/* このサイト箱の設定 */
body {
  width: 100%;
  margin: 0;
  padding: 0;
}

/* ヘッダー全体 */
header {
  height: 156px;
  display: flex;
  justify-content: center;
  align-items: center;
}

header h1 {
  margin: 0;
}

header img {
  width: 280px;
  height: 56px;
  display: block;
}

/* メインビジュアル */
main {
  width: 100%;
  padding: 0;
}

.mainvisual {
  width: 100%;
  padding: 0;
}

.mainvisual picture {
  display: block;
  width: 100%;
}

.mainvisual img {
  width: 100%;
  display: block;
}

/* ナビ全体 */
.nav {
  margin-top: 80px;
  margin-bottom: 90px;
}

/* ナビ配置 */
.nav ul {
  margin: 0 auto;

  display: flex;
  justify-content: center;
  gap: 80px;
}

/* ナビフォント */
.nav a {
  font-size: 18px;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: #333;
}

/* conceptの箱 */
.concept {
  display: flex;
  align-items: center;
  padding: 0 40px 0 165px;
  gap: 40px;
}

/* concptの画像の余白*/
.imaeg {
  margin-left: 165px;
  margin-right: 40px;
}

/* concptの画像 */
.image img {
  width: 555px;
  height: auto;
}

/* conceptの上のテキスト */
.text p:first-of-type {
  font-size: 16px;
  font-weight: 400;
  line-height: 18.4px;
  letter-spacing: 0.1em;
  color: #333;
}

/* conceptのh2 */
.text h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 43px;
  letter-spacing: 0.1em;
  color: #24A8BF;

  margin-top: 20px;
  margin-bottom: 30px;
}

/* conceptの下のテキスト */
.text p:last-of-type {
  font-size: 16px;
  font-weight: 300;
  line-height: 29px;
  letter-spacing: 0.1em;
  color: #333;
}

/* ブログの箱 */
.blog {
  max-width: 1110px;
  width: 100%;
  margin: 0 auto;
  margin-top: 100px;
  box-sizing: border-box;
}

/* ブログh2 */
.blog h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.08em;
  color: #24A8BF;

  text-align: center;
}

/* ブログ p */
.blog > p {
  font-size: 13px;
  font-weight: 600;
  line-height: 13px;
  letter-spacing: 0.03em;
  color: #333;

  margin-top: 8px;
  text-align: center;
}

/* ブログ画像の箱 */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.blog-item {
  width: 350px;
  margin-top: 30px;
}

/* ブログ画像のサイズ */
.blog-item img {
  width: 350px;
  height: 180px;
  object-fit: cover;
}

/* ブログ p要素 */
.blog-item p {
  font-size: 15px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0;
  color: #333;

  margin-top: 12px;
}

/* ブログ　span要素 */
.blog-item span {
  font-size: 12px;
  font-weight: 400;
  line-height: 13px;
  letter-spacing: 0.05em;
  color: #333;

  display: block;
  margin-top: 6px;
}

/* ブログ　ボタン要素 */
.blog-button a {
  display: inline-flex;
  align-items: center;

  padding: 18px 20.5px 18px 72px; 

  border: 1px solid #24A8BF;

  margin-top: 30px;

  font-size: 15px;
  font-weight: 600;
  line-height: 15px;
  letter-spacing: 0;
  color: #24A8BF;
}

/* ブログ矢印の画像 */
.blog-button a img {
  margin-left: 47.5px;
  vertical-align: middle;
}

/* ブログボタンアイテム中央 */
.blog-button {
  text-align: center;
}

/* フッターの箱 */
.footer {
  height: 200px;
  background-color: #000;

  margin: 0 auto;
  text-align: center;
  margin-top: 50px;
}

/* フッターロゴ画像の位置 */
.footer img {
  margin-top: 70px;
}

/* フッターのコピーライト */
.footer-copy {
  font-size: 12px;
  font-weight: 400;
  line-height: 13.8px;
  letter-spacing: 0.05em;
  color: #B8B8B8;

  margin-top: 50px;
}


/* トップへ戻るボタン */
.scroll-top {
  position: fixed;
  bottom: 40px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #24A8BF;
  border: none;
  cursor: pointer;

  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(-50%, -25%) rotate(-45deg);
}

/*  レシポンシブデザイン　768px */
@media (max-width: 768px){
  body {
    width: 100%;
  }

  /* ヘッダー高さ */
  header {
    height: 92px;
  }

  /* ヘッダーのロゴ */
  header img {
    width: 160px;
    height: 32px;
  }

  /* メインビジュアル画像 */
  .mainvisual img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: top;
  }

  /* ナビ全体 */
  .nav {
    margin-top: 30px;
    margin-bottom: 70px;
    padding: 0 68px;
  }

  .nav ul {
    gap: 50px;
  }

  /* ナビのフォント */
  .nav a {
    font-size: 16px;
  }

  /* conceptの箱 */
  .concept {
    display: block;
    padding: 0;
  }

  /* conceptの画像  */
  .image img {
    width: calc(100% - 40px);
    max-width: 335px;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  /* conceptの上のテキスト */
  .text p:first-of-type {
    font-size: 15px;
    line-height: 18px;
    margin-top: 30px;
    margin-left: 40px;
  }

  /* conceptのh2 */
  .text h2 {
    font-size: 26px;
    line-height: 39px;
    margin-top: 15px;
    margin-left: 40px;
  }

  /* conceptの下のテキスト */
  .text p:last-of-type {
    font-size: 15px;
    line-height: 27px;
    margin-top: 20px;
    margin-left: 40px;
  }

  /* ブログの箱 */
  .blog {
    display: block;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }

  /* ブログh2 */
  .blog h2 {
    font-size: 30px;
    line-height: 33px;
    letter-spacing: 0.03em;
    margin-top: 90px;
    margin-left: 0;
    text-align: center;
  }

  /* ブログh2の下のp */
  .blog > p {
    font-size: 12px;
    line-height: 16px;
    margin-top: 3px;
    margin-left: 0;
    text-align: center;
  }

  /* ブログ画像、テキストの箱 */
  .blog-list {
    width: 100%;
  }

  /* ブログアイテム（1列表示） */
  .blog-item {
    width: 100%;
    margin-top: 20px;
  }

  /* ブログ画像のサイズ */
  .blog-item img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  /* ブログspan */
  .blog-item span {
    margin-top: 2px;
    margin-bottom: 10px;
  }

  /* ブログボタン */
  .blog-button a {
    display: block;
    width: 100%;
    height: 50px;
    

    padding: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
    text-align: center;
    line-height: 50px;

    margin: 20px auto 50px;

    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0;

  }

  /* ブログボタン矢印 */
  .blog-button a img {
    width: 9px;
    height: 5px;

    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

  /* ボタンのサイズ */
  .blog-button {
    width: 100%;
    padding: 0;
    padding: 0;
  }

  /* フッターの箱 */
  .footer {
    width: 100%;
    height: 162.5px;
  }
  
  /* フッターロゴサイズ */
  .footer img {
    width: 100px;
    height: 25.5px;
  }

  /* フッターコピーライト */
  .footer-copy {
    font-size: 10px;
    line-height: 17px;
    letter-spacing: 0.05em;

    margin-top: 40px;
  }
}