@charset "UTF-8";
* {
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 17px;
  }
}
@media screen and (max-width: 480px) {
  body {
    font-size: 16px;
  }
}
body div,
body h1,
body h2,
body h3,
body h4,
body h5,
body p,
body ol,
body ul {
  margin: 0;
  padding: 0;
}
body li {
  list-style: none;
}
body a {
  cursor: pointer;
  user-select: none;
}
body img {
  vertical-align: bottom;
}

.l-header {
  width: 100%;
  position: relative;
  z-index: 9;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  font-size: 10px;
}
.l-header .l-cont {
  margin: 0 auto;
  padding: 0 20px;
  align-items: center;
  flex-wrap: nowrap;
  max-width: 1315px;
  display: flex;
  justify-content: space-between;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .l-header .l-cont {
    padding: 1.7333333333vw 2.8vw 1.6vw 3.0666666667vw;
    border-bottom: 2px solid #cacaca;
    height: 14.1333333333vw;
  }
}
.l-header .l-cont .l-header__logo {
  width: 180px;
}
@media screen and (max-width: 768px) {
  .l-header .l-cont .l-header__logo {
    width: 35.0666666667vw;
  }
}
.l-header .l-cont .l-header__right__inner {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  flex-wrap: none;
  align-items: stretch;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .l-header .l-cont .l-header__right__inner {
    display: none;
  }
}
.l-header .l-cont .l-header__right__inner .l-header__info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.l-header .l-cont .l-header__right__inner .l-header__info .c-tel {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
.l-header .l-cont .l-header__right__inner .l-header__info .c-tel .c-tel__des {
  position: relative;
  font-size: 1.4em;
  line-height: 20px;
  color: #666;
  font-weight: 500;
  margin-right: 15px;
  padding-right: 15px;
}
.l-header .l-cont .l-header__right__inner .l-header__info .c-tel .c-tel__des::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  width: 1px;
  height: 32px;
  background: #bfbfbf;
}
.l-header .l-cont .l-header__right__inner .l-header__info .c-tel .c-tel__num {
  font-size: 2.75em;
  margin-right: 5px;
  font-family: Oswald, sans-serif;
  line-height: 1;
  color: #274174;
  font-weight: 400;
}
.l-header .l-cont .l-header__right__inner .l-header__info .c-tel .c-tel__num .tel_link {
  padding-left: 30px;
  background: url(../img/icon-tel.svg) no-repeat left center/31px 31px;
  background-size: 26px 26px;
  background-position: left 12px;
}
.l-header .l-cont .l-header__right__inner .l-header__info .c-tel .c-tel__text {
  min-width: 36.5px;
  padding: 2px 3px 3px 3px;
  border: 1px solid #bfbfbf;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.2em;
  line-height: 1.1;
}
.l-header .l-cont .l-header__right__inner .l-header__info .l-header__btn {
  margin-left: 18px;
  padding-top: 49px;
  width: 100px;
  height: 84px;
  background: #99832d url(../img/icon-alert.svg) no-repeat center 15px/29px 26px;
  text-align: center;
  color: #fff;
  font-size: 1.6em;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.l-header .l-cont .l-header__right__inner .l-header__info .l-header__btn:hover {
  opacity: 0.9;
}
.l-header .l-cont .l-headerSP__content {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-header .l-cont .l-headerSP__content {
    display: flex;
    align-items: flex-end;
  }
  .l-header .l-cont .l-headerSP__content a {
    display: inline-block;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    text-decoration: none;
  }
  .l-header .l-cont .l-headerSP__content .icon01 {
    width: 5.3333333333vw;
    margin: 0 auto;
    position: relative;
  }
  .l-header .l-cont .l-headerSP__content .l-headerSP__text {
    margin-top: 0.8vw;
    top: 0.5333333333vw;
    position: relative;
    font-size: 3.4666666667vw;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1;
  }
}

.l-hurry {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  z-index: 20;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  overflow: auto;
}
.l-hurry.view {
  opacity: 1;
  pointer-events: auto;
}
@media screen and (max-width: 768px) {
  .l-hurry {
    display: none;
  }
}
.l-hurry .l-hurry__inner {
  width: 90%;
  max-width: 900px;
  margin: 100px auto 0;
  background: white;
  border-top: 1rem solid #b03c1d;
  padding: 2rem 2rem 3rem;
}
.l-hurry .l-hurry__inner p {
  margin: 0;
}
.l-hurry .l-hurry__inner h1 {
  color: #b03c1d;
  font-family: "Noto Serif JP", serif;
  margin: 0;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: bold;
  display: flex;
  justify-content: center;
}
.l-hurry .l-hurry__inner h1:before {
  content: url(../img/alert_red.svg);
  padding-right: 0.3rem;
  display: block;
  width: 2rem;
}
.l-hurry .l-hurry__inner .l-hurry__staff {
  display: flex;
  margin-bottom: 2rem;
  justify-content: center;
  position: relative;
}
.l-hurry .l-hurry__inner .l-hurry__staff div {
  display: flex;
  align-items: center;
  padding-left: 1rem;
}
.l-hurry .l-hurry__inner .l-hurry__staff:after {
  position: absolute;
  top: 4.5rem;
  content: "";
  border-top: 20px solid #777777;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
}
.l-hurry .l-hurry__inner > p {
  color: #b03c1d;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.l-hurry .l-hurry__inner .l-hurry__tel {
  display: flex;
  align-items: stretch;
  margin-bottom: 2rem;
  border-radius: 6px;
  justify-content: center;
}
.l-hurry .l-hurry__inner .l-hurry__tel > div {
  padding: 1rem;
}
.l-hurry .l-hurry__inner .l-hurry__tel > div:nth-child(1) {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  padding-right: 0.3rem;
  padding-top: 1.8rem;
  background: #b03c1d;
  border: 3px solid #b03c1d;
  position: relative;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}
@media screen and (max-width: 1080px) {
  .l-hurry .l-hurry__inner .l-hurry__tel > div:nth-child(1) {
    padding-top: 2.3rem;
  }
}
.l-hurry .l-hurry__inner .l-hurry__tel > div:nth-child(1) p:nth-child(1) {
  color: white;
}
@media screen and (max-width: 1080px) {
  .l-hurry .l-hurry__inner .l-hurry__tel > div:nth-child(1) p:nth-child(1) {
    font-size: 1.6vw;
  }
}
.l-hurry .l-hurry__inner .l-hurry__tel > div:nth-child(1) p:nth-child(2) {
  color: #ffdd00;
  font-size: 1.3rem;
  font-weight: bold;
}
@media screen and (max-width: 1080px) {
  .l-hurry .l-hurry__inner .l-hurry__tel > div:nth-child(1) p:nth-child(2) {
    font-size: 2vw;
  }
}
.l-hurry .l-hurry__inner .l-hurry__tel > div:nth-child(1):after {
  position: absolute;
  top: -2px;
  right: -30px;
  content: "";
  border-top: 60px solid transparent;
  border-bottom: 60px solid transparent;
  border-left: 25px solid #b03c1d;
}
.l-hurry .l-hurry__inner .l-hurry__tel > div:nth-child(2) {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border: solid 3px #b03c1d;
  padding-left: 2rem;
}
.l-hurry .l-hurry__inner .l-hurry__tel > div:nth-child(2) > p {
  font-size: 3rem;
  line-height: 1;
  color: #b03c1d;
  margin-bottom: 0.5rem;
  font-family: Oswald, sans-serif;
  display: flex;
}
@media screen and (max-width: 1080px) {
  .l-hurry .l-hurry__inner .l-hurry__tel > div:nth-child(2) > p {
    font-size: 5.5vw;
  }
}
.l-hurry .l-hurry__inner .l-hurry__tel > div:nth-child(2) > p:before {
  content: url(../img/alert_tel.svg);
  padding-right: 0.1rem;
  display: block;
  width: 3rem;
}
.l-hurry .l-hurry__inner .l-hurry__tel > div:nth-child(2) div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.l-hurry .l-hurry__inner .l-hurry__tel > div:nth-child(2) div p {
  border: solid 1px #333333;
  padding: 0.1rem 1rem;
  text-align: center;
  border-radius: 3px;
}
.l-hurry .l-hurry__inner .l-hurry__check {
  border: solid 1px #333333;
  padding: 1rem;
  width: 500px;
  margin: 0 auto;
  padding: 1rem 0 1rem 1rem;
}
.l-hurry .l-hurry__inner .l-hurry__check p {
  display: flex;
  align-items: center;
}
.l-hurry .l-hurry__inner .l-hurry__check p:before {
  content: url(../img/alert_check.svg);
  padding-right: 0.5rem;
  display: block;
  width: 1.3rem;
}
.l-hurry .l-hurry__close-btn {
  background: white;
  color: #333333;
  width: 200px;
  height: 40px;
  margin: 35px auto 100px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  background: #fff url(../img/icon-close-modal.svg) no-repeat right 20px center/14px 14px;
}
.l-hurry .l-hurry__close-btn:hover {
  cursor: pointer;
}

.p-material1 .c-mv5 {
  padding: 40px 0;
  background-color: #f8f3ee;
  font-size: 10px;
}
@media screen and (max-width: 1080px) {
  .p-material1 .c-mv5 {
    font-size: 0.9vw;
  }
}
@media screen and (max-width: 768px) {
  .p-material1 .c-mv5 {
    padding: 20px 0;
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 480px) {
  .p-material1 .c-mv5 {
    font-size: 2vw;
  }
}
.p-material1 .c-mv5 .c-mv5__inner {
  margin: 0 auto;
  width: 100%;
  max-width: 1080px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 0;
}
.p-material1 .c-mv5 .c-mv5__inner .c-mv5__content {
  padding: 0 38px 0 20px;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .p-material1 .c-mv5 .c-mv5__inner .c-mv5__content {
    padding: 0 20px 0 20px;
  }
}
.p-material1 .c-mv5 .c-mv5__inner .c-mv5__content .c-mv5__title1 {
  margin-bottom: -5px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Noto Serif JP", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  font-weight: normal;
}
.p-material1 .c-mv5 .c-mv5__inner .c-mv5__content .c-mv5__title1 .c-mv5__title1__label {
  color: #fff;
  font-size: 3.2em;
  line-height: 1;
  min-width: 3em;
  height: 3em;
  border-radius: 50%;
  background-color: #99832d;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Noto Serif JP", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}
.p-material1 .c-mv5 .c-mv5__inner .c-mv5__content .c-mv5__title1 .c-mv5__title1__text {
  letter-spacing: 5px;
  padding-left: 21px;
  padding-top: 3px;
  font-size: 4.2em;
  line-height: 1.3;
  color: #333;
}
@media screen and (max-width: 480px) {
  .p-material1 .c-mv5 .c-mv5__inner .c-mv5__content .c-mv5__title1 .c-mv5__title1__text {
    font-size: 3.2em;
    padding-left: 10px;
  }
}
.p-material1 .c-mv5 .c-mv5__inner .c-mv5__content .c-mv5__title1 .c-mv5__title1__text .small {
  font-size: 0.8em;
}
.p-material1 .c-mv5 .c-mv5__inner .c-mv5__content .c-mv5__title1 .c-mv5__title1__text .symbol {
  display: inline-block;
  margin: 0 -30px 0 -14px;
}
@media screen and (max-width: 768px) {
  .p-material1 .c-mv5 .c-mv5__inner .c-mv5__content .c-mv5__title1 .c-mv5__title1__text .symbol {
    margin: 0;
  }
}
.p-material1 .c-mv5 .c-mv5__inner .c-mv5__content .c-mv5__title1 .c-mv5__title1__text .inline_block {
  display: inline-block;
}
.p-material1 .c-mv5 .c-mv5__inner .c-mv5__content .c-mv5__title1 .c-mv5__title1__text .addNotice {
  font-size: 0.5em;
  color: #99832d;
}
.p-material1 .c-mv5 .c-mv5__inner .c-mv5__content .c-mv5__notice {
  font-size: 10pt;
  color: #99832d;
  text-align: right;
}
@media screen and (max-width: 480px) {
  .p-material1 .c-mv5 .c-mv5__inner .c-mv5__content .c-mv5__notice {
    text-align: left;
    font-size: 8pt;
  }
}
.p-material1 .c-mv5 .c-mv5__inner .c-mv5__content .c-mv5__bottom {
  text-align: right;
}
.p-material1 .c-mv5 .c-mv5__inner .c-mv5__content .c-mv5__bottom .c-mv5__title2 {
  margin-bottom: 18px;
  color: #274174;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px 0;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Noto Serif JP", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}
@media screen and (max-width: 1080px) {
  .p-material1 .c-mv5 .c-mv5__inner .c-mv5__content .c-mv5__bottom .c-mv5__title2 {
    margin-top: 18px;
    justify-content: center;
  }
}
.p-material1 .c-mv5 .c-mv5__inner .c-mv5__content .c-mv5__bottom .c-mv5__title2 .c-mv5__title2__content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.p-material1 .c-mv5 .c-mv5__inner .c-mv5__content .c-mv5__bottom .c-mv5__title2 .c-mv5__title2__content .c-mv5__title2__text1 {
  top: 8px;
  position: relative;
  font-size: 2.6em;
  font-weight: 400;
}
.p-material1 .c-mv5 .c-mv5__inner .c-mv5__content .c-mv5__bottom .c-mv5__title2 .c-mv5__title2__content .c-mv5__title2__text2 {
  position: relative;
  font-size: 4.8em;
  padding-top: 4px;
}
.p-material1 .c-mv5 .c-mv5__inner .c-mv5__content .c-mv5__bottom .c-mv5__title2 .c-mv5__title2__content .c-mv5__title2__dot {
  position: relative;
  margin: 0 17px 0 21px;
  width: 2px;
  height: 4.8em;
  background-color: #274174;
  transform: rotate(25deg);
}
@media screen and (max-width: 480px) {
  .p-material1 .c-mv5 .c-mv5__inner .c-mv5__content .c-mv5__bottom .c-mv5__title2 .c-mv5__title2__content .c-mv5__title2__dot {
    display: none;
  }
}
.p-material1 .c-mv5 .c-mv5__inner .c-mv5__content .c-mv5__bottom .c-mv5__title2 .c-mv5__title2__text3 {
  font-size: 4.2em;
  letter-spacing: -1.5px;
}
.p-material1 .c-mv5 .c-mv5__inner .c-mv5__content .c-mv5__bottom .c-mv5__title2 .c-mv5__title2__text3 .small {
  font-size: 0.8em;
}
.p-material1 .c-mv5 .c-mv5__inner .c-mv5__content .c-mv5__bottom .c-mv5__box {
  text-align: left;
  padding: 19px 38px 17px 42px;
  letter-spacing: 0.3px;
  font-size: 2em;
  color: #333;
  border: 1px solid #99832d;
  background-color: #fff;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Noto Serif JP", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}
@media screen and (max-width: 1080px) {
  .p-material1 .c-mv5 .c-mv5__inner .c-mv5__content .c-mv5__bottom .c-mv5__box {
    padding: 10px;
  }
}
.p-material1 .c-mv5 .c-mv5__inner .c-mv5__content .c-mv5__bottom .c-mv5__box span {
  display: none;
}
@media screen and (max-width: 480px) {
  .p-material1 .c-mv5 .c-mv5__inner .c-mv5__content .c-mv5__bottom .c-mv5__box span {
    display: inline;
  }
}
@media screen and (max-width: 480px) {
  .p-material1 .c-mv5 .c-mv5__inner .c-mv5__content .c-mv5__bottom .c-mv5__box br {
    display: none;
  }
}
.p-material1 .c-mv5 .c-mv5__inner .c-mv5__img {
  width: 311px;
  position: relative;
  top: -4px;
  left: -1px;
  margin: 0;
}
@media screen and (max-width: 1080px) {
  .p-material1 .c-mv5 .c-mv5__inner .c-mv5__img {
    width: 33vw;
  }
}
@media screen and (max-width: 768px) {
  .p-material1 .c-mv5 .c-mv5__inner .c-mv5__img {
    width: 50vw;
  }
}
@media screen and (max-width: 480px) {
  .p-material1 .c-mv5 .c-mv5__inner .c-mv5__img {
    width: 57vw;
  }
}
.p-material1 .c-mv5 .c-mv5__inner .c-mv5__img img {
  width: 100%;
}
.p-material1 .c-mv5 .c-mv5__inner .c-mv5__img.sp_only {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-material1 .c-mv5 .c-mv5__inner .c-mv5__img.sp_only {
    display: block;
    margin: 0 auto;
  }
}
.p-material1 .c-mv5 .c-mv5__inner .c-mv5__img.pc_only {
  display: block;
}
@media screen and (max-width: 768px) {
  .p-material1 .c-mv5 .c-mv5__inner .c-mv5__img.pc_only {
    display: none;
  }
}

.c-step {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 70px auto 0;
}
@media screen and (max-width: 768px) {
  .c-step {
    gap: 5px;
  }
}
.c-step .c-step__item {
  width: 180px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-step .c-step__item {
    width: 30vw;
  }
}
.c-step .c-step__item.c-step__item:before {
  content: "";
  width: 200px;
  height: 2px;
  background: #ccc;
  right: 100px;
  top: 30px;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .c-step .c-step__item.c-step__item:before {
    width: 30vw;
    right: 16vw;
    top: 18px;
  }
}
.c-step .c-step__item:first-of-type.c-step__item:before {
  display: none;
}
.c-step .c-step__item .c-step__num {
  width: 60px;
  line-height: 60px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  background: #999;
  margin: 0 auto;
  border-radius: 80px;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", "メイリオ", Meiryo, serif;
  font-size: 20px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .c-step .c-step__item .c-step__num {
    width: 40px;
    line-height: 40px;
    font-size: 18px;
  }
}
.c-step .c-step__item .c-step__txt {
  color: #999;
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  .c-step .c-step__item .c-step__txt {
    font-size: 14px;
  }
}
.c-step .c-step__item .c-step__txt span {
  display: inline-block;
}
.c-step .c-step__item.is-action .c-step__num {
  background: #274174;
  color: #fff;
}
.c-step .c-step__item.is-action .c-step__txt {
  color: #274174;
}

.c-form {
  padding: 60px;
  max-width: 1000px;
  margin: 0 auto 50px;
}
@media screen and (max-width: 768px) {
  .c-form {
    padding: 60px 20px;
  }
}
.c-form .c-form__main-error {
  width: 100%;
  margin: 0 auto 3rem;
  padding: 1rem;
  text-align: center;
  display: none;
  color: #b03c1d;
  padding-left: 20px;
  border-radius: 4px;
  border: 2px solid #b03c1d;
}
.c-form .c-form__main-error img {
  display: block;
  margin: 0 auto 10px;
  width: 24px;
}
@media screen and (max-width: 480px) {
  .c-form .c-form__main-error {
    text-align: left;
  }
}
.c-form .c-form__main-error.active {
  display: block;
}
.c-form .c-form-group {
  display: flex;
  gap: 20px 50px;
  padding: 30px 0;
  border-bottom: 1px dashed #ccc;
}
@media screen and (max-width: 768px) {
  .c-form .c-form-group {
    flex-direction: column;
  }
}
.c-form .c-form-group:first-of-type {
  border-top: 1px dashed #ccc;
}
.c-form .c-form-group:last-of-type {
  margin-bottom: 60px;
}
.c-form .c-form-group .c-form-group__title {
  width: 200px;
  /* ラベルの固定幅 */
  margin-right: 10px;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .c-form .c-form-group .c-form-group__title {
    width: 100%;
  }
}
.c-form .c-form-group .c-form-group__title .required {
  font-size: 14px;
  color: #fff;
  background: #b03c1d;
  padding: 1px 5px;
  margin-left: 5px;
  display: inline-block;
}
.c-form .c-form-group .c-form-group__input {
  flex: 1;
  /* 残りのスペースを占有 */
}
.c-form .c-form-group .c-form-group__input label {
  cursor: pointer;
  user-select: none;
  display: inline-block;
  padding: 8px 16px;
  background: #eee;
  border-radius: 4px;
  width: 100%;
  max-width: 360px;
  font-size: 16px;
  line-height: 40px;
  margin-bottom: 10px;
}
.c-form .c-form-group .c-form-group__input label.c-form-group__checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
}
.c-form .c-form-group .c-form-group__input label.c-form-group__checkbox-label span::before {
  display: block;
  content: "";
  width: 22px;
  height: 22px;
  border: 1px solid #aaa;
  background: #fff;
}
.c-form .c-form-group .c-form-group__input label.c-form-group__radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
}
.c-form .c-form-group .c-form-group__input label.c-form-group__radio-label span::before {
  display: block;
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid #aaa;
  background: #fff;
}
.c-form .c-form-group .c-form-group__input .c-form-group__checkbox-label input[type=checkbox]:checked + span::before {
  background-image: url(/img/v.svg);
  background-color: #274174;
  background-size: 24px 24px;
}
.c-form .c-form-group .c-form-group__input .c-form-group__radio-label input[type=radio]:checked + span::before {
  background-image: url(/img/v2.svg);
  background-color: #274174;
  background-size: 24px 24px;
}
.c-form .c-form-group .c-form-group__input input[type=text],
.c-form .c-form-group .c-form-group__input input[type=tel],
.c-form .c-form-group .c-form-group__input input[type=email],
.c-form .c-form-group .c-form-group__input select {
  margin-bottom: 5px;
  padding: 8px 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  height: 56px;
  font-size: 16px;
  line-height: 1.5;
}
.c-form .c-form-group .c-form-group__input input[type=checkbox],
.c-form .c-form-group .c-form-group__input input[type=radio] {
  display: none;
}
.c-form .c-form-group .c-form-group__input textarea {
  margin-top: 10px;
  padding: 8px 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  height: 200px;
  font-size: 16px;
  line-height: 1.5;
}
.c-form .c-form-group .c-form-group__input input.error,
.c-form .c-form-group .c-form-group__input label.error,
.c-form .c-form-group .c-form-group__input textarea.error {
  border: 2px solid #b03c1d;
}
.c-form .c-form-group .c-form-group__input a.privacy {
  color: #274174;
}
.c-form .c-form-group .c-form-group__error-msg.active {
  margin: 9px 0 0 0;
  padding-left: 20px;
  color: #b03c1d;
  background: url(/img/error.svg) no-repeat top 3px left;
}
.c-form button,
.c-form .back-button {
  display: block;
  width: 100%;
  max-width: 300px;
  background-color: #274174;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 24px;
  margin: 0 auto;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", "メイリオ", Meiryo, serif;
  background: url(/img/arrow-right-w.svg) no-repeat center right 30px #274174;
  background-size: 10px 15px;
}
.c-form button:hover,
.c-form .back-button:hover {
  opacity: 0.9;
}
.c-form .back-button {
  width: 90%;
  max-width: 220px;
  font-size: 20px;
  margin: 30px auto 0;
  background: url(/img/arrow-left-w.svg) no-repeat center left 30px #274174;
  background-size: 10px 15px;
  text-align: center;
  text-decoration: none;
}
.c-form .c-btn10 a {
  padding: 14px 0 12.5px 24px;
  display: block;
  width: 260px;
  font-size: 1em;
  line-height: 1;
  color: #333;
  text-align: center;
  background: #fff url(../img/icon-home1.svg) no-repeat left 20px center/18px 18px;
  border: 1px solid #ccc;
  margin: 0 auto;
  text-decoration: none;
}
.c-form .c-box12 {
  font-size: 10px;
}
.c-form .c-box12 .c-box12__title {
  margin-bottom: 26px;
  font-size: 3.6em;
  line-height: 1.3;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Noto Serif JP", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  color: #274174;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .c-form .c-box12 .c-box12__title {
    font-size: 7vw;
  }
}
.c-form .c-box12 .c-box12__title span {
  display: inline-block;
}
.c-form .c-box12 .c-box12__text {
  font-size: 1.6em;
  line-height: 28px;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-form .c-box12 .c-box12__text {
    text-align: left;
  }
}
.c-form .c-box12 .c-box12__contact {
  margin: 38px auto;
  border: 1px solid #ccc;
  max-width: 880px;
}
.c-form .c-box12 .c-box12__contact .c-box12__inner {
  background: #fff;
  padding: 26px 10px 40px;
}
.c-form .c-box12 .c-box12__contact .c-box12__inner .c-box12__txt2 {
  margin-bottom: 20px;
  letter-spacing: 1.5px;
  text-align: center;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Noto Serif JP", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  font-size: 2em;
}
.c-form .c-box12 .c-box12__contact .c-box12__inner .c-box12__txt2 span {
  display: inline-block;
}
.c-form .c-box12 .c-box12__contact .c-box12__inner .c-box12__phone {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 0;
}
@media screen and (max-width: 768px) {
  .c-form .c-box12 .c-box12__contact .c-box12__inner .c-box12__phone {
    flex-direction: column;
  }
}
.c-form .c-box12 .c-box12__contact .c-box12__inner .c-box12__phone .c-box12__number {
  margin-right: 10px;
  position: relative;
  font-size: 5em;
  line-height: 1;
  font-family: Oswald, sans-serif;
  color: #274174;
  padding-left: 50px;
  background: url(../img/icon-tel.svg) no-repeat left 8px/40px 40px;
}
@media screen and (max-width: 768px) {
  .c-form .c-box12 .c-box12__contact .c-box12__inner .c-box12__phone .c-box12__number {
    font-size: 9vw;
    background: url(../img/icon-tel.svg) no-repeat left 3px/40px 8vw;
  }
}
@media screen and (max-width: 480px) {
  .c-form .c-box12 .c-box12__contact .c-box12__inner .c-box12__phone .c-box12__number {
    padding-left: 40px;
  }
}
.c-form .c-box12 .c-box12__contact .c-box12__inner .c-box12__phone .c-box12__point {
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-form .c-box12 .c-box12__contact .c-box12__inner .c-box12__phone .c-box12__point .c-box12__txt {
  margin-top: 5px;
  width: fit-content;
  border: 1px solid #bfbfbf;
  border-radius: 2px;
  color: #333;
  text-align: center;
  padding: 0 9.3px;
  height: 36px;
  display: flex;
  align-items: center;
  letter-spacing: 1.5px;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Noto Serif JP", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  font-size: 1.5em;
  line-height: 2.8rem;
}
.c-form .c-box12 .c-box12__contact .c-box12__inner .c-box12__phone .c-box12__txt + .c-box12__txt {
  margin-left: 5px;
}

footer {
  padding: 20px 0 10px;
  background-color: #333;
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 200;
  color: #fff;
}
footer .l-cont2 {
  width: 100%;
  max-width: 1120px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
footer .l-cont2 .l-footer__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px 37px;
}
footer .l-cont2 .l-footer__row .l-footer__logo {
  width: 325px;
}
@media screen and (max-width: 480px) {
  footer .l-cont2 .l-footer__row .l-footer__logo {
    width: 220px;
  }
}
footer .l-cont2 .l-footer__row .l-footer__logo .l-footer__logo__link {
  text-align: center;
  display: block;
}
footer .l-cont2 .l-footer__row .l-footer__info {
  font-size: 15px;
}
@media screen and (max-width: 480px) {
  footer .l-cont2 .l-footer__row .l-footer__info {
    font-size: 12px;
  }
}
footer .l-cont2 .l-footer__row .l-footer__info .l-footer__address {
  width: 100%;
}
footer .l-cont2 .l-footer__row .l-footer__info .l-footer__address .space {
  padding: 0 6px;
  display: inline-block;
}
footer .l-cont2 .l-footer__row .l-footer__info .l-footer__others {
  position: relative;
  top: -2px;
  display: flex;
  flex-wrap: wrap;
  gap: 0 29px;
}
footer .l-cont2 .l-footer__row .l-footer__info .l-footer__others .l-footer__link {
  text-decoration: underline;
  color: #fff;
}
footer .l-cont2 .copyright {
  margin-top: 33px;
  text-align: center;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.1px;
}
@media screen and (max-width: 480px) {
  footer .l-cont2 .copyright {
    font-size: 12px;
  }
}

.c-page-title {
  text-align: center;
  padding: 40px 20px;
  background-color: #f8f9fa;
  border-bottom: 2px solid #b03c1d;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .c-page-title {
    padding: 30px 15px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 480px) {
  .c-page-title {
    padding: 25px 10px;
    margin-bottom: 25px;
  }
}
.c-page-title .c-page-title__text {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
  letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
  .c-page-title .c-page-title__text {
    font-size: 24px;
    letter-spacing: 1.5px;
  }
}
@media screen and (max-width: 480px) {
  .c-page-title .c-page-title__text {
    font-size: 20px;
    letter-spacing: 1px;
  }
}

body.admin {
  padding: 20px;
}
body.admin a {
  text-decoration: none;
  color: inherit;
}
body.admin a:hover {
  opacity: 0.8;
}
body.admin .btn {
  text-align: center;
  padding: 10px;
  border: 1px solid #aaa;
  background: linear-gradient(#fff, #dcdcdc);
  margin-bottom: 16px;
  width: 250px;
  border-radius: 5px;
}
body.admin h1 {
  font-size: 24px;
  margin-bottom: 20px;
}
body.admin table {
  font-size: 14px;
  width: 100%;
  border-collapse: collapse;
}
body.admin table tr:nth-child(even) {
  background-color: #f5f5f5;
}
body.admin table th,
body.admin table td {
  padding: 8px 14px;
  text-align: left;
  vertical-align: top;
  width: 0;
  min-width: 200px;
  border-bottom: 1px solid #ccc;
}
body.admin table th.form_id_column,
body.admin table td.form_id_column {
  min-width: 100px;
}
body.admin table th {
  padding: 4px 14px;
  background-image: linear-gradient(#fff, #ccc);
}