@charset "UTF-8";
/*------------------------------------------------------------
	clearfix（float解除）
------------------------------------------------------------*/
.clearfix {
  *zoom: 1;
}

.clearfix:after {
  display: block;
  clear: both;
  content: "";
}

/*------------------------------------------------------------
    Default
------------------------------------------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header, button,
hgroup, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 1em;
}

html {
  font-size: 62.5%;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

iframe {
  width: 100%;
  height: 100%;
}

img {
  vertical-align: top;
  max-width: 100%;
}

a {
  color: #fff;
  display: inline-block;
  text-decoration: none;
  transition: all .3s;
}

a:hover,
a:hover img {
  opacity: 0.80;
  filter: alpha(opacity=80);
  -ms-filter: "alpha(opacity=80)";
}

.u-bgcover {
  -webkit-background-size: cover !important;
          background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.u-pd100 {
  padding: 100px 0;
}

@media screen and (max-width: 767px) {
  .u-pd100 {
    padding: 50px 0;
  }
}

.u-pt100 {
  padding-top: 100px;
}

@media screen and (max-width: 767px) {
  .u-pt100 {
    padding-top: 50px;
  }
}

.u-pb100 {
  padding-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .u-pb100 {
    padding-bottom: 50px;
  }
}

.u-txtcenter {
  text-align: center;
}

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

.u-df {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .u-df {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.u-df .f-left, .u-df .f-right {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .u-df .f-left, .u-df .f-right {
    width: 100%;
  }
}

/* .fadein
------------------------------------------------------------*/
.u-fadein {
  opacity: 0;
  -webkit-transition: all 800ms;
  transition: all 800ms;
  -webkit-transform: translateY(50px) scale(0.9);
  -ms-transform: translateY(50px) scale(0.9);
      transform: translateY(50px) scale(0.9);
}

.u-fadein.scrollin {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
  -ms-transform: translateY(0) scale(1);
      transform: translateY(0) scale(1);
}

/*------------------------------------------------------------
	Layout
------------------------------------------------------------*/
body {
  min-width: 768px;
  line-height: 1.5;
  font-size: 14px;
  font-family: ryo-gothic-plusn, 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-weight: 400;
	font-style: normal;
}

@media screen and (max-width: 767px) {
  body {
    min-width: auto;
    font-size: 1.3rem;
  }
}

main {
  z-index: 1;
  position: relative;
  background: #F4F4F4;
}

.p-content {
  padding-top: 1px;
}

.l-container {
  margin: 0 auto;
  width: 1200px;
}

@media screen and (max-width: 1220px) and (min-width: 767px) {
  .l-container {
    width: 96%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .l-container {
    width: 94%;
    margin: 0 auto;
  }
}

@media (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
  img {
    max-width: 100%;
    height: auto !important;
  }
}

/*------------------------------------------------------------
    Header
------------------------------------------------------------*/
.c-header {
  position: relative;
  width: 100%;
  text-align: center;
}

.c-header__nav {
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  position: fixed;
  padding: 28px 30px 0 30px;
  -webkit-transition: 500ms;
  transition: 500ms;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media screen and (max-width: 767px) {
  .c-header__nav {
    padding: 12px;
  }
}

@media screen and (max-width: 767px) {
  .c-header__nav.nav-sp {
    background-color: rgba(0, 0, 0, 0.9);
  }
}

@media screen and (max-width: 767px) {
  .c-header .nav-logo img {
    zoom: 75%;
  }
}

.c-header .nav-logo .fixed_logo {
  display: none;
}

.c-header .nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .c-header .nav-menu {
    top: 60px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: none;
    position: absolute;
    width: 100%;
    left: 0;
    padding-right: 0;
    text-align: left;
    z-index: 999;
    overflow-x: hidden;
    border-top: 1px solid #aaa;
    height: calc(100vh - 62px);
    background-color: rgba(0, 0, 0, 0.7);
  }
}

.c-header .nav-menu li {
  padding: 0 35px;
}

@media screen and (max-width: 1200px) and (min-width: 767px) {
  .c-header .nav-menu li {
    padding: 0 2vw;
  }
}

@media screen and (max-width: 767px) {
  .c-header .nav-menu li {
    width: auto;
    padding: 0;
    border-bottom: 1px solid #aaa;
    background-color: rgba(0, 0, 0, 0.7);
  }
}

.c-header .nav-menu a {
  display: block;
  font-size: 13px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .c-header .nav-menu a {
    padding: 10px 0;
  }
}

@media screen and (max-width: 767px) {
  .c-header .nav-btn {
    right: 12px;
    width: 35px;
    height: 20px;
    cursor: pointer;
    position: relative;
    -ms-flex-item-align: center;
    align-self: center;
  }
  .c-header .nav-btn span {
    right: 0;
    width: 35px;
    height: 2px;
    position: absolute;
    background-color: #EAEAEA;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .c-header .nav-btn span:nth-child(1) {
    top: 0;
  }
  .c-header .nav-btn span:nth-child(2) {
    top: 10px;
  }
  .c-header .nav-btn span:nth-child(3) {
    top: 20px;
  }
  .c-header .is-open.nav-btn {
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .c-header .is-open.nav-btn span:nth-child(1) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .c-header .is-open.nav-btn span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .c-header .is-open.nav-btn span {
    top: 10px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

/*------------------------------------------------------------
c-dropdown
------------------------------------------------------------*/
.c-header .nav-menu .dropdown .recruit-hover {
  position: relative;
  cursor: pointer;
}

.c-header .nav-menu .dropdown .recruit-hover:after {
  content: "";
  padding: 3px;
  top: 7px;
  right: -20px;
  position: absolute;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: translateY(-50%) rotate(45deg);
      -ms-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.c-header .nav-menu .dropdown ul {
  list-style-type: none;
  display: block;
  margin: 0;
  padding: 0;
  position: absolute;
  width: 100%;
  left: 0;
  top: 84px;
  overflow: hidden;
  background: rgba(5, 148, 225, 0.31);
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(-2em);
  -ms-transform: translateY(-2em);
      transform: translateY(-2em);
  -webkit-transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
  transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
  box-shadow: 0 6px 5px -5px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 6px 5px -5px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 767px) {
  .c-header .nav-menu .dropdown ul {
    display: none;
    position: unset;
    -webkit-transition: none;
    transition: none;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    opacity: 1;
    visibility: visible;
    border-top: 1px solid #e9e7e5;
  }
}

.c-header .nav-menu .dropdown ul .l-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .c-header .nav-menu .dropdown ul .l-container {
    display: block;
    width: 100%;
  }
}

.c-header .nav-menu .dropdown li {
  -webkit-transition: all 500ms;
  transition: all 500ms;
  width: 23%;
  padding: 20px 0;
}

@media screen and (max-width: 767px) {
  .c-header .nav-menu .dropdown li {
    width: 100%;
    padding: 10px;
  }
}

.c-header .nav-menu .dropdown li:not(:last-child) {
  margin-right: 2.5%;
}

@media screen and (max-width: 767px) {
  .c-header .nav-menu .dropdown li:not(:last-child) {
    margin-right: 0;
  }
}

.c-header .nav-menu .dropdown li a {
  padding: 25px 0;
  background: #fff;
  color: #000;
}

@media screen and (max-width: 767px) {
  .c-header .nav-menu .dropdown li a {
    padding: 10px 0;
  }
}

@media screen and (min-width: 768px) {
  .c-header .nav-menu .dropdown:hover .recruit-hover:after {
    top: 12px;
    -webkit-transform: translateY(-50%) rotate(-135deg);
        -ms-transform: translateY(-50%) rotate(-135deg);
            transform: translateY(-50%) rotate(-135deg);
  }
  .c-header .nav-menu .dropdown:hover ul {
    visibility: visible;
    opacity: 1;
    z-index: 1;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
        transform: translateY(0%);
    -webkit-transition-delay: 0s, 0s, 0.3s;
    transition-delay: 0s, 0s, 0.3s;
  }
}

@media screen and (max-width: 767px) {
  .c-header .nav-menu .dropdown .recruit-hover:after {
    right: 12px;
    top: 45%;
  }
  .c-header .nav-menu .dropdown .recruit-hover.is-open:after {
    top: 54%;
    -webkit-transform: translateY(-50%) rotate(-135deg);
        -ms-transform: translateY(-50%) rotate(-135deg);
            transform: translateY(-50%) rotate(-135deg);
  }
}

/*------------------------------------------------------------
    end-Header
------------------------------------------------------------*/
/*------------------------------------------------------------
	footer
	------------------------------------------------------------*/
.c-footer {
  background: #0D4483;
  position: relative;
  text-align: center;
  font-size: 12px;
}

.c-footer .details {
  padding: 60px 0 38px;
}

@media screen and (max-width: 767px) {
  .c-footer .details {
    padding: 30px 0 16px;
  }
}

@media screen and (max-width: 767px) {
  .c-footer__flogo img {
    zoom: 70%;
  }
}

.c-footer__link {
  /* padding: 15px 0 120px; */
  padding: 120px 0 15px;
}

@media screen and (max-width: 767px) {
  .c-footer__link {
    /* padding: 10px 0 60px; */
    padding: 60px 0 10px;
  }
}

.c-footer__link li {
  display: inline-block;
}

.c-footer__link li a {
  padding: 0 20px;
}

@media screen and (max-width: 767px) {
  .c-footer__link li a {
    padding: 3px 10px;
  }
}

.c-footer__copyright {
  color: #DEDBDB;
}

/*------------------------------------------------------------
c-title
------------------------------------------------------------*/
.c-title01 {
  max-width: 560px;
  margin: 0 auto;
}

.c-title01 h2 {
  color: #1B74B5;
  font-size: 59px;
  padding-bottom: 15px;
  text-align: center;
	font-family: futura-pt, sans-serif;
	font-weight: 500;
	font-style: normal;
}

@media screen and (max-width: 767px) {
  .c-title01 h2 {
    font-size: 3rem;
    padding-bottom: 10px;
  }
}

.c-title01 p {
	text-align: center;
	font-size: 1.8rem;
}

.c-title02 {
  color: #0594FF;
  text-align: center;
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .c-title02 {
    margin-bottom: 22px;
  }
}

.c-title02 h2 {
  font-size: 40px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .c-title02 h2 {
    font-size: 3rem;
  }
}

.c-title02 p {
  font-size: 20px;
  padding-top: 18px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .c-title02 p {
    font-size: 1.6rem;
    padding-top: 10px;
  }
}

.c-title02 p:before {
  content: "";
  width: 92px;
  height: 1px;
  left: 0;
  right: 0;
  top: 3px;
  margin: 0 auto;
  position: absolute;
  background: #0594FF;
}

@media screen and (max-width: 767px) {
  .c-title02 p:before {
    top: 1.5px;
    width: 58px;
  }
}

/*------------------------------------------------------------
c-btn
------------------------------------------------------------*/
.c-btn01 {
  color: #1B74B5;
  display: block;
  padding: 8px 0;
  font-size: 13px;
  max-width: 230px;
  margin: 35px auto 0;
  text-align: center;
  border: 1px solid #1B74B5;
}

@media screen and (max-width: 767px) {
  .c-btn01 {
    max-width: 180px;
    padding: 5px 0;
    margin: 25px auto 0;
  }
}

.c-btn01:hover {
  color: #fff;
  background-color: #0D4483;
}

/*------------------------------------------------------------
c-list
------------------------------------------------------------*/
.c-list01 {
  border-top: 1px solid #D5DBEA;
}

.c-list01 a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 23px 0;
  border-bottom: 1px solid #D5DBEA;
}

@media screen and (max-width: 767px) {
  .c-list01 a {
    padding: 10px 0;
  }
}

.c-list01 span {
  padding: 0 7% 0 20px;
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
}

@media screen and (max-width: 767px) {
  .c-list01 span {
    font-size: 10px;
    padding: 0 10px 0 7px;
  }
}

/*------------------------------------------------------------
    c-other
------------------------------------------------------------*/
.main_fixed {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: fixed !important;
}

#main_slider .slide {
  overflow: hidden;
  position: relative;
  opacity: 1 !important;
}

#main_slider .slide:after {
  content: "";
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(5, 148, 225, 0.31);
}

#main_slider .slide span {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: transparent no-repeat center center;
  -webkit-background-size: cover;
          background-size: cover;
  opacity: 0;
  -webkit-transform: scale(1.4, 1.4);
  -ms-transform: scale(1.4, 1.4);
      transform: scale(1.4, 1.4);
  -webkit-transition: 0s;
  transition: 0s;
}

#main_slider .slide.slick-start span {
  opacity: 1;
  -webkit-transform: scale(1.4, 1.4);
  -ms-transform: scale(1.4, 1.4);
      transform: scale(1.4, 1.4);
  -webkit-transition: ease 0s;
  transition: ease 0s;
}

#main_slider .slide.slick-active span {
  opacity: 1;
  -webkit-transform: scale(1.2, 1.2);
  -ms-transform: scale(1.2, 1.2);
      transform: scale(1.2, 1.2);
  -webkit-transition: ease 12s;
  transition: ease 12s;
}

#main_slider .slide.slick-continue span {
  opacity: 0;
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
      transform: scale(1, 1);
  -webkit-transition: ease 12s;
  transition: ease 12s;
}

/* --------------------------------------------------
     7. Slick
-------------------------------------------------- */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track::before, .slick-track::after {
  content: "";
  display: table;
}

.slick-track::after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
  width: 100%;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-dotted.slick-slider {
  margin-bottom: 10px;
}

.slick-prev,
.slick-next {
  display: block;
  overflow: hidden;
  color: transparent;
  text-decoration: none;
  text-indent: 110%;
  white-space: nowrap;
  font-size: 0;
  width: 53px;
  height: 53px;
  position: absolute;
  top: 50%;
  padding: 0;
  line-height: 0;
  border: none;
  outline: none;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
      transform: translate(0, -50%);
  cursor: pointer;
  z-index: 1;
  opacity: .8;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

@media screen and (max-width: 767px) {
  .slick-prev,
  .slick-next {
    width: 30px;
    height: 30px;
    -webkit-background-size: 30px 30px !important;
            background-size: 30px 30px !important;
  }
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: .25;
}

.slick-prev {
  left: 0;
  background: url(../image/top/slick-prev.png) center no-repeat;
}

.slick-next {
  right: 0;
  background: url(../image/top/slick-next.png) center no-repeat;
}

.slick-dots {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  bottom: 15px;
  list-style: none;
  display: none;
  margin: 0;
  padding: 0;
  z-index: 2;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 10px;
  width: 10px;
  margin: 0 10px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  width: 10px;
  height: 10px;
  outline: none;
  line-height: 0;
  font-size: 0;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover::before, .slick-dots li button:focus::before {
  background-color: #15b7db;
}

.slick-dots li button::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #dcdcdc;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button::before {
  background-color: #15b7db;
}

/* c-mainvisual
    ------------------------------------------------------------*/
.c-mainvisual {
  height: 650px;
}

@media screen and (max-width: 767px) {
  .c-mainvisual {
    height: 325px;
  }
}

.c-mainvisual {
  position: relative;
}

.c-mainvisual:after {
  content: "";
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(5, 148, 225, 0.74);
}

.c-mainvisual__image {
  background: url(../image/common/mainvisual.jpg);
}

.c-mainvisual__text {
  top: 23%;
  left: 0;
  right: 0;
  color: #fff;
  z-index: 1;
  margin: 0 auto;
  position: absolute;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .c-mainvisual__text {
    top: 29%;
  }
}

.c-mainvisual__text h2 {
  font-size: 64px;
  line-height: 1.2;
	font-family: futura-pt, sans-serif;
	font-weight: 500;
	font-style: normal;
}

@media screen and (max-width: 767px) {
  .c-mainvisual__text h2 {
    line-height: 1.1;
    font-size: 3.5rem;
  }
}

.c-mainvisual__text p {
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  .c-mainvisual__text p {
    font-size: 1.6rem;
  }
}

.c-mainvisual__scroll {
  left: 0;
  right: 0;
  z-index: 1;
  bottom: 55px;
  margin: 0 auto;
  text-align: center;
  position: absolute;
}

@media screen and (max-width: 767px) {
  .c-mainvisual__scroll {
    bottom: 45px;
  }
}

@media screen and (max-width: 767px) {
  .c-mainvisual__scroll img {
    zoom: 70%;
  }
}

.c-mainvisual__scroll span {
  display: block;
  position: relative;
}

.c-mainvisual__scroll span:before, .c-mainvisual__scroll span:after {
  content: '';
  width: 1px;
  left: 0;
  right: 0;
  margin: 0 auto;
  position: absolute;
}

.c-mainvisual__scroll span:before {
  height: 43px;
  background-color: #fff;
  top: 12px;
}

@media screen and (max-width: 767px) {
  .c-mainvisual__scroll span:before {
    top: 9px;
    height: 36px;
  }
}

.c-mainvisual__scroll span:after {
  top: 55px;
  height: 30px;
  background-color: #372825;
}

@media screen and (max-width: 767px) {
  .c-mainvisual__scroll span:after {
    top: 45px;
    height: 26px;
  }
}

/* section-descript
    ------------------------------------------------------------*/
.s-descript {
  margin-top: -318px;
  z-index: 2;
  position: relative;
}

@media screen and (max-width: 767px) {
  .s-descript {
    margin-top: -130px;
  }
  .s-descript__boximg {
    height: 86vw;
  }
}

.s-descript__boxtxt {
  background: #fff;
  padding: 5.5% 5.5% 5%;
}

@media screen and (max-width: 767px) {
  .s-descript__boxtxt {
    padding: 40px 4% 30px;
  }
}

@media screen and (max-width: 767px) {
  .s-descript__boxtxt img {
    zoom: 70%;
  }
}

.s-descript__boxtxt h2 {
  text-align: center;
}

.s-descript__boxtxt h3 {
  font-size: 30px;
  font-family: ten-mincho-text, serif;
  font-weight: 400;
  font-style: normal;
}

@media screen and (max-width: 767px) {
  .s-descript__boxtxt h3 {
    font-size: 2.3rem;
  }
}

.s-descript__boxtxt h2 + h3 {
  padding-top: 35px;
}

@media screen and (max-width: 767px) {
  .s-descript__boxtxt h2 + h3 {
    padding-top: 20px;
  }
}

.s-descript__boxtxt h4 {
  font-size: 26px;
  text-align: center;
  padding-top: 20px;
}

@media screen and (max-width: 767px) {
  .s-descript__boxtxt h4 {
    font-size: 2rem;
  }
}

.s-descript__boxtxt p {
  font-size: 13px;
  line-height: 2.2;
  padding-top: 20px;
}

@media screen and (max-width: 767px) {
  .s-descript__boxtxt p {
    padding-top: 12px;
  }
}

.s-descript__boxtxt ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 22px;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.s-descript__boxtxt ul li {
  text-align: center;
}

/* section-business
    ------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .s-business__items--boximg {
    height: 56vw;
  }
}

.s-business__items--boxtxt {
  color: #fff;
  padding: 6% 5%;
  background: #0594FF;
}

@media screen and (max-width: 767px) {
  .s-business__items--boxtxt {
    padding: 30px 4%;
  }
}

.s-business__items--boxtxt h3 {
  font-size: 34px;
}

@media screen and (max-width: 767px) {
  .s-business__items--boxtxt h3 {
    font-size: 2.3rem;
  }
}

.s-business__items--boxtxt p {
  font-size: 16px;
  line-height: 1.8;
  padding-top: 16px;
}

@media screen and (max-width: 767px) {
  .s-business__items--boxtxt p {
    font-size: 1.4rem;
  }
}

.s-business__items--boxtxt a {
  color: #F0F0F0;
  border: 1px solid #C6D5EA;
  margin-left: 0;
}

@media screen and (max-width: 767px) {
  .s-business .s-business__items:nth-child(odd) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.s-business .s-business__items + .s-business__items {
  margin-top: 30px;
}

/* section-recruit
    ------------------------------------------------------------*/
.s-recruit {
  background: #97AFCB;
}

.s-recruit__boxtxt {
  background: #fff;
  text-align: center;
  padding: 35px 0;
}

.s-recruit__boxtxt p {
  color: #18384F;
  font-size: 13px;
  padding-top: 20px;
}

/*------------------------------------------------------------
    p-top
------------------------------------------------------------*/
.visual-top, #main_slider .slide {
  height: 95vh;
}

@media screen and (max-width: 767px) {
  .visual-top, #main_slider .slide {
    height: 65vh;
  }
}

.visual-top {
  position: relative;
}

.visual-top__text {
  top: 32%;
  left: 0;
  right: 0;
  color: #fff;
  z-index: 1;
  margin: 0 auto;
  position: absolute;
  text-align: center;
  -webkit-filter: blur(5px);
          filter: blur(5px);
  opacity: 0;
  -webkit-transform: translate3d(0, 50px, 0);
          transform: translate3d(0, 50px, 0);
  -webkit-transition: opacity 2s, -webkit-filter 2s, -webkit-transform 2s;
  transition: opacity 2s, -webkit-filter 2s, -webkit-transform 2s;
  transition: filter 2s, opacity 2s, transform 2s;
  transition: filter 2s, opacity 2s, transform 2s, -webkit-filter 2s, -webkit-transform 2s;
}

.visual-top__text h2 {
  font-size: 81px;
  line-height: 1.1;
  letter-spacing: 5px;
  font-family: Hoefler Text, sans-serif;
}

@media screen and (max-width: 767px) {
  .visual-top__text h2 {
    font-size: 4rem;
  }
}

.visual-top__text p {
  font-size: 30px;
  padding-top: 35px;
  font-family: ten-mincho-text, serif;
  font-weight: 400;
  font-style: normal;
}

@media screen and (max-width: 767px) {
  .visual-top__text p {
    font-size: 1.5rem;
    padding-top: 12px;
  }
}

.visual-top.is_show .visual-top__text {
  -webkit-filter: blur(0);
          filter: blur(0);
  opacity: .999;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.visual-top__scroll {
  left: 0;
  right: 0;
  z-index: 1;
  bottom: 0;
  margin: 0 auto;
  text-align: center;
  position: absolute;
  overflow: hidden;
}

.visual-top__scroll a {
  /* height: 135px; */
  height: 120px;
  display: block;
  position: relative;
}

@media screen and (max-width: 767px) {
  .visual-top__scroll a {
    height: 85px;
  }
}

.visual-top__scroll a:after, .visual-top__scroll a:before {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  width: 1px;
  margin: 0 auto;
}

.visual-top__scroll a:before {
  height: 35%;
  background: #1B74B5;
  visibility: hidden;
  -webkit-animation: scrollDown 2s infinite linear;
  animation: scrollDown 2s infinite linear;
  z-index: 1;
}

.visual-top__scroll a:after {
  background: #fff;
  height: 100%;
}

@-webkit-keyframes scrollDown {
  0% {
    visibility: visible;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
  100% {
    visibility: visible;
    -webkit-transform: translateY(300%);
    transform: translateY(300%);
  }
}

@keyframes scrollDown {
  0% {
    visibility: visible;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
  100% {
    visibility: visible;
    -webkit-transform: translateY(300%);
    transform: translateY(300%);
  }
}

.visual-top__scroll span {
  font-size: 12px;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
}

.p-top {
  /* section-news
    ------------------------------------------------------------*/
  /* section-business
    ------------------------------------------------------------*/
  /* section-aboutus
    ------------------------------------------------------------*/
}

.p-top .s-news {
  background: #1B74B5;
  position: relative;
}
.p-top .s-news:before {
  content: "";
  width: 1px;
  height: 75px;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
  position: absolute;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .p-top .s-news:before {
    height: 35px;
  }
}

.p-top .s-news h2, .p-top .s-news a {
  color: #fff;
}

.p-top .s-news .c-btn01 {
  border: 1px solid #fff;
}

.p-top .s-news .c-list01 {
  max-width: 796px;
  margin: 0 auto;
  padding-bottom: 7px;
}

.p-top .s-news__banner {
  text-align: center;
  background-color: #fff;
  margin-bottom: 50px;
}
.p-top .s-news__banner--img {
  background: url(../image/top/news_banner.png)
}
.p-top .s-news__banner--txt {
  padding: 4%;
}
.p-top .s-news__banner--txt p {
  font-size: 30px;
}
.p-top .s-news__banner--txt h3 {
  font-size: 42px;
}
.p-top .s-news__banner--txt h4 {
  color: #3A68B2;
  font-size: 26px;
  padding: 10px;
  margin-top: 15px;
  display: inline-block;
  border-top: 3px solid #3A68B2;
  border-bottom: 3px solid #3A68B2;
}
@media screen and (max-width: 767px) {
  .p-top .s-news__banner {
    margin-bottom: 40px;
  }
  .p-top .s-news__banner--img {
    height: 42vw;
  }
  .p-top .s-news__banner--txt {
    padding: 20px 4% 28px;
  }
  .p-top .s-news__banner--txt p {
    font-size: 2.2rem;
  }
  .p-top .s-news__banner--txt h3 {
    font-size: 3rem;
  }
  .p-top .s-news__banner--txt h4 {
    font-size: 1.6rem;
    padding: 8px;
    border-top: 1.5px solid #3A68B2;
    border-bottom: 1.5px solid #3A68B2;
  }
}

.p-top .s-business__top {
  background: url(../image/top/business_bg.jpg);
  padding-bottom: 60px;
  position: relative;
}
/* 
.p-top .s-business__top:before {
  content: "";
  width: 1px;
  height: 75px;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
  position: absolute;
  background: #1B74B5;
}

@media screen and (max-width: 767px) {
  .p-top .s-business__top:before {
    height: 35px;
  }
} */

@media screen and (max-width: 767px) {
  .p-top .s-business__top .c-title01 {
    max-width: 94%;
  }
}

.p-top .s-business__bottom .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .p-top .s-business__bottom .list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-top .s-business__bottom .list li {
  width: 50%;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .p-top .s-business__bottom .list li {
    width: 100%;
  }
}

.p-top .s-business__bottom .list li {
  border-left: 1px solid #E3E3E3;
}

.p-top .s-business__bottom .list li:first-child {
  border-left: none;
}

.p-top .s-business__bottom .list a {
  display: block;
	pointer-events: none;
}

.p-top .s-business__bottom .list__img {
  height: 324px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-top .s-business__bottom .list__img {
    height: 53vw;
  }
}

.p-top .s-business__bottom .list__img:after {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.56);
}

.p-top .s-business__bottom .list__img.img01 {
  background-image: url(../image/top/business_img01.jpg);
}

.p-top .s-business__bottom .list__img.img02 {
  background: url(../image/top/business_img02.jpg);
}

.p-top .s-business__bottom .list__img.img03 {
  background: url(../image/top/business_img03.jpg);
}

.p-top .s-business__bottom .list__img h3 {
  z-index: 2;
  font-size: 26px;
}

@media screen and (max-width: 767px) {
  .p-top .s-business__bottom .list__img h3 {
    font-size: 2rem;
  }
}

.p-top .s-business__bottom .list__txt {
  padding: 40px 4%;
}

@media screen and (max-width: 767px) {
  .p-top .s-business__bottom .list__txt {
    padding: 25px 4%;
  }
}

.p-top .s-business__bottom .list__txt--logo {
  text-align: center;
}

.p-top .s-business__bottom .list__txt--text {
  color: #000;
  font-size: 14px;
  line-height: 2;
  max-width: 78%;
  max-width: 440px;
  position: relative;
  margin: 0px auto 0;
}

@media screen and (max-width: 767px) {
  .p-top .s-business__bottom .list__txt--text {
    max-width: 94%;
    margin: 0px auto 0;
  }
}

.p-top .s-aboutus {
  background: #fff;
  position: relative;
  border-top: 18px solid #E8E8E8;
}

@media screen and (max-width: 767px) {
  .p-top .s-aboutus {
    border-top: 9px solid #E8E8E8;
  }
}

.p-top .s-aboutus:after {
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  height: 412px;
  position: absolute;
  background: url(../image/top/aboutus_bg.jpg) center no-repeat;
  -webkit-background-size: cover;
          background-size: cover;
}

@media screen and (max-width: 767px) {
  .p-top .s-aboutus:after {
    height: 53vw;
  }
}

.p-top .s-aboutus .details {
  z-index: 1;
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-top .s-aboutus__left, .p-top .s-aboutus__right {
  width: 48%;
}

@media screen and (max-width: 767px) {
  .p-top .s-aboutus__left, .p-top .s-aboutus__right {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .p-top .s-aboutus__left {
    text-align: center;
  }
}

.p-top .s-aboutus .c-title01, .p-top .s-aboutus .c-btn01 {
  margin: 0 0 0 auto;
}

@media screen and (max-width: 767px) {
  .p-top .s-aboutus .c-title01, .p-top .s-aboutus .c-btn01 {
    margin: 25px auto 0;
  }
}

.p-top .s-aboutus .c-title01 h2 {
  text-align: right;
}

@media screen and (max-width: 767px) {
  .p-top .s-aboutus .c-title01 h2 {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .p-top .s-aboutus .c-btn01 {
    color: #fff;
    border: 1px solid #fff;
  }
}

/*------------------------------------------------------------
    p-aboutus
------------------------------------------------------------*/
.p-aboutus {
  /* section-descript
    ------------------------------------------------------------*/
  /* section-company
    ------------------------------------------------------------*/
}

.p-aboutus .s-descript__boximg {
  background: url(../image/aboutus/descript_img.jpg);
}

.p-aboutus .image {
  text-align: center;
}

/*------------------------------------------------------------
    p-business
------------------------------------------------------------*/
.p-business {
  /* section-descript
    ------------------------------------------------------------*/
  /* section-service
    ------------------------------------------------------------*/
}

.p-business .s-descript__boximg {
  background: url(../image/business/descript_img.jpg);
}

.p-business .s-business .item01 .s-business__items--boximg {
  background: url(../image/business/service_img01.jpg);
}

.p-business .s-business .item02 .s-business__items--boximg {
  background: url(../image/business/service_img02.jpg);
}

.p-business .s-business .item03 .s-business__items--boximg {
  background: url(../image/business/service_img03.jpg);
}

.p-business .s-business .item04 .s-business__items--boximg {
  background: url(../image/business/service_img04.jpg);
}

.p-business .s-business .item05 .s-business__items--boximg {
  background: url(../image/business/service_img05.jpg);
}

/*------------------------------------------------------------
    p-business02
------------------------------------------------------------*/
.p-business02 {
  /* section-descript
    ------------------------------------------------------------*/
  /* section-feature
    ------------------------------------------------------------*/
}

.p-business02 .s-descript__boximg {
  background: url(../image/business02/descript_img.jpg);
}

.p-business02 .s-business .item01 .s-business__items--boximg {
  background: url(../image/business02/feature_img01.jpg);
}

.p-business02 .s-business .item02 .s-business__items--boximg {
  background: url(../image/business02/feature_img02.jpg);
}

.p-business02 .s-business .item03 .s-business__items--boximg {
  background: url(../image/business02/feature_img03.jpg);
}

.p-business02 .s-business .item04 .s-business__items--boximg {
  background: url(../image/business02/feature_img04.jpg);
}

.p-business02 .s-business .item05 .s-business__items--boximg {
  background: url(../image/business02/feature_img05.jpg);
}

/*------------------------------------------------------------
    p-news
------------------------------------------------------------*/
.p-news {
  padding-bottom: 10%;
}
.p-news .s-news .details, .p-news .s-newslist .details {
  background: #fff;
  padding: 5% 5% 5% 5%;
  max-width: 1000px;
}

@media screen and (max-width: 767px) {
  .p-news .s-news .details, .p-news .s-newslist .details {
    padding: 30px 15px;
  }
}
.p-news {
  /* section-news
    ------------------------------------------------------------*/
  /* section-newslist
    ------------------------------------------------------------*/
}

.p-news .s-news .c-list01 {
  border-top: 1px solid #CECECE;
}
.p-news .s-news .c-list01 a {
  color: #646464;
  border-bottom: 1px solid #CECECE;
}

.p-news .s-newslist__date {
  display: block;
  font-size: 15px;
  padding-top: 15px;
}

@media screen and (max-width: 767px) {
  .p-news .s-newslist__date {
    padding-top: 7px;
  }
}
.p-news .s-newslist__title {
  font-size: 30px;
  font-family: ten-mincho-text, serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .p-news .s-newslist__title {
    font-size: 2.5rem;
  }
}
.p-news .s-newslist__text {
  line-height: 2.2;
  font-size: 13px;
  padding-top: 50px;
}
@media screen and (max-width: 767px) {
  .p-news .s-newslist__text {
    padding-top: 20px;
  }
}
.p-news .s-newslist__image {
  max-width: 586px;
  margin: 50px auto;
}
@media screen and (max-width: 767px) {
  .p-news .s-newslist__image {
    margin: 30px auto;
  }
}

.l-sticky {
  position: relative;
  -webkit-transition: background 0.6s ease-out;
  transition: background 0.6s ease-out;
}

/*------------------------------------------------------------
  c-sidebar
  ------------------------------------------------------------*/
.c-sidebar {
  position: absolute;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  z-index: 2;
  left: 0;
  top: 0;
  width: 20%;
  height: 100%;
  background-color: #FFFBEB;
}

@media screen and (max-width: 767px) {
  .c-sidebar {
    position: static !important;
    width: 100%;
    height: auto;
    max-width: 100%;
  }
}

.c-sidebar__wrap {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  padding: 60px 11%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .c-sidebar__wrap {
    padding: 40px 15px;
    margin-top: -50px;
  }
}

.c-sidebar__wrap--list li {
  padding: 5px 0;
}

.c-sidebar__wrap--list li a {
  color: #646464;
}

.c-sidebar h3 {
  color: #0594FF;
  font-size: 22px;
  margin-bottom: 13px;
  font-family: 'futura', serif;
}

.c-sidebar.is_sticky {
  position: fixed;
}

.c-sidebar.is_bottom {
  position: absolute;
  bottom: 0;
  top: auto;
}

.c-sidebar.is_bottom .aside_wrapper {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.c-content {
  position: relative;
  width: calc(100% - 20%);
  margin-left: 20%;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .c-content {
    width: 100%;
    margin-left: 0;
    padding-bottom: 0;
    padding-top: 50px;
  }
}

.c-content__wrap {
  position: relative;
  padding: 0 4%;
  margin: 0 auto;
}

/*------------------------------------------------------------
  c-pagination
  ------------------------------------------------------------*/
.c-pagination {
  text-align: center;
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 767px) {
  .c-pagination {
    margin-top: 30px;
  }
}

.c-pagination a, .c-pagination span {
  margin: 0;
  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;
  font-size: 1.2rem;
  margin-left: 10px;
}

@media screen and (max-width: 767px) {
  .c-pagination a, .c-pagination span {
    margin-left: 7px;
    font-size: 1.1rem;
  }
}

.c-pagination a {
  color: #0594FF;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.c-pagination a:hover {
  filter: alpha(opacity=50);
  opacity: 0.5;
}

.c-pagination span.current {
  color: #fff;
  background-color: #0594FF;
  border: none;
}

.c-pagination span.dots {
  border: none;
  padding: 0;
}

.c-pagination .page-numbers {
  width: 30px;
  height: 30px;
  border: 1px solid #0594FF;
}

/* @media screen and (max-width: 767px) {
  .c-pagination .page-numbers {
    width: 30px;
    height: 30px;
  }
} */

.c-pagination .next.page-numbers, .c-pagination .prev.page-numbers {
  color: #0594FF;
  background: none;
  border: none;
  width: auto;
}

.c-pagination .next.page-numbers {
  margin-left: 15px;
}

.c-pagination .prev.page-numbers {
  margin-right: 15px;
}

@media screen and (max-width: 767px) {
  .c-pagination .next.page-numbers {
    margin-left: 5px;
  }
  .c-pagination .prev.page-numbers {
    margin-right: 5px;
  }
}

/*------------------------------------------------------------
    p-company
------------------------------------------------------------*/
.p-company {
  /* section-company
    ------------------------------------------------------------*/
}

/* .p-company .s-company {
  padding-bottom: 12%;
}

@media screen and (max-width: 767px) {
  .p-company .s-company {
    padding-bottom: 60px;
  }
} */

.p-company .s-company .details {
  background: #fff;
  padding: 5% 5% 5% 5%;
  max-width: 1000px;
}

@media screen and (max-width: 767px) {
  .p-company .s-company .details {
    padding: 30px 15px;
  }
}

.p-company .s-company .map iframe {
	max-width: 1000px;
}

.p-company .s-company .c-list01 {
  border-top: 1px solid #0594FF;
}

.p-company .s-company .c-list01 li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 23px 0;
  border-bottom: 1px solid #0594FF;
}

@media screen and (max-width: 767px) {
  .p-company .s-company .c-list01 li {
    padding: 10px 0;
  }
}

.p-company .s-company .c-list01 span {
  min-width: 145px;
}

@media screen and (max-width: 767px) {
  .p-company .s-company .c-list01 span {
    min-width: 58px;
  }
}

.map {
	margin: 40px auto 0;
	text-align: center;
}
.bnr {
	/* margin: 125px auto 0; */
	text-align: center;
}

/*------------------------------------------------------------
    p-contact
------------------------------------------------------------*/
.p-contact {
  background-color: #fff;
  padding-bottom: 10%;
}
.p-contact .s-form .details {
  background: #fff;
  padding: 5% 5% 5% 5%;
  max-width: 1000px;
}

/* section-form
------------------------------------------------------------*/
.s-form__alert {
  padding-bottom: 15px;
}

@media screen and (max-width: 767px) {
  .s-form__alert {
    padding-bottom: 8px;
  }
}

.s-form__alert .required {
  margin-right: 5px;
}

.s-form .required {
  color: #1f1f1f;
  font-size: 12px;
  padding: 5px 11px;
  background: #fff;
  min-width: 26px;
  border: 1px solid #302d2c;
}

@media screen and (max-width: 767px) {
  .s-form .required {
    min-width: auto;
    padding: 3px 7px;
  }
}

.s-form dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 28px;
  margin: 0;
}

@media screen and (max-width: 767px) {
  .s-form dl {
    display: block;
    padding-bottom: 20px;
  }
}

.s-form dt,
.s-form dd {
  margin: 0;
  box-sizing: border-box;
}
.s-form dt {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 50px;
  width: 30%;
  min-width: 255px;
  padding: 10px 2%;
  background: #343434;
}
.s-form dt p {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .s-form dt {
    width: 100%;
    min-width: 134px;
    padding: 5px 7px;
    min-height: 40px;
  }
}

.s-form dt .required {
  /*margin-left: 10%;*/
}

@media screen and (max-width: 767px) {
  .s-form dt .required {
    /*margin-left: 5px;*/
  }
}

.s-form dd {
  width: 73%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .s-form dd {
    width: 100%;
    margin-top: 6px;
  }
}

.s-form dd p {
  width: 100%;
  height: 100%;
  margin: 0;
}

.s-form__select dd p {
  height: auto;
}

.s-form__select select {
  margin-left: 2%;
  padding: 3px;
  width: 180px;
}

@media screen and (max-width: 767px) {
  .s-form__select select {
    width: 130px;
    margin-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .s-form {
    font-size: 13px;
  }
  .s-form dd p {
    display: block;
  }
  span.wpcf7-list-item {
    margin: 0 !important;
  }
}

.s-form__textarea dt {
  height: auto;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.s-form__textarea dd textarea {
  padding-top: 12px;
}

@media screen and (max-width: 767px) {
  .s-form__textarea dt {
    align-items: center;
  }
  .s-form__textarea dd textarea {
    height: 230px;
    padding-top: 7px;
  }
}

.s-form__checkbox dd {
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.s-form__rules {
  margin-top: 10px;
  padding: 3%;
  background: #f5f5f5;
}

.s-form__rules p + p {
  padding-top: 30px;
}

@media screen and (max-width: 767px) {
  .s-form__rules p + p {
    padding-top: 17px;
  }
}

.s-form input[type="text"],
.s-form input[type="email"],
.s-form input[type="confirm_email"],
.s-form textarea {
  width: 100%;
  height: 100%;
  padding: 10px 15px;
  font-size: 14px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: none;
  resize: none;
  background-color: #f5f5f5;
  vertical-align: middle;
  font-family: "メイリオ", "meiryo", sans-serif;
  -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
  -webkit-transition: border linear 0.2s, -webkit-box-shadow linear 0.2s;
  transition: border linear 0.2s, -webkit-box-shadow linear 0.2s;
  transition: border linear 0.2s, box-shadow linear 0.2s;
  transition: border linear 0.2s, box-shadow linear 0.2s,
    -webkit-box-shadow linear 0.2s;
}

@media screen and (max-width: 767px) {
  .s-form input[type="text"],
  .s-form input[type="email"],
  .s-form input[type="confirm_email"],
  .s-form textarea {
    height: 40px;
    padding: 5px;
  }
}

input[type="radio"] {
  vertical-align: -2px;
}

.s-form ::-webkit-input-placeholder {
  color: #919191;
}

.s-form :-ms-input-placeholder {
  color: #919191;
}

.s-form ::-ms-input-placeholder {
  color: #919191;
}

.s-form ::placeholder {
  color: #919191;
}

.s-form textarea:focus,
.s-form input:focus,
.s-form select:focus {
  border-color: rgba(82, 168, 236, 0.8);
  outline: 0;
  outline: thin dotted \9;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(82, 168, 236, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(82, 168, 236, 0.6);
}

.s-form__submit, .s-form__confirm, .wpcf7cp-btns {
  text-align: center;
}

.s-form__submit input, .s-form__confirm input, #wpcf7cpcnf button {
  color: #fff;
  width: 60%;
  border: none;
  font-size: 14px;
  cursor: pointer;
  max-width: 518px;
  padding: 20px 0;
  border-radius: 60px;
  margin: 50px 10px 0;
  background: #343434;
  transition: all .3s;
  border: 1px solid #343434;
}

@media screen and (max-width: 767px) {
  .s-form__submit input, .s-form__confirm input, #wpcf7cpcnf button {
    width: 45%;
    max-width: 180px;
    padding: 8px 0;
    margin: 30px 4px 0;
  }
}

.s-form__submit input:hover, .s-form__confirm input:hover, #wpcf7cpcnf button:hover {
  color: #000;
  background-color: #f5f5f5;
}

.s-form .wpcf7-not-valid-tip {
  padding-left: 2%;
}

@media screen and (max-width: 767px) {
  .s-form .wpcf7-not-valid-tip {
    padding-left: 5px;
  }
}

.wpcf7-response-output {
}

.s-form .ajax-loader, .s-form .wpcf7-spinner {
  position: absolute;
}

.s-form  .wpcf7 .wpcf7-submit:disabled {
  background: #dddddd;
	color: #404040;
	border: 1px solid #404040 !important;
}


/* テーブル */
#wpcf7cpcnf table {
  width: 100%;
  border-spacing: 0 25px;
}
#wpcf7cpcnf table tr:last-child {
  display: none;
}
#wpcf7cpcnf table th, #wpcf7cpcnf table td {
  padding: 10px 2%;
}
#wpcf7cpcnf table th {
  color: #fff;
  background-color: #343434;
  text-align: left;
  height: 50px;
  width: 30%;
  min-width: 255px;
}
#wpcf7cpcnf table td {
  background-color: #f5f5f5;
}

@media screen and (max-width: 767px) {
  #wpcf7cpcnf table th, #wpcf7cpcnf table td {
    display: block;
    width: 100% !important;
    padding: 12px 12px 12px 4%;
  }
  #wpcf7cpcnf table td {
    margin-bottom: 23px;
	  border-top: 0;
  }
}

/*--------------------------------------------------------------
// PAGE POLICY
--------------------------------------------------------------*/
.p-policy {
  padding-bottom: 10%;
}
.p-policy .s-policy .details {
  max-width: 1000px;
}
.policy__note {
	font-size: 12px;
	font-weight: 500;
	color: #2b2b2b;
	/* margin-top: 70px; */
}
.policy-list {
	margin-top: 30px;
}
.policy-item {
	background-color: #ffffff;
	border-radius: 6px;
	padding: 60px 55px;
}
@media only screen and (max-width: 767px) {
	.policy-item {
		padding: 30px 20px;
	}
}
.policy-item:not(:last-child) {
	margin-bottom: 35px;
}
.policy-item__ttl {
	font-size: 2.3rem;
	font-weight: 500;
	color: #000000;
	line-height: 1;
}
.policy-item__desc {
	font-size: 1.5rem;
	font-weight: 300;
	color: #707070;
	margin-top: 20px;
}
.policy-item__list .policy-item__desc {
	padding-left: 16px;
	text-indent: -16px;
}
.policy-item__list .policy-item__ttl {
	margin-bottom: 20px;
}
.policy-item__list .policy-item__desc {
	margin-top: 0;
}
@media only screen and (max-width: 767px) {
	.policy-item__list .policy-item__desc {
		margin-top: 5px;
	}
}