@charset "utf-8";
/* CSS Document */

.g-radio-btn__block .g-radio-btn {
  width: 24px;
  height: 24px;
  margin-left: 10px;
  margin-right: 8px;
  position: absolute;
}
.g-radio-btn {
  appearance: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  margin: 0 10px 0 0;
  border-radius: 16px;
  background-color: #fff;
  position: relative;
}

.g-radio-btn::before {
  content: '';
  width: 20px;
  height: 20px;
  border: 1px solid #DFE4EC;
  border-radius: 16px;
  position: absolute;
}

.g-radio-btn:checked::before {
  transition: all .2s;
  border: none;
  background-color: #515968;
}
.g-radio-btn__block .g-radio-btn::before {
  width: 14px;
  height: 14px;
}
.g-radio-btn__label {
  width: 100%;
  padding: 0 8px 0 42px;
}

/* tb */
.tab-wrap {
  display: flex;
  flex-wrap: wrap;
  margin:20px 0;
  max-width: 1080px;
  margin: 20px auto;
}
.tab-wrap:after {
  content: '';
  width: 100%;
  height: 3px;
  background: LightGray;
  display: block;
  order: -1;
}
.tab-label {
  color: White;
  background: LightGray;
  font-weight: bold;
  text-shadow: 0 -1px 0 rgba(0,0,0,.2);
  white-space: nowrap;
  text-align: center;
  padding: 10px .5em;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  border-radius: 5px 5px 0 0;
  flex: 1;
}
.tab-label:not(:last-of-type) {
  margin-right: 5px;
}
.tab-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
/* アクティブなタブ */
.tab-switch:checked+.tab-label {
  background: linear-gradient(90deg, #547ACF 0%, #60BB7B 0.01%, #5EB769 0.02%, #61C08F 0.03%, #69D5E8 99.99%, #F8FC94 100%);
}
.tab-switch:checked+.tab-label+.tab-content {
  height: auto;
  overflow: auto;
  padding: 15px;
  opacity: 1;
  transition: .5s opacity;
}
/* ラジオボタン非表示 */
.tab-switch {
  display: none;
}