@charset "UTF-8";
/* Contactページ*/ :where(button, [type='button'], [type='reset'], [type='submit']) {
  touch-action: manipulation;
}
:where( :any-link, button, [type='button'], [type='reset'], [type='submit'], label[for], select, summary, [role='tab'], [role='button']) {
  cursor: pointer;
}
textarea {
  field-sizing: content;
}
.cont_zone {
  text-align: left;
  & h5 {
    font-size: 1rem;
    margin: 10px 0;
    line-height: 100%;
    color: rgba(0, 0, 0, 1.00);
    text-shadow: none;
    text-align: left;
    & small {
      font-size: 0.7rem;
      margin-left: 6px;
      display: inline-block;
      vertical-align: middle;
    }
  }
  & p {
    margin: 0 0 50px 0;
    color: rgba(0, 0, 0, 1.00);
  }
  & ol {
    margin: 0;
    padding: 15px 0 0 30px;
  }
}
.cont_zone ol li {
  margin: 10px 0;
  padding: 0;
}
.cont_zone :is(input[type="text"], input[type="tel"], input[type="email"]) {
  width: 96%;
  padding: 1.5%;
  height: 20px;
  font-size: 1.1rem;
  margin-bottom: 20px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.cont_zone input[type="file"] {
  border: solid 1px #ccc;
  width: 96%;
  padding: 2.5% 2%;
  margin: 0 0 20px;
  text-transform: uppercase;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  font-size: 100%;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.cont_zone input:focus {
  border: solid 1px #f8B616;
}
.cont_zone textarea {
  width: 96%;
  height: 300px;
  padding: 2%;
  margin-bottom: 50px;
  font-size: 1.1rem;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.cont_zone textarea:focus {
  border: solid 1px #f8B616;
}
.red_sq {
  padding: 4px 8px;
  background: #DC0003;
  color: #ffffff;
  border-radius: 5px;
}
/* 個人情報保護方針*/
.policy {
  text-align: left;
  border: rgba(77, 77, 77, 1.00) solid 1px;
  padding: 3%;
  border-radius: 5px;
  margin-bottom: 30px;
  & h5 {
    font-size: 1.1rem;
    margin: 10px 0 30px 0;
    line-height: 100%;
    & small {
      font-size: 0.6rem;
      margin-left: 6px;
    }
  }
  & h6 {
    font-size: 1rem;
    margin: 10px 0;
    line-height: 100%;
  }
  & p {
    margin: 0 0 20px 0;
  }
  & ul {
    margin: 0 0 40px 0;
    padding: 0 0 0 30px;
    & li {
      margin: 5px 0;
      padding: 0;
      & p {
        margin: 0;
      }
    }
  }
}
.fbtn {
  border-top: 1px solid #ccc;
  border-right: 1px solid #999;
  border-bottom: 1px solid #999;
  border-left: 1px solid #ccc;
  padding: 25px 50px;
  width: 100%;
  margin: 60px 0 0 0;
  cursor: pointer;
  color: #333;
  font-size: 140%;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  &:hover {
    background: #DC0003;
    color: rgba(218, 218, 218, 1.00);
  }
  &:active {
    background: #DC0003;
  }
}
/* アコーディオン */
.accordion-box {
  position: relative;
  top: 50px;
  margin-bottom: 60px;
  & label {
    display: block;
    height: 50px; /* グラデーションの高さ */
    cursor: pointer;
    text-align: center;
    font-size: 0.9rem;
    position: absolute;
    bottom: 0;
    width: 100%;
    /* 以下グラデーションは「背景が白」に併せて設定しています */
    background: #ffffff;
  }
}
.accordion-box input:checked + label {
  background: inherit; /* 開いた時には背景グラデーションを消す */
}
.accordion-box label:after {
  font-family: 'NotoSansDisplay', sans-serif;
  content: "個人情報保護方針を表示"; /* ラベルの文字 */
  letter-spacing: ;
  line-height: ;
  position: absolute;
  bottom: 0px;
  left: 0px;
  -webkit-transform: translate(0%, 0);
  transform: translate(0%, 0);
  color: #f6f6f6;
  padding: 3px 15px;
  background: #999;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  -webkit-transition: all 2s;
  -moz-transition: all 2s;
  -ms-transition: all 2s;
  -o-transition: all 2s;
  transition: all 2s;
}
.accordion-box input {
  display: none;
}
.accordion-box .accordion-container {
  overflow: hidden;
  height: 0px; /* 開く前に見えている部分の高さ */
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}
.accordion-box input:checked + label {
  /* display: none ; 閉じるボタンは要らないとき */
  display: ;
}
.accordion-box input:checked + label:after {
  content: "閉じる";
}
.accordion-box input:checked ~ .accordion-container {
  height: auto;
  padding-bottom: 30px; /* 閉じるボタンのbottomからの位置 */
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}