@charset "UTF-8";
html {
  font-size: 62.5%;
}

body {
  width: 100%;
  min-width: 1200px;
  line-height: 1.6;
  color: #333;
  background: #fff;
  font-family: Roboto, "Noto Sans JP", "游ゴシック体", "Yu Gothic", Arial, sans-serif;
  font-size: 1.4rem;
  font-feature-settings: "pkna";
  text-align: left;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::-moz-placeholder {
  color: #999999;
}

::placeholder {
  color: #999999;
}

* {
  box-sizing: border-box;
}

img {
  vertical-align: bottom;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: normal;
  src: url(/fonts/Roboto/Roboto-Regular.ttf) format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: bold;
  src: url(/fonts/Roboto/Roboto-Bold.ttf) format("truetype");
  font-display: swap;
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track::before, .slick-track::after {
  content: "";
  display: table;
}
.slick-track::after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.pageIntro {
  margin: 48px 0;
  text-align: center;
}
.pageIntro__ttl {
  margin-bottom: 24px;
  font-weight: bold;
  font-size: 2.4rem;
}
.pageIntro__txt {
  line-height: 2;
}
.pageIntro__note {
  margin-top: 16px;
  font-size: 1.2rem;
}

.pageContent {
  padding: 64px 0 80px;
  background: #f2f2f2;
}

.stepNav {
  background: #30b7c8;
}

.stepNavList {
  display: flex;
  width: 630px;
  justify-content: space-between;
  margin: auto;
  padding: 8px 0;
}
.stepNavList__item {
  position: relative;
  color: #fff;
  opacity: 0.5;
  font-weight: bold;
  font-size: 1.6rem;
}
.stepNavList__item--active {
  opacity: 1;
}
.stepNavList__item::after {
  display: inline-block;
  margin-left: 120px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #fff;
  content: "";
}
.stepNavList__item:last-child::after {
  content: none;
}

.contactForm {
  width: 960px;
  margin: auto;
  padding: 64px 80px;
  border-radius: 4px;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
  background: #fff;
}
.contactForm--complete {
  box-shadow: none;
  text-align: center;
}
.contactForm__submitBtn {
  width: 320px;
  margin: auto;
  text-align: center;
}
.contactForm__submitBtn button {
  display: block;
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
  text-decoration: none;
  transition: 0.2s;
  line-height: 56px;
  border-radius: 4px;
  color: #fff;
  background: #f57d00;
  width: 100%;
  border: none;
  letter-spacing: 0.05em;
}
.contactForm__submitBtn button:hover {
  background: #ff9629;
}
.contactForm__completeTtl {
  font-weight: bold;
  font-size: 2rem;
}
.contactForm__completeTxt {
  line-height: 2;
  margin: 16px 0;
}

.formSection {
  margin-bottom: 56px;
}

.formAgreement {
  display: flex;
  width: 720px;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto 40px;
  padding: 24px;
  background: whitesmoke;
}
.formAgreement--confirm {
  max-width: 530px;
}
.formAgreement__txt {
  font-size: 1.2rem;
}
.formAgreement__txt span {
  font-weight: bold;
}

.formBtnList {
  display: flex;
}
.formBtnList__return {
  width: 320px;
  margin-right: 16px;
}
.formBtnList__return a {
  display: block;
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
  text-decoration: none;
  transition: 0.2s;
  line-height: 52px;
  border: 2px solid #30b7c8;
  border-radius: 4px;
  color: #30b7c8;
  background: #fff;
  letter-spacing: 0.05em;
}
.formBtnList__return a:hover {
  color: #fff;
  background: #30b7c8;
}
.formBtnList__submit {
  flex: 1;
}
.formBtnList__submit button {
  display: block;
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
  text-decoration: none;
  transition: 0.2s;
  line-height: 56px;
  border-radius: 4px;
  color: #fff;
  background: #f57d00;
  width: 100%;
  letter-spacing: 0.05em;
}
.formBtnList__submit button:hover {
  background: #ff9629;
}

.errorText {
  color: #f50b00;
}

[v-cloak] {
  display: none;
}

.formItem {
  margin: 24px 0;
}
.formItem__ttl {
  margin-bottom: 4px;
  font-weight: bold;
}
.formItem__ttl__must, .formItem__ttl__optional {
  margin-left: 6px;
  padding: 2px 4px;
  font-size: 1.2rem;
}
.formItem__ttl__must {
  color: #fff;
  background: #f57d00;
}
.formItem__ttl__optional {
  color: #666666;
  background: #e5e5e5;
}
.formItem__note {
  font-size: 1.2rem;
}

.textInputBlock {
  display: flex;
  justify-content: space-between;
}
.textInputBlock__item {
  display: flex;
  align-items: center;
}
.textInputBlock__item--2col {
  width: calc(50% - 8px);
}
.textInputBlock__item__label {
  margin-right: 4px;
}
.textInputBlock__item__label--kana {
  min-width: 28px;
}

.radioInputBlock,
.checkboxInputBlock {
  display: flex;
  flex-wrap: wrap;
}
.radioInputBlock__item,
.checkboxInputBlock__item {
  position: relative;
  width: calc(25% - 4px);
  margin-bottom: 6px;
}
.radioInputBlock__item + .radioInputBlock__item,
.radioInputBlock__item + .checkboxInputBlock__item,
.checkboxInputBlock__item + .radioInputBlock__item,
.checkboxInputBlock__item + .checkboxInputBlock__item {
  margin-left: 5px;
}
.radioInputBlock__item:nth-child(4n+1),
.checkboxInputBlock__item:nth-child(4n+1) {
  margin-left: 0;
}

.selectBlock {
  position: relative;
}
.selectBlock::after {
  position: absolute;
  top: 50%;
  right: 8px;
  border-top: 6px solid #333;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  content: "";
  transform: translateY(-50%);
}

.inputText {
  width: 100%;
  min-height: 40px;
  padding: 0 8px;
  border: 2px solid #f2f2f2;
  border-radius: 4px;
  box-sizing: border-box;
  background: #f2f2f2;
  transition: 0.2s;
}
.inputText:hover {
  border: 2px solid #e5e5e5;
  background: #e5e5e5;
}
.inputText.is_error {
  border: 2px solid #f50b00;
  background: rgba(245, 11, 0, 0.05);
}
.inputText:focus {
  border: 2px solid #30b7c8;
  background: #fff;
  outline: none;
}

.textarea {
  width: 100%;
  height: 160px;
  padding: 8px;
  border: 2px solid #f2f2f2;
  border-radius: 4px;
  box-sizing: border-box;
  background: #f2f2f2;
  transition: 0.2s;
}
.textarea:hover {
  border: 2px solid #e5e5e5;
  background: #e5e5e5;
}
.textarea.is_error {
  border: 2px solid #f50b00;
  background: rgba(255, 50, 41, 0.05);
}
.textarea:focus {
  border: 2px solid #30b7c8;
  background: #fff;
  outline: none;
}

.select {
  width: 100%;
  min-height: 36px;
  padding: 0 8px;
  border: 2px solid #f2f2f2;
  border-radius: 4px;
  background: #f2f2f2;
  transition: all 0.2s;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.select:hover {
  border: 2px solid #e5e5e5;
  background: #e5e5e5;
}
.select.is_error {
  border: 2px solid #f50b00;
  background: rgba(245, 11, 0, 0.05);
}
.select:focus {
  border: 2px solid #30b7c8;
  background: #fff;
}
.select::-ms-expand {
  display: none;
}

.inputRadio,
.inputCheckbox {
  position: absolute;
  opacity: 0;
}
.inputRadio:checked + label,
.inputCheckbox:checked + label {
  border-color: #30b7c8;
  background: rgba(48, 183, 200, 0.05);
}
.inputRadio:checked + label::before,
.inputCheckbox:checked + label::before {
  border-color: #30b7c8;
}
.inputRadio:checked + label::after,
.inputCheckbox:checked + label::after {
  opacity: 1;
}

.inputRadio:checked + label::before {
  border: 2px solid #30b7c8;
}
.inputRadio:checked + label::after {
  background: #30b7c8;
}

.inputCheckbox:checked + label::before {
  background: #30b7c8;
}

.checkboxLabel, .radioLabel {
  display: flex;
  position: relative;
  height: 36px;
  align-items: center;
  padding-left: 8px;
  border: 2px solid #f2f2f2;
  border-radius: 4px;
  background: #f2f2f2;
  font-size: 1.4rem;
  transition: all 0.2s;
  cursor: pointer;
}
.checkboxLabel::before, .radioLabel::before {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 8px;
  border: 2px solid #fff;
  background: #fff;
  content: "";
  transition: all 0.2s;
}
.checkboxLabel:hover, .radioLabel:hover {
  border: 2px solid #e5e5e5;
  background: #e5e5e5;
}
.is_error.checkboxLabel, .is_error.radioLabel {
  border: 2px solid #f50b00;
  background: rgba(245, 11, 0, 0.05);
}
.is_error.checkboxLabel::before, .is_error.radioLabel::before {
  border-color: rgba(245, 11, 0, 0);
  background: rgba(245, 11, 0, 0.1);
}
.inactive.checkboxLabel, .inactive.radioLabel {
  color: #999999;
  cursor: not-allowed;
}
.inactive.checkboxLabel:hover, .inactive.radioLabel:hover {
  border: 2px solid #f2f2f2;
  background: #f2f2f2;
}

.radioLabel::before {
  border-radius: 100%;
}
.radioLabel::after {
  position: absolute;
  top: 50%;
  left: 12px;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: #fff;
  opacity: 0;
  content: "";
  transform: translateY(-50%);
  transition: all 0.2s;
}

.checkboxLabel::before {
  border-radius: 2px;
}
.checkboxLabel::after {
  position: absolute;
  top: 11px;
  left: 14px;
  width: 4px;
  height: 9px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  opacity: 0;
  content: "";
  transform: rotate(-135deg);
}
