@charset "UTF-8";
@media (min-width: 768px) {
  .is-hidden_pc {
    display: none;
  }
}
@media (max-width: 767px) {
  .is-hidden_sp {
    display: none;
  }
}
.u-txt_left {
  text-align: left !important;
}

.u-txt_center {
  text-align: center !important;
}

.u-txt_right {
  text-align: right !important;
}

.u-mb5 {
  margin-bottom: 5px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-mb15 {
  margin-bottom: 15px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-mb25 {
  margin-bottom: 25px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-mb35 {
  margin-bottom: 35px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-mb45 {
  margin-bottom: 45px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-mb60 {
  margin-bottom: 60px !important;
}

.u-mb70 {
  margin-bottom: 70px !important;
}

.u-mb80 {
  margin-bottom: 80px !important;
}

.u-mt5 {
  margin-top: 5px !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-mt15 {
  margin-top: 15px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-mt25 {
  margin-top: 25px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

table {
  width: 100%;
}

.bold {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", YuGothic, "Yu Gothic", Meiryo, sans-serif;
  font-weight: bold;
}

.ttl_section {
  font-size: 3.4rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 767px) {
  .ttl_section {
    font-size: 2rem;
    width: 95%;
    margin: 0 auto;
  }
}
.ttl_section.-border {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ttl_section.-border::before, .ttl_section.-border::after {
  border-top: 2px solid;
  content: "";
  width: 35px;
  color: #1EADA1;
}
@media (max-width: 767px) {
  .ttl_section.-border::before, .ttl_section.-border::after {
    width: 20px;
  }
}
.ttl_section.-border::before {
  margin-right: 15px;
}
.ttl_section.-border::after {
  margin-left: 15px;
}

.btn_orange {
  width: 217px;
  background: transparent linear-gradient(2deg, #E85000 0%, #E87D00 100%) 0% 0% no-repeat;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
  border-radius: 7px;
  opacity: 1;
}
.btn_orange a {
  font-size: 2rem;
  font-weight: bold;
  font-family: YuGothic, "Yu Gothic Medium", sans-serif;
  text-align: left;
  padding: 16px 0 17px 20px;
  background: linear-gradient(to right, transparent 0%, transparent 65%, transparent 65%, transparent 93%, #FFF 93%, #FFF 100%);
  border-radius: 6px;
  position: relative;
  border: 1px solid #E83E00;
}
.btn_orange a::after {
  content: "";
  border-style: solid;
  border-width: 8px 0 8px 8px;
  border-color: transparent transparent transparent #E87D00;
  position: absolute;
  top: 18px;
  right: 5px;
  height: 0;
  width: 0;
}
.btn_orange span {
  font-size: 1.7rem;
}

.is-animation_scroll {
  opacity: 0;
}

.fadein_down {
  animation: fadeindown 0.8s forwards;
}

@keyframes fadeindown {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
.is-fedein_to_down {
  transform: translateY(-10px);
}

@media (max-width: 767px) {
  .eyecatch--img {
    width: 100%;
  }
}

.breadcrumbs {
  padding: 5px 0;
  background: #DFEEFF;
}
.breadcrumbs li {
  display: inline-block;
  line-height: 1;
}
.breadcrumbs li::before {
  display: inline-block;
  vertical-align: top;
  content: "＞";
}
.breadcrumbs li:first-child::before {
  content: normal;
}

.page-numbers {
  display: inline-block !important;
  width: 2em;
  padding: 6px 0;
  line-height: 1;
  text-align: center;
}
.page-numbers.current {
  font-weight: bold;
}

.pagination:empty {
  display: none;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6em;
  line-height: 1.3;
  color: #212121;
}
@media (max-width: 767px) {
  body {
    font-size: 1.5rem;
  }
}

.wrap {
  min-width: 1200px;
  margin: auto;
}
@media (max-width: 767px) {
  .wrap {
    width: 100%;
    min-width: auto;
    min-width: initial;
  }
}

.container {
  max-width: 1000px;
  margin: auto;
}
.container.-md {
  max-width: 1110px;
}
.container.-sm {
  max-width: 945px;
}
.container.-lg {
  max-width: 1215px;
}
@media (max-width: 767px) {
  .container {
    box-sizing: border-box;
    width: 100%;
    padding: 0 10px;
  }
}

main {
  display: block;
  padding-top: 83px;
}
@media (min-width: 768px) and (max-width: 769px) and (orientation: portrait) {
  main {
    min-height: 95vh;
  }
}
@media (max-width: 767px) {
  main {
    padding-top: 66px;
  }
}

.header {
  position: fixed;
  width: 100%;
  background: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  z-index: 1;
  height: 85px;
}
@media (max-width: 767px) {
  .header {
    height: 75px;
  }
}
.header--logo {
  width: 300px;
}
@media (max-width: 767px) {
  .header--logo {
    width: 222px;
    padding: 20px 0 0 15px;
  }
}
.header--logo a {
  display: block;
}
.header--inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .header--inner {
    display: block;
    padding: 0;
  }
}

.gnav_btn {
  position: fixed;
  top: 15px;
  right: 10px;
  z-index: 100;
  width: 48px;
  height: 46px;
  cursor: pointer;
  border: none;
  background: transparent linear-gradient(0deg, #E85000 0%, #DE7800 100%) 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 6px #0000004d;
  border-radius: 7px;
  opacity: 1;
  display: none;
}
@media (max-width: 767px) {
  .gnav_btn {
    display: block;
  }
}

.gnav_btn--line {
  position: absolute;
  left: 25%;
  display: block;
  width: 24px;
  height: 4px;
  background: #FFF;
  transition: 0.3s;
}
.gnav_btn--line:first-child {
  top: 25%;
}
.gnav_btn--line:nth-child(2) {
  top: 46%;
  opacity: 1;
}
.gnav_btn--line:last-child {
  top: 66%;
}

.gnav_btn.is-open .gnav_btn--line {
  transition: 0.2s;
}
.gnav_btn.is-open .gnav_btn--line:first-child {
  top: 48%;
  transform: rotate(45deg);
}
.gnav_btn.is-open .gnav_btn--line:nth-child(2) {
  display: none;
  opacity: 0;
}
.gnav_btn.is-open .gnav_btn--line:last-child {
  top: 48%;
  transform: rotate(-45deg);
}

.gnav {
  display: block;
}
@media (max-width: 767px) {
  .gnav {
    display: none;
    position: relative;
    top: 17px;
    background: #fff;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.16);
  }
}

.gnav--list {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .gnav--list {
    padding: 15px 0 30px;
    width: 100%;
    display: block;
  }
}
@media (max-width: 767px) {
  .gnav--list .btn_orange {
    width: 290px;
  }
}
@media (max-width: 767px) {
  .gnav--list .btn_orange a {
    padding: 17px 0 17px 55px;
  }
}

.gnav--item {
  color: #fff;
  text-align: center;
  line-height: 1;
}
.gnav--item:last-child {
  margin-left: 15px;
}
@media (max-width: 767px) {
  .gnav--item:last-child {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .gnav--item {
    display: block;
    margin: 0 auto;
  }
}
.gnav--item a {
  display: block;
}
.gnav--item.-tel {
  position: relative;
}
@media (max-width: 767px) {
  .gnav--item.-tel {
    width: 290px;
    margin-bottom: 20px;
  }
}
.gnav--item.-tel img {
  width: 15px;
  margin-right: 5px;
}
.gnav--item.-tel span {
  font-size: 1.2rem;
  font-weight: 500;
}
.gnav--item.-tel a {
  position: relative;
  padding: 10px 20px 7px 15px;
  height: 56px;
  background: var(--unnamed-color-e87d00) 0% 0% no-repeat;
  background: #E87D00 0% 0% no-repeat;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
  border: 1px solid #E83E00;
  border-radius: 7px;
  opacity: 1;
  font-size: 2.4rem;
  font-weight: bold;
  font-family: YuGothic, "Yu Gothic Medium", sans-serif;
  line-height: 0.7;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .gnav--item.-tel a {
    font-size: 2rem;
  }
}

.footer {
  font-size: 1.4rem;
}
.footer--copy {
  color: #3E3E3E;
}
.footer--top {
  margin: 0 auto;
  padding: 30px 0 35px;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .footer--top {
    width: 760px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.footer--top p {
  line-height: 2.28;
  border-left: 1px solid #212121;
  padding-left: 15px;
  color: #3E3E3E;
}
@media (min-width: 768px) {
  .footer--top p {
    flex: 0 0 430px;
  }
}
@media (max-width: 767px) {
  .footer--top p {
    line-height: 2;
    border-left: none;
  }
}
@media (max-width: 767px) {
  .footer--top img {
    display: block;
    margin: 0 auto 15px;
  }
}
@media (min-width: 768px) {
  .footer--top span {
    padding-left: 15px;
  }
}
.footer--bottom {
  background: #EAF3F7;
  padding: 15px;
  box-sizing: border-box;
  line-height: 1;
  text-align: center;
}

.mv {
  background: linear-gradient(to right, #EAF3F7 42%, rgba(234, 243, 247, 0) 42%), url(../img/top/bg_mv_pc.jpg), #EAF3F7;
  background-repeat: no-repeat;
  background-position: center, right center, center;
  background-size: auto;
  margin-bottom: 75px;
  padding: 160px 0 215px 25px;
}
@media screen and (min-width: 1200px) {
  .mv {
    background-position: center, left 45vw center, center;
  }
}
@media (max-width: 767px) {
  .mv {
    padding: 40px 0 75vw;
    margin-bottom: 25px;
    background: linear-gradient(#EAF3F7 48%, rgba(234, 243, 247, 0) 48%), url(../img/top/bg_mv_sp.jpg), #EAF3F7;
    background-repeat: no-repeat;
    background-position: center, center bottom, center;
    background-size: auto, 100%, auto;
  }
}
.mv--fade_in {
  opacity: 0;
  animation-name: mv_fade_in;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}
@keyframes mv_fade_in {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.mv--overlap {
  display: inline-block;
  font-size: 4.4rem;
  color: #fff;
  background: #023399;
  text-align: center;
  margin: 0 0 15px -10px;
  box-shadow: -7px 5px 0px 0 #1EADA1;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16)) drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
  padding: 12px 0;
  box-sizing: border-box;
}
.mv--overlap.-lg {
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .mv--overlap.-lg {
    width: 429px;
  }
}
@media (max-width: 767px) {
  .mv--overlap.-lg {
    padding: 10px 25px 10px 8px;
    margin-bottom: 25px;
  }
}
@media (min-width: 768px) {
  .mv--overlap {
    width: 341px;
  }
}
@media (max-width: 767px) {
  .mv--overlap {
    font-size: 2.8rem;
    padding: 10px 26px 13px 8px;
    box-shadow: -7px 4px 0px 0 #1EADA1;
  }
}
.mv--inner {
  box-sizing: border-box;
}
.mv--inner h2 {
  font-size: 3.4rem;
  font-weight: bold;
  padding-left: 20px;
  box-sizing: border-box;
  color: #023399;
}
@media (max-width: 767px) {
  .mv--inner h2 {
    font-size: 2.1rem;
  }
}
.mv--span {
  display: inline-block;
  background: #1EADA1;
  color: #fff;
  padding: 10px 0;
  margin-left: 10px;
  text-align: center;
  box-sizing: border-box;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
}
@media (min-width: 768px) {
  .mv--span {
    width: 393px;
  }
}
@media (max-width: 767px) {
  .mv--span {
    margin-top: 7px;
    margin-left: 0;
    padding: 7px 18px 10px 7px;
  }
}

.lead {
  padding-bottom: 95px;
}
@media (max-width: 767px) {
  .lead {
    padding-bottom: 40px;
  }
}
.lead h2 {
  font-size: 2.5rem;
  color: #023399;
  font-weight: bold;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 45px;
}
.lead ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.lead li {
  text-align: center;
  width: 195px;
}
.lead li img {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .lead li img {
    margin-bottom: 20px;
  }
}
.lead li p {
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .lead li {
    margin-left: 30px;
  }
  .lead li:first-child {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .lead li {
    width: 47%;
    margin-bottom: 25px;
  }
  .lead li:nth-child(even) {
    margin-left: 15px;
  }
  .lead li:nth-last-child(-n+2) {
    margin-bottom: 0;
  }
}
.lead--paragraph {
  font-size: 2.5rem;
  font-weight: 500;
  color: #212121;
  display: inline-block;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .lead--paragraph {
    font-size: 2rem;
  }
}
.lead--blue {
  position: relative;
}
.lead--blue::before {
  content: "";
  display: inline-block;
  background: url(../img/top/img_radiation_left.png) no-repeat center/100%;
  position: absolute;
  top: -15px;
  left: -70px;
  width: 43px;
  height: 61px;
}
.lead--blue::after {
  content: "";
  display: inline-block;
  background: url(../img/top/img_radiation_right.png) no-repeat center/100%;
  position: absolute;
  top: -15px;
  right: -70px;
  width: 43px;
  height: 61px;
}
@media (max-width: 767px) {
  .lead--blue::before {
    left: -55px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
  }
  .lead--blue::after {
    right: -65px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
  }
}
.lead--border {
  font-size: 3.4rem;
  background: linear-gradient(to bottom, transparent 0%, transparent 55%, #F1F1F1 55%, #F1F1F1 100%);
}
@media (max-width: 767px) {
  .lead--border {
    font-size: 3rem;
  }
}

.service {
  padding: 80px 0 85px;
  background: url(../img/top/img_house_bg.png) repeat-x left bottom 10px, #EAF3F7;
}
@media (max-width: 767px) {
  .service {
    padding: 40px 0 85px;
  }
}
.service .container {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .service .container {
    display: block;
  }
}
.service--txt h2 {
  font-size: 2.7rem;
  font-weight: bold;
  color: #023399;
}
@media (max-width: 767px) {
  .service--txt h2 {
    font-size: 2.5rem;
    width: 95%;
  }
}
.service--txt span {
  font-size: 3.4rem;
  color: #fff;
  background: #023399;
  text-align: center;
  display: inline-block;
  margin: 15px 0;
  padding: 15px 20px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .service--txt span {
    font-size: 2.5rem;
  }
}
.service--paragraph {
  font-size: 1.8rem;
  line-height: 1.77;
  font-weight: bold;
  margin-bottom: 14px;
}
.service--remarks {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .service--remarks {
    margin-bottom: 40px;
  }
}
.service--img {
  flex: 0 0 516px;
}
@media (max-width: 767px) {
  .service--img {
    flex: none;
    text-align: center;
    margin-bottom: 40px;
  }
}
.service--img_top {
  width: 421px;
}
.service--img_under {
  margin: -40px 0 0 250px;
  width: 273px;
}
@media (max-width: 767px) {
  .service--img_under {
    margin: -20px 0 0 50px;
  }
}

.work {
  padding: 65px 0 85px;
}
.work .ttl_section {
  margin-bottom: 55px;
}
@media (max-width: 767px) {
  .work .ttl_section {
    margin-bottom: 40px;
  }
}
.work--table {
  font-size: 1.8rem;
  font-weight: bold;
  border-collapse: separate;
  border-spacing: 4px;
  position: relative;
  max-width: 945px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .work--table {
    font-size: 1.5rem;
    width: 95%;
    margin: 0 auto;
  }
}
.work--table td,
.work--table th {
  vertical-align: middle;
  text-align: center;
}
.work--table th {
  background: rgba(234, 243, 247, 0.68);
}
.work--table::after {
  content: "";
  position: absolute;
  top: -5px;
  right: -4px;
  width: 351px;
  height: 356px;
  border: 5px solid #1EADA1;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .work--table::after {
    top: -2px;
    right: -0.5vw;
    width: 35.8vw;
    height: 100%;
    border: 3px solid #1EADA1;
  }
}
.work--inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .work--inner {
    display: block;
  }
}
.work--inner p {
  width: 185px;
}
@media (max-width: 767px) {
  .work--inner p {
    width: 100%;
  }
}
.work--th_left {
  height: 92px;
}
@media (max-width: 767px) {
  .work--th_left {
    height: 140px;
  }
}
.work--th_top {
  width: 333px;
  height: 50px;
}
@media (max-width: 768px) {
  .work--th_top {
    width: 303px;
  }
}
.work--th_top.-is_no-bg {
  background: none;
  width: 260px;
}
.work--th_top.-emerald {
  background: #1EADA1;
  color: #fff;
}
.work--td {
  background: rgba(229, 245, 255, 0.45);
  box-sizing: border-box;
  width: 36%;
}
@media (max-width: 767px) {
  .work--td {
    padding-left: 0;
  }
}
.work--td.-thin_emerald {
  background: rgba(30, 173, 161, 0.15);
}
.work--td.-thin_emerald p {
  width: 210px;
}
@media (max-width: 767px) {
  .work--td.-thin_emerald p {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .work--td.-thin_emerald {
    padding-left: 0;
  }
}

.support {
  background: url(../img/top/img_support_bg.jpg) no-repeat center bottom 25%/cover;
  padding-top: 80px;
  box-sizing: border-box;
}
.support .ttl_section {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .support .ttl_section {
    margin-bottom: 40px;
  }
}
.support ul {
  background: #fff;
  padding: 30px 30px 10px 30px;
  box-sizing: border-box;
  margin: 0 0 0 auto;
  width: 540px;
}
@media (max-width: 767px) {
  .support ul {
    width: 100%;
    padding: 20px 10px;
  }
}
.support li {
  margin-bottom: 18px;
  position: relative;
  box-sizing: border-box;
}
.support li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
.support li::before {
  content: "";
  display: inline-block;
  background: url(../img/top/img_support_check.png) no-repeat center/100%;
  position: absolute;
  top: 5px;
  left: 0;
  width: 40px;
  height: 33px;
}
@media (max-width: 767px) {
  .support li::before {
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
  }
}
.support li span {
  display: block;
  font-weight: 500;
  padding: 0 0 13px 10px;
  border-bottom: 1px solid rgba(33, 33, 33, 0.2);
  box-sizing: border-box;
  line-height: 1.5;
  width: 432px;
  margin-left: 50px;
}
@media (max-width: 767px) {
  .support li span {
    width: 85%;
    margin: 0 auto;
    min-height: 55px;
  }
}
.support--inner {
  position: relative;
  padding-bottom: 50px;
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 1110px;
}
@media (max-width: 767px) {
  .support--inner {
    width: 95%;
  }
}
.support--img_01 {
  position: absolute;
  left: 0;
  top: -8px;
  width: 538px;
}
@media (max-width: 767px) {
  .support--img_01 {
    width: 290px;
    position: relative;
    left: 0;
    top: 0;
    display: block;
    margin: 0 auto;
  }
}
.support--img_02 {
  width: 150px;
  position: absolute;
  top: 25px;
  left: 325px;
}
@media (max-width: 767px) {
  .support--img_02 {
    width: 100px;
    top: 0;
    left: 55%;
  }
}

.model {
  padding: 100px 0 90px;
}
@media (max-width: 767px) {
  .model {
    padding: 50px 0;
  }
}
.model .ttl_section {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .model .ttl_section {
    margin-bottom: 40px;
  }
}
.model ul {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .model ul {
    display: block;
  }
}
.model li {
  border: 1px solid #023399;
  background: rgba(229, 245, 255, 0.45);
  box-sizing: border-box;
  flex: 0 0 305px;
}
@media (max-width: 767px) {
  .model li {
    margin-bottom: 25px;
  }
}
.model--top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #023399;
  background: linear-gradient(to right, #fff 0%, #fff 29%, #023399 29%, #023399 100%);
  font-weight: bold;
}
@media (max-width: 767px) {
  .model--top {
    background: linear-gradient(to right, #fff 0%, #fff 22%, #023399 22%, #023399 100%);
  }
}
.model--img {
  flex: 0 0 85px;
  text-align: center;
}
@media (max-width: 768px) {
  .model--img {
    flex: 0 0 27%;
  }
}
@media (max-width: 767px) {
  .model--img {
    flex: 0 0 20%;
  }
}
.model--heading {
  color: #fff;
  font-size: 2.5rem;
  padding: 20px 0;
  position: relative;
  box-sizing: border-box;
  flex: 0 0 220px;
  text-align: center;
}
@media (max-width: 768px) {
  .model--heading {
    flex: 0 0 72%;
  }
}
@media (max-width: 767px) {
  .model--heading {
    padding: 15px 0;
    flex: 0 0 75%;
    text-align: center;
  }
}
.model--heading.-center::before {
  background: url(../img/top/img_agent_02.png) no-repeat center/100%;
}
.model--heading.-right::before {
  background: url(../img/top/img_agent_03.png) no-repeat center/100%;
}
.model--supplement {
  font-size: 1.8rem;
  font-weight: bold;
  margin-right: 25px;
}
.model--paragraph {
  text-align: center;
  font-size: 2.1rem;
  font-weight: bold;
  padding: 15px 0 20px;
  box-sizing: border-box;
}
.model--span {
  font-size: 1.6rem;
  font-weight: 500;
}
.model--span.-bold {
  font-size: 1.8rem;
  font-weight: bold;
}
.model--txt {
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  min-height: 75px;
  box-sizing: border-box;
  line-height: 1.5;
  margin-bottom: 10px;
}
.model--ttl {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  background: #023399;
  color: #fff;
  width: 293px;
  margin: 0 auto 10px;
  padding: 4px 0px;
  box-sizing: border-box;
}
.model--ttl.-emerald {
  background: #1EADA1;
}
@media (max-width: 768px) {
  .model--ttl {
    width: 100%;
  }
}
.model--income {
  font-size: 4.8rem;
  font-weight: bold;
  color: #1EADA1;
  background: #fff;
  width: 293px;
  margin: 0 auto 10px;
  padding-bottom: 10px;
  text-align: center;
}
.model--income span {
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  .model--income {
    width: 100%;
  }
}
@media (max-width: 320px) {
  .model--income {
    font-size: 4.6rem;
  }
}

.recruit {
  background: #EAF3F7;
  padding: 95px 0 100px;
  box-sizing: border-box;
  background: url(../img/top/img_house_bg.png) repeat-x left bottom 10px, #EAF3F7;
}
@media (max-width: 767px) {
  .recruit {
    padding: 50px 0 100px;
  }
}
.recruit .ttl_section {
  margin-bottom: 45px;
}
@media (max-width: 767px) {
  .recruit .ttl_section {
    margin-bottom: 40px;
  }
}
.recruit .btn_orange {
  margin: 0 auto;
}
.recruit--table {
  margin: 0 auto 100px;
  border-collapse: separate;
  border-spacing: 4px;
  max-width: 945px;
}
@media (max-width: 768px) {
  .recruit--table {
    width: 95%;
  }
}
@media (max-width: 767px) {
  .recruit--table {
    margin: 0 auto 60px;
  }
}
.recruit--table th,
.recruit--table td {
  font-size: 1.8rem;
  box-sizing: border-box;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .recruit--table th,
.recruit--table td {
    font-size: 1.6rem;
  }
}
.recruit--table th {
  background: #023399;
  color: #fff;
  font-weight: bold;
  padding: 15px 0;
  width: 217px;
}
@media (max-width: 768px) {
  .recruit--table th {
    width: 150px;
  }
}
@media (max-width: 767px) {
  .recruit--table th {
    width: 110px;
  }
}
.recruit--table td {
  background: #fff;
  line-height: 1.77;
  padding: 15px 0 15px 40px;
}
@media (max-width: 767px) {
  .recruit--table td {
    padding: 15px 10px;
  }
}
.recruit--paragraph {
  font-size: 1.8rem;
  margin-bottom: 60px;
  text-align: center;
  line-height: 1.77;
}
@media (max-width: 768px) {
  .recruit--paragraph {
    font-size: 1.6rem;
  }
}
.recruit--ttl {
  position: relative;
  margin: 0 auto;
  color: #023399;
  text-align: center;
}
@media (min-width: 768px) {
  .recruit--ttl {
    width: 500px;
  }
}
.recruit--ttl span {
  background: #fff;
  display: inline-block;
  margin-bottom: 5px;
  padding-left: 10px;
  box-sizing: border-box;
}
.recruit--ttl::before {
  content: "";
  display: inline-block;
  background: url(../img/top/img_radiation_left.png) no-repeat center/100%;
  position: absolute;
  top: 15px;
  left: -70px;
  width: 43px;
  height: 61px;
}
@media (max-width: 767px) {
  .recruit--ttl::before {
    top: 0;
    left: 0;
    width: 25px;
  }
}
@media (max-width: 320px) {
  .recruit--ttl::before {
    left: -10px;
  }
}
.recruit--ttl::after {
  content: "";
  display: inline-block;
  background: url(../img/top/img_radiation_right.png) no-repeat center/100%;
  position: absolute;
  top: 15px;
  right: -70px;
  width: 43px;
  height: 61px;
}
@media (max-width: 767px) {
  .recruit--ttl::after {
    top: 0;
    right: 0;
    width: 25px;
  }
}
@media (max-width: 320px) {
  .recruit--ttl::after {
    right: -10px;
  }
}

.voice {
  padding: 80px 0;
  box-sizing: border-box;
}
.voice .ttl_section {
  margin-bottom: 65px;
}
@media (max-width: 767px) {
  .voice .ttl_section {
    margin-bottom: 40px;
  }
}
.voice ol {
  counter-reset: number 0;
}
.voice p {
  font-weight: 500;
  line-height: 1.5;
}
.voice li {
  background: #EAF3F7;
  border: 2.5px solid #E8F0F3;
  margin-bottom: 25px;
  padding: 30px 35px 30px 70px;
  box-sizing: border-box;
  position: relative;
  max-width: 890px;
}
@media (min-width: 768px) {
  .voice li {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .voice li {
    width: 100%;
    padding: 70px 10px 30px;
  }
}
@media (max-width: 767px) {
  .voice li img {
    display: block;
    margin: 0 auto 10px;
  }
}
.voice li::before {
  counter-increment: number;
  content: counter(number, decimal-leading-zero);
  position: absolute;
  top: -2px;
  left: -2px;
  font-size: 4.4rem;
  font-weight: bold;
  color: #fff;
  background: #023399;
  padding: 5px 10px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .voice li::before {
    font-size: 3rem;
  }
}
.voice li:nth-child(even) {
  flex-direction: row-reverse;
  position: relative;
  left: 75px;
  padding: 30px 70px 30px 35px;
}
@media (max-width: 768px) {
  .voice li:nth-child(even) {
    left: 0;
  }
}
@media (max-width: 767px) {
  .voice li:nth-child(even) {
    padding: 70px 10px 30px;
  }
}
.voice li:nth-child(even)::before {
  right: -2px;
  left: auto;
}
@media (max-width: 767px) {
  .voice li:nth-child(even)::before {
    right: auto;
    left: -2px;
  }
}
.voice--ttl {
  font-size: 3.4rem;
  font-weight: bold;
  color: #023399;
  border-bottom: 1px solid #707070;
  margin-bottom: 5px;
  padding-bottom: 5px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .voice--ttl {
    font-size: 3.1rem;
  }
}
.voice--ttl span {
  font-size: 1.8rem;
  font-weight: bold;
  color: #212121;
  margin-left: 30px;
}
.voice--txt {
  max-width: 595px;
}
@media (max-width: 767px) {
  .voice--txt {
    max-width: 500px;
  }
}

.contact_form {
  padding: 75px 0 110px;
  box-sizing: border-box;
  background: url(../img/top/img_house_bg.png) repeat-x left bottom 10px, #EAF3F7;
}
@media (max-width: 767px) {
  .contact_form {
    padding: 40px 0 110px;
  }
}
.contact_form--inner {
  width: 735px;
  margin: 0 auto;
}
.contact_form--txt {
  font-size: 1.8rem;
  font-weight: bold;
  color: #023399;
  background: #FAFAFA;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  box-sizing: border-box;
  margin: 50px auto 70px;
  padding: 20px 0 15px;
  text-align: center;
  position: relative;
}
@media (max-width: 767px) {
  .contact_form--txt {
    padding: 30px 0;
    margin: 40px auto 50px;
  }
}
.contact_form--txt::before, .contact_form--txt::after {
  content: "";
  width: 52px;
  height: 52px;
  position: absolute;
}
.contact_form--txt::before {
  border-left: solid 3.5px #023399;
  border-top: solid 3.5px #023399;
  top: 10px;
  left: 10px;
}
@media (max-width: 767px) {
  .contact_form--txt::before {
    top: 5px;
    left: 5px;
  }
}
.contact_form--txt::after {
  border-right: solid 3.5px #023399;
  border-bottom: solid 3.5px #023399;
  bottom: 10px;
  right: 10px;
}
@media (max-width: 767px) {
  .contact_form--txt::after {
    bottom: 5px;
    right: 5px;
  }
}
.contact_form--tel {
  font-size: 2.7rem;
  background: url(../img/top/img_tel_blue.png) no-repeat left 2px top 2px/contain;
  display: inline-block;
  width: 213px;
  height: 28px;
  margin: 7px 0 5px 5px;
  padding-left: 15px;
  line-height: 1;
  box-sizing: border-box;
}
.contact_form--paragraph {
  font-size: 1.6rem;
}
.contact_form--inner {
  width: 735px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .contact_form--inner {
    width: 95%;
  }
}

.contact_form--table {
  border-collapse: collapse;
}
.contact_form--table tr:last-child th {
  padding-top: 8px;
}
.contact_form--table tr:not(:last-child) th {
  vertical-align: middle;
}
.contact_form--table tr:not(:last-child) th::after {
  top: 19%;
}
.contact_form--table tr:nth-last-child(2) td {
  padding: 0;
}
.contact_form--table td {
  vertical-align: middle;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .contact_form--table td {
    padding: 5px;
    display: block;
  }
  .contact_form--table td::after {
    top: 5px;
    right: 10px;
  }
}
.contact_form--table th {
  position: relative;
  width: 241px;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: left;
  vertical-align: top;
  background-clip: padding-box !important;
}
.contact_form--table th::after {
  position: absolute;
  top: 7px;
  right: 25px;
  padding: 5px 8px 7px;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1;
  box-sizing: border-box;
  border-radius: 5px;
}
@media (max-width: 767px) {
  .contact_form--table th::after {
    padding: 4px 5px 6px;
    right: auto;
  }
}
@media (max-width: 767px) {
  .contact_form--table th {
    padding: 7px 5px;
    display: block;
  }
}
.contact_form--table .required::after {
  color: #FFF;
  content: "必須";
  background: #C90000;
}

.contact_form--table textarea {
  height: 130px !important;
}
.contact_form--table input[type=text],
.contact_form--table input[type=email],
.contact_form--table input[type=tel],
.contact_form--table input[type=number],
.contact_form--table input[type=date],
.contact_form--table input[type=password],
.contact_form--table textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 5px 10px;
  font-family: inherit;
  font-size: 16px;
  font-weight: normal;
  color: #333;
  border: solid 1px #CCCCCC;
  border-radius: 5px;
  box-shadow: none;
  height: 40px;
}
.contact_form--table input[type=text]:focus,
.contact_form--table input[type=email]:focus,
.contact_form--table input[type=tel]:focus,
.contact_form--table input[type=number]:focus,
.contact_form--table input[type=date]:focus,
.contact_form--table input[type=password]:focus,
.contact_form--table textarea:focus {
  background: #FFF;
  border: solid 1px #E6EDF2;
  outline: none;
}
.contact_form--table input[type=checkbox]:checked + span,
.contact_form--table input[type=radio]:checked + span {
  font-weight: bold;
}
.contact_form--table select {
  padding: 2px 0 4px 4px;
  margin-right: 2px;
  border: solid 1px #345372;
  border-radius: 3px;
}
.contact_form--table select option {
  padding: 0;
}
.contact_form--table .mwform-tel-field input[type=text],
.contact_form--table .mwform-zip-field input[type=text] {
  width: 5em;
}

.back,
.submit {
  border: none;
  display: inline-block;
  margin: 0 auto;
  padding: 20px 0px;
  width: 220px;
  background: url(../img/top/img_triangle.png) no-repeat 75% center, linear-gradient(0deg, #E85000 0%, #DE7800 100%) 0% 0% no-repeat;
  border-radius: 5px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  position: relative;
  cursor: pointer;
  box-sizing: border-box;
}

.back {
  margin-right: 10px;
}
@media (max-width: 767px) {
  .back {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

.contact_form--btn {
  margin-top: 30px;
  overflow: hidden;
  text-align: center;
}
.contact_form--btn input[type=submit],
.contact_form--btn input[type=button],
.contact_form--btn button[type=submit] {
  display: inline-block;
  width: 220px;
  height: 60px;
  margin: 10px;
  overflow: hidden;
  font-weight: bold;
  color: #FFF;
  cursor: pointer;
  background: #000;
  border: none;
  transition: 0.3s;
}
.contact_form--btn input[type=submit]:hover,
.contact_form--btn input[type=button]:hover,
.contact_form--btn button[type=submit]:hover {
  opacity: 0.8;
}
@media (max-width: 767px) {
  .contact_form--btn input[type=submit],
.contact_form--btn input[type=button],
.contact_form--btn button[type=submit] {
    max-width: 80%;
  }
}

.frm.danger {
  position: relative;
  display: block;
  padding: 5px 10px;
  margin-top: 12px;
  clear: both;
  font-size: 1.2rem;
  color: #FFF !important;
  background: #C90000;
}
.frm.danger::before {
  position: absolute;
  top: -20px;
  width: 0;
  height: 0;
  content: "";
  border: 10px solid #C90000;
  border-color: transparent;
  border-bottom-color: #C90000;
}

#loading {
  display: none;
}

.thanks {
  background: url(../img/top/img_support_bg.jpg) no-repeat center bottom/cover;
  padding: 200px 0;
  box-sizing: border-box;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .thanks {
    padding: 100px 0;
  }
}
.thanks p {
  text-align: center;
  padding: 35px 0 30px;
}
.thanks p a {
  font-weight: 500;
  text-decoration: underline;
}

.confirm {
  border: none;
  display: block;
  margin: 0 auto;
  padding: 20px 0px;
  width: 220px;
  background: url(../img/top/img_triangle.png) no-repeat 75% center, linear-gradient(0deg, #E85000 0%, #DE7800 100%) 0% 0% no-repeat;
  border-radius: 5px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  position: relative;
  cursor: pointer;
  box-sizing: border-box;
}

.table_form {
  margin-bottom: 60px;
  border-collapse: separate;
  border-spacing: 0 15px;
}
@media (max-width: 767px) {
  .table_form label {
    margin-right: 5px;
  }
}

.form_button {
  position: relative;
  display: block;
  text-align: center;
}
