.c_header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999;
  background: #def3ff;
  display: none;
}

.c_header.is_fixed {
  display: block;
  animation: show .3s linear;
}

@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.c_header__inner {
  width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
}

.c_header__logo a {
  display: block;
  height: 40px;
  width: 120px;
  overflow: hidden;
  background: url("../../assets/img/component/header/logo.png") left top no-repeat;
  text-indent: -9999px;
}

.c_header__logo a:hover {
  opacity: .7;
}

.c_header__gnav {
  display: flex;
  align-items: center;
}

.c_header__gnav__item a {
  display: block;
  text-align: center;
  font-size: 12px;
  color: #000;
  padding-left: 18px;
  padding-right: 18px;
}

.c_header__gnav__item a:hover {
  opacity: .7;
}

.c_header__gnav__item:last-child {
  margin-right: 0;
}

.c_header__gnav__item--contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 35px;
  background: #1065a9;
  color: #fff;
  margin-left: 15px;
  border-radius: 25px;
}

.c_header__gnav__item--contact a::before {
  content: '';
  display: block;
  width: 14px;
  height: 10px;
  background: url("../../assets/img/component/header/ico_gnav_mail.png");
  margin-right: 10px;
}

.c_footer {
  background: url("../../assets/img/component/footer/bg_footer.jpg") left top/cover no-repeat;
  color: #fff;
  padding-top: 50px;
  padding-bottom: 20px;
}

.c_footer__inner {
  width: 780px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
}

.c_footer__info {
  width: 560px;
  height: 150px;
  display: flex;
  align-items: center;
}

.c_footer__info__ttl {
  display: flex;
  align-items: center;
  font-size: 20px;
  line-height: 35px;
  font-weight: 500;
  width: 160px;
  height: 150px;
  border-right: 1px solid #fff;
  margin-right: 30px;
}

.c_footer__info__data__num {
  margin-bottom: 16px;
}

.c_footer__info__data__num__txt {
  font-size: 36px;
  font-weight: 500;
  margin-left: 10px;
}

.c_footer__info__data__num a {
  color: #fff;
}

.c_footer__info__data__num a:hover {
  opacity: .7;
}

.c_footer__info__data__txt {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  margin-top: 10px;
}

.c_footer__link__mail a {
  width: 240px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  background: #222;
  color: #fff;
}

.c_footer__link__mail a:hover {
  opacity: .7;
}

.c_footer__link__mail__txt {
  margin-left: 10px;
  color: #fff;
  font-size: 15px;
  padding-left: 15px;
}

.c_footer__link__snsList {
  width: 185px;
  display: flex;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}

.c_footer__link__snsList__item a:hover {
  opacity: .7;
}

.c_footer__copyright {
  width: 780px;
  text-align: right;
  font-size: 10px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}

.c_radio__label {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 14px;
  padding-left: 28px;
  padding-right: 24px;
  padding-top: 2px;
}

.c_radio__label::before, .c_radio__label::after {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  transition: all .2s;
  line-height: 0;
  background-repeat: no-repeat;
  background-position: left top;
  width: 20px;
  height: 20px;
  max-width: 20px;
  max-height: 20px;
}

.c_radio__label::before {
  background-image: url("../../assets/img/component/form/ico_radio_off.png");
}

.c_radio__label::after {
  opacity: 0;
  transform: scale(1.5);
  background-image: url("../../assets/img/component/form/ico_radio_on.png");
}

.c_radio__input:checked + .c_radio__label::before {
  transform: scale(1);
}

.c_radio__input:checked + .c_radio__label::after {
  opacity: 1;
  transform: scale(1);
}

.c_radio.is_error .c_radio__label {
  color: #1065a9;
}

.c_textfield {
  box-sizing: border-box;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid #c5c5c5;
  font-size: 14px;
  line-height: 1.5;
  background-color: #fff;
  color: #000;
  width: 100%;
  min-height: 35px;
  padding-left: 10px;
  padding-right: 10px;
}

.c_textfield.is_error {
  color: #1065a9;
  border-color: #1065a9;
}

.c_textarea {
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #d2cfcd;
  font-size: 14px;
  line-height: 1.5;
  min-height: 150px;
  width: 100%;
  padding: 10px;
}

.c_textarea::placeholder {
  color: #ccc;
}

.c_textarea:-ms-input-placeholder {
  color: #ccc;
}

.c_textarea::-ms-input-placeholder {
  color: #ccc;
}

.c_textarea.is_error {
  border-color: #1065a9;
}

.c_pageTtl {
  position: relative;
  width: 100%;
  padding-top: 401px;
  background-repeat: no-repeat;
  background-position: center top;
  background-attachment: fixed;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  flex-direction: column;
}

.c_pageTtl__inner {
  position: absolute;
  width: 960px;
  height: 293px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -53%);
}

.c_pageTtl__img {
  text-align: right;
}

/*# sourceMappingURL=../../../sourcemaps/assets/css/component.css.map */
