@charset "UTF-8";
/* Core */
/* -------------------------------
 * Modul
 * -------------------------------*/
html {
  scroll-behavior: smooth;
}

html,
body,
h1,
h2,
h3,
h4,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
figure {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: 400;
  font-size: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

article,
header,
footer,
aside,
figure,
figcaption,
nav,
section {
  display: block;
}

body {
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

ol,
ul {
  list-style: none;
  list-style-type: none;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: top;
  padding: 0;
}

html {
  font-size: 1rem;
  overflow-x: hidden;
  overflow-y: scroll;
}

@media screen and (max-width: 768px) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  background-color: #fff;
  color: #333;
  width: 100%;
  height: 100%;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
p {
  font-weight: 400;
  line-height: 1.6;
}

hr {
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  overflow: visible;
}

@media screen and (min-width: 768px) {
  body {
    font-size: 1.6rem;
    letter-spacing: 0.02em;
  }
}

section[id] {
  display: block;
  padding-top: 110px;
  margin-top: -110px;
  content: "";
}

@media screen and (max-width: 768px) {
  body {
    font-size: 1.2rem;
    background-size: 200%;
  }
}

a {
  color: #ff796a;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.lp2 a {
  color: #5696c6;
  text-decoration: none;
}

.lp2 a:hover {
  text-decoration: underline;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

img {
  width: auto;
  max-width: 100%;
  height: auto;
  border-style: none;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}

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

::-moz-selection {
  color: #558275;
  background-color: #b2ddd1;
  text-shadow: none;
}

::selection {
  color: #558275;
  background-color: #b2ddd1;
  text-shadow: none;
}

.lp2 ::-moz-selection {
  color: #006fca;
  background-color: #d1e6ff;
  text-shadow: none;
}

.lp2 ::selection {
  color: #006fca;
  background-color: #d1e6ff;
  text-shadow: none;
}

/* -------------------------------
 * Utility
 * -------------------------------*/
/* text */
.color-em {
  color: #d50000;
}

.color-em.lp2 {
  color: #1f1f8c;
}

.line-em {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(0%, #ffff00));
  background: linear-gradient(transparent 60%, #ffff00 0%);
}

.line-under {
  border-bottom: solid 2px #ffff00;
}

.line-wave {
  background: url("../images/wave.png") bottom repeat-x;
  background-size: 20px;
  padding-bottom: 6px;
}

.line-wave_white {
  background: url("../images/wave_white.png") bottom repeat-x;
  background-size: 20px;
  padding-bottom: 6px;
}

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

/* fade animation */
.fade {
  opacity: 0;
  -webkit-transform: translate(0, 20px);
      -ms-transform: translate(0, 20px);
          transform: translate(0, 20px);
}

.fade.active {
  opacity: 1;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

/* -------------------------------
 * Common
 * -------------------------------*/
.l-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  min-width: 1200px;
  overflow-wrap: break-word;
}

@media screen and (max-width: 768px) {
  .l-wrapper {
    min-width: 0;
  }
}

/* header */
.l-header {
  width: 100%;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  padding: 0;
  background-color: #fff;
  border-bottom: 1px solid #e5e5e5;
}

.l-header .l-header-inner {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 0 10px;
}

@media screen and (max-width: 768px) {
  .l-header {
    position: fixed;
    top: 0;
    background-color: #fff;
  }
  .l-header .l-header-inner {
    padding: 0;
  }
}

/* content */
.l-content {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.l-content .l-content-inner {
  max-width: 1100px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .l-content .l-content-inner {
    max-width: 100%;
  }
}

/* title */
.l-title-h2 {
  font-size: 2rem;
  text-align: center;
  font-weight: 700;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 70px auto;
}

.l-title-h3 {
  font-size: 2.25rem;
  text-align: center;
  font-weight: 700;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 20px auto 40px;
}

.l-title-sub {
  font-size: 1.625rem;
  font-weight: 700;
  text-align: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 10px auto 30px;
}

.l-title-sub span {
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .l-title-h2 {
    font-size: 1.125rem;
    margin: 30px auto;
  }
  .l-title-h3 {
    font-size: 1.25rem;
    margin: 20px auto;
  }
  .l-title-sub {
    font-size: 1rem;
    margin: 20px auto;
    line-height: 1.4;
  }
}

/* contact */
section.contact-main {
  margin-top: 100px;
  background-color: #fffde6;
}

@media screen and (max-width: 768px) {
  section.contact-main {
    padding: 30px 0;
  }
}

/* footer */
.l-footer {
  width: 100%;
}

.l-footer .l-footer-inner {
  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;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 0;
}

.l-footer .l-footer-copy {
  width: 100%;
  padding: 20px 0;
  background-color: #72ad99;
}

.l-footer .l-footer-copy .l-footercopy-text {
  font-size: 0.875rem;
  color: #fff;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .l-footer .l-footer-inner {
    display: block;
    text-align: center;
    padding: 10px 0 20px;
    max-width: 100%;
  }
  .l-footer .l-footer-copy {
    padding: 12px 0;
  }
}

.lp2 .l-footer .l-footer-copy {
  background-color: #5696c694;
}

/* -------------------------------
 * Component
 * -------------------------------*/
.button {
  display: block;
  font-size: 1.625rem;
  color: #fff;
  letter-spacing: 0.1em;
  width: 440px;
  margin: 0 auto 20px;
  padding: 24px 0;
  border: none;
  background: -webkit-gradient(linear, left top, right top, from(#cf263e), to(#a9263e));
  background: linear-gradient(to right, #cf263e, #a9263e);
  cursor: pointer;
  text-decoration: none;
}

.button:hover {
  opacity: 0.8;
  text-decoration: none;
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
}

@media screen and (max-width: 768px) {
  .button {
    font-size: 1.125rem;
    width: 100%;
    margin: 20px 0;
    padding: 20px 0;
  }
}

/* -------------------------------
 * Project
 * -------------------------------*/
/* header */
.header-title {
  font-size: 0.625rem;
  line-height: 3;
  color: #666;
  width: 100%;
}

.header-logo a {
  display: inline-block;
}

.header-logo a img {
  width: 200px;
}

@media screen and (max-width: 768px) {
  .header-logo {
    padding: 0 10px;
  }
  .header-logo a img {
    width: 130px;
  }
}

.lp2 .header-logo a {
  display: inline-block;
}

.lp2 .header-logo .logo-svg {
  width: 200px;
}

.lp2 .header-logo .logo-svg .cls-1 {
  fill: #0365bc;
}

.lp2 .header-logo .logo-svg .cls-2 {
  fill: #d57d87;
}

@media screen and (max-width: 768px) {
  .lp2 .header-logo a {
    display: inline-block;
  }
  .lp2 .header-logo .logo-svg {
    width: 130px;
  }
  .lp2 .header-logo .logo-svg .cls-1 {
    fill: #0365bc;
  }
  .lp2 .header-logo .logo-svg .cls-2 {
    fill: #d57d87;
  }
}

.header-humberger {
  display: none;
}

@media screen and (max-width: 768px) {
  .header-humberger {
    position: absolute;
    top: 24px;
    right: 10px;
    display: inline-block;
    width: 50px;
    height: 40px;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
  }
  .header-humberger .header-humberger-border {
    position: absolute;
    display: inline-block;
    width: 30px;
    height: 2px;
    background: #0365bc;
    border-radius: 3px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .header-humberger .header-humberger-border:first-of-type {
    top: 10px;
  }
  .header-humberger .header-humberger-border:nth-of-type(2) {
    top: 18px;
  }
  .header-humberger .header-humberger-border:last-of-type {
    top: 26px;
  }
  .header-humberger.active span:nth-of-type(1) {
    -webkit-transform: translateY(8px) rotate(45deg);
        -ms-transform: translateY(8px) rotate(45deg);
            transform: translateY(8px) rotate(45deg);
  }
  .header-humberger.active span:nth-of-type(2) {
    opacity: 0;
  }
  .header-humberger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
        -ms-transform: translateY(-8px) rotate(-45deg);
            transform: translateY(-8px) rotate(-45deg);
  }
}

.header-navi .header-navi-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-navi .header-navi-list .header-navi-item {
  font-size: 1rem;
  letter-spacing: 0;
  margin: 0 20px;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.header-navi .header-navi-list .header-navi-item a {
  display: block;
  padding: 10px;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.header-navi .header-navi-list .header-navi-item a:hover {
  text-decoration: none;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.header-navi .header-navi-list .header-navi-item.is-contact {
  margin: 0 0 0 20px;
  background-color: #cfba6e;
}

.header-navi .header-navi-list .header-navi-item.is-contact a {
  color: #fff;
  padding: 47px 30px;
}

.header-navi .header-navi-list .header-navi-item.is-contact:hover {
  opacity: 0.8;
}

.header-navi .header-navi-list .header-navi-item:not(.is-contact) > a {
  position: relative;
  display: block;
  text-decoration: none;
  color: #333;
}

.header-navi .header-navi-list .header-navi-item:not(.is-contact) > a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #32aa89;
  -webkit-transform: scale(0, 1);
      -ms-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: center top;
      -ms-transform-origin: center top;
          transform-origin: center top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.header-navi .header-navi-list .header-navi-item:not(.is-contact) > a:hover {
  color: #32aa89;
}

.header-navi .header-navi-list .header-navi-item:not(.is-contact) > a:hover::after {
  -webkit-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
          transform: scale(1, 1);
}

@media screen and (max-width: 768px) {
  .header-navi {
    display: none;
    width: 100%;
    border-top: 1px solid #e5e5e5;
    margin-top: 10px;
    max-height: 400px;
    overflow-y: auto;
  }
  .header-navi .header-navi-list {
    display: block;
  }
  .header-navi .header-navi-list .header-navi-item {
    font-size: 0.875rem;
    width: 100%;
    margin: 0;
    text-shadow: none;
  }
  .header-navi .header-navi-list .header-navi-item a {
    color: #333;
    padding: 14px 10px;
  }
  .header-navi .header-navi-list .header-navi-item a:hover, .header-navi .header-navi-list .header-navi-item a:active {
    color: #32aa89;
    text-decoration: none;
  }
  .header-navi .header-navi-list .header-navi-item a.current {
    font-weight: 500;
    background-color: #b6d3ca;
  }
  .header-navi .header-navi-list .header-navi-item a::after {
    display: none;
  }
  .header-navi .header-navi-list .header-navi-item::after {
    display: block;
    content: "";
    height: 1px;
    background-color: #e5e5e5;
  }
  .header-navi .header-navi-list .header-navi-item:last-of-type::after {
    display: none;
  }
  .header-navi .header-navi-list .header-navi-item.is-contact {
    background-color: #cfba6e;
    border: none;
    margin: 0;
    padding: 5px 10px;
  }
  .header-navi .header-navi-list .header-navi-item.is-contact a {
    color: #fff;
    padding: 14px 0;
  }
  .header-navi .header-navi-list .header-navi-item.is-contact a:hover, .header-navi .header-navi-list .header-navi-item.is-contact a:active {
    opacity: 0.8;
  }
}

.lp2 .header-navi .header-navi-list .header-navi-item.is-contact {
  background-color: #5696c6;
}

.lp2 .header-navi .header-navi-list .header-navi-item:not(.is-contact) > a::after {
  background: #0365bc;
}

.lp2 .header-navi .header-navi-list .header-navi-item:not(.is-contact) > a:hover {
  color: #0365bc;
}

.lp2 .hero-box {
  background: url("../images/hero_bg2.jpg") no-repeat bottom/cover;
}

@media screen and (max-width: 768px) {
  .lp2 .hero-box {
    background: url("../images/hero_bg2_sp.jpg") no-repeat bottom/cover;
  }
}

/* hero-box */
.hero-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 740px;
  margin-top: 110px;
  background: url("../images/hero_bg.jpg") no-repeat bottom/cover;
}

.hero-box .hero-desc {
  margin: 150px auto 0;
  width: 480px;
}

.hero-box.sub {
  display: block;
  height: 160px;
  background: url("../images/hero_bg_sub.jpg") no-repeat center/cover;
}

.is-line .hero-box .hero-desc {
  margin: 120px auto 0;
}

@media screen and (max-width: 768px) {
  .hero-box {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 400px;
    margin-top: 80px;
    background: url("../images/hero_bg_sp.jpg") no-repeat bottom/cover;
  }
  .hero-box .hero-desc {
    margin: 70px auto 0;
    width: 80%;
  }
  .hero-box.sub {
    height: 60px;
  }
  .is-line .hero-box .hero-desc {
    margin: 0 auto;
  }
}

/* content */
.line {
  margin-top: -100px;
}

.line-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.line-box .line_img {
  margin: 50px 0 20px;
  width: 120px;
  -webkit-animation: scale 1.5s ease 0s infinite alternate;
          animation: scale 1.5s ease 0s infinite alternate;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.line-box .line_img.line_img:hover {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
  opacity: 0.8;
}

@-webkit-keyframes scale {
  from {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  to {
    -webkit-transform: scale(1.1, 1.1);
            transform: scale(1.1, 1.1);
  }
}

@keyframes scale {
  from {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  to {
    -webkit-transform: scale(1.1, 1.1);
            transform: scale(1.1, 1.1);
  }
}

.line-box .line_text {
  font-family: ten-mincho, serif;
  font-size: 2rem;
  color: #d50000;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-align: center;
}

.line-box.top {
  height: 530px;
  background: url("../images/step.png") no-repeat center;
}

.line-box.bottom {
  height: 530px;
  background: url("../images/step_white.png") no-repeat center;
}

@media screen and (max-width: 768px) {
  .line {
    margin-top: -70px;
  }
  .line-box .line_img {
    margin: 20px 0 5px;
    width: 60px;
  }
  .line-box .line_text {
    font-size: 1.125rem;
    line-height: 1.2;
  }
  .line-box.top {
    height: 240px;
    background-size: contain;
  }
  .line-box.bottom {
    height: 240px;
    background-size: contain;
  }
}

.merit {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 150px 0 200px;
  background: url("../images/photo_woman.jpg") no-repeat center/contain;
  z-index: -1;
}

.merit .merit-box {
  margin: 330px auto -180px;
  width: 1100px;
}

.merit .merit-box .merit_desc {
  font-size: 1.5rem;
  font-weight: 700;
  color: #a9263e;
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

.merit .merit-box .merit_desc span {
  font-weight: 700;
}

.merit .merit-box .merit_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  margin: 60px 0 40px;
}

.merit .merit-box .merit_list .merit_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
  width: 300px;
  height: 300px;
  background: -webkit-gradient(linear, left top, right top, from(#cf263e), to(#a9263e));
  background: linear-gradient(to right, #cf263e, #a9263e);
  border-radius: 50%;
}

.merit .merit-box .merit_list .merit_item .merit_text {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.4;
}

.merit .merit-box .merit_list .merit_item .merit_text span {
  font-weight: 900;
  color: #ffff00;
}

.merit .merit-box .merit_list .merit_item .merit_text.single {
  line-height: 1.8;
}

.merit .merit-box .merit_list .merit_item .merit_text + .merit_text {
  margin-top: 15px;
}

.merit .merit-box .merit_list .merit_item .merit_text.small {
  font-size: 1.4375rem;
}

@media screen and (max-width: 768px) {
  .merit {
    margin: 0 0 90px;
    background: url("../images/photo_woman.jpg") no-repeat center/cover;
  }
  .merit .merit-box {
    margin: 140px auto -110px;
    width: 100%;
  }
  .merit .merit-box .merit_desc {
    font-size: 1rem;
  }
  .merit .merit-box .merit_list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 30px 0 40px;
  }
  .merit .merit-box .merit_list .merit_item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 160px;
    height: 160px;
  }
  .merit .merit-box .merit_list .merit_item .merit_text {
    font-size: 1.25rem;
    line-height: 1.4;
  }
  .merit .merit-box .merit_list .merit_item .merit_text.single {
    line-height: 1.6;
  }
  .merit .merit-box .merit_list .merit_item .merit_text + .merit_text {
    margin-top: 5px;
  }
  .merit .merit-box .merit_list .merit_item .merit_text.small {
    font-size: 0.75rem;
  }
}

.lp2 .merit .merit-box .merit_desc {
  color: #00125e;
}

.is-line .merit {
  margin: -120px 0 200px;
}

@media screen and (max-width: 768px) {
  .is-line .merit {
    margin: -80px 0 90px;
  }
}

.graphs .graphs-box {
  padding: 30px 0 60px;
}

.graphs .graphs-box.graph1 {
  background: url("../images/arrow_deepgray.svg") no-repeat bottom/cover;
}

.graphs .graphs-box.graph2 {
  background: url("../images/photo_city.jpg") no-repeat center/cover;
}

.graphs .graphs-box .graph1_h3 {
  color: #666;
}

.graphs .graphs-box .graph1_h3 span {
  font-weight: 700;
  color: #333;
}

.graphs .graphs-box .graph2_h3 {
  width: 780px;
  margin: 20px auto;
}

.graphs .graphs-box .graph1-inner {
  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;
  margin: 50px 0 40px;
}

.graphs .graphs-box .graph1-inner .graph1_jobs .graph1_ttl {
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 10px;
}

.graphs .graphs-box .graph1-inner .graph1_jobs .graph1_img {
  width: 410px;
}

.graphs .graphs-box .graph1-inner .graph1_jobs cite {
  display: block;
  font-size: 0.875rem;
  text-align: right;
  margin: 10px 0 0;
}

.graphs .graphs-box .graph1-inner .graph1_arrow {
  width: 55px;
  height: 50px;
  margin: 40px;
  background: url("../images/arrow_orange.svg") no-repeat;
}

.graphs .graphs-box .graph1-inner .graph1_10times {
  width: 400px;
}

.graphs .graphs-box .graph1_difficult {
  font-family: ten-mincho, serif;
  font-size: 2.625rem;
  color: #fff;
  text-align: center;
  line-height: 1.4;
  text-shadow: 0 0 10px #3a3c4c;
}

.graphs .graphs-box .graph2-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1100px;
  margin: 0 auto;
}

.graphs .graphs-box .graph2-inner .graph2_jobs {
  width: 500px;
}

.graphs .graphs-box .graph2-inner .graph2_jobs .graph2_ttl {
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 10px;
}

.graphs .graphs-box .graph2-inner .graph2_jobs cite {
  display: block;
  font-size: 0.875rem;
  text-align: right;
  margin: 10px 0 0;
}

.graphs .graphs-box .graph2-inner .graph2_growth {
  margin: -90px 0 0 -120px;
}

.graphs .graphs-box .graph2-inner .graph2_growth img {
  width: 550px;
}

@media screen and (max-width: 768px) {
  .graphs .graphs-box {
    padding: 20px 0 40px;
  }
  .graphs .graphs-box.graph1 {
    background: url("../images/arrow_deepgray_sp.svg") no-repeat bottom/cover;
  }
  .graphs .graphs-box.graph2 {
    background: url("../images/photo_city_sp.jpg") no-repeat top/cover;
  }
  .graphs .graphs-box .graph1_h3 {
    font-size: 1.375rem;
  }
  .graphs .graphs-box .graph2_h3 {
    width: 90%;
  }
  .graphs .graphs-box .graph1-inner {
    display: block;
    margin: 20px 10px;
  }
  .graphs .graphs-box .graph1-inner .graph1_jobs .graph1_ttl {
    font-size: 0.75rem;
  }
  .graphs .graphs-box .graph1-inner .graph1_jobs .graph1_img {
    width: 100%;
  }
  .graphs .graphs-box .graph1-inner .graph1_jobs cite {
    font-size: 0.625rem;
  }
  .graphs .graphs-box .graph1-inner .graph1_arrow {
    display: block;
    margin: 20px auto;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .graphs .graphs-box .graph1-inner .graph1_10times {
    width: 90%;
    margin: 0 auto;
  }
  .graphs .graphs-box .graph1_difficult {
    font-size: 1.5rem;
  }
  .graphs .graphs-box .graph2-inner {
    width: 100%;
  }
  .graphs .graphs-box .graph2-inner .graph2_jobs {
    margin: 0 10px;
  }
  .graphs .graphs-box .graph2-inner .graph2_jobs .graph2_ttl {
    font-size: 0.75rem;
  }
  .graphs .graphs-box .graph2-inner .graph2_jobs cite {
    font-size: 0.625rem;
    text-align: left;
    line-height: 1.2;
  }
  .graphs .graphs-box .graph2-inner .graph2_growth {
    margin: 40px 10px 0 -210px;
  }
  .graphs .graphs-box .graph2-inner .graph2_growth img {
    width: 550px;
  }
}

.it .it-box {
  margin: 80px auto;
  padding: 50px 55px;
  width: 960px;
  border-radius: 10px;
  background: -webkit-gradient(linear, left top, right top, from(#72ad99), to(#71adb1));
  background: linear-gradient(to right, #72ad99, #71adb1);
}

.it .it-box h3 {
  color: #ffff00;
}

.it .it-box .it-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.it .it-box .it-list .it-item {
  width: 400px;
  margin-bottom: 50px;
}

.it .it-box .it-list .it-item:nth-last-child(-n + 2) {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .it .it-box {
    margin: 40px auto;
    padding: 10px 15px 20px;
    width: 95%;
  }
  .it .it-box .it-list .it-item {
    width: 48%;
    margin-bottom: 10px;
  }
  .it .it-box .it-list .it-item:nth-last-child(-n + 2) {
    margin-bottom: 0;
  }
}

.contribution .contribution-box {
  margin: 80px auto;
}

.contribution .contribution-box h3 {
  color: #a9263e;
}

.contribution .contribution-box p {
  font-size: 1rem;
  text-align: center;
  margin: 0 0 30px;
}

.contribution .contribution-box .contribution_img {
  width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .contribution .contribution-box {
    margin: 40px auto;
  }
  .contribution .contribution-box p {
    font-size: 0.875rem;
    text-align: left;
    margin: 0 10px 20px;
  }
  .contribution .contribution-box .contribution_img {
    width: 100%;
  }
}

.lp2 .contribution .contribution-box h3 {
  color: #00125e;
}

.online .online-box {
  margin: 80px auto;
}

.online .online-box h3 {
  color: #a9263e;
}

.online .online-box p {
  font-size: 1rem;
  text-align: center;
  margin: 0 0 30px;
}

.online .online-box .online_img {
  width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .online .online-box {
    margin: 40px auto;
  }
  .online .online-box p {
    font-size: 0.875rem;
    text-align: left;
    margin: 0 10px 20px;
  }
  .online .online-box .online_img {
    width: 100%;
  }
}

.lp2 .online h3 {
  color: #00125e;
}

.flow .flow-box {
  margin: 80px auto;
}

.flow .flow-box h3 {
  color: #a9263e;
  margin: 20px auto;
}

.flow .flow-box .l-title-sub {
  color: #a9263e;
}

.flow .flow-box .flow-list {
  width: 960px;
  margin: 0 auto;
}

.flow .flow-box .flow-list .flow-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 40px 0;
  padding: 10px;
  background: -webkit-gradient(linear, left top, right top, from(#fafdfd), to(#edf4f7));
  background: linear-gradient(to right, #fafdfd, #edf4f7);
}

.flow .flow-box .flow-list .flow-item .flow-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flow .flow-box .flow-list .flow-item .flow-flex .flow_step {
  font-family: "Noto Serif JP", serif;
  font-size: 2.375rem;
  font-weight: 900;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-preferred-size: 80px;
      flex-basis: 80px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.flow .flow-box .flow-list .flow-item .flow-flex .flow_step span {
  font-size: 0.875rem;
}

.flow .flow-box .flow-list .flow-item .flow-flex .flow_step.step1 {
  background-color: #72a5ce;
}

.flow .flow-box .flow-list .flow-item .flow-flex .flow_step.step2 {
  background-color: #6693bf;
}

.flow .flow-box .flow-list .flow-item .flow-flex .flow_step.step3 {
  background-color: #587ba5;
}

.flow .flow-box .flow-list .flow-item .flow-flex .flow_step.step4 {
  background-color: #436391;
}

.flow .flow-box .flow-list .flow-item .flow-flex .flow_step.step5 {
  background-color: #314e7a;
}

.flow .flow-box .flow-list .flow-item .flow-flex .flow_step.step6 {
  background-color: #203b68;
}

.flow .flow-box .flow-list .flow-item .flow-flex .flow_img {
  width: 130px;
  -ms-flex-preferred-size: 130px;
      flex-basis: 130px;
  margin: 0 20px;
}

.flow .flow-box .flow-list .flow-item .flow_desc {
  -ms-flex-preferred-size: 620px;
      flex-basis: 620px;
}

.flow .flow-box .flow-list .flow-item .flow_desc h4 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.flow .flow-box .flow-list .flow-item .flow_desc span {
  display: block;
  border-bottom: 1px solid #e2eded;
}

.flow .flow-box .flow-list .flow-item .flow_desc p {
  font-size: 1rem;
  margin-top: 12px;
}

.flow .flow-box .flow-list .flow-item::after {
  display: block;
  content: "";
  width: 46px;
  height: 20px;
  position: relative;
  bottom: 0;
  left: -45%;
  right: 0;
  margin: auto;
  top: 80px;
}

.flow .flow-box .flow-list .flow-item:not(:last-child)::after {
  background: url("../images/arrow_gray.svg") no-repeat center;
}

@media screen and (max-width: 768px) {
  .flow .flow-box {
    margin: 40px auto;
  }
  .flow .flow-box h3 {
    margin: 0 auto;
  }
  .flow .flow-box .flow-list {
    width: 100%;
    margin: 30px auto 0;
    padding: 0 10px;
  }
  .flow .flow-box .flow-list .flow-item {
    display: block;
    margin: 0 0 40px;
    padding: 20px 20px 5px;
  }
  .flow .flow-box .flow-list .flow-item .flow-flex {
    display: block;
    position: relative;
  }
  .flow .flow-box .flow-list .flow-item .flow-flex .flow_step {
    position: absolute;
    top: -40px;
    left: 0;
    width: 80px;
    height: 80px;
    font-size: 2.625rem;
  }
  .flow .flow-box .flow-list .flow-item .flow-flex .flow_step span {
    font-size: 0.75rem;
  }
  .flow .flow-box .flow-list .flow-item .flow-flex .flow_img {
    width: 200px;
    margin: 0 auto;
  }
  .flow .flow-box .flow-list .flow-item .flow_desc {
    margin: 10px 0 0;
  }
  .flow .flow-box .flow-list .flow-item .flow_desc h4 {
    font-size: 1rem;
  }
  .flow .flow-box .flow-list .flow-item .flow_desc p {
    font-size: 0.875rem;
  }
  .flow .flow-box .flow-list .flow-item::after {
    width: 38px;
    height: 16px;
    left: 0;
    top: 40px;
  }
}

.lp2 .flow .flow-box {
  margin: 80px auto;
}

.lp2 .flow .flow-box h3 {
  color: #00125e;
  margin: 20px auto;
}

.lp2 .flow .flow-box .l-title-sub {
  color: #00125e;
}

.voice .voice-box h3 {
  color: #a9263e;
  margin: 20px auto;
}

.voice .voice-box .voice-list {
  width: 960px;
  margin: 50px auto;
}

.voice .voice-box .voice-list .voice-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 50px 30px;
}

.voice .voice-box .voice-list .voice-item .voice_img {
  width: 180px;
  text-align: center;
}

.voice .voice-box .voice-list .voice-item .voice_img img {
  width: 75%;
}

.voice .voice-box .voice-list .voice-item .voice_img .voice_data {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  margin: 10px 0 0;
}

.voice .voice-box .voice-list .voice-item .voice_desc {
  width: 700px;
}

.voice .voice-box .voice-list .voice-item .voice_desc .voice_title {
  font-size: 1.25rem;
  font-weight: 700;
}

.voice .voice-box .voice-list .voice-item .voice_desc p {
  font-size: 1rem;
  margin: 25px 0 0;
}

.voice .voice-box .voice-list .voice-item:nth-of-type(even) {
  background-color: #fbfbfb;
}

@media screen and (max-width: 768px) {
  .voice .voice-box h3 {
    margin: 0 auto;
  }
  .voice .voice-box .voice-list {
    width: 100%;
    margin: 20px auto;
  }
  .voice .voice-box .voice-list .voice-item {
    display: block;
    margin: 0 0 10px;
    padding: 30px 20px;
  }
  .voice .voice-box .voice-list .voice-item .voice_img {
    width: 180px;
    margin: 0 auto 20px;
  }
  .voice .voice-box .voice-list .voice-item .voice_img img {
    width: 75%;
  }
  .voice .voice-box .voice-list .voice-item .voice_img .voice_data {
    font-size: 0.75rem;
  }
  .voice .voice-box .voice-list .voice-item .voice_desc {
    width: 100%;
  }
  .voice .voice-box .voice-list .voice-item .voice_desc .voice_title {
    font-size: 1rem;
    line-height: 1.6;
  }
  .voice .voice-box .voice-list .voice-item .voice_desc p {
    font-size: 0.875rem;
    margin: 20px 0 0;
  }
}

.lp2 .voice .voice-box h3 {
  color: #00125e;
}

.faq {
  background-color: #fffde6;
  -webkit-box-shadow: 0 3px 20px rgba(213, 209, 171, 0.5);
          box-shadow: 0 3px 20px rgba(213, 209, 171, 0.5);
}

.faq .faq-box {
  padding: 20px 0;
}

.faq .faq-box h3 {
  color: #a9263e;
  margin: 20px auto 80px;
}

.faq .faq-box .faq-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.faq .faq-box .faq-list .faq-item {
  position: relative;
  width: 30%;
  margin: 0 0 80px;
  border-radius: 5px;
  border: solid 2px #71adbb;
  background-color: #fff;
}

.faq .faq-box .faq-list .faq-item .faq_num {
  font-family: "Noto Serif JP", serif;
  font-size: 2.125rem;
  font-weight: 700;
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  margin: auto;
  padding: 0 2px 3px 0;
  width: 80px;
  height: 80px;
  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;
  background-color: #fff;
  color: #71adbb;
  border-radius: 50%;
  border: solid 3px #71adbb;
  z-index: 1;
}

.faq .faq-box .faq-list .faq-item .faq_ttl {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100px;
  padding: 20px 20px 0;
  background-color: #71adbb;
}

.faq .faq-box .faq-list .faq-item .faq_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
  min-height: 110px;
}

.faq .faq-box .faq-list .faq-item .faq_text p {
  font-size: 1rem;
  line-height: 1.4;
}

.faq .faq-box .faq-list .faq-item .faq_text span {
  color: #d50000;
}

@media screen and (max-width: 768px) {
  .faq .faq-box {
    padding: 10px 0;
  }
  .faq .faq-box h3 {
    margin: 10px auto 40px;
  }
  .faq .faq-box .faq-list .faq-item {
    width: 90%;
    margin: 0 auto 40px;
  }
  .faq .faq-box .faq-list .faq-item .faq_num {
    font-size: 1.5rem;
    top: -30px;
    width: 60px;
    height: 60px;
    border: solid 2px #71adbb;
  }
  .faq .faq-box .faq-list .faq-item .faq_ttl {
    font-size: 1rem;
    min-height: 80px;
    padding: 10px 10px 0;
  }
  .faq .faq-box .faq-list .faq-item .faq_text {
    padding: 10px;
    min-height: 80px;
  }
  .faq .faq-box .faq-list .faq-item .faq_text p {
    font-size: 0.875rem;
  }
}

.lp2 .faq .faq-box h3 {
  color: #00125e;
}

.industry .industry-box {
  margin: 80px auto;
}

.industry .industry-box h3 {
  color: #a9263e;
  margin: 40px auto;
}

.industry .industry-box .l-title-sub {
  color: #a9263e;
}

.industry .industry-box p {
  font-size: 1rem;
  text-align: center;
  margin: 0 0 30px;
}

.industry .industry-box p span {
  color: #d50000;
}

.industry .industry-box .industry-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.industry .industry-box .industry-list .industry-item {
  width: 22%;
  margin: 0 0 30px;
}

@media screen and (max-width: 768px) {
  .industry .industry-box {
    margin: 40px auto;
  }
  .industry .industry-box h3 {
    margin: 20px auto;
  }
  .industry .industry-box p {
    font-size: 0.875rem;
    text-align: left;
    margin: 0 10px 20px;
  }
  .industry .industry-box .industry-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .industry .industry-box .industry-list .industry-item {
    width: 30%;
    margin: 5px;
  }
}

.lp2 .industry h3 {
  color: #00125e;
}

.lp2 .industry .l-title-sub {
  color: #00125e;
}

.contact {
  background: #fffde6 url("../images/arrow_yellow.svg") no-repeat;
  background-position-y: -70px;
}

.contact .contact-box h3 {
  color: #a9263e;
  margin: 20px auto;
}

.contact .contact-box .l-title-sub {
  color: #a9263e;
}

.contact .contact-box .worry-box {
  width: 680px;
  background-color: #666;
  text-align: center;
  margin: 10px auto;
  padding: 20px 0;
  border-radius: 10px;
}

.contact .contact-box .worry-box .worry-text {
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
  line-height: 2;
}

.contact .contact-box .support-text {
  font-size: 2.875rem;
  font-weight: 900;
  color: #a9263e;
  line-height: 1.4;
  text-align: center;
  margin: 20px 0;
}

.contact .contact-box .support-text span {
  font-weight: 900;
}

.is-line .contact {
  background-position-y: 0;
}

@media screen and (max-width: 768px) {
  .contact {
    background: url("../images/arrow_yellow.svg") no-repeat, -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(5%, #fff), color-stop(5%, #fffde6), to(#fffde6)) no-repeat;
    background: url("../images/arrow_yellow.svg") no-repeat, linear-gradient(180deg, #fff 0%, #fff 5%, #fffde6 5%, #fffde6 100%) no-repeat;
    background-position-y: 200px;
  }
  .contact .contact-box h3 {
    margin: 20px auto;
  }
  .contact .contact-box .worry-box {
    width: 90%;
    padding: 10px 0;
  }
  .contact .contact-box .worry-box .worry-text {
    font-size: 0.875rem;
  }
  .contact .contact-box .support-text {
    font-size: 1.625rem;
    margin: 10px 0;
  }
  .is-line .contact {
    background-position-y: 220px;
  }
}

.lp2 .contact .contact-box h3 {
  color: #00125e;
  margin: 20px auto;
}

.lp2 .contact .contact-box .l-title-sub {
  color: #00125e;
}

.complete {
  padding: 50px;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fffde6));
  background: linear-gradient(180deg, #fff 0%, #fffde6 100%);
}

.complete .complete-ttl {
  font-size: 1.75rem;
  font-weight: 700;
  color: #a9263e;
  text-align: center;
  margin: 80px 0;
}

.complete .complete-text {
  font-size: 1rem;
  margin: 20px auto;
  width: 800px;
}

.complete .complete-text.right {
  text-align: right;
}

@media screen and (max-width: 768px) {
  .complete {
    padding: 20px;
  }
  .complete .complete-ttl {
    font-size: 1.5rem;
    margin: 50px 0;
  }
  .complete .complete-text {
    font-size: 0.875rem;
    width: 100%;
  }
}

/* footer */
.pagetop {
  width: 80px;
  height: 80px;
  position: fixed;
  right: 50px;
  bottom: -80px;
  opacity: 0.6;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 1;
}

.pagetop a {
  position: relative;
  display: block;
  width: 82px;
  height: 82px;
}

.pagetop:hover {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .pagetop {
    right: 20px;
  }
}

.footer-logo {
  width: 160px;
  padding: 0 10px;
}

.footer-logo a img {
  width: 160px;
}

@media screen and (max-width: 768px) {
  .footer-logo {
    width: 100%;
    margin: 15px 0;
  }
}

.logo_svg {
  width: 160px;
  padding: 0 10px;
}

@media screen and (max-width: 768px) {
  .logo_svg {
    width: 160px;
    margin: 15px 0;
  }
}

.lp2 .footer-logo .logo_svg {
  width: 160px;
  padding: 0 10px;
}

.lp2 .footer-logo .logo_svg .cls-1 {
  fill: #0365bc;
}

.lp2 .footer-logo .logo_svg .cls-2 {
  fill: #ff796a;
}

@media screen and (max-width: 768px) {
  .lp2 .logo_svg {
    width: 160px;
    margin: 15px 0;
  }
}

.footer-navi {
  width: 360px;
  font-size: 1rem;
}

.footer-navi .footer-navi-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.footer-navi .footer-navi-list .footer-navi-item a {
  padding: 10px;
}

@media screen and (max-width: 768px) {
  .footer-navi {
    font-size: 0.875rem;
    width: 100%;
  }
  .footer-navi .footer-navi-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/* contact */
.form-box {
  border-radius: 10px;
  background: -webkit-gradient(linear, left top, right top, from(#72ad99), to(#71adb1));
  background: linear-gradient(to right, #72ad99, #71adb1);
  margin: 90px 0 0;
  padding: 50px;
}

.form-box .formbox_ttl {
  color: #fff;
  font-weight: 700;
  text-align: center;
  margin: 10px 0;
}

.form-box .formbox_text {
  font-size: 1rem;
  color: #fff;
  text-align: center;
}

.form-box .contact_form {
  margin-top: 20px;
  padding: 80px;
  background-color: #fff;
}

.is-line .form-box {
  margin: 30px 0 0;
}

@media screen and (max-width: 768px) {
  .form-box {
    margin: 50px 10px 10px 10px;
    padding: 10px;
  }
  .form-box .formbox_text {
    font-size: 0.875rem;
  }
  .form-box .contact_form {
    padding: 20px 10px;
    text-align: left;
  }
  .is-line .form-box {
    margin: 10px;
  }
}

.contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 50px;
}

.contact-item .contact_heading {
  font-size: 1rem;
  font-weight: 500;
  -ms-flex-preferred-size: 240px;
      flex-basis: 240px;
  padding: 15px 0 0 0;
}

.contact-item .contact_heading span {
  font-size: 0.875rem;
  color: #ff0000;
  margin-left: 5px;
}

.contact-item .contact_detail {
  font-size: 1rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.contact-item .contact_detail .contact-input {
  font-size: 1.25rem;
  color: #333;
  width: 100%;
  padding: 12px 20px;
  letter-spacing: 0.07em;
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-item .contact_detail .contact-input.contact-textarea {
  margin-top: 15px;
}

.contact-item .contact_detail .contact-input::-webkit-input-placeholder {
  font-size: 1rem;
  color: #666;
}

.contact-item .contact_detail .contact-input:-ms-input-placeholder {
  font-size: 1rem;
  color: #666;
}

.contact-item .contact_detail .contact-input::-ms-input-placeholder {
  font-size: 1rem;
  color: #666;
}

.contact-item .contact_detail .contact-input::placeholder {
  font-size: 1rem;
  color: #666;
}

.contact-item .contact_detail .contact-checkbox {
  margin: 0 0 20px;
  line-height: 1.5;
}

.contact-item .contact_detail .contact-checkbox input[type="checkbox"] {
  display: none;
}

.contact-item .contact_detail .contact-checkbox input[type="checkbox"] + label {
  padding-left: 26px;
  position: relative;
  margin-right: 20px;
  cursor: pointer;
}

.contact-item .contact_detail .contact-checkbox input[type="checkbox"] + label::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #ccc;
  border-radius: 2px;
}

.contact-item .contact_detail .contact-checkbox input[type="checkbox"]:checked + label {
  color: #00125e;
}

.contact-item .contact_detail .contact-checkbox input[type="checkbox"]:checked + label::before {
  background-color: #00125e;
  border: 1px solid #00125e;
}

.contact-item .contact_detail .contact-checkbox input[type="checkbox"]:checked + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 6px;
  width: 8px;
  height: 14px;
  -webkit-transform: rotate(40deg);
      -ms-transform: rotate(40deg);
          transform: rotate(40deg);
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}

.contact-item .contact_detail .contact-button {
  text-align: center;
  margin: 20px auto 40px;
}

.contact-item .contact_detail .contact_text {
  font-size: 0.875rem;
  color: #999;
  margin: 3px 0 0;
}

.contact-item .contact_detail .contact_text a {
  color: #00125e;
  text-decoration: underline;
}

.contact-item .contact_detail .contact_text a .contact-icon {
  font-size: 1.125rem;
  line-height: 1.2;
}

.contact-item .contact_detail .contact_error {
  display: none;
  font-size: 0.875rem;
  color: #ff0000;
  margin: 3px 0 0;
}

.contact-item.no-flex {
  display: block;
}

.contact-item:last-of-type {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .contact-item {
    display: block;
    margin-bottom: 10px;
  }
  .contact-item .contact_heading {
    margin-bottom: 15px;
  }
  .contact-item .contact_heading span {
    font-size: 0.875rem;
  }
  .contact-item .contact_detail {
    font-size: 0.875rem;
  }
  .contact-item .contact_detail .contact_text {
    font-size: 0.75rem;
    margin: 10px;
    padding: 0;
  }
  .contact-item .contact_detail .contact-input {
    font-size: 1.125rem;
    padding: 12px;
    letter-spacing: 0;
  }
  .contact-item .contact_detail .contact-input.contact-textarea {
    margin-top: 0;
  }
  .contact-item .contact_detail .contact-input::-webkit-input-placeholder {
    font-size: 0.875rem;
  }
  .contact-item .contact_detail .contact-input:-ms-input-placeholder {
    font-size: 0.875rem;
  }
  .contact-item .contact_detail .contact-input::-ms-input-placeholder {
    font-size: 0.875rem;
  }
  .contact-item .contact_detail .contact-input::placeholder {
    font-size: 0.875rem;
  }
  .contact-item .contact_detail .contact-checkbox {
    margin: 0 0 20px;
    line-height: 1.5;
  }
  .contact-item .contact_detail .contact-checkbox input[type="checkbox"] + label::before {
    top: -1px;
  }
  .contact-item .contact_detail .contact-checkbox input[type="checkbox"]:checked + label::after {
    top: -1px;
  }
}

.stop-block {
  background-color: #fffde6;
}
.stop{
  text-align: center;
  margin-top: 20px;
  padding-top: 40px;
  padding-bottom:40px;
}
@media screen and (max-width: 768px) {
  .stop{
    text-align: center;
    margin:20px 10px;
    padding-top: 40px;
    padding-bottom:40px;
  }
}
.stop_title{
  font-size: 24px;
  color: #ec6218;
  font-weight: bold;
  margin-bottom: 40px;
}
.stop_text{
  font-size: 1rem;
}
.stop_text span{
  font-weight: bold;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .stop_text span{
    font-size: 18px;
  }
}
