@charset "UTF-8";

.note-tiny {
  font-size: 12px;
}

/* アンケートエリア */
.questionnaire-area {
  background: #f5f8fe;
  padding: 20px;
}

.questionnaire-area .head {
  color: #07b097;
  margin-bottom: 8px;
}

/* タブボタン */
.tab-area {
  padding: 30px 0;
}

.tab-btn-wrap {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 25px;
  position: relative;
}

.tab-btn-wrap::after {
  content: "";
  width: 100%;
  height: 2px;
  background: #0cbaa0;
  position: absolute;
  left: 0;
  bottom: 0;
}

.tab-btn-wrap .tab-btn {
  width: 50%;
  background: #eee;
  box-sizing: border-box;
  color: #888;
  font-weight: bold;
  padding: 16px 5px;
  text-align: center;
  position: relative;
  cursor: pointer;
}

.tab-btn-wrap .tab-btn:hover {
  color: #0cbaa0;
}

.tab-btn-wrap .tab-btn.active {
  background: #fff;
  border: 2px solid #0cbaa0;
  color: #0cbaa0;
}

.tab-btn-wrap .tab-btn.active::before {
  content: "";
  width: 100%;
  height: 4px;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: -3px;
  z-index: 1;
}

.tab-btn-wrap .tab-btn.active::after {
  content: "";
  border: 6px solid transparent;
  border-top: 7px solid #0cbaa0;
  position: absolute;
  left: 50%;
  bottom: -3px;
  transform: translateX(-50%);
}

.tab-btn-wrap .tab-btn:first-child {
  border-radius: 5px 0 0 0;
}

.tab-btn-wrap .tab-btn:last-child {
  border-radius: 0 5px 0 0;
}

/* タブ内 */
.tab-content .head {
  margin-bottom: 30px;
}

.tab-content .head h2 {
  color: #07b097;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

/* アコーディオン */
.ac-guide-wrap {
  border: 1px solid #465384;
  border-radius: 5px;
  margin: 13px 0;
  overflow: hidden;
}

.ac-guide-wrap .ac-ttl {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  cursor: pointer;
}

.ac-guide-wrap .ac-ttl::after {
  content: "";
  background: url("../../../images/icon/icon-plus.svg") no-repeat;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}

.ac-guide-wrap .ac-ttl:hover {
  opacity: 0.8;
}

.ac-guide-wrap .ac-ttl.active::after {
  background: url("../../../images/icon/icon-minus.svg") no-repeat;
}

.ac-guide-wrap .ac-ttl .icon-q {
  background: #465384;
  width: 40px;
  text-align: center;
  padding: 12px 0 8px;
}

.ac-guide-wrap .ac-ttl .text {
  width: calc(100% - 85px);
  padding: 10px 30px 10px 15px;
}

.ac-guide-wrap .ac-content {
  display: none;
  padding: 12px 15px;
}

.ac-guide-wrap .ac-content .content-detail {
  background: #f7f9fe;
  margin: 12px -15px -12px;
  padding: 15px;
}

.ac-guide-wrap .ac-content .lead-text {
  color: #07b097;
  font-weight: bold;
  margin-bottom: 7px;
}

/* ダウンロード方法 ボタン */
.btn-area-app {
  display: flex;
  justify-content: space-around;
  width: 60%;
  margin: 0 auto;
}

.btn-area-app-ios {
  background: #428fd6;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  color: #fff !important;
  display: block;
  font-weight: bold;
  padding: 12px 30px;
  text-decoration: none !important;
}

.btn-area-app-android {
  background: #ee9000;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  color: #fff !important;
  display: block;
  font-weight: bold;
  padding: 12px 30px;
  text-decoration: none !important;
}

/* 初期設定以外 */
.box-notice-setting {
  background: #fff;
  border-radius: 5px;
  padding: 15px;
}

.box-notice-setting .text-dotted {
  font-weight: bold;
  margin-bottom: 3px;
}

.box-notice-setting .text-dotted::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #0cbaa0;
  border-radius: 999em;
  margin-right: 4px;
  vertical-align: middle;
}

.box-notice-setting.bg-blue {
  background: #f5f8fe;
}

/* お問い合わせ */
.contact-area {
  background: #f4fffd;
  padding: 20px;
}

.contact-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.contact-wrap > .col:first-child {
  padding-left: 40px;
  margin-right: 25px;
  position: relative;
}

.contact-wrap > .col:first-child::before {
  content: "";
  width: 30px;
  height: 35px;
  background: url("../../../images/help/problem/icon-contact.svg") no-repeat;
  background-size: 30px auto;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
