@charset "UTF-8";

/* =====================================
基本設定
===================================== */

html {
  font-size: 10px;
}

body {
  color: #000;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ W6", "Hiragino Kaku Gothic W6",
               "ヒラギノ角ゴ W3", "Hiragino Kaku Gothic W3",
               "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN",
               "メイリオ", Meiryo, sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  overflow-wrap: break-word;
}

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

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

iframe {
  border: none;
}

/* reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul, ol, li {
  list-style: none;
}

input, select, textarea, button {
  outline: none;
}

picture {
  display: block;
}

h1,h2,h3,h4,h5,h6 {
  font-weight: normal;
}

/* clearfix */
.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}
.clearfix::after {
  clear: both;
}

/* =====================================
PC（769px以上 + print）
===================================== */

@media screen and (min-width: 769px), print {

  .show_sp { display: none !important; }

  .container {
    min-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
  }

  .row {
    max-width: 800px;
    margin: 0 auto;
  }

  a[href^="tel"] {
    pointer-events: none;
    cursor: default;
    opacity: 1;
  }

  a {
    transition: opacity .3s ease;
  }
  a:hover {
    opacity: .7;
  }

  header {
    background: #E84592;
    padding: 30px 50px;
  }

  header h1 img {
    height: 40px;
  }

  footer {
    background: #E84592;
    padding-bottom: 150px;
    color: #fff;
  }

  footer .row h3 {
    font-size: 4.2rem;
    font-weight: bold;
    padding-top: 40px;
    text-align: center;
  }

  footer .row p {
    font-size: 2.4rem;
    text-align: center;
  }

  footer .bigtel {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
  }

  footer .bigtel img {
    width: 75px;
    height: 75px;
  }

  footer .bigtel b {
    font-size: 7rem;
    margin-left: 10px;
  }

  footer span {
    display: block;
    margin-top: 45px;
    font-size: 1.8rem;
    text-align: center;
  }
}

/* =====================================
SP（768px以下）
===================================== */

@media screen and (max-width: 768px) {

  html {
    font-size: 2.60417vw;
  }

  .show_pc { display: none !important; }

  .row {
    padding: 0 5.85938vw;
  }

  header {
    background: #E84592;
    padding: 2.60417vw 3.90625vw;
  }

  header h1 img {
    height: 6.51042vw;
  }

  footer {
    background: #E84592;
    padding-bottom: 17vw;
    color: #fff;
  }

  footer .bigtel {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  footer .bigtel img {
    width: 7.8125vw;
    height: 7.8125vw;
  }

  footer .bigtel b {
    font-size: 9.375vw;
    margin-left: 1.3vw;
  }

  footer span {
    font-size: 2.6vw;
    margin-top: 4.5vw;
    text-align: center;
  }
}

/* =====================================
フォーム
===================================== */

.form {
  margin-top: 20px;
}

.form table {
  background: #fff;
}

.form th,
.form td {
  padding: 10px;
}

.form th {
  width: 30%;
  font-size: 1.8rem;
  text-align: left;
}

.form td {
  width: 70%;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  border: 1px solid #888989;
  font-size: 1.6rem;
  padding: 6px;
}

.form .hissu {
  color: #E72925;
  padding-left: 10px;
}

/* =====================================
ポップアップ
===================================== */

.popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.popup.view {
  display: flex;
}

.popup__inner {
  max-width: 1000px;
  background: #eee;
  padding: 35px 20px;
  position: relative;
}

.close {
  position: absolute;
  right: 0;
  top: 0;
  padding: 10px 20px;
  background: #dc5a45;
  color: #fff;
  cursor: pointer;
}
.close:hover {
  opacity: .6;
}

/* checkbox */
.privacy_doui label input[type="checkbox"] {
  transform: scale(1.3);
  margin-right: 6px;
}

/* ボタン */
.form_btn {
  max-width: 600px;
  margin: 30px auto;
}

.form_btn .button {
  background: #005D93;
  padding: 20px;
  color: #fff;
  font-size: 2rem;
  text-align: center;
}
