@charset "UTF-8";

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../font/NotoSansJP-Regular.woff") format("woff");
}

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("../font/NotoSansJP-Bold.woff") format("woff");
}

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 800;
  src: url("../font/NotoSansJP-Black.woff") format("woff");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("../font/Poppins-Regular.woff") format("woff");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  src: url("../font/Poppins-SemiBold.woff") format("woff");
}

*,
::before,
::after {
  box-sizing: border-box;
}

html {
  font-family: Lato, "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Verdana, Arial, "MS P Gothic", "MS Pゴシック", sans-serif;
}

body {
  min-width: auto !important;
  font-family: "Noto Sans JP";
}

main {
  font-family: "Noto Sans JP";
}

body.Android main {
  font-family: "shippori-mincho", sans-serif;
}

h1 {
  font-size: 3em;
}

main h2 {
  font-size: min(10vw, 72px);
  line-height: 1.4;
}

main.under-main h2 {
  font-size: 32px;
}

@media (max-width: 767px) {
  main.under-main h2 {
    font-size: 24px;
  }
}

main h3 {
  font-size: 1.8em;
}

p {
  font-size: 18px;
}

.under-main p {
  font-size: 16px;
}

@media (max-width: 767px) {
  h1 {
    font-size: 2em;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 18px;
  }

  p {
    font-size: 14px;
  }
}

.text-indent {
  list-style: none;
  padding-left: 1em;
  text-indent: -1em;
  display: block;
}

.text-indent2 {
  list-style: none;
  padding-left: 1.5em;
  text-indent: -1.5em;
  display: block;
}

figure img {
  max-width: fit-content;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.font-bold {
  font-weight: bold;
}

.text-small {
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .text-small {
    font-size: 1rem;
  }
}

.text-large {
  font-size: 24px;
}

@media screen and (max-width: 767px) {
  .text-large {
    font-size: 21px;
  }
}

.text-xlarge {
  font-size: 20px;
  font-size: 2rem;
}

@media screen and (max-width: 767px) {
  .text-xlarge {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.text-xxlarge {
  font-size: 24px;
  font-size: 2.4rem;
}

@media screen and (max-width: 767px) {
  .text-xxlarge {
    font-size: 20px;
    font-size: 2rem;
  }
}

.text-bold {
  font-weight: bold;
}

.text-white {
  color: #fff !important;
}

.text-black {
  color: #000;
}

.text-red {
  color: #da3915;
}

.text-pink {
  color: #dd758e;
}

.text-blue {
  color: #09517e;
}

.text-yellow {
  color: #fff45c;
}

.text-green {
  color: #008000;
}

/* gridタイル */
.row-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 1em;
  margin-bottom: 1%;
}

.row-grid.v-gap2 {
  grid-gap: 2em 1em;
}

.row-grid.gap4 {
  grid-gap: 4em;
}

@media screen and (max-width: 767px) {
  .row-grid {
    display: block;
  }
}

.row-grid .grid_center {
  display: grid;
  vertical-align: middle;
  align-items: center;
}

.row-grid .cols:last-child {
  margin-bottom: 0;
}

.row-grid .span-2 {
  grid-column: 2 span;
}

.row-grid .span-3 {
  grid-column: 3 span;
}

.row-grid .span-4 {
  grid-column: 4 span;
}

.row-grid .span-5 {
  grid-column: 5 span;
}

.row-grid .span-6 {
  grid-column: 6 span;
}

.row-grid .span-7 {
  grid-column: 7 span;
}

.row-grid .span-8 {
  grid-column: 8 span;
}

.row-grid .span-9 {
  grid-column: 9 span;
}

.row-grid .span-10 {
  grid-column: 10 span;
}

.row-grid .span-11 {
  grid-column: 11 span;
}

.row-grid .span-12 {
  grid-column: 12 span;
}

.row-grid .span_height1 {
  grid-row: 1 span;
}

.row-grid .span_height2 {
  grid-row: 2 span;
}

.row-grid .span_height3 {
  grid-row: 3 span;
}

.row-grid .span_height4 {
  grid-row: 3 span;
}

.row-grid.reverse {
  direction: rtl;
}

.row-grid.reverse p,
.row-grid.reverse h2,
.row-grid.reverse h3,
.row-grid.reverse h4,
.row-grid.reverse span,
.row-grid.reverse table {
  direction: initial;
}

@media screen and (max-width: 767px) {
  .row-grid.sp_img {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 10px;
  }

  .row-grid.sp_img.col2 .cols {
    grid-column: 6 span;
  }

  .row-grid.sp_img.col3 .cols {
    grid-column: 4 span;
  }

  .row-grid.sp_img.col4 .cols {
    grid-column: 3 span;
  }
}

.row:not(:last-child) {
  margin-bottom: 3%;
}

@media screen and (max-width: 767px) {
  .row {
    padding: 0 10px;
  }
}

.reverse .col {
  float: right;
}

.clr:after,
.col:after,
.container:after,
.group:after,
.row:after {
  content: "";
  display: table;
  clear: both;
}

.gutters .col {
  margin-left: 2%;
}

@media screen and (max-width: 767px) {
  .gutters .col {
    margin-left: 0%;
    margin-bottom: 4%;
  }

  .gutters .col:last-child {
    margin-bottom: 0%;
  }
}

.reverse>.col:last-child,
:not(.reverse)>.col:first-child {
  margin-left: 0;
}

.container {
  max-width: 1200px;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .container {
    margin-left: 5px;
    margin-right: 5px;
  }
}

.container.gutters {
  max-width: 1200px;
  margin: auto;
  position: relative;
}

.col {
  float: left;
  display: block;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .col {
    float: none;
    width: 100% !important;
  }
}

.gutters .span_2 {
  width: 16%;
}

.gutters .span_3 {
  width: 23.5%;
}

.gutters .span_4 {
  width: 31%;
}

.gutters .span_6 {
  width: 49%;
}

.gutters .span_8 {
  width: 65%;
}

.gutters .span_12 {
  width: 100%;
}

@media (max-width: 767px) {
  .sp_img.col_2>.col {
    float: left;
    width: 48% !important;
    margin-left: 2%;
  }

  .sp_img.col_2>.col:first-child {
    margin-left: 0%;
  }

  .row.sp_img.col_2 {
    margin-bottom: 2%;
  }
}

/* margin*/
.margin0 {
  margin: 0 !important;
}

.mt0 {
  margin-top: 0 !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.ml0 {
  margin-left: 0 !important;
}

.mr0 {
  margin-right: 0 !important;
}

.margin10 {
  margin: 10px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.margin20 {
  margin: 20px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.margin30 {
  margin: 30px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.margin40 {
  margin: 40px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.margin50 {
  margin: 50px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

@media (min-width: 768px) {
  .pc-margin0 {
    margin: 0 !important;
  }

  .pc-mt0 {
    margin-top: 0 !important;
  }

  .pc-mb0 {
    margin-bottom: 0 !important;
  }

  .pc-ml0 {
    margin-left: 0 !important;
  }

  .pc-mr0 {
    margin-right: 0 !important;
  }

  .pc-margin10 {
    margin: 10px !important;
  }

  .pc-mt10 {
    margin-top: 10px !important;
  }

  .pc-mb10 {
    margin-bottom: 10px !important;
  }

  .pc-ml10 {
    margin-left: 10px !important;
  }

  .pc-mr10 {
    margin-right: 10px !important;
  }

  .pc-margin20 {
    margin: 20px !important;
  }

  .pc-mt20 {
    margin-top: 20px !important;
  }

  .pc-mb20 {
    margin-bottom: 20px !important;
  }

  .pc-ml20 {
    margin-left: 20px !important;
  }

  .pc-mr20 {
    margin-right: 20px !important;
  }

  .pc-margin30 {
    margin: 30px !important;
  }

  .pc-mt30 {
    margin-top: 30px !important;
  }

  .pc-mb30 {
    margin-bottom: 30px !important;
  }

  .pc-ml30 {
    margin-left: 30px !important;
  }

  .pc-mr30 {
    margin-right: 30px !important;
  }

  .pc-margin40 {
    margin: 40px !important;
  }

  .pc-mt40 {
    margin-top: 40px !important;
  }

  .pc-mb40 {
    margin-bottom: 40px !important;
  }

  .pc-ml40 {
    margin-left: 40px !important;
  }

  .pc-mr40 {
    margin-right: 40px !important;
  }

  .pc-margin50 {
    margin: 50px !important;
  }

  .pc-mt50 {
    margin-top: 50px !important;
  }

  .pc-mb50 {
    margin-bottom: 50px !important;
  }

  .pc-ml50 {
    margin-left: 50px !important;
  }

  .pc-mr50 {
    margin-right: 50px !important;
  }

  .sp-only {
    display: none !important;
  }

  .pc-text-center {
    text-align: center !important;
  }

  .pc-text-left {
    text-align: left !important;
  }

  .pc-text-right {
    text-align: right !important;
  }
}

@media (max-width: 767px) {
  .row:not(:last-child) {
    margin-bottom: 0%;
  }

  .reverse>.col:last-child,
  :not(.reverse)>.col:first-child {
    margin-left: 0;
  }

  p.text_vertical {
    font-size: 1rem;
  }

  .sp-margin0 {
    margin: 0 !important;
  }

  .sp-mt0 {
    margin-top: 0 !important;
  }

  .sp-mb0 {
    margin-bottom: 0 !important;
  }

  .sp-ml0 {
    margin-left: 0 !important;
  }

  .sp-mr0 {
    margin-right: 0 !important;
  }

  .sp-margin10 {
    margin: 10px !important;
  }

  .sp-mt10 {
    margin-top: 10px !important;
  }

  .sp-mb10 {
    margin-bottom: 10px !important;
  }

  .sp-ml10 {
    margin-left: 10px !important;
  }

  .sp-mr10 {
    margin-right: 10px !important;
  }

  .sp-margin20 {
    margin: 20px !important;
  }

  .sp-mt20 {
    margin-top: 20px !important;
  }

  .sp-mb20 {
    margin-bottom: 20px !important;
  }

  .sp-ml20 {
    margin-left: 20px !important;
  }

  .sp-mr20 {
    margin-right: 20px !important;
  }

  .sp-margin30 {
    margin: 30px !important;
  }

  .sp-mt30 {
    margin-top: 30px !important;
  }

  .sp-mb30 {
    margin-bottom: 30px !important;
  }

  .sp-ml30 {
    margin-left: 30px !important;
  }

  .sp-mr30 {
    margin-right: 30px !important;
  }

  .sp-margin40 {
    margin: 40px !important;
  }

  .sp-mt40 {
    margin-top: 40px !important;
  }

  .sp-mb40 {
    margin-bottom: 40px !important;
  }

  .sp-ml40 {
    margin-left: 40px !important;
  }

  .sp-mr40 {
    margin-right: 40px !important;
  }

  .sp-margin50 {
    margin: 50px !important;
  }

  .sp-mt50 {
    margin-top: 50px !important;
  }

  .sp-mb50 {
    margin-bottom: 50px !important;
  }

  .sp-ml50 {
    margin-left: 50px !important;
  }

  .sp-mr50 {
    margin-right: 50px !important;
  }

  .pc-only {
    display: none !important;
  }

  .sp-text-center {
    text-align: center !important;
  }

  .sp-text-left {
    text-align: left !important;
  }

  .sp-text-right {
    text-align: right !important;
  }
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.highlights {
  background: #f7f7f7;
  padding: 4em 0;
}

@media (max-width: 767px) {
  .highlights {
    padding: 3em 0em;
  }
}

@media (max-width: 1499px) {
  .pc-only1500 {
    display: none !important;
  }
}

@media (min-width: 1500px) {
  .sp-only1500 {
    display: none !important;
  }
}

.flex_v-center {
  display: flex;
  align-items: center;
}

.flex_center {
  display: flex;
  align-items: center;
  vertical-align: middle;
}

:root {
  --swiper-theme-color: #007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-vertical>.swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-css-mode>.swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode>.swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode>.swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered>.swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal>.swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical>.swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

:root {
  --easing: cubic-bezier(.2, 1, .2, 1);
  --transition: .8s var(--easing);
  --color-base: #f8f8f8;
  --color-gray: #ddd;
  --color-theme: #0a517e;
  --color-theme-darken: #0a517e;
  --box-shadow: 0rem 0rem .9rem rgba(0, 0, 0, 0.123), -.8rem -.8rem 1.2rem #fff;
}

::-moz-selection {
  color: #fff;
  background: var(--color-theme);
}

::selection {
  color: #fff;
  background: var(--color-theme);
}

[class*=swiper]:focus {
  outline: none;
}

.slide-media,
.thumb-media {
  position: relative;
  overflow: hidden;
}

.swiper-button-prev,
.swiper-button-next {
  display: grid;
  place-content: center;
  width: 6.4rem;
  height: 6.4rem;
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

@media screen and (max-width: 767px) {

  .swiper-button-prev,
  .swiper-button-next {
    width: 3.4rem;
    height: 3.4rem;
  }
}

.swiper-button-prev::before,
.swiper-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
  border: 1px solid #09517e;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  width: 1.2rem;
  height: 1.2rem;
  content: "";
  border: solid #09517e;
  border-width: 2px 2px 0 0;
}

@media screen and (max-width: 767px) {

  .swiper-button-prev::after,
  .swiper-button-next::after {
    width: 0.7rem;
    height: 0.7rem;
  }
}

.swiper-button-prev::after {
  margin-left: 0.4rem;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.swiper-button-next::after {
  margin-right: 0.4rem;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}

.main-visual {
  position: relative;
  margin-bottom: 6em;
}

@media (min-width: 1400px) {
  .main-visual {
    margin-bottom: 10em;
  }
}

.under-main {
  position: relative;
  padding: 30px 0 0;
  background: #fff;
  max-width: 1200px;
  margin: auto;
  font-family: "Noto Sans JP", Meiryo, sans-serif;
}

@media screen and (max-width: 1200px) {
  .under-main {
    padding: 40px 4rem 0;
  }
}

@media screen and (max-width: 767px) {
  .under-main {
    padding: 20px 1rem 0;
  }
}

.under-main .under-main_contents {
  width: 100%;
  max-width: 136rem;
  margin: 0 auto;
  padding: 0 0 12rem;
}

@media screen and (min-width: 1000px) {
  .under-main .under-main_contents {
    display: flex;
    justify-content: space-between;
  }
}

@media screen and (min-width: 1000px) {
  .under-main .under-main_contents .under-main_primary {
    width: 72%;
  }
}

@media screen and (max-width: 767px) {
  .under-main .under-main_contents .under-main_primary {
    margin: 1em 0 4em 0;
  }
}

.under-main .under-main_contents .under-main_secondary {
  position: relative;
}

@media screen and (min-width: 1000px) {
  .under-main .under-main_contents .under-main_secondary {
    width: 28rem;
  }
}

@media screen and (min-width: 1000px) {
  .under-main .under-main_contents .under-main_secondary {
    margin-left: 8rem;
  }
}

@media screen and (max-width: 999px) {
  .under-main .under-main_contents .under-main_secondary {
    margin-top: 4rem;
    margin-left: 0;
  }
}

.newsList {
  padding-top: 2rem;
  border-top: 1px solid #e4e4e4;
}

.newsList .newsList_item {
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e4e4e4;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .newsList .newsList_item {
    display: flex;
  }
}

.newsList .newsList_item_meta {
  display: flex;
  align-items: flex-start;
}

@media screen and (max-width: 767px) {
  .newsList .newsList_item_meta {
    margin-bottom: 10px;
  }
}

.newsList .newsList_item_date {
  width: 11em;
  padding-left: 1.5rem;
  font-weight: 700;
  margin: 0.2rem 1rem 0 0;
}

@media screen and (max-width: 1200px) {
  .newsList .newsList_item_date {
    padding-left: 0.5rem;
    margin: 0.2rem 0rem 0 0;
  }
}

@media screen and (max-width: 767px) {
  .newsList .newsList_item_date {
    width: 10em;
    display: block;
    padding-bottom: 1rem;
    padding-left: 0rem;
    margin: 0.2rem 0rem 0 0;
  }
}

.newsList .newsList_item_cat {
  width: 13.5em;
  margin: 0 3rem 0 0;
  padding: 0.2rem 1rem;
  border: 1px solid currentColor;
  font-size: 1.3rem;
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .newsList .newsList_item_cat {
    width: 9.5em;
  }
}

.newsList .newsList_item_text {
  flex: 1;
}

.newsList .newsList_item+.newsList_item {
  margin-top: 2rem;
}

.n-side-nav {
  border-bottom: 1px solid #e4e4e4;
  line-height: 1.5;
}

.n-side-nav_heading {
  margin: 0;
  padding: 2.3rem 3rem 2.3rem 5rem;
  background: #0a517e;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.3;
}

.n-side-nav_heading_link {
  display: block;
  position: relative;
  margin: -2.3rem -3rem -2.3rem -5rem;
  padding: 2.3rem 4rem 2.3rem 5rem;
  color: #fff;
}

.n-side-nav_heading_link a {
  color: inherit;
}

.n-side-nav_heading_link:before {
  content: "";
  box-sizing: border-box;
  display: block;
  position: absolute;
  top: 1.8em;
  left: 2.5rem;
  width: 1rem;
  height: 1rem;
  transform: rotate(-45deg);
  border-width: 0 2px 2px 0;
  border-style: solid;
  border-color: #fff;
}

.n-side-nav_list {
  font-size: 1.5rem;
  font-weight: 400;
}

.n-side-nav_item {
  font-size: 1.5rem;
  font-weight: 400;
  border-top: 1px solid #e4e4e4;
}

.n-side-nav_item_link {
  display: block;
  position: relative;
  padding: 1.3rem 3rem 1.3rem 3rem;
}

.under-main_secondary .side-box {
  margin-top: 4rem;
  padding: 1.4rem;
  font-size: 1.3rem;
  border: 6px solid #f2f2f2;
  text-align: center;
}

.orizin-title001 {
  font-size: 3em;
  margin-bottom: 1em;
  position: relative;
  z-index: 1;
  padding-top: 45px;
  letter-spacing: 5px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .orizin-title001 {
    font-size: 2em;
  }
}

.orizin-title001 .ja {
  position: relative;
  z-index: 1;
}

.orizin-title001 .en {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: rgb(225, 225, 225);
  font-size: 8.5rem;
  line-height: 1;
  letter-spacing: normal;
  font-weight: normal;
  font-family: "Libre Baskerville", serif;
}

@media (max-width: 767px) {
  .orizin-title001 .en {
    font-size: 4.5rem;
  }
}

div.video_contents {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

iframe.video_main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.c-btn {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 4rem;
  padding: 1.6rem;
  background: #0a517e;
  color: #fff;
  font-size: 16px;
}

.c-btn.-next:before {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%) rotate(45deg);
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.page-header {
  height: 55rem;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}

@media (max-width: 767px) {
  .page-header {
    height: 23em;
  }
}

.page-header::before {
  content: "";
  position: absolute;
  z-index: 5;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  background: -webkit-gradient(linear, left top, right top, from(#0a517e), to(#0a517e));
  background: -o-linear-gradient(left, #0a517e 0%, #0a517e 100%);
  background: linear-gradient(90deg, #0a517e 0%, #0a517e 100%);
  transition: all 0.4s ease-out;
}

.page-header.active::before {
  width: 0;
}

@media (max-width: 999px) {
  .page-header {
    margin-top: 61px;
  }
}

.page-header__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-header__title {
  position: relative;
  z-index: 3;
  width: 100%;
  text-align: left;
  max-width: 1200px;
  transform: translateX(-150%);
  transition: 0.6s ease-out;
}

@media (max-width: 1200px) {
  .page-header__title {
    padding: 0 0.5em;
  }
}

.page-header__title.active {
  transform: translateX(0);
}

.page-header__ja {
  font-size: clamp(1.6rem, 3.3vw, 2.4em);
  font-weight: bold;
  line-height: 1;
  display: block;
  letter-spacing: 10px;
  padding-left: 1.4em;
  position: relative;
}

@media screen and (max-width: 767px) {
  .page-header__ja {
    padding-left: 2.4em;
    line-height: 1.4;
  }
}

.page-header__en {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1;
  display: block;
  font-family: "Libre Baskerville", serif;
}

.page-header__ja::before {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  content: "";
  width: 8%;
  max-width: 35px;
  height: 1px;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .page-header__ja::before {
    left: 0px;
  }
}

.page_ttl-en {
  display: block;
  text-transform: uppercase;
  font-size: 9rem;
  width: 100%;
  position: relative;
  z-index: 2;
  font-weight: bold;
}

@media (max-width: 767px) {
  .page_ttl-en {
    font-size: clamp(2rem, 9.3vw, 7rem);
  }
}

.page_ttl-en .stroke {
  fill: none;
  stroke: #fff;
  letter-spacing: 10px;
}

svg {
  transition: all 0.4s ease-out;
}

@media (min-width: 1024px) {
  .page-header__ja {
    font-size: 4.4rem;
  }

  .page-header__en {
    font-size: 3rem;
  }
}

.object-fit-cover {
  -o-object-fit: cover;
  object-fit: cover;
}

[class*=object-fit] {
  max-width: none;
  width: 100%;
  height: 100%;
}

.lum-lightbox {
  z-index: 999;
}

.works-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: top;
  -ms-flex-align: top;
  align-items: top;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 30px 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.works-box+.works-box {
  border-top: none;
}

.works-box .image {
  width: 31.25%;
}

.works-box .image img {
  width: 100%;
}

.works-box .text {
  width: 66.14%;
  line-height: 1.9;
}

.works-box .text h4 {
  margin-bottom: 15px;
  padding-bottom: 20px;
  border-bottom: 1px dotted #ccc;
  font-weight: normal;
  font-size: 32px;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

.works-box .text h4 small {
  display: block;
  margin-bottom: 10px;
  color: #1e52a6;
  font-size: 16px;
  font-weight: 600;
}

@media screen and (max-width: 640px) {
  .works-box .text h4 {
    margin-bottom: 15px;
    padding-bottom: 15px;
    font-size: 24px;
  }

  .works-box .text h4 small {
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .works-box {
    display: block;
  }

  .works-box .image {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }

  .works-box .text {
    width: 100%;
  }

  .works-box .text h4 {
    padding-bottom: 0;
    border-bottom: none;
  }
}

.sub_ttl001 {
  padding: 12px 24px;
  font-size: 140%;
  letter-spacing: 0.1em;
  background-color: #0969a6;
  color: #fff;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
}

.facility_table {
  width: 100%;
  border: solid 1px #C9C9C9;
  margin-bottom: 8px;
  background-color: #fff;
}

.facility_table th,
.facility_table td {
  padding: 10px 12px 10px 12px;
  font-weight: normal;
}

.facility_table th {
  border-left: solid 1px #C9C9C9;
  border-bottom: solid 1px #C9C9C9;
  background-color: #1E52A6;
  width: 30%;
  color: #fff;
  font-size: 18px;
  min-width: 80px;
}

@media screen and (max-width: 767px) {
  .facility_table th {
    font-size: 16px;
    width: 45%;
  }
}

.facility_table td {
  border-right: solid 1px #C9C9C9;
  border-bottom: solid 1px #C9C9C9;
  text-align: center;
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .facility_table td {
    font-size: 16px;
  }
}

.facility_table th.v-center,
.facility_table td.v-center {
  vertical-align: middle;
}

h2.under-title01 {
  color: #333;
  font-size: 3.6em;
  padding-bottom: 20px;
  position: relative;
  left: auto;
  right: auto;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  margin-bottom: 0.5em;
  font-weight: 500;
}

h2.under-title01::before {
  background: -webkit-linear-gradient(left, #1E52A6 200px, #B3C5E3 200px) no-repeat 0 100%;
  background: linear-gradient(90deg, #1E52A6 200px, #B3C5E3 200px) no-repeat 0 100%;
  background-size: auto;
  background-size: 100% 2px;
  content: "";
  height: 2px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media (max-width: 767px) {
  h2.under-title01 {
    font-size: 2.6em;
  }
}

#mainstagecontents {
  font-family: "Noto Sans JP", Meiryo, sans-serif;
}

.intro__anhor {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -10px;
  padding: 0 0 12px;
}

@media (max-width: 999px) {
  .intro__anhor {
    margin: 0;
    padding: 32px 0 20px;
  }
}

.intro__anhor li {
  width: 33.3333%;
  padding: 0 10px 42px;
}

@media (max-width: 999px) {
  .intro__anhor li {
    width: 100%;
    padding: 0 0 30px;
  }
}

.intro__anhor li .c-btn02 {
  max-width: unset;
  padding-left: 20px;
}

.c-btn02 {
  position: relative;
  display: block;
  max-width: 320px;
  padding-bottom: 20px;
  padding-left: 10px;
  color: #1E52A6;
  font-size: 16px;
  font-size: 20px;
}

.c-btn02:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #1E52A6;
}

.c-btn02:after {
  content: "";
  position: absolute;
  top: calc(50% - 16px);
  right: 10px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #1E52A6;
  border-right: 1px solid #1E52A6;
  transform: translateY(-50%) rotate(135deg);
}

.c-btn02:hover:before {
  width: 0;
}

.c-btn02:hover:after {
  top: calc(50% - 10px);
}

#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 14px;
  line-height: 1;
  z-index: 99;
}

#page-top a {
  background: #1e52a6;
  text-decoration: none;
  color: #fff;
  width: 60px;
  height: 60px;
  padding: 28px 5px;
  text-align: center;
  display: block;
  border-radius: 50%;
  opacity: 0.9;
  transition: all 0.3s ease;
  position: relative;
}

#page-top a:before {
  position: absolute;
  left: 50%;
  top: calc(50% + 2px);
  transform: translate(-50%, -50%) rotate(-45deg);
  content: "";
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

#page-top a:hover {
  text-decoration: none;
}

#kakoureiPage p {
  line-height: 1.8;
  font-size: 18px;
}

@media (max-width: 767px) {
  #kakoureiPage p {
    font-size: 15px;
  }
}

.mv-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -62%);
  z-index: 100;
  width: 100%;
  text-align: center;
}

.mv-title p {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  color: #fff;
  font-size: 2em;
  text-align: center;
  text-shadow: 2px 2px 2px #000000, -2px 2px 2px #000000, 2px -2px 2px #000000, -2px -2px 2px #000000, 2px 0px 2px #000000, 0px 2px 2px #000000, -2px 0px 2px #000000, 0px -2px 2px #000000;
  margin-bottom: 1rem;
}

@media (max-width: 767px) {
  .mv-title p {
    font-size: 1.4em;
  }
}

.mv-title p span {
  font-size: 2em;
  color: #d4a22b;
  text-shadow: 3px 3px 3px #ffffff, -3px 3px 3px #ffffff, 3px -3px 3px #ffffff, -3px -3px 3px #ffffff, 3px 0px 3px #ffffff, 0px 3px 3px #ffffff, -3px 0px 3px #ffffff, 0px -3px 3px #ffffff;
}

.mv-title .mv-title-txt {
  margin-bottom: 1em;
}

.mv-title .mv-achievement {
  display: flex;
  justify-content: space-around;
  max-width: 1000px;
  margin: auto;
  width: 50%;
}

.mv-img .l-inner {
  padding-bottom: 0;
}

.mv-img .swiper-fade .swiper-slide {
  -webkit-transition-property: opacity, -webkit-transform !important;
  transition-property: opacity, -webkit-transform !important;
  transition-property: opacity, transform !important;
  transition-property: opacity, transform, -webkit-transform !important;
  pointer-events: none;
}

.mv-img .swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.mv-img .swiper-pagination {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  right: 3.2rem;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  margin: auto;
}

.mv-img .swiper-pagination-bullet {
  display: block;
  width: 5px;
  height: 3rem;
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: rgba(255, 255, 255, 0.4);
}

.mv-img .swiper-pagination-bullet:not(:first-child) {
  margin-top: 0.8rem;
}

.mv-img .swiper-pagination-bullet-active {
  background-color: var(--color-theme);
}

.mv-img .slide-media img {
  -webkit-transition: 7s 1s ease-out;
  transition: 7s 1s ease-out;
}

.mv-img .slide-title {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  z-index: 100;
  background: #085082;
  padding: 0.3rem 1em;
  font-size: 1.5em;
  font-weight: normal;
  line-height: 1.6;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 13%;
  text-align: center;
  color: #fff;
}

@media (max-width: 767px) {
  .mv-img .slide-title {
    font-size: 1.2em;
  }
}

@media (min-width: 1600px) {
  .mv-img .slide-title {
    bottom: 22%;
  }
}

@media (min-width: 768px) {
  .mv-achievement2 {
    margin: 0 2%;
  }
}

@media (max-width: 999px) {
  .main-visual {
    position: relative;
    margin-top: 4em;
  }

  .mv-img .slide-title {
    font-size: 1.4rem;
  }
}

@media (max-width: 767px) {
  .main-visual {
    max-width: 480px;
    margin: 4.1em auto 2em;
  }

  .mv-img .slide-title {
    width: 90%;
  }
}

@media (max-width: 500px) {
  .mv-img .slide-title {
    bottom: 12vh;
  }
}

@media only screen and (max-width: 767px) {
  .mv-title .mv-achievement {
    flex-wrap: wrap;
    width: 100%;
  }

  .mv-title .mv-achievement .mv-achievement1 {
    width: 100%;
    margin-bottom: 1rem;
  }

  .mv-title .mv-achievement1 img {
    max-width: 180px;
    margin: auto;
  }

  .mv-title .mv-achievement .mv-achievement2 {
    width: 48%;
  }

  .mv-title .mv-achievement2 img {
    width: 100%;
    max-width: 180px;
    margin: auto;
  }

  .mv-title .mv-achievement .mv-achievement3 {
    width: 48%;
  }

  .mv-title .mv-achievement3 img {
    width: 100%;
    max-width: 180px;
    margin: auto;
  }

  .mv-title {
    transform: translate(-50%, calc(-50% - 5px));
    width: 100%;
  }

  .mv-title .mv-title-txt {
    margin-bottom: 5px;
  }
}

@media only screen and (min-width: 768px) {

  .swiper-button-prev::before,
  .swiper-button-next::before {
    -webkit-transition: var(--transition);
    transition: var(--transition);
  }

  .swiper-button-prev:hover::before,
  .swiper-button-next:hover::before {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

.title-design1 {
  position: relative;
  color: #09517e;
  font-weight: bold;
  margin-bottom: 20px;
  font-family: "Poppins";
}

@media screen and (max-width: 767px) {
  .title-design1 {
    margin-bottom: 15px;
  }
}

.title-design1::before {
  position: absolute;
  bottom: 0;
  left: 10px;
  content: "";
  width: 60px;
  height: 1px;
  background-color: #d29e21;
}

@media screen and (max-width: 767px) {
  .title-design1::before {
    bottom: -5px;
  }
}

.title-design2 {
  position: relative;
  color: #09517e;
  font-weight: bold;
  margin-bottom: 35px;
  text-align: center;
  line-height: 1;
  font-family: "Poppins";
}

@media screen and (max-width: 767px) {
  .title-design2 {
    margin-bottom: 35px;
  }
}

.title-design2::before {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 60px;
  height: 1px;
  background-color: #d29e21;
}

.title-design3 {
  font-weight: bold;
  font-size: min(8vw, 38px);
  margin-bottom: 25px;
  color: #1b1b1b;
}

.title-design4 {
  font-size: min(10vw, 33px);
  color: #d29e21;
  font-family: "Poppins";
  font-weight: bold;
}

.title-design1_sub-txt {
  display: block;
  font-size: 16px;
  margin-left: 10px;
  color: #1b1b1b;
  margin-bottom: 50px;
}

.title-design2_sub-txt {
  display: block;
  font-size: 16px;
  color: #1b1b1b;
  margin-bottom: 50px;
}

.arrow-link {
  position: relative;
  padding-right: 40px;
}

.arrow-link-icon {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 25px;
  margin: auto 0;
  line-height: 1;
}

.arrow-link-icon:before,
.arrow-link-icon:after {
  content: url(../img/btn-arrow1.png);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5px;
  animation-fill-mode: both;
  animation-duration: 0.6s;
}

@media screen and (min-width: 768px) {

  .arrow-link-icon:before,
  .arrow-link-icon:after {
    top: calc(50% - 1px);
  }
}

.arrow-link-icon:after {
  transform: translateX(-250%);
}

.arrow-link.is-hover .arrow-link-icon:before {
  animation-name: transformLeftRight;
  animation-delay: 0.2s;
}

.arrow-link.is-hover .arrow-link-icon:after {
  animation-name: transformRightLeft;
}

.arrow-link.is-hover:hover .arrow-link-icon:before {
  animation-name: transformRightLeft;
  animation-delay: 0s;
}

.arrow-link.is-hover:hover .arrow-link-icon:after {
  animation-name: transformLeftRight;
  animation-delay: 0.2s;
}

.arrow-link:hover .arrow-link-icon:before {
  content: url(../img/btn-arrow2.png);
}

.arrow-link.is-hover:hover .arrow-link-icon:after {
  content: url(../img/btn-arrow2.png);
}

@keyframes transformLeftRight {
  0% {
    transform: translate(-250%, -50%);
  }

  100% {
    transform: translate(0, -50%);
  }
}

@keyframes transformRightLeft {
  0% {
    transform: translate(0, -50%);
  }

  100% {
    transform: translate(250%, -50%);
  }
}

.button-design1.btn-center {
  text-align: center;
}

.button-design1.btn-center a {
  margin: auto;
  background-color: #fff;
}

.button-design1 a {
  display: block;
  padding: 1.5rem;
  border: 1px solid #09517e;
  max-width: 280px;
  min-width: 150px;
  text-align: center;
  border-radius: 40px;
  position: relative;
}

.button-design1 a .arrow-circle {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 25px;
  height: 25px;
  background-color: #09517e;
  border-radius: 50%;
}

.button-design1 a:hover {
  background-color: #09517e;
  color: #fff;
}

.button-design1 a:hover .arrow-circle {
  background-color: #fff;
}

.button-design2 a {
  display: block;
  padding: 1.5rem;
  border: 1px solid #fff;
  max-width: 280px;
  min-width: 150px;
  text-align: center;
  border-radius: 40px;
  position: relative;
  color: #fff;
}

.button-design2 a .arrow-circle {
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 45px;
  height: 25px;
  background-color: unset;
  border-radius: 50%;
}

.button-design2 a .arrow-circle .arrow-link-icon {
  width: 35px;
}

.button-design2 a .arrow-circle .arrow-link-icon:before,
.button-design2 a .arrow-circle .arrow-link-icon:after {
  right: 14px;
}

.button-design2 a:hover {
  background-color: #fff;
  color: #09517e;
}

.button-design2 a:hover:before {
  background-color: #fff;
}

.button-design3 a {
  display: block;
  padding: 1.5rem;
  max-width: 280px;
  text-align: center;
  border-radius: 10px;
  position: relative;
  background: #09517e;
  color: #fff;
  text-align: center;
  font-size: 21px;
}

.button-design3 a:hover {
  background-color: #fff;
  color: #09517e;
}

.RecruitContents2__wrap .button-design3 a {
  border: 1px solid transparent;
}

.RecruitContents2__wrap .button-design3 a:hover {
  border: 1px solid #09517e;
}

.top-concept {
  padding: 2em 0 11em 0;
}

@media screen and (max-width: 767px) {
  .top-concept {
    padding: 0;
  }
}

.top-concept .top-concept_wrap {
  position: relative;
}

@media screen and (min-width: 768px) {
  .top-concept .top-concept_wrap {
    display: flex;
    justify-content: space-between;
  }
}

.top-concept .top-concept_img-left {
  position: relative;
  height: fit-content;
}

@media screen and (min-width: 1400px) {
  .top-concept .top-concept_img-left {
    margin-top: -65px;
  }
}

@media screen and (max-width: 767px) {
  .top-concept .top-concept_img-left {
    height: 200px;
    width: 200px;
    position: absolute;
    right: 0;
  }
}

@media screen and (max-width: 767px) {
  .top-concept .top-concept_img-left .main-img {
    display: none;
  }
}

.top-concept .top-concept_img-left .sub-img {
  position: absolute;
  right: 0;
  max-width: 344px;
}

@media screen and (min-width: 768px) {
  .top-concept .top-concept_img-left .sub-img {
    bottom: -95px;
    right: -20%;
  }
}

@media screen and (max-width: 767px) {
  .top-concept .top-concept_img-left .sub-img {
    max-width: 200px;
    position: absolute;
    opacity: 0.3;
  }
}

.top-concept .top-concept_txt {
  padding: 1em;
}

@media screen and (max-width: 767px) {
  .top-concept .top-concept_txt {
    padding: 3em 1em;
  }
}

@media screen and (min-width: 768px) {
  .top-concept .top-concept_txt {
    padding: 10px 5em 0 8em;
    min-width: 700px;
    max-width: 1080px;
    width: 45%;
  }
}

@media (min-width: 900px) and (max-width: 1200px) {
  .top-concept .top-concept_txt {
    padding: 10px 4em 0 6em;
    min-width: 550px;
  }
}

@media (min-width: 767px) and (max-width: 899px) {
  .top-concept .top-concept_txt {
    padding: 10px 2em 0 3em;
    min-width: 550px;
  }
}

.top-concept .top-concept_txt p.l-h2 {
  line-height: 2.8;
  font-size: 16px;
  color: #1b1b1b;
}

.top-concept .top-concept_img-right {
  display: flex;
  align-items: end;
}

@media screen and (min-width: 768px) {
  .top-concept .top-concept_img-right {
    margin-bottom: -120px;
  }
}

@media (min-width: 767px) and (max-width: 1400px) {
  .top-concept .top-concept_img-right {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    opacity: 0.3;
  }
}

@media screen and (max-width: 767px) {
  .top-concept .top-concept_img-right {
    width: 50%;
    margin-left: auto;
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0.3;
  }
}

@media screen and (min-width: 768px) {
  .top-concept .top-concept_img-right img {
    max-width: 400px;
  }
}

.top-feature {
  padding: 4em 1rem;
  min-height: 640px;
  margin-bottom: 360px;
  background: url(../img/top-feature_backimg.webp) fixed no-repeat center center/cover;
}

@media screen and (max-width: 767px) {
  .top-feature {
    padding: 3em 1rem;
    margin-bottom: 320px;
  }
}

.top-feature .top-feature_wrap {
  max-width: 1159px;
  margin: auto auto -320px auto;
}

.top-feature .top-feature_box {
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .top-feature .top-feature_box {
    width: 100%;
    margin-bottom: 2em;
  }
}

@media screen and (min-width: 768px) {
  .top-feature .top-feature_box ul {
    display: flex;
    justify-content: center;
    max-width: 1159px;
  }
}

.top-feature .top-feature_box ul li {
  position: relative;
  min-height: 400px;
  width: 33.3333333333%;
}

@media screen and (max-width: 767px) {
  .top-feature .top-feature_box ul li {
    width: 100%;
    margin-bottom: 5em;
  }
}

.top-feature .top-feature_box ul li .li-box {
  cursor: pointer;
  max-width: 500px;
  overflow: hidden;
  width: 100%;
  display: block;
}

.top-feature .top-feature_box ul li .li-box img {
  height: auto;
  transition: transform 0.5s ease;
  min-height: 440px;
  width: 100%;
  object-fit: cover;
}

.top-feature .top-feature_box ul li .li-box:hover {
  overflow: hidden;
}

.top-feature .top-feature_box ul li .li-box:hover img {
  transform: scale(1.2, 1.2);
}

@media screen and (max-width: 767px) {
  .top-feature .top-feature_box ul li:first-of-type {
    margin-top: 4em;
  }
}

@media screen and (max-width: 767px) {
  .top-feature .top-feature_box ul li:last-of-type {
    margin-bottom: 0;
  }
}

.top-feature .top-feature_box .top-feature_box-number {
  position: absolute;
  top: -50px;
  right: 20px;
  font-size: 4em;
  color: #fff;
  z-index: 10;
  font-family: "Poppins";
}

.top-feature .top-feature_box .top-feature_box-txt {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
}

@media screen and (max-width: 767px) {
  .top-feature .top-feature_box .top-feature_box-txt {
    width: 90%;
  }
}

.top-feature .top-feature_box .top-feature_box-txt p {
  font-size: 16px;
}

.top-feature .top-feature_box .top-feature_box-txt p {
  color: #fff;
  font-weight: normal;
}

.top-product {
  margin-bottom: 120px;
}

@media screen and (max-width: 767px) {
  .top-product {
    margin-bottom: 55px;
  }
}

.top-product .l-inner {
  position: relative;
}

.top-product .product-back-gray {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: #eeeeee;
  max-width: 1160px;
  width: 100%;
  padding: 1em;
  height: 100%;
}

.top-product .product-slider .swiper-area {
  position: relative;
  margin: auto;
  padding: 1em;
}

.top-product .product-slider .swiper-pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.2rem 0.8rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 3.2rem;
  text-align: center;
}

.top-product .swiper-button-prev.product-button-prev:before,
.top-product .swiper-button-next.product-button-next:before {
  border: unset;
  background-color: #09517e;
}

.top-product .swiper-button-prev.product-button-prev:after,
.top-product .swiper-button-next.product-button-next:after {
  border: solid #fff;
  border-width: 2px 2px 0 0;
}

.top-product .product-slider .swiper-pagination-bullet {
  width: 1.6rem;
  height: 3px;
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  vertical-align: top;
  background-color: var(--color-gray);
}

.top-product .product-slider .swiper-pagination-bullet-active {
  width: 4rem;
  background-color: var(--color-theme);
}

.top-product .product-slider .swiper-button-prev,
.top-product .product-slider .swiper-button-next {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  margin: auto;
}

.top-product .product-slider .swiper-button-prev {
  left: 2%;
}

@media screen and (min-width: 1400px) {
  .top-product .product-slider .swiper-button-prev {
    left: 22.5%;
  }
}

.top-product .product-slider .swiper-button-next {
  right: 3%;
}

@media screen and (min-width: 1400px) {
  .top-product .product-slider .swiper-button-next {
    right: 22.5%;
  }
}

.top-product .product-slider .slide-media img {
  height: calc(100% + 16px);
}

.top-product .product-slider .slide-media.img-cover {
  cursor: pointer;
  overflow: hidden;
  width: 100%;
}

.top-product .product-slider .slide-media.img-cover img {
  height: auto;
  transition: transform 0.5s ease;
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.top-product .product-slider article.slide:hover .slide-media.img-cover {
  overflow: hidden;
}

.top-product .product-slider article.slide:hover .slide-media.img-cover img {
  transform: scale(1.2, 1.2);
}

.top-product .product-slider .slide-content {
  padding: 2.2em 2.2em 3.2em 2.2em;
  min-height: 195px;
}

@media (max-width:767px) {
  .top-product .product-slider .slide-content {
    padding: 1.2em 1.2em 2.2em 1.2em;
  }
}

.top-product .product-slider .slide-content p {
  font-size: 14px;
  color: #1a1a1a;
}

.top-product .product-slider .slide-date {
  font-size: 1.2rem;
  line-height: 1;
  display: block;
  color: var(--color-theme);
}

.top-product .product-slider .slide-title {
  line-height: 1.6;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 2rem;
  font-size: 21px;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {

  .top-product .product-slider .swiper-button-prev::before,
  .top-product .product-slider .swiper-button-next::before {
    -webkit-box-shadow: var(--box-shadow-dark);
    box-shadow: var(--box-shadow-dark);
  }

  .top-product .product-slider .swiper-button-prev::after,
  .top-product .product-slider .swiper-button-next::after {
    border-color: #fff;
  }

  .top-product .product-slider .swiper-button-prev {
    left: 2%;
  }

  .top-product .product-slider .swiper-button-next {
    right: 2%;
  }
}

.top-product .product-slider .slide {
  background: #fff;
}

@media only screen and (min-width: 1025px) {
  .top-product .product-slider .swiper {
    padding: 60px 0;
  }

  .top-product .product-slider .slide {
    -webkit-transition: var(--transition);
    transition: var(--transition);
  }

  .top-product .product-slider .slide img {
    -webkit-transition: var(--transition);
    transition: var(--transition);
  }

  .top-product .product-slider .slide:hover {
    -webkit-transform: translateY(-16px);
    transform: translateY(-16px);
  }

  .top-product .product-slider .slide:hover img {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.top-equipment {
  background: linear-gradient(0deg, rgb(211, 211, 211) 0%, rgb(250, 250, 250) 50%);
  padding: 8em 0 8em 0;
  position: relative;
}

@media screen and (max-width: 767px) {
  .top-equipment {
    padding: 4em 10px 4em 10px;
  }
}

.top-equipment .top-equipment_backimg {
  position: absolute;
  top: calc(50% + 120px);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

@media screen and (max-width: 767px) {
  .top-equipment .top-equipment_backimg {
    display: none;
  }
}

.top-equipment .top-equipment_box {
  justify-content: center;
  position: relative;
  margin: 4em auto 3em auto;
  max-width: 1600px;
}

@media screen and (min-width: 768px) {
  .top-equipment .top-equipment_box {
    display: flex;
    margin: 2em auto 1em auto;
  }
}

@media screen and (max-width: 767px) {
  .top-equipment .top-equipment_box {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    margin: 0em auto 3em auto;
  }
}

.top-equipment .top-equipment_box-list {
  margin: 0;
}

@media screen and (min-width: 768px) {
  .top-equipment .top-equipment_box-list {
    width: 33.3333%;
    margin: 0 0 40px 0;
  }
}

.top-equipment .top-equipment_box-list h3 {
  font-weight: bold;
  padding-left: 2em;
  position: relative;
  color: #1b1b1b;
}

.top-equipment .top-equipment_box-list h3:before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #09517e;
}

.top-equipment .top-equipment_box-list h3:after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(1);
  left: 22px;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #09517e;
  transition: 0.2s ease-in-out;
}

.top-equipment .top-equipment_box-list h3:hover:after {
  transform: translateY(-50%) scale(5);
}

.top-equipment .top-equipment_box-list a:hover {
  overflow: hidden;
}

.top-equipment .top-equipment_box-list a:hover img {
  transform: scale(1.1, 1.1);
}

.top-equipment .top-equipment_box-list a:hover h3:after {
  transform: translateY(-50%) scale(5);
}

.top-equipment .top-equipment_box-img {
  cursor: pointer;
  overflow: hidden;
  width: 100%;
  padding-top: 70px;
}

@media screen and (min-width: 768px) {
  .top-equipment .top-equipment_box-img {
    min-height: 477px;
    display: flex;
    align-items: end;
    padding-top: 40px;
  }
}

.top-equipment .top-equipment_box-img img {
  margin-left: auto;
  margin-right: auto;
  height: auto;
  transition: transform 0.5s ease;
}

@media screen and (max-width: 767px) {
  .top-equipment .top-equipment_box-img img {
    padding: 1em 0;
  }
}

.top-equipment .top-equipment_box-img img.size1 {
  max-width: 466px;
}

.top-equipment .top-equipment_box-img img.size2 {
  max-width: 233px;
}

.top-equipment .top-equipment_box-img img.size3 {
  max-width: 460px;
}

.top-equipment p {
  line-height: 2;
}

.top-news {
  background-color: #09517e;
  padding: 6em 4em;
}

@media screen and (max-width: 767px) {
  .top-news {
    padding: 4em 1rem;
  }
}

@media screen and (min-width: 768px) {
  .top-news .top-news_wrap {
    display: flex;
  }
}

.top-news .top-news_title {
  width: 40%;
  min-width: 175px;
  margin-right: 2em;
}

@media screen and (max-width: 767px) {
  .top-news .top-news_title {
    display: flex;
    margin-right: 0;
    width: 100%;
    align-items: center;
  }
}

.top-news .top-news_title .button-design2 {
  max-width: 210px;
}

@media screen and (max-width: 767px) {
  .top-news .top-news_title .sp-left {
    min-width: 125px;
    margin-right: 0px;
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .top-news .top-news_title .sp-right {
    min-width: 135px;
    width: 100%;
  }
}

.top-news .top-news_list {
  width: 100%;
}

.top-news .top-news_list ul li {
  margin-bottom: 20px;
}

.top-news .top-news_list ul li a {
  display: flex;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 2em 1.5em;
}

@media screen and (max-width: 767px) {
  .top-news .top-news_list ul li a {
    padding: 1em;
  }
}

.top-news .top-news_list ul li a .news-txt:after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  bottom: -10px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}

.top-news .top-news_list ul li a:hover .news-txt:after {
  transform: scale(1, 1);
}

.top-news .top-news_list ul li:last-of-type {
  margin-bottom: 0;
}

.top-news .top-news_list .news-day {
  margin-right: 30px;
  min-width: 75px;
}

@media screen and (max-width: 767px) {
  .top-news .top-news_list .news-day {
    margin-right: 15px;
  }
}

.top-news .top-news_list .news-txt {
  position: relative;
}

.top-column {
  margin-bottom: 39em;
  background: url(../img/top-column_backimg.webp) no-repeat center center/cover;
  min-height: 415px;
  position: relative;
  display: flex;
  align-items: end;
}

@media screen and (max-width: 767px) {
  .top-column {
    margin-bottom: 10em;
    min-height: 515px;
  }
}

.top-column .top-column_title {
  height: 155px;
}

@media screen and (max-width: 767px) {
  .top-column .top-column_title {
    height: 95px;
  }
}

.top-column .top-column_wrap {
  background-color: #fff;
  margin-left: auto;
  padding: 2em 3em;
  width: 90%;
  margin-bottom: -40em;
}

@media screen and (max-width: 767px) {
  .top-column .top-column_wrap {
    margin-bottom: -10em;
    padding: 1rem 1rem;
    width: 98%;
  }
}

.top-column .column-slider {
  overflow: hidden;
  margin-bottom: 2em;
}

.top-column .column-slider .swiper {
  overflow: visible;
}

.top-column .column-slider .column-swiper-wrapper {
  padding: 1em;
}

.top-column .column-slider .slide-media.img-cover {
  cursor: pointer;
  overflow: hidden;
  width: 100%;
}

.top-column .column-slider .slide-media.img-cover img {
  height: auto;
  transition: transform 0.5s ease;
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.top-column .column-slider article.slide:hover .slide-media.img-cover {
  overflow: hidden;
}

.top-column .column-slider article.slide:hover .slide-media.img-cover img {
  transform: scale(1.1, 1.1);
}

.top-column .column-slider .swiper-controller {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1.6rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: space-between;
  -ms-flex-pack: end;
  justify-content: space-between;
  padding: 1em;
}

.top-column .column-slider .swiper-controller .swiper-button-flex {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1.6rem;
}

.top-column .column-slider .swiper-pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.2rem 0.8rem;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: 0 auto 0 0;
  text-align: center;
}

.top-column .column-slider .swiper-pagination-bullet {
  width: 1.6rem;
  height: 3px;
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  vertical-align: top;
  background-color: var(--color-gray);
}

.top-column .column-slider .swiper-pagination-bullet-active {
  width: 4rem;
  background-color: var(--color-theme);
}

.top-column .column-slider .swiper-button-prev,
.top-column .column-slider .swiper-button-next {
  position: relative;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0;
}

.top-column .column-slider .swiper-button-disabled {
  pointer-events: none;
  opacity: 0.5;
}

.top-column .column-slider .swiper-button-disabled::before {
  -webkit-box-shadow: var(--box-shadow-inset);
  box-shadow: var(--box-shadow-inset);
}

.top-column .column-slider .swiper-slide {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.top-column .column-slider .slide {
  overflow: hidden;
  width: 36rem;
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
}

.top-column .column-slider .slide-media img {
  height: calc(100% + 16px);
}

.top-column .column-slider .slide-content {
  padding: 3.2rem;
}

.top-column .column-slider .slide-date {
  font-size: 1.2rem;
  line-height: 1;
  display: block;
  color: #1b1b1b;
}

.top-column .column-slider .slide-title {
  line-height: 1.6;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 3.2em;
  margin-top: 1.6rem;
  font-size: 18px;
  font-weight: bold;
}

@media only screen and (max-width: 599px) {
  .top-column .column-slider .slide {
    width: 24rem;
  }
}

@media only screen and (min-width: 1025px) {

  .top-column .swiper-button-prev::before,
  .top-column .swiper-button-next::before {
    -webkit-transition: var(--transition);
    transition: var(--transition);
  }

  .top-column .swiper-button-prev:hover::before,
  .top-column .swiper-button-next:hover::before {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  .top-column .column-slider .slide {
    -webkit-transition: var(--transition);
    transition: var(--transition);
  }

  .top-column .column-slider .slide img {
    -webkit-transition: var(--transition);
    transition: var(--transition);
  }

  .top-column .column-slider .slide:hover {
    -webkit-transform: translateY(-16px);
    transform: translateY(-16px);
    -webkit-box-shadow: var(--box-shadow-hover);
    box-shadow: var(--box-shadow-hover);
  }

  .top-column .column-slider .slide:hover img {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.contact {
  background: url(../img/contact_backimg.webp) no-repeat center center/cover;
  padding: 6em 1rem;
  min-height: 600px;
  margin-top: 6em;
}

@media screen and (max-width: 767px) {
  .contact {
    padding: 3em 1.5rem;
  }
}

.contact .contact_wrap {
  max-width: 1200px;
  margin: auto;
}

@media screen and (min-width: 768px) {
  .contact .contact_wrap {
    display: flex;
  }
}

.contact .contact_title {
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .contact .contact_title {
    width: 48%;
    margin-right: 1%;
  }
}

.contact .contact_title p {
  font-size: 18px;
  line-height: 2;
}

.contact .contact_txt {
  padding-top: 20px;
}

@media screen and (min-width: 768px) {
  .contact .contact_txt {
    margin-left: 1%;
    padding-top: 70px;
  }
}

.contact .contact_txt .contact-tel {
  margin-top: 25px;
  padding: 0 0 30px 60px;
  font-size: 52px;
  line-height: 35px;
  border-bottom: 1px solid #fff;
  position: relative;
}

@media screen and (max-width: 767px) {
  .contact .contact_txt .contact-tel {
    font-size: 34px;
    padding: 0 0 20px 60px;
  }
}

.contact .contact_txt .contact-tel a {
  color: #fff;
  font-weight: bold;
}

.contact .contact_txt .contact-tel span {
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .contact .contact_txt .contact-tel span {
    font-size: 14px;
  }
}

.contact .contact_txt .contact-tel:before {
  content: url(../img/contact_tel-img.png);
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
}

.contact .contact_txt p {
  font-size: 21px;
}

.footer {
  background-color: #282828;
  padding: 5em 1rem 3em 1rem;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 3em 1rem 3em 1rem;
  }
}

.footer .footer-wrap {
  max-width: 1200px;
  margin: auto;
  border-bottom: 1px solid #707070;
  padding-bottom: 1em;
}

@media screen and (min-width: 768px) {
  .footer .footer-wrap {
    display: flex;
    padding-bottom: 7em;
  }
}

.footer .footer-company {
  min-width: 320px;
  margin-right: 2em;
}

@media screen and (min-width: 1200px) {
  .footer .footer-company {
    margin-right: 7em;
  }
}

@media screen and (max-width: 767px) {
  .footer .footer-company {
    margin-bottom: 2em;
  }
}

.footer .footer-company p {
  color: #d2d2d2;
  line-height: 1.4;
}

.footer .footer-company .footer-tel {
  color: #fff;
  font-size: 21px;
}

.footer .footer-logo {
  margin-bottom: 20px;
  max-width: fit-content;
}

.footer .footer-nav {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .footer .footer-nav li {
    margin-bottom: 20px;
  }
}

.footer .footer-nav .footer-nav-title {
  font-size: min(4.4vw, 21px);
  margin-bottom: 10px;
}

.footer .footer-nav .footer-nav-title a {
  color: #fff;
}

.footer .footer-nav .footer-nav-sub {
  font-size: 14px;
  margin-bottom: 10px;
}

.footer .footer-nav .footer-nav-sub a {
  color: #d2d2d2;
  position: relative;
}

.footer .footer-nav .footer-nav-sub a:after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  bottom: -3px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}

.footer .footer-nav .footer-nav-sub a:hover:after {
  transform: scale(1, 1);
}

@media screen and (min-width: 768px) {
  .footer .footer-nav ul {
    display: flex;
    justify-content: space-between;
  }
}

.footer .footer-nav ul li {
  margin-right: 1em;
}

.footer .footer-nav ul li:last-of-type {
  margin-right: 0;
}

.footer .footer-copy {
  max-width: 1200px;
  margin: auto;
  padding-top: 1.5em;
}

@media screen and (min-width: 768px) {
  .footer .footer-copy {
    display: flex;
    justify-content: space-between;
  }
}

.footer .footer-copy ul {
  display: flex;
}

@media screen and (max-width: 767px) {
  .footer .footer-copy ul {
    margin-bottom: 1rem;
  }
}

.footer .footer-copy ul li {
  border-right: 1px solid #fff;
  padding-left: 10px;
}

.footer .footer-copy ul li a {
  color: #fff;
}

.footer .footer-copy ul li:first-of-type {
  padding-right: 10px;
  padding-left: 0;
}

.footer .footer-copy ul li:last-of-type {
  border: unset;
}

.footer .footer-copy p {
  font-size: 12px;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-200px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fadeUpTrigger,
.fadeLeftTrigger {
  opacity: 0;
}

.main-visual .fadeUp {
  animation-delay: 0.4s;
}

.main-visual .fadeUp.delay1 {
  animation-delay: 0.7s;
}

.main-visual .fadeUp.delay2 {
  animation-delay: 1s;
}

.main-visual .fadeUp.delay3 {
  animation-delay: 1.3s;
}

.slide-title.fadeUp {
  animation-name: fadeUpAnime2;
  animation-delay: 1.6s;
}

@keyframes fadeUpAnime2 {
  from {
    opacity: 0;
    transform: translate(-50%, 200px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.top-concept_wrap .fadeLeft {
  animation-delay: 0.4s;
}

.button-design1.fadeLeft {
  animation-delay: 0.4s;
}

.top-feature .fadeLeft {
  animation-delay: 0.4s;
}

.top-feature .fadeUp {
  animation-delay: 0.7s;
}

.top-feature .fadeUp.delay1 {
  animation-delay: 1s;
}

.top-feature .fadeUp.delay2 {
  animation-delay: 1.3s;
}

@media (max-width: 767px) {

  .top-feature .fadeUp.delay1,
  .top-feature .fadeUp.delay2,
  .top-feature .button-design1.fadeUp.delay2 {
    animation-delay: 1s;
  }
}

.top-feature .button-design1.fadeLeft {
  animation-delay: 0.4s;
}

.top-product .fadeUp {
  animation-delay: 0.4s;
}

.top-product .fadeUp.delay1 {
  animation-delay: 0.7s;
}

.top-product .button-design1.fadeLeft {
  animation-delay: 0.4s;
}

.top-equipment .fadeUp {
  animation-delay: 0.7s;
}

.top-equipment .fadeUp.delay1 {
  animation-delay: 1s;
}

.top-equipment .fadeUp.delay2 {
  animation-delay: 1.3s;
}

.top-equipment .fadeUp.delay3 {
  animation-delay: 1.6s;
}

@media (max-width: 767px) {

  .top-equipment .fadeUp.delay3,
  .top-equipment .fadeUp.delay3 {
    animation-delay: 1s;
  }
}

.top-equipment .button-design1.fadeLeft {
  animation-delay: 0.4s;
}

.top-news .fadeUpTrigger {
  animation-delay: 0.4s;
}

.top-column .fadeUpTrigger {
  animation-delay: 0.4s;
}

.contact .fadeUpTrigger {
  animation-delay: 0.4s;
}

.mask-wrap {
  display: table;
  overflow: hidden;
}

.mask-wrap .mask {
  display: table;
  position: relative;
  margin-bottom: 0.25em;
  left: -100%;
  overflow: hidden;
}

@media (max-width:767px) {
  .mask-wrap .mask {
    margin-bottom: 0;
  }
}

.mask-wrap .mask-bg {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #09517e;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin-bottom: 80px;
}

@media (max-width: 767px) {
  .breadcrumb {
    margin-bottom: 2em;
  }
}

@media (max-width: 767px) {
  .breadcrumb li {
    padding: 0;
  }
}

.breadcrumb li:not(:last-of-type)::after {
  content: ">";
  margin: 0 0.6em;
  color: #777;
}

.breadcrumb a {
  color: inherit;
  text-decoration: none;
}

#mainstagecontents {
  background: unset;
}

@keyframes lum-fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes lum-fadeZoom {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes lum-loader-rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0);
  }

  50% {
    transform: translate(-50%, -50%) rotate(-180deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes lum-loader-before {
  0% {
    transform: scale(1);
  }

  10% {
    transform: scale(1.2) translateX(6px);
  }

  25% {
    transform: scale(1.3) translateX(8px);
  }

  40% {
    transform: scale(1.2) translateX(6px);
  }

  50% {
    transform: scale(1);
  }

  60% {
    transform: scale(0.8) translateX(6px);
  }

  75% {
    transform: scale(0.7) translateX(8px);
  }

  90% {
    transform: scale(0.8) translateX(6px);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes lum-loader-after {
  0% {
    transform: scale(1);
  }

  10% {
    transform: scale(1.2) translateX(-6px);
  }

  25% {
    transform: scale(1.3) translateX(-8px);
  }

  40% {
    transform: scale(1.2) translateX(-6px);
  }

  50% {
    transform: scale(1);
  }

  60% {
    transform: scale(0.8) translateX(-6px);
  }

  75% {
    transform: scale(0.7) translateX(-8px);
  }

  90% {
    transform: scale(0.8) translateX(-6px);
  }

  100% {
    transform: scale(1);
  }
}

.lum-lightbox {
  background: rgba(0, 0, 0, 0.6);
}

.lum-lightbox-inner {
  top: 2.5%;
  right: 2.5%;
  bottom: 2.5%;
  left: 2.5%;
}

.lum-lightbox-inner img {
  position: relative;
}

.lum-lightbox-inner .lum-lightbox-caption {
  margin: 0 auto;
  color: #fff;
  max-width: 700px;
  text-align: center;
}

.lum-loading .lum-lightbox-loader {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 66px;
  height: 20px;
  animation: lum-loader-rotate 1800ms infinite linear;
}

.lum-lightbox-loader:before,
.lum-lightbox-loader:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  margin-top: -10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
}

.lum-lightbox-loader:before {
  left: 0;
  animation: lum-loader-before 1800ms infinite linear;
}

.lum-lightbox-loader:after {
  right: 0;
  animation: lum-loader-after 1800ms infinite linear;
  animation-delay: -900ms;
}

.lum-lightbox.lum-opening {
  animation: lum-fade 180ms ease-out;
}

.lum-lightbox.lum-opening .lum-lightbox-inner {
  animation: lum-fadeZoom 180ms ease-out;
}

.lum-lightbox.lum-closing {
  animation: lum-fade 300ms ease-in;
  animation-direction: reverse;
}

.lum-lightbox.lum-closing .lum-lightbox-inner {
  animation: lum-fadeZoom 300ms ease-in;
  animation-direction: reverse;
}

.lum-img {
  transition: opacity 120ms ease-out;
}

.lum-loading .lum-img {
  opacity: 0;
}

.lum-gallery-button {
  overflow: hidden;
  text-indent: 150%;
  white-space: nowrap;
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  outline: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 100px;
  max-height: 100%;
  width: 60px;
  cursor: pointer;
}

.lum-close-button {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 32px;
  height: 32px;
  opacity: 0.3;
}

.lum-close-button:hover {
  opacity: 1;
}

.lum-close-button:before,
.lum-close-button:after {
  position: absolute;
  left: 15px;
  content: " ";
  height: 33px;
  width: 2px;
  background-color: #fff;
}

.lum-close-button:before {
  transform: rotate(45deg);
}

.lum-close-button:after {
  transform: rotate(-45deg);
}

.lum-previous-button {
  left: 12px;
}

.lum-next-button {
  right: 12px;
}

.lum-gallery-button:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: 36px;
  height: 36px;
  border-top: 4px solid rgba(255, 255, 255, 0.8);
}

.lum-previous-button:after {
  transform: translateY(-50%) rotate(-45deg);
  border-left: 4px solid rgba(255, 255, 255, 0.8);
  box-shadow: -2px 0 rgba(0, 0, 0, 0.2);
  left: 12%;
  border-radius: 3px 0 0 0;
}

.lum-next-button:after {
  transform: translateY(-50%) rotate(45deg);
  border-right: 4px solid rgba(255, 255, 255, 0.8);
  box-shadow: 2px 0 rgba(0, 0, 0, 0.2);
  right: 12%;
  border-radius: 0 3px 0 0;
}

/* This media query makes screens less than 460px wide display in a "fullscreen"-esque mode. Users can then scroll around inside the lightbox to see the entire image. */
@media (max-width: 460px) {
  .lum-lightbox-image-wrapper {
    display: flex;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .lum-lightbox-caption {
    width: 100%;
    position: absolute;
    bottom: 0;
  }

  /* Used to centre the image in the container, respecting overflow: https://stackoverflow.com/a/33455342/515634 */
  .lum-lightbox-position-helper {
    margin: auto;
  }

  .lum-lightbox-inner img {
    max-width: none;
    max-height: none;
  }
}

.table_design01 {
  border-collapse: collapse;
  width: 100%;
}

.table_design01 th,
.table_design01 td {
  border: 2px solid #fff;
  background-color: #e6f1f6;
  padding: 1em;
  font-size: 18px;
}

@media screen and (max-width: 767px) {

  .table_design01 th,
  .table_design01 td {
    display: block;
  }
}

.table_design01 th {
  background-color: #1e52a6;
  color: #fff;
  font-weight: bold;
  text-align: center;
  width: 20%;
  min-width: 4em;
}

@media screen and (max-width: 767px) {
  .table_design01 th {
    width: 100%;
  }
}

.timeline {
  width: 100%;
  margin: 28px auto;
  border: 1px solid #eeeeee;
}

.timeline-list {
  padding: 40px 0;
}

.timeline-list-item {
  display: flex;
  line-height: 1.5;
  font-size: 16px;
}

.timeline-list-item .date {
  width: 20%;
  padding: 0 0 0 20px;
  color: #888888;
  font-weight: bold;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .timeline-list-item .date {
    width: 30%;
    padding: 0 0 0 10px;
  }
}

.timeline-list-item .content {
  position: relative;
  width: 80%;
  padding: 0 20px 60px 30px;
  border-left: 1px solid #aaaaaa;
  line-height: 1;
}

.timeline-list-item .content::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10px;
  width: 20px;
  height: 20px;
  background-color: #1E52A6;
  border-radius: 10px;
}

.facility__top {
  background-position: right;
  background: url(../img/facility_back-img.png) no-repeat center left/cover;
  padding: 3em 0;
}

.facility__top .facility__title {
  font-size: clamp(26px, 4.4vw, 38px);
  line-height: 1.4;
  margin-bottom: 30px;
  font-weight: bold;
  letter-spacing: -3px;
  color: #3c3c3c;
}

.facility__top .facility__title span {
  position: relative;
  display: inline-block;
  background: linear-gradient(transparent 60%, #ffff66 60%);
}

.facility__top p {
  line-height: 1.8;
}

.contact__box {
  position: relative;
  margin-top: 2em;
}

.contact__box__tel {
  display: block;
}

.contact__title-en {
  position: relative;
}

.contact-under .button-design3 a {
  border: 1px solid #09517e;
  line-height: 1;
}

.contact-under .title-border {
  margin-bottom: 20px;
  font-size: 28px;
  color: #3c3c3c;
}

@media screen and (max-width: 767px) {
  .contact-under .title-border {
    margin-bottom: 15px;
    font-size: 21px;
  }
}

.contact-under .button-design3 a:hover {
  background-color: #fff;
  color: #09517e;
}

.contact-under .contact-under_title {
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .contact-under .contact-under_title {
    width: 48%;
    margin-right: 1%;
  }
}

.contact-under .contact-under_title p {
  font-size: 18px;
  line-height: 2;
}

.contact-under .contact-under_txt .contact-tel {
  margin-top: 10px;
  padding: 0 0 5px 60px;
  font-size: 52px;
  line-height: 27px;
  position: relative;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .contact-under .contact-under_txt .contact-tel {
    font-size: 31px;
    padding: 0 0 20px 40px;
    margin-bottom: 10px;
  }
}

.contact-under .contact-under_txt .contact-tel a {
  color: #09517e;
  font-weight: bold;
}

.contact-under .contact-under_txt .contact-tel span {
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .contact-under .contact-under_txt .contact-tel span {
    font-size: 12px;
    display: block;
    margin-top: 10px;
    line-height: 1.4;
  }
}

.contact-under .contact-under_txt .contact-tel:before {
  content: "";
  background-image: url(../img/contact_tel-img_color.png);
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
  background-size: contain;
}

@media screen and (max-width: 767px) {
  .contact-under .contact-under_txt .contact-tel:before {
    width: 30px;
    height: 30px;
  }
}

.contact-under .contact-under_txt p {
  font-size: 31px;
  font-weight: bold;
}

.mintyo {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

hr.style-one {
  border: 0;
  height: 2px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(172, 172, 172, 0.75), rgba(0, 0, 0, 0));
}

.l-height {
  line-height: 1.8;
}

.equipment-introduction__title {
  font-size: clamp(21px, 4.4vw, 34px);
  font-weight: bold;
  color: #09517e;
  margin-bottom: 5px;
}

.contact-form form {
  margin: auto;
  padding: 4em 2em 1em 2em;
  background: #eee;
}

.contact-form .form-title {
  text-align: center;
  font-size: clamp(24px, 4.4vw, 42px);
  margin-bottom: 50px;
  position: relative;
  background: #0a517e;
  padding: 10px 35px;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .contact-form .form-title {
    margin-bottom: 15px;
  }
}

.contact-form .form-title:before {
  /* position: absolute;
  bottom:-10px;
  left:50%;
  transform: translateX(-50%);
  content:'';
  width:70px;
  height:4px;
  border-radius:10px;
  background-color: #b2241f; */
}

.contact-form .submit-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0;
}

.contact-form .submit-list {
  width: 50%;
  text-align: center;
}

.contact-form {
  margin: 0 auto;
}

.contact-form .form-row {
  display: flex;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid #d2d2d2;
}

.contact-form .form-row:last-child {
  border-bottom: none;
}

.contact-form .form-label {
  display: flex;
  align-items: center;
  width: 35%;
  margin-right: 2em;
  justify-content: space-between;
  font-size: 16px;
}

@media (max-width:767px) {
  .contact-form .form-label {
    margin-right: 0;
  }
}

.contact-form .form-content {
  width: 60%;
}

.contact-form .form-content .sub-txt {
  font-size: 14px;
  color: #717171;
}

.contact-form .form-label span {
  margin-left: 10px;
  padding: 3px 9px;
  font-size: 13px;
  color: #fff;
  background-color: #b2241f;
}

/* フォームパーツのデザイン */
.contact-form input,
.contact-form textarea {
  background: #fff;
  border: 2px solid #858585 !important;
  border: none;
  padding: 15px 20px;
  font-size: 16px;
  color: #333;
  flex-grow: 1;
  box-sizing: border-box;
  font-size: 18px;
}

.contact-form textarea {
  width: 100%;
  min-height: 200px;
  font-family: "Noto Sans JP";
}

.contact-form input.w-155,
.contact-form textarea.w-155 {
  min-width: 155px;
}

.contact-form input.max-width,
.contact-form textarea.max-width {
  width: 100%;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #999;
  font-size: 16px;
}

.contact-form a[target=_blank] {
  color: #09517e;
  display: block;
  width: fit-content;
}

.contact-form a[target=_blank]::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-size: 100%;
  content: "\f35d";
  margin: 0 0 0 10px;
}

.contact-form select {
  background-color: #fff;
  border: 2px solid #858585 !important;
  border-radius: 3px;
  padding: 15px 10px;
  font-size: 16px;
  color: #333;
  min-width: 120px;
  max-width: 120px;
  text-align: center;
}

/* ラジオボタン */
input[type=radio] {
  display: none;
}

.radio__item {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 30px;
  position: relative;
  width: auto;
  line-height: 1.6;
}

.radio__item::before {
  background: #EFEFEF;
  border: 1px solid #CCCCCC;
  border-radius: 50%;
  content: "";
  display: block;
  height: 16px;
  left: 5px;
  margin-top: -8px;
  position: absolute;
  top: 16px;
  width: 16px;
}

.radio__item::after {
  background: #09517e;
  border-radius: 50%;
  content: "";
  display: block;
  height: 10px;
  left: 9px;
  margin-top: -5px;
  opacity: 0;
  position: absolute;
  top: 17px;
  width: 10px;
}

input[type=radio]:checked+.radio__item::before {
  border-color: #666;
}

input[type=radio]:checked+.radio__item::after {
  opacity: 1;
}

/* チェックボックス */
input[type=checkbox] {
  display: none;
}

.checkbox__item {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 10px 5px 30px;
  position: relative;
  width: auto;
  line-height: 1.6;
}

.tandem .checkbox__item {
  width: 100%;
}

.checkbox__item::before {
  background: #EFEFEF;
  border: 1px solid #CCC;
  content: "";
  display: block;
  height: 16px;
  left: 5px;
  margin-top: -8px;
  position: absolute;
  top: 16px;
  width: 16px;
}

input[type=checkbox]:checked+.checkbox__item::before {
  background: #09517e;
  border: #09517e 1px solid;
}

.checkbox__item::after {
  opacity: 0;
  border-right: 2px solid #FFF;
  border-bottom: 2px solid #FFF;
  content: "";
  display: block;
  height: 9px;
  left: 10px;
  margin-top: -7px;
  opacity: 0;
  position: absolute;
  top: 16px;
  transform: rotate(45deg);
  width: 5px;
}

input[type=checkbox]:checked+.checkbox__item::after {
  opacity: 1;
}

.contact-form button {
  cursor: pointer;
  padding: 15px 45px;
  border: none;
  border-radius: 3px;
  color: #fff;
  font-size: 21px;
  background-color: #0a517e;
  position: relative;
  width: 90%;
  max-width: 380px;
  box-sizing: border-box;
  transition: all 0.4s;
}

.contact-form button:before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  right: 20px;
  transition: all 0.4s;
}

.contact-form button:hover {
  background-color: #b2241f;
}

.contact-form button:hover:before {
  right: 15px;
}

@media (max-width: 767px) {
  .contact-form form {
    padding: 2em 1em;
  }

  .contact-form .form-row {
    display: block;
  }

  .contact-form .form-label {
    width: 100%;
    margin-bottom: 10px;
  }

  .contact-form .form-content {
    width: 100%;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 16px;
    padding: 15px 15px;
  }

  .contact-form select {
    font-size: 16px;
    width: 100%;
    padding: 15px 10px;
  }

  .contact-form .submit-box {
    display: block;
  }

  .contact-form .submit-list {
    width: 100%;
    margin-bottom: 10px;
  }

  .contact-form .submit-list:last-of-type {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .contact-form .submit-list:first-child {
    order: 2;
  }

  .contact-form .submit-list:nth-child(2) {
    order: 1;
  }
}

.messageBox.errorMessage {
  color: red;
  display: block;
}

.messageBox.OKMessage {
  color: green;
  display: block;
}

.messageBox {
  font-size: 1.5rem;
  margin-top: 3px;
}

p span.text-border {
  background: linear-gradient(transparent 60%, #ffff66 60%);
  font-weight: bold;
}

#column .column-sub_title02 {
  position: relative;
  padding: 10px 10px 10px 20px;
  font-weight: bold;
  color: #000;
  font-size: 21px;
}

#column .column-sub_title02:before {
  position: absolute;
  content: "";
  top: calc(50% + 1px);
  left: 0;
  transform: translateY(-50%) rotate(45deg);
  border-top: 4px solid #000;
  border-right: 4px solid #000;
  width: 10px;
  height: 10px;
}

.hr-design01 {
  position: relative;
  height: 1px;
  border-width: 0;
  background-image: -webkit-linear-gradient(left, transparent 0%, #828282 50%, transparent 100%);
  background-image: linear-gradient(90deg, transparent 0%, #828282 50%, transparent 100%);
}

#recruit002 {
  background-color: #f4f4f4;
}

@media screen and (min-width: 768px) {
  #recruit002 {
    clip-path: polygon(0 0, 100% 9%, 100% 100%, 0 100%);
    margin-top: -110px;
    padding-top: 30px;
  }
}

.RecruitContents1__inner p {
  font-size: 16px;
  line-height: 1.8;
}

.RecruitContents1__inner .title-design1 {
  font-size: clamp(36px, 4vw, 72px);
}

@media screen and (min-width: 768px) {
  .RecruitContents1__wrap {
    display: flex;
    flex-direction: row-reverse;
  }
}

@media screen and (min-width: 768px) {
  .RecruitContents1__wrap.reverse {
    flex-direction: unset;
  }
}

@media screen and (min-width: 768px) {
  .RecruitContents1__img {
    width: 45%;
    clip-path: polygon(0 0, 100% 0, 83% 100%, 0% 100%);
  }
}

@media screen and (min-width: 768px) {
  .RecruitContents1__img img {
    min-height: 890px;
    object-fit: cover;
  }
}

@media screen and (min-width: 768px) {
  .RecruitContents1__img img.recruit-img002 {
    min-height: 1200px;
    object-fit: cover;
  }
}

@media screen and (min-width: 768px) {
  .RecruitContents1__wrap.reverse .RecruitContents1__img {
    width: 45%;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 11% 100%);
  }
}

.RecruitContents1__contents {
  padding: 2em 1em;
}

.RecruitContents1__contents p {
  max-width: 800px;
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.8;
}

@media screen and (max-width: 1499px) {
  .RecruitContents1__contents p {
    max-width: 700px;
  }
}

@media screen and (max-width: 767px) {
  .RecruitContents1__contents p {
    font-size: 16px;
  }
}

@media screen and (min-width: 768px) {
  .RecruitContents1__contents {
    width: 55%;
    padding: clamp(2em, 6vw, 7em) 3em 0 clamp(1em, 5vw, 8em);
  }
}

.RecruitContents1__contents .more-btn {
  border: 1px solid #000;
  padding: 10px 10px 14px 10px;
  display: block;
  max-width: 160px;
  text-align: center;
  font-size: clamp(16px, 1.1vw, 18px);
  color: #000;
  transition: 0.3s ease-in-out;
}

.RecruitContents1__contents .more-btn:hover {
  background-color: #085082;
  color: #fff;
  border: 1px solid transparent;
}

@media screen and (min-width: 768px) {
  .RecruitContents1__wrap.reverse .RecruitContents1__contents {
    padding: clamp(2em, 6vw, 7em) 1.5em 0 clamp(1em, 5vw, 8em);
  }
}

.RecruitContents2__inner {
  padding: 135px 0 60px 0;
  background-color: #fbfbfb;
  margin-top: -135px;
  position: relative;
  background: url(../img/test2.png) no-repeat center center/cover #f9f9f9;
  background-attachment: fixed;
}

@media screen and (min-width: 768px) {
  .RecruitContents2__inner {
    clip-path: polygon(0 135px, 100% 0, 100% 100%, 0% 100%);
  }
}

@media screen and (max-width: 767px) {
  .RecruitContents2__inner {
    margin-top: 0;
    padding: 65px 0 60px 0;
    background: url(../img/test2_sp.png) no-repeat center center/cover #f9f9f9;
  }
}

.RecruitContents2__inner p {
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.8;
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .RecruitContents2__inner p {
    font-size: 16px;
  }
}

.RecruitContents2__title {
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
  font-size: 38px;
  font-weight: bold;
  color: #085082;
  letter-spacing: 5px;
  z-index: 10;
  text-shadow: 1px 1px 0px #ffffff, -1px 1px 0px #ffffff, 1px -1px 0px #ffffff, -1px -1px 0px #ffffff, 1px 0px 0px #ffffff, 0px 1px 0px #ffffff, -1px 0px 0px #ffffff, 0px -1px 0px #ffffff;
}

.RecruitContents2__title:before {
  content: "";
  width: 50px;
  height: 1px;
  background-color: #d29e21;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.RecruitContents2__wrap {
  max-width: 1200px;
  margin: auto;
  position: relative;
}

@media screen and (max-width: 767px) {
  .RecruitContents2__wrap .facility_table {
    border: none;
    box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.3019607843);
  }
}

.RecruitContents2__wrap .facility_table th {
  font-size: clamp(16px, 1.1vw, 18px);
  padding: 2em;
  vertical-align: middle;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .RecruitContents2__wrap .facility_table th {
    width: 100%;
    display: block;
    border: none;
    padding: 1em;
  }
}

.RecruitContents2__wrap .facility_table td {
  font-size: clamp(16px, 1.1vw, 18px);
  padding: 2em;
  text-align: left;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .RecruitContents2__wrap .facility_table td {
    width: 100%;
    display: block;
    border: none;
    padding: 1em;
  }
}

.RecruitContents2__wrap .recruit__sub-icon {
  position: absolute;
  bottom: unset;
  top: 0;
  right: 0;
  max-width: 270px;
}

@media screen and (min-width: 1400px) {
  .RecruitContents2__wrap .recruit__sub-icon {
    top: unset;
    bottom: -60px;
    right: -120px;
  }
}

@media screen and (max-width: 767px) {
  .RecruitContents2__wrap .recruit__sub-icon {
    opacity: 0.4;
    max-width: 250px;
  }
}

.Recruit__sub-title {
  font-size: clamp(21px, 2.4vw, 30px);
}

ul.recruit-list {
  padding-left: 1.8rem;
  background: #fff;
  padding: 2em 3em 2em 3em;
  border-radius: 0px;
}

@media screen and (max-width: 767px) {
  ul.recruit-list {
    padding: 1.5em 1.5em 1.5em 2.5em;
  }
}

ul.recruit-list li {
  list-style-type: disc;
  font-size: clamp(16px, 1.1vw, 18px);
  margin-bottom: 15px;
  position: relative;
}

ul.recruit-list li:last-of-type {
  margin-bottom: 0;
}

.logo-lead {
  font-size: 0.9em;
  margin-bottom: 1em;
  color: #0f649a;
}

/* 20241015ヘッダ変更 */
.header_inner {
  max-width: 1300px;
}

.logo-lead {
  font-size: 0.8em;
  width: max-content;
  white-space: nowrap;
  margin-right: 1em;
  margin-bottom: 0;
}

.header-contents {
  align-items: baseline;
}

.header-mail {
  width: fit-content;
  padding-right: 5px;
  display: inline-block;
  margin-top: auto;
  padding-bottom: 5px;
}

.sp-mail-button {
  display: none;
}

@media screen and (max-width: 999px) {
  .header_inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .logo-lead {
    width: 100vw;
    margin: 0 20px 40px;
  }

  .sp-mail-button {
    display: block;
    width: 170px;
    position: absolute;
    z-index: 3;
    top: 60%;
    transform: translateY(-50%);
    right: 100px;
  }
}

/* 微細加工ボタンのホバー効果 */
.works-box .text a[href*="microwire"]:hover {
  background-color: #083d5f !important;
  box-shadow: 0 2px 8px rgba(10, 81, 126, 0.3);
  text-decoration: none !important;
}

/* 加工事例ドロップダウンメニュー用のカスタムスタイル */

/* ドロップダウンメニューを持つ親要素 */
#global_navi ul li.has-dropdown {
    position: relative !important;
}

/* ドロップダウンの親テキスト（「加工事例」） */
#global_navi ul li.has-dropdown .dropdown-parent {
    cursor: pointer !important;
    display: inline-block !important;
    padding: 0 !important;
    color: #17699d !important; /* 他のGナビメニューと同じ色に明示的に指定 */
}

/* ドロップダウンメニュー本体 */
#global_navi ul li.has-dropdown .dropdown-menu {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background-color: #0a517e !important;
    min-width: 200px !important;
    list-style: none !important;
    padding: 10px 0 !important;
    margin: 0 !important;
    z-index: 1000 !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
}

/* ホバー時にメニューを表示 */
#global_navi ul li.has-dropdown:hover .dropdown-menu {
    display: block !important;
}

/* ドロップダウンメニュー内のリスト項目 */
#global_navi ul li.has-dropdown .dropdown-menu li {
    width: 100% !important;
    text-align: center !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* ドロップダウンメニュー内のリンク */
#global_navi ul li.has-dropdown .dropdown-menu li a {
    display: block !important;
    padding: 10px 20px !important;
    color: #ffffff !important;
    text-decoration: none !important;
    transition: background-color 0.3s ease !important;
}

/* ドロップダウンメニュー内のリンクホバー */
#global_navi ul li.has-dropdown .dropdown-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
}

/* === スマホ版のみ：ドロップダウン内「加工事例」「微細加工」が白背景に白文字で見えないため文字色を変更（PC表示には影響なし） === */
@media screen and (max-width: 767px) {
    #global_navi ul li.has-dropdown .dropdown-menu li a {
        color: #17699d !important;
    }
}

/* 微細加工セクションの詳細ボタン */
.detail-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #0a517e;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 20px;
}

.detail-button:hover {
    background-color: #17699d;
    transform: translateY(-2px);
}

.detail-button::after {
    content: ' >';
    margin-left: 8px;
}

/* ============================================================
   申込の流れ（flow）ページ専用 ※既存配色・余白規約を踏襲
   ============================================================ */
#flowPage section {
  margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
  #flowPage section {
    margin-bottom: 50px;
  }
}

/* 導入 */
.flow-intro {
  text-align: center;
}

.flow-intro .title-design3 {
  text-align: center;
}

.flow-intro .button-design3.btn-center a {
  margin: 0 auto;
}

/* お悩み */
.flow-worry {
  text-align: center;
}

.flow-worry__list {
  list-style: none;
  margin: 45px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}

.flow-worry__list li {
  position: relative;
  flex: 1 1 260px;
  max-width: 330px;
  margin: 0;
  padding: 26px 22px;
  background: #f3f7fa;
  border: 1px solid #d9e4ec;
  border-radius: 12px;
  font-size: 17px;
  font-weight: bold;
  line-height: 1.7;
  color: #1b1b1b;
}

.flow-worry__image {
  margin: 34px auto 0;
  max-width: 720px;
  text-align: center;
}

.flow-worry__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.flow-worry__arrow {
  position: relative;
  width: 58px;
  height: 58px;
  margin: 34px auto 28px;
  border-radius: 50%;
  background: #d29e21;
  box-shadow: 0 6px 16px rgba(210, 158, 33, .38);
  font-size: 0;
  animation: flowWorryArrowBounce 1.6s ease-in-out infinite;
}

.flow-worry__arrow::after {
  content: "";
  position: absolute;
  top: 43%;
  left: 50%;
  width: 17px;
  height: 17px;
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;
  border-radius: 2px;
  transform: translate(-50%, -50%) rotate(45deg);
}

@keyframes flowWorryArrowBounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(7px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .flow-worry__arrow {
    animation: none;
  }
}

.flow-worry__lead {
  position: relative;
  display: inline-block;
  margin: 0;
  padding-bottom: 14px;
  font-size: 32px;
  font-weight: bold;
  color: #09517e;
}

.flow-worry__lead::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: #d29e21;
}

@media screen and (max-width: 768px) {
  .flow-worry__list {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .flow-worry__list li {
    width: 100%;
    max-width: 360px;
  }

  .flow-worry__image {
    max-width: 360px;
    margin-top: 26px;
  }

  .flow-worry__image img {
    border-radius: 10px;
  }

  .flow-worry__lead {
    font-size: 25px;
  }
}

/* ご依頼から納品までの流れ（俯瞰図） */
.flow-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.flow-steps__item {
  position: relative;
  width: calc((100% - 80px) / 5);
  min-height: 120px;
  border: none;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 22px 10px;
  background: linear-gradient(160deg, #0a6ba8, #09517e);
  box-shadow: 0 5px 14px rgba(9, 81, 126, .22);
}

/* 矢印（最後の項目以外の右側に表示） */
.flow-steps__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  border-style: solid;
  border-width: 8px 0 8px 10px;
  border-color: transparent transparent transparent #d29e21;
}

.flow-steps__num {
  display: block;
  color: #f3c14b;
  font-family: "Poppins";
  font-weight: bold;
  font-size: 17px;
  letter-spacing: .04em;
  margin-bottom: 8px;
}

.flow-steps__icon {
  display: block;
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
  color: #fff;
}

.flow-steps__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.flow-steps__label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8em;
  color: #fff;
  font-weight: bold;
  line-height: 1.4;
}

.flow-overview__note {
  text-align: center;
  margin-top: 20px;
  color: #1b1b1b;
}

@media screen and (max-width: 767px) {
  .flow-steps {
    gap: 14px;
  }

  .flow-steps__item {
    width: calc((100% - 14px) / 2);
    min-height: 100px;
  }

  /* SP時は矢印を下向きに */
  .flow-steps__item:not(:last-child)::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -12px;
    transform: translateX(-50%);
    border-width: 10px 8px 0 8px;
    border-color: #d29e21 transparent transparent transparent;
  }
}

/* 各ステップ詳細（works-box を流用、STEP番号色を調整） */
.flow-detail .works-box .text h4 small {
  color: #d29e21;
}

/* よくある質問 */
.flow-faq .button-design3.btn-center {
  margin-bottom: 40px;
}

.flow-faq .button-design3.btn-center a {
  margin: 0 auto;
}

.flow-faq__list {
  margin: 0;
}

.flow-faq__item {
  border: 1px solid #d6d6d6;
  border-radius: 6px;
  margin-bottom: 20px;
  overflow: hidden;
}

.flow-faq__q,
.flow-faq__a {
  position: relative;
  padding: 20px 25px 20px 60px;
  margin: 0;
  font-size: 18px;
  line-height: 1.9;
}

.flow-faq__q {
  background: #f3f7fa;
  font-weight: bold;
  color: #09517e;
}

.flow-faq__q::before,
.flow-faq__a::before {
  position: absolute;
  left: 22px;
  top: 18px;
  font-family: "Poppins";
  font-weight: bold;
  font-size: 20px;
}

.flow-faq__q::before {
  content: "Q.";
  color: #09517e;
}

.flow-faq__a::before {
  content: "A.";
  color: #d29e21;
}

@media screen and (max-width: 767px) {
  .flow-faq__q,
  .flow-faq__a {
    padding: 16px 18px 16px 48px;
  }

  .flow-faq__q::before,
  .flow-faq__a::before {
    left: 16px;
    font-size: 17px;
  }
}

/* 末尾CTA */
.flow-cta {
  text-align: center;
}

.flow-cta .button-design3.btn-center a {
  margin: 0 auto;
}

/* トップページ Concept セクション内 flow導線ボタン（2026-05-22） */
/* 「お申込みの流れはこちら」は11文字で既存ボタンより長く、矢印アイコンと
   被るため、.top-concept_txt 配下のボタンのみ横幅と右余白を拡大。
   セレクタを .top-concept_txt 配下に限定しているため他ボタンへの影響なし。 */
.top-concept_txt .button-design1 a {
  max-width: 320px;
  padding-right: 48px;
}