@charset "UTF-8";
.js-fadeIn {
  opacity: 0;
  transition: 1s .3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translate3d(0, 6rem, 0);
  backface-visibility: hidden;
}
.js-fadeIn.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.c-main__header {
  height: 300px;
  background: url("../images/common/subpage_header_bg.jpg") no-repeat center center / cover;
  display: flex;
  justify-content: center;
	align-items: center;
  flex-direction: column;
  color: #fff;
}
.c-main__ttl {
  font-weight: 700;
  font-size: 4rem;
  letter-spacing: .1em;
  text-align: center;
  position: relative;
  margin-bottom: 1.5rem;
}
.c-main__ttlEn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: .1em;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .c-main__header {
    height: 20rem;
  }
  .c-main__ttl {
    font-size: 3rem;
    letter-spacing: .1em;
    margin-bottom: 1rem;
  }
  .c-main__ttlEn {
    font-size: 1.6rem;
  }
}
.c-ttl01 {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: .1em;
  margin-bottom: 4rem;
  border-bottom: 2px solid #ddd;
  padding-bottom: 1.7rem;
  position: relative;
}
.c-ttl01:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: -2px;
  background: #0E78C4;;
  height: 2px;
  width: 9.4rem;
}
.c-form__item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
.c-form__item:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.c-form__ttl {
  width: 20rem;
  line-height: 1.7;
  padding-top: 1.3rem;
  flex-shrink: 0;
  position: relative;
}
.c-form--conf .c-form__ttl {
  padding-top: 0;
}
.c-form__ttl label,
.c-form__ttl span {
  font-weight: 700;
}
.c-form__body {
  width: calc(100% - 20rem);
  flex-shrink: 0;
  line-height: 1.7;
}
.c-input[type="text"],
.c-input[type="tel"] {
  background: #F5F5F5;
  width: 100%;
  height: 5rem;
  padding: 0 2rem;
  font-size: 1.6rem;
  border-radius: 5px;
}
.c-input--zip {
  max-width: 28rem;
  margin-bottom: 1.6rem;
}
.c-textarea {
  background: #F5F5F5;
  width: 100%;
  height: 20rem;
  padding: 2rem 2rem;
  font-size: 1.6rem;
  line-height: 1.5;
}
.c-selectBox {
	display: inline-block;
	position: relative;
	line-height: 1;
}
.c-selectBox:after {
	position: absolute;
	content: "\f107" !important;
  font-family: FontAwesome !important;
	right: 1.6rem;
	top: calc(50% - .8rem);
	pointer-events: none;
  color: #0E78C4;
}
.c-selectBox select {
  background: #f5f5f5;
	display: inline-block;
	width: 100%;
  height: 5rem;
	overflow: hidden;
	font: inherit;
	padding: 0 5rem 0 2rem;
	margin: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	font-size: 1.6rem;
  border-radius: 5px;
}
.c-btnSend {
  margin-top: 4rem;
  text-align: center;
}
.c-form__error {
  color: #ff0000;
  font-size: 1.4rem;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .c-form__item {
    display: block;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }
  .c-form__ttl {
    width: 100%;
    margin-bottom: 1.5rem;
    padding-top: 0rem;
  }
  .c-form__body {
    width: 100%;
  }
}

.c-noteBlk {
  background: #f5f5f5;
  padding: 25px 35px;
  margin-bottom: 6rem;
  font-size: 1.4rem;
}
.c-noteBlk h2 {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: .7rem;
  line-height: 1.7;
}
.c-noteBlk p {
  line-height: 1.7;
}
.c-noteBlk p a {
  text-decoration: underline;
}
.is-pc .c-noteBlk p a:hover {
  opacity: .5;
}
@media screen and (max-width: 767px) {
  .c-noteBlk {
    padding: 1.5rem 2rem;
  }
}

.c-btn01 {
  display: inline-block;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: .1em;
  max-width: 50rem;
  width: 100%;
  height: 5.5rem;
  background: #0E78C4;
  border-radius: 4rem;
  position: relative;
  text-align: center;
  line-height: 5.5rem;
}
.c-btn01:after {
  content: "\f105";
	font-family: FontAwesome;
  color: #fff;
  position: absolute;
  right: 2rem;
  font-size: 2rem;
  transition: .2s;
}
.is-pc .c-btn01:hover:after {
  transform: translateX(.7rem);
}
.c-btn02 {
  display: inline-block;
  color: #0E78C4;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: .1em;
  max-width: 50rem;
  width: 100%;
  height: 5.5rem;
  background: #fff;
  border-radius: 4rem;
  position: relative;
  text-align: center;
  line-height: 5.1rem;
  border: 2px solid #0E78C4;
}
.c-btn02:after {
  content: "\f105";
	font-family: FontAwesome;
  color: #0E78C4;
  position: absolute;
  right: 2rem;
  font-size: 2rem;
  transition: .2s;
}
.is-pc .c-btn02:hover:after {
  transform: translateX(.7rem);
}


.c-maxW1000 {
  max-width: calc(1000px + 7%);
  padding-right: 3.5%;
  padding-left: 3.5%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .c-maxW1000 {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}



