@charset "UTF-8";
html {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow-x: hidden;
  margin: 0 auto;
  background-color: #ffffff;
  line-height: 1.5;
  font-size: 100%;
  font-weight: normal;
  color: #4D4D4D;
  text-align: justify;
  word-wrap: break-word;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  font-family: source-han-sans-japanese, sans-serif;
}

body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
}

.container {
  width: 100%;
  max-width: 980px;
  margin: auto;
}

.in {
  padding: 0 2%;
}
.news_in {
  margin-bottom: 100px;
}
@media screen and (max-width: 786px) {
  .in {
    padding: 0 4%;
  }
}

ul {
  list-style: none;
}

input {
  -webkit-appearance: none;
}

a {
  color: #4D4D4D;
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
}

.en {
  font-family: Georgia, serif;
  font-weight: inherit;
  letter-spacing: 0.1rem;
}

.min {
  font-family: source-han-serif-japanese, serif;
}

#loader-bg {
  position: fixed;
  background-color: #ffffff;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

/* header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 120px;
  margin: 0 auto;
  z-index: 10;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1000px) {
  header {
    height: 60px;
  }
}
header .hd_con {
  width: 100%;
  position: relative;
  height: 120px;
}
@media screen and (max-width: 1000px) {
  header .hd_con {
    height: 60px;
  }
}
header .hd_con .logo {
  position: absolute;
  margin-left: 2%;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
header .hd_con .logo:hover {
  opacity: 0.8;
}
header .hd_con .logo img {
  width: 15rem;
  display: flex;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 1000px) {
  header .hd_con .logo img {
    width: 15rem;
  }
}
@media screen and (max-width: 480px) {
  header .hd_con .logo img {
    width: 12rem;
  }
}
header .hd_con .nav {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 120px;
}
@media screen and (max-width: 1000px) {
  header .hd_con .nav {
    display: none;
  }
}
header .hd_con .nav ul {
  margin-right: 1rem;
  display: flex;
  position: relative;
}
header .hd_con .nav ul li {
  position: relative;
  text-align: center;
  padding: 0 1.25rem;
}
@media screen and (max-width: 980px) {
  header .hd_con .nav ul li {
    padding: 0 1.125rem;
  }
}
header .hd_con .nav ul li a {
  font-weight: 500;
  transition: 0.3s;
}
header .hd_con .nav ul li a:hover {
  opacity: 0.8;
  color: #E85A24;
}
header .hd_con .nav ul li a span {
  font-family: "Vollkorn", serif;
  color: #BEBEBE;
  font-size: 0.875rem;
  font-weight: normal;
  display: block;
}
header .hd_con .nav ul li .hd_contact {
  display: flex;
  align-items: center;
  color: #ffffff;
  background: linear-gradient(to bottom, #f7fc5b, #f00c00);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  transition: 0.3s;
}
header .hd_con .nav ul li .hd_contact:hover {
  opacity: 0.8;
  color: #ffffff;
}
header .hd_con .nav ul li .hd_contact img {
  width: 1.25rem;
  margin-right: 0.5rem;
}

header.change-color {
  background-color: rgba(255, 255, 255, 0.7);
}

/*------Head------*/
.sp_menu {
  display: none;
}
@media screen and (max-width: 1000px) {
  .sp_menu {
    display: flex;
  }
}
.sp_menu #form {
  max-width: 115px;
}
.sp_menu a {
  display: flex;
  margin-left: 0.5rem;
}

#nav-toggle {
  position: fixed;
  top: 0;
  right: 0;
  width: auto;
  height: 60px;
  cursor: pointer;
  z-index: 100;
  display: none;
  background-color: #f00c00;
  padding: 0px 0.75rem;
}
@media screen and (max-width: 1000px) {
  #nav-toggle {
    display: flex;
    align-items: center;
  }
}
#nav-toggle > div {
  position: relative;
  width: 2rem;
  height: 20px;
  top: 0px;
}
#nav-toggle span {
  width: 100%;
  height: 2px;
  border-radius: 1px;
  left: 0;
  display: block;
  background: #ffffff;
  position: absolute;
  transition: transform 0.3s ease-in-out, top 0.3s ease;
}
#nav-toggle span:nth-child(1) {
  top: 0;
}
#nav-toggle span:nth-child(2) {
  top: 8px;
}
#nav-toggle span:nth-child(3) {
  top: 16px;
}

.open {
  overflow: hidden;
}
.open #nav-toggle span {
  background: #ffffff;
}
.open #nav-toggle span:nth-child(1) {
  top: 8px;
  transform: rotate(35deg);
}
.open #nav-toggle span:nth-child(2) {
  top: 10px;
  width: 0;
  left: 50%;
}
.open #nav-toggle span:nth-child(3) {
  top: 8px;
  transform: rotate(-35deg);
}
.open #gloval-nav {
  visibility: visible;
  opacity: 1;
}
.open #gloval-nav li {
  opacity: 1;
  transform: translateX(0px);
  transition: transform 1s ease, opacity 0.9s ease;
}

/*------Gnav------*/
#gloval-nav {
  background-color: #ffffff;
  position: fixed;
  width: 100%;
  height: 100% !important;
  overflow-y: scroll;
  display: block !important;
  top: 0;
  left: auto;
  right: 0;
  z-index: 99;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease, visibility 0.6s ease;
}
#gloval-nav .logo {
  display: block;
  margin-left: 2%;
  z-index: 1;
  transition: 0.3s;
  position: relative;
  top: 0.425rem;
}
@media screen and (max-width: 480px) {
  #gloval-nav .logo {
    top: 0.675rem;
  }
}
#gloval-nav .logo:hover {
  opacity: 0.8;
}
#gloval-nav .logo img {
  width: 17.5rem;
  display: flex;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 1000px) {
  #gloval-nav .logo img {
    width: 15rem;
  }
}
@media screen and (max-width: 480px) {
  #gloval-nav .logo img {
    width: 12rem;
  }
}
#gloval-nav .nav {
  margin-top: 5rem;
  width: 100%;
  display: block;
  padding: 0 3rem;
}
@media screen and (max-width: 480px) {
  #gloval-nav .nav {
    padding: 0 2rem;
  }
}
#gloval-nav .nav .language {
  text-align: right;
  font-weight: bold;
  margin-bottom: 1rem;
}
#gloval-nav .nav .language a {
  transition: 0.3s;
}
#gloval-nav .nav .language a:hover {
  opacity: 0.8s;
}
#gloval-nav .nav ul li {
  border-bottom: 1px solid #EDEDED;
  position: relative;
}
#gloval-nav .nav ul li::after {
  content: "";
  background-image: url(../images/link_right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 1.5rem;
  height: 1rem;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
#gloval-nav .nav ul li a {
  font-size: 0.875rem;
  font-weight: bold;
  padding: 1rem 0;
  display: block;
  transition: 0.3s;
}
#gloval-nav .nav ul li a:hover {
  opacity: 0.8;
}
#gloval-nav .nav ul li a span {
  color: #f00c00;
  font-size: 0.75rem;
  margin-left: 1rem;
}

/* -----------------------------------
index.html
----------------------------------- */
.top {
  position: relative;
}
.top .top_bg {
  background-image: url(../images/top_bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 50%;
  height: 100vh;
  position: fixed;
  right: 0;
  top: 0;
  z-index: -1;
}
@media screen and (max-width: 786px) {
  .top .top_bg {
    width: 100%;
    height: 25rem;
    position: inherit;
  }
}
.top .top_con {
  position: relative;
  width: 100%;
  height: 100vh;
}
@media screen and (max-width: 786px) {
  .top .top_con {
    height: 30rem;
    background-image: url(../images/top_about_bg.png);
    background-position: center right;
    background-size: 45%;
    background-repeat: no-repeat;
  }
}
.top .top_con .top_chach {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.top .top_con .top_chach h4 {
  font-size: 3.25rem;
  letter-spacing: 0.3rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
@media screen and (max-width: 786px) {
  .top .top_con .top_chach h4 {
    font-size: 2.5rem;
    width: 87%;
  }
}
.top .top_con .top_chach p {
  color: #A5A5A5;
  font-size: 1.5rem;
}
@media screen and (max-width: 786px) {
  .top .top_con .top_chach p {
    font-size: 1.25rem;
  }
}
.top .top_news_link {
  width: 100%;
  max-width: 800px;
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0.5rem;
  box-shadow: 0px 0px 3px 3px rgba(0, 0, 0, 0.05);
}
.top .top_news_link .tit {
  width: 20%;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 1.5rem;
  line-height: 1.75;
  border-right: 1px solid #A5A5A5;
  text-align: center;
}
@media screen and (max-width: 786px) {
  .top .top_news_link .tit {
    width: 100%;
    padding: 0.5rem 1rem;
    padding-bottom: 0;
    font-size: 1rem;
    border-right: none;
    text-align: left;
  }
}
.top .top_news_link #ticKer {
  width: 80%;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.top .top_news_link #ticKer #ulArea {
  width: 100%;
}
.top .top_news_link #ticKer_sp {
  width: 100%;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.top .top_news_link #ticKer_sp #ulArea_sp {
  width: 100%;
}
.top .top_news_link a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 1.5rem;
  width: 100%;
  line-height: 1.5;
  transition: 0.3s;
}
.top .top_news_link a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 786px) {
  .top .top_news_link a {
    width: 100%;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
}
.top .top_news_link a .date {
  width: 20%;
  color: #808080;
  text-align: center;
}
@media screen and (max-width: 786px) {
  .top .top_news_link a .date {
    width: 100%;
    text-align: left;
  }
}
.top .top_news_link a .title {
  width: 60%;
}
@media screen and (max-width: 786px) {
  .top .top_news_link a .title {
    width: 80%;
  }
}
.top .top_news_link a .img {
  width: 20%;
}
.top .top_news_link a .img img {
  width: 3rem;
  display: block;
  margin-left: auto;
}
@media screen and (max-width: 786px) {
  .top .top_news_link a .img img {
    width: 2rem;
  }
}
@media screen and (max-width: 786px) {
  .top .top_news_link_pc {
    display: none;
  }
}
.top .top_news_link_sp {
  display: none;
}
@media screen and (max-width: 786px) {
  .top .top_news_link_sp {
    display: flex;
  }
}
.top .top_about {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url(../images/top_about_bg.png);
  background-position: center;
  background-size: 40%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 786px) {
  .top .top_about {
    height: 30rem;
    background-image: none;
  }
}
.top .top_about .top_about_con {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 786px) {
  .top .top_about .top_about_con {
    position: inherit;
  }
}
.top .top_about .top_about_con .tit {
  color: #E85A24;
  font-size: 2rem;
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.top .top_about .top_about_con .tit span {
  font-family: source-han-sans-japanese, sans-serif;
  font-size: 0.875rem;
  margin-left: 1rem;
}
.top .top_about .top_about_con .txt {
  width: 100%;
  max-width: 400px;
  line-height: 2;
  margin-bottom: 3rem;
}
@media screen and (max-width: 786px) {
  .top .top_about .top_about_con .txt {
    font-size: 0.875rem;
  }
}

.our-services {
  background-color: #174A68;
  position: relative;
}
.our-services::before {
  content: "";
  width: 60%;
  height: 3.5rem;
  background-color: #174A68;
  display: block;
  position: absolute;
  bottom: 100%;
}
.our-services .top_tit_our-services {
  background-image: url(../images/our-services_tit.png);
  background-position: right bottom;
  background-size: 65%;
  background-repeat: no-repeat;
  padding-bottom: 3rem;
}
@media screen and (min-width: 1280px) {
  .our-services .top_tit_our-services {
    background-size: 850px;
  }
}
@media screen and (max-width: 786px) {
  .our-services .top_tit_our-services {
    background-size: 75%;
  }
}
.our-services .top_tit_our-services .sub_tit_con::before {
  background-color: #ffffff;
}
.our-services .top_tit_our-services .sub_tit_con h3 {
  color: #f7fc5b;
}
.our-services .top_tit_our-services .sub_tit_con p {
  color:#f7fc5b;
}
.our-services .our-services_con {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 2.5rem;
  padding-bottom: 4.5rem;
}
.our-services .our-services_con .our-services_contents01 {
  background-image: url(../images/our-services_img01.jpg);
}
.our-services .our-services_con .our-services_contents02 {
  background-image: url(../images/our-services_img02.jpg);
  margin-top: 3rem;
}
.our-services .our-services_con .our-services_contents {
  width: 48%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 300px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 786px) {
  .our-services .our-services_con .our-services_contents {
    width: 100%;
  }
}
.our-services .our-services_con .our-services_contents a {
  height: 100%;
  position: relative;
  z-index: 2;
  display: block;
  color: #fff;
  transition: 0.3s;
}
.our-services .our-services_con .our-services_contents a::after {
  content: "";
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 13.5%, rgba(37, 37, 37, 0.56) 35%, rgba(0, 0, 0, 0.73) 50%, rgba(0, 0, 0, 0.73) 100%);
  width: 100%;
  height: 200%;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  transition: transform 0.4s ease;
  top: 0;
}
.our-services .our-services_con .our-services_contents a .our-services_tit {
  width: 100%;
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 2rem;
  z-index: 2;
}
.our-services .our-services_con .our-services_contents a .our-services_tit div sub {
  color: #ffffff;
  font-size: 0.812rem;
  margin-bottom: 0.5rem;
}
.our-services .our-services_con .our-services_contents a .our-services_tit div .tit {
  color: #ffffff;
  font-size: 1.5rem;
}
.our-services .our-services_con .our-services_contents a .our-services_tit img {
  position: relative;
  width: 3rem;
  margin-bottom: 0.5rem;
}
.our-services .our-services_con .our-services_contents a:hover::after {
  animation: our-services ease 0.5s forwards;
}
.our-services .our-services_con .our-services_contents a:hover .our-services_tit img {
  animation: our-services_img ease 0.5s forwards;
}
@keyframes our-services {
  0% {
    top: 0%;
  }
  100% {
    top: -30%;
  }
}
@keyframes our-services_img {
  0% {
    right: 1rem;
  }
  100% {
    right: 0;
  }
}

.top_company {
  background: linear-gradient(90deg, #F4FBFF 0%, #F4FBFF 35%, #ffffff 35%, #ffffff 100%);
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
  position: relative;
}
@media screen and (max-width: 786px) {
  .top_company {
    background: inherit;
  }
}
.top_company::after {
  content: "";
  width: 65%;
  height: 3rem;
  background-color: #174A68;
  position: absolute;
  right: 0;
  top: 0;
  display: block;
}
@media screen and (max-width: 786px) {
  .top_company::after {
    display: none;
  }
}
.top_company .top_company_con {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 2.5rem;
  margin-left: 100px;
}
.top_company .top_company_con .top_company_img {
  width: 50%;
}
@media screen and (max-width: 786px) {
  .top_company .top_company_con .top_company_img {
    width: 100%;
    margin-bottom: 1.5rem;
  }
}
.top_company .top_company_con .top_company_img img {
  width: 100%;
  height: auto;
}
.top_company .top_company_con .top_company_txt {
  width: 45%;
}
@media screen and (max-width: 786px) {
  .top_company .top_company_con .top_company_txt {
    width: 100%;
  }
}
.top_company .top_company_con .top_company_txt .txt {
  line-height: 2;
  margin-bottom: 3rem;
}
@media screen and (max-width: 786px) {
  .top_company .top_company_con .top_company_txt .txt {
    font-size: 0.875rem;
  }
}
.top_company .top_company_con .top_company_txt .link_a {
  margin-left: auto;
}

.top_recruit {
  background-image: url(../images/top_recruit_tit.png);
  background-position: left bottom;
  background-size: 55%;
  background-repeat: no-repeat;
  padding-top: 4rem;
  padding-bottom: 5.5rem;
  background-color: #ffffff;
}
@media screen and (max-width: 786px) {
  .top_recruit {
    background-size: 720px;
  }
}
@media screen and (max-width: 786px) {
  .top_recruit {
    background-size: 70%;
  }
}
.top_recruit h3 {
  color: #f7fc5b;
  font-size: 2rem;
  text-align: center;
}
.top_recruit .sub {
  font-size: 0.875rem;
  text-align: center;
}
.top_recruit .top_recruit_bg {
  background-image: url(../images/top_recruit_img.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  max-width: 800px;
  margin: auto;
  margin-top: 2.5rem;
  padding-top: 4.375rem;
  padding-bottom: 4.375rem;
}
.top_recruit .top_recruit_bg .link_a {
  margin: auto;
}

/* -----------------------------------
共通
----------------------------------- */
.scroll {
  position: absolute;
  left: 1rem;
  margin: auto;
  bottom: 0;
  z-index: 1;
}
@media screen and (max-width: 480px) {
  .scroll {
    display: none;
  }
}
.scroll p {
  font-size: 0.75rem;
  color: #808080;
  transform: rotate(90deg);
  margin-bottom: 2rem;
}
.scroll .scroll_line {
  width: 20px;
  height: 100px;
  position: relative;
  overflow: hidden;
  margin: auto;
}
.scroll .scroll_line .line {
  position: relative;
  left: 10px;
  width: 1px;
  height: 100px;
  background-color: #808080;
}
.scroll .scroll_line .circle {
  position: absolute;
  left: 8px;
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #808080;
  animation: lineMove ease 3s infinite;
}

@keyframes lineMove {
  0% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}
.top_tit {
  margin-top: 300px;
  padding-top: 7.5rem;
  padding-bottom: 2rem;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .top_tit {
    padding-top: 0rem;
  }
}

.top_tit .top_tit_con h2 {
  font-size: 2.625rem;
  letter-spacing: 0.3rem;
  font-weight: normal;
  margin-top: 50px;
}
@media screen and (max-width: 786px) {
  .top_tit .top_tit_con h2 {
    font-size: 2rem;
  }
}
.top_tit .top_tit_con p {
  color: #A5A5A5;
  font-size: 1.5rem;
  margin-top: 0.5rem;
}
@media screen and (max-width: 786px) {
  .top_tit .top_tit_con p {
    font-size: 1.25rem;
  }
  .sub_tit_con h3{
    text-align: center;
  }
  .business .en{
    text-align: center;
  }
}

.sub_tit_con {
  position: relative;
}
.sub_tit_con::before {
  content: "";
  width: 1rem;
  height: 1px;
  background-color: #000000;
  display: block;
  margin-bottom: 2rem;
}
.sub_tit_con h3 {
  color: #f00c00;
  font-size: 3rem;
  font-weight: normal;
}
.sub_tit_con p {
  color: #666666;
  font-size: 1.5rem;
  margin-top: 0.5rem;
}

.link_a {
  width: 170px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #000000;
  transition: 0.3s;
}
.link_a:hover {
  opacity: 0.8;
}
.link_a:hover img {
  animation: link_a ease 0.5s;
}
@media screen and (max-width: 768px) {
  .link_a {
    width: 125px;
  }
}
.link_a p {
  color: #000000;
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  .link_a p {
    font-size: 1rem;
  }
}
.link_a img {
  width: 1.5rem;
  height: auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .link_a img {
    width: 1.125rem;
  }
}

@keyframes link_a {
  0% {
    right: 0.5rem;
  }
  100% {
    right: 0;
  }
}
.link_con {
  width: 100%;
  max-width: 830px;
  margin: auto;
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.link_con a {
  position: relative;
  display: flex;
  text-align: center;
  background: #ffffff;
  position: relative;
  width: 46%;
  border: 1px solid #f7fc5b;
}
@media screen and (max-width: 480px) {
  .link_con a {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.link_con a p {
  display: block;
  width: 100%;
  height: 100%;
  z-index: 10;
  color: #333;
  font-size: 2rem;
  text-align: center;
  padding: 2.5rem;
}
@media screen and (max-width: 786px) {
  .link_con a p {
    font-size: 1.5rem;
  }
}
.link_con a p:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  display: block;
  background: #f00c00;
  z-index: -1;
  transition: 0.2s;
}
.link_con a p::after {
  content: "";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1rem;
  background-image: url(../images/link_right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.link_con a p:hover {
  color: #ffffff;
}
.link_con a p:hover:before {
  width: 100%;
}
.link_con a p:hover:after {
  background-image: url(../images/link_right_w_b.svg);
}

@keyframes link_con {
  0% {
    right: 2.5rem;
  }
  100% {
    right: 1.5rem;
  }
}
/* -----------------------------------
私たちについて
----------------------------------- */
.about {
  background-image: url(../images/message_tit.png);
  background-position: right bottom;
  background-size: 60%;
  background-repeat: no-repeat;
  position: relative;
  padding-bottom: 3rem;
  z-index: -1;
}
@media screen and (min-width: 1280px) {
  .about {
    background-size: 770px;
  }
}
@media screen and (max-width: 786px) {
  .about {
    background-size: 85%;
  }
}
.about .about_con {
  background-position: right top;
  background-size: 37%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 786px) {
  .about .about_con {
    background-size: 60%;
  }
}
.about .about_con .top_tit_about {
  margin-bottom: 5rem;
}
.about .about_con .message .message_top {
  width: 70%;
  line-height: 2;
  margin: 3rem 0;
}
@media screen and (max-width: 786px) {
  .about .about_con .message .message_top {
    width: 100%;
    font-size: 0.875rem;
  }
}

.about_img {
  display: block;
  width: 75%;
  margin-top: -2.5rem;
  margin-left: auto;
  margin-bottom: -5rem;
}
@media screen and (max-width: 786px) {
  .about_img {
    margin-top: -1.5rem;
  }
}

.policy {
  background: linear-gradient(90deg, #F4FBFF 0%, #F4FBFF 45%, #ffffff 45%, #ffffff 100%);
  padding-top: 7rem;
  padding-bottom: 5rem;
}
.policy .policy_tit_bg {
  background-image: url(../images/policy_tit.png);
  background-position: right top;
  background-size: 45%;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1280px) {
  .policy .policy_tit_bg {
    background-size: 550px;
  }
}
@media screen and (max-width: 786px) {
  .policy .policy_tit_bg {
    background-size: 70%;
  }
}
.policy .policy_con {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 3rem;
}
@media screen and (max-width: 980px) {
  .policy .policy_con {
    justify-content: space-around;
  }
}
.policy .policy_con div {
  border: 1px solid #0071AE;
  width: 32%;
  text-align: center;
  padding: 4rem 1.5rem;
  border-radius: 50%;
}
@media screen and (max-width: 980px) {
  .policy .policy_con div {
    width: 45%;
    max-width: 280px;
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 680px) {
  .policy .policy_con div {
    width: 100%;
    height: 280px;
  }
}
.policy .policy_con div .tit {
  color: #0071AE;
  font-size: 2.125rem;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 980px) {
  .policy .policy_con div .tit {
    font-size: 1.75rem;
  }
}
.policy .policy_con div .txt {
  line-height: 2;
}
@media screen and (max-width: 980px) {
  .policy .policy_con div .txt br {
    display: none;
  }
}

.about_business {
  background-image: url(../images/about_business_bg.png);
  background-position: right top;
  background-size: 35%;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 8.5rem;
  padding-bottom: 8rem;
  margin-top: -2.5rem;
}
@media screen and (max-width: 786px) {
  .about_business {
    background-position: right 25%;
    background-size: 65%;
  }
}
.about_business .about_business_tit_bg {
  background-image: url(../images/about_business_tit.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 70%;
  height: 13rem;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
@media screen and (min-width: 1280px) {
  .about_business .about_business_tit_bg {
    width: 840px;
  }
}
@media screen and (max-width: 786px) {
  .about_business .about_business_tit_bg {
    width: 100%;
    background-size: 75%;
    height: 8rem;
  }
}
.about_business .about_business_img {
  display: block;
  width: 60%;
  max-width: 600px;
  margin: auto;
  margin-top: -5rem;
  transition: 0.3s;
}
.about_business .about_business_img:hover {
  opacity: 0.8;
}
@media screen and (max-width: 786px) {
  .about_business .about_business_img {
    width: 100%;
    max-width: inherit;
    margin-top: 1rem;
  }
}
.about_business .about_business_img img {
  width: 100%;
  height: auto;
}

/* -----------------------------------
会社概要
----------------------------------- */
.company_con {
  background-image: url(../images/company_tit.png);
  background-position: right bottom;
  background-size: 60%;
  background-repeat: no-repeat;
  position: relative;
  padding-bottom: 3rem;
  margin-top: 5rem;
}
@media screen and (min-width: 1280px) {
  .company_con {
    background-size: 950px;
  }

}

.company_con table {
  width: 100%;
  max-width: 800px;
  margin-left: 100px;
}
.company_con table tr th, .company_con table tr td {
  vertical-align: baseline;
  font-weight: normal;
  line-height: 2;
  padding: 1.5rem 2rem;
}
@media screen and (max-width: 786px) {
  .company_con table{
    margin-left: 0px;
  }
  .company_con table tr th, .company_con table tr td {
    font-size: 0.875rem;
    padding: 1rem 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .company_con table{
    margin-left: 0px;
  }
  .company_con table tr th, .company_con table tr td {
    padding: 1rem 0.5rem;
  }
}
.company_con table tr th:first-child {
  width: 15%;
  background-color: #F4FBFF;
}
@media screen and (max-width: 480px) {
  .company_con table tr th:first-child {
    width: 0;
    padding: 0;
  }
}
.company_con table tr th:nth-child(2) {
  width: 40%;
}
@media screen and (max-width: 480px) {
  .company_con table tr th:nth-child(2) {
    width: 35%;
  }
}
.company_con table tr td {
  width: 55%;
}
@media screen and (max-width: 480px) {
  .company_con table tr td {
    width: 65%;
  }
}

.map {
  margin-top: 3rem;
  margin-bottom: 8rem;
}
.map iframe {
  width: 100%;
  height: 400px;
}
@media screen and (max-width: 480px) {
  .map iframe {
    height: 300px;
  }
}

.history {
  background-image: url(../images/history_tit.png);
  background-position: left bottom;
  background-size: 55%;
  background-repeat: no-repeat;
  position: relative;
  padding-bottom: 8.5rem;
  margin-bottom: 5rem;
}
@media screen and (min-width: 1280px) {
  .history {
    background-size: 720px;
  }
}
@media screen and (max-width: 786px) {
  .history {
    background-size: 75%;
  }
}
.history .history_con {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.history .history_con .history_contents {
  width: 75%;
  border: 1px solid #E85A24;
  padding: 3.5rem 5rem;
  margin-top: 0.5rem;
  position: relative;
}
.history .history_con .history_contents::after {
  box-shadow: 0px 0px 5px 5px rgba(71, 12, 12, 0.05), 0px 0px 5px 5px rgba(0, 0, 0, 0.05) inset;
  position: absolute;
  top: 0.25rem;
  left: 0.25rem;
  content: "";
  height: 100%;
  width: 100%;
  z-index: -999;
}
@media screen and (max-width: 786px) {
  .history .history_con .history_contents {
    width: 100%;
    margin-top: 2.5rem;
    padding: 2.5rem 3rem;
  }
}
.history .history_con .history_contents table {
  width: 100%;
  background-color: #ffffff;
}
.history .history_con .history_contents table tr {
  display: flex;
  flex-wrap: wrap;
}
.history .history_con .history_contents table tr:last-child th, .history .history_con .history_contents table tr:last-child td {
  margin-bottom: 0;
}
.history .history_con .history_contents table tr th, .history .history_con .history_contents table tr td {
  margin-bottom: 2rem;
  font-weight: normal;
}
@media screen and (max-width: 786px) {
  .history .history_con .history_contents table tr th, .history .history_con .history_contents table tr td {
    font-size: 0.875rem;
  }
}
.history .history_con .history_contents table tr th {
  width: 25%;
}
@media screen and (max-width: 480px) {
  .history .history_con .history_contents table tr th {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.history .history_con .history_contents table tr td {
  width: 65%;
}
@media screen and (max-width: 480px) {
  .history .history_con .history_contents table tr td {
    width: 100%;
  }
}

/* -----------------------------------
事業内容
----------------------------------- */
.business {
  /* background-image: url(../images/business_bg.png); */
  background-position: right top;
  background-size: 45%;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (max-width: 786px) {
  .business {
    background-size: 65%;
  }
}
.business .business_top {
  line-height: 2;
  margin-top: 3rem;
  margin-bottom: 7.5rem;
}
.business .sub_tit_con {
  padding-top: 5rem;
  margin-top: -5rem;
}
.business .business_con {
  position: relative;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 786px) {
  .business .business_con1 {
    padding-bottom: 20rem;
  }
  .business .sub_tit_con {
    padding-top: 5rem;

  }
}
.business .business_con .txt {
  width: 55%;
  line-height: 2;
  margin-bottom: 3rem;
}
@media screen and (max-width: 786px) {
  .business .business_con .txt {
    width: 100%;
  }
}
.business .business_con .business_img {
  width: 40%;
  height: 17.5rem;
  position: absolute;
  right: 0;
  top: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 786px) {
  .business .business_con .business_img {
    width: 95%;
    top: 300px;
    bottom: 0;
  }
}

.business .business_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 3rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 980px) {
  .business .business_flex {
    justify-content: space-around;
  }
}
.business .business_flex div {
  border: 1px solid #E85A24;
  width: 31%;
  text-align: center;
  padding: 3.5rem 1.5rem;
  border-radius: 50%;
  position: relative;
}
.business .business_flex div::after {
  content: "";
  box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.05), 0px 0px 5px 5px rgba(0, 0, 0, 0.05) inset;
  position: absolute;
  top: 0.25rem;
  left: 0.25rem;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  z-index: -999;
}
@media screen and (max-width: 980px) {
  .business .business_flex div {
    width: 45%;
    max-width: 280px;
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 680px) {
  .business .business_flex div {
    width: 100%;
    height: 280px;
  }
}
.business .business_flex div .tit {
  color: #E85A24;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.business .business_flex div .line-height_3 {
  line-height: 3;
}
@media screen and (max-width: 786px) {
  .business .business_flex div .line-height_3 {
    line-height: 2.5;
  }
}
.business .business_flex div .txt {
  line-height: 2;
}
@media screen and (max-width: 786px) {
  .business .business_flex div .txt {
    font-size: 0.875rem;
  }
}
.business .business_flex div img {
  width: 45%;
  display: block;
  margin: auto;
}
.business .business_flex_top {
  margin-top: 10rem;
  justify-content: space-around;
}
@media screen and (max-width: 786px) {
  .business .business_flex_top {
    margin-top: 3rem;
  }
}
.business .business_flex_top div {
  width: 40%;
  max-width: 400px;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 786px) {
  .business .business_flex_top div {
    width: 100%;
    max-width: 340px;
    height: 340px;
  }
}

/* -----------------------------------
採用情報
----------------------------------- */
.top_tit_recruit {
  background-image: url(../images/recruit_tit.png);
  background-position: left bottom;
  background-size: 55%;
  background-repeat: no-repeat;
  position: relative;
  padding-bottom: 13rem;
}
@media screen and (min-width: 1280px) {
  .top_tit_recruit {
    background-size: 700px;
  }
}
@media screen and (max-width: 786px) {
  .top_tit_recruit {
    background-size: 75%;
  }
}
@media screen and (max-width: 480px) {
  .top_tit_recruit {
    padding-bottom: 18rem;
  }
}
.top_tit_recruit .top_tit_recruit_img {
  background-image: url(../images/recruit_top_img.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 20%;
  right: 0;
  width: 60%;
  height: 20rem;
}
@media screen and (max-width: 1000px) {
  .top_tit_recruit .top_tit_recruit_img {
    top: 0%;
    height: 17rem;
  }
}
@media screen and (max-width: 480px) {
  .top_tit_recruit .top_tit_recruit_img {
    width: 90%;
    top: 7rem;
    height: 13rem;
  }
}

.recruit_top {
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
  line-height: 2;
  margin-top: 3rem;
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 786px) {
  .recruit_top {
    font-size: 1rem;
  }
}
.recruit_top span {
  color: #E85A24;
  font-size: 1.5rem;
}
@media screen and (max-width: 786px) {
  .recruit_top span {
    font-size: 1.125rem;
  }
}

.top_tit_guidelines {
  background-image: url(../images/guidelines_tit.png);
  background-position: right bottom;
  background-size: 70%;
  background-repeat: no-repeat;
  padding-bottom: 6rem;
}
@media screen and (min-width: 1280px) {
  .top_tit_guidelines {
    background-size: 865px;
  }
}
@media screen and (max-width: 786px) {
  .top_tit_guidelines {
    background-size: 80%;
  }
}

.guidelines_preparation {
  font-size: 2rem;
  text-align: center;
  margin: 10rem auto;
}
@media screen and (max-width: 786px) {
  .guidelines_preparation {
    font-size: 1.75rem;
    margin: 7rem auto;
  }
}
@media screen and (max-width: 480px) {
  .guidelines_preparation {
    font-size: 1.5rem;
  }
}

.guidelines_con {
  margin-bottom: 4.5rem;
}
.guidelines_con .tit {
  font-size: 1.687rem;
  font-weight: 500;
  text-align: center;
  margin: 1.5rem auto;
}
@media screen and (max-width: 786px) {
  .guidelines_con .tit {
    font-size: 1.25rem;
  }
}
.guidelines_con div {
  width: 100%;
  max-width: 720px;
  margin: auto;
  border: 1px solid #E85A24;
  padding: 4.5rem 5rem;
  position: relative;
}
.guidelines_con div::after {
  content: "";
  box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.05), 0px 0px 5px 5px rgba(0, 0, 0, 0.05) inset;
  position: absolute;
  top: 0.25rem;
  left: 0.25rem;
  height: 100%;
  width: 100%;
  z-index: -999;
}
@media screen and (max-width: 786px) {
  .guidelines_con div {
    padding: 2.5rem 3rem;
  }
}
.guidelines_con div table {
  width: 100%;
}
.guidelines_con div table tr {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 480px) {
  .guidelines_con div table tr {
    margin-bottom: 0rem;
  }
  .guidelines_con div table tr:last-child td {
    margin-bottom: 0 !important;
  }
}
.guidelines_con div table tr:last-child {
  margin-bottom: 0;
}
.guidelines_con div table tr th, .guidelines_con div table tr td {
  font-weight: normal;
}
@media screen and (max-width: 786px) {
  .guidelines_con div table tr th, .guidelines_con div table tr td {
    font-size: 0.875rem;
  }
}
.guidelines_con div table tr th {
  width: 25%;
  margin-right: 5%;
}
@media screen and (max-width: 480px) {
  .guidelines_con div table tr th {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.guidelines_con div table tr td {
  width: 70%;
}
@media screen and (max-width: 480px) {
  .guidelines_con div table tr td {
    width: 100%;
    margin-bottom: 2rem;
  }
}

.entry {
  background-color: #DFF2FF;
  padding: 3rem;
}
@media screen and (max-width: 480px) {
  .entry {
    padding: 2rem 1rem;
  }
}
.entry .entry_link {
  display: block;
  margin: auto;
  width: 100%;
  max-width: 480px;
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem 0 2rem 0;
  transition: 0.3s;
}
.entry .entry_link:hover {
  opacity: 0.8;
}
@media screen and (max-width: 480px) {
  .entry .entry_link {
    padding: 1rem 0 2rem 0;
  }
}
.entry .entry_link p {
  font-size: 1.062rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 1rem;
}
@media screen and (max-width: 480px) {
  .entry .entry_link p {
    font-size: 0.875rem;
  }
}
.entry .entry_link img {
  display: block;
  width: 50%;
  margin: auto;
}
.entry .entry_contact {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
  transition: 0.3s;
}
.entry .entry_contact:hover {
  opacity: 0.8;
}
.entry .entry_contact p {
  font-size: 1.125rem;
  margin-right: 0.5rem;
}
@media screen and (max-width: 480px) {
  .entry .entry_contact p {
    font-size: 1rem;
  }
}
.entry .entry_contact img {
  width: 1.5rem;
  height: auto;
}
@media screen and (max-width: 480px) {
  .entry .entry_contact img {
    width: 1.25rem;
  }
}

/* -----------------------------------
お知らせ
----------------------------------- */
.top_tit_news {
  background-image: url(../images/news_tit.png);
  background-position: right bottom;
  background-size: 35%;
  background-repeat: no-repeat;
  padding-bottom: 0;
}
@media screen and (min-width: 1280px) {
  .top_tit_news {
    background-size: 500px;
  }
}
@media screen and (max-width: 480px) {
  .top_tit_news {
    background-size: 70%;
    padding-bottom: 3rem;
  }
}

.news .news_category {
  display: table;
  margin-left: auto;
  background-color: #F4FBFF;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
}
@media screen and (max-width: 786px) {
  .news .news_category {
    margin: auto;
    margin-top: 2.5rem;
  }
}
.news .news_category div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (max-width: 786px) {
  .news .news_category div p {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 480px) {
  .news .news_category div p {
    display: none;
  }
}
.news .news_category div a {
  position: relative;
  margin-left: 1.25rem;
  padding-left: 1.25rem;
  transition: 0.3s;
}
@media screen and (max-width: 786px) {
  .news .news_category div a {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 480px) {
  .news .news_category div a {
    width: 40%;
  }
}
.news .news_category div a:hover {
  opacity: 0.8;
}
.news .news_category div a span {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 786px) {
  .news .news_category div a span {
    width: 0.875rem;
    height: 0.875rem;
  }
}
.news .news_category div a .orange {
  background-color: #E85A24;
}
.news .news_category div a .purple {
  background-color: #D400FF;
}
.news .news_category div a .green {
  background-color: #79B700;
}
.news .news_con {

}
.news .news_con .news_contents {

}
@media screen and (max-width: 480px) {
  .news .news_con .news_contents {

  }
}
.news .news_con .news_contents .news_info {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.news .news_con .news_contents .news_info .date {
  font-size: 1.125rem;
}
@media screen and (max-width: 786px) {
  .news .news_con .news_contents .news_info .date {
    font-size: 1rem;
  }
}
.news .news_con .news_contents .news_info .cat {
  position: relative;
  font-size: 0.875rem;
  padding-left: 1rem;
  margin-left: 1.5rem;
}
.news .news_con .news_contents .news_info .cat span {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.news .news_con .news_contents .news_info .cat .company {
  background-color: #E85A24;
}
.news .news_con .news_contents .news_info .cat .recruit {
  background-color: #D400FF;
}
.news .news_con .news_contents .news_info .cat .other {
  background-color: #79B700;
}
.news .news_con .news_contents .tit {
  font-size: 1.25rem;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  box-sizing: border-box;
  width: 100%;
  border-bottom: 4px dotted #666666;
  border-radius: 1px;
}
@media screen and (max-width: 786px) {
  .news .news_con .news_contents .tit {
    font-size: 1.125rem;
  }
}
.news .news_con .news_contents .contents {
  line-height: 2;
}
@media screen and (max-width: 786px) {
  .news .news_con .news_contents .contents {
    font-size: 0.875rem;
  }
}

.wp-pagenavi {
  font-family: source-han-serif-japanese, serif;
  display: flex;
  justify-content: center;
  font-size: 1.25rem;
  margin-top: 3rem;
}
@media screen and (max-width: 480px) {
  .wp-pagenavi {
    font-size: 1rem;
  }
}
.wp-pagenavi .page {
  color: #ffffff;
  margin: 0 0.5rem;
  padding: 0.15rem 0.75rem;
  border: none !important;
  background-color: #94d5ff;
}
@media screen and (max-width: 480px) {
  .wp-pagenavi .page {
    margin: 0 0.25rem;
    padding: 0.15rem 0.65rem;
  }
}
.wp-pagenavi .page-numbers {
  color: #ffffff;
  margin: 0 0.5rem;
  padding: 0.15rem 0.75rem;
  border: none !important;
  background-color: #94d5ff;
}
@media screen and (max-width: 480px) {
  .wp-pagenavi .page-numbers {
    margin: 0 0.25rem;
    padding: 0.15rem 0.65rem;
  }
}
.wp-pagenavi .current {
  color: #ffffff;
  margin: 0 0.5rem;
  padding: 0.15rem 0.75rem;
  border: none !important;
  background-color: #174a68;
}
@media screen and (max-width: 480px) {
  .wp-pagenavi .current {
    margin: 0 0.25rem;
    padding: 0.15rem 0.65rem;
  }
}
.wp-pagenavi .extend {
  color: #ffffff;
  margin: 0 0.5rem;
  padding: 0.15rem 0.75rem;
  letter-spacing: 0.25rem;
}
@media screen and (max-width: 480px) {
  .wp-pagenavi .extend {
    margin: 0 0.25rem;
    padding: 0.15rem 0.65rem;
  }
}
.wp-pagenavi .nextpostslink, .wp-pagenavi .previouspostslink {
  margin: 0 0.5rem;
}
@media screen and (max-width: 480px) {
  .wp-pagenavi .nextpostslink, .wp-pagenavi .previouspostslink {
    margin: 0 0.25rem;
  }
}

/* -----------------------------------
お問い合わせ
----------------------------------- */
.top_tit_contact {
  background-image: url(../images/contact_tit.png);
  background-position: right bottom;
  background-size: 60%;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1280px) {
  .top_tit_contact {
    background-size: 780px;
  }
}
@media screen and (max-width: 480px) {
  .top_tit_contact {
    background-size: 80%;
    padding-bottom: 3rem;
  }
}

.contact {
  margin: 5rem auto;
  width: 100%;
  max-width: 800px;
}
.contact .top_txt {
  font-size: 1.25rem;
  text-align: center;
  line-height: 2;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .contact .top_txt {
    font-size: 1rem;
  }
}
.contact .req_txt {
  text-align: right;
  font-size: 0.812rem;
  margin-bottom: 1rem;
}
.contact .req_txt span {
  color: #FF0000;
}
.contact form {
  width: 100%;
  position: relative;
  margin: 10px;
  display: inline-block;
  padding: 3rem 4.5rem;
  box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.05), 0px 0px 5px 5px rgba(0, 0, 0, 0.05) inset;
}
@media screen and (max-width: 480px) {
  .contact form {
    width: 95%;
    padding: 3rem 2rem;
  }
}
.contact form::before {
  border: 1px solid #94D5FF;
  position: absolute;
  top: -0.45rem;
  left: -0.45rem;
  content: "";
  height: 100%;
  width: 100%;
  z-index: -1;
}
.contact form::after {
  background-color: #EFF9FF;
  position: absolute;
  top: 1rem;
  left: 1rem;
  content: "";
  height: 100%;
  width: 100%;
  z-index: -999;
}
@media screen and (max-width: 480px) {
  .contact form::after {
    top: 0.5rem;
    left: 0.5rem;
  }
}
.contact form table {
  width: 100%;
  margin: auto;
}
.contact form table tr th, .contact form table tr td {
  padding: 1.25rem;
}
@media screen and (max-width: 768px) {
  .contact form table tr th, .contact form table tr td {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 680px) {
  .contact form table tr th, .contact form table tr td {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .contact form table tr th, .contact form table tr td {
    padding: 0.875rem;
  }
}
.contact form table tr th {
  display: flex;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .contact form table tr th {
    padding-bottom: 0;
  }
}
.contact form table tr th .req {
  color: #FF0000;
  font-size: 0.625rem;
}
.contact form table tr td {
  width: 65%;
  padding-left: 0;
  /* ラジオボタン01 */
}
@media screen and (max-width: 680px) {
  .contact form table tr td {
    width: 100%;
    padding: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .contact form table tr td {
    padding: 0.875rem;
  }
}
.contact form table tr td input[type=text], .contact form table tr td textarea {
  width: 100%;
  outline: none;
  border: 1px solid #94D5FF;
  background-color: #ffffff;
  padding: 0.5rem;
  border-radius: 5px;
}
.contact form table tr td textarea {
  height: 240px;
  resize: vertical;
}
.contact form table tr td input[type=radio] {
  display: none;
}
.contact form table tr td .radio01 {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  padding: 5px 30px;
  position: relative;
  width: auto;
}
.contact form table tr td .radio01::before {
  background: #fff;
  border: 1px solid #174A68;
  border-radius: 50%;
  content: "";
  display: block;
  height: 16px;
  left: 5px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  width: 16px;
}
.contact form table tr td .radio01::after {
  background: #174A68;
  border-radius: 50%;
  content: "";
  display: block;
  height: 12px;
  left: 8px;
  margin-top: -5px;
  opacity: 0;
  position: absolute;
  top: 50%;
  width: 12px;
}
.contact form table tr td input[type=radio]:checked + .radio01::after {
  opacity: 1;
}
.contact form .privacypolicy {
  margin: 3rem auto;
}
.contact form .privacypolicy .privacypolicy_tit {
  text-align: center;
  font-weight: 500;
  margin-bottom: 1rem;
}
.contact form .privacypolicy .contact_privacypolicy {
  width: 100%;
  max-width: 800px;
  border: 1px solid #ccc;
  background-color: #ffffff;
  height: 220px;
  overflow-y: scroll;
  padding: 1rem;
  font-size: 0.875rem;
  line-height: 2;
}
.contact form .privacypolicy .privacypolicy_check input[type=checkbox] {
  display: none;
}
.contact form .privacypolicy .privacypolicy_check .checkbox01 {
  font-weight: 500;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 30px;
  position: relative;
  width: auto;
  margin: auto;
  margin-top: 1rem;
  display: table;
}
.contact form .privacypolicy .privacypolicy_check .checkbox01::before {
  background: #fff;
  border: 1px solid #174A68;
  content: "";
  display: block;
  height: 16px;
  left: 5px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  width: 16px;
}
.contact form .privacypolicy .privacypolicy_check .checkbox01::after {
  border-right: 3px solid #174A68;
  border-bottom: 3px solid #174A68;
  content: "";
  display: block;
  height: 9px;
  left: 10px;
  margin-top: -7px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  width: 5px;
}
.contact form .privacypolicy .privacypolicy_check input[type=checkbox]:checked + .checkbox01::after {
  opacity: 1;
}
.contact form input[type=submit], .contact form input[type=button] {
  display: block;
  border: none;
  background-color: #174A68;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
  width: 270px;
  padding: 1rem 1rem;
  transition: 0.2s;
}
.contact form input[type=submit]:hover, .contact form input[type=button]:hover {
  opacity: 0.8;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .contact form input[type=submit], .contact form input[type=button] {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 480px) {
  .contact form input[type=submit], .contact form input[type=button] {
    font-size: 1rem;
    padding: 0.75rem 1rem;
  }
}
.contact form input[type=submit] {
  background-color: #0071AE;
  margin: 0 auto;
}
.contact form input[type=button] {
  background-color: #21094E;
  margin: 0 auto;
}
.contact .link_a {
  margin: auto;
  margin-top: 3rem;
}

.check_txt {
  line-height: 2;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .check_txt {
    font-size: 0.875rem;
  }
}

.contact_btn {
  max-width: 700px;
  margin: 3rem auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .contact_btn {
    justify-content: center;
    display: block;
  }
}
.contact_btn .btn {
  color: #ffffff;
  font-weight: 500;
  text-align: center;
  width: 320px;
  padding: 1rem 1rem;
  transition: 0.2s;
}
.contact_btn .btn:hover {
  opacity: 0.9;
}
@media screen and (max-width: 768px) {
  .contact_btn .btn:first-child {
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .contact_btn .btn {
    width: 320px;
  }
}
.contact_btn .btn p {
  color: #ffffff;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .contact_btn .btn p {
    font-size: 1.125rem;
  }
}
.contact_btn .btn p span {
  font-size: 0.625rem;
  margin-left: 0.5rem;
}
.contact_btn .btn_l {
  background-color: #174A68;
}
.contact_btn .btn_l img {
  width: 1.875rem;
}
.contact_btn .btn_r {
  background-color: #BEBEBE;
}
.contact_btn .btn_r img {
  width: 1rem;
}

.thx_txt {
  padding: 5rem 0;
  font-size: 1rem;
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 480px) {
  .thx_txt {
    font-size: 0.875rem;
  }
}

/* -----------------------------------
footer
----------------------------------- */
footer {

  background-size: cover;
  background-position: center;
}

.ft_contact {
  width: 100%;
  background-color: rgba(47, 65, 92, 0.8);
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
@media screen and (max-width: 480px) {
  .ft_contact {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.ft_contact .ft_contact_con {
  border-top: 1px solid #4D4D4D;
  border-bottom: 1px solid #4D4D4D;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 600px) {
  .ft_contact .ft_contact_con {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 480px) {
  .ft_contact .ft_contact_con {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.ft_contact .ft_contact_con .ft_mail {
  background: linear-gradient(to left, #f7fc5b, #f00c00);
  color: #ffffff;
  font-size: 1.875rem;
  text-align: center;
  width: 100%;
  max-width: 270px;
  padding: 1.125rem 0;
  line-height: 1.25;
  transition: 0.3s;
}
.ft_contact .ft_contact_con .ft_mail:hover {
  opacity: 0.8;
}
@media screen and (max-width: 600px) {
  .ft_contact .ft_contact_con .ft_mail {
    margin-bottom: 1rem;
  }
}
.ft_contact .ft_contact_con .ft_mail span {
  display: block;
  font-size: 0.875rem;
}
.ft_contact .ft_contact_con div {
  margin-left: 2rem;
}
.ft_contact .ft_contact_con div p {
  color: #ffffff;
}
.ft_contact .ft_contact_con div .ft_tel {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.ft_contact .ft_contact_con div .ft_tel_txt {
  font-size: 0.937rem;
}

.ft_con {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  padding-top: 4.25rem;
  padding-bottom: 2rem;
}
@media screen and (max-width: 480px) {
  .ft_con {
    padding-top: 2.5rem;
    padding-bottom: 1rem;
  }
}
.ft_con .ft_contents {
  width: 100%;
  max-width: 1120px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 3rem;
  border-bottom: 1px solid #A5A5A5;
}
@media screen and (max-width: 980px) {
  .ft_con .ft_contents {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (max-width: 480px) {
  .ft_con .ft_contents {
    padding-bottom: 0rem;
  }
}
@media screen and (max-width: 980px) {
  .ft_con .ft_contents .ft_logo {
    margin-bottom: 1rem;
  }
}
.ft_con .ft_contents .ft_logo a {
  display: block;
  transition: 0.3s;
}
.ft_con .ft_contents .ft_logo a:hover {
  opacity: 0.8;
}
.ft_con .ft_contents .ft_logo a img {
  width: 20rem;
}
@media screen and (max-width: 480px) {
  .ft_con .ft_contents .ft_logo a img {
    width: 80%;
    display: block;
    margin: auto;
  }
}
.ft_con .ft_contents .ft_menu {
  display: flex;
  margin-bottom: 2rem;
}
@media screen and (max-width: 680px) {
  .ft_con .ft_contents .ft_menu {
    flex-wrap: wrap;
    max-width: 350px;
    margin-top: 1rem;
    margin-bottom: 3rem;
  }
}
.ft_con .ft_contents .ft_menu li {
  margin-left: 3rem;
}
@media screen and (max-width: 1080px) {
  .ft_con .ft_contents .ft_menu li {
    margin-left: 2rem;
  }
}
@media screen and (max-width: 680px) {
  .ft_con .ft_contents .ft_menu li {
    margin-left: 0rem;
    width: 50%;
    display: block;
    margin-bottom: 0.5rem;
  }
}
.ft_con .ft_contents .ft_menu li a {
  font-size: 0.875rem;
  font-weight: 500;
  transition: 0.3s;
}
.ft_con .ft_contents .ft_menu li a:hover {
  color: #E85A24;
}
.ft_con .copyright {
  font-size: 0.812rem;
  font-weight: 500;
  text-align: center;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .ft_con .copyright {
    font-size: 0.625rem;
  }
}
@media screen and (max-width: 480px) {
  .ft_con .copyright {
    margin-top: 1rem;
  }
}

#page-top {
  position: fixed;
  z-index: 90;
  right: 30px;
}
@media screen and (max-width: 768px) {
  #page-top {
    right: 2%;
  }
}
#page-top a {
  display: block;
  text-decoration: none;
  transition: 300ms;
}
#page-top a img {
  width: 3rem;
  height: 3rem;
  padding: 0.25rem;
  display: block;
  margin: auto;
}
#page-top a p {
  text-align: center;
  font-size: 0.625rem;
  padding: 0 0.25rem;
  font-weight: bold;
}
#page-top a:hover {
  opacity: 0.8;
}
.bold{
  font-weight: bold;
}
.business .business_con .business_img01 {
  background-image: url(../images/top-1.jpg);
  margin-right: 10px;
}
.business .business_con .business_img02 {
  background-image: url(../images/top-3.jpg);
  margin-right: 650px;
}
@media screen and (max-width: 768px) {
  .business .business_con .business_img02 {
    background-image: url(../images/top-3.jpg);
    margin-right: 10px;
    margin-top: 0;
  }
}
/* .business .business_con .business_img02 {
  background-image: url(../images/2.png);
  margin-right: 20px;
} */
.business .business_con .business_img03 {
  background-image: url(../images/top-2.jpg);
  margin-right: 10px;
  height: 380px;
  max-width: 70%;
}
@media screen and (max-width: 400px) {
  .business .business_con .business_img03 {
    background-image: url(../images/top-2.jpg);
    margin-right: 80px;
    height: 260px;
  }
}

/* .business .business_con .business_img04 {
  background-image: url(../images/3.png);
  margin-right: 20px;
} */
#bg-video{
 position: fixed;
 right: 0;
 bottom: 0;
 min-width: 100%;
 min-height: 100%;
 width: auto;
 height: auto;
 z-index: -100;
 /* background: url('poster.jpg') no-repeat; */
 background-size: cover;
}
#bg-img{
  /* 画像ファイルの指定 */
    background-image: url(images/back.jpg);

    /* 画像を常に天地左右の中央に配置 */
    background-position: center center;

    /* 画像をタイル状に繰り返し表示しない */
    background-repeat: no-repeat;

    /* コンテンツの高さが画像の高さより大きい時、動かないように固定 */
    background-attachment: fixed;

    /* 表示するコンテナの大きさに基づいて、背景画像を調整 */
    background-size: cover;

    /* 背景画像が読み込まれる前に表示される背景のカラー */
    background-color: #464646;
    height: 100%;

}
.contact-select{
  display: block;
  box-shadow: none;
  outline: none;
  width: 100%;
  border: 1px solid #94D5FF;
  transition: 0.3s;
  font-size: 1.4rem;
}
/*
@media screen and (max-width: 768px) {
  #bg-video{
    display: none;
  }
  #bg-img{
    display: block;
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    /* background: url('poster.jpg') no-repeat; */
    /* background-size: cover; */
  /* } */
/* } */

.service_wrap {
  padding: 0 20px;
  padding-bottom: 120px;

}
@media screen and (max-width: 770px) {
  .service_wrap {
    padding: 0 0 80px 0;
  }
}
.service_wrap .service_con {
  position: relative;
  margin: 40px 0;
  padding: 110px 0 80px 0;
}
@media screen and (max-width: 770px) {
  .service_wrap .service_con {
    padding: 80px 0 120px 0;
  }
}
.service_wrap .service_con::before {
  content: "";
  background: #e3e3e3;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
}
.service_wrap .service_con .service_a {
  position: relative;
  padding: 240px 0 0 65%;
  margin-bottom: 180px;
}
.service_wrap .service_con .service_a::before {
  content: "";
  background: #202040;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: -110px;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
@media screen and (max-width: 770px) {
  .service_wrap .service_con .service_a::before {
    top: -80px;
  }
}
.service_wrap .service_con .service_a .service_a_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
}
.service_wrap .service_con .service_a h2 {
  position: absolute;
  top: 70px;
  right: 0;
  font-size: 10rem;
  color: #00bfff;
}
.service_wrap .service_con .service_a h3 {
  margin-bottom: 30px;
}
.service_wrap .service_con .service_a h3::before {
  content: "";
  display: block;
  position: absolute;
  width: 100px;
  height: 40px;
  right: 0;
  background-image: url(../images/shopify.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.service_wrap .service_con .service_a p {
  font-size: 1.4rem;
}
.service_wrap .service_con .service_a a {
  position: absolute;
  top: 380px;
  left: 5%;
}
@media screen and (max-width: 770px) {
  .service_wrap .service_con .service_a {
    padding: 0;
  }
  .service_wrap .service_con .service_a .service_a_img {
    position: relative;
    width: 95%;
    margin-bottom: 30px;
  }
  .service_wrap .service_con .service_a h2 {
    position: relative;
    top: 0;
    right: auto;
    font-size: 5rem;
    left: 5%;
    line-height: 1;
    margin-bottom: 15px;
    width: 95%;
  }
  .service_wrap .service_con .service_a h3 {
    padding: 0 15% 0 5%;
  }
  .service_wrap .service_con .service_a h3::before {
    width: 80px;
    height: 40px;
    right: 15%;
  }
  .service_wrap .service_con .service_a p {
    padding: 0 15% 0 5%;
  }
  .service_wrap .service_con .service_a p .sp_br {
    display: none;
  }
  .service_wrap .service_con .service_a a {
    position: relative;
    top: 40px;
    width: 190px;
    height: 50px;
  }
}
.service_wrap .service_con .service_b {
  position: relative;
  padding: 220px 65% 0 70px;
  margin-bottom: 180px;
}
.service_wrap .service_con .service_b .service_a_img {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height:1200px;
}
.service_wrap .service_con .service_b h2 {
  position: absolute;
  top: 70px;
  font-size: 7rem;
  color: red;
}
.service_wrap .service_con .service_b h3 {
  margin-bottom: 30px;
}
.service_wrap .service_con .service_b p {
  font-size: 1.4rem;
}
.service_wrap .service_con .service_b a {
  position: absolute;
  top: 380px;
  right: 5%;
}
@media screen and (max-width: 770px) {
  .service_wrap .service_con .service_b {
    padding: 0;
  }
  .service_wrap .service_con .service_b .service_a_img {
    position: relative;
    padding-left: 5%;
    width: 100%;
    margin-bottom: 30px;
  }
  .service_wrap .service_con .service_b h2 {
    position: relative;
    top: 0;
    right: auto;
    font-size: 5rem;
    left: 15%;
    line-height: 1;
    margin-bottom: 15px;
    width: 85%;
  }
  .service_wrap .service_con .service_b h3 {
    padding-left: 15%;
  }
  .service_wrap .service_con .service_b p {
    padding-left: 15%;
  }
  .service_wrap .service_con .service_b p .sp_br {
    display: none;
  }
  .service_wrap .service_con .service_b a {
    position: relative;
    top: 40px;
    width: 190px;
    height: 50px;
    left: 15%;
  }
}
.service_wrap .service_con .service_c {
  position: relative;
  padding: 260px 0 0 65%;
  margin-bottom: 0px;
}
.service_wrap .service_con .service_c::before {
  content: "";
  background: #202040;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  bottom: -90px;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
@media screen and (max-width: 770px) {
  .service_wrap .service_con .service_c::before {
    bottom: -130px;
  }
}
.service_wrap .service_con .service_c .service_a_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
}
.service_wrap .service_con .service_c h2 {
  text-align: right;
  position: absolute;
  top: 80px;
  font-size: 7rem;
  line-height: 1;
  color: red;
}
.service_wrap .service_con .service_c h3 {
  margin-bottom: 30px;
}
.service_wrap .service_con .service_c p {
  font-size: 1.4rem;
}
.service_wrap .service_con .service_c a {
  top: 50px !important;
  left: 5%;
}
@media screen and (max-width: 770px) {
  .service_wrap .service_con .service_c {
    padding: 0;
  }
  .service_wrap .service_con .service_c .service_a_img {
    position: relative;
    width: 95%;
    margin-bottom: 30px;
  }
  .service_wrap .service_con .service_c h2 {
    position: relative;
    top: 0;
    right: auto;
    font-size: 5rem;
    left: 5%;
    line-height: 1;
    margin-bottom: 15px;
    text-align: left;
    width: 95%;
  }
  .service_wrap .service_con .service_c h3 {
    padding: 0 15% 0 5%;
  }
  .service_wrap .service_con .service_c h3::before {
    width: 80px;
    height: 40px;
    right: 15%;
  }
  .service_wrap .service_con .service_c p {
    padding: 0 15% 0 5%;
  }
  .service_wrap .service_con .service_c p .sp_br {
    display: none;
  }
  .service_wrap .service_con .service_c a {
    position: relative;
    top: 40px;
    width: 190px;
    height: 50px;
  }
}
.annotate p {
  text-align: center;
  font-size: 50px;
  position: relative;
  letter-spacing: 0.2rem;
}
.annotate p::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 30px;
  height: 1px;
  background-color: #C3C3C3;
}

.sub_wrap {
  padding: 140px 0 160px 0;
  background-position: right;
  background-repeat: no-repeat;
  background-size: 50%;
  background-color: #000000;
}
.sub_wrap .sub_tit {
  padding: 50px 5%;
}
.sub_wrap .sub_tit h3 {
  font-weight: 400;
  line-height: 1.8;

}
.sub_wrap .sub_tit p {
  margin-top: 50px;
  line-height: 2.5;

}
@media screen and (max-width: 740px) {
  .sub_wrap {
    padding: 100px 0 20px 0;
    margin-bottom: 80px;
  }
  .sub_wrap .sub_tit p {
    margin-top: 40px;
    line-height: 2;
    text-align: left;
  }
}
@media screen and (max-width: 480px) {
  .sub_wrap {
    padding: 80px 0;
    margin-bottom: 20px;
  }
  .sub_wrap .sub_tit h3 {
    font-size: 1.8rem;
  }
  .sub_wrap .sub_tit p {
    font-size: 1.4rem;
    margin-top: 30px;
    line-height: 1.8;
  }
}
.contain_right{
  text-align: right;
  margin-top: 150px;
  margin-bottom:200px;
}
.top_content{
  margin-top: 200px!important;
}
.contain_right .txt{
  margin-left: 600px;
  text-align: left;
}
@media screen and (max-width: 786px) {
  .contain_right{
    text-align: right;
    margin-top: 150px;
    margin-bottom:200px;
  }
}
@media screen and (max-width: 786px) {
  .contain_right{
    margin-top: 0;
    margin-bottom:0;
  }
  .contain_right .txt{
    margin-left: 0;
    width: 100%;
    line-height: 2;
    margin-bottom: 3rem;
  }
}
.news_content{
  margin-bottom: 100px;
}
@media screen and (max-width: 786px) {
  .company_con {
    background-size: 75%;
  }

  .top_content{
    margin-top: 450px !important;
  }
}
@media screen and (max-width: 900px) {
  #company{
    margin-top: 800px;
  }
  .business .business_con .business_img03 {
    margin-right: 20px;
  }
}
@media screen and (max-width: 786px) {
  .business .business_con .business_img03 {
    margin-right: 80px;
  }
}
#business{
  display: block;
    padding-top: 70px;
    margin-top: -70px;
}
