@charset "UTF-8";
/*　色メモ　ロゴグラデーション
color:transparent;
background: #176ab3;
background: linear-gradient(145deg,
    rgba(23, 106, 179, 1) 0%, 
    rgba(43, 152, 171, 1) 50%, 
    rgba(127, 171, 179, 1) 100%
);
*/
.c-main {
  color: #0869e8;
}

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

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

body {
  font-family: serif;
  background-color: #434343;
  color: #fff;
  overflow-x: hidden;
}

.top_devide {
  overflow: hidden;
}
.top_devide img {
  width: 100vw;
  height: 70vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .top_devide img {
    height: 50vh;
  }
}

.highlight {
  color: #0869e8;
  text-shadow: 0 0 5px rgba(8, 105, 232, 0.5);
  font-weight: 700;
}

.neon-text {
  display: block;
  color: #0869e8;
  text-shadow: 0 0 15px #0869e8, 0 0 30px rgba(8, 105, 232, 0.5);
  animation: flicker 1.5s infinite alternate;
  margin-top: 0.2em;
}

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

.fade-in {
  opacity: 0;
  transition-duration: 1s;
  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);
}

.container_01 {
  margin: 0;
  padding: 0;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  overflow: hidden;
}

.container_01 a:hover {
  opacity: 0.7;
}

.scroll-down_01 {
  position: relative;
  width: 200px;
  height: 200px;
  color: #cecece;
  font-family: serif;
  text-decoration: none;
}

.circle-text_01 {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotate 20s linear infinite;
}

.circle-text_01 span {
  position: absolute;
  left: 50%;
  font-size: 16px;
  transform-origin: 0 100px;
}

.arrow_01 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 50px;
  transform: translate(-50%, -50%);
  animation: scroll_01 3s infinite;
}

.arrow_01::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 1px;
  background-color: #cecece;
  transform: translateX(-50%);
}

.arrow_01::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-bottom: 1px solid #cecece;
  transform: translateX(-50%) rotate(-45deg);
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes scroll_01 {
  0% {
    transform: translate(-50%, -50%) translateY(-10px);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) translateY(10px);
    opacity: 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .scroll-down_01 {
    width: 140px;
    height: 140px;
  }
  .circle-text_01 span {
    font-size: 12px;
    transform-origin: 0 70px;
  }
  .arrow_01 {
    width: 22px;
    height: 35px;
  }
}
@media screen and (max-width: 768px) {
  .scroll-down_01 {
    width: 110px;
    height: 110px;
  }
  .circle-text_01 span {
    font-size: 10px;
    transform-origin: 0 55px;
  }
  .arrow_01 {
    width: 18px;
    height: 28px;
  }
}
p {
  font-size: 0.9vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  p {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  p {
    font-size: 2.5vw;
  }
}

#lower {
  width: 100%;
}
#lower .lower {
  position: relative;
  height: 50vh;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #lower .lower {
    height: 45vh;
  }
}
@media screen and (max-width: 768px) {
  #lower .lower {
    height: 40vh;
  }
}
#lower .lower .lower_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
}
#lower .lower .lower_image {
  width: 100%;
  height: 50vh;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #lower .lower .lower_image {
    height: 45vh;
  }
}
@media screen and (max-width: 768px) {
  #lower .lower .lower_image {
    height: 40vh;
  }
}
#lower .lower .lower_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#lower .lower .lower_title {
  padding: 5vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 768px) {
  #lower .lower .lower_title {
    padding: 8vw;
  }
}
#lower .lower .lower_title h2 {
  font-size: 3.5vw !important;
  letter-spacing: 0.3vw;
  margin-bottom: 0.8vw;
  font-weight: 900;
  font-family: "Lato", sans-serif;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #lower .lower .lower_title h2 {
    font-size: 4.5vw !important;
  }
}
@media screen and (max-width: 768px) {
  #lower .lower .lower_title h2 {
    font-size: 6vw !important;
  }
}
#lower .lower .lower_title p {
  font-size: 1.5vw !important;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #lower .lower .lower_title p {
    font-size: 2.5vw !important;
  }
}
@media screen and (max-width: 768px) {
  #lower .lower .lower_title p {
    font-size: 3vw !important;
  }
}
#lower .breadcrumbs {
  margin: 2vw 0 5vw 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #lower .breadcrumbs {
    margin: 3vw 0 7vw 3vw;
  }
}
@media screen and (max-width: 768px) {
  #lower .breadcrumbs {
    margin: 4vw 0 10vw 4vw;
  }
}
#lower .breadcrumbs p {
  font-size: 0.8vw;
  color: #0869e8;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #lower .breadcrumbs p {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 768px) {
  #lower .breadcrumbs p {
    font-size: 2vw;
  }
}
#lower .breadcrumbs p a {
  text-decoration: none;
  color: #ffffff;
}
#lower .breadcrumbs p span {
  margin: 0 1vw;
  color: #ffffff;
}
@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;
  }
}

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

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

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

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

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

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

.top_contents_btn {
  width: 50%;
  margin: auto;
}
@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: 80%;
  }
}
.top_contents_btn a {
  text-decoration: none;
  text-align: center;
  width: 40%;
  margin: auto;
  display: block;
  font-size: 1.1rem;
}
@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);
  color: #fff;
  border: 1px solid #ffffff;
  font-family: serif;
  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: #0869e8;
  color: #fff;
  border: 1px solid #0869e8;
}
.top_contents_btn a button i {
  margin-left: 1vw;
}

/* 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: #0869e8;
  border: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 0px 4px rgba(46, 243, 210, 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: #0869e8;
  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;
}

.footer_line {
  position: fixed;
  z-index: 9999;
  right: 0;
  bottom: 10%;
  margin-top: 10px;
  width: 15%;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .footer_line {
    bottom: 20%;
    width: 40%;
  }
}
.footer_line:hover {
  opacity: 0.7;
}
.footer_line .line_btn {
  display: inline-block;
  text-align: center;
  width: 100%;
  border-radius: 10px 0 0 10px;
}

.loading {
  opacity: 1;
  transition: opacity 1s ease;
}
.loading.hide {
  opacity: 0;
}
.loading.none {
  display: none;
}

.loading {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background-color: #1A1A1A;
  font-size: 30px;
  opacity: 0;
  visibility: hidden;
  transition: all 7s;
  z-index: 9999999;
}

.loader {
  width: 12em;
  height: 3em;
  color: white;
  font-weight: 300;
  font-style: oblique;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .loader {
    width: 8em;
  }
}

.loader p {
  font-size: 1.5em;
}
@media screen and (max-width: 768px) {
  .loader p {
    font-size: 1em;
  }
}

.arrows {
  width: 1.75em;
  height: 2em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5em;
}

.arrow1,
.arrow2,
.arrow3,
.arrow4 {
  width: 0.75em;
  height: 0.75em;
  border: solid 0.05em transparent;
}

.arrowsup {
  width: 100%;
  height: 25%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.arrowsbottom {
  width: 100%;
  height: 25%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.arrow1 {
  clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 0% 100%);
  animation: whitechange 2s linear infinite;
}

.arrow2 {
  clip-path: polygon(0% 0%, 0% 0%, 100% 100%, 0% 100%);
  animation: whitechange 2s linear infinite 0.5s;
}

.arrow3 {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 0%);
  animation: whitechange 2s linear infinite 1.5s;
}

.arrow4 {
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%, 0% 100%);
  animation: whitechange 2s linear infinite 1s;
}

.loader p:nth-child(1) {
  animation: changefont 2s linear infinite;
}

.loader p:nth-child(2) {
  animation: changefont 2s linear infinite 0.1s;
}

.loader p:nth-child(3) {
  animation: changefont 2s linear infinite 0.2s;
}

.loader p:nth-child(4) {
  animation: changefont 2s linear infinite 0.3s;
}

.loader p:nth-child(5) {
  animation: changefont 2s linear infinite 0.4s;
}

.loader p:nth-child(6) {
  animation: changefont 2s linear infinite 0.5s;
}

.loader p:nth-child(7) {
  animation: changefont 2s linear infinite 0.6s;
}

@keyframes whitechange {
  0% {
    background-color: transparent;
    box-shadow: none;
  }
  25% {
    background-color: white;
  }
  50% {
    background-color: transparent;
    box-shadow: none;
  }
  100% {
    background-color: transparent;
    box-shadow: none;
  }
}
@keyframes changefont {
  0% {
    padding-bottom: 0em;
  }
  50% {
    padding-bottom: 0em;
  }
  75% {
    padding-bottom: 1em;
  }
  100% {
    color: #171030;
    padding-bottom: 0em;
  }
}
.loading.active {
  opacity: 1;
  visibility: visible;
}

header {
  position: fixed;
  z-index: 999999;
  width: 100%;
}
header #header_pc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 80px;
  padding: 0 2vw;
}
@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 {
  height: 60px;
}
header #header_pc .header_logo img {
  height: 100%;
}
header #header_pc .header_menu ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
header #header_pc .header_menu ul li:first-child {
  border: none;
}
header #header_pc .header_menu ul li a {
  text-decoration: none;
  color: #fff;
  padding: 0 2vw;
  font-size: 0.9vw;
  text-shadow: 0 0px 3px #333;
  transition: all 1s ease;
}
header #header_pc .header_menu ul li a:hover {
  color: #0869e8;
}
header #header_pc .header_menu ul li a i {
  font-size: 2vw;
}
header #header_pc .header_menu ul .p-header-btn-li {
  margin-left: 1.5vw;
}
header #header_pc .header_menu ul .p-header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: 700;
  white-space: nowrap;
  font-size: 0.8vw;
  text-shadow: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
header #header_pc .header_menu ul .p-header-btn i {
  margin-right: 5px;
  font-size: 1vw;
}
header #header_pc .header_menu ul .p-header-btn--goonet {
  background-color: #f77045;
  color: #fff;
}
header #header_pc .header_menu ul .p-header-btn--goonet:hover {
  background-color: rgb(248.0515463918, 130.7963917526, 93.4484536082);
  color: #fff;
}
header #header_pc .header_menu ul .p-header-btn--carsensor {
  background-color: #0087cb;
  color: #fff;
}
header #header_pc .header_menu ul .p-header-btn--carsensor:hover {
  background-color: rgb(0, 151.9581280788, 228.5);
  color: #fff;
}
header #header_sp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 80px;
  padding: 0 2vw;
}
@media screen and (min-width: 1441px) {
  header #header_sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  header #header_sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  header #header_sp {
    height: 60px;
  }
}
header #header_sp .header_logo {
  height: 60px;
}
@media screen and (max-width: 768px) {
  header #header_sp .header_logo {
    height: 40px;
  }
}
header #header_sp .header_logo img {
  height: 100%;
}

/*　ハンバーガーボタン　*/
.hamburger {
  display: block;
  position: fixed;
  z-index: 10005;
  right: 0px;
  top: 0px;
  width: 80px;
  height: 80px;
  cursor: pointer;
  text-align: center;
  background-color: #21518f;
}
@media screen and (min-width: 1441px) {
  .hamburger {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .hamburger {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .hamburger {
    width: 60px;
    height: 60px;
  }
}

.hamburger span {
  display: block;
  position: absolute;
  width: 35px;
  height: 2px;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  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: #0869e8;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 50%;
  left: 50%;
  background: #0869e8;
  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(17, 43, 67, 0.8);
  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 ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

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

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

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

nav.globalMenuSp ul li a {
  display: block;
  color: #fff;
  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;
}
@media screen and (max-width: 768px) {
  nav.globalMenuSp ul li a i {
    font-size: 6vw;
  }
}

/* --- SP版 外部リンクボタンのスタイル --- */
nav.globalMenuSp ul {
  padding-top: 20px;
}

.u-sp-divider {
  height: 1px;
  background: #fff;
  opacity: 0.2;
  margin: 10px 15%;
  list-style: none;
  padding: 0;
}

.p-header-btn-sp-li {
  list-style-type: none;
  width: 70%;
  margin: 10px auto;
  border-radius: 5px;
  overflow: hidden;
  transition: 0.4s all;
}
.p-header-btn-sp-li:hover {
  background: none;
}

.p-header-btn-sp {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 0;
  text-decoration: none;
  font-weight: 700;
  color: #fff;
  font-size: 4vw;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  .p-header-btn-sp {
    font-size: 4.5vw;
  }
}
.p-header-btn-sp i {
  margin-right: 10px;
  font-size: 6vw;
}
@media screen and (max-width: 768px) {
  .p-header-btn-sp i {
    font-size: 7vw;
  }
}
.p-header-btn-sp--goonet {
  background-color: #f77045;
}
.p-header-btn-sp--goonet:hover {
  background-color: rgb(248.0515463918, 130.7963917526, 93.4484536082);
}
.p-header-btn-sp--carsensor {
  background-color: #0087cb;
}
.p-header-btn-sp--carsensor:hover {
  background-color: rgb(0, 151.9581280788, 228.5);
}

/* --- SP版 外部リンクボタンのスタイル 終了 --- */
/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translate(0%);
}

.header.change-color {
  background-color: #292929;
  transition: 0.3s;
}
.header.change-color .header_menu ul li:first-child {
  border: none !important;
}
.header.change-color .header_menu ul li a {
  color: #ffffff !important;
}
.header.change-color .header_menu ul li a:hover {
  color: #0869e8 !important;
}

@keyframes fadeInUpStaggered {
  0% {
    opacity: 0;
    transform: translateY(20px) scaleY(0.8);
    filter: blur(5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scaleY(1);
    filter: blur(0);
  }
}
.hero_main_title, .hero_sub_text, .effect .en, .effect .ja {
  line-height: 1.2;
  white-space: pre;
}

#top_main {
  position: relative;
}
#top_main .effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  text-align: center;
}
#top_main .effect .en {
  display: block;
  font-size: 5vw;
  color: #E0E0E0;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  #top_main .effect .en {
    font-size: 10vw;
  }
}
#top_main .effect .ja {
  display: block;
  font-size: 2vw;
  color: #0869e8;
  font-weight: 300;
  margin-top: 2em;
  letter-spacing: 0.2em;
  text-shadow: 0 0 5px rgba(8, 105, 232, 0.6);
}
@media screen and (max-width: 768px) {
  #top_main .effect .ja {
    font-size: 4.5vw;
    margin-top: 1em;
  }
}

body.is-hero-ready [data-animate-target] span,
body.is-hero-ready .effect .is-split span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: none;
  animation-name: fadeInUpStaggered;
  animation-fill-mode: forwards;
  animation-duration: 0.8s;
  animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
  animation-delay: calc(0.05s * var(--char-index));
}
body.is-hero-ready .effect .ja.is-split span {
  animation-delay: calc(1.5s + 0.05s * var(--char-index));
}
body.is-hero-ready .hero_main_title {
  font-size: 8vw;
  color: #0869e8;
  font-weight: 900;
  text-shadow: 0 0 7px rgba(8, 105, 232, 0.7), 0 0 10px rgba(8, 105, 232, 0.4);
}
@media screen and (max-width: 768px) {
  body.is-hero-ready .hero_main_title {
    font-size: 14vw;
  }
}
body.is-hero-ready .hero_sub_text {
  font-size: 3vw;
  color: #E0E0E0;
  margin-top: 0.5em;
  font-weight: 300;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 768px) {
  body.is-hero-ready .hero_sub_text {
    font-size: 5vw;
  }
}

#top_main {
  width: 100%;
  overflow: hidden;
  position: relative;
}
#top_main .top_main_bg {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
}
#top_main .top_main_logo {
  position: absolute;
  z-index: 100;
  top: 40%;
  left: 50%;
  width: 30%;
}
@media screen and (max-width: 768px) {
  #top_main .top_main_logo {
    width: 40%;
    top: 50%;
    left: 50%;
    transform: translate(0%, -50%);
  }
}
#top_main .top_main_logo img {
  width: 100%;
}
#top_main .effect {
  position: absolute;
  z-index: 120;
  top: 50%;
  left: 50%;
  overflow: hidden;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_main .effect {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 768px) {
  #top_main .effect {
    top: 50%;
    left: 35%;
    transform: translate(0%, -50%);
  }
}
#top_main .effect .en {
  font-size: 3.5vw;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.3vw;
  font-family: "Lato", sans-serif;
  text-align: left;
}
@media screen and (max-width: 768px) {
  #top_main .effect .en {
    font-size: 4.5vw;
  }
}
#top_main .effect .ja {
  font-size: 1.5vw;
  font-weight: 400;
  font-family: serif;
  color: #fff;
  letter-spacing: 0.3vw;
  line-height: 2.6vw;
}
@media screen and (max-width: 768px) {
  #top_main .effect .ja {
    font-size: 3vw;
  }
}
#top_main .slide-images {
  width: 100%;
  height: 115vh;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_main .slide-images {
    height: 110vh;
  }
}
@media screen and (max-width: 768px) {
  #top_main .slide-images {
    height: 110vh;
  }
}
#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;
}
#top_main .container_01 {
  position: absolute;
  left: 43%;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  #top_main .container_01 {
    left: 35%;
    bottom: 0%;
  }
}

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

#top_about .top_about {
  padding: 6vw 0;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_about .top_about {
    padding: 8vw 0;
  }
}
@media screen and (max-width: 768px) {
  #top_about .top_about {
    padding: 12vw 0;
  }
}
#top_about .top_about .top_about_title {
  width: 50%;
  margin: auto;
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_about .top_about .top_about_title {
    width: 70%;
    margin-bottom: 6vw;
  }
}
@media screen and (max-width: 768px) {
  #top_about .top_about .top_about_title {
    width: 95%;
    margin-bottom: 8vw;
  }
}
#top_about .top_about .top_about_title h3 {
  text-align: center;
  margin-bottom: 4vw;
  font-family: serif;
  font-weight: 300;
  letter-spacing: 0.3vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_about .top_about .top_about_title h3 {
    font-size: 4vw;
    margin-bottom: 6vw;
  }
}
@media screen and (max-width: 768px) {
  #top_about .top_about .top_about_title h3 {
    font-size: 4vw;
    margin-bottom: 6vw;
  }
}
#top_about .top_about .top_about_title p {
  letter-spacing: 0.3vw;
  line-height: 2.4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_about .top_about .top_about_title p {
    letter-spacing: 0.6vw;
    line-height: 3vw;
  }
}
@media screen and (max-width: 768px) {
  #top_about .top_about .top_about_title p {
    letter-spacing: 0.8vw;
    line-height: 5vw;
  }
}

#top_benefits {
  padding: 8rem 0; /* PC: py-32 */
  /* === 見出しセクション === */
  /* === 強みカードコンテンツ === */
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_benefits {
    padding: 6rem 0; /* TAB: py-24 */
  }
}
@media screen and (max-width: 768px) {
  #top_benefits {
    padding: 4rem 0; /* SP: py-16 */
  }
}
#top_benefits .container {
  max-width: 1300px; /* max-w-7xl 相当 */
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem; /* px-4 */
}
#top_benefits .section_header {
  text-align: center;
  margin-bottom: 5rem; /* PC: mb-20 */
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_benefits .section_header {
    margin-bottom: 5rem;
  }
}
@media screen and (max-width: 768px) {
  #top_benefits .section_header {
    margin-bottom: 4rem; /* SP: mb-16 */
  }
}
#top_benefits .section_header .section_title {
  font-size: 3.75rem; /* PC: lg:text-6xl */
  font-weight: 800; /* font-extrabold */
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem; /* mb-2 */
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_benefits .section_header .section_title {
    font-size: 3rem; /* TAB: md:text-5xl */
  }
}
@media screen and (max-width: 768px) {
  #top_benefits .section_header .section_title {
    font-size: 2.25rem; /* SP: text-4xl */
  }
}
#top_benefits .section_header .section_subtitle {
  font-size: 1.25rem; /* PC: md:text-xl */
  color: #9CA3AF;
}
@media screen and (max-width: 768px) {
  #top_benefits .section_header .section_subtitle {
    font-size: 1.125rem; /* SP: text-lg */
  }
}
#top_benefits .strength_contents {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* PC: 3カラム */
  gap: 2.5rem; /* PC: gap-10 */
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_benefits .strength_contents {
    grid-template-columns: repeat(3, 1fr); /* TAB: 3カラムを維持 */
    gap: 2rem; /* gap-8 */
  }
}
@media screen and (max-width: 768px) {
  #top_benefits .strength_contents {
    grid-template-columns: 1fr; /* SP: 1カラムに */
    gap: 1.5rem; /* gap-6 */
  }
}
#top_benefits .strength_contents .strength_card {
  padding: 2rem; /* PC向けに少し大きく設定 */
  background-color: rgba(26, 26, 26, 0.7);
  border-radius: 0.75rem; /* rounded-xl */
  border: 1px solid rgba(55, 65, 81, 0.8);
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  /* 導線リンクボタン */
}
@media screen and (max-width: 768px) {
  #top_benefits .strength_contents .strength_card {
    padding: 1.5rem; /* SP向け */
  }
}
#top_benefits .strength_contents .strength_card:hover {
  transform: translateY(-0.5rem);
  background-color: #282828;
  border-color: #00FFFF;
  box-shadow: 0 0.625rem 1.25rem rgba(0, 255, 255, 0.15);
}
#top_benefits .strength_contents .strength_card .card_header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem; /* mb-4 */
}
#top_benefits .strength_contents .strength_card .card_header .card_number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #00FFFF;
  margin-right: 1rem;
}
#top_benefits .strength_contents .strength_card .card_header .card_icon {
  color: #00FFFF;
}
#top_benefits .strength_contents .strength_card .card_title {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.6rem; /* PC向け */
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#top_benefits .strength_contents .strength_card .card_subtitle {
  color: #D1D5DB;
  font-size: 1.5rem; /* PC向け */
  margin-bottom: 1rem;
}
#top_benefits .strength_contents .strength_card .card_text {
  color: #9CA3AF;
  font-size: 1.2rem; /* PC向け */
  margin-bottom: 1.5rem; /* 画像との間隔 */
}
#top_benefits .strength_contents .strength_card .card_image {
  width: 100%;
  height: 200px; /* 画像の高さ固定 */
  overflow: hidden; /* 画像がはみ出さないように */
  border-radius: 0.5rem; /* 角丸 */
  margin-bottom: 1.5rem; /* 下のボタンとの間隔 */
  position: relative;
}
#top_benefits .strength_contents .strength_card .card_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* 画像をボックスにフィットさせる */
  transition: transform 0.3s ease;
}
#top_benefits .strength_contents .strength_card .card_image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  transition: background 0.3s ease;
}
#top_benefits .strength_contents .strength_card:hover .card_image img {
  transform: scale(1.05);
}
#top_benefits .strength_contents .strength_card:hover .card_image::before {
  background: rgba(0, 0, 0, 0.1);
}
#top_benefits .strength_contents .strength_card .card_link {
  margin-top: 1rem;
  display: inline-block;
  color: #00FFFF;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s ease, -webkit-text-decoration 0.3s ease;
  transition: color 0.3s ease, text-decoration 0.3s ease;
  transition: color 0.3s ease, text-decoration 0.3s ease, -webkit-text-decoration 0.3s ease;
}
#top_benefits .strength_contents .strength_card .card_link:hover {
  color: #F8F8F8;
  text-decoration: underline;
}

#top_works {
  margin-bottom: 6vw;
}
@media screen and (max-width: 768px) {
  #top_works {
    margin-bottom: 12vw;
  }
}
#top_works .top_works {
  position: relative;
}
#top_works .top_works .top_works_title {
  width: 80%;
  margin: auto;
  margin-bottom: 4vw;
}
#top_works .top_works .top_works_title h2 {
  color: #0869e8;
}
#top_works .top_works .top_works_bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  z-index: -1;
  opacity: 0.3;
}
@media screen and (max-width: 768px) {
  #top_works .top_works .top_works_bg {
    width: 60%;
  }
}
#top_works .top_works .top_works_bg img {
  width: 100%;
}
#top_works .top_works .top_works_contents ul {
  list-style: none;
  width: 80%;
  margin: auto;
  margin-bottom: 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #top_works .top_works .top_works_contents ul {
    flex-flow: column;
  }
}
#top_works .top_works .top_works_contents ul a {
  display: block;
  width: 30%;
}
@media screen and (max-width: 768px) {
  #top_works .top_works .top_works_contents ul a {
    width: 80%;
    margin-bottom: 4vw;
  }
}
#top_works .top_works .top_works_contents ul a li {
  position: relative;
}
#top_works .top_works .top_works_contents ul a li .thumb {
  position: relative;
  width: 100%;
  height: 100%;
}
#top_works .top_works .top_works_contents ul a li .thumb img {
  width: 100%;
  height: 100%;
  vertical-align: top;
}
#top_works .top_works .top_works_contents ul a li .thumb .thumb_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 51, 51, 0.5);
}
#top_works .top_works .top_works_contents ul a li .outline {
  position: absolute;
  bottom: 8%;
  left: 5%;
}
#top_works .top_works .top_works_contents ul a li .outline .date {
  color: #fff;
  margin-bottom: 0.5vw;
  border-bottom: 1px solid #fff;
  display: inline-block;
  padding-left: 0.2vw;
  padding-right: 0.8vw;
}
#top_works .top_works .top_works_contents ul a li .outline .title {
  color: #fff;
  font-size: 12.5px;
  border-bottom: 1px solid #fff;
  padding-left: 0.2vw;
  padding-right: 0.8vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_works .top_works .top_works_contents ul a li .outline .title {
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  #top_works .top_works .top_works_contents ul a li .outline .title {
    font-size: 3vw;
  }
}
#top_works .top_works .top_contents_btn {
  width: 80%;
}
#top_works .top_works .top_contents_btn a {
  margin-left: 0;
  margin-right: auto;
  width: 25%;
}
@media screen and (max-width: 768px) {
  #top_works .top_works .top_contents_btn a {
    width: 50%;
  }
}

#top_service {
  overflow: hidden;
  padding-top: 6vw;
}
@media screen and (max-width: 768px) {
  #top_service {
    padding-top: 12vw;
  }
}
#top_service .top_service {
  width: 100%;
  margin: auto;
}
#top_service .top_service .top_service_title {
  width: 80%;
  margin: auto;
  margin-bottom: 4vw;
  text-align: center;
}
#top_service .top_service .top_service_title h2 {
  color: #0869e8;
  font-size: 3.5vw;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  #top_service .top_service .top_service_title h2 {
    font-size: 7vw;
  }
}
#top_service .top_service .top_service_title p {
  color: #fff;
  font-size: 1.2vw;
}
@media screen and (max-width: 768px) {
  #top_service .top_service .top_service_title p {
    font-size: 4vw;
  }
}
#top_service .top_service .top_service_contents {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #top_service .top_service .top_service_contents {
    flex-flow: column;
  }
}
#top_service .top_service .top_service_contents .top_service_content:first-child {
  width: 45vw;
  height: 40vw;
}
@media screen and (max-width: 768px) {
  #top_service .top_service .top_service_contents .top_service_content:first-child {
    width: 100%;
    height: 60vw;
  }
}
#top_service .top_service .top_service_contents .top_service_content:last-child {
  width: 55vw;
  height: 40vw;
  display: flex;
  flex-direction: column; /* ★ 縦並びに変更 */
  justify-content: center;
  align-items: center;
  /* flex-wrap: wrap; は不要 */
}
@media screen and (max-width: 768px) {
  #top_service .top_service .top_service_contents .top_service_content:last-child {
    width: 100%;
    height: 120vw;
    /* flex-flow: column; は既に設定済み */
  }
}
#top_service .top_service .top_service_contents .top_service_content:last-child .top_service_content_img {
  position: relative;
  width: 100%; /* ★ 親要素の幅いっぱい（55vw）に広げる */
  height: 50%;
  display: block;
}
@media screen and (max-width: 768px) {
  #top_service .top_service .top_service_contents .top_service_content:last-child .top_service_content_img {
    width: 100%;
    height: 60vw;
  }
}

.top_service_content_img {
  position: relative;
  display: block;
  height: 100%;
  cursor: pointer;
  overflow: hidden;
}
.top_service_content_img::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(51, 51, 51, 0.4);
  transition: all 0.4s;
  z-index: 10;
}
.top_service_content_img:hover::after {
  background: rgba(8, 105, 232, 0.4);
}
.top_service_content_img.is-coming-soon::before {
  content: "COMING SOON";
  position: absolute;
  z-index: 15;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 3vw;
  white-space: nowrap;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-shadow: 0 0 10px rgba(8, 105, 232, 0.8);
  pointer-events: none;
  opacity: 0.9;
}
@media screen and (max-width: 768px) {
  .top_service_content_img.is-coming-soon::before {
    font-size: 6vw;
  }
}
.top_service_content_img.is-coming-soon:hover::after {
  background: rgba(8, 105, 232, 0.7);
}
.top_service_content_img .top_service_contents_title {
  position: absolute;
  z-index: 20;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  width: 90%;
}
.top_service_content_img .top_service_contents_title h4 {
  text-align: center;
  margin-bottom: 1vw;
  letter-spacing: 0.4vw;
  font-weight: 700;
  font-size: 2vw;
}
@media screen and (max-width: 768px) {
  .top_service_content_img .top_service_contents_title h4 {
    font-size: 5vw;
    margin-bottom: 2vw;
  }
}
.top_service_content_img .top_service_contents_title p {
  text-align: center;
  letter-spacing: 0.2vw;
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .top_service_content_img .top_service_contents_title p {
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  .top_service_content_img .top_service_contents_title p {
    font-size: 3vw;
  }
}
.top_service_content_img img {
  width: 100%;
  height: 100%;
  vertical-align: top;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease-out;
}
.top_service_content_img:hover img {
  transform: scale(1.05);
}

#top_company {
  position: relative;
  z-index: 1;
}
#top_company .top_company {
  background-position: center;
  background-size: cover;
  position: relative;
  width: 100%;
  height: 80vh;
  z-index: -10;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_company .top_company {
    height: 50vh;
  }
}
@media screen and (max-width: 768px) {
  #top_company .top_company {
    height: 60vh;
  }
}
#top_company .top_company .top_company_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: rgba(51, 51, 51, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
#top_company .top_company .top_company_bg .top_company_contents {
  width: 60%;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_company .top_company .top_company_bg .top_company_contents {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #top_company .top_company .top_company_bg .top_company_contents {
    width: 95%;
  }
}
#top_company .top_company .top_company_bg .top_company_contents .top_company_title {
  color: #fff;
  margin-bottom: 2vw;
}
#top_company .top_company .top_company_bg .top_company_contents .top_company_text {
  color: #fff;
  margin-bottom: 4vw;
}
#top_company .top_company .top_company_bg .top_company_contents .top_company_text p {
  letter-spacing: 0.3vw;
  line-height: 2.4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_company .top_company .top_company_bg .top_company_contents .top_company_text p {
    letter-spacing: 0.6vw;
    line-height: 3vw;
  }
}
@media screen and (max-width: 768px) {
  #top_company .top_company .top_company_bg .top_company_contents .top_company_text p {
    letter-spacing: 0.8vw;
    line-height: 5vw;
  }
}
#top_company .top_company .top_company_bg .top_company_contents .top_contents_btn {
  width: 100%;
}
#top_company .top_company .top_company_bg .top_company_contents .top_contents_btn a {
  width: 25%;
  margin-left: 0;
  margin-right: auto;
}
#top_company .top_company .top_company_bg .top_company_contents .top_contents_btn a button {
  border: 1px solid #fff;
  color: #fff;
}
#top_company .top_company .top_company_bg .top_company_contents .top_contents_btn a button:hover {
  border: 1px solid #0869e8;
}

#top_news .top_news_pc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-top: 60px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  #top_news .top_news_pc {
    display: none;
  }
}
#top_news .top_news_pc .top_news_title {
  width: 30%;
  height: 100%;
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
}
@media screen and (max-width: 768px) {
  #top_news .top_news_pc .top_news_title {
    width: 100%;
    padding: 20px 0;
  }
}
#top_news .top_news_pc .top_news_title h2 {
  color: #E84708;
  font-family: "dunbar-low", sans-serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 5px;
}
#top_news .top_news_pc .top_news_title p {
  color: #333;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #top_news .top_news_pc .top_news_title p {
    margin-bottom: 20px;
  }
}
#top_news .top_news_pc .top_news_contents {
  margin: auto;
  padding-top: 120px;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  #top_news .top_news_pc .top_news_contents {
    width: 95%;
    margin: auto;
    padding-left: 0;
    padding-top: 20px;
  }
}
#top_news .top_news_pc .top_news_contents ul {
  list-style: none;
}
#top_news .top_news_pc .top_news_contents ul a {
  text-decoration: none;
}
#top_news .top_news_pc .top_news_contents ul a li {
  margin-bottom: 20px;
  position: relative;
  width: 700px;
}
@media screen and (max-width: 768px) {
  #top_news .top_news_pc .top_news_contents ul a li {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  #top_news .top_news_pc .top_news_contents ul a li {
    width: 370px;
  }
}
#top_news .top_news_pc .top_news_contents ul a li::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
#top_news .top_news_pc .top_news_contents ul a li:hover::after {
  visibility: visible;
  bottom: 0px;
  opacity: 1;
}
#top_news .top_news_pc .top_news_contents ul a li .outline {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-bottom: solid 1px #ddd;
}
#top_news .top_news_pc .top_news_contents ul a li .outline .date {
  margin-right: 40px;
  padding: 5px 10px;
  color: #333;
  font-size: 12.5px;
}
@media screen and (max-width: 768px) {
  #top_news .top_news_pc .top_news_contents ul a li .outline .date {
    margin-right: 20px;
    font-size: 10px;
  }
}
#top_news .top_news_pc .top_news_contents ul a li .outline .title {
  color: #333;
  font-size: 12.5px;
}
@media screen and (max-width: 768px) {
  #top_news .top_news_pc .top_news_contents ul a li .outline .title {
    font-size: 12.5px;
  }
}
#top_news .top_news_pc .top_news_btn {
  position: absolute;
  width: 25%;
  bottom: -20px;
  left: 50%;
  transform: translate(-50%, 0);
}
#top_news .top_news_pc .top_news_btn a {
  margin-left: 0;
  margin-right: auto;
  width: 25%;
}
#top_news .top_news_pc .top_news_btn a button {
  width: 100%;
  padding: 1.4vw 0;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #333;
  transition: all 0.4s;
  cursor: pointer;
}
#top_news .top_news_pc .top_news_btn a button i {
  margin-left: 1vw;
}
#top_news .top_news_pc .top_news_btn a button:hover {
  background-color: transparent;
}
@media screen and (min-width: 1441px) {
  #top_news .top_news_sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #top_news .top_news_sp {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_news .top_news_sp {
    display: none;
  }
}
#top_news .top_news_sp .top_news_title {
  width: 30%;
  height: 100%;
  text-align: center;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  #top_news .top_news_sp .top_news_title {
    width: 100%;
    padding: 80px 0;
    padding-top: 0;
  }
}
#top_news .top_news_sp .top_news_title h2 {
  font-family: "dunbar-low", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 36px;
}
#top_news .top_news_sp .top_news_title p {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #top_news .top_news_sp .top_news_title p {
    margin-bottom: 20px;
  }
}
#top_news .top_news_sp .top_news_contents {
  width: 70%;
  padding-left: 40px;
  background-color: #E0E0E1;
}
@media screen and (max-width: 768px) {
  #top_news .top_news_sp .top_news_contents {
    width: 95%;
    margin: auto;
    padding-left: 0;
    padding-top: 20px;
    padding-bottom: 40px;
    position: relative;
  }
}
#top_news .top_news_sp .top_news_contents ul {
  list-style: none;
  margin-bottom: 40px;
}
#top_news .top_news_sp .top_news_contents ul a {
  text-decoration: none;
}
#top_news .top_news_sp .top_news_contents ul a li {
  margin-bottom: 20px;
  position: relative;
  width: 400px;
}
@media screen and (max-width: 768px) {
  #top_news .top_news_sp .top_news_contents ul a li {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  #top_news .top_news_sp .top_news_contents ul a li {
    width: 330px;
    padding-left: 10px;
  }
}
#top_news .top_news_sp .top_news_contents ul a li::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background-color: transparent;
  bottom: -10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
#top_news .top_news_sp .top_news_contents ul a li:hover::after {
  visibility: visible;
  bottom: 0px;
  opacity: 1;
}
#top_news .top_news_sp .top_news_contents ul a li .outline {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#top_news .top_news_sp .top_news_contents ul a li .outline .date {
  margin-right: 40px;
  padding: 5px 10px;
  color: #333;
  font-size: 12.5px;
}
@media screen and (max-width: 768px) {
  #top_news .top_news_sp .top_news_contents ul a li .outline .date {
    margin-right: 20px;
    font-size: 10px;
  }
}
#top_news .top_news_sp .top_news_contents ul a li .outline .title {
  color: #333;
  font-size: 12.5px;
}
@media screen and (max-width: 768px) {
  #top_news .top_news_sp .top_news_contents ul a li .outline .title {
    font-size: 12.5px;
  }
}
#top_news .top_news_sp .top_news_contents .top_news_btn {
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translate(-50%, 0);
}
#top_news .top_news_sp .top_news_contents .top_news_btn button {
  padding: 10px 40px;
  border: none;
  color: #333;
  background-color: transparent;
}

#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: #0869e8;
}
#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: #0869e8;
  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: #0869e8;
}
@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: #0869e8;
}
@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;
}

#works .works .works_contents h2 {
  text-align: start;
  background-color: #0869e8;
  color: #fff;
  padding: 1.5vw 0;
  padding-left: 4vw;
  width: 40%;
  margin-left: 10%;
  margin-bottom: 4vw;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #works .works .works_contents h2 {
    width: 45%;
    margin-left: 5%;
  }
}
@media screen and (max-width: 768px) {
  #works .works .works_contents h2 {
    width: 80%;
    margin-left: 2.5%;
  }
}
#works .works .works_contents h2::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translate(0, -50%);
  right: 0;
  border-top: 50px solid transparent;
  border-right: 50px solid #fff;
  border-bottom: 50px solid transparent;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #works .works .works_contents h2::after {
    right: -1%;
  }
}
#works .works .works_contents ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 80%;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #works .works .works_contents ul {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #works .works .works_contents ul {
    width: 95%;
    flex-wrap: wrap;
  }
}
#works .works .works_contents ul a {
  display: block;
  text-decoration: none;
  width: 30%;
}
@media screen and (max-width: 768px) {
  #works .works .works_contents ul a {
    width: 45%;
  }
}
#works .works .works_contents ul a li {
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #works .works .works_contents ul a li {
    margin-bottom: 4vw;
  }
}
#works .works .works_contents ul a li .thumb {
  margin-bottom: 1vw;
  width: 100%;
  height: 15vw;
}
@media screen and (max-width: 768px) {
  #works .works .works_contents ul a li .thumb {
    height: 30vw;
  }
}
#works .works .works_contents ul a li .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#works .works .works_contents ul a li .outline {
  padding: 0 1vw;
}
#works .works .works_contents ul a li .outline .date {
  color: #0869e8;
  margin-bottom: 0.3vw;
}
#works .works .works_contents ul a li .outline .title {
  color: #333;
  font-size: 1.2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #works .works .works_contents ul a li .outline .title {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  #works .works .works_contents ul a li .outline .title {
    font-size: 3vw;
  }
}
#works .works .navigation {
  text-align: center;
  margin: 2vw 0;
  margin-bottom: 8vw;
}

#works_single .works_contents {
  margin-bottom: 8vw;
}
@media screen and (max-width: 768px) {
  #works_single .works_contents {
    margin-bottom: 12vw;
  }
}
#works_single .works_contents ul li .thumb {
  width: 80%;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #works_single .works_contents ul li .thumb {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #works_single .works_contents ul li .thumb {
    width: 95%;
  }
}
#works_single .works_contents ul li .thumb .works_images {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  #works_single .works_contents ul li .thumb .works_images {
    flex-flow: column;
  }
}
#works_single .works_contents ul li .thumb .works_images img {
  width: 30%;
  height: 20vw;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  #works_single .works_contents ul li .thumb .works_images img {
    width: 80%;
    margin: auto;
    margin-bottom: 4vw;
  }
}
#works_single .works_contents ul li .thumb .b_a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10vw;
}
@media screen and (max-width: 768px) {
  #works_single .works_contents ul li .thumb .b_a {
    flex-flow: column;
  }
}
#works_single .works_contents ul li .thumb .b_a .before, #works_single .works_contents ul li .thumb .b_a .during, #works_single .works_contents ul li .thumb .b_a .after {
  width: 32%;
  position: relative;
}
@media screen and (max-width: 768px) {
  #works_single .works_contents ul li .thumb .b_a .before, #works_single .works_contents ul li .thumb .b_a .during, #works_single .works_contents ul li .thumb .b_a .after {
    width: 80%;
    margin: auto;
    margin-bottom: 4vw;
  }
}
#works_single .works_contents ul li .thumb .b_a .before::before {
  position: absolute;
  content: "Before";
  top: 0;
  left: 0;
  color: #fff;
  width: 30%;
  padding: 1.5vw 0;
  padding-left: 3vw;
  background-color: #0869e8;
  opacity: 0.8;
  font-size: 1.2vw;
  letter-spacing: 0.3vw;
}
@media screen and (max-width: 768px) {
  #works_single .works_contents ul li .thumb .b_a .before::before {
    font-size: 3vw;
    padding: 3vw 0;
    padding-left: 6vw;
    letter-spacing: 0.6vw;
  }
}
#works_single .works_contents ul li .thumb .b_a .during::before {
  position: absolute;
  content: "During";
  top: 0;
  left: 0;
  color: #fff;
  width: 30%;
  padding: 1.5vw 0;
  padding-left: 3vw;
  background-color: #0869e8;
  opacity: 0.8;
  font-size: 1.2vw;
  letter-spacing: 0.3vw;
}
@media screen and (max-width: 768px) {
  #works_single .works_contents ul li .thumb .b_a .during::before {
    font-size: 3vw;
    padding: 3vw 0;
    padding-left: 6vw;
    letter-spacing: 0.6vw;
  }
}
#works_single .works_contents ul li .thumb .b_a .after::before {
  position: absolute;
  content: "After";
  top: 0;
  left: 0;
  color: #fff;
  width: 30%;
  padding: 1.5vw 0;
  padding-left: 3vw;
  background-color: #0869e8;
  opacity: 0.8;
  font-size: 1.2vw;
  letter-spacing: 0.3vw;
}
@media screen and (max-width: 768px) {
  #works_single .works_contents ul li .thumb .b_a .after::before {
    font-size: 3vw;
    padding: 3vw 0;
    padding-left: 6vw;
    letter-spacing: 0.6vw;
  }
}
#works_single .works_contents ul li .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#works_single .works_contents ul li .outline {
  width: 80%;
  margin: auto;
  margin-top: 4vw;
}
@media screen and (max-width: 768px) {
  #works_single .works_contents ul li .outline {
    margin-top: 8vw;
    width: 95%;
  }
}
#works_single .works_contents ul li .outline .date {
  margin-bottom: 1vw;
  color: #0869e8;
}
@media screen and (max-width: 768px) {
  #works_single .works_contents ul li .outline .date {
    margin-bottom: 2vw;
  }
}
#works_single .works_contents ul li .outline .title {
  font-size: 1.4vw;
  margin-bottom: 4vw;
  font-weight: 600;
  border-bottom: 1px solid #0869e8;
  display: inline-block;
  padding: 0 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #works_single .works_contents ul li .outline .title {
    margin-bottom: 6vw;
  }
}
@media screen and (max-width: 768px) {
  #works_single .works_contents ul li .outline .title {
    font-size: 4vw;
    margin-bottom: 8vw;
  }
}
#works_single .works_contents ul li .outline .descn {
  font-size: 0.8vw;
}
@media screen and (max-width: 768px) {
  #works_single .works_contents ul li .outline .descn {
    font-size: 1.4vw;
  }
}

#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: #0869e8;
  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;
  }
}

.info_bg {
  background-position: center;
  background-size: cover;
  background-color: rgba(51, 51, 51, 0.5);
}

#company {
  padding-top: 80px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company {
    padding: 60px 0;
  }
}
@media screen and (max-width: 768px) {
  #company {
    margin: 0;
    padding: 0;
  }
}
#company .lower_headline {
  text-align: center;
  color: #fff;
}
#company .lower_headline h2 {
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #0869e8;
}
#company .company_contents {
  width: 100%;
  margin: auto;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company .company_contents {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #company .company_contents {
    width: 100%;
    padding: 0;
    padding-bottom: 80px;
  }
}
#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: #0869e8;
  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: 70%;
  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%;
  }
}
@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: 35%;
  border-bottom: 2px solid #333;
  text-align: center;
  color: #fff;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  #company .company_contents .company_detail table tr th {
    font-size: 10px;
    width: 25%;
    border-bottom: 1px solid #333;
  }
}
#company .company_contents .company_detail table tr td {
  width: 65%;
  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: 70%;
  margin: 5vw auto 0;
}
#company .company_map iframe {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #company .company_map iframe {
    height: 240px;
  }
}

#contact {
  margin-bottom: 6vw;
}
#contact .contact .contact_contents .contact_headline {
  text-align: center;
  margin-bottom: 2vw;
}
#contact .contact .contact_contents .contact_headline h4 {
  color: #0869e8;
}
#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 #0869e8;
}
@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 #0869e8;
}
@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 #0869e8;
  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: #0869e8;
  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 #0869e8;
  color: #0869e8;
}
#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;
  }
}

.tune_bg {
  background-position: center;
  background-size: cover;
  background-color: rgba(51, 51, 51, 0.5);
}

.tune_breadcrumbs {
  margin: 0 !important;
  padding: 2vw 0 5vw 2vw;
  background-color: rgb(38.75, 38.75, 38.75);
}

.page-tune {
  background-color: #1A1A1A;
}
.page-tune .p-page-hero--pro-tune {
  padding: 80px 0 60px;
  background-color: rgb(38.75, 38.75, 38.75);
  border-bottom: 2px solid #0869e8;
}
@media screen and (max-width: 768px) {
  .page-tune .p-page-hero--pro-tune {
    padding: 20vw 0 10vw;
  }
}
.page-tune .p-page-hero--pro-tune .p-page-hero__title {
  text-align: center;
  font-size: 5vw;
  color: #0869e8;
  letter-spacing: 0.3em;
  font-weight: 900;
  text-shadow: 0 0 15px rgba(8, 105, 232, 0.7);
}
@media screen and (max-width: 768px) {
  .page-tune .p-page-hero--pro-tune .p-page-hero__title {
    font-size: 10vw;
  }
}
.page-tune .p-page-hero--pro-tune .p-page-hero__sub-title {
  text-align: center;
  font-size: 1.5vw;
  color: #E0E0E0;
  letter-spacing: 0.15em;
  margin-top: 1em;
}
@media screen and (max-width: 768px) {
  .page-tune .p-page-hero--pro-tune .p-page-hero__sub-title {
    font-size: 4vw;
  }
}
.page-tune .p-tune-concept {
  padding: 10vw 0;
  text-align: center;
}
.page-tune .p-tune-concept .p-tune-concept__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 5%;
}
@media screen and (min-width: 1441px) {
  .page-tune .p-tune-concept .p-tune-concept__inner {
    max-width: 1200px;
  }
}
.page-tune .p-tune-concept .p-tune-concept__title {
  font-size: 3vw;
  color: #FFF;
  margin-bottom: 1.5em;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .page-tune .p-tune-concept .p-tune-concept__title {
    font-size: 6vw;
  }
}
.page-tune .p-tune-concept .p-tune-concept__text {
  font-size: 1.2vw;
  color: #E0E0E0;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .page-tune .p-tune-concept .p-tune-concept__text {
    font-size: 3.5vw;
  }
}
.page-tune .p-tune-tech {
  padding: 10vw 0;
}
.page-tune .p-tune-tech .p-tune-tech__inner {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .page-tune .p-tune-tech .p-tune-tech__inner {
    flex-direction: column;
  }
}
.page-tune .p-tune-tech .p-tune-tech__content {
  flex: 1;
  padding-right: 5vw;
}
@media screen and (min-width: 1441px) {
  .page-tune .p-tune-tech .p-tune-tech__content {
    margin-right: 4vw;
  }
}
@media screen and (max-width: 768px) {
  .page-tune .p-tune-tech .p-tune-tech__content {
    padding-right: 0;
    margin-bottom: 8vw;
  }
}
.page-tune .p-tune-tech .p-tune-tech__content .p-tune-tech__title {
  font-size: 4vw;
  font-weight: 900;
  color: #FFF;
  margin-bottom: 0.8em;
  line-height: 1.2;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .page-tune .p-tune-tech .p-tune-tech__content .p-tune-tech__title {
    font-size: 8vw;
  }
}
.page-tune .p-tune-tech .p-tune-tech__content .p-tune-tech__title .line-effect {
  display: inline-block;
  color: #0869e8;
  text-shadow: 0 0 10px rgba(8, 105, 232, 0.7);
  border-bottom: 3px solid #0869e8;
  padding-bottom: 5px;
}
.page-tune .p-tune-tech .p-tune-tech__content .p-tune-tech__detail {
  font-size: 1.1vw;
  color: #E0E0E0;
  line-height: 2;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  .page-tune .p-tune-tech .p-tune-tech__content .p-tune-tech__detail {
    font-size: 3.5vw;
  }
}
.page-tune .p-tune-tech .p-tune-tech__content .p-tune-tech__logo img {
  max-width: 250px;
  height: auto;
  opacity: 0.8;
}
.page-tune .p-tune-tech .p-tune-tech__image {
  flex: 1;
}
.page-tune .p-tune-tech .p-tune-tech__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border: 3px solid #0869e8;
  box-shadow: 0 0 20px rgba(8, 105, 232, 0.5);
}
.page-tune .p-tune-gallery {
  padding: 10vw 5%;
  background-color: rgb(38.75, 38.75, 38.75);
  border-top: 1px solid rgba(8, 105, 232, 0.2);
}
.page-tune .p-tune-gallery .p-tune-gallery__main-title {
  text-align: center;
  font-size: 3.5vw;
  color: #FFF;
  margin-bottom: 0.5em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .page-tune .p-tune-gallery .p-tune-gallery__main-title {
    font-size: 7vw;
  }
}
.page-tune .p-tune-gallery .p-tune-gallery__sub-text {
  text-align: center;
  font-size: 1.2vw;
  color: #E0E0E0;
  margin-bottom: 5vw;
}
@media screen and (max-width: 768px) {
  .page-tune .p-tune-gallery .p-tune-gallery__sub-text {
    font-size: 3.5vw;
    margin-bottom: 10vw;
  }
}
.page-tune .p-tune-gallery .p-tune-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .page-tune .p-tune-gallery .p-tune-gallery__grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.page-tune .p-tune-gallery .p-gallery-item {
  overflow: hidden;
  border-radius: 5px;
  border: 1px solid rgba(8, 105, 232, 0.3);
  box-shadow: 0 0 10px rgba(8, 105, 232, 0.1);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  cursor: pointer;
}
.page-tune .p-tune-gallery .p-gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(8, 105, 232, 0.5);
  border-color: #0869e8;
}
.page-tune .p-tune-gallery .p-gallery-item .p-gallery-item__img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .page-tune .p-tune-gallery .p-gallery-item .p-gallery-item__img {
    height: 60vw;
  }
}
.page-tune .p-tune-closing {
  padding: 8vw 5% 10vw;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (min-width: 1441px) {
  .page-tune .p-tune-closing {
    max-width: 1200px;
  }
}
.page-tune .p-tune-closing .p-tune-closing__title {
  font-size: 3vw;
  color: #FFF;
  margin-bottom: 1em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .page-tune .p-tune-closing .p-tune-closing__title {
    font-size: 7vw;
  }
}
.page-tune .p-tune-closing .p-tune-closing__text {
  font-size: 1.2vw;
  color: #E0E0E0;
  line-height: 2;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  .page-tune .p-tune-closing .p-tune-closing__text {
    font-size: 3.5vw;
    line-height: 1.8;
    margin-bottom: 8vw;
  }
}
.page-tune .p-tune-closing .p-tune-closing__action .btn-secondary {
  display: inline-block;
  text-decoration: none;
  background-color: transparent;
  color: #0869e8;
  border: 2px solid #0869e8;
  padding: 1em 3em;
  border-radius: 5px;
  transition: all 0.3s;
  font-weight: 700;
  letter-spacing: 0.1em;
  box-shadow: 0 0 10px rgba(8, 105, 232, 0.3);
}
.page-tune .p-tune-closing .p-tune-closing__action .btn-secondary:hover {
  background-color: #0869e8;
  color: #fff;
  box-shadow: 0 0 20px #0869e8;
}
.page-tune .p-tune-closing .p-tune-closing__action .btn-secondary--large {
  font-size: 1.5vw;
  padding: 1.5em 4em;
}
@media screen and (max-width: 768px) {
  .page-tune .p-tune-closing .p-tune-closing__action .btn-secondary--large {
    font-size: 4.5vw;
    padding: 1em 3em;
  }
}

.custom_breadcrumbs {
  margin: 0 !important;
  padding: 2vw 0 5vw 2vw;
  background-color: #1A1A1A;
}

.page-custom {
  background-color: rgb(33.65, 33.65, 33.65);
}
.page-custom .p-page-hero--custom {
  padding: 80px 0 60px;
  background-color: #1A1A1A;
  border-bottom: 2px solid #FFC000;
}
@media screen and (max-width: 768px) {
  .page-custom .p-page-hero--custom {
    padding: 20vw 0 10vw;
  }
}
.page-custom .p-page-hero--custom .p-page-hero__title {
  text-align: center;
  font-size: 5vw;
  color: #FFF;
  letter-spacing: 0.25em;
  font-weight: 800;
}
@media screen and (max-width: 768px) {
  .page-custom .p-page-hero--custom .p-page-hero__title {
    font-size: 10vw;
  }
}
.page-custom .p-page-hero--custom .p-page-hero__sub-title {
  text-align: center;
  font-size: 1.5vw;
  color: #FFC000;
  letter-spacing: 0.1em;
  margin-top: 1em;
  text-shadow: 0 0 5px rgba(255, 192, 0, 0.5);
}
@media screen and (max-width: 768px) {
  .page-custom .p-page-hero--custom .p-page-hero__sub-title {
    font-size: 4vw;
  }
}
.page-custom .p-custom-concept {
  padding: 10vw 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page-custom .p-custom-concept {
    padding: 20vw 0;
  }
}
.page-custom .p-custom-concept .p-custom-concept__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5%;
}
@media screen and (min-width: 1441px) {
  .page-custom .p-custom-concept .p-custom-concept__inner {
    max-width: 1200px;
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .page-custom .p-custom-concept .p-custom-concept__inner {
    max-width: 90%;
  }
}
.page-custom .p-custom-concept .p-custom-concept__title {
  font-size: 3vw;
  color: #FFF;
  margin-bottom: 1.5em;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .page-custom .p-custom-concept .p-custom-concept__title {
    font-size: 5.5vw !important;
  }
}
.page-custom .p-custom-concept .p-custom-concept__title .highlight {
  color: #FFC000;
  text-shadow: 0 0 5px rgba(255, 192, 0, 0.5);
  font-weight: 700;
}
.page-custom .p-custom-concept .p-custom-concept__text {
  font-size: 1.2vw;
  color: #E0E0E0;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .page-custom .p-custom-concept .p-custom-concept__text {
    font-size: 3.5vw;
  }
}
.page-custom .p-custom-themes {
  padding: 0 0 10vw;
}
@media screen and (max-width: 768px) {
  .page-custom .p-custom-themes {
    padding: 20vw 0;
  }
}
.page-custom .p-custom-themes .p-custom-themes__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}
@media screen and (min-width: 1441px) {
  .page-custom .p-custom-themes .p-custom-themes__inner {
    max-width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .page-custom .p-custom-themes .p-custom-themes__inner {
    max-width: 85%;
  }
}
.page-custom .p-custom-themes .p-custom-themes__main-title {
  text-align: center;
  font-size: 3.5vw;
  color: #FFF;
  margin-bottom: 5vw;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .page-custom .p-custom-themes .p-custom-themes__main-title {
    font-size: 5vw !important;
    margin-bottom: 10vw;
  }
}
.page-custom .p-custom-themes .p-custom-themes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3vw;
}
@media screen and (max-width: 768px) {
  .page-custom .p-custom-themes .p-custom-themes__grid {
    grid-template-columns: 1fr;
    gap: 8vw;
  }
}
.page-custom .p-custom-themes .p-theme-item {
  text-align: center;
  padding: 2vw;
  background-color: rgb(46.4, 46.4, 46.4);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.page-custom .p-custom-themes .p-theme-item .p-theme-item__img {
  width: 100%;
  height: 15vw;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
  margin-bottom: 1.5em;
  border: 2px solid rgba(255, 192, 0, 0.5);
}
@media screen and (max-width: 768px) {
  .page-custom .p-custom-themes .p-theme-item .p-theme-item__img {
    height: 40vw;
  }
}
.page-custom .p-custom-themes .p-theme-item h3 {
  font-size: 1.8vw;
  color: #FFC000;
  margin-bottom: 0.5em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .page-custom .p-custom-themes .p-theme-item h3 {
    font-size: 4.5vw !important;
  }
}
.page-custom .p-custom-themes .p-theme-item p {
  font-size: 1vw;
  color: #E0E0E0;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .page-custom .p-custom-themes .p-theme-item p {
    font-size: 3.5vw;
  }
}
.page-custom .p-structural-flow .p-structural-flow__inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (min-width: 1441px) {
  .page-custom .p-structural-flow .p-structural-flow__inner {
    max-width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .page-custom .p-structural-flow .p-structural-flow__inner {
    max-width: 85%;
    margin: 20vw auto;
  }
}
.page-custom .p-structural-flow .p-structural-flow__title {
  text-align: center;
  font-size: 3.5vw;
  color: #0869e8;
  margin-bottom: 0.5em;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(8, 105, 232, 0.5);
}
@media screen and (max-width: 768px) {
  .page-custom .p-structural-flow .p-structural-flow__title {
    font-size: 4.5vw !important;
  }
}
.page-custom .p-structural-flow .p-structural-flow__lead {
  text-align: center;
  font-size: 1.2vw;
  color: #E0E0E0;
  margin-bottom: 5vw;
}
@media screen and (max-width: 768px) {
  .page-custom .p-structural-flow .p-structural-flow__lead {
    font-size: 3.5vw;
    margin-bottom: 10vw;
  }
}
.page-custom .p-structural-flow .p-flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .page-custom .p-structural-flow .p-flow-steps {
    grid-template-columns: 1fr;
    gap: 5vw;
  }
}
.page-custom .p-structural-flow .p-flow-step {
  text-align: center;
  padding: 20px 15px;
  border: 1px solid rgba(8, 105, 232, 0.2);
  border-radius: 8px;
  background-color: rgb(38.75, 38.75, 38.75);
  transition: all 0.3s;
}
.page-custom .p-structural-flow .p-flow-step:hover {
  border-color: #0869e8;
  background-color: rgb(51.5, 51.5, 51.5);
}
.page-custom .p-structural-flow .p-flow-step .p-flow-step__number {
  font-size: 3vw;
  font-weight: 900;
  color: #0869e8;
  line-height: 1;
  margin-bottom: 0.5em;
  text-shadow: 0 0 5px rgba(8, 105, 232, 0.7);
}
@media screen and (max-width: 768px) {
  .page-custom .p-structural-flow .p-flow-step .p-flow-step__number {
    font-size: 7vw;
  }
}
.page-custom .p-structural-flow .p-flow-step h3 {
  font-size: 1.2vw;
  color: #E0E0E0;
  margin-bottom: 0.5em;
  font-size: 1.2vw !important;
}
@media screen and (max-width: 768px) {
  .page-custom .p-structural-flow .p-flow-step h3 {
    font-size: 5vw !important;
  }
}
.page-custom .p-structural-flow .p-flow-step p {
  font-size: 0.9vw;
  color: #E0E0E0;
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .page-custom .p-structural-flow .p-flow-step p {
    font-size: 3vw;
  }
}
.page-custom .p-neoclassic-philosophy .p-neoclassic-philosophy__inner {
  max-width: 1200px;
  margin: 10vw auto;
}
@media screen and (max-width: 768px) {
  .page-custom .p-neoclassic-philosophy .p-neoclassic-philosophy__inner {
    max-width: 85%;
  }
}
.page-custom .p-neoclassic-philosophy .p-neoclassic-philosophy__title {
  text-align: center;
  font-size: 3.5vw;
  color: #FFF;
  margin-bottom: 4vw;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .page-custom .p-neoclassic-philosophy .p-neoclassic-philosophy__title {
    font-size: 7vw;
    margin-bottom: 8vw;
  }
}
.page-custom .p-neoclassic-philosophy .p-neoclassic-philosophy__title .highlight {
  color: #FFC000;
  text-shadow: 0 0 5px rgba(255, 192, 0, 0.5);
}
.page-custom .p-neoclassic-philosophy .p-philosophy-content {
  display: flex;
  align-items: center;
  gap: 3%;
}
@media screen and (min-width: 1441px) {
  .page-custom .p-neoclassic-philosophy .p-philosophy-content {
    gap: 10%;
  }
}
@media screen and (max-width: 768px) {
  .page-custom .p-neoclassic-philosophy .p-philosophy-content {
    flex-direction: column-reverse;
    gap: 5vw;
  }
}
.page-custom .p-neoclassic-philosophy .p-philosophy-content .p-philosophy-content__text {
  flex: 1;
}
.page-custom .p-neoclassic-philosophy .p-philosophy-content .p-philosophy-content__text p {
  font-size: 1.1vw;
  color: #FFF;
  line-height: 2;
  margin-bottom: 2em;
}
@media screen and (max-width: 768px) {
  .page-custom .p-neoclassic-philosophy .p-philosophy-content .p-philosophy-content__text p {
    font-size: 3.5vw;
    line-height: 1.8;
  }
}
.page-custom .p-neoclassic-philosophy .p-philosophy-content .p-philosophy-content__text .btn-secondary-outline {
  color: #FFC000;
  border: 1px solid #FFC000;
  padding: 0.8em 2em;
  text-decoration: none;
  display: inline-block;
  border-radius: 6px;
  transition: background-color 0.3s;
}
.page-custom .p-neoclassic-philosophy .p-philosophy-content .p-philosophy-content__text .btn-secondary-outline:hover {
  background-color: #FFC000;
  color: #1A1A1A;
}
.page-custom .p-neoclassic-philosophy .p-philosophy-content .p-philosophy-content__image {
  flex: 1;
}
.page-custom .p-neoclassic-philosophy .p-philosophy-content .p-philosophy-content__image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 4px solid #FFC000;
}
.page-custom .p-custom-gallery {
  padding: 10vw 0;
  background-color: #1A1A1A;
}
.page-custom .p-custom-gallery .p-custom-gallery__main-title {
  text-align: center;
  font-size: 3.5vw;
  color: #FFF;
  margin-bottom: 0.5em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .page-custom .p-custom-gallery .p-custom-gallery__main-title {
    font-size: 7vw;
  }
}
.page-custom .p-custom-gallery .p-custom-gallery__sub-text {
  text-align: center;
  font-size: 1.2vw;
  color: #E0E0E0;
  margin-bottom: 5vw;
}
@media screen and (max-width: 768px) {
  .page-custom .p-custom-gallery .p-custom-gallery__sub-text {
    font-size: 3.5vw;
    margin-bottom: 10vw;
  }
}
.page-custom .p-custom-gallery .p-custom-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  max-width: 1440px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .page-custom .p-custom-gallery .p-custom-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .page-custom .p-custom-gallery .p-custom-gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.page-custom .p-custom-gallery .p-gallery-card {
  background-color: transparent;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  transition: transform 0.3s;
}
.page-custom .p-custom-gallery .p-gallery-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(255, 192, 0, 0.5);
  z-index: 10;
}
.page-custom .p-custom-gallery .p-gallery-card .p-gallery-card__img {
  width: 100%;
  height: 20vw;
  -o-object-fit: cover;
     object-fit: cover;
  border: none;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .page-custom .p-custom-gallery .p-gallery-card .p-gallery-card__img {
    height: 25vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .page-custom .p-custom-gallery .p-gallery-card .p-gallery-card__img {
    height: 30vw;
  }
}
@media screen and (max-width: 768px) {
  .page-custom .p-custom-gallery .p-gallery-card .p-gallery-card__img {
    height: 50vw;
  }
}
.page-custom .p-custom-cta {
  padding: 8vw 5% 10vw;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}
.page-custom .p-custom-cta .p-custom-cta__title {
  font-size: 3vw;
  color: #FFC000;
  margin-bottom: 1em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .page-custom .p-custom-cta .p-custom-cta__title {
    font-size: 7vw;
  }
}
.page-custom .p-custom-cta .p-custom-cta__text {
  font-size: 1.2vw;
  color: #E0E0E0;
  line-height: 2;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  .page-custom .p-custom-cta .p-custom-cta__text {
    font-size: 3.5vw;
    line-height: 1.8;
    margin-bottom: 8vw;
  }
}
.page-custom .p-custom-cta .p-contact-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 4vw;
}
@media screen and (max-width: 768px) {
  .page-custom .p-custom-cta .p-contact-buttons {
    flex-direction: column;
    gap: 15px;
  }
}
.page-custom .p-custom-cta .p-contact-buttons .btn-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 1.5em 3em;
  border-radius: 12px;
  transition: all 0.3s;
  min-width: 300px;
}
@media screen and (max-width: 768px) {
  .page-custom .p-custom-cta .p-contact-buttons .btn-contact {
    min-width: 100%;
    padding: 1em;
  }
}
.page-custom .p-custom-cta .p-contact-buttons .btn-contact i {
  font-size: 1.5vw;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .page-custom .p-custom-cta .p-contact-buttons .btn-contact i {
    font-size: 6.5vw;
  }
}
.page-custom .p-custom-cta .p-contact-buttons .btn-contact small {
  font-size: 0.8vw;
  margin-top: 0.5em;
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .page-custom .p-custom-cta .p-contact-buttons .btn-contact small {
    font-size: 2.5vw;
  }
}
.page-custom .p-custom-cta .p-contact-buttons .btn-contact--line {
  background-color: #00C300;
  color: #1A1A1A;
  box-shadow: 0 0 15px rgba(0, 195, 0, 0.7);
}
.page-custom .p-custom-cta .p-contact-buttons .btn-contact--line:hover {
  background-color: #009000;
  box-shadow: 0 0 25px #00C300;
}
.page-custom .p-custom-cta .p-contact-buttons .btn-contact--line .contact-icon {
  fill: #1A1A1A;
}
.page-custom .p-custom-cta .p-contact-buttons .btn-contact--phone {
  background-color: #FFC000;
  color: #1A1A1A;
  border: 2px solid #FFC000;
  box-shadow: 0 0 15px rgba(255, 192, 0, 0.7);
}
.page-custom .p-custom-cta .p-contact-buttons .btn-contact--phone:hover {
  background-color: rgb(204, 153.6, 0);
  box-shadow: 0 0 25px #FFC000;
}
.page-custom .p-custom-cta .p-contact-buttons .btn-contact--phone .contact-icon {
  fill: #1A1A1A;
}

.park_bg {
  background-position: center;
  background-size: cover;
  background-color: rgba(51, 51, 51, 0.5);
}

.p-park-coming-soon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  text-align: center;
  padding: 10vw 0;
}
.p-park-coming-soon .p-park-cs__inner {
  max-width: 800px;
  width: 90%;
  border: 3px solid rgba(8, 105, 232, 0.5);
  padding: 5vw;
  box-shadow: 0 0 20px rgba(8, 105, 232, 0.3);
  background-color: rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  .p-park-coming-soon .p-park-cs__inner {
    padding: 10vw 5vw;
    box-shadow: none;
    border-width: 1px;
  }
}
.p-park-coming-soon .p-park-cs__message {
  font-size: 5vw;
  font-weight: 900;
  color: #FFF;
  margin-bottom: 0.5em;
  letter-spacing: 0.1em;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .p-park-coming-soon .p-park-cs__message {
    font-size: 10vw;
  }
}
.p-park-coming-soon .p-park-cs__detail {
  font-size: 1.5vw;
  color: #E0E0E0;
  margin-bottom: 4vw;
  line-height: 1.8;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .p-park-coming-soon .p-park-cs__detail {
    font-size: 2.5vw;
  }
}
@media screen and (max-width: 768px) {
  .p-park-coming-soon .p-park-cs__detail {
    font-size: 3.5vw;
    margin-bottom: 8vw;
  }
}

@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    opacity: 1;
    text-shadow: 0 0 15px #0869e8, 0 0 30px rgba(8, 105, 232, 0.5);
  }
  20%, 24%, 55% {
    opacity: 0.3;
    text-shadow: none;
  }
}
#solar .solar .top_benefits_title {
  width: 60%;
  margin: auto;
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #solar .solar .top_benefits_title {
    width: 70%;
    margin-bottom: 6vw;
  }
}
@media screen and (max-width: 768px) {
  #solar .solar .top_benefits_title {
    width: 95%;
    margin-bottom: 8vw;
  }
}
#solar .solar .top_benefits_title h4 {
  text-align: center;
  margin-bottom: 4vw;
  font-weight: 600;
  letter-spacing: 0.3vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #solar .solar .top_benefits_title h4 {
    font-size: 4vw;
    margin-bottom: 6vw;
  }
}
@media screen and (max-width: 768px) {
  #solar .solar .top_benefits_title h4 {
    font-size: 4vw;
    margin-bottom: 6vw;
  }
}
#solar .solar .top_benefits_title p a {
  pointer-events: none;
}
#solar .solar .top_benefits_title p a img {
  width: 100%;
}
#solar .solar .solar_contents01 {
  width: 80%;
  margin: auto;
  padding: 4vw;
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #solar .solar .solar_contents01 {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #solar .solar .solar_contents01 {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  #solar .solar .solar_contents01 {
    margin-bottom: 8vw;
  }
}
#solar .solar .solar_contents01 .solar_contents01_headline {
  text-align: center;
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #solar .solar .solar_contents01 .solar_contents01_headline h4 {
    font-size: 3vw;
  }
}
#solar .solar .solar_contents01 .solar_contents01_text {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #solar .solar .solar_contents01 .solar_contents01_text {
    flex-flow: column-reverse;
  }
}
#solar .solar .solar_contents01 .solar_contents01_text p {
  width: 55%;
  line-height: 3vw;
  letter-spacing: 0.08vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #solar .solar .solar_contents01 .solar_contents01_text p {
    line-height: 4vw;
    letter-spacing: 0.15vw;
  }
}
@media screen and (max-width: 768px) {
  #solar .solar .solar_contents01 .solar_contents01_text p {
    width: 100%;
    line-height: 6vw;
    letter-spacing: 0.3vw;
  }
}
#solar .solar .solar_contents01 .solar_contents01_text img {
  width: 35%;
}
@media screen and (max-width: 768px) {
  #solar .solar .solar_contents01 .solar_contents01_text img {
    margin-bottom: 4vw;
  }
}
#solar .solar .solar_contents02 {
  width: 80%;
  margin: auto;
  background-color: #f0f0f0;
  padding: 4vw;
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #solar .solar .solar_contents02 {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #solar .solar .solar_contents02 {
    width: 95%;
    padding: 7vw;
  }
}
#solar .solar .solar_contents02 .solar_contents02_headline {
  color: #0869e8;
  text-align: center;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #solar .solar .solar_contents02 .solar_contents02_headline {
    margin-bottom: 6vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #solar .solar .solar_contents02 .solar_contents02_headline h4 {
    font-size: 3vw;
    margin-bottom: 4vw;
  }
}
#solar .solar .solar_contents02 .solar_contents02_text {
  width: 90%;
  margin: auto;
  margin-bottom: 4vw;
  line-height: 3vw;
  letter-spacing: 0.08vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #solar .solar .solar_contents02 .solar_contents02_text {
    line-height: 4vw;
    letter-spacing: 0.15vw;
  }
}
@media screen and (max-width: 768px) {
  #solar .solar .solar_contents02 .solar_contents02_text {
    width: 100%;
    line-height: 6vw;
    letter-spacing: 0.3vw;
    margin-bottom: 6vw;
  }
}
#solar .solar .solar_contents02 .solar_contents02_list ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #solar .solar .solar_contents02 .solar_contents02_list ul {
    flex-wrap: wrap;
  }
}
#solar .solar .solar_contents02 .solar_contents02_list ul li {
  width: 22%;
}
@media screen and (max-width: 768px) {
  #solar .solar .solar_contents02 .solar_contents02_list ul li {
    width: 45%;
    margin-bottom: 6vw;
  }
}
#solar .solar .solar_contents02 .solar_contents02_list ul li .icon {
  width: 10vw;
  height: 10vw;
  border-radius: 50%;
  background-color: #0869e8;
  margin: auto;
  margin-bottom: 1vw;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #solar .solar .solar_contents02 .solar_contents02_list ul li .icon {
    width: 20vw;
    height: 20vw;
    margin-bottom: 3vw;
  }
}
#solar .solar .solar_contents02 .solar_contents02_list ul li .icon img {
  width: 70%;
  height: 70%;
  -o-object-fit: cover;
     object-fit: cover;
}
#solar .solar .solar_contents02 .solar_contents02_list ul li .icon_text {
  text-align: center;
}
#solar .solar .solar_contents02 .solar_contents02_list ul li .icon_text p {
  letter-spacing: 0.1vw;
}
#solar .solar .solar_contents03 {
  width: 80%;
  margin: auto;
  padding: 4vw;
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #solar .solar .solar_contents03 {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #solar .solar .solar_contents03 {
    width: 95%;
  }
}
#solar .solar .solar_contents03 .solar_contents03_headline {
  text-align: center;
  margin-bottom: 4vw;
  color: #0869e8;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #solar .solar .solar_contents03 .solar_contents03_headline h4 {
    font-size: 3vw;
  }
}
#solar .solar .solar_contents03 .solar_contents03_text {
  text-align: center;
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #solar .solar .solar_contents03 .solar_contents03_text {
    line-height: 4vw;
    letter-spacing: 0.15vw;
  }
}
@media screen and (max-width: 768px) {
  #solar .solar .solar_contents03 .solar_contents03_text {
    width: 100%;
    line-height: 6vw;
    letter-spacing: 0.3vw;
    margin-bottom: 6vw;
  }
}
#solar .solar .solar_contents03 .solar_contents03_structure {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #solar .solar .solar_contents03 .solar_contents03_structure {
    flex-flow: column;
  }
}
#solar .solar .solar_contents03 .solar_contents03_structure .structure_text {
  width: 55%;
}
@media screen and (max-width: 768px) {
  #solar .solar .solar_contents03 .solar_contents03_structure .structure_text {
    width: 100%;
  }
}
#solar .solar .solar_contents03 .solar_contents03_structure .structure_text h5 {
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #solar .solar .solar_contents03 .solar_contents03_structure .structure_text h5 {
    font-size: 4vw;
    margin-bottom: 4vw;
  }
}
#solar .solar .solar_contents03 .solar_contents03_structure .structure_text p {
  line-height: 3vw;
  letter-spacing: 0.08vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #solar .solar .solar_contents03 .solar_contents03_structure .structure_text p {
    line-height: 4vw;
    letter-spacing: 0.15vw;
  }
}
@media screen and (max-width: 768px) {
  #solar .solar .solar_contents03 .solar_contents03_structure .structure_text p {
    width: 100%;
    line-height: 6vw;
    letter-spacing: 0.3vw;
    margin-bottom: 6vw;
  }
}
#solar .solar .solar_contents03 .solar_contents03_structure .structure_image {
  width: 40%;
}
@media screen and (max-width: 768px) {
  #solar .solar .solar_contents03 .solar_contents03_structure .structure_image {
    width: 60%;
    margin-bottom: 8vw;
  }
}
#solar .solar .solar_contents03 .solar_contents03_structure .structure_image img {
  width: 100%;
}
#solar .solar .solar_contents04 {
  background-color: #0869e8;
  padding: 4vw;
  margin-bottom: 8vw;
}
#solar .solar .solar_contents04 .solar_contents04_headline {
  text-align: center;
  color: #0869e8;
  background-color: #fff;
  margin-bottom: 4vw;
  padding: 1.4vw;
  width: 60%;
  margin: auto;
  margin-bottom: 4vw;
}
#solar .solar .solar_contents04 .solar_contents04_list h4 {
  text-align: center;
  margin-bottom: 4vw;
  color: #fff;
}
#solar .solar .solar_contents04 .solar_contents04_list ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #solar .solar .solar_contents04 .solar_contents04_list ul {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #solar .solar .solar_contents04 .solar_contents04_list ul {
    flex-flow: column;
  }
}
#solar .solar .solar_contents04 .solar_contents04_list ul li {
  width: 30%;
  border: 5px solid #fff;
  padding: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #solar .solar .solar_contents04 .solar_contents04_list ul li {
    width: 32%;
  }
}
@media screen and (max-width: 768px) {
  #solar .solar .solar_contents04 .solar_contents04_list ul li {
    width: 90%;
    margin-bottom: 4vw;
  }
}
#solar .solar .solar_contents04 .solar_contents04_list ul li .solar_contents04_icon {
  width: 60%;
  margin: auto;
  margin-bottom: 1.5vw;
}
#solar .solar .solar_contents04 .solar_contents04_list ul li .solar_contents04_icon img {
  width: 100%;
}
#solar .solar .solar_contents04 .solar_contents04_list ul li .solar_contents_text {
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #solar .solar .solar_contents04 .solar_contents04_list ul li .solar_contents_text p {
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  #solar .solar .solar_contents04 .solar_contents04_list ul li .solar_contents_text p {
    font-size: 4vw;
  }
}
#solar .solar .solar_contents05 {
  position: relative;
  margin-bottom: 12vw;
}
#solar .solar .solar_contents05 .solar_contents05_image {
  width: 45%;
  height: 40vw;
  margin-left: auto;
  margin-right: 0;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #solar .solar .solar_contents05 .solar_contents05_image {
    height: 50vw;
  }
}
@media screen and (max-width: 768px) {
  #solar .solar .solar_contents05 .solar_contents05_image {
    height: 80vw;
  }
}
#solar .solar .solar_contents05 .solar_contents05_image::after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 10%;
  right: 10%;
  width: 180%;
  height: 100%;
  background-color: #e5e5e5;
}
@media screen and (max-width: 768px) {
  #solar .solar .solar_contents05 .solar_contents05_image::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0) 95%);
  }
}
#solar .solar .solar_contents05 .solar_contents05_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#solar .solar .solar_contents05 .solar_contents05_writing {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 45%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #solar .solar .solar_contents05 .solar_contents05_writing {
    top: 30%;
  }
}
@media screen and (max-width: 768px) {
  #solar .solar .solar_contents05 .solar_contents05_writing {
    top: 30%;
    width: 70%;
    z-index: 100;
  }
}
#solar .solar .solar_contents05 .solar_contents05_writing .solar_contents05_headline {
  margin-bottom: 2vw;
  color: #0869e8;
}
@media screen and (max-width: 768px) {
  #solar .solar .solar_contents05 .solar_contents05_writing .solar_contents05_headline {
    margin-bottom: 4vw;
  }
}
#solar .solar .solar_contents05 .solar_contents05_writing .solar_contents05_text p {
  line-height: 3vw;
  letter-spacing: 0.08vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #solar .solar .solar_contents05 .solar_contents05_writing .solar_contents05_text p {
    line-height: 4vw;
    letter-spacing: 0.15vw;
  }
}
@media screen and (max-width: 768px) {
  #solar .solar .solar_contents05 .solar_contents05_writing .solar_contents05_text p {
    width: 100%;
    line-height: 6vw;
    letter-spacing: 0.3vw;
    margin-bottom: 6vw;
  }
}

.policy_bg {
  background-position: center;
  background-size: cover;
  background-color: rgba(51, 51, 51, 0.5);
}

.policy_contents {
  width: 80%;
  margin: auto;
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  .policy_contents {
    width: 90%;
    margin-top: 60px;
  }
}
.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;
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .policy_contents p {
    font-size: 10px;
  }
}

footer {
  background-color: #333;
}
footer #footer_contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
  padding: 4vw 0;
}
@media screen and (max-width: 768px) {
  footer #footer_contact {
    flex-flow: column;
    padding: 8vw 0;
  }
}
footer #footer_contact .top_contact_title {
  color: #fff;
}
@media screen and (max-width: 768px) {
  footer #footer_contact .top_contact_title {
    margin-bottom: 4vw;
  }
}
@media screen and (max-width: 768px) {
  footer #footer_contact .top_contact_title p {
    text-align: center;
  }
}
footer #footer_contact .top_contact_tel {
  color: #fff;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 2vw 1vw;
}
@media screen and (max-width: 768px) {
  footer #footer_contact .top_contact_tel {
    width: 80%;
    margin: auto;
    padding: 6vw 3vw;
  }
}
footer #footer_contact .top_contact_tel h4 {
  margin-bottom: 0.5vw;
  letter-spacing: 0.3vw;
  text-align: center;
}
@media screen and (max-width: 768px) {
  footer #footer_contact .top_contact_tel h4 {
    margin-bottom: 4vw;
  }
}
footer #footer_contact .top_contact_tel h5 {
  text-align: center;
  letter-spacing: 0.3vw;
  margin-bottom: 0.5vw;
  font-size: 1.4vw;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  footer #footer_contact .top_contact_tel h5 {
    font-size: 4vw;
    margin-bottom: 1.5vw;
  }
}
footer #footer_contact .top_contact_tel h5 i {
  margin-right: 0.5vw;
}
footer #footer_contact .top_contact_tel p {
  text-align: center;
}
footer #footer_contact .top_contact_form {
  color: #fff;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 2vw 1vw;
  text-align: center;
}
@media screen and (max-width: 768px) {
  footer #footer_contact .top_contact_form {
    width: 80%;
    margin: auto;
    border-top: none;
    padding: 6vw 3vw;
  }
}
footer #footer_contact .top_contact_form h4 {
  margin-bottom: 0.8vw;
  letter-spacing: 0.3vw;
}
@media screen and (max-width: 768px) {
  footer #footer_contact .top_contact_form h4 {
    margin-bottom: 4vw;
  }
}
footer #footer_contact .top_contact_form a {
  text-decoration: none;
}
footer #footer_contact .top_contact_form a button {
  border: none;
  background-color: #fff;
  border: 1px solid #fff;
  color: #333;
  padding: 1vw 0;
  width: 60%;
  margin: auto;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  footer #footer_contact .top_contact_form a button {
    padding: 4vw 0;
    width: 90%;
  }
}
footer #footer_contact .top_contact_form a button:hover {
  border: 1px solid #0869e8;
  color: #fff;
  background-color: #0869e8;
}
footer #footer_contact .top_contact_form a button i {
  margin-left: 1vw;
}
footer .footer_inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 5vw;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  footer .footer_inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
footer .footer_inner .footer_brand {
  flex: 0 0 35%;
  text-align: left;
}
@media screen and (max-width: 768px) {
  footer .footer_inner .footer_brand {
    margin-bottom: 6vw;
    flex: none;
    text-align: center;
    width: 70%;
  }
}
footer .footer_inner .footer_brand .footer_logo_img_wrapper {
  display: block;
  width: 70%;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  footer .footer_inner .footer_brand .footer_logo_img_wrapper {
    width: 100%;
    margin: 0 auto 4vw;
  }
}
footer .footer_inner .footer_brand .footer_logo_img_wrapper .footer_logo_img {
  width: 100%;
  height: auto;
}
footer .footer_inner .footer_brand .footer_text {
  color: #E0E0E0;
}
footer .footer_inner .footer_brand .footer_text p {
  letter-spacing: 0.1vw;
  line-height: 1.6;
  font-size: 0.9vw;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  footer .footer_inner .footer_brand .footer_text p {
    font-size: 3vw;
    line-height: 1.5;
  }
}
footer .footer_inner .footer_brand .footer_copyright {
  font-size: 0.9vw;
  color: #AAAAAA;
  margin-top: 2vw;
}
@media screen and (max-width: 768px) {
  footer .footer_inner .footer_brand .footer_copyright {
    font-size: 3vw;
    margin-top: 6vw;
  }
}
footer .footer_inner .footer_nav {
  flex: 0 0 25%;
}
@media screen and (max-width: 768px) {
  footer .footer_inner .footer_nav {
    margin-bottom: 8vw;
    flex: none;
  }
}
footer .footer_inner .footer_nav .nav_title {
  font-size: 1.1vw;
  font-weight: 700;
  color: #0869e8;
  margin-bottom: 1em;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  footer .footer_inner .footer_nav .nav_title {
    font-size: 4vw;
    margin-bottom: 4vw;
  }
}
footer .footer_inner .footer_nav .footer_menu {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
@media screen and (max-width: 768px) {
  footer .footer_inner .footer_nav .footer_menu {
    text-align: center;
  }
}
footer .footer_inner .footer_nav .footer_menu li {
  margin-bottom: 0.7em;
}
footer .footer_inner .footer_nav .footer_menu .footer_link {
  color: #E0E0E0;
  text-decoration: none;
  font-size: 1vw;
  transition: color 0.3s;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  footer .footer_inner .footer_nav .footer_menu .footer_link {
    font-size: 3.5vw;
  }
}
footer .footer_inner .footer_nav .footer_menu .footer_link:hover {
  color: #0869e8;
  text-shadow: 0 0 5px rgba(8, 105, 232, 0.7);
}
footer .footer_inner .footer_sns_section {
  flex: 0 0 40%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer_inner .footer_sns_section {
    flex: 0 0 27%;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_inner .footer_sns_section {
    flex: none;
    width: 90%;
  }
}
footer .footer_inner .footer_sns_section .sns_title {
  font-size: 1.1vw;
  font-weight: 700;
  color: #0869e8;
  margin-bottom: 1em;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  footer .footer_inner .footer_sns_section .sns_title {
    font-size: 4vw;
    margin-bottom: 4vw;
  }
}
footer .footer_inner .footer_sns_section .sns_icons_wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  footer .footer_inner .footer_sns_section .sns_icons_wrapper {
    justify-content: center;
    gap: 20px 50px;
  }
}
footer .footer_inner .footer_sns_section .sns_icons_wrapper .sns_icon_link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  line-height: 1;
  font-size: 4rem;
}
footer .footer_inner .footer_sns_section .sns_icons_wrapper .sns_icon_link i {
  transition: color 0.3s;
}
footer .footer_inner .footer_sns_section .sns_icons_wrapper .sns_icon_link span {
  font-size: 0.75vw;
  color: #AAAAAA;
  line-height: 1.2;
  margin-top: 10px;
  transition: color 0.3s;
}
@media screen and (max-width: 768px) {
  footer .footer_inner .footer_sns_section .sns_icons_wrapper .sns_icon_link span {
    font-size: 2.5vw;
  }
}
footer .footer_inner .footer_sns_section .sns_icons_wrapper .sns_icon_link:hover i, footer .footer_inner .footer_sns_section .sns_icons_wrapper .sns_icon_link:hover span {
  color: #0869e8;
}/*# sourceMappingURL=style.css.map */