@charset "UTF-8";
/*==========================================
  Common
==========================================*/
/* base
==================================*/
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
blockquote,
ul,
li,
ol,
dl,
dd,
tr {
  font-size: 16px;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1;
}

.sp {
  display: none !important;
}

a {
  color: #000;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a:visited {
  color: #000;
}

a:hover {
  color: #000;
  text-decoration: none;
}

a:active {
  color: #000;
}

a.tel {
  pointer-events: none;
  cursor: default;
}

/* main
==================================*/
main {
  display: block;
  /*IE対策*/
}

/*　Retina対応時のCSS↓　*/
/* header
==================================*/
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #fff;
  width: 100%;
  height: 80px;
}

header .header_inner {
  padding: 0 27px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .header_inner .logo {
  width: 144px;
}

header .header_inner dl {
  padding-left: 45px;
  position: relative;
  text-align: center;
  line-height: 1;
}

header .header_inner dl::before {
  content: '';
  display: inline-block;
  position: absolute;
  width: 36px;
  height: 36px;
  background: url(../images/top/icon_tel.svg) no-repeat 0/contain;
  left: 0;
  top: 3px;
}

header .header_inner dl dt a {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 41px;
}

header .header_inner dl dd {
  font-size: 13px;
  font-weight: 500;
  margin-top: -4px;
}

/* footer
==================================*/
footer .footer_inner {
  position: relative;
}

footer .footer_inner::before {
  content: '';
  display: inline-block;
  position: absolute;
  width: 140px;
  height: 333px;
  background: url(../images/top/base01.png) no-repeat 0/contain;
  right: calc(50% - 515px);
  top: -36px;
}

@media (max-width: 1100px) {
  footer .footer_inner::before {
    width: 104px;
    height: 247px;
    right: calc(50% - 421px);
  }
}

footer .footer_inner .top_wrap {
  background: url(../images/top/bg_foot.jpg) no-repeat center/cover;
  padding: 80px 0 40px;
}

footer .footer_inner .top_wrap > dl {
  text-align: center;
  line-height: 1;
  margin-bottom: 45px;
}

footer .footer_inner .top_wrap > dl > dt {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 15px;
}

footer .footer_inner .top_wrap > dl > dd {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  color: #4e76a9;
  font-size: 14px;
}

footer .footer_inner .top_wrap > p {
  font-size: 20px;
  color: #fff;
  text-align: center;
}

footer .footer_inner .top_wrap .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 65px;
  border-top: 1px solid #4b6999;
}

footer .footer_inner .top_wrap .row dl {
  padding-left: 63px;
  position: relative;
  text-align: center;
  line-height: 1;
}

footer .footer_inner .top_wrap .row dl::before {
  content: '';
  display: inline-block;
  position: absolute;
  width: 54px;
  height: 53px;
  background: url(../images/top/icon_tel_wh.svg) no-repeat 0/contain;
  left: 0;
  top: 6px;
}

footer .footer_inner .top_wrap .row dl dt a {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 67px;
  color: #fff;
}

footer .footer_inner .top_wrap .row dl dd {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-top: 10px;
}

footer .footer_inner .top_wrap .row p {
  margin-left: 90px;
  position: relative;
}

footer .footer_inner .top_wrap .row p a {
  display: inline-block;
  width: 418px;
  line-height: 71px;
  border-radius: 5px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background: #ffa902;
  -webkit-box-shadow: 0 3px 0 #9a6807;
          box-shadow: 0 3px 0 #9a6807;
  text-align: center;
  position: relative;
  padding-left: 48px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

footer .footer_inner .top_wrap .row p a::before, footer .footer_inner .top_wrap .row p a::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

footer .footer_inner .top_wrap .row p a::before {
  width: 36px;
  height: 26px;
  background: url(../images/top/icon_mail.svg);
  left: 55px;
}

footer .footer_inner .top_wrap .row p a::after {
  width: 15px;
  height: 15px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  right: 25px;
}

@media (max-width: 1100px) {
  footer .footer_inner .top_wrap .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  footer .footer_inner .top_wrap .row p {
    margin: 20px 0 0;
  }
}

footer .footer_inner .bottom_wrap {
  padding: 30px 0 35px;
  background: #02387b;
  text-align: center;
}

footer .footer_inner .bottom_wrap .copy {
  margin-top: 25px;
}

footer .footer_inner .bottom_wrap .copy small {
  font-size: 12px;
  font-weight: 500;
  color: #6992c5;
  line-height: 1;
}

/* loader
==================================*/
#loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 1001;
}

/* Animation
==================================*/
.c-anim-up {
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.move {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

.delay1 {
  -moz-transition-delay: 300ms;
  -webkit-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
}

.delay2 {
  -moz-transition-delay: 600ms;
  -webkit-transition-delay: 600ms;
  -o-transition-delay: 600ms;
  -ms-transition-delay: 600ms;
}

.delay3 {
  -moz-transition-delay: 900ms;
  -webkit-transition-delay: 900ms;
  -o-transition-delay: 900ms;
  -ms-transition-delay: 900ms;
}

.delay4 {
  -moz-transition-delay: 1200ms;
  -webkit-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
}

.delay5 {
  -moz-transition-delay: 1500ms;
  -webkit-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
}

.delay6 {
  -moz-transition-delay: 1800ms;
  -webkit-transition-delay: 1800ms;
  -o-transition-delay: 1800ms;
  -ms-transition-delay: 1800ms;
}

.delay7 {
  -moz-transition-delay: 2100ms;
  -webkit-transition-delay: 2100ms;
  -o-transition-delay: 2100ms;
  -ms-transition-delay: 2100ms;
}

/*==================================
  Component
==================================*/
html {
  overflow: auto;
}

html.no_move {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

img[src$=".png"], img[src$=".jpg"] {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 50px;
  padding-right: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

@media (max-width: 899px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.row .col {
  position: relative;
  width: 100%;
  min-height: 1px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.row .col.col_4 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.3333%;
          flex: 0 0 33.3333%;
  max-width: 33.3333%;
}

.sec_ttl {
  text-align: center;
}

.sec_ttl .jp {
  min-width: 400px;
  font-size: 46px;
  font-weight: 700;
  position: relative;
  padding: 42px 70px 50px;
  line-height: 1.4;
  display: inline-block;
}

.sec_ttl .jp::before, .sec_ttl .jp::after {
  content: '';
  display: inline-block;
  position: absolute;
  width: 138px;
  height: 138px;
  background: url(../images/top/bg_secttl.png) no-repeat 0/contain;
}

.sec_ttl .jp::before {
  left: 0;
  top: 0;
}

.sec_ttl .jp::after {
  right: 0;
  bottom: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.sec_ttl .en {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #003e8b;
  line-height: 1;
  margin-top: -27px;
  display: block;
}

/*==================================
	リスト系
==================================*/
.news_ul {
  margin: 0 0 19px;
}

.news_ul .news_li {
  border-bottom: 1px solid #e8e8e8;
  padding: 22px 14px;
}

.news_ul .news_li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.news_ul .news_li > a .date {
  font-size: 16px;
  color: #919191;
  margin-right: 24px;
}

.news_ul .news_li > a .img_wrap {
  margin-right: 17px;
}

@media (min-width: 900px) {
  .news_ul .news_li > a .title {
    background: -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)) 0 100%/0 1px no-repeat;
    background: linear-gradient(#000, #000) 0 100%/0 1px no-repeat;
    -webkit-transition: background 0.4s ease;
    transition: background 0.4s ease;
  }
  .news_ul .news_li > a:hover .title {
    background-size: 100% 1px;
  }
}

@media (max-width: 899px) {
  .news_ul .news_li {
    padding: 14px 0;
  }
  .news_ul .news_li > a {
    display: block;
    position: relative;
    padding-left: 80px;
  }
  .news_ul .news_li > a .img_wrap {
    margin-right: 0;
    position: absolute;
    top: 0;
    left: -5px;
    bottom: 0;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .news_ul .news_li > a .img_wrap img {
    max-width: 57px;
  }
  .news_ul .news_li > a .date,
  .news_ul .news_li > a .title {
    display: block;
  }
  .news_ul .news_li > a .date {
    font-size: 14px;
    margin: 0 0 7px;
  }
  .news_ul .news_li > a .title {
    font-size: 16px;
    line-height: 1.3;
  }
}

/*==================================
	ページナビ
==================================*/
.page_navigation .wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 45px 0 50px;
}

@media (max-width: 899px) {
  .page_navigation .wp-pagenavi {
    margin: 30px 0 40px;
  }
}

.page_navigation .wp-pagenavi > .page,
.page_navigation .wp-pagenavi .current {
  font-size: 16px;
  font-weight: 500;
  width: 40px;
  height: 40px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 5px;
}

.page_navigation .wp-pagenavi > .page:not(.current),
.page_navigation .wp-pagenavi .current:not(.current) {
  background-color: #f3f3f3;
}

@media (min-width: 900px) {
  .page_navigation .wp-pagenavi > .page:not(.current):hover,
  .page_navigation .wp-pagenavi .current:not(.current):hover {
    color: #fff;
    background-color: #000;
  }
}

.page_navigation .wp-pagenavi > .page.current,
.page_navigation .wp-pagenavi .current.current {
  background-color: #000;
  color: #fff;
}

.page_navigation .wp-pagenavi .nextpostslink,
.page_navigation .wp-pagenavi .previouspostslink {
  position: relative;
  font-weight: 500;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.page_navigation .wp-pagenavi .nextpostslink::before,
.page_navigation .wp-pagenavi .previouspostslink::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 9px;
  height: 14px;
  background-image: url(../images/common/pager_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.page_navigation .wp-pagenavi .nextpostslink.previouspostslink,
.page_navigation .wp-pagenavi .previouspostslink.previouspostslink {
  padding-left: 33px;
  margin-right: 30px;
}

.page_navigation .wp-pagenavi .nextpostslink.previouspostslink::before,
.page_navigation .wp-pagenavi .previouspostslink.previouspostslink::before {
  left: 0;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

@media (min-width: 900px) {
  .page_navigation .wp-pagenavi .nextpostslink.previouspostslink:hover::before,
  .page_navigation .wp-pagenavi .previouspostslink.previouspostslink:hover::before {
    left: -5px;
  }
}

.page_navigation .wp-pagenavi .nextpostslink.nextpostslink,
.page_navigation .wp-pagenavi .previouspostslink.nextpostslink {
  padding-right: 33px;
  margin-left: 30px;
}

.page_navigation .wp-pagenavi .nextpostslink.nextpostslink::before,
.page_navigation .wp-pagenavi .previouspostslink.nextpostslink::before {
  right: 0;
}

@media (min-width: 900px) {
  .page_navigation .wp-pagenavi .nextpostslink.nextpostslink:hover::before,
  .page_navigation .wp-pagenavi .previouspostslink.nextpostslink:hover::before {
    right: -5px;
  }
}

.page_navigation .wp-pagenavi .list_back {
  margin-left: 58px;
  margin-right: 58px;
}

.page_navigation .wp-pagenavi .list_back > a {
  font-weight: 500;
}

.page_navigation .wp-pagenavi .list_back > a > .list_icon {
  display: inline-block;
  padding-left: 24px;
  position: relative;
}

.page_navigation .wp-pagenavi .list_back > a > .list_icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 14px;
  height: 14px;
  background-image: url(../img/news/list_icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.page_navigation > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 45px 0 50px;
}

.page_navigation > ul .link_page,
.page_navigation > ul .current_page {
  font-size: 16px;
  font-weight: 500;
  width: 40px;
  height: 40px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 5px;
}

.page_navigation > ul .link_page:not(.current_page),
.page_navigation > ul .current_page:not(.current_page) {
  background-color: #f3f3f3;
}

@media (min-width: 900px) {
  .page_navigation > ul .link_page:not(.current_page):hover,
  .page_navigation > ul .current_page:not(.current_page):hover {
    color: #fff;
    background-color: #000;
  }
}

.page_navigation > ul .link_page.current_page,
.page_navigation > ul .current_page.current_page {
  background-color: #000;
  color: #fff;
}

/*==========================================
  Layout
==========================================*/
/*==================================
  Top
==================================*/
#Top main {
  margin-top: 80px;
}

#Top main .contact_btn {
  display: inline-block;
  width: 100%;
  max-width: 418px;
  line-height: 61px;
  border-radius: 5px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background: #ffa902;
  -webkit-box-shadow: 0 3px 0 #9a6807;
          box-shadow: 0 3px 0 #9a6807;
  text-align: center;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#Top main .contact_btn::before, #Top main .contact_btn::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

#Top main .contact_btn::before {
  width: 36px;
  height: 26px;
  background: url(../images/top/icon_mail.svg);
  left: 75px;
}

#Top main .contact_btn::after {
  width: 15px;
  height: 15px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  right: 25px;
}

#Top main .mv_sec {
  background: url(../images/top/bg_mv.jpg) no-repeat center/cover;
  min-height: 620px;
  padding: 30px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#Top main .mv_sec .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#Top main .mv_sec .row .text_wrap {
  width: calc(100% - 490px);
  margin-right: 50px;
  text-align: center;
}

#Top main .mv_sec .row .text_wrap .text {
  margin: 30px 0 45px;
}

#Top main .mv_sec .row .text_wrap ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -5px;
}

#Top main .mv_sec .row .text_wrap ul li {
  margin: 0 5px;
}

#Top main .mv_sec .row .form_wrap {
  width: 440px;
  background: rgba(255, 255, 255, 0.6);
  z-index: 1;
  position: relative;
  padding: 30px 20px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#Top main .mv_sec .row .form_wrap::before {
  content: '';
  display: inline-block;
  position: absolute;
  width: 430px;
  height: calc(100% - 10px);
  left: 5px;
  top: 5px;
  background: #fff;
  z-index: -1;
}

#Top main .mv_sec .row .form_wrap .ttl {
  font-size: 20px;
  text-align: center;
  font-weight: 700;
  color: #003881;
  line-height: 1;
  padding-bottom: 20px;
  border-bottom: 1px solid #ededed;
}

#Top main .mv_sec .row .form_wrap table tr {
  border-bottom: 1px solid #ededed;
}

#Top main .mv_sec .row .form_wrap table tr th {
  font-size: 15px;
  font-weight: 500;
  display: table-cell;
  vertical-align: middle;
  width: 175px;
  text-align: left;
  position: relative;
}

#Top main .mv_sec .row .form_wrap table tr th .need {
  color: #fff;
  font-size: 12px;
  background: #e60012;
  padding: 0px 3px 2px;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#Top main .mv_sec .row .form_wrap table tr td {
  padding: 9px 0;
  width: calc(100% - 175px);
}

#Top main .mv_sec .row .form_wrap table tr td input, #Top main .mv_sec .row .form_wrap table tr td textarea {
  background: #f2f2f2;
  border-radius: 3px;
  width: 100%;
  border: none;
  padding: 5px 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#Top main .mv_sec .row .form_wrap table tr td input {
  height: 37px;
}

#Top main .mv_sec .row .form_wrap table tr td textarea {
  height: 97px;
}

#Top main .mv_sec .row .form_wrap .agree {
  font-size: 12px;
  margin: 15px 0;
  font-weight: 700;
  text-align: center;
}

#Top main .mv_sec .row .form_wrap .agree a {
  color: #00367d;
  border-bottom: 1px solid #00367d;
  padding-bottom: 3px;
}

#Top main .mv_sec .row .form_wrap input[type='submit'] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  width: 100%;
  height: 100%;
  text-align: center;
  cursor: pointer;
  line-height: 61px;
  padding-left: 15px;
}

#Top main .solv_sec .area1 {
  margin-top: 108px;
  margin-bottom: 60px;
}

#Top main .solv_sec .area1 .img_wrap {
  margin-top: 170px;
}

#Top main .solv_sec .area1 .img_wrap .man {
  text-align: center;
}

#Top main .solv_sec .area1 .img_wrap .check {
  position: absolute;
}

#Top main .solv_sec .area1 .img_wrap .check.check1 {
  left: 36px;
  bottom: 109px;
}

#Top main .solv_sec .area1 .img_wrap .check.check2 {
  left: 289px;
  bottom: 149px;
}

#Top main .solv_sec .area1 .img_wrap .check.check3 {
  right: 292px;
  bottom: 150px;
}

#Top main .solv_sec .area1 .img_wrap .check.check4 {
  right: 40px;
  bottom: 104px;
}

@media (max-width: 1200px) {
  #Top main .solv_sec .area1 .img_wrap {
    margin-top: 200px;
  }
  #Top main .solv_sec .area1 .img_wrap .man {
    text-align: center;
  }
  #Top main .solv_sec .area1 .img_wrap .check {
    position: absolute;
    width: 230px;
  }
  #Top main .solv_sec .area1 .img_wrap .check.check1 {
    left: calc(50% - 436px);
    bottom: 67px;
  }
  #Top main .solv_sec .area1 .img_wrap .check.check2 {
    left: calc(50% - 326px);
    bottom: 272px;
  }
  #Top main .solv_sec .area1 .img_wrap .check.check3 {
    right: calc(50% - 308px);
    bottom: 272px;
  }
  #Top main .solv_sec .area1 .img_wrap .check.check4 {
    right: calc(50% - 439px);
    bottom: 67px;
  }
}

#Top main .solv_sec .area2 {
  padding: 70px 0 55px;
  position: relative;
  background: url(../images/top/solv_bg.jpg) no-repeat center/cover;
}

#Top main .solv_sec .area2::before {
  content: '';
  display: inline-block;
  position: absolute;
  width: 191px;
  height: 96px;
  background: url(../images/top/solv_arrow.png) no-repeat 0/contain;
  left: 0;
  right: 0;
  top: -65px;
  margin: auto;
}

#Top main .solv_sec .area2 p {
  color: #fff;
  text-align: center;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.7;
}

#Top main .solv_sec .area2 p strong {
  font-size: 35px;
  color: #ffcb16;
  font-weight: 700;
  margin-right: 20px;
}

#Top main .solv_sec .area3 {
  margin-top: 85px;
  margin-bottom: 100px;
}

#Top main .solv_sec .area3 .row {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#Top main .solv_sec .area3 .row .col {
  width: calc(50% - 30px);
  border: 1px solid #000;
}

#Top main .solv_sec .area3 .row .col .ttl {
  line-height: 59px;
  text-align: center;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}

#Top main .solv_sec .area3 .row .col figure {
  padding: 27px 30px 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 390px;
  margin: auto;
}

#Top main .solv_sec .area3 .row .col dl {
  padding: 0 30px 35px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#Top main .solv_sec .area3 .row .col dl dt {
  border-bottom: 2px solid #012e71;
  padding-bottom: 14px;
  font-size: 22px;
  text-align: center;
  font-weight: 700;
}

#Top main .solv_sec .area3 .row .col dl dd {
  padding: 20px 8px 0;
}

#Top main .solv_sec .area3 .row .col dl dd ul li {
  padding-left: 19px;
  position: relative;
  font-size: 19px;
  line-height: 1.8;
}

#Top main .solv_sec .area3 .row .col dl dd ul li::before {
  position: absolute;
  left: 0;
  top: 0;
}

#Top main .solv_sec .area3 .row .col:nth-of-type(1) {
  position: relative;
}

#Top main .solv_sec .area3 .row .col:nth-of-type(1)::before {
  content: '';
  display: inline-block;
  position: absolute;
  width: 0;
  height: 0;
  border-left: 26px solid #012e71;
  border-top: 75px solid transparent;
  border-bottom: 75px solid transparent;
  right: -48px;
  top: 0;
  bottom: 0;
  margin: auto;
}

#Top main .solv_sec .area3 .row .col:nth-of-type(1) .ttl {
  background: #666;
}

#Top main .solv_sec .area3 .row .col:nth-of-type(1) dl dt {
  color: #e72f2f;
}

#Top main .solv_sec .area3 .row .col:nth-of-type(1) ul li::before {
  content: '×';
  color: #ed2020;
}

#Top main .solv_sec .area3 .row .col:nth-of-type(2) .ttl {
  background: #012e71;
}

#Top main .solv_sec .area3 .row .col:nth-of-type(2) dl dt {
  color: #00a0e9;
}

#Top main .solv_sec .area3 .row .col:nth-of-type(2) ul li::before {
  content: '〇';
  color: #00a0e9;
}

#Top main .base_sec .area1 {
  padding: 80px 0 95px;
  background: #eff1f2;
  text-align: center;
}

#Top main .base_sec .area1 p {
  margin: 70px 0 40px;
  font-size: 24px;
  font-weight: 500;
}

#Top main .base_sec .area2 {
  margin-bottom: 94px;
  position: relative;
}

#Top main .base_sec .area2 .row {
  position: relative;
}

#Top main .base_sec .area2 .row::after {
  content: '';
  display: inline-block;
  position: absolute;
  width: 263px;
  height: 621px;
  background: url(../images/top/base01.png) no-repeat 0/contain;
  left: 0;
  right: 0;
  bottom: -20px;
  margin: auto;
}

#Top main .base_sec .area2 .row .col {
  width: 50%;
  min-height: 322px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#Top main .base_sec .area2 .row .col dl {
  max-width: 352px;
}

#Top main .base_sec .area2 .row .col dl dt {
  font-size: 34px;
  font-weight: 500;
  color: #fff;
  padding-bottom: 10px;
  border-bottom: 2px solid #fff;
  text-align: center;
}

#Top main .base_sec .area2 .row .col dl dd {
  padding: 30px 5px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#Top main .base_sec .area2 .row .col dl dd ul li {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
  padding-left: 40px;
  position: relative;
}

#Top main .base_sec .area2 .row .col dl dd ul li:not(:last-of-type) {
  margin-bottom: 10px;
}

#Top main .base_sec .area2 .row .col dl dd ul li::before {
  content: '';
  display: inline-block;
  position: absolute;
  width: 24px;
  height: 22px;
  background: url(../images/top/icon_check.svg) no-repeat 0/cover;
  left: 0;
  top: 1px;
}

#Top main .base_sec .area2 .row .col:nth-of-type(2) {
  background: url(../images/top/base_bg01.jpg) no-repeat center/cover;
}

#Top main .base_sec .area2 .row .col:nth-of-type(3) {
  background: url(../images/top/base_bg02.jpg) no-repeat center/cover;
}

#Top main .base_sec .area2 .row .col:nth-of-type(4) {
  background: url(../images/top/base_bg03.jpg) no-repeat center/cover;
}

#Top main .base_sec .area2 .row .col:nth-of-type(5) {
  background: url(../images/top/base_bg04.jpg) no-repeat center/cover;
}

@media (max-width: 1200px) {
  #Top main .base_sec .area2 .row::after {
    width: 152px;
    height: 358px;
    top: 0;
    bottom: 0;
  }
  #Top main .base_sec .area2 .row .col {
    padding: 0 90px;
  }
  #Top main .base_sec .area2 .row .col dl dt {
    font-size: 30px;
  }
  #Top main .base_sec .area2 .row .col dl dd ul li {
    font-size: 18px;
  }
}

#Top main .base_sec .area2 p {
  font-size: 12px;
  position: absolute;
  left: calc(50% + 100px);
  bottom: -40px;
}

#Top main .contact_sec {
  padding: 60px 0 70px;
  background: url(../images/top/bg_contact.jpg) no-repeat center/cover;
}

#Top main .contact_sec h2 {
  text-align: center;
  line-height: 1;
}

#Top main .contact_sec h2 .jp {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 15px;
}

#Top main .contact_sec h2 .en {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  color: #4e76a9;
  font-size: 14px;
}

#Top main .contact_sec .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  background: #fff;
  padding: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 45px;
}

#Top main .contact_sec .row dl {
  padding-left: 63px;
  position: relative;
  text-align: center;
  line-height: 1;
}

#Top main .contact_sec .row dl::before {
  content: '';
  display: inline-block;
  position: absolute;
  width: 54px;
  height: 53px;
  background: url(../images/top/icon_tel.svg) no-repeat 0/contain;
  left: 0;
  top: 6px;
}

#Top main .contact_sec .row dl dt a {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 67px;
}

#Top main .contact_sec .row dl dd {
  font-size: 14px;
  font-weight: 500;
  color: #737373;
  margin-top: 10px;
}

#Top main .contact_sec .row p {
  margin-left: 90px;
  position: relative;
}

#Top main .contact_sec .row p::before {
  content: '';
  display: inline-block;
  position: absolute;
  width: 1px;
  height: 81px;
  background: #b5c7dd;
  left: -48px;
  top: 0;
  bottom: 0;
  margin: auto;
}

#Top main .contact_sec .row p a {
  display: inline-block;
  width: 418px;
  line-height: 71px;
  border-radius: 5px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background: #ffa902;
  -webkit-box-shadow: 0 3px 0 #9a6807;
          box-shadow: 0 3px 0 #9a6807;
  text-align: center;
  position: relative;
  padding-left: 48px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#Top main .contact_sec .row p a::before, #Top main .contact_sec .row p a::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}



#Top main .contact_sec .row p a::before {
  width: 36px;
  height: 26px;
  background: url(../images/top/icon_mail.svg);
  left: 55px;
}

#Top main .contact_sec .row p a::after {
  width: 15px;
  height: 15px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  right: 25px;
}

@media (max-width: 1200px) {
  #Top main .contact_sec .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #Top main .contact_sec .row p {
    margin: 25px 0 0;
  }
  #Top main .contact_sec .row p::before {
    display: none;
  }
}

#Top main .secret_sec {
  background: #eff1f2;
  padding-top: 100px;
}

#Top main .secret_sec h3 {
  text-align: center;
}

#Top main .secret_sec h3 > span {
  display: inline-block;
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
  padding-bottom: 20px;
  border-bottom: 2px dotted #003e8b;
}

#Top main .secret_sec h3 > span .bl {
  color: #003e8b;
}

#Top main .secret_sec .secret_area {
  margin-top: 105px;
}

#Top main .secret_sec .secret_area .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 2px solid #003e8b;
}

#Top main .secret_sec .secret_area .row:first-of-type {
  border-top: 2px solid #003e8b;
}

#Top main .secret_sec .secret_area .row .img_wrap {
  width: 50%;
  min-height: 484px;
}

#Top main .secret_sec .secret_area .row .col {
  width: 50%;
  padding-left: 85px;
  max-width: 550px;
  position: relative;
}

#Top main .secret_sec .secret_area .row .col::before {
  content: '';
  display: inline-block;
  position: absolute;
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  top: 0;
  bottom: 0;
  margin: auto;
}

#Top main .secret_sec .secret_area .row .col .ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 25px;
}

#Top main .secret_sec .secret_area .row .col .ttl .num {
  display: inline-block;
  font-family: 'Roboto', sans-serif;
  font-weight: 100;
  font-size: 80px;
  color: #fff;
  width: 116px;
  height: 116px;
  background: #001860;
  border-radius: 50%;
  text-align: center;
  line-height: 116px;
  margin-right: 20px;
}

#Top main .secret_sec .secret_area .row .col .ttl .text {
  display: inline-block;
  font-size: 26px;
  font-weight: 700;
  border-bottom: 3px solid #001860;
  line-height: 1.2;
  padding-bottom: 13px;
}

#Top main .secret_sec .secret_area .row .col p {
  font-size: 18px;
  margin-bottom: 15px;
  line-height: 1.7;
}

#Top main .secret_sec .secret_area .row .col dl dt {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  background-color: #001860;
  line-height: 25px;
  padding: 0 15px;
  display: inline-block;
  margin-bottom: 15px;
}

#Top main .secret_sec .secret_area .row .col dl dd {
  font-size: 18px;
}

#Top main .secret_sec .secret_area .row:nth-of-type(1) .img_wrap {
  background: url(../images/top/secret01.jpg) no-repeat center/cover;
}

#Top main .secret_sec .secret_area .row:nth-of-type(2) .img_wrap {
  background: url(../images/top/secret02.jpg) no-repeat center/cover;
}

#Top main .secret_sec .secret_area .row:nth-of-type(3) .img_wrap {
  background: url(../images/top/secret03.jpg) no-repeat center/cover;
}

#Top main .secret_sec .secret_area .row:nth-of-type(4) .img_wrap {
  background: url(../images/top/secret04.jpg) no-repeat center/cover;
}

#Top main .secret_sec .secret_area .row:nth-of-type(5) .img_wrap {
  background: url(../images/top/secret05.jpg) no-repeat center/cover;
}

#Top main .secret_sec .secret_area .row:nth-of-type(2n - 1) {
  background: #fff;
}

#Top main .secret_sec .secret_area .row:nth-of-type(2n - 1) .col::before {
  border-right: 20px solid #fff;
  left: -20px;
}

#Top main .secret_sec .secret_area .row:nth-of-type(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

#Top main .secret_sec .secret_area .row:nth-of-type(2n) .col {
  padding-right: 85px;
  padding-left: 0;
}

#Top main .secret_sec .secret_area .row:nth-of-type(2n) .col::before {
  border-left: 20px solid #eff1f2;
  right: -20px;
}

@media (max-width: 1200px) {
  #Top main .secret_sec .secret_area .row .col {
    padding-left: 40px;
  }
  #Top main .secret_sec .secret_area .row .col .ttl .num {
    font-size: 50px;
    width: 100px;
    height: 100px;
    line-height: 100px;
  }
  #Top main .secret_sec .secret_area .row .col .ttl .text {
    width: calc(100% - 120px);
    font-size: 23px;
  }
  #Top main .secret_sec .secret_area .row:nth-of-type(2n) .col {
    padding-right: 40px;
  }
}

#Top main .solv_sec .area3 .row .col:nth-of-type(3) ul li::before {
    content: '〇';
    color: #00a0e9;
}

@media (max-width: 1000px) {
  #Top main .secret_sec .secret_area .row .col .ttl .num {
    font-size: 50px;
    width: 80px;
    height: 80px;
    line-height: 80px;
  }
  #Top main .secret_sec .secret_area .row .col .ttl .text {
    width: calc(100% - 100px);
    font-size: 20px;
  }
  #Top main .secret_sec .secret_area .row .col p {
    font-size: 16px;
  }
  #Top main .secret_sec .secret_area .row .col dl dd {
    font-size: 16px;
  }
}

#Top main .secret_sec .support_area {
  padding: 110px 0;
}

#Top main .secret_sec .support_area .list {
  margin-top: 75px;
}

#Top main .secret_sec .support_area .list .row:not(:last-of-type) {
  margin-bottom: 75px;
}

#Top main .secret_sec .support_area .list .row dl {
  width: 50%;
}

#Top main .secret_sec .support_area .list .row dl dt {
  background: #003e8b;
  padding: 15px 40px 15px 160px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 45px;
  line-height: 1.3;
}

#Top main .secret_sec .support_area .list .row dl dt span {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: #ffd800;
  position: absolute;
  left: 25px;
  top: 18px;
}

#Top main .secret_sec .support_area .list .row dl dt::before {
  content: '';
  border-top: 8px solid #003e8b;
  border-left: 8px solid #003e8b;
  border-right: 8px solid transparent;
  border-bottom: 8px solid transparent;
  position: absolute;
  left: 0;
  bottom: -16px;
}

#Top main .secret_sec .support_area .list .row dl dd {
  font-size: 18px;
  line-height: 1.8;
}

#Top main .secret_sec .support_area .list .row figure {
  padding-left: 70px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
          flex: 1;
}

#Top main .secret_sec .movie_area {
  text-align: center;
  padding: 110px 0 120px;
  background: url(../images/top/base_bg.jpg) no-repeat center/cover;
}

#Top main .secret_sec .movie_area .movie_wrap {
  border: 10px solid #003e8b;
  display: inline-block;
  margin-top: 65px;
}

#Top main .secret_sec .movie_area .movie_wrap iframe {
  width: 750px;
  height: 422px;
}

#Top main .series_sec {
  padding-top: 130px;
  background: url(../images/top/faq_bg.jpg) repeat;
}

#Top main .series_sec .row1 {
  margin-top: 95px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#Top main .series_sec .row1 .col {
  width: 50%;
  text-align: center;
  padding: 30px 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: 580px;
}

#Top main .series_sec .row1 .col dl {
  position: relative;
  padding-bottom: 25px;
  line-height: 1;
  margin-bottom: 45px;
}

#Top main .series_sec .row1 .col dl::before {
  content: '';
  display: inline-block;
  position: absolute;
  width: 167px;
  height: 3px;
  background: #fff;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

#Top main .series_sec .row1 .col dl dt {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 15px;
}

#Top main .series_sec .row1 .col dl dd {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
}

#Top main .series_sec .row1 .col p {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  min-height: 100px;
}

#Top main .series_sec .row1 .col ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 500px;
  margin: 40px auto -10px;
}

#Top main .series_sec .row1 .col ul li {
  width: 50%;
  padding: 0 5px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#Top main .series_sec .row1 .col ul li span {
  display: inline-block;
  width: 100%;
  font-weight: 700;
  line-height: 46px;
  color: #003e8b;
  background: #fff;
}

#Top main .series_sec .row1 .col:nth-of-type(1) {
  background: url(../images/top/series_bg01.jpg) no-repeat center/cover;
}

#Top main .series_sec .row1 .col:nth-of-type(2) {
  background: url(../images/top/series_bg02.jpg) no-repeat center/cover;
}

#Top main .series_sec .wh_wrap {
  background: #fff;
  padding: 95px 0 60px;
}

#Top main .series_sec .row2 {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#Top main .series_sec .row2 dl {
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.33%;
          flex: 0 0 33.33%;
  max-width: 33.33%;
  padding: 15px 0 10px;
  margin-bottom: 60px;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-right: 1px solid #e6e7ea;
}

#Top main .series_sec .row2 dl:nth-of-type(3) {
  border-right: none;
}

#Top main .series_sec .row2 dl:nth-of-type(4) {
  border-left: 1px solid #e6e7ea;
}

#Top main .series_sec .row2 dl dt {
  margin-bottom: 20px;
  font-size: 17px;
  font-weight: 900;
}

#Top main .series_sec .row2 dl dd:nth-of-type(2) {
  margin-top: -7px;
  font-size: 28px;
  font-weight: 700;
  color: #003e8b;
}

#Top main .faq_sec {
  padding: 120px 0 80px;
  background: url(../images/top/faq_bg.jpg) repeat;
}

#Top main .faq_sec .list {
  margin-top: 108px;
}

#Top main .faq_sec .list dl:not(:last-of-type) {
  margin-bottom: 60px;
}

#Top main .faq_sec .list dl dt {
  padding: 20px 20px 20px 80px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  font-size: 24px;
  color: #003e8b;
  font-weight: 700;
  background: #f8f8f8;
  line-height: 1.2;
  border-bottom: 3px solid #003e8b;
}

#Top main .faq_sec .list dl dt::before {
  content: 'Q';
  position: absolute;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 40px;
  color: #003e8b;
  left: 30px;
  top: 12px;
  line-height: 1;
}

#Top main .faq_sec .list dl dd {
  position: relative;
  padding: 30px 20px 0 80px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 18px;
}

#Top main .faq_sec .list dl dd span {
  vertical-align: top;
  margin-left: 30px;
}

#Top main .faq_sec .list dl dd::before {
  content: 'A';
  position: absolute;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 40px;
  color: #4693de;
  left: 30px;
  top: 23px;
  line-height: 1;
}

/*==================================
  Contact_reset
==================================*/
main#Contact {
  /*------ Reset CSS ------*/
  /*------ Reset END ------*/
}

main#Contact input {
  -webkit-appearance: none;
}

main#Contact input[type='text'] {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}

main#Contact input[type='radio'] {
  opacity: 0;
  margin: 0;
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 1;
}

main#Contact input[type='radio']:checked + label {
  background: #ff0000;
}

main#Contact input[type='checkbox'] {
  opacity: 0;
  margin: 0;
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 1;
}

main#Contact input[type='checkbox']:checked + label {
  background: #ff0000;
}

main#Contact input::-webkit-input-placeholder {
  color: #b7b7b7;
}

main#Contact input:-ms-input-placeholder {
  color: #b7b7b7;
}

main#Contact input::-ms-input-placeholder {
  color: #b7b7b7;
}

main#Contact input::placeholder {
  color: #b7b7b7;
}

main#Contact input:-ms-input-placeholder {
  color: #b7b7b7;
}

main#Contact input::-webkit-input-placeholder {
  color: #b7b7b7;
}

main#Contact button,
main#Contact input[type='button'],
main#Contact input[type='submit'] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
}

main#Contact textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  border-radius: 0;
}

main#Contact select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
  border-radius: 0;
}

/*==================================
  Contact_base
==================================*/
/* input, textarea
--------------------------------*/
/* radio_button
--------------------------------*/
main#Contact {
  /*------ Form Base ------*/
  /*------ Form Base END ------*/
}

@-webkit-keyframes onAutoFillStart {
  from {
  }
  to {
  }
}

@keyframes onAutoFillStart {
  from {
  }
  to {
  }
}

main#Contact span.error {
  color: #cc0303;
  display: block;
  margin: 7px 0 0;
}

main#Contact input:-webkit-autofill {
  -webkit-animation-name: onAutoFillStart;
          animation-name: onAutoFillStart;
  background: white !important;
  -webkit-transition: background-color 50000s ease-in-out 0s;
  transition: background-color 50000s ease-in-out 0s;
}

main#Contact input[type="text"]:focus,
main#Contact input[type="email"]:focus,
main#Contact input[type="tel"]:focus,
main#Contact input[type="search"]:focus,
main#Contact input[type="url"]:focus,
main#Contact textarea:focus {
  color: #000;
  background-color: #dddddd;
}

main#Contact .ERR {
  color: #cc0303;
}

main#Contact input[type="text"] {
  font-size: 16px;
  line-height: 1.625;
  letter-spacing: 0.03em;
  padding: 12px 21px;
  border: 1px solid #dddddd;
  background: #dddddd;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #000;
  width: 100%;
}

main#Contact input[type="text"].zip {
  max-width: 247px;
  width: 100%;
}

main#Contact .zip-wrap {
  background: #dddddd;
  display: inline-block;
  position: relative;
  max-width: 247px;
  width: 100%;
  margin-right: 3px;
}

main#Contact .zip-wrap::before {
  content: "〒";
  font-size: 18px;
  position: absolute;
  top: 0.8em;
  left: 24px;
  margin: auto;
}

main#Contact .zip-wrap input {
  padding: 12px 21px 12px 55px;
  width: 100%;
}

main#Contact input[type="button"] {
  font-size: 16px;
  line-height: 1.625;
  letter-spacing: 0.03em;
  font-weight: 500;
  color: #000;
  max-width: 140px;
  width: 100%;
  background: #dddddd;
  border: 3px solid #dddddd;
  padding: 10px 19px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

main#Contact input[type="button"]:hover {
  background: none;
}

main#Contact input[type="checkbox"] + label {
  padding-left: 29px;
  position: relative;
  margin-right: 29px;
  cursor: pointer;
}

main#Contact input[type="checkbox"] + label::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  border: 1px solid #dddddd;
  background: #dddddd;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

main#Contact input[type="checkbox"] + label::after {
  content: "";
  opacity: 0;
  border-right: 3px solid #000;
  border-bottom: 3px solid #000;
  display: block;
  height: 9px;
  left: 7px;
  margin-top: -8px;
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 5px;
}

main#Contact input[type="checkbox"]:checked + label {
  background: none;
}

main#Contact input[type="checkbox"]:checked + label::after {
  opacity: 1;
}

main#Contact input[type="radio"] + label {
  padding-left: 27px;
  position: relative;
  margin-right: 27px;
  cursor: pointer;
}

main#Contact input[type="radio"] + label::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 17px;
  height: 17px;
  border: 1px solid #dddddd;
  background: #dddddd;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 50%;
}

main#Contact input[type="radio"] + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 4px;
  width: 9px;
  height: 9px;
  background: #000;
  border-radius: 50%;
  opacity: 0;
}

main#Contact input[type="radio"]:checked + label {
  background: none;
}

main#Contact input[type="radio"]:checked + label::after {
  opacity: 1;
}

main#Contact .select-box {
  overflow: hidden;
  width: 60%;
  text-align: center;
  position: relative;
  border-radius: 2px;
  background: #dddddd;
}

main#Contact .select-box select {
  font-size: 16px;
  color: #000;
  letter-spacing: 0.035em;
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  padding: 12px 38px 12px 21px;
}

main#Contact .select-box select::-ms-expand {
  display: none;
}

main#Contact .select-box::before {
  position: absolute;
  top: 1.25em;
  right: 21px;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #000;
  pointer-events: none;
}

main#Contact textarea {
  font-size: 16px;
  line-height: 1.625;
  letter-spacing: 0.03em;
  border: 1px solid #dddddd;
  background: #dddddd;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 12px 21px;
  min-height: 174px;
}

main#Contact .overscroll {
  overflow-y: scroll;
  height: 237px;
  padding: 25px 21px;
  background: #dddddd;
}

main#Contact .overscroll ul > li {
  margin-bottom: 25px;
}

main#Contact .overscroll ul > li strong {
  font-size: 16px;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: 0.03em;
  display: block;
  margin-bottom: 5px;
  color: #000;
}

main#Contact .overscroll ul > li p {
  font-size: 14px;
  line-height: 1.42;
}

main#Contact .overscroll ul > li > ol {
  margin-top: 5px;
}

main#Contact .overscroll ul > li > ol li {
  text-indent: -1.25em;
  padding-left: 1.25em;
}

main#Contact .overscroll ul > li:first-child strong {
  margin-bottom: 20px;
}

main#Contact .overscroll ul > li:last-child {
  margin-bottom: 0;
}

main#Contact .submit_area {
  margin-top: 85px;
  text-align: center;
}

main#Contact .submit_area span {
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.13em;
  color: #000;
  width: 262px;
  background: #dddddd;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  position: relative;
  display: inline-block;
  text-align: center;
  box-sizing: border-box;
  border: 3px solid #dddddd;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

main#Contact .submit_area span input[type="submit"] {
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.13em;
  color: #000;
  cursor: pointer;
  width: 100%;
  height: 58px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

main#Contact .submit_area span:hover {
  background: none;
}

main#Contact .submit_area span:hover input[type="submit"] {
  color: #000;
}

main#Contact .submit_area ul.koumoku {
  max-width: 590px;
  margin: 20px auto 0;
}

main#Contact .submit_area ul.koumoku li {
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.13em;
  color: #000;
  width: 262px;
  background: #5f4b08;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  position: relative;
  display: inline-block;
  text-align: center;
  box-sizing: border-box;
  border: 3px solid #5f4b08;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

main#Contact .submit_area ul.koumoku li input[type="submit"] {
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.13em;
  color: #000;
  cursor: pointer;
  width: 100%;
  height: 58px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

main#Contact .submit_area ul.koumoku li:hover {
  background: none;
}

main#Contact .submit_area ul.koumoku li:hover input[type="submit"] {
  color: #000;
}

main#Contact .submit_area ul.koumoku li:hover svg path {
  fill: #000;
}

main#Contact .btn_back {
  margin-top: 25px;
  text-align: center;
}

main#Contact .btn_back input {
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.13em;
  color: #fff;
  width: 262px;
  background: #dddddd;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  position: relative;
  display: inline-block;
  text-align: center;
  box-sizing: border-box;
  border: 3px solid #dddddd;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 58px;
  padding: 15px 15px 14px;
}

main#Contact .contact_back {
  margin-top: 25px;
  text-align: center;
}

main#Contact .contact_back a {
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.13em;
  color: #fff;
  width: 262px;
  background: #dddddd;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  position: relative;
  display: inline-block;
  text-align: center;
  box-sizing: border-box;
  border: 3px solid #dddddd;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 58px;
  padding: 15px 15px 14px;
}

main#Contact .contact_back a:hover {
  color: #000;
  background: none;
}

/*==================================
  Contact
==================================*/
main#Contact .container {
  margin: auto;
}

main#Contact .container p > a {
  background: -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)) 0 100%/0 1px no-repeat;
  background: linear-gradient(#000, #000) 0 100%/0 1px no-repeat;
  background-size: 100% 1px;
  padding-bottom: 2px;
  display: inline;
}

main#Contact .container p > a:hover {
  color: #704f00;
  background: -webkit-gradient(linear, left top, left bottom, from(#704f00), to(#704f00)) 0 100%/0 1px no-repeat;
  background: linear-gradient(#704f00, #704f00) 0 100%/0 1px no-repeat;
  background-size: 100% 1px;
}

main#Contact .agree_area {
  margin: 30px 0 0;
  text-align: center;
}

main#Contact .need {
  color: #cc0303;
}

main#Contact table {
  display: block;
}

main#Contact table tbody {
  display: block;
}

main#Contact table tr {
  display: block;
  margin-bottom: 30px;
}

main#Contact table tr th {
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.03em;
  font-weight: 500;
  display: block;
  text-align: left;
  margin-bottom: 13px;
}

main#Contact table tr td {
  display: block;
}

main#Contact table tr td .text02 {
  margin-top: 8px;
}

main#Contact .check-list {
  padding-top: 5px;
  padding-left: 0;
}

main#Contact .check-list li {
  display: inline-block;
}

main#Contact .form_wrap > p {
  margin-top: 0 !important;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  font-weight: 500;
}


body {
      background: url(../images/top/page_bg.gif);

}

.wh_wrap a {
  transition: .2s all ease-out;
      color: #003e8b;
}
.wh_wrap a:hover {
  opacity: .7;

}

.paton_kenshin {
  width: 150px;
  padding-top: 10px;
  margin-left: auto;
  margin-right: auto;
}

#Top main .solv_sec .area3 .row .col._2 .ttl {
  background: #001860;
}
#Top main .base_sec .area1 .subttl {
    margin: 70px 0 10px;
    color:#001860;
    font-size: 24px;
    font-weight: 500;
}

#Top main .series_sec .row1 .col {
  position: relative;
  padding-top: 50px;
}
#Top main .series_sec .row1 .col:before {
  content:  "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #ffffff transparent transparent transparent;
  display: block;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.movie_wrap video {
  width: 750px;
}
