@charset "UTF-8";
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  font-size: 1rem;
}

body {
  font-size: 1rem;
  font-weight: 400;
  color: #333333;
  background-color: #ccc;
  font-family: "Noto Serif JP", serif;
  line-height: 1.6;
}

.tel-link {
  cursor: text;
  text-decoration: none;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .tel-link {
    cursor: auto;
    text-decoration: none;
    pointer-events: auto;
  }
}

a {
  color: #2595EA;
  text-decoration: underline;
}

.fade-in {
  opacity: 0;
  transition-duration: 0.6s;
  transition-property: opacity, transform;
}

.fade-in-up {
  transform: translate(0, 40px);
}

.fade-in-down {
  transform: translate(0, -40px);
}

.fade-in-left {
  transform: translate(-40px, 0);
}

.fade-in-right {
  transform: translate(40px, 0);
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

.text-shadow {
  text-shadow: 1px 1px 2px #fff, -1px 1px 2px #fff, 1px -1px 2px #fff, -1px -1px 2px #fff;
}

.btn {
  display: block;
  color: #fff;
  background-color: #199164;
  font-size: 20px;
  letter-spacing: 0.22em;
  line-height: 1em;
  font-weight: bold;
  text-align: center;
  width: 240px;
  height: 60px;
  padding-top: 20px;
  margin: 60px auto 0;
  text-decoration: none;
  border-radius: 10px;
  transition: 0.4s all;
}
.btn:hover {
  opacity: 0.7;
}
.btn i {
  margin-left: 1rem;
}

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

@media screen and (min-width: 1441px) {
  .br_sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .br_sp {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .br_sp {
    display: none;
  }
}

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

@media screen and (min-width: 1441px) {
  .sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .sp {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .sp {
    display: none;
  }
}

.wide {
  max-width: 1140px;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .wide {
    max-width: 800px;
  }
}
@media screen and (max-width: 768px) {
  .wide {
    max-width: none;
  }
}

p {
  font-size: 1rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  p {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 768px) {
  p {
    font-size: 0.8rem;
  }
}

h1 {
  font-size: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h1 {
    font-size: 3vw;
  }
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 6vw;
  }
}

h2 {
  font-size: 1.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h2 {
    font-size: 2.3vw;
  }
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 4vw;
  }
}

h3 {
  font-size: 1.3vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h3 {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  h3 {
    font-size: 3vw;
  }
}

h4 {
  font-size: 1.2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h4 {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  h4 {
    font-size: 2vw;
  }
}

h5 {
  font-size: 1.2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h5 {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  h5 {
    font-size: 2vw;
  }
}

#lower {
  position: relative;
  margin-bottom: 2rem;
}
#lower .lower {
  height: 60vh;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #lower .lower {
    height: 40vh;
  }
}
@media screen and (max-width: 768px) {
  #lower .lower {
    height: 40vh;
    background-attachment: scroll;
  }
}
#lower .lower_contents {
  color: #1C2A3E;
  width: 80%;
  margin: auto;
  padding: 5rem 0 1rem 0;
}
@media screen and (max-width: 768px) {
  #lower .lower_contents {
    padding: 3rem 0 1rem 0;
  }
}
#lower .lower_contents .headline {
  font-size: 250%;
  font-weight: 600;
  text-shadow: 1px 1px 2px #fff, -1px 1px 2px #fff, 1px -1px 2px #fff, -1px -1px 2px #fff;
}
@media screen and (max-width: 768px) {
  #lower .lower_contents .headline {
    font-size: 160%;
  }
}
#lower .lower_contents p {
  font-size: 160%;
  text-shadow: 1px 1px 2px #fff, -1px 1px 2px #fff, 1px -1px 2px #fff, -1px -1px 2px #fff;
}
@media screen and (max-width: 768px) {
  #lower .lower_contents p {
    font-size: 120%;
  }
}

.lower_headline {
  color: #000;
  font-size: 200%;
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .lower_headline {
    padding: 1vw 0;
    padding-left: 1vw;
  }
}
@media screen and (max-width: 768px) {
  .lower_headline {
    padding: 2vw 0;
    padding-left: 2vw;
    font-size: 7vw;
    -webkit-clip-path: polygon(100% 0%, 95% 50%, 100% 100%, 0 99%, 0% 50%, 0 0);
            clip-path: polygon(100% 0%, 95% 50%, 100% 100%, 0 99%, 0% 50%, 0 0);
  }
}

.back-to-top {
  display: none;
  position: fixed;
  z-index: 9999;
  right: 3%;
  bottom: 5%;
  color: #ffffff;
  padding: 2rem;
  font-size: 2.5vw;
  border-radius: 50px;
  display: inline-block;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .back-to-top {
    display: none !important;
  }
}

.topBtnSp {
  display: block !important;
  position: relative;
  top: 0;
  left: 0;
  color: #ffffff;
  padding: 1rem;
  font-size: 3vw;
  width: 100% !important;
  text-decoration: none;
  background: rgb(28, 42, 62);
  text-align: center;
}
@media screen and (min-width: 1441px) {
  .topBtnSp {
    display: none !important;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .topBtnSp {
    display: none !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .topBtnSp {
    display: none !important;
  }
}
.topBtnSp::before {
  width: 100% !important;
  height: 20vw !important;
  border-radius: 0 !important;
}
.topBtnSp i {
  font-size: 4vw;
  line-height: auto;
}
.topBtnSp p {
  font-size: 3vw;
}

.back-to-top::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 60px;
  height: 60px;
  background: rgb(28, 42, 62);
  box-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3), 1px -1px 2px rgba(255, 255, 255, 0.3), -1px 1px 2px rgba(255, 255, 255, 0.3), -1px -1px 2px rgba(255, 255, 255, 0.3);
  z-index: -1;
}

.loading {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background-color: #ccc;
  font-size: 30px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 100;
}
.loading .loading_text {
  width: 50vw;
  height: 50vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
.loading .loadingText {
  animation: 0.5s flashing infinite;
  color: #333333;
  font-size: 1.2vw;
}
@media screen and (max-width: 768px) {
  .loading .loadingText {
    font-size: 3.3vw;
  }
}

.spinner-box {
  width: 300px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}
.spinner-box .pulse-container {
  width: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.spinner-box .pulse-container .pulse-bubble {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #000;
}
.spinner-box .pulse-container .pulse-bubble-1 {
  animation: pulse 0.4s ease 0s infinite alternate;
}
.spinner-box .pulse-container .pulse-bubble-2 {
  animation: pulse 0.4s ease 0.2s infinite alternate;
}
.spinner-box .pulse-container .pulse-bubble-3 {
  animation: pulse 0.4s ease 0.4s infinite alternate;
}

@keyframes pulse {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0.25;
    transform: scale(0.75);
  }
}
.loading.active {
  opacity: 1;
  visibility: visible;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
}
header #header_pc {
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: 1rem auto 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  header #header_pc {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  header #header_pc {
    display: none;
  }
}
header #header_pc .header_logo {
  width: 30%;
  padding: 1rem 1.5rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  header #header_pc .header_logo {
    width: 30%;
  }
}
header #header_pc .header_logo a {
  display: block;
}
header #header_pc .header_logo a img {
  width: 100%;
  display: block;
}
header #header_pc .header_menu {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  padding: 1rem;
}
header #header_pc .header_menu ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
header #header_pc .header_menu ul li {
  height: 100%;
  font-weight: 600;
  margin: 0 0.5rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  header #header_pc .header_menu ul li {
    margin: 0;
  }
}
header #header_pc .header_menu ul li.header_contact {
  padding: 0 1rem;
}
header #header_pc .header_menu ul li.header_contact a {
  color: #fff;
  background-color: #1C2A3E;
  border: solid 1px #000;
  border-radius: 10px;
  transition: all 0.4s;
}
header #header_pc .header_menu ul li.header_contact a:hover {
  color: #000;
  background-color: #fff;
}
header #header_pc .header_menu ul li a {
  display: block;
  height: 100%;
  text-decoration: none;
  color: #1C2A3E;
  position: relative;
  padding: 0.5vw 1vw;
  transition: all 0.4s;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  header #header_pc .header_menu ul li a {
    font-size: 92%;
  }
}
header #header_pc .header_menu ul li a:hover {
  color: #000;
}
header #header_pc .header_menu ul li a.current {
  color: #000;
}
header #header_pc .header_menu ul li .new_twitter:before {
  content: "𝕏" !important;
  font-family: sans-serif !important;
  font-weight: bold;
}
header #header_pc.change-color {
  background-color: #fff;
  border-radius: 10px;
  transition: 0.4s;
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.075));
}
@media screen and (min-width: 1441px) {
  header #header_sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  header #header_sp {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  header #header_sp {
    display: none;
  }
}
header #header_sp .header_sp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1vw 4vw;
  height: 60px;
  margin-top: 0.5rem;
}
header #header_sp .header_sp .header_logo {
  width: 60vw;
}
header #header_sp .header_sp .header_logo img {
  width: 100%;
}
header #header_sp .header_sp_top {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 9999;
}
header #header_sp .header_sp_top ul {
  list-style: none;
}
header #header_sp .header_sp_top ul li a {
  text-decoration: none;
  color: #fff;
}
header #header_sp .header_sp_top ul li a .header_icon {
  text-align: center;
  margin-bottom: 2vw;
  height: 8vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
header #header_sp .header_sp_top ul li a .header_icon i {
  font-size: 6vw;
}

/*　ハンバーガーボタン　*/
.hamburger {
  display: block;
  z-index: 10005;
  width: 50px;
  height: 50px;
  cursor: pointer;
  text-align: center;
  position: relative;
  background: rgba(28, 42, 62, 0.9);
}

.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: #fff;
  transition: 0.3s ease-in-out;
}

.hamburger p {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translate(-50%, 0);
  color: #fff;
}

.hamburger span:nth-child(1) {
  top: 5px;
  left: 50%;
  transform: translate(-50%, 0);
}

.hamburger span:nth-child(2) {
  top: 15px;
  left: 50%;
  transform: translate(-50%, 0);
}

.hamburger span:nth-child(3) {
  top: 25px;
  left: 50%;
  transform: translate(-50%, 0);
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 16px;
  left: 15px;
  background: #fff;
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  left: 15px;
  background: #fff;
  transform: rotate(45deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  color: #fff;
  background: rgba(28, 42, 62, 0.9);
  text-align: center;
  width: 100%;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  padding: 5vw 3vw;
  overflow: auto;
}

nav.globalMenuSp .ul {
  margin: auto;
  margin-top: 0 !important;
  margin-bottom: 4vw !important;
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}
nav.globalMenuSp .ul .new_twitter:before {
  content: "𝕏" !important;
  font-family: sans-serif !important;
  font-weight: bold;
}

.sns {
  justify-content: center !important;
}

nav.globalMenuSp .ul li {
  list-style-type: none;
  padding: 0;
  width: 45%;
  transition: 0.4s all;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  nav.globalMenuSp .ul li {
    width: 90%;
  }
}

nav.globalMenuSp .ul li:last-child {
  padding-bottom: 0;
}

nav.globalMenuSp .ul li a {
  display: block;
  color: #fff;
  padding: 1em 0;
  font-size: 1rem;
  padding: 0 4vw;
  padding-bottom: 1rem;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  nav.globalMenuSp .ul li a {
    border-bottom: none;
  }
}
nav.globalMenuSp .ul li a i {
  margin-right: 2vw;
}

nav.globalMenuSp ul.sns {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
nav.globalMenuSp ul.sns li {
  text-align: center;
  width: 20%;
}

.header_sp_policy {
  text-align: center;
  margin-bottom: 8vw;
}
.header_sp_policy a {
  text-decoration: none;
  color: #fff;
  font-size: 3.5vw;
  padding: 0 4vw;
  padding-bottom: 2vw;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  .header_sp_policy a {
    border-bottom: none;
  }
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  opacity: 100;
  visibility: visible;
  padding-top: 40px;
}

#top_main {
  position: relative;
}
#top_main .top_main {
  height: 100vh;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_main .top_main {
    height: 70vh;
  }
}
@media screen and (max-width: 768px) {
  #top_main .top_main {
    height: 60vh;
  }
}
#top_main .top_main .slider {
  overflow: hidden;
  margin: auto;
  height: 100%;
}
#top_main .top_main .slider .slick-list {
  width: 100%;
  margin: auto;
}
#top_main .top_main .slider .slick-list .slick-track {
  width: 100%;
}
#top_main .top_main .slider .slick-list .slick-track .slick-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100vh;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_main .top_main .slider .slick-list .slick-track .slick-img img {
    height: 70vh;
  }
}
@media screen and (max-width: 768px) {
  #top_main .top_main .slider .slick-list .slick-track .slick-img img {
    height: 60vh;
  }
}
#top_main #top_text_contents {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
}
@media screen and (max-width: 768px) {
  #top_main #top_text_contents {
    bottom: 1rem;
    left: 1rem;
  }
}
#top_main #top_text_contents #top_text #top_text01 {
  font-size: 4rem;
  color: #fff;
  font-weight: 600;
  text-shadow: 1px 2px 3px #808080;
}
@media screen and (max-width: 768px) {
  #top_main #top_text_contents #top_text #top_text01 {
    font-size: 1.8rem;
  }
}
#top_main #top_text_contents #top_text #top_text02 {
  font-size: 2.2rem;
  color: #fff;
  font-weight: 500;
  text-shadow: 1px 2px 3px #808080;
}
@media screen and (max-width: 768px) {
  #top_main #top_text_contents #top_text #top_text02 {
    font-size: 5vw;
  }
}

#greeting {
  padding: 5rem 0 0rem 0;
  background-color: #ccc;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #greeting {
    padding: 3rem 0;
  }
}
#greeting #greeting_text_eria {
  padding: 3rem;
  background-color: #fff;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 80%;
  margin: auto;
  line-height: 2;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #greeting #greeting_text_eria {
    width: 90%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #greeting #greeting_text_eria {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #greeting #greeting_text_eria {
    flex-flow: column;
    width: 90%;
    padding: 1rem;
  }
}
#greeting #greeting_text_eria h1 {
  width: 100%;
  color: #000;
  font-size: 300%;
  font-weight: 500;
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin-bottom: -1rem;
}
@media screen and (max-width: 768px) {
  #greeting #greeting_text_eria h1 {
    font-size: 1.5rem;
    margin-bottom: -0.5rem;
  }
}
#greeting #greeting_text_eria #greeting_text_left {
  width: 30%;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #greeting #greeting_text_eria #greeting_text_left {
    width: 35%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #greeting #greeting_text_eria #greeting_text_left {
    width: 50%;
    padding-left: 5%;
  }
}
@media screen and (max-width: 768px) {
  #greeting #greeting_text_eria #greeting_text_left {
    width: 100%;
    padding-top: 1rem;
  }
}
#greeting #greeting_text_eria #greeting_text_left p {
  color: #000;
  font-size: 130%;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  #greeting #greeting_text_eria #greeting_text_left p {
    font-size: 1rem;
  }
}
#greeting #greeting_text_eria #greeting_text_left p a {
  font-size: 80%;
  border: solid 1px #333;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  padding: 1rem 4rem;
  display: table;
  margin-top: 2rem;
  transition: all 0.4s;
}
#greeting #greeting_text_eria #greeting_text_left p a:hover {
  opacity: 0.7;
}
#greeting #greeting_text_eria #greeting_text_left p a i {
  padding-left: 5px;
}
@media screen and (max-width: 768px) {
  #greeting #greeting_text_eria #greeting_text_left p a {
    width: 100%;
    text-align: center;
    padding: 1rem 0;
  }
}
#greeting #greeting_text_eria #greeting_text_left p .pc_link {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  #greeting #greeting_text_eria #greeting_text_left p .pc_link {
    display: none;
  }
}
#greeting #greeting_text_eria #greeting_text_right {
  width: 70%;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #greeting #greeting_text_eria #greeting_text_right {
    width: 65%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #greeting #greeting_text_eria #greeting_text_right {
    width: 50%;
    padding-left: 5%;
  }
}
@media screen and (max-width: 768px) {
  #greeting #greeting_text_eria #greeting_text_right {
    width: 100%;
    padding-top: 1rem;
  }
}
#greeting #greeting_text_eria #greeting_text_right p {
  color: #333;
}
#greeting #greeting_text_eria #greeting_text_right p a {
  font-size: 80%;
  border: solid 1px #333;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  padding: 1rem 4rem;
  display: table;
  margin-top: 2rem;
  transition: all 0.4s;
}
#greeting #greeting_text_eria #greeting_text_right p a:hover {
  opacity: 0.7;
}
#greeting #greeting_text_eria #greeting_text_right p a i {
  padding-left: 5px;
}
@media screen and (max-width: 768px) {
  #greeting #greeting_text_eria #greeting_text_right p a {
    width: 100%;
    text-align: center;
    padding: 1rem 0;
  }
}
#greeting #greeting_text_eria #greeting_text_right p .sp_link {
  display: none;
}
@media screen and (max-width: 768px) {
  #greeting #greeting_text_eria #greeting_text_right p .sp_link {
    display: block;
  }
}
#greeting #top_greeting_img {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 50vh;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  #greeting #top_greeting_img {
    background-attachment: scroll;
  }
}
#greeting #top_greeting_img .greeting_mask {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 20;
}

#top_biz {
  margin: 3rem 0;
  background-color: #ccc;
  overflow: hidden;
}
#top_biz #top_biz_text_eria {
  padding: 2rem;
  background-color: #fff;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 80%;
  margin: auto;
  line-height: 2;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #top_biz #top_biz_text_eria {
    width: 90%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_biz #top_biz_text_eria {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #top_biz #top_biz_text_eria {
    flex-flow: column;
    width: 90%;
    margin-bottom: 3rem;
  }
}
#top_biz #top_biz_text_eria h1 {
  width: 100%;
  color: #000;
  font-size: 300%;
  font-weight: 600;
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin-bottom: -1rem;
}
@media screen and (max-width: 768px) {
  #top_biz #top_biz_text_eria h1 {
    font-size: 200%;
  }
}
#top_biz #top_biz_text_eria #top_biz_text_left {
  width: 30%;
}
@media screen and (max-width: 768px) {
  #top_biz #top_biz_text_eria #top_biz_text_left {
    width: 100%;
  }
}
#top_biz #top_biz_text_eria #top_biz_text_left p {
  color: #000;
  font-size: 130%;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  #top_biz #top_biz_text_eria #top_biz_text_left p {
    font-size: 100%;
  }
}
#top_biz #top_biz_text_eria #top_biz_text_left p a {
  font-size: 80%;
  border: solid 1px #333;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  padding: 1rem 4rem;
  display: table;
  margin-top: 2rem;
  transition: all 0.4s;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #top_biz #top_biz_text_eria #top_biz_text_left p a {
    padding: 1rem 2rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_biz #top_biz_text_eria #top_biz_text_left p a {
    padding: 1rem 2rem;
  }
}
#top_biz #top_biz_text_eria #top_biz_text_left p a:hover {
  opacity: 0.7;
}
#top_biz #top_biz_text_eria #top_biz_text_left p a i {
  padding-left: 5px;
}
@media screen and (max-width: 768px) {
  #top_biz #top_biz_text_eria #top_biz_text_left p a {
    width: 100%;
    padding: 1rem 0rem;
    text-align: center;
  }
}
#top_biz #top_biz_text_eria #top_biz_text_right {
  width: 70%;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #top_biz #top_biz_text_eria #top_biz_text_right {
    width: 70%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_biz #top_biz_text_eria #top_biz_text_right {
    width: 70%;
    padding-left: 5%;
  }
}
@media screen and (max-width: 768px) {
  #top_biz #top_biz_text_eria #top_biz_text_right {
    width: 100%;
    padding-top: 1rem;
  }
}
#top_biz #top_biz_text_eria #top_biz_text_right h2 {
  color: #333;
  font-size: 200%;
  font-weight: 600;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  #top_biz #top_biz_text_eria #top_biz_text_right h2 {
    font-size: 160%;
  }
}
#top_biz #top_biz_text_eria #top_biz_text_right h3 {
  color: #000;
  font-size: 120%;
  font-weight: 600;
  margin-bottom: 1rem;
}
#top_biz #top_biz_text_eria #top_biz_text_right p {
  color: #333;
}
#top_biz ul {
  display: flex;
  width: 80%;
  margin: 5rem auto 0 auto;
  line-height: 2;
  list-style: none;
  justify-content: space-between;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #top_biz ul {
    width: 90%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_biz ul {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #top_biz ul {
    flex-flow: column;
    width: 90%;
    margin: 0 auto 0 auto;
  }
}
#top_biz ul li {
  width: 32%;
}
@media screen and (max-width: 768px) {
  #top_biz ul li {
    width: 100%;
  }
}
#top_biz ul li a {
  background-size: cover;
  height: 20vw;
  display: block;
  position: relative;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  #top_biz ul li a {
    height: 40vh;
    margin-bottom: 3rem;
  }
}
#top_biz ul li a span {
  position: absolute;
  left: 15%;
  bottom: -10%;
  font-weight: 800;
  padding: 0.5rem;
  color: #333;
  background-color: #fff;
  width: 70%;
  margin: 0 auto;
  text-align: center;
  border-radius: 5px;
  border: solid 3px #333;
}
#top_biz .row {
  overflow: hidden;
}
#top_biz .row .autoplay-slider {
  display: flex;
  width: 100%;
  list-style: none;
}
@media screen and (max-width: 768px) {
  #top_biz .row .autoplay-slider {
    display: -webkit-inline-box !important;
  }
}
#top_biz .row .slide {
  height: 20vw;
  width: 250px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #top_biz .row .slide {
    width: 150px;
  }
}
#top_biz .row .slide .top_about_image_bg {
  height: 20vw;
  background-size: cover;
}
@media screen and (min-width: 1441px) {
  #top_biz .row .slide .top_about_image_bg {
    height: 15vw;
  }
}
@keyframes sliderAnimation {
  100% {
    transform: translateX(-50%);
  }
}
#top_biz .row .autoplay-slider {
  display: flex;
  min-width: 100%;
  width: -moz-min-content;
  width: min-content;
  animation: 30s linear infinite sliderAnimation;
}

#flex_contents {
  padding: 0rem 0 5rem 0;
}
@media screen and (max-width: 768px) {
  #flex_contents {
    padding: 0rem 0 3rem 0;
  }
}
#flex_contents .flex_contents {
  width: 80%;
  margin: 5rem auto 0 autO;
  line-height: 2;
  list-style: none;
  justify-content: space-around;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #flex_contents .flex_contents {
    width: 90%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #flex_contents .flex_contents {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #flex_contents .flex_contents {
    flex-flow: column;
    width: 90%;
  }
}
#flex_contents .flex_contents ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  list-style: none;
}
@media screen and (max-width: 768px) {
  #flex_contents .flex_contents ul {
    height: auto;
  }
}
#flex_contents .flex_contents ul li {
  width: 48%;
}
@media screen and (max-width: 768px) {
  #flex_contents .flex_contents ul li {
    width: 100%;
    margin: 0;
    margin-bottom: 3rem;
  }
}
#flex_contents .flex_contents ul li a {
  width: 100%;
  height: 25vh;
  display: block;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  transition: 0.4s all;
}
@media screen and (max-width: 768px) {
  #flex_contents .flex_contents ul li a {
    height: 40vh;
  }
}
#flex_contents .flex_contents ul li a .link_img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transition: 0.4s all;
}
#flex_contents .flex_contents ul li a .link_img:hover {
  transform: scale(1.1);
}
#flex_contents .flex_contents ul li .link_title {
  display: block;
  background-color: #fff;
  padding: 1rem;
}
#flex_contents .flex_contents ul li .link_title h2 {
  color: #333;
  font-size: 1.5em;
}
#flex_contents .flex_contents ul li .link_title h2 span {
  color: #888;
  display: block;
  margin-top: -0.8rem;
}
@media screen and (max-width: 768px) {
  #flex_contents .flex_contents ul li .link_title h2 span {
    font-size: 1rem;
  }
}
#flex_contents .flex_contents ul li .link_title p {
  font-size: 1rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #flex_contents .flex_contents ul li .link_title p {
    font-size: 0.8rem !important;
  }
}
@media screen and (max-width: 768px) {
  #flex_contents .flex_contents ul li .link_title p {
    font-size: 0.8rem !important;
  }
}
#flex_contents .top_aboutus_contents {
  display: flex;
  width: 80%;
  margin: 0 auto;
  line-height: 2;
  list-style: none;
  justify-content: space-between;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #flex_contents .top_aboutus_contents {
    width: 90%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #flex_contents .top_aboutus_contents {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #flex_contents .top_aboutus_contents {
    width: 90%;
  }
}
#flex_contents .top_aboutus_contents .link_title h2 {
  width: 100%;
  color: #000;
  font-size: 450%;
  font-weight: 600;
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin-bottom: -1rem;
}
#flex_contents .top_aboutus_contents .link_title h2:after {
  content: "";
  position: absolute;
  top: 55%;
  display: inline-block;
  width: 100%;
  height: 2px;
  left: 22rem;
  background-color: #000;
}
@media screen and (max-width: 768px) {
  #flex_contents .top_aboutus_contents .link_title h2 {
    font-size: 200%;
  }
}
#flex_contents .top_aboutus_contents .link_title h3 {
  color: #000;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  #flex_contents .top_aboutus_contents .link_title h3 {
    font-size: 1rem;
  }
}

#top_recruit {
  background-size: cover;
  margin-bottom: 8vw;
  background-position: center;
  padding: 3rem 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #top_recruit {
    padding: 3rem 0;
  }
}
#top_recruit #top_recruit_text_eria {
  padding: 2rem 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 50%;
  line-height: 2;
  background-color: rgba(255, 255, 255, 0.75);
  text-align: center;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #top_recruit #top_recruit_text_eria {
    width: 60%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_recruit #top_recruit_text_eria {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  #top_recruit #top_recruit_text_eria {
    flex-flow: column;
    width: 90%;
    margin: 0 auto;
    padding: 1rem;
  }
}
#top_recruit #top_recruit_text_eria h1 {
  width: 100%;
  color: #000;
  font-size: 300%;
  font-weight: 500;
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin-bottom: -1rem;
}
@media screen and (max-width: 768px) {
  #top_recruit #top_recruit_text_eria h1 {
    font-size: 160%;
    margin-bottom: 0rem;
  }
}
#top_recruit #top_recruit_text_eria #top_recruit_text_left {
  width: 100%;
}
#top_recruit #top_recruit_text_eria #top_recruit_text_left p {
  color: #888;
  font-size: 130%;
  font-weight: 500;
}
#top_recruit #top_recruit_text_eria #top_recruit_text_left p a {
  font-size: 80%;
  border: solid 1px #333;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  padding: 1rem 4rem;
  display: table;
  margin-top: 2rem;
  transition: all 0.4s;
}
#top_recruit #top_recruit_text_eria #top_recruit_text_left p a:hover {
  opacity: 0.7;
}
#top_recruit #top_recruit_text_eria #top_recruit_text_left p a i {
  padding-left: 5px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_recruit #top_recruit_text_eria #top_recruit_text_left p a {
    padding: 1rem 2rem;
  }
}
@media screen and (max-width: 768px) {
  #top_recruit #top_recruit_text_eria #top_recruit_text_left p a {
    width: 100%;
    text-align: center;
    padding: 1rem 0rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
#top_recruit #top_recruit_text_eria #top_recruit_text_right {
  width: 70%;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #top_recruit #top_recruit_text_eria #top_recruit_text_right {
    width: 70%;
    padding-left: 5%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_recruit #top_recruit_text_eria #top_recruit_text_right {
    width: 70%;
    padding-left: 5%;
  }
}
@media screen and (max-width: 768px) {
  #top_recruit #top_recruit_text_eria #top_recruit_text_right {
    width: 100%;
    padding-top: 0rem;
  }
}
#top_recruit #top_recruit_text_eria #top_recruit_text_right p {
  color: #333;
}
#top_recruit #top_recruit_text_eria #top_recruit_link p {
  color: #333;
  font-size: 0.8rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  #top_recruit #top_recruit_text_eria #top_recruit_link p {
    text-align: left;
  }
}
#top_recruit #top_recruit_text_eria #top_recruit_link p a {
  font-size: 80%;
  border: solid 1px #333;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  padding: 1rem 4rem;
  margin: 1rem auto;
  display: table;
  margin-top: 2rem;
  transition: all 0.4s;
}
#top_recruit #top_recruit_text_eria #top_recruit_link p a:hover {
  opacity: 0.7;
}
#top_recruit #top_recruit_text_eria #top_recruit_link p a i {
  padding-left: 5px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_recruit #top_recruit_text_eria #top_recruit_link p a {
    padding: 1rem 2rem;
  }
}
@media screen and (max-width: 768px) {
  #top_recruit #top_recruit_text_eria #top_recruit_link p a {
    width: 100%;
    text-align: center;
    padding: 1rem 0rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
#top_recruit #top_recruit_img {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 50vh;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  #top_recruit #top_recruit_img {
    background-attachment: scroll;
  }
}
#top_recruit #top_recruit_img .recruit_mask {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 20;
}

#top_company {
  background-size: cover;
  margin-bottom: 8vw;
  background-position: center;
  padding: 3rem 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #top_company {
    padding: 3rem 0;
  }
}
#top_company #top_company_text_eria {
  padding: 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 50%;
  line-height: 2;
  background-color: rgba(255, 255, 255, 0.75);
  text-align: center;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #top_company #top_company_text_eria {
    width: 60%;
    margin-left: 40%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_company #top_company_text_eria {
    width: 60%;
    margin-left: 40%;
  }
}
@media screen and (max-width: 768px) {
  #top_company #top_company_text_eria {
    flex-flow: column;
    width: 90%;
    padding: 1rem;
  }
}
#top_company #top_company_text_eria h1 {
  width: 100%;
  color: #000;
  font-size: 300%;
  font-weight: 500;
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin-bottom: -1rem;
}
@media screen and (max-width: 768px) {
  #top_company #top_company_text_eria h1 {
    font-size: 160%;
    margin-bottom: 0rem;
  }
}
#top_company #top_company_text_eria #top_company_text_left {
  width: 100%;
}
#top_company #top_company_text_eria #top_company_text_left p {
  color: #888;
  font-size: 130%;
  font-weight: 500;
}
#top_company #top_company_text_eria #top_company_text_left p a {
  font-size: 80%;
  border: solid 1px #333;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  padding: 1rem 4rem;
  display: table;
  margin-top: 2rem;
  transition: all 0.4s;
}
#top_company #top_company_text_eria #top_company_text_left p a:hover {
  opacity: 0.7;
}
#top_company #top_company_text_eria #top_company_text_left p a i {
  padding-left: 5px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_company #top_company_text_eria #top_company_text_left p a {
    padding: 1rem 2rem;
  }
}
@media screen and (max-width: 768px) {
  #top_company #top_company_text_eria #top_company_text_left p a {
    width: 100%;
    text-align: center;
    padding: 1rem 0rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
#top_company #top_company_text_eria #top_company_text_right {
  width: 70%;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #top_company #top_company_text_eria #top_company_text_right {
    width: 70%;
    padding-left: 5%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_company #top_company_text_eria #top_company_text_right {
    width: 70%;
    padding-left: 5%;
  }
}
@media screen and (max-width: 768px) {
  #top_company #top_company_text_eria #top_company_text_right {
    width: 100%;
    padding-top: 0rem;
  }
}
#top_company #top_company_text_eria #top_company_text_right p {
  color: #333;
}
#top_company #top_company_text_eria #top_company_link {
  width: 100%;
}
#top_company #top_company_text_eria #top_company_link p {
  color: #333;
  font-size: 100%;
  font-weight: 500;
}
#top_company #top_company_text_eria #top_company_link p a {
  font-size: 80%;
  border: solid 1px #333;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  padding: 1rem 4rem;
  display: table;
  margin-top: 2rem;
  transition: all 0.4s;
  margin: 1rem auto;
}
#top_company #top_company_text_eria #top_company_link p a:hover {
  opacity: 0.7;
}
#top_company #top_company_text_eria #top_company_link p a i {
  padding-left: 5px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_company #top_company_text_eria #top_company_link p a {
    padding: 1rem 2rem;
  }
}
@media screen and (max-width: 768px) {
  #top_company #top_company_text_eria #top_company_link p a {
    width: 100%;
    text-align: center;
    padding: 1rem 0rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
#top_company #top_company_img {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 50vh;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  #top_company #top_company_img {
    background-attachment: scroll;
  }
}
#top_company #top_company_img .company_mask {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 20;
}

#top_news {
  background-color: #fff;
  padding: 5rem 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #top_news {
    padding: 3rem 0;
  }
}
#top_news .top_news {
  width: 80%;
  margin: auto;
  border-radius: 10px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  #top_news .top_news {
    width: 90%;
  }
}
#top_news .top_news .top_headline {
  margin-bottom: 3rem;
}
#top_news .top_news .top_headline h1 {
  color: #1C2A3E;
  font-size: 3rem;
  font-weight: 600;
}
#top_news .top_news .top_headline p {
  color: #1C2A3E;
  font-size: 130%;
  font-weight: 600;
}
#top_news .top_news .top_news_contents {
  margin-bottom: 2rem;
}
#top_news .top_news .top_news_contents ul {
  list-style: none;
  border-top: 1px solid #1C2A3E;
  margin-bottom: 0.5vw;
}
#top_news .top_news .top_news_contents ul a {
  color: #1C2A3E;
  text-decoration: none;
}
#top_news .top_news .top_news_contents ul a:hover .news_link_btn {
  color: #1C2A3E;
  background-color: #fff;
}
#top_news .top_news .top_news_contents ul a li {
  border-bottom: 1px solid #1C2A3E;
  padding: 1.5rem 0;
}
@media screen and (max-width: 768px) {
  #top_news .top_news .top_news_contents ul a li {
    padding: 1rem 0;
  }
}
#top_news .top_news .top_news_contents ul a li .outline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
#top_news .top_news .top_news_contents ul a li .outline .list {
  width: 70%;
}
#top_news .top_news .top_news_contents ul a li .outline .list .date {
  color: #1C2A3E;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  #top_news .top_news .top_news_contents ul a li .outline .list .date {
    padding: 0.25rem 0;
  }
}
#top_news .top_news .top_news_contents ul a li .outline .list .title {
  color: #1C2A3E;
  font-size: 1rem;
  transition: all 0.4s;
}
#top_news .top_news .top_news_contents ul a .news_arrow {
  width: auto;
  text-align: right;
  color: #1C2A3E;
}
@media screen and (max-width: 768px) {
  #top_news .top_news .top_news_contents ul a .news_arrow {
    display: none;
  }
}
#top_news .top_news .top_news_contents ul a .news_arrow .news_link_btn {
  color: #1C2A3E;
  background-color: #fff;
  border: 1px solid #1C2A3E;
  padding: 0.5rem 2rem;
  border-radius: 10px;
  z-index: 15;
  transition: 0.4s all;
}
#top_news .top_news .top_news_contents ul a .news_arrow .news_link_btn i {
  font-size: 140%;
}
#top_news .top_news .top_news_contents ul a:hover .news_arrow .news_link_btn {
  color: #fff;
  background-color: #1C2A3E;
}
#top_news .top_news .top_news_btn {
  text-align: right;
}
#top_news .top_news .top_news_btn a {
  color: #fff;
  background-color: #1C2A3E;
  text-decoration: none;
  padding: 0.5rem 2rem;
  border-radius: 10px;
  transition: all 0.4s;
}
#top_news .top_news .top_news_btn a:hover {
  color: #1C2A3E;
  background-color: #fff;
  border: 1px solid #1C2A3E;
}

#works {
  background-color: #fff;
  padding-bottom: 2rem;
}
#works .works {
  width: 90%;
  margin: auto;
}
#works .works .works_text {
  margin-bottom: 2rem;
}
#works .works .works_text p {
  text-align: center;
}
@media screen and (max-width: 768px) {
  #works .works .works_text p {
    text-align: left;
  }
}
#works .works .works_contents h3 {
  padding-top: 2rem;
}
#works .works .works_contents .works_group {
  background-color: #f7f7f7;
  margin: 2rem 0;
}
#works .works .works_contents .works_group h4 {
  font-size: 150%;
  text-align: center;
  padding: 1rem 0;
}
#works .works .works_contents .works_group p {
  text-align: center;
  margin-bottom: 1rem;
}
#works .works .works_contents .works_group ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #works .works .works_contents .works_group ul {
    flex-flow: column;
  }
}
#works .works .works_contents .works_group ul li {
  width: 30%;
  margin: 1%;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  #works .works .works_contents .works_group ul li {
    width: 100%;
    margin-bottom: 8vw;
  }
}
#works .works .works_contents .works_group ul li a {
  display: block;
  height: 20vw;
  background-size: cover;
  background-position: center;
}
#works .works .works_contents .works_group ul li .thumb {
  width: 100%;
  margin-bottom: 1vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  #works .works .works_contents .works_group ul li .thumb {
    height: 50vw;
    margin-bottom: 2vw;
  }
}
#works .works .works_contents .works_group ul li .thumb::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.2s;
  background-color: rgba(0, 0, 0, 0);
}
#works .works .works_contents .works_group ul li .thumb:hover::after {
  background-color: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}
#works .works .works_contents .works_group ul li .thumb img {
  display: block;
  width: 100%;
  height: 20vw;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  #works .works .works_contents .works_group ul li .thumb img {
    height: 50vw;
    margin-bottom: 2vw;
  }
}
#works .works .works_contents .works_group ul li .thumb .search {
  position: absolute;
  top: 4%;
  right: 1%;
  z-index: 10;
}
#works .works .works_contents .works_group ul li .thumb .search i {
  transition: all 0.4s;
  font-size: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #works .works .works_contents .works_group ul li .thumb .search i {
    font-size: 3vw;
  }
}
@media screen and (max-width: 768px) {
  #works .works .works_contents .works_group ul li .thumb .search i {
    font-size: 6vw;
  }
}
#works .works .works_contents .works_group ul li .title h4 {
  font-weight: 600;
  margin-bottom: 0.5vw;
  font-size: 1.2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #works .works .works_contents .works_group ul li .title h4 {
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  #works .works .works_contents .works_group ul li .title h4 {
    font-size: 4vw;
    margin-bottom: 2vw;
  }
}
#works .works .works_contents .works_group ul li .text p {
  font-size: 1vw;
}
@media screen and (max-width: 768px) {
  #works .works .works_contents .works_group ul li .text p {
    font-size: 3.3vw;
  }
}
#works .works .works_contents .works_group .ba li {
  width: 45%;
  padding: 1vw;
}
@media screen and (max-width: 768px) {
  #works .works .works_contents .works_group .ba li {
    width: 100%;
    padding: 3vw;
    margin-bottom: 8vw;
  }
}
#works .works .works_contents .works_group .ba li .thumb {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 768px) {
  #works .works .works_contents .works_group .ba li .thumb {
    height: 35vw;
  }
}
#works .works .works_contents .works_group .ba li .thumb::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0% !important;
  height: 0% !important;
  transition: all 0.2s;
  background-color: rgba(0, 0, 0, 0);
}
#works .works .works_contents .works_group .ba li .thumb:hover::after {
  background-color: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}
#works .works .works_contents .works_group .ba li .thumb .img-before {
  width: 40%;
  position: relative;
}
#works .works .works_contents .works_group .ba li .thumb .img-before::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.2s;
  background-color: rgba(0, 0, 0, 0);
}
#works .works .works_contents .works_group .ba li .thumb .img-before:hover::after {
  background-color: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}
#works .works .works_contents .works_group .ba li .thumb .img-before img {
  display: block;
  width: 100%;
  height: 15vw;
  -o-object-fit: cover;
     object-fit: cover;
}
#works .works .works_contents .works_group .ba li .thumb .img-after {
  width: 50%;
  position: relative;
}
#works .works .works_contents .works_group .ba li .thumb .img-after::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.2s;
  background-color: rgba(0, 0, 0, 0);
}
#works .works .works_contents .works_group .ba li .thumb .img-after:hover::after {
  background-color: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}
#works .works .works_contents .works_group .ba li .thumb .img-after img {
  width: 100%;
  height: 20vw;
  -o-object-fit: cover;
     object-fit: cover;
}
#works .works .works_contents .works_group .ba li .thumb p {
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%);
}
#works .works .works_contents .works_group .ba li .thumb p i {
  color: #000;
  font-size: 3vw;
}
@media screen and (max-width: 768px) {
  #works .works .works_contents .works_group .ba li .thumb p i {
    font-size: 6vw;
  }
}
#works .works .b_a ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  list-style: none;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #works .works .b_a ul {
    flex-flow: column;
  }
}

#modal-container {
  display: none;
  position: fixed;
  background: rgba(0, 0, 0, 0.6);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
}
#modal-container > div {
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
}
#modal-container > div > img {
  width: auto;
  height: auto;
}
@media screen and (max-width: 768px) {
  #modal-container > div > img {
    width: 300px;
    height: 180px;
  }
}
#modal-container .close {
  position: absolute;
  top: 20%;
  right: 20%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #modal-container .close {
    top: 32%;
    right: 22%;
  }
}
@media screen and (max-width: 768px) {
  #modal-container .close {
    top: 33%;
    right: 15%;
  }
}
#modal-container .close span:first-child {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-45deg);
  width: 50px;
  height: 2px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #modal-container .close span:first-child {
    width: 25px;
  }
}
#modal-container .close span:last-child {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(45deg);
  width: 50px;
  height: 2px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #modal-container .close span:last-child {
    width: 25px;
  }
}

img.popup {
  cursor: pointer;
  width: 100%;
  height: 100%;
}

#about #philosophy {
  width: 80%;
  margin: 3rem auto;
  border-radius: 10px;
  padding: 2rem;
}
@media screen and (max-width: 768px) {
  #about #philosophy {
    width: 95%;
    padding: 1rem;
  }
}
#about #philosophy h2 {
  color: #c02821;
  font-size: 200%;
  text-align: center;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #about #philosophy h2 {
    font-size: 150%;
  }
}
@media screen and (max-width: 768px) {
  #about #philosophy h2 {
    font-size: 130%;
  }
}
#about #philosophy dl {
  justify-content: space-between;
  display: flex;
}
@media screen and (max-width: 768px) {
  #about #philosophy dl {
    display: block;
  }
}
#about #philosophy dl dt {
  width: 48%;
}
@media screen and (max-width: 768px) {
  #about #philosophy dl dt {
    width: 100%;
    margin-bottom: 2rem;
  }
}
#about #philosophy dl dd {
  width: 48%;
}
@media screen and (max-width: 768px) {
  #about #philosophy dl dd {
    width: 100%;
  }
}
#about #philosophy dl dd img {
  width: 100%;
}
#about .about {
  padding: 4vw 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #about .about {
    padding: 6vw 0;
  }
}
@media screen and (max-width: 768px) {
  #about .about {
    padding: 12vw 0;
  }
}
#about .about .about_contents {
  width: 80%;
  margin: auto;
  margin-bottom: 2rem;
  background-color: #F6F8FB;
  border-radius: 10px;
  padding: 5rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #about .about .about_contents {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #about .about .about_contents {
    width: 95%;
    padding: 1rem;
  }
}
#about .about .about_contents table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #about .about .about_contents table {
    margin-bottom: 3vw;
  }
}
@media screen and (max-width: 768px) {
  #about .about .about_contents table {
    margin-bottom: 6vw;
  }
}
#about .about .about_contents table tr {
  border-bottom: 1px solid rgba(0, 43, 84, 0.3);
}
#about .about .about_contents table tr th, #about .about .about_contents table tr td {
  padding: 2rem 0.5rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #about .about .about_contents table tr th, #about .about .about_contents table tr td {
    padding: 3vw;
  }
}
@media screen and (max-width: 768px) {
  #about .about .about_contents table tr th, #about .about .about_contents table tr td {
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(0, 43, 84, 0.3);
  }
}
#about .about .about_contents table tr th {
  width: 30%;
}
@media screen and (max-width: 768px) {
  #about .about .about_contents table tr th {
    width: 100%;
  }
}
#about .about .about_contents table tr td {
  width: 70%;
  padding: 1rem;
}
@media screen and (max-width: 768px) {
  #about .about .about_contents table tr td {
    width: 100%;
    padding: 1.5rem 1rem;
  }
}
#about .about .about_contents .map {
  width: 100%;
}
#about .about .about_contents .map iframe {
  width: 100%;
}

#sales .sales {
  width: 80%;
  margin: auto;
  margin-bottom: 8vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #sales .sales {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #sales .sales {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  #sales .sales .lower_headline {
    margin-bottom: 6vw;
  }
}
#sales .sales ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  #sales .sales ul {
    flex-flow: column;
  }
}
#sales .sales ul li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 45%;
  margin-bottom: 2vw;
  padding-bottom: 1vw;
  border-bottom: 1px solid #333333;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #sales .sales ul li {
    width: 48%;
  }
}
@media screen and (max-width: 768px) {
  #sales .sales ul li {
    width: 100%;
  }
}
#sales .sales ul li .sales_name {
  width: 40%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #sales .sales ul li .sales_name h4 {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #sales .sales ul li .sales_name h4 {
    font-size: 3.3vw;
  }
}
#sales .sales ul li .sales_contents {
  width: 60%;
}
#sales .sales ul li .sales_contents p {
  margin-bottom: 0.5vw;
}
#sales .sales ul li .sales_contents .tel {
  color: #000;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #sales .sales ul li .sales_contents .tel {
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  #sales .sales ul li .sales_contents .tel {
    font-size: 3.3vw;
  }
}
#sales .sales ul li .sales_contents .tel i {
  margin-right: 0.25rem;
}

#history .history {
  width: 80%;
  margin: auto;
  margin-bottom: 8vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #history .history {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #history .history {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  #history .history .lower_headline {
    margin-bottom: 6vw;
  }
}
#history .history table {
  width: 100%;
}
#history .history table tr {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid #333333;
}
@media screen and (max-width: 768px) {
  #history .history table tr {
    width: 100%;
    margin-bottom: 6vw;
  }
}
#history .history table tr th, #history .history table tr td {
  padding: 1.5rem 0.5rem 0.5rem;
  margin-bottom: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #history .history table tr th, #history .history table tr td {
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  #history .history table tr th, #history .history table tr td {
    font-size: 3.3vw;
  }
}
#history .history table tr th {
  width: 30%;
}
#history .history table tr td {
  width: 70%;
}

#service {
  display: inline-block;
  margin-bottom: 5rem;
  background: #fff;
}
#service #service_contents {
  width: 85%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #service #service_contents {
    width: 100%;
  }
}
#service #service_contents #service01 .service_contents_text dl dt:after {
  left: 8rem;
}
@media screen and (max-width: 768px) {
  #service #service_contents #service01 .service_contents_text dl dt:after {
    left: 7rem;
  }
}
#service #service_contents .service_contents_box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 3rem 0;
  background-color: #f7f7f7;
  padding: 3rem;
}
@media screen and (max-width: 768px) {
  #service #service_contents .service_contents_box {
    padding: 2rem 1rem;
  }
}
@media screen and (max-width: 768px) {
  #service #service_contents .service_contents_box:nth-child(odd) {
    flex-direction: column-reverse;
  }
}
#service #service_contents .service_contents_box .service_contents_img {
  width: 48%;
}
@media screen and (max-width: 768px) {
  #service #service_contents .service_contents_box .service_contents_img {
    width: 100%;
  }
}
#service #service_contents .service_contents_box .service_contents_img img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 0.5rem;
}
#service #service_contents .service_contents_box .service_contents_text {
  width: 48%;
}
@media screen and (max-width: 768px) {
  #service #service_contents .service_contents_box .service_contents_text {
    width: 90%;
    margin: 0 auto 1rem;
    padding: 0;
  }
}
#service #service_contents .service_contents_box .service_contents_text dl {
  width: 100%;
}
#service #service_contents .service_contents_box .service_contents_text dl dt {
  width: 100%;
  color: #000;
  font-size: 180%;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  overflow: hidden;
}
#service #service_contents .service_contents_box .service_contents_text dl dt:after {
  content: "";
  position: absolute;
  top: 55%;
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: #1c2a3e;
}
@media screen and (max-width: 768px) {
  #service #service_contents .service_contents_box .service_contents_text dl dt {
    font-size: 140%;
  }
}
#service #service_contents .service_contents_box .service_contents_text dl dd {
  color: #333;
  font-size: 100%;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #service #service_contents .service_contents_box .service_contents_text dl dd {
    font-size: 100%;
  }
}

#policy {
  width: 80%;
  padding: 3rem 0;
  margin: auto;
  background-color: #f7f7f7;
  padding: 3rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  #policy {
    width: 90%;
  }
}
#policy h2 {
  font-size: 18px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #policy h2 {
    font-size: 15px;
  }
}
#policy p {
  font-size: 15px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #policy p {
    font-size: 10px;
  }
}

#recruit {
  margin-bottom: 8vw;
}
#recruit .recruit .recruit_text {
  width: 90%;
  margin: auto;
  margin-bottom: 3rem;
}
#recruit .recruit .recruit_text h2 {
  text-align: center;
  color: #cb3a2b;
  margin-bottom: 3rem;
  font-size: 2.8vw;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_text h2 {
    font-size: 1.2rem;
  }
}
#recruit .recruit .recruit_text .recruit_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  background-color: #f7f7f7;
  padding: 2rem;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_text .recruit_list {
    display: block;
    padding: 1rem;
  }
}
#recruit .recruit .recruit_text .recruit_list dt {
  width: 48%;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_text .recruit_list dt {
    width: 100%;
  }
}
#recruit .recruit .recruit_text .recruit_list dt img {
  width: 100%;
  display: block;
}
#recruit .recruit .recruit_text .recruit_list dd {
  width: 48%;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_text .recruit_list dd {
    width: 100%;
  }
}
#recruit .recruit .recruit_text .recruit_list dd ul {
  list-style: none;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_text .recruit_list dd ul {
    margin-top: 1rem;
  }
}
#recruit .recruit .recruit_text .recruit_list dd ul li {
  font-size: 1.6vw;
  padding: 0.5rem 0;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_text .recruit_list dd ul li {
    font-size: 0.8rem;
  }
}
#recruit .recruit .recruit_text .recruit_list dd ul li i {
  color: #cb3a2b;
}
#recruit .recruit .recruit_text .recruit_message {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  background-color: #f7f7f7;
  padding: 2rem;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_text .recruit_message {
    display: block;
    padding: 1rem;
  }
}
#recruit .recruit .recruit_text .recruit_message dt {
  width: 48%;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_text .recruit_message dt {
    width: 100%;
  }
}
#recruit .recruit .recruit_text .recruit_message dt img {
  width: 100%;
  display: block;
}
#recruit .recruit .recruit_text .recruit_message dd {
  width: 48%;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_text .recruit_message dd {
    width: 100%;
    margin-bottom: 1rem;
  }
}
#recruit .recruit .recruit_text .recruit_message dd h3 {
  color: #cb3a2b;
  margin-bottom: 1rem;
  font-size: 2.2vw;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_text .recruit_message dd h3 {
    font-size: 1rem;
  }
}
#recruit .recruit .recruit_contents {
  width: 90%;
  margin: auto;
  margin-bottom: 3rem;
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  align-items: flex-start;
  border-radius: 10px;
  padding: 5rem;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents {
    flex-flow: column;
  }
}
#recruit .recruit .recruit_contents h2 {
  color: #cb3a2b;
}
#recruit .recruit .recruit_contents .recruit_content {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents .recruit_content {
    width: 100%;
    margin: 2rem auto;
  }
}
#recruit .recruit .recruit_contents .recruit_content h2 {
  font-size: 150%;
  color: #1C2A3E;
}
#recruit .recruit .recruit_contents .recruit_content table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid rgba(0, 43, 84, 0.3);
}
#recruit .recruit .recruit_contents .recruit_content table tr {
  border-bottom: 1px solid rgba(0, 43, 84, 0.3);
}
#recruit .recruit .recruit_contents .recruit_content table tr th, #recruit .recruit .recruit_contents .recruit_content table tr td {
  color: #333;
  padding: 1.5rem 0.8rem;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents .recruit_content table tr th, #recruit .recruit .recruit_contents .recruit_content table tr td {
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(0, 43, 84, 0.3);
  }
}
#recruit .recruit .recruit_contents .recruit_content table tr th {
  width: 30%;
  background: rgba(28, 42, 62, 0.1);
  font-weight: 600;
  border-right: 1px solid rgba(0, 43, 84, 0.3);
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents .recruit_content table tr th {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
#recruit .recruit .recruit_contents .recruit_content table tr td {
  width: 70%;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents .recruit_content table tr td {
    width: 100%;
  }
}
#recruit .recruit_btn {
  width: 80%;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit .recruit_btn {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #recruit .recruit_btn {
    width: 95%;
  }
}
#recruit .recruit_btn a {
  text-decoration: none;
}
#recruit .recruit_btn a button {
  width: 100%;
  color: #fff;
  font-size: 120%;
  background-color: #1C2A3E;
  padding: 0.5rem;
  transition: all 0.4s;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}
#recruit .recruit_btn a button:hover {
  opacity: 0.7;
}

#recruit_form .recruit_form {
  width: 80%;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit_form .recruit_form {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #recruit_form .recruit_form {
    width: 95%;
  }
}
#recruit_form .recruit_form .recruit_form_text {
  margin-bottom: 2rem;
}
#recruit_form .recruit_form .recruit_form_text p {
  text-align: center;
}
@media screen and (max-width: 768px) {
  #recruit_form .recruit_form .recruit_form_text p {
    text-align: left;
  }
}
#recruit_form .recruit_form form {
  width: 100%;
  margin-bottom: 8vw;
}
#recruit_form .recruit_form form table {
  width: 100%;
  margin-bottom: 40px;
  border-collapse: collapse;
  border-top: 1px solid #333;
}
#recruit_form .recruit_form form table tr {
  border-bottom: 1px solid #333;
}
@media screen and (max-width: 768px) {
  #recruit_form .recruit_form form table tr {
    display: flex;
    flex-flow: column;
  }
}
#recruit_form .recruit_form form table tr th, #recruit_form .recruit_form form table tr td {
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit_form .recruit_form form table tr th, #recruit_form .recruit_form form table tr td {
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 768px) {
  #recruit_form .recruit_form form table tr th, #recruit_form .recruit_form form table tr td {
    font-size: 3.3vw;
  }
}
#recruit_form .recruit_form form table tr th {
  padding: 40px 0;
  width: 35%;
  text-align: end;
  padding-right: 80px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit_form .recruit_form form table tr th {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  #recruit_form .recruit_form form table tr th {
    width: 100%;
    border-bottom: none;
    text-align: start;
    padding: 10px 0;
    padding-top: 20px;
    padding-left: 0px;
  }
}
#recruit_form .recruit_form form table tr th .red {
  color: #fff;
  padding: 10px;
  background-color: red;
  margin-left: 20px;
}
#recruit_form .recruit_form form table tr th .blue {
  color: #fff;
  padding: 10px;
  background-color: blue;
  margin-left: 20px;
}
#recruit_form .recruit_form form table tr td {
  padding: 40px 0;
  width: 65%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit_form .recruit_form form table tr td {
    width: 55%;
  }
}
@media screen and (max-width: 768px) {
  #recruit_form .recruit_form form table tr td {
    width: 100%;
    padding: 10px 0;
    padding-bottom: 20px;
    padding-right: 0;
  }
}
#recruit_form .recruit_form form table tr td .mushroom input {
  width: 1vw;
  height: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit_form .recruit_form form table tr td .mushroom input {
    width: 2vw;
    height: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #recruit_form .recruit_form form table tr td .mushroom input {
    width: 4vw;
    height: 4vw;
  }
}
#recruit_form .recruit_form form table tr td .number {
  margin-top: 2vw;
}
#recruit_form .recruit_form form table tr td input {
  width: 80%;
  height: 50px;
  padding-left: 5px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit_form .recruit_form form table tr td input {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #recruit_form .recruit_form form table tr td input {
    width: 100%;
  }
}
#recruit_form .recruit_form form table tr td textarea {
  width: 80%;
  height: 120px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit_form .recruit_form form table tr td textarea {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #recruit_form .recruit_form form table tr td textarea {
    width: 100%;
  }
}
#recruit_form .recruit_form form table tr.tel-number td input {
  width: 20% !important;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit_form .recruit_form form table tr.tel-number td input {
    width: 25% !important;
  }
}
@media screen and (max-width: 768px) {
  #recruit_form .recruit_form form table tr.tel-number td input {
    width: 29% !important;
  }
}
#recruit_form .recruit_form form table tr:first-child td,
#recruit_form .recruit_form form table tr:last-child td {
  display: flex;
  width: 100%;
}
#recruit_form .recruit_form form table tr:first-child td .mwform-radio-field,
#recruit_form .recruit_form form table tr:last-child td .mwform-radio-field {
  width: 35%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit_form .recruit_form form table tr:first-child td .mwform-radio-field,
  #recruit_form .recruit_form form table tr:last-child td .mwform-radio-field {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  #recruit_form .recruit_form form table tr:first-child td .mwform-radio-field,
  #recruit_form .recruit_form form table tr:last-child td .mwform-radio-field {
    width: 45%;
  }
}
#recruit_form .recruit_form form table tr:first-child td .mwform-radio-field label,
#recruit_form .recruit_form form table tr:last-child td .mwform-radio-field label {
  display: flex;
  height: 20px;
}
#recruit_form .recruit_form form table tr:first-child td .mwform-radio-field input,
#recruit_form .recruit_form form table tr:last-child td .mwform-radio-field input {
  width: 10%;
  height: 100%;
}
#recruit_form .recruit_form form table tr:first-child td .mwform-radio-field .mwform-radio-field-text,
#recruit_form .recruit_form form table tr:last-child td .mwform-radio-field .mwform-radio-field-text {
  display: inline-block;
  height: 100%;
}
#recruit_form .recruit_form form table tr:nth-child(5) th span {
  background-color: blue;
}
#recruit_form .recruit_form form table tr:nth-child(5) td input {
  width: 20% !important;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit_form .recruit_form form table tr:nth-child(5) td input {
    width: 25% !important;
  }
}
@media screen and (max-width: 768px) {
  #recruit_form .recruit_form form table tr:nth-child(5) td input {
    width: 29% !important;
  }
}
#recruit_form .recruit_form form .agree {
  text-align: center;
  margin: 20px 0;
}
@media screen and (max-width: 768px) {
  #recruit_form .recruit_form form .agree {
    margin: 10px 0;
  }
}
#recruit_form .recruit_form form .submit {
  text-align: center;
}
#recruit_form .recruit_form form .submit input {
  padding: 20px 180px;
  font-size: 18px;
  border: none;
  background: #1C2A3E;
  color: #fff;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  #recruit_form .recruit_form form .submit input {
    padding: 10px 90px;
  }
}
#recruit_form .recruit_form form .submit input:hover {
  opacity: 0.7;
}
#recruit_form .recruit_form form .submit input[name=submitBack] {
  padding: 20px 90px;
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  #recruit_form .recruit_form form .submit input[name=submitBack] {
    padding: 10px 45px;
    margin-right: 10px;
    margin-bottom: 20px;
    font-size: 12.5px;
  }
}
#recruit_form .recruit_form form .submit input[name=confirm] {
  padding: 20px 90px;
}
@media screen and (max-width: 768px) {
  #recruit_form .recruit_form form .submit input[name=confirm] {
    padding: 10px 45px;
    margin-bottom: 20px;
    font-size: 12.5px;
  }
}

#news .news .news_contents {
  width: 80%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #news .news .news_contents {
    width: 95%;
  }
}
#news .news .news_contents p {
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  #news .news .news_contents p {
    margin-bottom: 8vw;
  }
}
#news .news .news_contents ul {
  width: 70%;
  list-style: none;
}
@media screen and (max-width: 768px) {
  #news .news .news_contents ul {
    width: 100%;
  }
}
#news .news .news_contents ul a {
  display: block;
  text-decoration: none;
  margin-bottom: 2vw;
}
#news .news .news_contents ul a li {
  display: flex;
  justify-content: start;
  align-items: flex-start;
  border-bottom: 1px dotted #333;
}
@media screen and (max-width: 768px) {
  #news .news .news_contents ul a li {
    flex-flow: column;
  }
}
#news .news .news_contents ul a .date {
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news .news .news_contents ul a .date {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 768px) {
  #news .news .news_contents ul a .date {
    font-size: 2.5vw;
    width: 20%;
  }
}
#news .news .news_contents ul a .outline {
  margin-left: 3vw;
}
#news .news .news_contents ul a .outline .sp_title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0.25rem;
}
#news .news .news_contents ul a .outline .sp_title .title {
  margin-right: 1vw;
  font-size: 1.2vw;
  font-weight: 600;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news .news .news_contents ul a .outline .sp_title .title {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  #news .news .news_contents ul a .outline .sp_title .title {
    font-size: 3.3vw;
  }
}
@media screen and (max-width: 768px) {
  #news .news .news_contents ul a .outline .sp_title i {
    font-size: 3vw;
  }
}
#news .news .news_contents ul a .outline .descn p {
  font-size: 1vw;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news .news .news_contents ul a .outline .descn p {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 768px) {
  #news .news .news_contents ul a .outline .descn p {
    font-size: 2.5vw;
  }
}

.navigation {
  margin-top: 4vw;
  margin-bottom: 2vw;
  text-align: center;
}
.navigation .current {
  border: none;
}
.navigation a {
  border: none;
  color: #333333;
}

.wp-pagenavi a, .wp-pagenavi span {
  border: none !important;
  margin-left: 20px !important;
}

#news_single .news_single {
  margin-bottom: 4vw;
}
#news_single .news_single .news_contents {
  width: 80%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #news_single .news_single .news_contents {
    width: 95%;
  }
}
#news_single .news_single .news_contents h4 {
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  #news_single .news_single .news_contents h4 {
    margin-bottom: 8vw;
  }
}
#news_single .news_single .news_contents ul {
  width: 70%;
  list-style: none;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news_single .news_single .news_contents ul {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #news_single .news_single .news_contents ul {
    width: 100%;
  }
}
#news_single .news_single .news_contents ul li {
  display: block;
  text-decoration: none;
  margin-bottom: 2vw;
}
#news_single .news_single .news_contents ul li .outline .date {
  font-size: 0.8vw;
  margin-bottom: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news_single .news_single .news_contents ul li .outline .date {
    font-size: 1.2vw;
    margin-bottom: 1.4vw;
  }
}
@media screen and (max-width: 768px) {
  #news_single .news_single .news_contents ul li .outline .date {
    font-size: 2.5vw;
    margin-bottom: 2.5vw;
  }
}
#news_single .news_single .news_contents ul li .outline .sp_title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1.5vw;
  border-bottom: 1px solid #333;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news_single .news_single .news_contents ul li .outline .sp_title {
    margin-bottom: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #news_single .news_single .news_contents ul li .outline .sp_title {
    margin-bottom: 4vw;
  }
}
#news_single .news_single .news_contents ul li .outline .sp_title .title {
  margin-right: 1vw;
  font-size: 1.4vw;
  font-weight: 600;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news_single .news_single .news_contents ul li .outline .sp_title .title {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  #news_single .news_single .news_contents ul li .outline .sp_title .title {
    font-size: 3.3vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news_single .news_single .news_contents ul li .outline .sp_title i {
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  #news_single .news_single .news_contents ul li .outline .sp_title i {
    font-size: 3vw;
  }
}
#news_single .news_single .news_contents ul li .outline .descn p {
  color: #333;
  font-size: 1vw;
  line-height: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news_single .news_single .news_contents ul li .outline .descn p {
    font-size: 1.2vw;
    line-height: 2.5vw;
  }
}
@media screen and (max-width: 768px) {
  #news_single .news_single .news_contents ul li .outline .descn p {
    font-size: 2.5vw;
    line-height: 4vw;
  }
}

#contact .contact {
  width: 80%;
  margin: auto;
  margin-bottom: 5rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact .contact {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #contact .contact {
    width: 95%;
  }
}
#contact .contact .contact_text {
  margin-bottom: 8vw;
}
#contact .contact .contact_text p {
  line-height: 3vw;
  font-size: 1.2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact .contact .contact_text p {
    font-size: 1.4vw;
    line-height: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_text p {
    font-size: 3.3vw;
    line-height: 6vw;
  }
}
#contact .contact .form {
  width: 100%;
  margin-bottom: 8vw;
}
#contact .contact .form .wpcf7 {
  color: #333333;
  background-color: #f0f0f0;
  padding: 5rem;
  border-radius: 10px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #contact .contact .form .wpcf7 {
    padding: 2rem;
  }
}
#contact .contact .form .wpcf7 label {
  display: block;
  margin-bottom: 2rem;
  font-size: 100%;
  font-weight: 600;
  color: #333333;
}
#contact .contact .form .wpcf7 label .red {
  background-color: #ff0000;
  color: #fff;
  padding: 2px 5px;
  border-radius: 3px;
  margin-left: 10px;
  font-size: 80%;
}
#contact .contact .form .wpcf7 label .blue {
  background-color: #2986ff;
  color: #fff;
  padding: 2px 5px;
  border-radius: 3px;
  margin-left: 10px;
  font-size: 80%;
}
#contact .contact .form .wpcf7 label .wpcf7-form-control-wrap input {
  width: 100%;
  margin-top: 1rem;
  padding: 1rem;
}
#contact .contact .form .wpcf7 label textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #cccccc;
  border-radius: 5px;
  margin-top: 1rem;
  margin-bottom: 1rem;
  background-color: #ffffff;
  height: 250px;
  resize: vertical;
}
#contact .contact .form .wpcf7 label.policy {
  text-align: center;
}
#contact .contact .form .wpcf7 label.policy input {
  width: auto;
}
#contact .contact .form .wpcf7 .wpcf7 input[type=url], #contact .contact .form .wpcf7 .wpcf7 input[type=email], #contact .contact .form .wpcf7 .wpcf7 input[type=tel] {
  padding: 2rem;
  margin-bottom: 2rem;
  height: 20px;
}
#contact .contact .form .wpcf7 input[type=submit] {
  color: #fff;
  background-color: #1c2a3e;
  cursor: pointer;
  transition: background-color 0.4s ease;
  border: none;
  width: 80%;
  margin: auto 10%;
  font-size: 120%;
  font-weight: 600;
  padding: 1rem;
  border-radius: 10px;
}
#contact .contact .form .wpcf7 input[type=submit]:hover {
  opacity: 0.7;
}
#contact .contact .form .wpcf7 .wpcf7-response-output {
  font-size: 160%;
  text-align: center;
  padding: 1rem;
  color: #333333;
  font-weight: 600;
}
#contact .contact .form .wpcf7 .wpcf7-form-control {
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
}
#contact .contact .form .thanks {
  text-align: center;
  font-size: 140%;
}
@media screen and (max-width: 768px) {
  #contact .contact .form .thanks {
    text-align: left;
    font-size: 100%;
  }
}

#sns {
  margin-bottom: 3rem;
}
#sns .sns a {
  width: 60%;
  display: block;
  margin: 0 auto;
  transition: 0.4s all;
}
@media screen and (max-width: 768px) {
  #sns .sns a {
    width: 75%;
  }
}
@media screen and (max-width: 768px) {
  #sns .sns a {
    width: 90%;
  }
}
#sns .sns a:hover {
  opacity: 0.75;
}
#sns .sns a img {
  width: 100%;
  border-radius: 5px;
  border: solid 3px #cf2f93;
}

footer {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: initial;
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.6) 60%, rgb(255, 255, 255));
  z-index: 5;
}
footer .footer_contact {
  width: 100%;
  position: relative;
  padding-top: 1rem;
}
@media screen and (max-width: 768px) {
  footer .footer_contact {
    padding-top: 0;
  }
}
footer .footer_contact .footer_contact_eria {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background: rgb(255, 255, 255);
  width: 80%;
  margin: 5rem auto;
  padding: 5rem 3rem;
  border-radius: 10px;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  footer .footer_contact .footer_contact_eria {
    padding: 2rem 2rem;
  }
}
footer .footer_contact .footer_contact_eria .footer_contact_eria_left {
  width: 50%;
}
@media screen and (max-width: 768px) {
  footer .footer_contact .footer_contact_eria .footer_contact_eria_left {
    width: 100%;
    padding: 1rem 0;
  }
}
footer .footer_contact .footer_contact_eria .footer_contact_eria_left h2 {
  color: #000;
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  footer .footer_contact .footer_contact_eria .footer_contact_eria_left h2 {
    font-size: 2rem;
  }
}
footer .footer_contact .footer_contact_eria .footer_contact_eria_left h3 {
  color: #000;
}
@media screen and (max-width: 768px) {
  footer .footer_contact .footer_contact_eria .footer_contact_eria_left h3 {
    font-size: 5vw;
  }
}
footer .footer_contact .footer_contact_eria .footer_contact_eria_right {
  width: 50%;
}
@media screen and (max-width: 768px) {
  footer .footer_contact .footer_contact_eria .footer_contact_eria_right {
    width: 100%;
    padding: 2rem 0;
  }
}
footer .footer_contact .footer_contact_eria .footer_contact_eria_right .footer_contact_form {
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  footer .footer_contact .footer_contact_eria .footer_contact_eria_right .footer_contact_form {
    width: 100%;
  }
}
footer .footer_contact .footer_contact_eria .footer_contact_eria_right .footer_contact_form a {
  text-decoration: none;
}
footer .footer_contact .footer_contact_eria .footer_contact_eria_right .footer_contact_form a button {
  width: 100%;
  padding: 2rem 0.75rem;
  border: solid 3px #000;
  border-radius: 0.25rem;
  background: #000;
  color: #fff;
  font-size: 150%;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.4s;
  cursor: pointer;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer_contact .footer_contact_eria .footer_contact_eria_right .footer_contact_form a button {
    font-size: 1.8vw;
    padding: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_contact .footer_contact_eria .footer_contact_eria_right .footer_contact_form a button {
    font-size: 3.5vw;
    padding: 1rem 0.75rem;
  }
}
footer .footer_contact .footer_contact_eria .footer_contact_eria_right .footer_contact_form a button:hover {
  background: #fff;
  color: #000;
}
footer .footer_contact .footer_contact_eria .footer_contact_eria_right .footer_contact_form a button i {
  margin-right: 0.5rem;
}
footer .footer_contact .footer_contact_contents {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 10;
  width: 100%;
  height: 100%;
  margin: auto;
  padding: 0rem 5rem;
}
@media screen and (max-width: 768px) {
  footer .footer_contact .footer_contact_contents {
    width: 100%;
    padding: 2rem 1rem;
  }
}
footer .footer_contact .footer_contact_contents .footer_logo {
  width: 50%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  footer .footer_contact .footer_contact_contents .footer_logo {
    width: 90%;
    margin-bottom: 1rem;
  }
}
footer .footer_contact .footer_contact_contents .footer_logo ul {
  list-style: none;
}
footer .footer_contact .footer_contact_contents .footer_logo ul li {
  text-align: center;
  color: #333;
}
footer .footer_contact .footer_contact_contents .footer_logo ul li a {
  color: #333;
  transition: 0.4s all;
}
footer .footer_contact .footer_contact_contents .footer_logo ul li a:hover {
  opacity: 0.7;
}
footer .footer_contact .footer_contact_contents .footer_logo ul li a img {
  width: 40%;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  footer .footer_contact .footer_contact_contents .footer_logo ul li a img {
    width: 50%;
  }
}
footer .footer_contact .footer_contact_contents .footer_logo ul li.tel {
  font-size: 1.3rem;
}
footer .footer_contact .footer_contact_contents .footer_logo ul li.tel a {
  pointer-events: none;
  color: #333;
  text-decoration: none;
  line-height: 1;
}
footer .footer_contact .footer_contact_contents .footer_logo ul li.tel a i {
  font-size: 80%;
  margin-right: 0.5rem;
}
@media screen and (max-width: 768px) {
  footer .footer_contact .footer_contact_contents .footer_logo ul li.tel a {
    pointer-events: auto;
  }
}
footer .footer_contact .footer_contact_contents .footer_logo ul.footer_sns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: auto;
  list-style: none;
}
@media screen and (max-width: 768px) {
  footer .footer_contact .footer_contact_contents .footer_logo ul.footer_sns {
    width: 95%;
    flex-wrap: wrap;
    padding-left: 0;
  }
}
footer .footer_contact .footer_contact_contents .footer_logo ul.footer_sns .new_twitter:before {
  content: "𝕏" !important;
  font-family: sans-serif !important;
  font-weight: bold;
}
footer .footer_contact .footer_contact_contents .footer_logo ul.footer_sns li {
  width: auto;
  text-align: center;
  margin: 0.5rem 2rem;
}
@media screen and (max-width: 768px) {
  footer .footer_contact .footer_contact_contents .footer_logo ul.footer_sns li {
    margin: 0.5rem 1rem;
  }
}
footer .footer_contact .footer_contact_contents .footer_logo ul.footer_sns li a {
  color: #000;
  transition: all 0.4s;
  font-size: 1.5rem;
}
footer .footer_contact .footer_contact_contents .footer_logo ul.footer_sns li a:hover {
  opacity: 0.7;
}
footer .footer_contact .footer_contact_contents .footer_logo ul.footer_sns li a img {
  width: 100%;
}
footer .footer_contact .footer_contact_contents .footer_menu {
  width: 50%;
  margin: auto;
  padding: 0.5rem 1rem 0 0;
}
@media screen and (max-width: 768px) {
  footer .footer_contact .footer_contact_contents .footer_menu {
    width: 100%;
    padding: 1rem 0 0 0;
    margin-bottom: 1rem;
  }
}
footer .footer_contact .footer_contact_contents .footer_menu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: auto;
  list-style: none;
}
@media screen and (max-width: 768px) {
  footer .footer_contact .footer_contact_contents .footer_menu ul {
    width: 95%;
    flex-wrap: wrap;
    padding-left: 0;
  }
}
footer .footer_contact .footer_contact_contents .footer_menu ul li {
  flex: 0 0 auto;
  width: auto;
  font-size: 100%;
  padding: 0.5rem 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer_contact .footer_contact_contents .footer_menu ul li {
    font-size: 80%;
  }
}
footer .footer_contact .footer_contact_contents .footer_menu ul li a {
  color: #333;
  padding: 0 1vw;
}
@media screen and (max-width: 768px) {
  footer .footer_contact .footer_contact_contents .footer_menu ul li a {
    font-size: 3vw;
    padding: 0 4vw;
  }
}
footer .footer_contact .footer_contact_contents .footer_menu ul li a i {
  margin-right: 0.5rem;
}
footer .copyright {
  position: relative;
  padding: 1vw 0;
  text-align: center;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  footer .copyright {
    padding-left: 0;
  }
}
footer .copyright p {
  color: #333;
  font-size: 0.9rem;
}/*# sourceMappingURL=style.css.map */