@charset "UTF-8";
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,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

nav ul {
  list-style: none;
}

ul li {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

/* change colors to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colors to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border color to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

.js-slideUp {
  opacity: 0;
}

.scrollin {
  -webkit-animation: fadeUpAnime 0.5s forwards;
  animation: fadeUpAnime 0.5s forwards;
  -webkit-animation-name: scrollin;
  animation-name: scrollin;
}

@-webkit-keyframes scrollin {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes scrollin {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
/*js-slideLeft 左から出てくる */
.js-slideLeft {
  opacity: 0;
}

.fadeLeft {
  -webkit-animation-name: fadeLeftAnime;
  animation-name: fadeLeftAnime;
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
/*js-slideRight 右から出てくる */
.js-slideRight {
  opacity: 0;
}

.fadeRight {
  -webkit-animation-name: fadeRightAnime;
  animation-name: fadeRightAnime;
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeRightAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.button {
  display: inline-block;
  position: relative;
  width: 150px;
  padding: 0 2%;
}
.button:hover {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .button {
    width: 125px;
    padding: 0;
  }
}
@media screen and (max-width: 480px) {
  .button {
    width: 90px;
  }
}
.button::before {
  content: "";
  position: absolute;
  display: block;
  width: 15px;
  height: 15px;
  top: 9px;
  right: 0;
  border-top: solid 3px #333;
  border-right: solid 3px #333;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 480px) {
  .button::before {
    top: 4px;
    width: 12px;
    height: 12px;
    border-top: solid 2px #333;
    border-right: solid 2px #333;
  }
}
.button::after {
  content: "";
  position: absolute;
  display: block;
  width: 28px;
  height: 3px;
  background-color: #333;
  top: 17px;
  right: 0;
}
@media screen and (max-width: 480px) {
  .button::after {
    top: 10px;
    width: 20px;
    height: 2px;
  }
}
.button a {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 2;
  font-size: 1.2rem;
}

.header {
  position: fixed;
  top: 0;
  height: 7vh;
  z-index: 2;
  width: 100%;
  background: #fff;
}
@media screen and (max-width: 1024px) {
  .header {
    position: absolute;
    height: auto;
  }
}
.header_inner {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .header_inner {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  .header_inner {
    width: 100%;
  }
}
.header_left {
  width: 25%;
  margin-left: 5%;
}
@media screen and (max-width: 1024px) {
  .header_left {
    width: 100%;
  }
}
.header_left a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: unset;
  -ms-flex-pack: unset;
  justify-content: unset;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header_left a:hover {
  opacity: 0.6;
}
.header_left a h1 {
  font-size: 1.3rem;
}
.header_left a img {
  width: 80px;
}
@media screen and (max-width: 480px) {
  .header_left a img {
    width: 60px;
  }
}
.header_right {
  width: 60%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: unset;
  -ms-flex-pack: unset;
  justify-content: unset;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .header_right {
    width: 100%;
  }
}
.header_hamburger {
  display: none;
  position: fixed;
  z-index: 5;
  right: 13px;
  top: 12px;
  width: 42px;
  height: 42px;
  background-color: #0F77BB;
  cursor: pointer;
  text-align: center;
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
}
@media screen and (max-width: 1024px) {
  .header_hamburger {
    display: block;
  }
}
.header_hamburger.active {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.header_hamburger.active span:nth-child(1) {
  top: 19px;
  left: 6px;
  background: #fff;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.header_hamburger.active span:nth-child(2) {
  top: 19px;
  background: #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.header_hamburger.active span:nth-child(3) {
  opacity: 0;
}
.header_hamburger span {
  display: none;
  position: absolute;
  width: 27px;
  height: 2px;
  left: 6px;
  background: #fff;
}
@media screen and (max-width: 1024px) {
  .header_hamburger span {
    display: block;
  }
}
.header_hamburger span:nth-child(1) {
  top: 10px;
}
.header_hamburger span:nth-child(2) {
  top: 20px;
}
.header_hamburger span:nth-child(3) {
  top: 30px;
}
.header_nav {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .header_nav {
    display: none;
  }
}
.header_navSp {
  position: fixed;
  z-index: 3;
  top: 0;
  left: -120%;
  color: #333;
  background: #fff;
  text-align: center;
  width: 100%;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.header_navSp.active {
  opacity: 1;
  visibility: visible;
  left: 0;
}
.header_navSpItem {
  width: 50%;
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin: 0 auto 5%;
}
@media screen and (max-width: 768px) {
  .header_navSpItem {
    font-size: 2rem;
  }
}
.header_navSpItem a {
  color: #0F77BB;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 3;
}
.header_navSpItems {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header_navItem {
  display: inline-block;
}
.header_navItem a {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 3;
}
.header_navItem a:hover {
  color: #0F77BB;
  font-weight: bold;
}
.header_navBox {
  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;
}
.header_tel {
  width: 45%;
  height: 100%;
  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: #084066;
}
@media screen and (max-width: 1024px) {
  .header_tel {
    width: 100%;
    background-color: unset;
    -webkit-box-pack: unset;
    -ms-flex-pack: unset;
    justify-content: unset;
    margin-left: 5%;
  }
}
@media screen and (max-width: 768px) {
  .header_tel {
    display: none;
  }
}
.header_tel img {
  width: 35px;
}
@media screen and (max-width: 1024px) {
  .header_tel img {
    width: 25px;
  }
}
.header_tel p {
  font-size: 1rem;
  color: white;
  margin-left: 5%;
}
@media screen and (max-width: 1024px) {
  .header_tel p {
    color: #333;
  }
}

.footer {
  background-color: #0F77BB;
  padding: 5%;
  margin-top: 100px;
}
.footer_inner {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .footer_inner {
    display: block;
  }
}
.footer_left {
  width: 36%;
}
@media screen and (max-width: 1024px) {
  .footer_left {
    width: 100%;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.footer_logo {
  width: 100%;
}
.footer_logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: unset;
  -ms-flex-pack: unset;
  justify-content: unset;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .footer_logo a {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.footer_logo a img {
  width: 30%;
}
.footer_logo a h1 {
  color: #fff;
  font-size: 1.5rem;
}
.footer_info {
  margin-left: 4%;
}
.footer_infoItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 3%;
}
.footer_item {
  margin-bottom: 3%;
}
.footer_itemTtl {
  color: #fff;
  line-height: 2;
}
.footer_itemEx {
  color: #fff;
  line-height: 2;
}
.footer_right {
  width: 55%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: unset;
  -ms-flex-pack: unset;
  justify-content: unset;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .footer_right {
    display: none;
  }
}
.footer_nav {
  width: 100%;
}
.footer_navItem {
  display: inline-block;
}
.footer_navItem a {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 3;
  color: #fff;
}
.footer_navItem a:hover {
  opacity: 0.6;
}
.footer_navBox {
  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;
}
.footer_copy {
  text-align: end;
}
@media screen and (max-width: 1024px) {
  .footer_copy {
    text-align: center;
  }
}
.footer_copy small {
  color: #fff;
  font-size: 0.8rem;
  margin-right: 10%;
}
@media screen and (max-width: 1024px) {
  .footer_copy small {
    margin: 0;
  }
}

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

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #333;
}

html {
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  html {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  html {
    font-size: 10px;
  }
}

.wrapper {
  opacity: 0;
  -webkit-animation: opa 0.8s ease-in-out forwards;
  animation: opa 0.8s ease-in-out forwards;
}

@-webkit-keyframes opa {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes opa {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.top {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  margin-bottom: 10%;
}
.top_inner {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: url(../img/topimg1.png);
  background-position: center;
  background-size: 60%;
  background-repeat: no-repeat;
  -webkit-animation: chainge-bg 2s 3.5s forwards ease;
  animation: chainge-bg 2s 3.5s forwards ease;
}
@media screen and (max-width: 1024px) {
  .top_inner {
    background-size: 80%;
  }
}
@media screen and (max-width: 768px) {
  .top_inner {
    background-size: contain;
  }
}
.top_inner::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  -webkit-animation: fv-move 2s forwards ease-in-out;
  animation: fv-move 2s forwards ease-in-out;
}
.top_copy {
  position: absolute;
  width: 100%;
  bottom: 5%;
  left: 50%;
  -webkit-transform: translate(-50%, -5%);
  -ms-transform: translate(-50%, -5%);
  transform: translate(-50%, -5%);
  text-align: center;
  -webkit-animation: copy-center 1s 4s forwards ease;
  animation: copy-center 1s 4s forwards ease;
}
@media screen and (max-width: 1024px) {
  .top_copy {
    bottom: 3%;
  }
}
.top_copy h2 {
  font-size: 2.5rem;
  font-family: "Yuji Syuku", serif;
  letter-spacing: 0.1em;
  font-weight: 400;
}
.top_copy p {
  font-size: 1.2rem;
  margin: 2% 0 1%;
}
.top_copy h3 {
  font-size: 2.5rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.1em;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
}
.top_copyBg {
  position: absolute;
  width: 100%;
  height: 60%;
  top: 50%;
  left: 55%;
  z-index: -1;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: url(../img/top-bg2b.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  -webkit-animation: copy-Bg 1s 4s forwards ease;
  animation: copy-Bg 1s 4s forwards ease;
}
@media screen and (max-width: 1024px) {
  .top_copyBg {
    width: 160%;
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .top_copyBg {
    width: 180%;
    height: 100%;
    top: 50%;
  }
}
@media screen and (max-width: 480px) {
  .top_copyBg {
    width: 250%;
    top: 50%;
  }
}

@-webkit-keyframes fv-move {
  from {
    -webkit-transform: 0;
    transform: 0;
  }
  to {
    -webkit-transform: translateX(100vw);
    transform: translateX(100vw);
  }
}
@keyframes fv-move {
  from {
    -webkit-transform: 0;
    transform: 0;
  }
  to {
    -webkit-transform: translateX(100vw);
    transform: translateX(100vw);
  }
}
.slide-in {
  overflow: hidden;
  display: inline-block;
}

.slide-in_inner {
  display: inline-block;
}

/*左右のアニメーション*/
.leftAnime {
  opacity: 0;
  /*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
  -webkit-animation-name: slideTextX100;
  animation-name: slideTextX100;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-delay: 1.8s;
  animation-delay: 1.8s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes slideTextX100 {
  from {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}
@keyframes slideTextX100 {
  from {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}
@-webkit-keyframes chainge-bg {
  0% {
    opacity: 1;
    background: url(../img/topimg1.png);
    background-position: center;
    background-size: 60%;
    background-repeat: no-repeat;
  }
  50% {
    opacity: 0;
    background: url(../img/topimg1.png);
    background-position: center;
    background-size: 60%;
    background-repeat: no-repeat;
  }
  50.1% {
    opacity: 0;
    background: url(../img/top-bg2a.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  100% {
    opacity: 1;
    background: url(../img/top-bg2a.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
@keyframes chainge-bg {
  0% {
    opacity: 1;
    background: url(../img/topimg1.png);
    background-position: center;
    background-size: 60%;
    background-repeat: no-repeat;
  }
  50% {
    opacity: 0;
    background: url(../img/topimg1.png);
    background-position: center;
    background-size: 60%;
    background-repeat: no-repeat;
  }
  50.1% {
    opacity: 0;
    background: url(../img/top-bg2a.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  100% {
    opacity: 1;
    background: url(../img/top-bg2a.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
@-webkit-keyframes copy-center {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
    bottom: 0;
    top: 60%;
    left: 50%;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
@keyframes copy-center {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
    bottom: 0;
    top: 60%;
    left: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
@-webkit-keyframes copy-Bg {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes copy-Bg {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  -webkit-animation-name: slideTextX-100;
  animation-name: slideTextX-100;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-delay: 1.8s;
  animation-delay: 1.8s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes slideTextX-100 {
  from {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}
@keyframes slideTextX-100 {
  from {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.new {
  position: relative;
  height: 150px;
  margin-bottom: 200px;
}
@media screen and (max-width: 1024px) {
  .new {
    margin-bottom: 150px;
  }
}
@media screen and (max-width: 480px) {
  .new {
    margin-bottom: 110px;
  }
}
.new_inner {
  width: 100%;
  height: 100%;
  background: gray;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.new_ttl {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
.new_ttl h2 {
  color: #fff;
  display: inline-block;
  font-size: 2.5rem;
  border-bottom: 2px solid #0F77BB;
  line-height: 1.3;
  padding: 0 2%;
}
.new_ttl p {
  color: #fff;
  font-size: 1.2rem;
  line-height: 2;
}
.new_box {
  position: absolute;
  text-align: center;
  left: 50%;
  top: 180px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #fff;
  width: 50%;
  padding: 2%;
  border: 1px solid black;
}
@media screen and (max-width: 1024px) {
  .new_box {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  .new_box {
    width: 75%;
  }
}
.new_box_txt {
  font-size: 1.2rem;
}
.new_box_txt a {
  color: red;
}

.about_inner {
  position: relative;
  width: 100%;
  height: 500px;
  background: url(../img/top-about.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 30%;
}
@media screen and (max-width: 1024px) {
  .about_inner {
    margin-bottom: 45%;
  }
}
@media screen and (max-width: 768px) {
  .about_inner {
    margin-bottom: 50%;
  }
}
@media screen and (max-width: 480px) {
  .about_inner {
    height: 300px;
    margin-bottom: 80%;
  }
}
.about_ttl {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
.about_ttl h2 {
  color: #fff;
  display: inline-block;
  font-size: 2.5rem;
  border-bottom: 2px solid #0F77BB;
  line-height: 1.3;
  padding: 0 2%;
}
.about_ttl p {
  color: #fff;
  font-size: 1.2rem;
  line-height: 2;
}
.about_box {
  position: absolute;
  bottom: -200px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #fff;
  width: 50%;
  padding: 5%;
  -webkit-box-shadow: #666 0px 5px 10px, #0F77BB -25px 25px, #666 -30px 30px 10px;
  box-shadow: #666 0px 5px 10px, #0F77BB -25px 25px, #666 -30px 30px 10px;
}
@media screen and (max-width: 1024px) {
  .about_box {
    bottom: -210px;
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  .about_box {
    bottom: -170px;
    width: 75%;
  }
}
.about_copy {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  -webkit-text-decoration: underline 1px solid #333;
  text-decoration: underline 1px solid #333;
  text-underline-offset: 0.2em;
  margin-bottom: 5%;
}
.about_copyEx {
  font-size: 1.2rem;
  text-align: justify;
  letter-spacing: 1.5px;
  margin-bottom: 5%;
  line-height: 1.5;
}
.about_button {
  left: 80%;
  -webkit-transform: translate(-80%, 0);
  -ms-transform: translate(-80%, 0);
  transform: translate(-80%, 0);
}

.service {
  margin-bottom: 10%;
}
@media screen and (max-width: 480px) {
  .service {
    margin-bottom: 15%;
  }
}
.service_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .service_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.service_box {
  position: absolute;
  z-index: 1;
  background-color: #fff;
  left: 10%;
  width: 40%;
  padding: 5% 3%;
  -webkit-box-shadow: #666 0px 5px 10px, #0F77BB -25px 25px, #666 -30px 30px 10px;
  box-shadow: #666 0px 5px 10px, #0F77BB -25px 25px, #666 -30px 30px 10px;
}
@media screen and (max-width: 1024px) {
  .service_box {
    width: 50%;
    padding: 5% 3%;
  }
}
@media screen and (max-width: 768px) {
  .service_box {
    position: unset;
    width: 75%;
    margin-top: 10%;
  }
}
.service_ttl {
  text-align: center;
  font-weight: bold;
  margin-bottom: 10%;
}
.service_ttlEn {
  display: inline-block;
  font-size: 2rem;
  color: #0F77BB;
  line-height: 1.3;
  border-bottom: solid 1px #0F77BB;
}
.service_ttlJa {
  font-size: 1.2rem;
  line-height: 2;
}
.service_ex {
  font-size: 1.2rem;
  text-align: justify;
  letter-spacing: 1.5px;
  margin-bottom: 5%;
  line-height: 1.5;
  margin-bottom: 10%;
}
@media screen and (max-width: 1024px) {
  .service_img {
    text-align: end;
  }
}
.service_img img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .service_img img {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .service_img img {
    width: 100%;
  }
}
.service_button {
  left: 80%;
  -webkit-transform: translate(-80%, 0);
  -ms-transform: translate(-80%, 0);
  transform: translate(-80%, 0);
}

.shop {
  margin-bottom: 10%;
}
@media screen and (max-width: 480px) {
  .shop {
    margin-bottom: 15%;
  }
}
.shop_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .shop_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.shop_box {
  position: absolute;
  background-color: #fff;
  left: 55%;
  width: 30%;
  padding: 5% 2%;
  text-align: center;
  -webkit-box-shadow: #666 0px 5px 10px, #0F77BB 25px 25px, #666 30px 30px 10px;
  box-shadow: #666 0px 5px 10px, #0F77BB 25px 25px, #666 30px 30px 10px;
}
@media screen and (max-width: 1024px) {
  .shop_box {
    width: 40%;
    left: 50%;
  }
}
@media screen and (max-width: 768px) {
  .shop_box {
    position: unset;
    width: 75%;
    margin-top: 10%;
  }
}
.shop_ttl {
  text-align: center;
  font-weight: bold;
  margin-bottom: 10%;
}
.shop_ttlEn {
  display: inline-block;
  font-size: 2rem;
  color: #0F77BB;
  line-height: 1.3;
  border-bottom: solid 1px #0F77BB;
}
.shop_ttlJa {
  font-size: 1.2rem;
  line-height: 2;
}
.shop_ex {
  display: inline-block;
  padding: 0 5%;
  background-color: #666;
}
.shop_ex p {
  font-size: 1rem;
  color: #fff;
  line-height: 5;
}
.shop_img img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .shop_img img {
    width: 75%;
  }
}
@media screen and (max-width: 768px) {
  .shop_img img {
    width: 100%;
  }
}
.shop_button {
  left: 80%;
  -webkit-transform: translate(-80%, 0);
  -ms-transform: translate(-80%, 0);
  transform: translate(-80%, 0);
}

.recruit {
  margin-bottom: 10%;
}
.recruit_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 1024px;
  background-color: #0F77BB;
  width: 65%;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  margin-left: 10%;
}
@media screen and (max-width: 1024px) {
  .recruit_inner {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  .recruit_inner {
    width: 80%;
  }
}
@media screen and (max-width: 480px) {
  .recruit_inner {
    width: 90%;
    margin: 0 auto;
  }
}
.recruit_left {
  width: 25%;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .recruit_left {
    width: 35%;
  }
}
.recruit_ttl {
  display: inline-block;
  text-align: center;
  font-weight: bold;
  margin-bottom: 25%;
}
.recruit_ttlEn {
  display: inline-block;
  font-size: 2rem;
  color: #fff;
  line-height: 1.3;
  border-bottom: solid 1px #fff;
}
.recruit_ttlJa {
  color: #fff;
  text-align: initial;
  font-size: 1.2rem;
  line-height: 3;
}
.recruit_right {
  width: 75%;
  height: 400px;
  background: url(../img/top-recruit.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  .recruit_right {
    width: 65%;
  }
}
@media screen and (max-width: 768px) {
  .recruit_right {
    height: 300px;
  }
}
@media screen and (max-width: 480px) {
  .recruit_right {
    height: 200px;
  }
}
.recruit_button {
  text-align: start;
  left: 30%;
  -webkit-transform: translate(-30%, 0);
  -ms-transform: translate(-30%, 0);
  transform: translate(-30%, 0);
}

.contact {
  margin-bottom: 10%;
}
.contact_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 1024px;
  background-color: #0F77BB;
  width: 65%;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  margin-left: auto;
  margin-right: 10%;
}
@media screen and (max-width: 1024px) {
  .contact_inner {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  .contact_inner {
    width: 80%;
  }
}
@media screen and (max-width: 480px) {
  .contact_inner {
    width: 90%;
    margin: 0 auto;
  }
}
.contact_left {
  width: 25%;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .contact_left {
    width: 35%;
  }
}
.contact_ttl {
  display: inline-block;
  text-align: center;
  font-weight: bold;
  margin-bottom: 25%;
}
.contact_ttlEn {
  display: inline-block;
  font-size: 2rem;
  color: #fff;
  line-height: 1.3;
  border-bottom: solid 1px #fff;
}
.contact_ttlJa {
  color: #fff;
  text-align: initial;
  font-size: 1.2rem;
  line-height: 3;
}
.contact_right {
  width: 75%;
  height: 400px;
  background: url(../img/top-contact.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  .contact_right {
    width: 65%;
  }
}
@media screen and (max-width: 768px) {
  .contact_right {
    height: 300px;
  }
}
@media screen and (max-width: 480px) {
  .contact_right {
    height: 200px;
  }
}
.contact_button {
  text-align: start;
  left: 30%;
  -webkit-transform: translateX(-30%);
  -ms-transform: translateX(-30%);
  transform: translateX(-30%);
}

.about_top {
  margin-top: 7vh;
  height: 93vh;
}
.about_topBg {
  background: url(../img/about-top4.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: 50%;
  height: 65vh;
}
@media screen and (max-width: 1024px) {
  .about_topBg {
    background-position-y: 60%;
  }
}
.about_topTtl {
  width: 100%;
  height: 30vh;
  position: relative;
}
.about_topTtlEn {
  color: #0F77BB;
  -webkit-text-decoration: underline solid #0F77BB;
  text-decoration: underline solid #0F77BB;
  text-underline-offset: 0.2em;
}
.about_topTtlJa {
  font-size: 0.5em;
  line-height: 3;
}
.about_topBox {
  font-size: 2.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

.history {
  position: relative;
  z-index: 1;
}
.history_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.history_group2 {
  position: relative;
  height: 100%;
  width: 100%;
}
.history_item {
  width: 50%;
  height: 93vh;
  border-right: solid 2px #0F77BB;
  position: relative;
}
.history_item:nth-of-type(2) {
  border: none;
}
.history_item2 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1024px) {
  .history_item2 {
    width: 80%;
  }
}
.history_text {
  line-height: 5;
}
@media screen and (max-width: 1024px) {
  .history_text {
    line-height: 3;
  }
}
@media screen and (max-width: 480px) {
  .history_text {
    margin-bottom: 10%;
  }
}
.history_text p {
  font-size: 1rem;
}
.history_text1 {
  position: absolute;
  top: 70%;
  left: 5%;
}
.history_text1 p {
  font-size: 1rem;
}
@media screen and (max-width: 1024px) {
  .history_text1 p {
    line-height: 2;
  }
}
.history_text2 {
  position: absolute;
  top: 15%;
  left: 5%;
}
.history_text2 p {
  font-size: 1rem;
}
@media screen and (max-width: 1024px) {
  .history_text2 p {
    line-height: 2;
  }
}
.history_text3 {
  position: absolute;
  top: 30%;
  left: 5%;
}
.history_text3 p {
  font-size: 1rem;
}
@media screen and (max-width: 1024px) {
  .history_text3 p {
    line-height: 2;
  }
}
.history_text4 {
  position: absolute;
  top: 10%;
  left: 5%;
}
.history_text4 p {
  font-size: 1rem;
}
@media screen and (max-width: 1024px) {
  .history_text4 p {
    line-height: 2;
  }
}
.history_text5 {
  position: absolute;
  top: 70%;
  left: 5%;
}
.history_text5 p {
  font-size: 1rem;
}
@media screen and (max-width: 1024px) {
  .history_text5 p {
    line-height: 2;
  }
}
.history_text6 {
  position: absolute;
  top: 80%;
  left: 5%;
}
@media screen and (max-width: 1024px) {
  .history_text6 {
    position: absolute;
    top: 85%;
    left: 5%;
  }
}
.history_text6 p {
  font-size: 1rem;
}
@media screen and (max-width: 1024px) {
  .history_text6 p {
    line-height: 2;
  }
}
.history_img1 {
  text-align: center;
  width: 100%;
  position: absolute;
  top: 10%;
  left: 0;
}
.history_img1 img {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .history_img1 img {
    width: 80%;
  }
}
.history_img2 {
  position: absolute;
  top: 65%;
  left: 5%;
  width: 90%;
}
@media screen and (max-width: 768px) {
  .history_img2 {
    overflow: hidden;
  }
}
.history_img2 img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .history_img2 img {
    width: 170%;
  }
}
.history_img3 {
  position: absolute;
  top: 25%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 50%;
}
@media screen and (max-width: 768px) {
  .history_img3 {
    width: 80%;
  }
}
.history_img3 img {
  width: 100%;
}
.history_img4 {
  position: absolute;
  top: 5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 55%;
}
@media screen and (max-width: 768px) {
  .history_img4 {
    width: 80%;
  }
}
.history_img4 img {
  width: 100%;
}
.history_imgName {
  text-align: center;
}
.history_imgName p {
  font-size: 1.2rem;
  line-height: 2;
}

div.fixed {
  position: -webkit-sticky;
  /*Safari*/
  position: sticky;
  overflow: hidden;
  top: 7vh;
  height: 100vh;
  /*Header高さ分で止まるようにする*/
  padding-bottom: 10%;
  /*デモ画面の高さを持たすための上下余白*/
}
@media screen and (max-width: 768px) {
  div.fixed {
    position: relative !important;
    top: 0;
  }
}
div.fixed:nth-child(odd) {
  background: #fff;
}
div.fixed:nth-child(2) {
  background: url(../img/about_kami2.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
div.fixed:nth-child(4) {
  background: url(../img/about_kami3.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.president {
  margin-top: 10%;
}
.president_iner {
  width: 90%;
  margin: 0 auto;
  padding: 5%;
  -webkit-box-shadow: #666 0px 5px 10px, #0F77BB -25px 25px, #666 -30px 30px 10px;
  box-shadow: #666 0px 5px 10px, #0F77BB -25px 25px, #666 -30px 30px 10px;
}
.president_title {
  text-align: center;
}
.president_title h3 {
  font-size: 2rem;
}
.president_box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 5%;
}
@media screen and (max-width: 768px) {
  .president_box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.president_itemT {
  width: 60%;
}
@media screen and (max-width: 1024px) {
  .president_itemT {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  .president_itemT {
    width: 90%;
    margin: 5% auto 0;
  }
}
.president_lead {
  text-align: center;
}
.president_lead strong {
  font-size: 1.2rem;
}
.president_text {
  margin-top: 5%;
  text-align: justify;
}
.president_text p {
  line-height: 1.5;
}
.president_nameC {
  text-align: end;
  margin-top: 10%;
}
.president_nameC p {
  font-size: 1.2rem;
}
.president_nameA {
  text-align: end;
  margin-top: 2%;
}
.president_nameA p {
  font-size: 1.3rem;
}
.president_itemA {
  width: 40%;
  margin-left: 10%;
}
@media screen and (max-width: 1024px) {
  .president_itemA {
    width: 30%;
  }
}
@media screen and (max-width: 768px) {
  .president_itemA {
    width: 90%;
    margin: 0 auto;
  }
}
.president_imgA {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.president_imgA img {
  width: 80%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .president_imgA img {
    width: 100%;
  }
}

.cinfo {
  margin-top: 30%;
}
.cinfo_iner {
  width: 80%;
  margin: 0 auto;
}
.cinfo_title {
  text-align: center;
}
.cinfo_title h3 {
  font-size: 2rem;
}
.cinfo_wrap {
  margin-top: 10%;
}
.cinfo_wrap table {
  width: 100%;
}
.cinfo_wrap table tr {
  border: solid 1px #fff;
}
.cinfo_wrap table tr td:nth-of-type(1) {
  width: 20%;
  text-align: center;
  background-color: #0F77BB4D;
  line-height: 4;
  font-weight: bold;
}
.cinfo_wrap table tr td:nth-of-type(2) {
  padding-left: 10%;
}

.space {
  vertical-align: middle;
}

.serviceA {
  margin-top: 7vh;
  height: 93vh;
}
.serviceA_topBg {
  background: url(../img/service-top3.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 65vh;
}
@media screen and (max-width: 1024px) {
  .serviceA_topBg {
    background-position-x: 40%;
  }
}
@media screen and (max-width: 768px) {
  .serviceA_topBg {
    background: url(../img/service-top4.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
.serviceA_topTtl {
  width: 100%;
  height: 30vh;
  position: relative;
}
.serviceA_topTtlEn {
  color: #0F77BB;
  -webkit-text-decoration: underline solid #0F77BB;
  text-decoration: underline solid #0F77BB;
  text-underline-offset: 0.2em;
}
.serviceA_topTtlJa {
  font-size: 0.5em;
  line-height: 3;
}
.serviceA_topBox {
  font-size: 2.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
.serviceA_box {
  margin-top: 5%;
}
.serviceA_boxIner {
  width: 90%;
  margin: 0 auto;
}
.serviceA_boxWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 10%;
}
.serviceA_box01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
  height: 35em;
  border: solid 2px #a4a4a4;
  border-radius: 10px;
  -webkit-box-shadow: #666 5px 5px 10px;
  box-shadow: #666 5px 5px 10px;
}
@media screen and (max-width: 768px) {
  .serviceA_box01 {
    margin-top: 5%;
  }
}
.serviceA_box01_img {
  width: 100%;
  height: 100%;
  background: url(../img/service-item1.png) no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .serviceA_box01_img {
    display: none;
  }
}
.serviceA_box01_img2 {
  display: none;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .serviceA_box01_img2 {
    display: block;
    text-align: center;
  }
  .serviceA_box01_img2 img {
    width: 100%;
    border: solid 2px #a4a4a4;
    border-radius: 10px;
    -webkit-box-shadow: #666 5px 5px 10px;
    box-shadow: #666 5px 5px 10px;
  }
}
.serviceA_box01_item {
  padding: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.serviceA_box01_icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.serviceA_box01_icon1 {
  display: contents;
}
@media screen and (max-width: 768px) {
  .serviceA_box01_icon1 img {
    width: 50%;
  }
}
@media screen and (max-width: 480px) {
  .serviceA_box01_icon1 img {
    width: 50%;
  }
}
.serviceA_box01_icon2 {
  padding-top: 10%;
  display: contents;
}
@media screen and (max-width: 480px) {
  .serviceA_box01_icon2 img {
    width: 30%;
  }
}
.serviceA_box01_title {
  width: 40%;
  border-radius: 10px;
  margin-top: 5%;
  background-color: #0F77BB;
  text-align: center;
  position: relative;
}
.serviceA_box01_title::after {
  content: "01";
  font-size: 3rem;
  font-weight: bolder;
  color: #0F77BB;
  position: absolute;
  top: 20%;
  right: 90%;
  -webkit-transform: translateX(-90%);
  -ms-transform: translateX(-90%);
  transform: translateX(-90%);
}
@media screen and (max-width: 1024px) {
  .serviceA_box01_title::after {
    top: 20%;
    right: 80%;
    -webkit-transform: translateX(-80%);
    -ms-transform: translateX(-80%);
    transform: translateX(-80%);
  }
}
@media screen and (max-width: 768px) {
  .serviceA_box01_title::after {
    top: 20%;
    right: 100%;
    -webkit-transform: translateX(-70%);
    -ms-transform: translateX(-70%);
    transform: translateX(-70%);
  }
}
.serviceA_box01_title p {
  font-size: 1.2rem;
  line-height: 3;
  color: #fff;
}
.serviceA_box01_text {
  margin-top: 8%;
}
.serviceA_box01_text p {
  letter-spacing: 1px;
  line-height: 1.5;
}
.serviceA_box01_text strong {
  border-bottom: solid 2px #0F77BB;
}
.serviceA_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 5%;
}
@media screen and (max-width: 768px) {
  .serviceA_group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.serviceA_box02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 2%;
  width: 30%;
  height: 22em;
  border: solid 2px #a4a4a4;
  border-radius: 10px;
  -webkit-box-shadow: #666 5px 5px 10px;
  box-shadow: #666 5px 5px 10px;
}
@media screen and (max-width: 768px) {
  .serviceA_box02 {
    width: 100%;
    padding: 5%;
    height: 25em;
  }
}
.serviceA_box02_icon {
  display: contents;
  width: 20%;
  height: 5em;
}
@media screen and (max-width: 768px) {
  .serviceA_box02_icon img {
    width: 15%;
  }
}
.serviceA_box02_title {
  width: 60%;
  border-radius: 10px;
  margin-top: 5%;
  background-color: #0F77BB;
  text-align: center;
  position: relative;
  -webkit-transform: translateX(20%);
  -ms-transform: translateX(20%);
  transform: translateX(20%);
}
@media screen and (max-width: 768px) {
  .serviceA_box02_title {
    width: 40%;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
}
.serviceA_box02_title::after {
  content: "02";
  font-size: 2.5rem;
  font-weight: bolder;
  color: #0F77BB;
  position: absolute;
  top: 20%;
  right: 90%;
  -webkit-transform: translateX(-70%);
  -ms-transform: translateX(-70%);
  transform: translateX(-70%);
}
@media screen and (max-width: 1024px) {
  .serviceA_box02_title::after {
    top: 20%;
    right: 80%;
    -webkit-transform: translateX(-65%);
    -ms-transform: translateX(-65%);
    transform: translateX(-65%);
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .serviceA_box02_title::after {
    top: 20%;
    right: 100%;
    -webkit-transform: translateX(-70%);
    -ms-transform: translateX(-70%);
    transform: translateX(-70%);
    font-size: 3rem;
  }
}
.serviceA_box02_title p {
  font-size: 1.5rem;
  line-height: 3;
  color: #fff;
}
.serviceA_box02_text {
  margin-top: 8%;
}
.serviceA_box02_text p {
  letter-spacing: 1px;
  line-height: 1.5;
}
.serviceA_box03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 2%;
  width: 30%;
  height: 22em;
  border: solid 2px #a4a4a4;
  border-radius: 10px;
  -webkit-box-shadow: #666 5px 5px 10px;
  box-shadow: #666 5px 5px 10px;
}
@media screen and (max-width: 768px) {
  .serviceA_box03 {
    width: 100%;
    padding: 5%;
    height: 25em;
    margin-top: 5%;
  }
}
.serviceA_box03_icon {
  display: contents;
  width: 25%;
  height: 5em;
}
@media screen and (max-width: 768px) {
  .serviceA_box03_icon img {
    width: 18%;
  }
}
.serviceA_box03_title {
  width: 60%;
  border-radius: 10px;
  background-color: #0F77BB;
  text-align: center;
  position: relative;
  -webkit-transform: translateX(20%);
  -ms-transform: translateX(20%);
  transform: translateX(20%);
}
@media screen and (max-width: 768px) {
  .serviceA_box03_title {
    width: 40%;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
}
.serviceA_box03_title::after {
  content: "03";
  font-size: 2.5rem;
  font-weight: bolder;
  color: #0F77BB;
  position: absolute;
  top: 20%;
  right: 90%;
  -webkit-transform: translateX(-70%);
  -ms-transform: translateX(-70%);
  transform: translateX(-70%);
}
@media screen and (max-width: 1024px) {
  .serviceA_box03_title::after {
    top: 20%;
    right: 80%;
    -webkit-transform: translateX(-65%);
    -ms-transform: translateX(-65%);
    transform: translateX(-65%);
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .serviceA_box03_title::after {
    top: 20%;
    right: 100%;
    -webkit-transform: translateX(-70%);
    -ms-transform: translateX(-70%);
    transform: translateX(-70%);
    font-size: 3rem;
  }
}
.serviceA_box03_title p {
  font-size: 1.5rem;
  line-height: 3;
  color: #fff;
}
.serviceA_box03_text {
  margin-top: 8%;
}
.serviceA_box03_text p {
  letter-spacing: 1px;
  line-height: 1.5;
}
.serviceA_box04 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 2%;
  width: 30%;
  height: 22em;
  border: solid 2px #a4a4a4;
  border-radius: 10px;
  -webkit-box-shadow: #666 5px 5px 10px;
  box-shadow: #666 5px 5px 10px;
}
@media screen and (max-width: 768px) {
  .serviceA_box04 {
    width: 100%;
    padding: 5%;
    height: 25em;
    margin-top: 5%;
  }
}
.serviceA_box04_icon {
  display: contents;
  width: 25%;
  height: 5em;
}
@media screen and (max-width: 768px) {
  .serviceA_box04_icon img {
    width: 18%;
  }
}
.serviceA_box04_title {
  width: 60%;
  border-radius: 10px;
  background-color: #0F77BB;
  text-align: center;
  position: relative;
  -webkit-transform: translateX(20%);
  -ms-transform: translateX(20%);
  transform: translateX(20%);
}
@media screen and (max-width: 768px) {
  .serviceA_box04_title {
    width: 40%;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
}
.serviceA_box04_title::after {
  content: "04";
  font-size: 2.5rem;
  font-weight: bolder;
  color: #0F77BB;
  position: absolute;
  top: 20%;
  right: 90%;
  -webkit-transform: translateX(-70%);
  -ms-transform: translateX(-70%);
  transform: translateX(-70%);
}
@media screen and (max-width: 1024px) {
  .serviceA_box04_title::after {
    top: 20%;
    right: 80%;
    -webkit-transform: translateX(-65%);
    -ms-transform: translateX(-65%);
    transform: translateX(-65%);
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .serviceA_box04_title::after {
    top: 20%;
    right: 100%;
    -webkit-transform: translateX(-70%);
    -ms-transform: translateX(-70%);
    transform: translateX(-70%);
    font-size: 3rem;
  }
}
.serviceA_box04_title p {
  font-size: 1.5rem;
  line-height: 3;
  color: #fff;
}
.serviceA_box04_text {
  margin-top: 8%;
}
.serviceA_box04_text p {
  letter-spacing: 1px;
  line-height: 1.5;
}
.serviceA_listS {
  margin-top: 10%;
}
.serviceA_listS_iner {
  width: 90%;
  margin: 0 auto;
}
.serviceA_listS_title {
  text-align: center;
}
.serviceA_listS_title h3 {
  font-size: 2rem;
}
.serviceA_listS_sub {
  text-align: center;
  margin-top: 3%;
}
.serviceA_listS_sub p {
  font-size: 1.2rem;
}
.serviceA_listS_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin-top: 5%;
}
.serviceA_listS_content {
  margin-top: 3%;
  width: 100%;
  border: solid 1px #a4a4a4;
  -webkit-box-shadow: #666 5px 5px 10px;
  box-shadow: #666 5px 5px 10px;
  border-radius: 10px;
}
.serviceA_listS_item {
  background: #0F77BB;
  padding-left: 5%;
  border-radius: 10px 10px 0 0;
}
.serviceA_listS_item p {
  font-size: 1.5rem;
  line-height: 2.5;
  color: #fff;
}
.serviceA_listS_group {
  padding: 2% 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .serviceA_listS_group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.serviceA_listS_group li {
  width: 33%;
  line-height: 2;
  font-size: 1.2rem;
}
@media screen and (max-width: 1024px) {
  .serviceA_listS_group li {
    width: auto;
  }
}
.serviceA_listS_group li::before {
  content: "・";
  color: darkgrey;
  font-size: 2rem;
  font-weight: lighter;
  top: 5%;
  padding-top: 1%;
  -webkit-transform: translateY(10%);
  -ms-transform: translateY(10%);
  transform: translateY(10%);
  position: relative;
}
.serviceA_listS_itemG {
  background: #a4a4a4;
  padding-left: 5%;
  border-radius: 10px 10px 0 0;
}
.serviceA_listS_itemG p {
  font-size: 1.5rem;
  line-height: 2.5;
  color: #fff;
}
.serviceA_listS_point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  padding: 2% 5%;
}
@media screen and (max-width: 768px) {
  .serviceA_listS_point {
    display: none;
  }
}
.serviceA_listS_pointTab {
  display: none;
}
@media screen and (max-width: 768px) {
  .serviceA_listS_pointTab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    padding: 2% 5%;
  }
}
.serviceA_listS_groupS li {
  line-height: 2;
  font-size: 1.2rem;
}
.serviceA_listS_groupS li::before {
  content: "・";
  color: darkgrey;
  font-size: 2rem;
  font-weight: lighter;
  top: 5%;
  padding-top: 1%;
  -webkit-transform: translateY(10%);
  -ms-transform: translateY(10%);
  transform: translateY(10%);
  position: relative;
}
.serviceA_listS_groupTab {
  width: 100%;
}
.serviceA_listS_groupTab li {
  width: 100%;
  line-height: 2;
  font-size: 1.2rem;
}
.serviceA_listS_groupTab li::before {
  content: "・";
  color: darkgrey;
  font-size: 2rem;
  font-weight: lighter;
  top: 5%;
  padding-top: 1%;
  -webkit-transform: translateY(10%);
  -ms-transform: translateY(10%);
  transform: translateY(10%);
  position: relative;
}
.serviceA_listS_groupTab a {
  padding-left: 5%;
  text-decoration: underline;
}
.serviceA_listS_url {
  line-height: 4.1;
}
.serviceA_listS_url li:hover a {
  color: #0F77BB;
}

.a-recruit_mainInner {
  position: relative;
  width: 100%;
  height: 70vh;
}
@media screen and (max-width: 480px) {
  .a-recruit_mainInner {
    height: 50vh;
  }
}
.a-recruit_mainInner img {
  width: 100%;
  height: 100%;
}
.a-recruit_containInner {
  position: relative;
  width: 100%;
  height: 100%;
}
.a-recruit_containTtl {
  width: 100%;
  height: 30vh;
  position: relative;
}
.a-recruit_containTtlEn {
  color: #0F77BB;
  -webkit-text-decoration: underline solid #0F77BB;
  text-decoration: underline solid #0F77BB;
  text-underline-offset: 0.2em;
}
.a-recruit_containTtlJa {
  font-size: 0.5em;
  line-height: 3;
}
.a-recruit_containBox {
  font-size: 2.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
.a-recruit_containInf {
  position: relative;
  width: 80%;
  margin: 10% auto 0;
}
@media screen and (max-width: 1024px) {
  .a-recruit_containInf {
    margin: 0% auto;
  }
}
.a-recruit_containInf table {
  width: 100%;
}
.a-recruit_containInf table tr {
  border: solid 1px #fff;
}
.a-recruit_containInf table tr td:nth-of-type(1) {
  width: 20%;
  text-align: center;
  background-color: #0F77BB4D;
  line-height: 4;
  font-weight: bold;
}
@media screen and (max-width: 480px) {
  .a-recruit_containInf table tr td:nth-of-type(1) {
    width: 100%;
    font-size: 1.3rem;
    display: block;
  }
}
.a-recruit_containInf table tr td:nth-of-type(2) {
  padding: 2% 3%;
  line-height: 1.5;
}
@media screen and (max-width: 480px) {
  .a-recruit_containInf table tr td:nth-of-type(2) {
    width: 100%;
    display: block;
    padding: 0% 6%;
    line-height: 3;
    font-size: 1.3rem;
  }
}
.a-recruit_workInner {
  position: relative;
  width: 100%;
  height: 100%;
}
.a-recruit_workTtl {
  margin-top: 10%;
  text-align: center;
}
.a-recruit_workTtl p {
  font-size: 1.7rem;
}
.a-recruit_img img {
  width: 100%;
  height: 85%;
}
.a-recruit_img p {
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .a-recruit_img p {
    font-size: 1.7rem;
    text-align: center;
  }
}
.a-recruit_imgs {
  display: -ms-grid;
  display: grid;
  width: 80%;
  text-align: center;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin: 0 auto;
  gap: 0 2%;
}
.a-recruit_imgsInner {
  width: 100%;
  height: 100%;
  margin-top: 10%;
}
.a-recruit_imgTxt {
  position: relative;
}
@media screen and (max-width: 768px) {
  .a-recruit_imgTxt {
    height: 350px;
  }
}
@media screen and (max-width: 480px) {
  .a-recruit_imgTxt {
    height: 250px;
  }
}
.a-recruit_imgTxtBox {
  background-color: #0F77BB4D;
  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;
  position: absolute;
  width: 100%;
  height: 85%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.a-recruit_imgTxtarea p {
  font-size: 1rem;
  line-height: 2.5;
  text-align: initial;
}
@media screen and (max-width: 768px) {
  .a-recruit_imgTxtarea p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 480px) {
  .a-recruit_imgTxtarea p {
    font-size: 1.6rem;
  }
}

.a-contact_mainInner {
  position: relative;
  display: -ms-grid;
  display: grid;
  width: 100%;
  -ms-grid-columns: 1fr 1% 1fr 1% 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  gap: 1%;
  height: 70vh;
}
@media screen and (max-width: 768px) {
  .a-contact_mainInner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 32vh 33vh;
    margin-top: 7vh;
    height: 65vh;
  }
}
.a-contact_mainInner > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.a-contact_mainInner > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.a-contact_mainInner > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
.a-contact_mainBox1 {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  grid-row: 1;
}
@media screen and (max-width: 768px) {
  .a-contact_mainBox1 {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    grid-row: 2;
    background: url(../img/contact-top1.png);
    background-repeat: no-repeat;
    background-position-y: 70%;
    background-size: cover;
  }
}
.a-contact_mainBox1 img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .a-contact_mainBox1 img {
    display: none;
  }
}
.a-contact_mainBox2 {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 1;
  grid-row: 1;
}
@media screen and (max-width: 768px) {
  .a-contact_mainBox2 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    -ms-grid-row: 1;
    grid-row: 1;
    background: url(../img/contact-top2.png);
    background-repeat: no-repeat;
    background-position-y: 100%;
    background-size: cover;
  }
}
.a-contact_mainBox2 img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .a-contact_mainBox2 img {
    display: none;
  }
}
.a-contact_mainBox3 {
  -ms-grid-column: 3;
  grid-column: 3;
  -ms-grid-row: 1;
  grid-row: 1;
}
@media screen and (max-width: 768px) {
  .a-contact_mainBox3 {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 2;
    grid-row: 2;
    background: url(../img/contact-top3.png);
    background-repeat: no-repeat;
    background-position-y: 70%;
    background-size: cover;
  }
}
.a-contact_mainBox3 img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .a-contact_mainBox3 img {
    display: none;
  }
}
.a-contact_containTtl {
  width: 100%;
  height: 30vh;
  position: relative;
}
.a-contact_containTtlEn {
  color: #0F77BB;
  -webkit-text-decoration: underline solid #0F77BB;
  text-decoration: underline solid #0F77BB;
  text-underline-offset: 0.2em;
}
.a-contact_containTtlJa {
  font-size: 0.5em;
  line-height: 3;
}
.a-contact_containBox {
  font-size: 2.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
.a-contact_containInner {
  position: relative;
  width: 100%;
  height: 100%;
}
.a-contact_containMapInner {
  position: relative;
  width: 80%;
  margin: 10% auto 0;
}
.a-contact_containMapInner h3 {
  font-size: 1.3rem;
}
.a-contact_containMapInner p {
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 3%;
}
.a-contact_containMapInner iframe {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .a-contact_containMapInner iframe {
    height: 500px;
  }
}
@media screen and (max-width: 768px) {
  .a-contact_containMapInner iframe {
    height: 400px;
  }
}
@media screen and (max-width: 480px) {
  .a-contact_containMapInner iframe {
    height: 300px;
  }
}
.a-contact_containCarInner {
  position: relative;
  width: 80%;
  margin: 3% auto 0;
}
.a-contact_containCarInner p {
  margin-top: 3%;
  line-height: 2;
  font-size: 1rem;
}
.a-contact_containCarInner p span {
  color: #F00;
}
.a-contact_containCarBox {
  width: 23%;
  text-align: center;
  background-color: #0F77BB;
}
@media screen and (max-width: 768px) {
  .a-contact_containCarBox {
    width: 33%;
  }
}
.a-contact_containCarBox p {
  color: #fff;
}
.a-contact_containTrainInner {
  position: relative;
  width: 80%;
  margin: 3% auto 0;
}
.a-contact_containTrainBox {
  width: 23%;
  text-align: center;
  line-height: 2;
  background-color: #0F77BB;
}
@media screen and (max-width: 768px) {
  .a-contact_containTrainBox {
    width: 33%;
  }
}
.a-contact_containTrainBox p {
  color: #fff;
}
.a-contact_containTrainImg {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 3%;
}
@media screen and (max-width: 768px) {
  .a-contact_containTrainImg {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.a-contact_containTrainL {
  padding: 0 3%;
}
@media screen and (max-width: 768px) {
  .a-contact_containTrainL {
    padding: 5% 3%;
  }
}
.a-contact_containTrainL img {
  width: 100%;
  height: 100%;
}
.a-contact_containTrainL p {
  font-size: 1rem;
  margin-top: 1%;
}
.a-contact_containTrainR {
  padding: 0 3%;
}
.a-contact_containTrainR img {
  width: 100%;
  height: 100%;
}
.a-contact_containTrainR p {
  font-size: 1rem;
  margin-top: 1%;
}
.a-contact_call {
  background: #ebebeb;
  width: 100%;
  height: 100%;
}
.a-contact_callInner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 80%;
  height: 100%;
  padding: 5% 0;
  margin: 10% auto 0;
}
@media screen and (max-width: 768px) {
  .a-contact_callInner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.a-contact_callBoxL {
  position: relative;
  width: 50%;
  height: auto;
  margin: 1%;
  text-align: center;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .a-contact_callBoxL {
    width: 100%;
    padding: 25% 0%;
  }
}
.a-contact_callBoxL span {
  font-size: 2rem;
  border-bottom: solid 1px #0F77BB;
}
@media screen and (max-width: 1024px) {
  .a-contact_callBoxL span {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 768px) {
  .a-contact_callBoxL span {
    font-size: 2rem;
  }
}
.a-contact_callBoxL p {
  font-size: 0.9rem;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .a-contact_callBoxL p {
    font-size: 0.7rem;
  }
}
@media screen and (max-width: 768px) {
  .a-contact_callBoxL p {
    font-size: 1.1rem;
  }
}
.a-contact_callBoxR {
  position: relative;
  width: 50%;
  height: auto;
  margin: 1%;
  padding: 3%;
  text-align: center;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .a-contact_callBoxR {
    width: 100%;
  }
}
.a-contact_callBoxR p {
  font-size: 0.9rem;
}
@media screen and (max-width: 1024px) {
  .a-contact_callBoxR p {
    font-size: 0.7rem;
  }
}
@media screen and (max-width: 768px) {
  .a-contact_callBoxR p {
    font-size: 1.1rem;
  }
}
.a-contact_calltxt {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.a-contact_tell {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .a-contact_tell {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.a-contact_tellImg {
  width: 21%;
  height: 100%;
  padding: 5%;
}
.a-contact_tellImg img {
  width: 100%;
}
.a-contact_tell p {
  font-size: 2.8rem;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .a-contact_tell p {
    font-size: 1.65rem;
  }
}
@media screen and (max-width: 768px) {
  .a-contact_tell p {
    font-size: 2.5rem;
  }
}
.a-contact_fax {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .a-contact_fax {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.a-contact_faxImg {
  width: 21%;
  height: 100%;
  padding: 5%;
}
.a-contact_faxImg img {
  width: 100%;
}
.a-contact_fax p {
  font-size: 2.8rem;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .a-contact_fax p {
    font-size: 1.65rem;
  }
}
@media screen and (max-width: 768px) {
  .a-contact_fax p {
    font-size: 2.5rem;
  }
}

/*# sourceMappingURL=style.css.map */
