@charset "UTF-8";
/* Scss Document */
/* CSS Document */
/*開閉式メニュー*/
.accordion {
  background: none;
}
.accordion input.toggle {
  display: none;
}
.accordion input.toggle:checked + label.title::before {
  transform: rotate(-45deg) !important;
}
.accordion input.toggle:checked + label.title + div.content {
  /*開閉時*/
  height: auto;
  padding: 20px;
  box-sizing: border-box;
  transition: all .3s;
}
.accordion label {
  position: relative;
}
.accordion label.title {
  padding: 10px;
  box-sizing: border-box;
  display: block;
  color: #fff;
  background: #333;
}
@media (min-width: 744px) {
  .accordion label.title {
    padding: 1em;
  }
}
.accordion label::before {
  /*タイトル横の矢印*/
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: calc( 50% - 3px );
  right: 10px;
  transform: rotate(135deg);
}
@media (min-width: 744px) {
  .accordion label::before {
    right: 20px;
  }
}
.accordion .content {
  background: #f1f1f1;
  height: 0;
  padding: 0 20px;
  overflow: hidden;
}
.accordion .content p {
  font-size: 14px;
}
.accordion .Label, .accordion .content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}

.scrollbar {
  width: 100%;
  /*-webkit-overflow-scrolling: touch;*/
  margin-bottom: 20px;
}
.scrollbar::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.scrollbar::-webkit-scrollbar-track {
  border-radius: 5px;
  background: #eee;
}
.scrollbar::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #666;
}
@media (min-width: 1024px) {
  .scrollbar {
    overflow-x: unset;
  }
}
.scrollbar .scroll-hint-icon-wrap .scroll-hint-icon {
  height: 90px;
}

/* リンクの基本設定 */
a img, :link img, :visited img {
  border: none;
}

a {
  color: #0088c4;
  text-decoration: underline;
}

a:hover {
  color: #0088c4;
  text-decoration: underline;
}

.caution_red {
  font-size: 0.9em;
  color: red;
  border-bottom: 1px dotted red;
}

/*================================================
　contact form 7
================================================*/
/* --- お問い合わせフォーム --- */
/* デザインカスタマイズ */
div.wpcf7 {
  background: #fafafa;
  border: 1px solid #ccc;
  padding: 0px;
  -moz-border-radius: 10px;
  -khtml-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  margin: 0 0 30px 0;
  padding: 20px;
  box-sizeing: border-box;
}

@media screen and (max-width: 600px) {
  div.wpcf7 {
    padding: 20px 10px 0px;
  }
}
div.wpcf7 .screen-reader-response {
  display: none;
}

div.wpcf7 p {
  margin: 0;
  margin-bottom: 20px;
  font-size: 16px;
}

div.wpcf7 input, .wpcf7 textarea {
  border: 1px solid #ccc;
  padding: 8px;
  box-sizing: border-box;
  font-size: 14px;
}

div.wpcf7 textarea {
  width: 100%;
  height: 300px;
}

/*ボタン*/
div.wpcf7 input.wpcf7-submit {
  cursor: pointer;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  width: 200px;
  height: 45px;
  margin: 0 auto;
  display: block;
  -moz-border-radius: 5px;
  -khtml-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background: #333;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.5), inset 0px 32px 0px -12px #808080;
  border: 1px solid #666;
  margin-bottom: 20px;
}

div.wpcf7 input.wpcf7-submit:hover {
  background: #006080;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.5), inset 0px 32px 0px -12px #007ea8;
  border: 1px solid #006080;
}

.wpcf7 input.wpcf7-submit:active {
  box-shadow: none;
  bottom: -2px;
  position: relative;
}

.wpcf7 input:focus, .wpcf7 textarea:focus {
  border: 1px solid #009de1;
}

.wpcf7-captchac {
  border: 1px solid #ccc;
}

/*個別の入力欄設定*/
div.wpcf7 input[name="your-name"] {
  width: 50%;
}

div.wpcf7 input[name="your-ruby"] {
  width: 50%;
}

div.wpcf7 input[name="your-tel"] {
  width: 50%;
}

div.wpcf7 input[name="your-email"] {
  width: 50%;
}

div.wpcf7 input[name="captcha-170"] {
  width: 50%;
}

div.wpcf7 input[name="your-age"] {
  width: 70px;
}

div.wpcf7 input[name="your-sex"] {
  text-align: left;
}

div.wpcf7 input[name="your-sex"] + span {
  margin-right: 10px;
}

div.wpcf7 input[name="zip"] {
  width: 150px;
}

div.wpcf7 input[name="addr"] {
  width: 100%;
}

div.wpcf7 input[name="your-subject"] {
  width: 100%;
}

@media screen and (max-width: 600px) {
  div.wpcf7 input[name="your-name"] {
    width: 100%;
  }

  div.wpcf7 input[name="your-ruby"] {
    width: 100%;
  }

  div.wpcf7 input[name="your-tel"] {
    width: 100%;
  }

  div.wpcf7 input[name="your-email"] {
    width: 100%;
  }

  div.wpcf7 input[name="captcha-170"] {
    width: 50%;
  }

  div.wpcf7 input[name="your-age"] {
    width: 70px;
  }

  div.wpcf7 input[name="your-sex"] {
    text-align: left;
  }

  div.wpcf7 input[name="your-sex"] + span {
    margin-right: 10px;
  }

  div.wpcf7 input[name="zip"] {
    width: 150px;
  }

  div.wpcf7 input[name="addr"] {
    width: 100%;
  }

  div.wpcf7 input[name="your-subject"] {
    width: 100%;
  }
}
/* エラー個所をわかりやすく表示 */
.wpcf7 .wpcf7-not-valid {
  background: #ffb6c1;
}

.wpcf7 span.wpcf7-not-valid-tip {
  font-size: 80%;
  display: block;
  color: #ff0000;
}

.wpcf7 .wpcf7-response-output {
  margin: 10px 0 20px;
  padding: 8px 35px 8px 14px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.wpcf7 .wpcf7-validation-errors {
  font-weight: bold;
  text-align: center;
  color: #ff0000;
  background-color: #F2DEDE;
  border: 1px solid #EED3D7;
}

.wpcf7 .wpcf7-mail-sent-ok {
  font-weight: bold;
  text-align: center;
  color: #3A87AD;
  background-color: #D9EDF7;
  border: 1px solid #BCE8F1;
}

.wpcf7 .wpcf7-display-none {
  display: none;
}

/* 必須赤色表示 */
.wpcf7 .required {
  font-size: 12px;
  color: #f00;
}

/* 任意緑色表示 */
.wpcf7 .any {
  font-size: 12px;
  color: #080;
}

/*================================================
　CSSハック
================================================*/
.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

.clearfix {
  *zoom: 1;
}

* html .clearfix {
  zoom: 1;
}

/* IE6 */
*:first-child + html .clearfix {
  zoom: 1;
}

/* IE7 */
