@charset "UTF-8";

/******************** ページ全体の設定 ********************/
body {
  margin: 0;
  /*ブラウザが挿入する余白を削除*/
  font-family: 'Rajdhani', sans-serif;
  /* テキストの自動拡大を無効化 */
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/******************** 「ヘッダー」ブロック ********************/
header {
  padding: 25px 15px;
}

header figure {
  line-height: 1.5;
}

img {
  width: 100%;
}

a {
  color: #002745;
  text-decoration: none;
}

/* ナビゲーションメニュー */
nav {
  padding-top: 20px;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  color: #002745;
  font-size: 16px;
  display: flex;
  justify-content: center;
  /*中央に表示*/
}

li:not(:last-child) {
  margin-right: 20px;
}

/********************nav・hover********************/
:root {
  --mainColor: #002745;
}

li a {
  background:
    linear-gradient(to right,
    var(--mainColor) 0%,
    var(--mainColor) 1px,
    transparent 15px);
  background-repeat: repeat-x;
  background-size: 100%;
  color: #002745;
  padding-left: 10px;
  text-decoration: none;
}

li a:hover {
  background:
    linear-gradient(to right,
    var(--mainColor) 0%,
    var(--mainColor) 5px,
    transparent);
}

/******************** トップページ: ヒーローイメージ ********************/
.hero {
  background-image: url(../img/top.jpg);
  background-size: cover;
  background-position: center;
  height: 532px;
  box-sizing: border-box;
}

.hero ul {
  font-family: 'Noto Serif SC', serif;
  display: block;
  line-height: 2;
  padding: 150px 20px 20px 20px;
  margin: 0;
}

.hero ul li:first-child {
  font-size: 16px;
  line-height: 3;
}

.hero ul li:not(first-child) {
  font-size: 12px;
}

.hero ul li:last-child {
  font-family: 'Nanum Myeongjo', serif;
}

/******************** トップページ: コンタクト********************/
.toppost {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}

h2 {
  color: #002745;
  font-size: 2em;
  text-align: center;
  margin-top: 100px;
}

h3 {
  font-size: 1.5em;
}

dl input, textarea {
  background: #002745;
  color: #fff;
  padding: 10px;
  width: 100%;
  height: 10px;
  border-style: none;
}

dd {
  margin: 0;
}

textarea {
  height: 80px;
}

p input {
  border: none;
  background-color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2em;
  margin-top: 20px;
  border-bottom: 1px solid #002745;
  padding-bottom: 2px;
}

.info {
  margin: 50px auto;
}

/***************** 「フッター」ブロック ********************/
footer {
  background-color: #d8d7dd;
  padding: 50px 15px;
  color: #002745;
  font-size: 14px;
  text-align: center;
  background-color: #fff;
}

/* === pc版 === */
@media (min-width:600px) {

  /* pc版:コンテナ */
  .container {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  header .container {
    display: flex;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
  }

  header figure {
    margin: 0;
  }

  /* pc版:「ナビゲーションメニュー」 */
  header .container nav {
    line-height: 50px;
  }

  header .container ul {
    font-size: 20px;
  }

  /* pc版:トップページ: ヒーローイメージ */
  .hero ul {
    padding: 200px 20px 20px 150px;
    font-weight: bold;
  }

  .hero ul li:first-child {
    font-size: 22px;
  }

  .hero ul li:not(first-child) {
    font-size: 14px;
  }

  .hero ul li:last-child {
    letter-spacing: 0.3px;
  }

  /* pc版:トップページ: コンタクト */
  .toppost {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
  }

  dl input {
    height: 30px;
    width: 200%;
  }

  textarea {
    height: 180px;
    width: 200%;
  }

  .info {
    margin: 0;
    padding-top: 100px;
  }
}

/* === pc版ここまで === */
/* === pc版 (大)=== */
@media (min-width:1025px) {

  /* pc版 (大):コンテナ */
  .container {
    max-width: 1100px;
  }

  /* pc版 (大): ヘッダー */
  header {
    padding-bottom: 100px;
  }

  /* pc版 (大):トップページ: ヒーローイメージ */
  .hero ul {
    padding: 200px 20px 20px 300px;
  }

  /* pc版 (大):トップページ: コンタクト*/
  .toppost form {
    padding-left: 100px;
  }

  .info {
    padding-right: 100px;
  }

  h2 {
    font-size: 2.5em;
  }

  h3 {
    font-size: 1.8em;
  }

  dt, .info p {
    font-size: 1.2em;
  }

  form p {
    font-size: 1.2em;
  }
}

/* === pc版 (大)ここまで === */
/********************typing-txt********************/
.typing-txt {
  display: none;
}

ul {
  list-style: none;
}
