/* 共通クラス */

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
}

.inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .inner {
    width: 100%;
    max-width: 375px;
    margin: 0 auto;
  }
}

ul {
  list-style: none; /* マーカー（・など）を消す */
  margin: 0; /* ブラウザ標準の外側余白を消す */
  padding: 0; /* ブラウザ標準の内側余白を消す */
}

a {
  color: inherit; /* 親要素の文字色を継承（青文字を消す） */
  text-decoration: none; /* 下線を消す */
}

p {
  margin: 0; /* ブラウザのデフォルト余白を消す */
  padding: 0; /* 念のため内側余白もリセット */
}

h3 {
  margin: 0; /* ブラウザのデフォルト余白を消す */
  padding: 0; /* 念のため内側余白もリセット */
}

/* ヘッダー部分 */
.section-title {
  background-color: #fff;
  padding: 60px 0;
}

.wark-titiale {
  font-size: 60px;
  font-weight: 500;
  letter-spacing: 3px;
  margin: 0;
  color: #6e808d;
}

.title-en {
  font-size: 20px;
  letter-spacing: 1.5px;
  color: #6e808d;
}

@media screen and (max-width: 768px) {
  .section-title {
    background-color: #fff;
    padding: 60px 20px;
  }

  .wark-titiale {
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 3px;
    margin: 0;
    color: #6e808d;
  }
}

/* section-02 */

.section-02 {
  background-color: #eef2f7;
  padding: 60px 0;
}

.section02-title {
  text-align: center;
  font-size: 20px;
  border-bottom: solid 1px;
  width: 30%;
  margin: 0 auto;
}

.wark-list {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin-top: 35px;
}

.wark-nav {
  background-color: #fff;
  padding: 10px 20px;
  color: #000;
  width: 150px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .section-02 {
    background-color: #eef2f7;
    padding: 60px 20px;
  }
  .section02-title {
    text-align: center;
    font-size: 18px;
    border-bottom: solid 1px;
    width: 70%;
    margin: 0 auto;
  }

  .wark-list {
    display: grid;
    grid-template-columns: 2fr 2fr;
    align-items: center;
    /* justify-content: space-evenly; */
    margin-top: 35px;
    gap: 30px;
    align-items: center;
    justify-content: center;
  }

  .wark-nav {
    background-color: #fff;
    padding: 10px 20px;
    color: #000;
    width: 80%;
    text-align: center;
    font-size: 13px;
  }
}

/* website */

.website {
  background-color: #eef2f7;
  padding: 60px 0;
}

.website-title {
  font-size: 40px;
  font-weight: 500;
  color: #6e808d;
}

.website-box {
  display: grid;
  grid-template-columns: 2fr 2fr;
  gap: 50px;
  margin-bottom: 90px;
}

.website-img {
  width: 100%;
}

.website-contents {
  background: #fff;
}

.contents-txt {
  padding: 15px 25px 20px;
  display: flex;
  flex-direction: column;
  /* gap: 20px; */
}

.sub-txt {
  font-size: 15px;
}

.main-txt {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.button-txt {
  border-radius: 100px;
  border: none;
  padding: 4px;
  background-color: #6e808d;
  color: #fff;
  text-align: center;
  font-size: 13px;
}

@media screen and (max-width: 768px) {
  .website {
    background-color: #eef2f7;
    padding: 10px 20px;
  }

  .website-box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    margin-bottom: 90px;
  }

  .website-title {
    font-size: 30px;
    font-weight: 500;
    color: #6e808d;
  }
}
