@charset "utf-8";

/* フォーム関連はbasicかmoduleに書く */

/* font設定 */
/* font-family: "Noto Sans JP", sans-serif; */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");

/*=====ボディ設定*/
html {
  font-size: 62.5%;
  line-height: 1;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
}

body {
  font-size: 1.6rem;
  overflow: hidden;
}

/*=====ヘッダー*/
/* トップとセカンドで違うのでそれぞれで作る */
/* header {
} */

/*=====メイン*/
main {
  width: 940px;
  margin: 0 auto;
}

/*=====アサイド*/
aside {
}

/*=====フッター*/
footer {
  color: #fff;
  line-height: 1.9;
  background-color: #7438a3;
}

/* フッターの囲み */
footer .block_inner {
  width: 940px;
  margin: 0 auto;
  position: relative;
}

footer img {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
}

.list_address {
  padding-top: 39px;
}

.list_address h2 {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
}

.list_address p {
  /* display: block; 住所を改行させたい→spanをブロック要素に */
  font-size: 1.6rem;
  font-weight: 500;
  padding-bottom: 22px;
}

/* お問い合わせボタン */
.btn_footer_contact {
  display: block;
  width: 318px;
  border-radius: 5px; /* ← 角を丸くする */
  background-color: #fff;
  color: #7438a3;
  font-weight: 700;
  text-decoration: none;
  background-image: url(../images/common/arrow1.png);
  background-position: right 20px center;
  padding: 15px 25px;
}

.txt_copyright {
  font-size: 1.3rem;
  font-weight: 500;
  text-align: center;
  padding-top: 79px;
  padding-bottom: 11px;
}

/* メールフォーム */

.table_form {
}

.table_form th {
  font-weight: 500;
  padding: 18px 19px;
}

.table_form td {
  font-weight: 500;
  padding: 18px 19px;
}

.text_form {
  border-radius: 5px;
  border: 1px solid #c1c1c1;
  padding: 3px 5px;
}

.area_form {
  border-radius: 5px;
  border: 1px solid #c1c1c1;
  padding: 3px 5px;
}

label {
  display: inline-block; /* 背景色をつけるために */
  padding: 6px 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

label:hover {
  background-color: #ebebeb;
}

/* メールフォームボタン */
.btn_form_submit {
  display: block;
  width: 270px;
  border-radius: 5px; /* ← 角を丸くする */
  background-color: #7438a3;
  color: #fff;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  padding: 17px 63px;
  margin: 36px auto 0;
}

/* メールフォームここまで */
