@charset "UTF-8";
.c-blue {
  color: #151c83 !important;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: sans-serif;
  background-color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 2.5;
  font-feature-settings: "palt";
}

li {
  list-style: none;
}

@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;
  }
}

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

.txt_bg {
  font-size: 12rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .txt_bg {
    font-size: 7rem;
  }
}
@media screen and (max-width: 768px) {
  .txt_bg {
    font-size: 6rem;
  }
}

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

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

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

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

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

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

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

.focus-in-expand {
  animation: focus-in-expand 3s ease-in-out both;
}

.alpha {
  animation: alpha 3s;
  animation-fill-mode: forwards;
}

@keyframes alpha {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation focus-in-expand
 * ----------------------------------------
 */
@keyframes focus-in-expand {
  0% {
    letter-spacing: -0.5em;
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}
.skewed {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 30vh;
  background: #fdfdfd;
  z-index: -1;
  transform: skewY(5deg);
  transform-origin: top right;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .skewed {
    height: 15vh;
  }
}

.skewed_reverse {
  position: absolute;
  top: 85%;
  right: 0;
  left: 0;
  width: 100%;
  height: 30vh;
  background: #fdfdfd;
  z-index: -1;
  transform: skewY(-5deg);
  transform-origin: top left;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .skewed_reverse {
    height: 15vh;
  }
}

.skewed02 {
  position: absolute;
  top: 85%;
  right: 0;
  left: 0;
  width: 100%;
  height: 30vh;
  background: #fdfdfd;
  z-index: -1;
  transform: skewY(5deg);
  transform-origin: top right;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .skewed02 {
    height: 15vh;
  }
}

.skewed_reverse02 {
  position: absolute;
  top: 0%;
  right: 0;
  left: 0;
  width: 100%;
  height: 30vh;
  background: #fdfdfd;
  z-index: -1;
  transform: skewY(-5deg);
  transform-origin: top left;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .skewed_reverse02 {
    height: 15vh;
  }
}

.line {
  height: 7.5rem;
  overflow: hidden;
  margin-top: 4.75rem;
}
.line .home_line {
  position: relative;
  width: 1px;
  height: 100%;
  margin: 0 auto;
  display: block;
  background-color: #616477;
}
.line .home_line::before {
  content: "";
  position: absolute;
  top: 0;
  left: -2px;
  width: 5px;
  height: 5px;
  background-color: #616477;
  border-radius: 50%;
  animation-name: Scroll;
  animation-duration: 2s;
  animation-timing-function: linear, linear;
  animation-iteration-count: infinite;
}

@keyframes Scroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(7.5rem);
  }
}
p {
  font-size: 1.2rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  p {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  p {
    font-size: 1.3rem;
  }
}

a {
  text-decoration: none;
}

#lower {
  /*
  margin-top: 80px;
  @include tab{
      margin-top: 60px;
  }
  @include sp{
      margin-top: 60px;
  }
  */
}
#lower .lower {
  position: relative;
  width: 100%;
  z-index: 0;
}
#lower .lower .lower_image {
  height: 75vh;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #lower .lower .lower_image {
    height: 60vh;
  }
}
@media screen and (max-width: 768px) {
  #lower .lower .lower_image {
    height: 60vh;
  }
}
#lower .lower .lower_image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 75vh;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #lower .lower .lower_image img {
    height: 60vh;
  }
}
@media screen and (max-width: 768px) {
  #lower .lower .lower_image img {
    height: 60vh;
  }
}
#lower .lower .lower_h {
  visibility: visible;
  z-index: 99;
  font-size: clamp(20px, 3.1301482702vw, 38px);
  position: absolute;
  right: 7.7777777778vw;
  top: 8.25vw;
  letter-spacing: 0.3em;
  line-height: 1.1;
  padding: 14px 12px;
  text-align: center;
  white-space: nowrap;
  writing-mode: vertical-rl;
}
@media screen and (min-width: 1441px) {
  #lower .lower .lower_h {
    top: 6.25vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #lower .lower .lower_h {
    top: 15.25vw;
  }
}
@media screen and (max-width: 768px) {
  #lower .lower .lower_h {
    top: 25.25vw;
  }
}
#lower .lower .lower_h::before {
  background: #fff;
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
  border-top-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
#lower .breadcrumbs {
  margin: 0 0 0 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #lower .breadcrumbs {
    margin: 0 0 0 3vw;
    padding-top: 3vw;
  }
}
@media screen and (max-width: 768px) {
  #lower .breadcrumbs {
    margin: 0 0 0 4vw;
    padding-top: 3vw;
  }
}
#lower .breadcrumbs p {
  font-size: 0.8vw;
  color: #333333;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #lower .breadcrumbs p {
    font-size: 1.7vw;
  }
}
@media screen and (max-width: 768px) {
  #lower .breadcrumbs p {
    font-size: 2.7vw;
  }
}
#lower .breadcrumbs p a {
  text-decoration: none;
  color: #333333;
  transition: all 0.8s ease;
}
@media screen and (min-width: 1441px) {
  #lower .breadcrumbs p a {
    font-size: 0.7vw;
  }
}
#lower .breadcrumbs p a:hover {
  color: #a2945e;
  text-shadow: 0 0 8px #fdfdfd;
}
#lower .breadcrumbs p span {
  margin: 0 1vw;
  color: #333333;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #lower .breadcrumbs p span {
    margin: 0 2vw;
  }
}
@media screen and (max-width: 768px) {
  #lower .breadcrumbs p span {
    margin: 0 4vw;
  }
}

.contact_lower h2 {
  padding-left: 120px !important;
}
@media screen and (min-width: 1441px) {
  .contact_lower h2 {
    padding-left: 130px !important;
  }
}
@media screen and (max-width: 768px) {
  .contact_lower h2 {
    padding-left: 105px !important;
  }
}
.contact_lower p {
  padding-left: 120px !important;
}
@media screen and (min-width: 1441px) {
  .contact_lower p {
    padding-left: 130px !important;
  }
}
@media screen and (max-width: 768px) {
  .contact_lower p {
    padding-left: 105px !important;
  }
}

h1 {
  font-size: 3.3vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h1 {
    font-size: 4.3vw;
  }
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 8vw;
  }
}

h2 {
  font-size: 2.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h2 {
    font-size: 3.3vw;
  }
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 6vw;
  }
}

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

h4 {
  font-size: 1.3vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h4 {
    font-size: 1.7vw;
  }
}
@media screen and (max-width: 768px) {
  h4 {
    font-size: 4vw;
  }
}

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

/*
 * 空の子パネル
 * padding, margin の左右も 0 に指定してしまうと、
 * 最後の行のレイアウトが崩れるので注意。
 */
.cell.is-empty {
  height: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.top_contents_btn {
  width: 42% !important;
  margin: auto;
}
@media screen and (min-width: 1441px) {
  .top_contents_btn {
    width: 32% !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .top_contents_btn {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  .top_contents_btn {
    width: 100% !important;
  }
}
.top_contents_btn a {
  text-decoration: none;
  text-align: center;
  width: 100%;
  margin: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .top_contents_btn a {
    width: 60%;
  }
}
.top_contents_btn a button {
  width: 100%;
  padding: 1.4vw 0;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #333;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  .top_contents_btn a button {
    padding: 3vw 0;
    font-size: 2.6vw;
  }
}
.top_contents_btn a button:hover {
  background-color: #151c83;
  color: #fdfdfd;
  border: none;
}
.top_contents_btn a button i {
  margin-left: 1vw;
}

.btn_container {
  text-align: center;
  padding: 3vw;
}

button a {
  position: relative;
  display: inline-block;
  padding: 15px 30px;
  border: 2px solid #333;
  text-transform: uppercase;
  color: #333;
  text-decoration: none;
  font-weight: 600;
  font-size: 10px;
}

button a::before {
  content: "";
  position: absolute;
  top: 6px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% - 12px);
  background-color: #fff;
  transition: 0.3s ease-in-out;
  transform: scaleY(1);
}

button a:hover::before {
  transform: scaleY(0);
}

button a::after {
  content: "";
  position: absolute;
  left: 6px;
  top: -2px;
  height: calc(100% + 4px);
  width: calc(100% - 12px);
  background-color: #fff;
  transition: 0.3s ease-in-out;
  transform: scaleX(1);
  transition-delay: 0.5s;
}

button a:hover::after {
  transform: scaleX(0);
}

button a span {
  position: relative;
  z-index: 3;
}

button {
  text-decoration: none;
  background-color: #fff;
  border: none;
}

.transparent a {
  position: relative;
  display: inline-block;
  padding: 15px 30px;
  border: 2px solid #fff;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 10px;
  transition: all 1s ease;
}
.transparent a:hover {
  color: #333;
  background-color: #fff;
}

.transparent a::before {
  content: "";
  position: absolute;
  top: 6px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% - 12px);
  background-color: transparent;
  transition: 0.3s ease-in-out;
  transform: scaleY(1);
}

.transparent a:hover::before {
  transform: scaleY(0);
  background-color: #fff;
}

.transparent a::after {
  content: "";
  position: absolute;
  left: 6px;
  top: -2px;
  height: calc(100% + 4px);
  width: calc(100% - 12px);
  background-color: transparent;
  transition: 0.3s ease-in-out;
  transform: scaleX(1);
  transition-delay: 0.5s;
}

.transparent a:hover::after {
  transform: scaleX(0);
  background-color: #fff;
}

.transparent a span {
  position: relative;
  z-index: 3;
}

.transparent {
  text-decoration: none;
  background-color: transparent;
  border: none;
}

.foot_btn_container {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 1vw auto 0;
}

button {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
}

button.read-more {
  width: 12rem;
  height: auto;
}

button.read-more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: #282936;
  border-radius: 1.625rem;
}

button.read-more .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}

button.read-more .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}

button.read-more .circle .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.29rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
}

button.read-more .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0;
  margin: 0 0 0 1.85rem;
  color: #282936;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}

button:hover .circle {
  width: 100%;
}

button:hover .circle .icon.arrow {
  background: #fff;
  transform: translate(1rem, 0);
}

button:hover .button-text {
  color: #fff;
}

/* back-to-top */
.back-to-top {
  display: none;
  position: fixed;
  z-index: 500;
  right: 0%;
  bottom: 2%;
  color: #fff;
  padding: 1rem 2rem;
  font-size: 2vw;
  display: inline-block;
  text-decoration: none;
  background: transparent;
}
@media screen and (max-width: 768px) {
  .back-to-top {
    display: none !important;
  }
}

.back-to-top::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 70px;
  height: 70px;
  border-radius: 50px;
  z-index: -1;
}

.back-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #151c83;
  border: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 0px 4px rgba(9, 14, 80, 0.253);
  cursor: pointer;
  transition-duration: 0.3s;
  overflow: hidden;
  position: relative;
}

.svgIcon {
  width: 12px;
  transition-duration: 0.3s;
}

.svgIcon path {
  fill: white;
}

.back-button:hover {
  width: 140px;
  border-radius: 50px;
  transition-duration: 0.3s;
  background-color: #151c83;
  align-items: center;
}

.back-button:hover .svgIcon {
  /* width: 20px; */
  transition-duration: 0.3s;
  transform: translateY(-200%);
}

.back-button::before {
  position: absolute;
  bottom: -20px;
  content: "ページトップへ";
  color: white;
  /* transition-duration: .3s; */
  font-size: 0px;
}

.back-button:hover::before {
  font-size: 13px;
  opacity: 1;
  bottom: unset;
  /* transform: translateY(-30px); */
  transition-duration: 0.3s;
}

/* line css */
.footer_line {
  position: fixed;
  z-index: 9999;
  right: 0;
  bottom: 20%;
  margin-top: 10px;
  width: 15%;
  transition: 0.5s; /*ゆっくり変化*/
}
@media screen and (min-width: 1441px) {
  .footer_line {
    bottom: 30%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer_line {
    bottom: 12%;
    width: 20%;
  }
}
@media screen and (max-width: 768px) {
  .footer_line {
    width: 40%;
    bottom: 10%;
  }
}
.footer_line:hover {
  opacity: 0.8;
  transition: 0.5s; /*ゆっくり変化*/
}
.footer_line .line_btn {
  display: inline-block;
  text-align: center; /*中央揃え*/
  color: #2e6ca5; /*文字色*/
  font-size: 20px; /*文字サイズ*/
  text-decoration: none; /*下線消す*/
  width: 100%;
  border-radius: 10px 0 0 10px;
}

/*-- インスタグラム ------------------*/
#sns {
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
#sns .sns_top {
  position: relative;
  width: 60%;
  background-color: #fff;
  margin: 5vw auto 5vw;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  #sns .sns_top {
    width: 85%;
  }
}
#sns .sns_top .sns_top_head {
  display: flex;
  flex-wrap: wrap;
  justify-content: center !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
#sns .sns_top .sns_top_head .sns_box {
  max-width: 100%;
  position: relative;
  width: 100%;
  min-height: 1px;
  padding: 3rem 15px;
  transform: translateY(0);
}
#sns .sns_top .sns_top_head .sns_box .sns_heading_bg {
  display: block;
  font-size: 5.5rem;
  line-height: 0.8;
  letter-spacing: 0.04em;
  margin-bottom: 0.625rem;
  font-weight: 400;
  color: #616477;
  font-family: fantasy;
  -webkit-text-stroke: 4px #fdfdfd;
  paint-order: stroke;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #sns .sns_top .sns_top_head .sns_box .sns_heading_bg {
    display: flex;
    justify-content: center;
    font-size: 5rem;
  }
}
@media screen and (max-width: 768px) {
  #sns .sns_top .sns_top_head .sns_box .sns_heading_bg {
    font-size: 3.5rem;
  }
}
#sns .sns_top .sns_top_head .sns_box .sns_heading {
  position: absolute;
  top: 8rem;
  left: 0;
  width: 100%;
  text-align: center;
  font-weight: 600;
  margin-bottom: 3rem;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  line-height: 1.666;
  font-weight: 700;
  color: #bebdb9;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  -webkit-text-stroke: 1px #fdfdfd;
  paint-order: stroke;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #sns .sns_top .sns_top_head .sns_box .sns_heading {
    top: 8rem;
    font-size: 2.2rem;
  }
}
#sns .sns_top .sns_top_head .sns_box .sns_text {
  margin-top: 5rem;
  text-align: center;
}
#sns .sns_top .sns_top_head .sns_box .sns_text p {
  line-height: 2;
  font-size: 1.2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #sns .sns_top .sns_top_head .sns_box .sns_text p {
    font-size: 2.2vw;
  }
}
@media screen and (max-width: 768px) {
  #sns .sns_top .sns_top_head .sns_box .sns_text p {
    font-size: 3.2vw;
  }
}
#sns .sns_top .sns_top_head .sns_box .insta {
  text-align: center;
  margin-top: 3vh;
}
#sns .sns_top .sns_top_head .sns_box .Line {
  width: 40%;
  margin: 4.75rem auto 0;
}
@media screen and (max-width: 768px) {
  #sns .sns_top .sns_top_head .sns_box .Line {
    width: 70%;
  }
}
#sns .sns_top .sns_top_head .sns_box .Line img {
  width: 100%;
}

.foot_linebg {
  background-color: #16bf00;
}

.insta_btn2 { /*ボタンの下地*/
  color: #FFF; /*文字・アイコン色*/
  border-radius: 7px; /*角丸に*/
  position: relative;
  display: inline-block;
  height: 50px; /*高さ*/
  width: 190px; /*幅*/
  text-align: center; /*中身を中央寄せ*/
  font-size: 25px; /*文字のサイズ*/
  line-height: 50px; /*高さと合わせる*/
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat; /*グラデーション①*/
  overflow: hidden; /*はみ出た部分を隠す*/
  text-decoration: none; /*下線は消す*/
}

.insta_btn2:before { /*グラデーション②*/
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /*全体を覆う*/
  height: 100%; /*全体を覆う*/
  background: linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
}

.insta_btn2 .fa-instagram { /*アイコン*/
  font-size: 35px; /*アイコンサイズ*/
  position: relative;
  top: 4px; /*アイコン位置の微調整*/
}

.insta_btn2 span { /*テキスト*/
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.insta_btn2:hover span { /*ホバーで一周回転*/
  transform: rotateX(360deg);
}

header {
  position: fixed;
  z-index: 500;
  width: 100%;
}
header #header_pc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 76px;
  padding: 0 2vw;
  background-color: rgba(119, 119, 119, 0.231372549);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  header #header_pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  header #header_pc {
    display: none;
  }
}
header #header_pc .header_logo {
  margin-top: 0.5vw !important;
  transition: all 1s 0s ease;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  header #header_pc .header_logo {
    margin-left: -2vw !important;
  }
}
header #header_pc .header_logo a {
  display: flex;
  align-items: center;
}
header #header_pc .header_logo a img {
  width: 50% !important;
  transition: all 1s 0s ease !important;
}
header #header_pc .header_menu {
  width: 100%;
  display: flex;
}
header #header_pc .header_menu ul {
  list-style: none;
  display: flex;
  justify-content: right;
  align-items: center;
  width: 100%;
}
header #header_pc .header_menu ul li {
  width: 15%;
}
@media screen and (min-width: 1441px) {
  header #header_pc .header_menu ul li {
    width: 12%;
  }
}
header #header_pc .header_menu ul li a {
  text-decoration: none;
  position: relative;
  font-weight: 700;
  padding: 8px 50px;
  font-size: 1.2rem;
  width: -moz-fit-content;
  width: fit-content;
}
header #header_pc .header_menu ul li a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #151c83;
  bottom: -10%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
header #header_pc .header_menu ul li a:hover::after {
  transform: scale(1, 1);
}
header #header_pc .header_menu ul li:last-child a {
  min-height: 34px;
  border-radius: 100vw;
  padding: 8px 50px;
  background-color: #151c83;
  transition: all 0.4s;
}
header #header_pc .header_menu ul li:last-child a:hover {
  background-color: #333;
}
header #header_pc .header_menu ul li:last-child a::after {
  width: 0;
}
header #header_pc .header_contact_btn {
  width: 20%;
}
header #header_sp {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 17.9487vw;
  padding: 5.1282vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  header #header_sp {
    height: 80px;
  }
}
@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;
  }
}
header #header_sp .header_logo {
  width: 130px;
  margin-top: 5vw;
  position: relative;
  transition: all 1s ease;
}
header #header_sp .header_logo img {
  width: 100%;
}

.header_menu ul li a {
  position: relative;
  color: white;
  padding: 0.5em 6em;
  border: none;
  cursor: pointer;
  overflow: hidden;
  font-size: 1em;
  font-weight: bold;
  -webkit-text-stroke: 1.5px #252525;
  paint-order: stroke;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .header_menu ul li a {
    -webkit-text-stroke: 1.5px #ffffff;
  }
}
@media screen and (max-width: 768px) {
  .header_menu ul li a {
    -webkit-text-stroke: 1.5px #ffffff;
  }
}

.header_menu ul li a span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.header_en {
  top: 0%;
  transform: translate(-50%, -50%);
  opacity: 1;
}

.header_ja {
  top: 50%;
  opacity: 0;
}

.header_menu ul li a:hover .header_en {
  top: 0%;
  opacity: 0;
}

.header_menu ul li a:hover .header_ja {
  top: 50%;
  opacity: 1;
  transform: translate(-50%, -50%);
}

.header.change-color {
  background-color: rgba(119, 119, 119, 0.231372549) !important;
  transition: all 1s 0s ease !important;
}
.header.change-color .header_logo {
  width: 20% !important;
  margin-top: 0.5vw !important;
  transition: all 1s 0s ease !important;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .header.change-color .header_logo {
    width: 15% !important;
    margin-left: -2vw !important;
  }
}
@media screen and (max-width: 768px) {
  .header.change-color .header_logo {
    width: 30% !important;
  }
}
.header.change-color .header_logo img {
  width: 50% !important;
  transition: all 1s 0s ease !important;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .header.change-color .header_logo img {
    width: 100% !important;
  }
}
@media screen and (max-width: 768px) {
  .header.change-color .header_logo img {
    width: 100% !important;
  }
}

/*　コンタクトボタン　*/
.header_btn {
  display: block;
  position: fixed;
  z-index: 10005;
  right: 180px;
  top: 25px;
  width: 80px;
  height: 80px;
  cursor: pointer;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .header_btn {
    display: none;
  }
}
.header_btn a {
  min-height: 34px;
  border-radius: 100vw;
  padding: 15px 50px;
  background-color: #151c83;
  color: #f7f5f5;
  transition: all 0.4s;
  font-family: fantasy;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.2em;
}
.header_btn a:hover {
  background-color: #f7f5f5;
  color: #151c83;
  border: 1px solid #151c83;
}
.header_btn a::after {
  width: 0;
}

/*　ハンバーガーボタン　*/
.hamburger {
  display: block;
  position: fixed;
  z-index: 10005;
  right: 25px;
  top: 0px;
  width: 80px;
  height: 80px;
  cursor: pointer;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .hamburger {
    width: 17.9487vw;
    height: 17.9487vw;
    right: 0px;
  }
}

.hamburger span {
  display: block;
  position: absolute;
  width: 35px;
  height: 2px;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #151c83;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 35%;
}

.hamburger span:nth-child(2) {
  top: 50%;
}

.hamburger span:nth-child(3) {
  top: 65%;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 50%;
  left: 50%;
  background: #151c83;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 50%;
  left: 50%;
  background: #151c83;
  transform: translate(-50%, -50%) rotate(45deg);
}

/*
.hamburger.active{
    background-color: #fff;
}
*/
nav.globalMenuSp {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  color: #fff;
  background: rgba(216, 226, 247, 0.9);
  text-align: center;
  width: 100%;
  height: 100vh;
  transform: translate(100%);
  transition: all 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}

nav.globalMenuSp .header_logo {
  height: 180px;
  margin-top: 0 !important;
}

nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: 0.4s all;
}

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

nav.globalMenuSp ul li:hover {
  background: #ddd;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #151c83;
  padding: 1em 0;
  text-decoration: none;
  font-size: 2vw;
}
@media screen and (max-width: 768px) {
  nav.globalMenuSp ul li a {
    font-size: 3vw;
  }
}
nav.globalMenuSp ul li a i {
  font-size: 2vw;
  margin-right: 1vw;
}
@media screen and (max-width: 768px) {
  nav.globalMenuSp ul li a i {
    font-size: 4vw;
  }
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translate(0%);
}

.cta {
  position: relative;
  margin: auto;
  padding: 10px 15px;
  transition: all 0.2s ease;
  border: 3px solid #151c83;
  border-radius: 50px;
  background: #151c83;
  cursor: pointer;
}

.cta:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  border-radius: 50px;
  background: #fdfdfd;
  width: 40px;
  height: 40px;
  transition: all 0.8s ease;
}
@media screen and (min-width: 1441px) {
  .cta:before {
    top: 5.5%;
  }
}

.cta span {
  position: relative;
  font-family: Montserrat;
  font-size: 0.9vw;
  color: #fdfdfd;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.cta svg {
  position: relative;
  top: 0;
  margin-left: 10px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #fdfdfd;
  stroke-width: 2;
  transform: translateX(-5px);
  transition: all 0.5s ease;
}

.cta:hover:before {
  width: 100%;
  background: #a2945e;
}

.cta:hover svg {
  transform: translateX(0);
  transition: all 2s ease;
}

.cta:active {
  transform: scale(0.95);
  transition: all 2s ease;
}

/* ↓↓↓ ローディング ↓↓↓ */
.loading.is-active {
  opacity: 0;
  visibility: hidden;
  overflow-y: hidden;
}

.loading_text {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 555;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.load_main_bg {
  position: absolute;
  z-index: 556;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  opacity: 1;
  background: #fdfdfd;
}

.loadingImg {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 557;
  width: 20%;
  height: auto;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .loadingImg {
    width: 30%;
  }
}
@media screen and (max-width: 768px) {
  .loadingImg {
    width: 65%;
  }
}
.loadingImg img {
  width: 100%;
  height: 100%;
}

.loadingText {
  position: absolute;
  z-index: 557;
  font-size: 20rem;
  font-weight: bolder;
  color: #e0dfd8;
  font-family: system-ui;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .loadingText {
    font-size: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .loadingText {
    font-size: 10rem;
  }
}

#box {
  z-index: 557;
  width: 500px;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes obrot {
  0% {
    transform: rotateX(0);
  }
  12.5% {
    transform: rotateX(90deg);
  }
  25% {
    transform: rotateX(180deg);
  }
  37.5% {
    transform: rotateX(270deg);
  }
  50% {
    transform: rotateX(360deg);
  }
  100% {
    transform: rotateX(360deg);
  }
}
#box div:nth-child(1) {
  animation-delay: 0s;
}

#box div:nth-child(2) {
  animation-delay: 0.1s;
}

#box div:nth-child(3) {
  animation-delay: 0.2s;
}

#box div:nth-child(4) {
  animation-delay: 0.3s;
}

#box div:nth-child(5) {
  animation-delay: 0.4s;
}

#box div:nth-child(6) {
  animation-delay: 0.5s;
}

#box div:nth-child(7) {
  animation-delay: 0.6s;
}

.top_bg {
  background-color: #f7f5f5;
  background-position: top center;
  background-repeat: repeat;
  background-size: 180px;
}

#top_main {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 100svh;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_main {
    height: 70svh;
  }
}
@media screen and (max-width: 768px) {
  #top_main {
    height: 70svh;
  }
}
#top_main .top_main_bg {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
}
#top_main .slide-images {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_main .slide-images {
    height: 70svh;
  }
}
@media screen and (max-width: 768px) {
  #top_main .slide-images {
    height: 70svh;
  }
}
#top_main .slide-images .slick-list {
  width: 100%;
  height: 100%;
}
#top_main .slide-images .slick-list .slick-track {
  width: 100%;
  height: 100%;
}
#top_main .slide-images .slick-list .slick-track img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@keyframes topMainText {
  0% {
    transform: translate(-100%);
  }
  100% {
    transform: translate(0%);
  }
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15); /* 拡大率 */
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}

.slide-images {
  position: relative;
}

.slide-image_flex {
  position: absolute;
  top: 50%;
  left: 10%;
  z-index: 99;
}
@media screen and (min-width: 1441px) {
  .slide-image_flex {
    top: 50%;
    left: 10%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .slide-image_flex {
    top: 55%;
    left: 10%;
  }
}
@media screen and (max-width: 768px) {
  .slide-image_flex {
    top: 50%;
    left: 5%;
  }
}
.slide-image_flex .slide_txt {
  text-align: left;
  font-size: 7rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 4vw;
  -webkit-text-stroke: 0.5px #252525;
  paint-order: stroke;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .slide-image_flex .slide_txt {
    font-size: 5rem;
    top: 60vw;
  }
}
@media screen and (max-width: 768px) {
  .slide-image_flex .slide_txt {
    font-size: 3rem;
    top: 60vw;
  }
}

.tracking-in-expand {
  animation: tracking-in-expand 1s cubic-bezier(0.215, 0.61, 0.355, 1) both;
}
@keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
/*-- TOPキャッチ ------------------*/
#home_catch {
  padding: 5vw 0 0;
  background-color: #fff;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #home_catch {
    padding: 8vw 0 0;
  }
}
@media screen and (max-width: 768px) {
  #home_catch {
    padding: 10vw 0 0;
  }
}
#home_catch .home_inner {
  width: 90%;
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  #home_catch .home_inner {
    max-width: 80%;
  }
}
#home_catch .home_inner h2 {
  text-align: center;
  margin-bottom: 1em;
  letter-spacing: 0.05em;
  line-height: 1.55;
  font-size: 4.5rem;
  font-weight: 400;
  color: #616477;
  font-family: "Cormorant", serif;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #home_catch .home_inner h2 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 768px) {
  #home_catch .home_inner h2 {
    font-size: 2rem;
  }
}
#home_catch .home_inner p {
  font-family: "Cormorant", serif;
  font-size: 1.8rem;
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 2.25;
  padding: 0 5vw 5vw;
}
@media screen and (min-width: 1441px) {
  #home_catch .home_inner p {
    padding: 0 15vw 5vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #home_catch .home_inner p {
    font-size: 1.7rem;
    padding: 0 8vw 8vw;
  }
}
@media screen and (max-width: 768px) {
  #home_catch .home_inner p {
    font-size: 1.2rem;
    padding: 0 1.5vw 10vw;
  }
}

.row {
  overflow: hidden;
}
.row .autoplay-slider {
  display: flex;
  width: 100%;
  list-style: none;
}
.row .slide {
  height: 15vw;
  width: 220px;
  position: relative;
}
@media screen and (min-width: 1441px) {
  .row .slide {
    width: 280px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .row .slide {
    width: 200px;
  }
}
@media screen and (max-width: 768px) {
  .row .slide {
    width: 150px;
    height: 40vw;
  }
}
.row .slide .top_about_image_bg {
  height: 15vw;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 1441px) {
  .row .slide .top_about_image_bg {
    height: 15vw;
  }
}
@media screen and (max-width: 768px) {
  .row .slide .top_about_image_bg {
    height: 40vw;
  }
}
@keyframes sliderAnimation {
  100% {
    transform: translateX(-50%);
  }
}
.row .autoplay-slider {
  display: flex;
  min-width: 100%;
  width: -moz-min-content;
  width: min-content;
  animation: 30s linear infinite sliderAnimation;
}

/*-- 中央見出し ------------------*/
.top_ttl {
  text-align: center;
  width: 100%;
}
.top_ttl .top_head {
  font-size: 3rem;
  color: #616477;
  margin-bottom: 0.5em;
}
.top_ttl .top_head .top_head_en {
  display: block;
  font-size: 5.5rem;
  line-height: 0.8;
  letter-spacing: 0.04em;
  margin-bottom: 0.625rem;
  font-weight: 400;
  color: #616477;
  font-family: fantasy;
  -webkit-text-stroke: 4px #fdfdfd;
  paint-order: stroke;
}
@media screen and (max-width: 768px) {
  .top_ttl .top_head .top_head_en {
    font-size: 4rem;
  }
}
.top_ttl .top_head .top_head_ja {
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  line-height: 1.666;
  font-weight: 700;
  color: #bebdb9;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  -webkit-text-stroke: 1px #fdfdfd;
  paint-order: stroke;
}

/*-- 挨拶 ------------------*/
#greeting {
  background-size: 120%;
  background-position: top;
  background-repeat: no-repeat;
  background-color: rgba(238, 249, 255, 0.7);
}
@media screen and (max-width: 768px) {
  #greeting {
    background-position: center;
  }
}
#greeting .greeting {
  width: 100%;
  margin: 0 auto;
}
#greeting .greeting .greeting_top {
  padding-top: 10vh;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding-left: 5%;
}
@media screen and (max-width: 768px) {
  #greeting .greeting .greeting_top {
    display: block;
    padding-left: 0;
  }
}
#greeting .greeting .greeting_top .greeting_top_right {
  width: 35%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #greeting .greeting .greeting_top .greeting_top_right {
    width: 30%;
  }
}
@media screen and (max-width: 768px) {
  #greeting .greeting .greeting_top .greeting_top_right {
    width: 80%;
    margin: 0 auto;
  }
}
#greeting .greeting .greeting_top .greeting_top_right .greeting_head .greeting_head_en {
  display: block;
  font-size: 5.5rem;
  line-height: 0.8;
  letter-spacing: 0.04em;
  margin-bottom: 0.625rem;
  font-weight: 400;
  color: #616477;
  font-family: fantasy;
  -webkit-text-stroke: 4px #fdfdfd;
  paint-order: stroke;
}
@media screen and (max-width: 768px) {
  #greeting .greeting .greeting_top .greeting_top_right .greeting_head .greeting_head_en {
    font-size: 4rem;
  }
}
#greeting .greeting .greeting_top .greeting_top_right .greeting_head .greeting_head_ja {
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  line-height: 1.666;
  font-weight: 700;
  color: #bebdb9;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  -webkit-text-stroke: 1px #fdfdfd;
  paint-order: stroke;
}
#greeting .greeting .greeting_top .greeting_top_right h3 {
  font-size: 2.2vw;
  line-height: 1.5;
  -webkit-text-stroke: 5px #fdfdfd;
  paint-order: stroke;
}
@media screen and (max-width: 768px) {
  #greeting .greeting .greeting_top .greeting_top_right h3 {
    font-size: 5.5vw;
  }
}
#greeting .greeting .greeting_top .greeting_top_left {
  width: 55%;
  padding-top: 5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #greeting .greeting .greeting_top .greeting_top_left {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  #greeting .greeting .greeting_top .greeting_top_left {
    width: 90%;
    margin: 0 auto;
  }
}
#greeting .greeting .greeting_top .greeting_top_left p {
  font-size: 1.5rem;
  padding: 3vw;
  -webkit-text-stroke: 5px #fdfdfd;
  paint-order: stroke;
  background-color: rgba(239, 239, 239, 0.768627451);
  border-radius: 10px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #greeting .greeting .greeting_top .greeting_top_left p {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 768px) {
  #greeting .greeting .greeting_top .greeting_top_left p {
    font-size: 1.1rem;
    padding: 3vw 2vw;
  }
}
#greeting .greeting .greeting_top .greeting_top_left p .txt-L {
  font-size: 2rem;
  border-bottom: 1px solid #333;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #greeting .greeting .greeting_top .greeting_top_left p .txt-L {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 768px) {
  #greeting .greeting .greeting_top .greeting_top_left p .txt-L {
    font-size: 1.6rem;
  }
}
#greeting .greeting .greeting_top .greeting_top_left .btn_container {
  -webkit-text-stroke: 1px #fdfdfd;
  paint-order: stroke;
}
#greeting .greeting .greeting_bottom {
  width: 100%;
  height: 80svh;
  position: relative;
}
@media screen and (min-width: 1441px) {
  #greeting .greeting .greeting_bottom {
    height: 105svh;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #greeting .greeting .greeting_bottom {
    height: 40svh;
  }
}
@media screen and (max-width: 768px) {
  #greeting .greeting .greeting_bottom {
    height: 70svh;
  }
}
#greeting .greeting .greeting_bottom .greeting_img .greeting_img_list img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 100px;
}
#greeting .greeting .greeting_bottom .greeting_img .greet_ab01 {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 20%;
  height: 20vw;
}
@media screen and (max-width: 768px) {
  #greeting .greeting .greeting_bottom .greeting_img .greet_ab01 {
    width: 30%;
    height: 30vw;
  }
}
#greeting .greeting .greeting_bottom .greeting_img .greet_ab02 {
  position: absolute;
  top: 55%;
  left: 15%;
  width: 25%;
  height: 20vw;
}
@media screen and (max-width: 768px) {
  #greeting .greeting .greeting_bottom .greeting_img .greet_ab02 {
    width: 30%;
    height: 30vw;
  }
}
#greeting .greeting .greeting_bottom .greeting_img .greet_ab03 {
  position: absolute;
  top: 14%;
  left: 35%;
  width: 30%;
  height: 20vw;
}
@media screen and (max-width: 768px) {
  #greeting .greeting .greeting_bottom .greeting_img .greet_ab03 {
    top: 30%;
    width: 30%;
    height: 30vw;
  }
}
#greeting .greeting .greeting_bottom .greeting_img .greet_ab04 {
  position: absolute;
  top: 10%;
  left: 70%;
  width: 25%;
  height: 15vw;
}
@media screen and (max-width: 768px) {
  #greeting .greeting .greeting_bottom .greeting_img .greet_ab04 {
    width: 30%;
    height: 30vw;
  }
}
#greeting .greeting .greeting_bottom .greeting_img .greet_ab05 {
  position: absolute;
  top: 48%;
  left: 65%;
  width: 20%;
  height: 25vw;
}
@media screen and (max-width: 768px) {
  #greeting .greeting .greeting_bottom .greeting_img .greet_ab05 {
    width: 30%;
    height: 30vw;
  }
}

/*-- 横並びコンテンツ ------------------*/
#flex_contents .flex_contents_inner {
  width: 100%;
  margin: 0 auto;
  background-color: #f5f5f5;
  padding: 10vw 3vw;
}
#flex_contents .flex_contents_inner .flex_contents_ttl {
  text-align: center;
}
#flex_contents .flex_contents_inner .flex_contents_ttl .flex_contents_head {
  font-size: 3rem;
  color: #616477;
  margin-bottom: 0.5em;
}
#flex_contents .flex_contents_inner .flex_contents_ttl .flex_contents_head .flex_contents_head_en {
  display: block;
  font-size: 5.5rem;
  line-height: 0.8;
  letter-spacing: 0.04em;
  margin-bottom: 0.625rem;
  font-weight: 400;
  color: #616477;
  font-family: fantasy;
}
@media screen and (max-width: 768px) {
  #flex_contents .flex_contents_inner .flex_contents_ttl .flex_contents_head .flex_contents_head_en {
    font-size: 4rem;
  }
}
#flex_contents .flex_contents_inner .flex_contents_ttl .flex_contents_head .flex_contents_head_ja {
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  line-height: 1.666;
  font-weight: 700;
  color: #bebdb9;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}
#flex_contents .flex_contents_inner .flex_contents {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
@media screen and (max-width: 768px) {
  #flex_contents .flex_contents_inner .flex_contents {
    display: block;
  }
}
#flex_contents .flex_contents_inner .flex_contents .flex_contents_item {
  width: 40%;
  background-color: #f8f8f8;
}
@media screen and (max-width: 768px) {
  #flex_contents .flex_contents_inner .flex_contents .flex_contents_item {
    width: 80%;
    margin: 0 auto 3vw;
  }
}
#flex_contents .flex_contents_inner .flex_contents .flex_contents_item a {
  height: 20vw;
  display: block;
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 25px;
  box-shadow: 6px 6px 10px 0px rgba(68, 68, 68, 0.4);
}
@media screen and (max-width: 768px) {
  #flex_contents .flex_contents_inner .flex_contents .flex_contents_item a {
    height: 45vw;
  }
}
#flex_contents .flex_contents_inner .flex_contents .flex_contents_item a .flex_contents_txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
#flex_contents .flex_contents_inner .flex_contents .flex_contents_item a .flex_contents_txt h4 {
  transition: all 1s ease;
  color: #fdfdfd;
  -webkit-text-stroke: 1px #000;
  paint-order: stroke;
}
#flex_contents .flex_contents_inner .flex_contents .flex_contents_item a:hover h4 {
  transform: scale(1.3);
}

/*-- 会社 ------------------*/
#top_company {
  padding-top: 10vw;
  padding-bottom: 10vw;
  padding-left: 15vw;
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
}
#top_company .top_company_inner {
  width: 80%;
  margin-left: auto;
  padding: 5vw 3vw 0;
}
@media screen and (max-width: 768px) {
  #top_company .top_company_inner {
    width: 90%;
  }
}
#top_company .top_company_inner .top_ttl {
  margin-top: 10vw;
}
#top_company .top_company_inner .top_company .company_txt {
  text-align: center;
}
@media screen and (max-width: 768px) {
  #top_company .top_company_inner .top_company .company_txt {
    text-align: left;
  }
}
#top_company .top_company_inner .top_company .company_txt p {
  font-size: 1.5rem;
  -webkit-text-stroke: 4px #fdfdfd;
  paint-order: stroke;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_company .top_company_inner .top_company .company_txt p {
    font-size: 1.5rem;
    padding: 0 5vw;
  }
}
@media screen and (max-width: 768px) {
  #top_company .top_company_inner .top_company .company_txt p {
    font-size: 1rem;
    padding: 0 2vw;
  }
}
#top_company .top_company_inner .top_company_img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #top_company .top_company_inner .top_company_img {
    display: none;
  }
}
#top_company .top_company_inner .top_company_img ul {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  #top_company .top_company_inner .top_company_img ul {
    display: block;
  }
}
#top_company .top_company_inner .top_company_img ul li {
  width: 25%;
}
@media screen and (max-width: 768px) {
  #top_company .top_company_inner .top_company_img ul li {
    width: 100%;
    height: 25vh;
  }
}
#top_company .top_company_inner .top_company_img ul li img {
  width: 100%;
  height: 60vh;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_company .top_company_inner .top_company_img ul li img {
    height: 30vh;
  }
}
@media screen and (max-width: 768px) {
  #top_company .top_company_inner .top_company_img ul li img {
    height: 25vh;
  }
}
#top_company .top_company_inner .top_company_img ul li:first-child img {
  border-radius: 100px 0 0 100px;
}
@media screen and (max-width: 768px) {
  #top_company .top_company_inner .top_company_img ul li:first-child img {
    border-radius: 50px 50px 0 0;
  }
}
#top_company .top_company_inner .top_company_img ul li:last-child img {
  border-radius: 0 100px 100px 0;
}
@media screen and (max-width: 768px) {
  #top_company .top_company_inner .top_company_img ul li:last-child img {
    border-radius: 0 0 50px 50px;
  }
}

#news {
  position: relative;
  margin-bottom: 80px;
}
#news .news_contents {
  width: 80%;
  margin: auto;
  padding: 0px 0;
}
@media screen and (max-width: 768px) {
  #news .news_contents {
    width: 95%;
  }
}
#news .news_contents ul {
  list-style: none;
}
#news .news_contents ul a {
  text-decoration: none;
  color: #151c83;
}
#news .news_contents ul a li {
  width: 100%;
  margin-bottom: 40px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  transition: all 0.4s;
}
#news .news_contents ul a li:hover {
  opacity: 0.7;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news .news_contents ul a li {
    width: 45%;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  #news .news_contents ul a li {
    width: 90%;
    margin: auto;
    margin-bottom: 40px;
  }
}
#news .news_contents ul a li .outline {
  background-color: #fff;
  padding: 40px 20px;
  height: 180px;
}
@media screen and (max-width: 768px) {
  #news .news_contents ul a li .outline {
    height: 150px;
  }
}
#news .news_contents ul a li .outline .title {
  color: #151c83;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
  position: relative;
}
@media screen and (max-width: 768px) {
  #news .news_contents ul a li .outline .title {
    font-size: 12.5px;
    margin-bottom: 10px;
  }
}
#news .news_contents ul a li .outline .descn p {
  color: #333;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  #news .news_contents ul a li .outline .descn p {
    font-size: 10px;
  }
}
#news .news_contents .navigation {
  margin-top: 80px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #news .news_contents .navigation {
    margin-top: 40px;
  }
}

.wp-pagenavi span.current {
  color: #fff;
  padding: 10px;
  margin: 0 10px;
  background-color: #151c83;
}
@media screen and (max-width: 768px) {
  .wp-pagenavi span.current {
    padding: 5px;
  }
}

.wp-pagenavi a, .wp-pagenavi span {
  border: none !important;
}

.wp-pagenavi a {
  text-decoration: underline;
  transition: all 0.4s;
  padding: 10px;
  text-decoration: none;
  color: #151c83;
}
@media screen and (max-width: 768px) {
  .wp-pagenavi a {
    padding: 5px;
  }
}
.wp-pagenavi a:hover {
  opacity: 0.5;
}

.nextpostslink {
  text-decoration: none;
}

.previouspostslink {
  text-decoration: none;
}

#news_single {
  position: relative;
  margin-bottom: 80px;
}
#news_single .news_contents {
  width: 80%;
  margin: auto;
  padding: 0px 0;
}
@media screen and (max-width: 768px) {
  #news_single .news_contents {
    width: 95%;
  }
}
#news_single .news_contents ul {
  list-style: none;
}
#news_single .news_contents ul li {
  width: 100%;
  margin-bottom: 40px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news_single .news_contents ul li {
    width: 45%;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  #news_single .news_contents ul li {
    width: 45%;
    margin: auto;
    margin-bottom: 40px;
  }
}
#news_single .news_contents ul li .outline {
  padding: 40px 20px;
  height: 180px;
}
@media screen and (max-width: 768px) {
  #news_single .news_contents ul li .outline {
    height: 150px;
  }
}
#news_single .news_contents ul li .outline .title {
  color: #151c83;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
  position: relative;
}
@media screen and (max-width: 768px) {
  #news_single .news_contents ul li .outline .title {
    font-size: 12.5px;
    margin-bottom: 10px;
  }
}
#news_single .news_contents ul li .outline .descn p {
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  #news_single .news_contents ul li .outline .descn p {
    font-size: 10px;
  }
}

#buysell {
  margin-top: 10vh;
  width: 100%;
  margin: 0 auto;
}
#buysell .buysell_headline {
  display: flex;
  text-align: center;
  margin: 80px auto;
  width: 50%;
  justify-content: center;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #buysell .buysell_headline {
    width: 75%;
  }
}
@media screen and (max-width: 768px) {
  #buysell .buysell_headline {
    width: 90%;
    flex-direction: column-reverse;
  }
}
#buysell .buysell_headline .buysell_heading_bg {
  position: absolute;
  top: -20%;
  left: -30%;
  color: #11779f;
  font-weight: 600;
  opacity: 0.2;
  font-family: fantasy;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #buysell .buysell_headline .buysell_heading_bg {
    top: -10%;
    left: -10%;
  }
}
@media screen and (max-width: 768px) {
  #buysell .buysell_headline .buysell_heading_bg {
    top: -10%;
    left: 0;
    font-size: 5rem;
  }
}
#buysell .buysell_headline .buysell_headline-t {
  text-align: start;
  padding-top: 10vw;
}
@media screen and (max-width: 768px) {
  #buysell .buysell_headline .buysell_headline-t {
    line-height: 2;
    font-size: 1rem;
  }
}
#buysell .buysell_headline .buysell_headline-h {
  margin-bottom: 20px;
  writing-mode: vertical-rl;
  position: relative;
  line-height: 1.5;
  margin-left: 3vw;
  color: #616477;
  font-family: "Cormorant", serif;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #buysell .buysell_headline .buysell_headline-h {
    margin-bottom: 15vw;
  }
}
@media screen and (max-width: 768px) {
  #buysell .buysell_headline .buysell_headline-h {
    writing-mode: horizontal-tb;
  }
}
#buysell .buysell_headline .buysell_headline-h .buysell_icon {
  position: absolute;
  top: 50%;
  left: 180%;
  width: 200%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #buysell .buysell_headline .buysell_headline-h .buysell_icon {
    top: 95%;
    left: -80%;
    width: 200%;
  }
}
@media screen and (max-width: 768px) {
  #buysell .buysell_headline .buysell_headline-h .buysell_icon {
    display: none;
  }
}
#buysell .buysell_headline .buysell_headline-h .buysell_icon img {
  width: 100%;
}
#buysell .buysell_headline-i {
  overflow: hidden;
  width: 100%;
  margin: 5vw calc(50% - 50vw);
  height: 50vh;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #buysell .buysell_headline-i {
    height: 30vh;
  }
}
#buysell .buysell_headline-i img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: -webkit-fill-available;
}

.buysell_inner {
  position: relative;
  background-color: #fdfdfd;
  margin: 20vw 0 10vw;
}
@media screen and (max-width: 768px) {
  .buysell_inner {
    margin: 20vw 0;
  }
}
.buysell_inner .buysell_content {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}
.buysell_inner .buysell_content .buysell_heading_bg-c {
  position: absolute;
  top: -30%;
  color: #11779f;
  font-weight: 600;
  opacity: 0.2;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .buysell_inner .buysell_content .buysell_heading_bg-c {
    top: -10%;
  }
}
@media screen and (max-width: 768px) {
  .buysell_inner .buysell_content .buysell_heading_bg-c {
    top: -10%;
    font-size: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .buysell_inner .buysell_content h2 {
    padding-top: 10vw;
  }
}
.buysell_inner .buysell_content .buysell_content_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  position: relative;
}
.buysell_inner .buysell_content .buysell_content_list::after {
  content: "";
  position: absolute;
  width: 90%;
  height: 1px;
  background-color: #151c83;
  bottom: -25%;
}
.buysell_inner .buysell_content .buysell_content_list .buysell_content_img {
  width: 47%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .buysell_inner .buysell_content .buysell_content_list .buysell_content_img {
    width: 60%;
    margin: 5vw 0;
  }
}
@media screen and (max-width: 768px) {
  .buysell_inner .buysell_content .buysell_content_list .buysell_content_img {
    width: 100%;
    margin: 5vw 0;
  }
}
.buysell_inner .buysell_content .buysell_content_list .buysell_content_img img {
  width: 100%;
  border-radius: 12px;
}
.buysell_inner .buysell_content .buysell_content_list .buysell_content_txt {
  width: 50%;
  text-align: start;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .buysell_inner .buysell_content .buysell_content_list .buysell_content_txt {
    width: 70%;
  }
}
.buysell_inner .buysell_content .buysell_content_list .buysell_content_txt h3 {
  color: #616477;
  font-family: "Cormorant", serif;
}
.buysell_inner .buysell_content .buysell_content_list .buysell_content_txt h5 {
  font-size: 1vw;
  line-height: 0;
  font-weight: 400;
  color: #616477;
  font-family: fantasy;
  position: relative;
}
.buysell_inner .buysell_content .buysell_content_list .buysell_content_txt h5::before {
  content: "";
  position: absolute;
  width: 90%;
  height: 1px;
  background-color: #151c83;
  top: 15px;
}
@media screen and (max-width: 768px) {
  .buysell_inner .buysell_content .buysell_content_list .buysell_content_txt h5 {
    font-size: 3vw;
  }
}
.buysell_inner .buysell_content .buysell_content_list .buysell_content_txt p {
  padding-top: 3vw;
}
@media screen and (max-width: 768px) {
  .buysell_inner .buysell_content .buysell_content_list .buysell_content_txt p {
    padding-top: 8vw;
    font-size: 1rem;
  }
}
.buysell_inner .buysell_content .buysell_content_list:last-child::after {
  display: none;
}

.buysell_property {
  text-align: center;
  margin: 15vw auto 10vw;
  width: 80%;
  justify-content: center;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .buysell_property {
    width: 75%;
  }
}
@media screen and (max-width: 768px) {
  .buysell_property {
    width: 90%;
  }
}
.buysell_property .buysell_heading_bg {
  position: absolute;
  top: -120%;
  left: 0%;
  color: #11779f;
  font-weight: 600;
  opacity: 0.2;
  font-family: fantasy;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .buysell_property .buysell_heading_bg {
    top: -50%;
    left: -10%;
  }
}
@media screen and (max-width: 768px) {
  .buysell_property .buysell_heading_bg {
    top: -45%;
    left: 0;
    font-size: 5rem;
  }
}
.buysell_property .buysell_headline-t {
  text-align: start;
  padding-top: 10vw;
}
@media screen and (max-width: 768px) {
  .buysell_property .buysell_headline-t {
    line-height: 2;
  }
}
.buysell_property .buysell_headline-h {
  margin-bottom: 20px;
  position: relative;
  line-height: 1.5;
  width: -moz-fit-content;
  width: fit-content;
  margin: 3vw auto;
  color: #616477;
  font-family: "Cormorant", serif;
  position: relative;
}
.buysell_property .buysell_headline-h::before {
  content: "";
  position: absolute;
  width: 130%;
  height: 1px;
  background-color: #151c83;
  top: 100%;
  left: -15%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .buysell_property .buysell_headline-h {
    margin-bottom: 15vw;
  }
}
@media screen and (max-width: 768px) {
  .buysell_property .buysell_headline-h {
    margin: 3vw auto 10vw;
  }
}

.reverse {
  flex-flow: row-reverse;
}

.list-s {
  position: relative;
  padding: 1.5em 1em 1em 2.5em;
  border: 2px solid #151c83;
  width: 30%;
  margin: 0 auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .list-s {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .list-s {
    width: 90%;
  }
}

.list-s > div {
  position: absolute;
  top: -1.3em;
  left: 1em;
  padding: 0 0.5em;
  background-color: #ffffff;
  color: #151c83;
  font-weight: 600;
  font-size: 1.5em;
}

.list-s ul {
  list-style-type: disc;
  margin: 0;
  padding: 0;
  display: flex;
  flex-flow: column;
  justify-content: center;
}

.list-s li {
  padding: 0.3em 0.3em 0.3em 0;
  list-style: decimal-leading-zero;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 2.5vw;
}
.list-s li a {
  color: #333;
  font-size: 1.5em;
}

.list-s li::marker {
  color: #151c83;
  font-size: 1.1em;
}

#vacant {
  margin-top: 10vh;
  width: 100%;
  margin: 0 auto;
}
#vacant .vacant_headline {
  display: flex;
  text-align: center;
  margin: 80px auto;
  width: 50%;
  justify-content: center;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #vacant .vacant_headline {
    width: 75%;
  }
}
@media screen and (max-width: 768px) {
  #vacant .vacant_headline {
    width: 90%;
    flex-direction: column-reverse;
  }
}
#vacant .vacant_headline .vacant_heading_bg {
  position: absolute;
  top: -20%;
  left: -30%;
  color: #11779f;
  font-weight: 600;
  opacity: 0.2;
  font-family: fantasy;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #vacant .vacant_headline .vacant_heading_bg {
    top: -10%;
    left: -10%;
  }
}
@media screen and (max-width: 768px) {
  #vacant .vacant_headline .vacant_heading_bg {
    top: -10%;
    left: 0;
    font-size: 5rem;
  }
}
#vacant .vacant_headline .vacant_headline-t {
  text-align: start;
  padding-top: 10vw;
}
@media screen and (max-width: 768px) {
  #vacant .vacant_headline .vacant_headline-t {
    line-height: 2;
    font-size: 1rem;
  }
}
#vacant .vacant_headline .vacant_headline-h {
  margin-bottom: 20px;
  writing-mode: vertical-rl;
  position: relative;
  line-height: 1.5;
  margin-left: 3vw;
  color: #616477;
  font-family: "Cormorant", serif;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #vacant .vacant_headline .vacant_headline-h {
    margin-bottom: 15vw;
  }
}
@media screen and (max-width: 768px) {
  #vacant .vacant_headline .vacant_headline-h {
    writing-mode: horizontal-tb;
  }
}
#vacant .vacant_headline .vacant_headline-h .vacant_icon {
  position: absolute;
  top: 50%;
  left: 180%;
  width: 200%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #vacant .vacant_headline .vacant_headline-h .vacant_icon {
    top: 95%;
    left: -80%;
    width: 200%;
  }
}
@media screen and (max-width: 768px) {
  #vacant .vacant_headline .vacant_headline-h .vacant_icon {
    display: none;
  }
}
#vacant .vacant_headline .vacant_headline-h .vacant_icon img {
  width: 100%;
}
#vacant .vacant_headline-i {
  overflow: hidden;
  width: 100%;
  margin: 5vw calc(50% - 50vw);
  height: 50vh;
  margin-bottom: 20vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #vacant .vacant_headline-i {
    height: 30vh;
  }
}
#vacant .vacant_headline-i img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0 20%;
     object-position: 0 20%;
  height: -webkit-fill-available;
}

.vacant_inner {
  position: relative;
  background-color: #fdfdfd;
  margin: 10vw 0 10vw;
}
@media screen and (max-width: 768px) {
  .vacant_inner {
    margin: 20vw 0;
  }
}
.vacant_inner .vacant_content {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .vacant_inner .vacant_content {
    width: 95%;
  }
}
.vacant_inner .vacant_content .vacant_heading_bg-c {
  position: absolute;
  top: -30%;
  color: #11779f;
  font-weight: 600;
  opacity: 0.2;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .vacant_inner .vacant_content .vacant_heading_bg-c {
    top: -10%;
    left: 10%;
  }
}
@media screen and (max-width: 768px) {
  .vacant_inner .vacant_content .vacant_heading_bg-c {
    top: -10%;
    font-size: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .vacant_inner .vacant_content h2 {
    padding-top: 10vw;
  }
}
.vacant_inner .vacant_content .vacant_content_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  position: relative;
}
.vacant_inner .vacant_content .vacant_content_list::after {
  content: "";
  position: absolute;
  width: 90%;
  height: 1px;
  background-color: #151c83;
  bottom: -25%;
}
.vacant_inner .vacant_content .vacant_content_list .vacant_content_img {
  width: 47%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .vacant_inner .vacant_content .vacant_content_list .vacant_content_img {
    width: 60%;
    margin: 5vw 0;
  }
}
@media screen and (max-width: 768px) {
  .vacant_inner .vacant_content .vacant_content_list .vacant_content_img {
    width: 100%;
    margin: 5vw 0;
  }
}
.vacant_inner .vacant_content .vacant_content_list .vacant_content_img img {
  width: 100%;
  border-radius: 12px;
}
.vacant_inner .vacant_content .vacant_content_list .vacant_content_txt {
  width: 50%;
  text-align: start;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .vacant_inner .vacant_content .vacant_content_list .vacant_content_txt {
    width: 70%;
  }
}
.vacant_inner .vacant_content .vacant_content_list .vacant_content_txt h3 {
  color: #616477;
  font-family: "Cormorant", serif;
}
.vacant_inner .vacant_content .vacant_content_list .vacant_content_txt h5 {
  font-size: 1vw;
  line-height: 0;
  font-weight: 400;
  color: #616477;
  font-family: fantasy;
  position: relative;
}
.vacant_inner .vacant_content .vacant_content_list .vacant_content_txt h5::before {
  content: "";
  position: absolute;
  width: 90%;
  height: 1px;
  background-color: #151c83;
  top: 15px;
}
@media screen and (max-width: 768px) {
  .vacant_inner .vacant_content .vacant_content_list .vacant_content_txt h5 {
    font-size: 3vw;
  }
}
.vacant_inner .vacant_content .vacant_content_list .vacant_content_txt p {
  padding-top: 3vw;
}
@media screen and (max-width: 768px) {
  .vacant_inner .vacant_content .vacant_content_list .vacant_content_txt p {
    padding-top: 8vw;
    font-size: 1rem;
  }
}
.vacant_inner .vacant_content .vacant_content_list:last-child::after {
  display: none;
}

.vacant_property {
  text-align: center;
  margin: 15vw auto 10vw;
  width: 80%;
  justify-content: center;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .vacant_property {
    width: 75%;
  }
}
@media screen and (max-width: 768px) {
  .vacant_property {
    width: 90%;
  }
}
.vacant_property .vacant_heading_bg {
  position: absolute;
  top: -120%;
  left: 0%;
  color: #11779f;
  font-weight: 600;
  opacity: 0.2;
  font-family: fantasy;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .vacant_property .vacant_heading_bg {
    top: -50%;
    left: -10%;
  }
}
@media screen and (max-width: 768px) {
  .vacant_property .vacant_heading_bg {
    top: -45%;
    left: 0;
    font-size: 5rem;
  }
}
.vacant_property .vacant_headline-t {
  text-align: start;
  padding-top: 10vw;
}
@media screen and (max-width: 768px) {
  .vacant_property .vacant_headline-t {
    line-height: 2;
  }
}
.vacant_property .vacant_headline-h {
  margin-bottom: 20px;
  position: relative;
  line-height: 1.5;
  width: -moz-fit-content;
  width: fit-content;
  margin: 3vw auto;
  color: #616477;
  font-family: "Cormorant", serif;
  position: relative;
}
.vacant_property .vacant_headline-h::before {
  content: "";
  position: absolute;
  width: 130%;
  height: 1px;
  background-color: #151c83;
  top: 100%;
  left: -15%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .vacant_property .vacant_headline-h {
    margin-bottom: 15vw;
  }
}
@media screen and (max-width: 768px) {
  .vacant_property .vacant_headline-h {
    margin: 3vw auto 10vw;
  }
}

#business {
  margin-top: 10vh;
  width: 100%;
  margin: 0 auto;
}
#business .business_headline {
  display: flex;
  text-align: center;
  margin: 80px auto;
  width: 50%;
  justify-content: center;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #business .business_headline {
    width: 75%;
  }
}
@media screen and (max-width: 768px) {
  #business .business_headline {
    width: 90%;
    flex-direction: column-reverse;
  }
}
#business .business_headline .business_heading_bg {
  position: absolute;
  top: -20%;
  left: -30%;
  color: #11779f;
  font-weight: 600;
  opacity: 0.2;
  font-family: fantasy;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #business .business_headline .business_heading_bg {
    top: -10%;
    left: -10%;
  }
}
@media screen and (max-width: 768px) {
  #business .business_headline .business_heading_bg {
    top: -10%;
    left: 0;
    font-size: 5rem;
  }
}
#business .business_headline .business_headline-t {
  text-align: start;
  padding-top: 10vw;
}
@media screen and (max-width: 768px) {
  #business .business_headline .business_headline-t {
    line-height: 2;
  }
}
#business .business_headline .business_headline-h {
  margin-bottom: 20px;
  writing-mode: vertical-rl;
  position: relative;
  line-height: 1.5;
  margin-left: 3vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #business .business_headline .business_headline-h {
    margin-bottom: 15vw;
  }
}
@media screen and (max-width: 768px) {
  #business .business_headline .business_headline-h {
    writing-mode: horizontal-tb;
  }
}
#business .business_headline .business_headline-h .business_icon {
  position: absolute;
  top: 50%;
  left: 180%;
  width: 200%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #business .business_headline .business_headline-h .business_icon {
    top: 95%;
    left: -80%;
    width: 200%;
  }
}
@media screen and (max-width: 768px) {
  #business .business_headline .business_headline-h .business_icon {
    display: none;
  }
}
#business .business_headline .business_headline-h .business_icon img {
  width: 100%;
}
#business .business_headline-i {
  overflow: hidden;
  width: 100%;
  margin: 5vw calc(50% - 50vw);
  height: 50vh;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #business .business_headline-i {
    height: 30vh;
  }
}
#business .business_headline-i img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: -webkit-fill-available;
}

.business_inner-01 {
  position: relative;
  background-color: #fdfdfd;
  margin: 20vw 0;
}
@media screen and (max-width: 768px) {
  .business_inner-01 {
    margin: 20vw 0 40vw;
  }
}
.business_inner-01 .business_content {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}
.business_inner-01 .business_content .business_heading_bg-c {
  position: absolute;
  top: 0%;
  right: 5%;
  color: #11779f;
  font-weight: 600;
  opacity: 0.1;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .business_inner-01 .business_content .business_heading_bg-c {
    top: 0%;
    right: 5%;
  }
}
@media screen and (max-width: 768px) {
  .business_inner-01 .business_content .business_heading_bg-c {
    top: 0%;
    right: 5%;
    font-size: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .business_inner-01 .business_content h2 {
    padding-top: 10vw;
  }
}
.business_inner-01 .business_content .business_content_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
}
.business_inner-01 .business_content .business_content_list .business_content_img {
  width: 50%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .business_inner-01 .business_content .business_content_list .business_content_img {
    width: 40%;
  }
}
@media screen and (max-width: 768px) {
  .business_inner-01 .business_content .business_content_list .business_content_img {
    width: 100%;
  }
}
.business_inner-01 .business_content .business_content_list .business_content_img img {
  width: 100%;
  border-radius: 12px;
}
.business_inner-01 .business_content .business_content_list .business_content_txt {
  width: -moz-fit-content;
  width: fit-content;
  writing-mode: vertical-rl;
  text-align: start;
}
@media screen and (max-width: 768px) {
  .business_inner-01 .business_content .business_content_list .business_content_txt {
    writing-mode: horizontal-tb;
  }
}
.business_inner-01 .business_content .business_content_list .business_content_txt p {
  padding-top: 3vw;
  height: 50vh;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .business_inner-01 .business_content .business_content_list .business_content_txt p {
    height: 40vh;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) and (max-width: 768px) {
  .business_inner-01 .business_content .business_content_list .business_content_txt p {
    height: auto;
  }
}

.business_inner-02 {
  position: relative;
  background-color: #fdfdfd;
  margin: 20vw 0;
}
@media screen and (max-width: 768px) {
  .business_inner-02 {
    margin: 40vw 0;
  }
}
.business_inner-02 .business_content {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}
.business_inner-02 .business_content .business_heading_bg-c {
  position: absolute;
  top: 0%;
  left: 5%;
  color: #11779f;
  font-weight: 600;
  opacity: 0.1;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .business_inner-02 .business_content .business_heading_bg-c {
    top: 0%;
    left: 5%;
  }
}
@media screen and (max-width: 768px) {
  .business_inner-02 .business_content .business_heading_bg-c {
    top: 0%;
    left: 5%;
    font-size: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .business_inner-02 .business_content h2 {
    padding-top: 10vw;
  }
}
.business_inner-02 .business_content .business_content_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .business_inner-02 .business_content .business_content_list {
    flex-flow: wrap-reverse;
  }
}
.business_inner-02 .business_content .business_content_list .business_content_img {
  width: 50%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .business_inner-02 .business_content .business_content_list .business_content_img {
    width: 40%;
  }
}
@media screen and (max-width: 768px) {
  .business_inner-02 .business_content .business_content_list .business_content_img {
    width: 100%;
  }
}
.business_inner-02 .business_content .business_content_list .business_content_img img {
  width: 100%;
  border-radius: 12px;
}
.business_inner-02 .business_content .business_content_list .business_content_txt {
  width: -moz-fit-content;
  width: fit-content;
  writing-mode: vertical-rl;
  text-align: start;
}
@media screen and (max-width: 768px) {
  .business_inner-02 .business_content .business_content_list .business_content_txt {
    writing-mode: horizontal-tb;
  }
}
.business_inner-02 .business_content .business_content_list .business_content_txt p {
  padding-top: 3vw;
  height: 50vh;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .business_inner-02 .business_content .business_content_list .business_content_txt p {
    height: 40vh;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) and (max-width: 768px) {
  .business_inner-02 .business_content .business_content_list .business_content_txt p {
    height: auto;
  }
}

#recruit_main {
  height: 700px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit_main {
    height: 550px;
  }
}
@media screen and (max-width: 768px) {
  #recruit_main {
    height: 300px;
  }
}
#recruit_main .recruit_main_contents {
  background-position: center;
  background-size: cover;
  width: 70%;
  height: 700px;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 0 0 80px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit_main .recruit_main_contents {
    width: 60%;
    height: 550px;
  }
}
@media screen and (max-width: 768px) {
  #recruit_main .recruit_main_contents {
    width: 95%;
    height: 300px;
  }
}
#recruit_main .recruit_main_contents .recruit_main_bg {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 0 0 0 80px;
  position: relative;
}
#recruit_main .recruit_main_contents .recruit_main_bg .recruit_title {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  #recruit_main .recruit_main_contents .recruit_main_bg .recruit_title {
    top: 130%;
    left: 5%;
    color: #151c83;
  }
}
#recruit_main .recruit_main_contents .recruit_main_bg .recruit_title h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 48px;
  letter-spacing: 3.5px;
}
@media screen and (max-width: 768px) {
  #recruit_main .recruit_main_contents .recruit_main_bg .recruit_title h2 {
    font-size: 36px;
  }
}

#recruit .recruit_headline {
  display: flex;
  text-align: center;
  margin: 80px auto;
  width: 50%;
  justify-content: center;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit .recruit_headline {
    width: 75%;
  }
}
@media screen and (max-width: 768px) {
  #recruit .recruit_headline {
    width: 90%;
    flex-direction: column-reverse;
  }
}
#recruit .recruit_headline .recruit_heading_bg {
  position: absolute;
  top: -20%;
  left: -30%;
  color: #11779f;
  font-weight: 600;
  opacity: 0.1;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit .recruit_headline .recruit_heading_bg {
    top: -10%;
    left: -10%;
  }
}
@media screen and (max-width: 768px) {
  #recruit .recruit_headline .recruit_heading_bg {
    top: -10%;
    left: 0;
    font-size: 5rem;
  }
}
#recruit .recruit_headline .recruit_headline-t {
  text-align: start;
  padding-top: 3vw;
}
#recruit .recruit_headline .recruit_headline-h {
  margin-bottom: 20px;
  writing-mode: vertical-rl;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit .recruit_headline .recruit_headline-h {
    margin-bottom: 15vw;
  }
}
@media screen and (max-width: 768px) {
  #recruit .recruit_headline .recruit_headline-h {
    writing-mode: horizontal-tb;
  }
}
#recruit .recruit_headline .recruit_headline-h .recruit_icon {
  position: absolute;
  top: 50%;
  left: 170%;
  width: 400%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit .recruit_headline .recruit_headline-h .recruit_icon {
    top: 95%;
    left: -80%;
    width: 350%;
  }
}
@media screen and (max-width: 768px) {
  #recruit .recruit_headline .recruit_headline-h .recruit_icon {
    display: none;
  }
}
#recruit .recruit_headline .recruit_headline-h .recruit_icon img {
  width: 100%;
}
#recruit .recruit_headline-i {
  overflow: hidden;
  width: 100%;
  margin: 5vw calc(50% - 50vw);
  height: 50vh;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit .recruit_headline-i {
    height: 30vh;
  }
}
#recruit .recruit_headline-i img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: -webkit-fill-available;
}
#recruit .recruit_contents {
  width: 100%;
  margin: auto;
  position: relative;
  padding-bottom: 60px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit .recruit_contents {
    width: 100%;
    padding-bottom: 180px;
  }
}
@media screen and (max-width: 768px) {
  #recruit .recruit_contents {
    width: 100%;
    padding: 60px 0;
    padding-bottom: 160px;
  }
}
#recruit .recruit_contents p {
  text-align: center;
}
#recruit .recruit_contents .recruit_detail_title {
  text-align: center;
  margin-bottom: 40px;
  color: #151c83;
}
@media screen and (max-width: 768px) {
  #recruit .recruit_contents .recruit_detail_title {
    margin-bottom: 20px;
  }
}
#recruit .recruit_contents .recruit_detail {
  width: 65%;
  margin: auto;
  background-color: #fff;
  border-radius: 25px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 80px;
  position: relative;
  z-index: 100;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit .recruit_contents .recruit_detail {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #recruit .recruit_contents .recruit_detail {
    width: 90%;
    padding: 20px;
  }
}
#recruit .recruit_contents .recruit_detail table {
  width: 100%;
  margin: 0;
}
#recruit .recruit_contents .recruit_detail table tr th {
  width: 35%;
  padding: 20px 0;
  border-bottom: 2px solid #ddd;
  text-align: end;
  padding-right: 40px;
  color: #333;
  font-size: 1.3rem;
}
@media screen and (max-width: 768px) {
  #recruit .recruit_contents .recruit_detail table tr th {
    padding-right: 20px;
    font-size: 1rem;
    width: 35%;
  }
}
#recruit .recruit_contents .recruit_detail table tr td {
  width: 65%;
  padding: 20px 0;
  border-bottom: 2px solid #333;
  padding-left: 40px;
  font-size: 1.3rem;
}
@media screen and (max-width: 768px) {
  #recruit .recruit_contents .recruit_detail table tr td {
    padding-left: 20px;
    font-size: 1rem;
    width: 65%;
  }
}
#recruit .recruit_contents .recruit_detail .recruit_btn {
  text-align: center;
  margin-top: 40px;
}
#recruit .recruit_contents .recruit_detail .recruit_btn button {
  padding: 20px 180px;
  border-radius: 50px;
  font-size: 18px;
  border: none;
  background-color: #fff;
  color: #333;
  transition: all 0.4s;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit .recruit_contents .recruit_detail .recruit_btn button {
    padding: 20px 160px;
  }
}
@media screen and (max-width: 768px) {
  #recruit .recruit_contents .recruit_detail .recruit_btn button {
    padding: 10px 60px;
    font-size: 12.5px;
  }
}
#recruit .recruit_contents .recruit_detail .recruit_btn button:hover {
  background-color: #fff;
}

#company {
  padding-top: 220px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  overflow-x: hidden;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company {
    padding: 60px 0 0;
  }
}
@media screen and (max-width: 768px) {
  #company {
    margin: 0;
    padding: 0;
    margin-top: 10vw;
  }
}
#company .company_heading_bg {
  position: absolute;
  top: 0%;
  left: 15%;
  color: #11779f;
  font-weight: 600;
  opacity: 0.2;
  font-family: fantasy;
}
@media screen and (max-width: 768px) {
  #company .company_heading_bg {
    top: -3%;
    font-size: 5rem;
    left: 25%;
  }
}
#company .re_bg {
  left: 50% !important;
}
@media screen and (max-width: 768px) {
  #company .re_bg {
    left: 25% !important;
  }
}
#company .lower_headline {
  text-align: center;
  width: 100%;
}
#company .lower_headline h4 {
  font-size: 3rem;
  color: #151c83;
  letter-spacing: 0.6vw;
}
#company .company_img {
  width: 40%;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  #company .company_img {
    width: 100%;
    padding: 0;
  }
}
#company .company_img img {
  height: 110vh;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 0 12px 12px 0;
}
@media screen and (min-width: 1441px) {
  #company .company_img img {
    height: 150vh;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company .company_img img {
    height: 80vh;
  }
}
@media screen and (max-width: 768px) {
  #company .company_img img {
    height: 15vh;
    border-radius: 0;
  }
}
#company .company_greeting {
  width: 90%;
  margin-right: auto;
  position: relative;
  padding-top: 5vw;
  background-color: #fff;
  margin-bottom: 10vw;
  box-shadow: -5px -5px 15px 5px rgba(209, 225, 253, 0.3), 5px 5px 15px 7px rgba(209, 225, 253, 0.4);
}
@media screen and (max-width: 768px) {
  #company .company_greeting {
    width: 100%;
    padding: 0;
    box-shadow: none;
  }
}
#company .company_greeting::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -5%;
  right: -15%;
  width: 1200px;
  height: 600px;
  background: linear-gradient(-45deg, #09bbfe 0%, #5a42ec 100%);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company .company_greeting::before {
    width: 600px;
  }
}
@media screen and (max-width: 768px) {
  #company .company_greeting::before {
    display: none;
  }
}
#company .company_greeting .company_greeting_box {
  width: 80%;
  margin: 5vw auto 0;
}
#company .company_greeting .company_greeting_box .company_greeting_txt {
  width: -moz-fit-content;
  width: fit-content;
  text-align: left;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #company .company_greeting .company_greeting_box .company_greeting_txt {
    font-size: 0.9rem;
  }
}
#company .company_greeting .company_greeting_box .greeting_txtend {
  margin-top: 3vw;
  text-align: right;
  padding-right: 10vw;
}
@media screen and (max-width: 768px) {
  #company .company_greeting .company_greeting_box .greeting_txtend {
    padding-right: 0;
    font-size: 0.9rem;
  }
}
#company .company_greeting .company_greeting_box .company_greeting_img {
  width: 35%;
  margin: 5vw auto;
}
@media screen and (max-width: 768px) {
  #company .company_greeting .company_greeting_box .company_greeting_img {
    width: 80%;
  }
}
#company .company_greeting .company_greeting_box .company_greeting_img img {
  width: 100%;
  border-radius: 10px;
}
#company .company_greeting .company_greeting_box .company_greeting_history {
  width: 70%;
  margin: 5vw auto 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company .company_greeting .company_greeting_box .company_greeting_history {
    width: 100%;
    margin: 5vw auto;
  }
}
@media screen and (max-width: 768px) {
  #company .company_greeting .company_greeting_box .company_greeting_history {
    width: 100%;
    margin: 5vw auto;
  }
}
#company .company_greeting .company_greeting_box .company_greeting_history .company_history_txt {
  margin: 2vw 0;
}
@media screen and (max-width: 768px) {
  #company .company_greeting .company_greeting_box .company_greeting_history .company_history_txt p {
    font-size: 0.9rem;
  }
}
#company .company_contents {
  width: 90%;
  margin-left: auto;
  position: relative;
  padding-top: 5vw;
  background-color: #fff;
  box-shadow: -5px -5px 15px 5px rgba(209, 225, 253, 0.3), 5px 5px 15px 7px rgba(209, 225, 253, 0.4);
}
@media screen and (max-width: 768px) {
  #company .company_contents {
    width: 100%;
    padding: 0;
    box-shadow: none;
  }
}
#company .company_contents::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -5%;
  left: -15%;
  width: 1200px;
  height: 600px;
  background: linear-gradient(-45deg, #09bbfe 0%, #5a42ec 100%);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company .company_contents::before {
    width: 600px;
  }
}
@media screen and (max-width: 768px) {
  #company .company_contents::before {
    display: none;
  }
}
#company .company_contents .company_detail_title {
  width: 30%;
  margin: auto;
  position: relative;
  z-index: 100;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #company .company_contents .company_detail_title {
    width: 60%;
    margin-bottom: 20px;
  }
}
#company .company_contents .company_detail_title h4 {
  padding: 20px 60px;
  background-color: #151c83;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #company .company_contents .company_detail_title h4 {
    padding: 10px 20px;
    font-size: 15px;
  }
}
#company .company_contents .company_detail {
  width: 90%;
  margin: auto;
  padding: 80px;
  position: relative;
  z-index: 100;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company .company_contents .company_detail {
    width: 90%;
    padding: 80px 30px;
  }
}
@media screen and (max-width: 768px) {
  #company .company_contents .company_detail {
    width: 95%;
    padding: 20px;
  }
}
#company .company_contents .company_detail table {
  margin: 0;
  width: 100%;
}
#company .company_contents .company_detail table tr th, #company .company_contents .company_detail table tr td {
  font-size: 1vw;
  letter-spacing: 0.2vw;
  padding: 2vw 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company .company_contents .company_detail table tr th, #company .company_contents .company_detail table tr td {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  #company .company_contents .company_detail table tr th, #company .company_contents .company_detail table tr td {
    font-size: 3vw;
    padding: 4vw 0;
  }
}
#company .company_contents .company_detail table tr th {
  width: 30%;
  border-bottom: 2px solid #151c83;
  text-align: center;
  color: #151c83;
}
@media screen and (max-width: 768px) {
  #company .company_contents .company_detail table tr th {
    font-size: 10px;
    width: 25%;
    border-bottom: 1px solid #151c83;
  }
}
#company .company_contents .company_detail table tr td {
  width: 70%;
  border-bottom: 2px solid #333;
  padding-left: 40px;
}
@media screen and (max-width: 768px) {
  #company .company_contents .company_detail table tr td {
    padding-left: 20px;
    font-size: 10px;
    width: 75%;
    border-bottom: 1px solid #333;
  }
}
#company .company_map {
  width: 80%;
  margin: 5vw auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company .company_map {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  #company .company_map {
    width: 85%;
  }
}
#company .company_map iframe {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #company .company_map iframe {
    height: 240px;
  }
}

#policy_main {
  height: 58vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #policy_main {
    height: 58vw;
  }
}
@media screen and (max-width: 768px) {
  #policy_main {
    height: 58vw;
  }
}
#policy_main .policy_main_contents {
  background-position: center;
  background-size: cover;
  width: 70%;
  height: 58vw;
  margin-top: 2%;
  margin-right: 2%;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 30px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #policy_main .policy_main_contents {
    width: 60%;
    height: 550px;
  }
}
@media screen and (max-width: 768px) {
  #policy_main .policy_main_contents {
    width: 95%;
    height: 300px;
  }
}
#policy_main .policy_main_contents .policy_main_bg {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  position: relative;
}
#policy_main .policy_main_contents .policy_main_bg .policy_title {
  text-align: center;
  color: #31a7e5;
  padding: 30px;
  position: absolute;
  width: 100%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.75);
  left: 0%;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  #policy_main .policy_main_contents .policy_main_bg .policy_title {
    top: 130%;
    left: 5%;
    color: #151c83;
  }
}
#policy_main .policy_main_contents .policy_main_bg .policy_title h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 48px;
  letter-spacing: 3.5px;
}
@media screen and (max-width: 768px) {
  #policy_main .policy_main_contents .policy_main_bg .policy_title h2 {
    font-size: 36px;
  }
}

.policy_contents {
  width: 80%;
  margin: auto;
  margin-top: 120px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .policy_contents {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .policy_contents {
    width: 90%;
    margin-top: 0;
  }
}
.policy_contents h2 {
  font-size: 18px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .policy_contents h2 {
    font-size: 15px;
  }
}
.policy_contents p {
  font-size: 15px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .policy_contents p {
    font-size: 10px;
  }
}

#contact .contact .contact_contents .contact_headline {
  text-align: center;
  margin-bottom: 2vw;
}
#contact .contact .contact_contents .contact_headline h4 {
  color: #151c83;
}
#contact .contact .contact_contents .contact_text {
  text-align: center;
  margin-bottom: 4vw;
}
#contact .contact .contact_contents form {
  width: 60%;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact .contact .contact_contents form {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_contents form {
    width: 95%;
  }
}
#contact .contact .contact_contents form table {
  width: 100%;
  margin-bottom: 40px;
  border-collapse: collapse;
  border-top: 1px solid #151c83;
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_contents form table tr {
    display: flex;
    flex-flow: column;
  }
}
#contact .contact .contact_contents form table tr th, #contact .contact .contact_contents form table tr td {
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact .contact .contact_contents form table tr th, #contact .contact .contact_contents form table tr td {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_contents form table tr th, #contact .contact .contact_contents form table tr td {
    font-size: 3vw;
  }
}
#contact .contact .contact_contents form table tr th {
  padding: 40px 0;
  width: 35%;
  text-align: end;
  padding-right: 80px;
  border-bottom: 1px solid #151c83;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact .contact .contact_contents form table tr th {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_contents form table tr th {
    width: 100%;
    border-bottom: none;
    text-align: start;
    padding: 10px 0;
    padding-top: 20px;
    padding-left: 0px;
  }
}
#contact .contact .contact_contents form table tr th span {
  padding: 10px;
  background-color: red;
  color: #fff;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_contents form table tr th span {
    padding: 5px;
  }
}
#contact .contact .contact_contents form table tr td {
  padding: 40px 0;
  width: 65%;
  border-bottom: 1px solid #151c83;
  padding-right: 40px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact .contact .contact_contents form table tr td {
    width: 55%;
  }
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_contents form table tr td {
    width: 100%;
    padding: 10px 0;
    padding-bottom: 20px;
    padding-right: 0;
  }
}
#contact .contact .contact_contents form table tr td input {
  width: 80%;
  height: 50px;
  padding-left: 5px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact .contact .contact_contents form table tr td input {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_contents form table tr td input {
    width: 100%;
  }
}
#contact .contact .contact_contents form table tr td textarea {
  width: 80%;
  height: 120px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact .contact .contact_contents form table tr td textarea {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_contents form table tr td textarea {
    width: 100%;
  }
}
#contact .contact .contact_contents form table tr:nth-child(4) th span {
  background-color: blue;
}
#contact .contact .contact_contents form table tr:nth-child(4) td input {
  width: 20% !important;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact .contact .contact_contents form table tr:nth-child(4) td input {
    width: 25% !important;
  }
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_contents form table tr:nth-child(4) td input {
    width: 29% !important;
  }
}
#contact .contact .contact_contents form .agree {
  text-align: center;
  margin: 20px 0;
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_contents form .agree {
    margin: 10px 0;
  }
}
#contact .contact .contact_contents form .submit {
  text-align: center;
}
#contact .contact .contact_contents form .submit input {
  padding: 20px 180px;
  border-radius: 50px;
  font-size: 18px;
  border: none;
  background-color: #151c83;
  color: #fff;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_contents form .submit input {
    padding: 10px 90px;
  }
}
#contact .contact .contact_contents form .submit input:hover {
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #151c83;
  color: #151c83;
}
#contact .contact .contact_contents form .submit input[name=submitBack] {
  padding: 20px 90px;
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_contents form .submit input[name=submitBack] {
    padding: 10px 45px;
    margin-right: 10px;
    margin-bottom: 20px;
    font-size: 12.5px;
  }
}
#contact .contact .contact_contents form .submit input[name=confirm] {
  padding: 20px 90px;
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_contents form .submit input[name=confirm] {
    padding: 10px 45px;
    margin-bottom: 20px;
    font-size: 12.5px;
  }
}
#contact .contact .contact_contents form .contact_submit_btn {
  text-align: center;
  width: 40%;
  margin: 0 auto;
}
@media screen and (min-width: 1441px) {
  #contact .contact .contact_contents form .contact_submit_btn {
    width: 30%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact .contact .contact_contents form .contact_submit_btn {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_contents form .contact_submit_btn {
    width: 75%;
  }
}
#contact .contact .contact_contents form .contact_submit_btn input {
  padding: 16px 180px;
  font-size: 18px;
  border: none;
  background-color: transparent;
  color: #151c83;
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_contents form .contact_submit_btn input {
    padding: 15px 90px;
  }
}
#contact .contact .contact_contents form .contact_submit_btn input[name=submitBack] {
  padding: 20px 90px;
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_contents form .contact_submit_btn input[name=submitBack] {
    padding: 10px 45px;
    margin-right: 10px;
    margin-bottom: 20px;
    font-size: 12.5px;
  }
}
#contact .contact .contact_contents form .contact_submit_btn input[name=confirm] {
  padding: 20px 90px;
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_contents form .contact_submit_btn input[name=confirm] {
    padding: 10px 45px;
    margin-bottom: 20px;
    font-size: 12.5px;
  }
}

footer {
  background-color: #5b5b5b;
}
footer #footer_contact {
  height: 50vh;
  background-position: center;
  background-size: cover;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer #footer_contact {
    height: 30vh;
  }
}
footer #footer_contact a {
  height: inherit;
  width: 100%;
}
footer #footer_contact a .footer_contact {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}
footer #footer_contact a .footer_contact h1 {
  font-size: 7.3vw;
  transition: all 1s ease;
  width: 100%;
}
footer #footer_contact a .footer_contact p {
  width: 100%;
  white-space: nowrap;
}
footer #footer_contact a:hover h1 {
  transform: scale(1.1);
}
footer .footer {
  padding: 4vw 0 3vw;
}
@media screen and (max-width: 768px) {
  footer .footer {
    padding: 10vw 0 3vw;
  }
}
footer .footer .footer_contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  footer .footer .footer_contents {
    width: 95%;
    flex-flow: column-reverse;
  }
}
footer .footer .footer_contents .footer_company {
  width: 60%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer .footer_contents .footer_company {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  footer .footer .footer_contents .footer_company {
    width: 90%;
  }
}
footer .footer .footer_contents .footer_company .footer_logo {
  width: 40%;
  margin-bottom: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer .footer_contents .footer_company .footer_logo {
    width: 6ch;
  }
}
@media screen and (max-width: 768px) {
  footer .footer .footer_contents .footer_company .footer_logo {
    width: 100%;
  }
}
footer .footer .footer_contents .footer_company .footer_logo img {
  width: 100%;
}
footer .footer .footer_contents .footer_company .footer_logo .sns {
  display: none;
}
@media screen and (max-width: 768px) {
  footer .footer .footer_contents .footer_company .footer_logo .sns {
    display: block;
    margin-top: 4vw;
  }
}
footer .footer .footer_contents .footer_company .footer_text {
  color: #fff;
}
@media screen and (max-width: 768px) {
  footer .footer .footer_contents .footer_company .footer_text {
    display: none;
  }
}
footer .footer .footer_contents .footer_company .footer_text p {
  font-size: 1rem;
  letter-spacing: 0.2vw;
  line-height: 2.4vw;
}
@media screen and (max-width: 768px) {
  footer .footer .footer_contents .footer_company .footer_text p {
    font-size: 0.8rem;
  }
}
footer .footer .footer_contents .footer_company .footer_text .sns {
  width: 80%;
  margin-top: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer .footer_contents .footer_company .footer_text .sns {
    margin-top: 4vw;
  }
}
footer .footer .footer_contents .footer_company .footer_text .sns a {
  text-decoration: none;
}
footer .footer .footer_contents .footer_company .footer_text .sns a img {
  width: auto;
}
footer .footer .footer_contents .footer_menu {
  width: 40%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer .footer_contents .footer_menu {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  footer .footer .footer_contents .footer_menu {
    width: 95%;
    margin: auto;
    margin-bottom: 4vw;
  }
}
footer .footer .footer_contents .footer_menu ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
@media screen and (max-width: 768px) {
  footer .footer .footer_contents .footer_menu ul {
    justify-content: space-evenly;
  }
}
footer .footer .footer_contents .footer_menu ul li {
  margin-bottom: 1vw;
}
footer .footer .footer_contents .footer_menu ul li a {
  text-decoration: none;
  color: #fff;
  line-height: 2.5vw;
  font-size: 1vw;
  letter-spacing: 0.2vw;
  transition: all 0.8s ease;
}
@media screen and (min-width: 1441px) {
  footer .footer .footer_contents .footer_menu ul li a {
    font-size: 0.8vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer .footer_contents .footer_menu ul li a {
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 768px) {
  footer .footer .footer_contents .footer_menu ul li a {
    font-size: 2.8vw;
    letter-spacing: 1vw;
    line-height: 8.5vw;
  }
}
footer .footer .footer_contents .footer_menu ul li a:hover {
  color: #151c83;
  text-shadow: 0 0 8px #fff;
}
footer .footer .footer_contents .footer_menu ul li a i {
  font-size: 1vw;
  margin-right: 0.5vw;
}
@media screen and (max-width: 768px) {
  footer .footer .footer_contents .footer_menu ul li a i {
    font-size: 2.5vw;
  }
}
footer .copyright {
  padding: 1vw 6vw;
  text-align: right;
  color: #fff;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .copyright {
    padding: 3vw 5vw;
  }
}
@media screen and (max-width: 768px) {
  footer .copyright {
    padding: 4vw 5vw;
    font-size: 1.5vw;
  }
}
footer .copyright p {
  letter-spacing: 0.3vw;
  font-size: 0.8rem;
}/*# sourceMappingURL=style.css.map */