@charset "UTF-8";
:root {
  --easing: cubic-bezier(0.2, 1, 0.2, 1);
  --transition: 0.8s var(--easing);
  --color-base: #0c1210;
  --color-gray: #ddd;
  --color-theme: #b4e900;
  --color-theme-darken: #6e8f00;
  --color-text: #29292d;
  --box-shadow: 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.05),
  -0.8rem -0.8rem 1.2rem #fff;
  --box-shadow-hover: 1rem 1rem 1.5rem rgba(0, 0, 0, 0.08),
  -1rem -1rem 1.5rem #fff;
  --box-shadow-inset: inset 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.05),
  inset -0.8rem -0.8rem 1.2rem #fff;
  --box-shadow-dark: 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.1),
  -0.8rem -0.8rem 1.2rem rgba(#fff, 0.2);
}

/* ==========================================================================

	common style

========================================================================== */
html {
  font-size: 62.5%;
  font-family: "Wix Madefor Display", "Noto Sans JP", sans-serif;
}

body {
  font-size: 1.2rem;
  background: #ffffff;
  position: relative;
  color: #3c3d3d;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body.overflow {
  overflow: hidden;
}

main {
  position: relative;
  overflow: hidden;
}

input:-internal-autofill-selected {
  background-color: #fbfbfd !important;
}

a {
  color: #3c3d3d;
  text-decoration: none;
}

a:hover {
  transition: all 1s;
}

/* ==========================================================================

	loading

========================================================================== */
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    display: none;
    opacity: 0;
    z-index: -1;
  }
}
#loader {
  width: 100%;
  height: 100vh;
  background-color: #f5ce43;
  z-index: 999999;
  position: fixed;
}

#loader.loaded {
  animation: fadeOut 3s forwards;
  display: none;
  z-index: -1;
}

/* ==========================================================================

	splide

========================================================================== */
.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__arrow {
  align-items: center;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  height: 2em;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  z-index: 1;
}

.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__pagination {
  bottom: 0.5em;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: 0.7;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: #fff;
  transform: scale(1);
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}
.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

.splide__arrow > svg {
  display: none;
}

/* ==========================================================================

	animation

========================================================================== */
.hover-photo {
  vertical-align: top;
  transition: transform 1s cubic-bezier(0.5, 1, 0.89, 1);
  overflow: hidden;
  border-radius: 16px;
}
.hover-photo img {
  transform: scale(1);
  transition: transform 1s cubic-bezier(0.5, 1, 0.89, 1);
  vertical-align: bottom;
}
.hover-photo:hover img {
  transform: scale(1.08);
  transition: transform 1s cubic-bezier(0.5, 1, 0.89, 1);
}

.fadein {
  opacity: 0;
  transform: translate(0, 15px);
  transition: 0.8s linear;
}

.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.delay-100 {
  transition-delay: 100ms;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-300 {
  transition-delay: 300ms;
}

.delay-400 {
  transition-delay: 400ms;
}

.delay-1000 {
  transition-delay: 1000ms;
}

.display-none {
  display: none;
}

.opacity-0 {
  opacity: 0;
}

.linkanime,
.linkanime::after {
  transition: all 640ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.slidein {
  opacity: 0;
}

.slidein.is-active {
  opacity: 1;
  animation: slideIn 1.6s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

@keyframes slideIn {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
.matrix .bg-wrap,
.matrix .bg-wrap .inn {
  display: block;
}

.matrix .bg-wrap {
  overflow: hidden;
  opacity: 0;
}

.matrix .bg-wrap + .bg-wrap {
  margin-top: 10px;
}

.matrix .bg-wrap .inn {
  opacity: 0;
  transform: matrix(1, 0, 0, 1, 0, 100);
  transition: 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.matrix.is-active .bg-wrap {
  opacity: 1;
}

.matrix.is-active .bg-wrap .inn {
  opacity: 1;
  transform: matrix(1, 0, 0, 1, 0, 0);
}

.mask-bg {
  color: transparent;
  display: inline-block;
  font-size: 36px;
  font-weight: bold;
  font-family: "Wix Madefor Display", "Noto Sans JP", sans-serif;
  overflow: hidden;
  position: relative;
  transition: color 0ms 450ms;
}

.mask-bg::after {
  background: linear-gradient(to right, #362ae0 0%, #3b79cc 50%, #42d3ed 100%);
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(0, 100%);
}

.mask-bg.is-active {
  color: #362ae0;
}

.mask-bg.is-active::after {
  animation: mask-bg 1.2s cubic-bezier(0.8, 0, 0.17, 1);
}

@keyframes mask-bg {
  0% {
    transform: translate(0, 101%);
  }
  40%, 60% {
    transform: translate(0, 0%);
  }
  100% {
    transform: translate(0, -100%);
  }
}
@media only screen and (min-width: 769px) {
  .poyopoyo:hover {
    animation: poyopoyo 2s ease-out infinite;
    opacity: 1;
  }
}

@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}
.sticky {
  position: sticky;
  top: 10px;
  left: 0;
}

/* ==========================================================================

	header

========================================================================== */
.header {
  display: flex;
  position: fixed;
  width: 100%;
  height: 90px;
  top: 0;
  z-index: 10;
  margin: 0;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  z-index: 199999;
  padding: 0 4.8vw;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-radius: 0 0 16px 16px;
}
@media only screen and (max-width: 768px) {
  .header {
    padding: 10px 0px;
    margin: 0;
    width: 100%;
    display: block;
    height: 60px;
  }
}
.header__logo {
  padding: 0;
  width: 300px;
}
.header__logo .white {
  display: none;
}
@media only screen and (max-width: 1000px) {
  .header__logo {
    width: 200px;
  }
}
@media only screen and (max-width: 768px) {
  .header__logo {
    margin: 0 auto;
    width: 66%;
    max-width: 260px;
    position: absolute;
    top: 18px;
    left: 20px;
    z-index: 1000;
  }
  .header__logo .regular {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
  }
  .header__logo .white {
    display: block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
  }
}
.header__nav {
  list-style: none;
  margin: 3px 0 0 40px;
  width: calc(100% - 340px);
}
@media only screen and (max-width: 1000px) {
  .header__nav {
    width: calc(100% - 240px);
  }
}
@media only screen and (max-width: 768px) {
  .header__nav {
    display: none;
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    height: 100svh;
    padding: 90px 20px 50px;
    margin: 0;
    background: radial-gradient(161.6% 116.81% at 153.33% 82.16%, rgba(0, 88, 164, 0) 0%, rgba(0, 106, 184, 0.9) 85.9%, #006AB8 100%);
  }
  .header__nav::before {
    content: "";
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    height: 100%;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
  }
  .header__nav::after {
    content: "©Copyright Niikawa Building service co.,LTD.";
    position: absolute;
    bottom: 50px;
    right: 20px;
    color: #ffffff;
    letter-spacing: 1px;
    font-size: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .header__nav .nav {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
  }
}
.header__nav .nav .link_roll {
  position: relative;
  display: inline-block;
  outline: none;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.3);
  font-weight: 600;
}
@media only screen and (min-width: 769px) {
  .header__nav .nav .link_roll:hover,
  .header__nav .nav .link_roll:focus {
    outline: none;
  }
}
.header__nav ul {
  margin: 0px;
}
.header__nav ul li {
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 1px;
}
@media only screen and (max-width: 1000px) {
  .header__nav ul li {
    font-size: 1.1rem;
  }
}
@media only screen and (max-width: 768px) {
  .header__nav ul li {
    font-size: 1.7rem;
  }
  .header__nav ul li * {
    color: #ffffff;
  }
}
.header__nav ul li:not(:last-child) {
  margin: 0 20px 0 0;
  text-transform: none;
}
@media only screen and (max-width: 1000px) {
  .header__nav ul li:not(:last-child) {
    margin: 0 20px 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .header__nav ul li:not(:last-child) {
    margin: 0 0 20px 0;
  }
}
.header__nav .contact_btn {
  margin: 0 0 0 auto;
  padding: 14px 0;
  border-radius: 40px;
  width: 200px;
  text-align: center;
  color: #ffffff;
  font-size: 1.4rem;
  letter-spacing: 1px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background-size: 180% auto;
  background-image: linear-gradient(to right, #0058a4 0%, #5EFCE8 100%);
}
@media only screen and (max-width: 1000px) {
  .header__nav .contact_btn {
    width: 160px;
  }
}
@media only screen and (max-width: 768px) {
  .header__nav .contact_btn {
    width: 100%;
    margin: 40px 0 0;
    background-image: linear-gradient(to right, #2096e2 0%, #5EFCE8 100%);
  }
}
@media only screen and (min-width: 769px) {
  .header__nav .contact_btn:hover {
    background-position: right center;
  }
}
.header .hover-effect a {
  overflow: hidden;
}
.header .hover-effect a span {
  position: relative;
  display: inline-block;
  transition: transform 0.3s;
}
.header .hover-effect a span::before {
  position: absolute;
  top: 100%;
  content: attr(data-hover);
  font-weight: 600;
  transform: translate3d(0, 0, 0);
}
@media only screen and (min-width: 769px) {
  .header .hover-effect a:hover span,
  .header .hover-effect a:focus span {
    transform: translateY(-100%);
  }
}
.header .inner {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.header__burger {
  background-size: 100%;
  width: 3.1rem;
  height: 2.2rem;
  background-repeat: no-repeat;
}
.header__burger svg {
  width: 1rem;
  height: auto;
  margin: 0.8rem 0 0 0.8rem;
}

.overflow .header .nav {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
}
@media only screen and (max-width: 768px) {
  .overflow .header__logo .regular {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
  }
  .overflow .header__logo .white {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
  }
}

.header .has-child {
  cursor: pointer;
}
@media only screen and (max-width: 1050px) {
  .header .has-child::after {
    display: none;
  }
}
.header .has-child-title.active::after {
  transform: rotate(-180deg);
}
@media only screen and (min-width: 1051px) {
  .header .has-child:hover .menu__second-level {
    visibility: visible;
    opacity: 1;
    z-index: 100000;
  }
}
.header .inner {
  padding: 60px;
}
.header .inner .left {
  width: 300px;
  margin: 16px 0 0;
}
@media only screen and (max-width: 1200px) {
  .header .inner .left {
    width: 140px;
  }
}
.header .inner .left .ja {
  color: #3c3d3d;
  font-size: max(1.1vw, 22px);
  margin: 0 0 2px;
  font-weight: 600;
  letter-spacing: 1px;
  font-family: "Wix Madefor Display", "Noto Sans JP", sans-serif;
}
@media only screen and (max-width: 768px) {
  .header .inner .left .ja {
    font-size: 20px;
  }
}
.header .inner .left .en {
  color: #46b0d6;
  font-size: 12px;
}
.header .menu__second-level {
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  left: 20px;
  position: fixed;
  top: 100px;
  width: calc(100% - 40px);
  transition: 0.6s ease;
  visibility: hidden;
  opacity: 0;
  border-radius: 16px;
}
@media only screen and (max-width: 1050px) {
  .header .menu__second-level {
    position: relative;
    visibility: visible;
    opacity: 1;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0;
    display: none;
    margin: 10px 0 0;
    background: #0B318F;
    border-bottom: 0px solid #dddddd;
  }
}
.header .menu__second-level ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  width: calc(100% - 300px);
}
@media only screen and (max-width: 1200px) {
  .header .menu__second-level ul {
    width: calc(100% - 140px);
  }
}
.header .menu__second-level ul li {
  position: relative;
  padding: 16px 16px;
  color: #0058a4;
  font-size: max(0.8vw, 15px);
  border-bottom: 1px solid #a9d7ea;
  margin: 0 !important;
}
.header .menu__second-level ul li:after {
  content: "";
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 2px #0058a4;
  border-right: solid 2px #0058a4;
  position: absolute;
  top: 29px;
  right: 20px;
  margin-top: -4px;
  transform: rotate(45deg);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
@media screen and (max-width: 1500px) {
  .header .menu__second-level ul li:after {
    top: 26px;
  }
}
@media only screen and (min-width: 769px) {
  .header .menu__second-level ul li:hover:after {
    right: 10px;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  }
}
@media only screen and (max-width: 1050px) {
  .header .menu__second-level .second_nav {
    width: 100% !important;
    padding: 0 !important;
    background: #0B318F;
  }
  .header .menu__second-level .second_nav:after {
    display: none;
  }
}
.header .menu__second-level .second_nav .txt_box {
  z-index: 100;
}
.header .menu__second-level .second_nav .name {
  font-size: 16px;
  margin: 10px 0 0;
  text-align: center;
  color: #ffffff;
  font-weight: bold;
  font-family: "Wix Madefor Display", "Noto Sans JP", sans-serif;
}
@media only screen and (max-width: 1050px) {
  .header .menu__second-level .second_nav .name {
    font-size: 15px;
    color: #ffffff;
  }
}
.header .menu__second-level .second_nav .en {
  font-size: 10px;
  text-align: center;
  color: #ffffff;
}
@media only screen and (max-width: 1050px) {
  .header .menu__second-level .second_nav .en {
    color: #ffffff;
    font-size: 10px;
  }
}
@media only screen and (min-width: 1051px) {
  .header .menu__second-level .second_nav:hover img {
    opacity: 0.7;
    transition: 2s var(--easing);
  }
}

.menu-trigger {
  display: none;
}

@media only screen and (max-width: 768px) {
  .menu-trigger {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
    cursor: pointer;
  }
  .menu-trigger {
    position: absolute;
    top: 50%;
    right: 6px; /* Safari¨ */
    transform: translate(0, -50%);
    width: 50px;
    height: 37px;
    z-index: 2;
    margin: 0;
  }
  .menu-trigger:after, .menu-trigger:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: -3px;
    margin: auto;
    display: block;
    width: 50%;
    height: 0.1rem;
    content: "";
    background-color: #3c3d3d;
    transition: width 0.2s cubic-bezier(0.19, 1, 0.22, 1), top 0.2s cubic-bezier(0.19, 1, 0.22, 1), bottom 0.2s cubic-bezier(0.19, 1, 0.22, 1), transform 0.2s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .menu-trigger.active:after, .menu-trigger.active:before {
    background-color: #ffffff;
  }
  .menu-trigger:before {
    top: -0.6rem;
  }
  .menu-trigger:after {
    bottom: -0.6rem;
  }
  .menu-trigger.active:before {
    top: 0;
    width: 50%;
    transform: rotate(45deg);
  }
  .menu-trigger.active:after {
    bottom: 0;
    width: 50%;
    transform: rotate(-45deg);
  }
}
@media only screen and (max-width: 768px) {
  .head-animation {
    transform: translateY(-100%);
  }
}
@media only screen and (min-width: 769px) {
  header.is-animation .site_inner {
    height: 33px;
  }
}
/* ==========================================================================

	pagetop

========================================================================== */
.pagetop {
  content: "";
  display: inline-block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: absolute;
  top: -40px;
  right: 50px;
  background: #57c0c9;
  border: 2px solid #57c0c9;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 100;
}
.pagetop::after {
  content: "";
  width: 16px;
  height: 16px;
  border: 0;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  position: absolute;
  top: 50px;
  right: 40px;
  margin-top: -4px;
  transform: rotate(-45deg);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
@media only screen and (max-width: 768px) {
  .pagetop::after {
    width: 14px;
    height: 14px;
    top: 34px;
    right: 26px;
  }
}
@media only screen and (max-width: 768px) {
  .pagetop {
    width: 70px;
    height: 70px;
    top: -35px;
    right: 20px;
  }
}
@media only screen and (min-width: 769px) {
  .pagetop:hover {
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transform: scale(1.3);
    background: #57c0c9;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .pagetop:hover::after {
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
  }
}

/* ==========================================================================

	footer

========================================================================== */
footer {
  width: 100%;
  margin: 0 auto 0;
  position: relative;
  background: #ffffff;
}
@media only screen and (max-width: 768px) {
  footer {
    margin: 0px auto 0;
  }
}
footer .track {
  position: absolute;
  width: 160px;
  top: -50px;
  left: 20px;
}
@media only screen and (max-width: 768px) {
  footer .track {
    width: 120px;
    top: -20px;
    left: 18px;
  }
}
footer .ca {
  font-size: 70px;
  opacity: 0.5;
  color: #a9d7ea;
  position: absolute;
  top: 59%;
  left: 0;
  transform: rotate(-10deg);
  z-index: 12;
  font-family: "Caveat", cursive;
}
@media only screen and (max-width: 1500px) {
  footer .ca {
    font-size: 4.4vw;
  }
}
@media screen and (max-width: 1024px) {
  footer .ca {
    left: 40%;
    top: 72%;
  }
}
@media only screen and (max-width: 768px) {
  footer .ca {
    font-size: 5.4vw;
    top: 80%;
    left: 33%;
  }
}
footer .inner {
  margin: 0 auto;
  max-width: 1300px;
  width: calc(100% - 17vw);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  footer .inner {
    padding: 60px 0 30px;
    width: calc(100% - 40px);
    max-width: 600px;
  }
}
footer .address_box {
  width: 350px;
  margin: 0 30px 0 0;
}
@media only screen and (max-width: 768px) {
  footer .address_box {
    width: 100%;
    margin: 0 0 30px 0;
  }
}
footer .address_box .label {
  margin: 30px 0 6px;
  font-size: 1.3rem;
  color: #57c0c9;
  font-weight: 600;
}
footer .address_box .label .icon {
  color: #57c0c9;
}
footer .address_box .address {
  font-size: 1.7rem;
  letter-spacing: 1px;
  margin: 0 0 5px;
  font-weight: 600;
  color: #494949;
}
footer .address_box .tel {
  font-size: 1.3rem;
  font-weight: 600;
  color: #494949;
}
footer .logo {
  width: 100%;
}
footer .logo img {
  vertical-align: top;
}
footer .list_sec {
  width: calc(100% - 380px);
  padding-left: 30px;
}
@media screen and (max-width: 1024px) {
  footer .list_sec {
    width: 100%;
    max-width: 700px;
    margin-top: 50px;
    padding-left: 0;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 768px) {
  footer .list_sec {
    width: 100%;
    max-width: none;
    margin-top: 40px;
    flex-wrap: wrap;
  }
}
footer .list_sec .list {
  padding: 0 58px;
  border-left: 1px rgba(82, 86, 85, 0.1) solid;
}
@media screen and (max-width: 768px) {
  footer .list_sec .list {
    width: 50%;
    padding: 0;
    border-left: 0px rgba(82, 86, 85, 0.1) solid;
  }
}
footer .list_sec .list .list_block {
  margin: 0 0 14px;
}
footer .list_sec .list:nth-child(2) {
  border-left: 1px rgba(82, 86, 85, 0.1) solid;
  border-right: 1px rgba(82, 86, 85, 0.1) solid;
}
@media screen and (max-width: 768px) {
  footer .list_sec .list:nth-child(2) {
    padding: 0;
    order: 3;
    border: none;
    border-left: 0px rgba(82, 86, 85, 0.1) solid;
    border-right: 0px rgba(82, 86, 85, 0.1) solid;
  }
}
footer .list_sec .list .main {
  display: block;
  letter-spacing: 0.05em;
  font-weight: 700;
  font-size: 16px;
  color: #525655;
}
@media screen and (max-width: 768px) {
  footer .list_sec .list .main {
    line-height: 1.75em;
    font-size: 14px;
  }
}
footer .list_sec .list .sub {
  display: block;
  font-size: 12px;
  color: #46b0d6;
}
footer .list_sec .list .sub_list {
  margin: 10px 0 0;
}
footer .list_sec .list .sub_list li {
  margin: 0 0 5px;
}
footer .list_sec .list .sub_list li a {
  font-size: 1.2rem;
  margin: 0 0 10px;
  color: #494949;
}
footer .footer_list {
  width: 200px;
  margin: 120px 0 0;
}
footer .footer_list li {
  color: #fff;
  letter-spacing: 1px;
}
footer .footer_list li:not(:last-child) {
  margin-bottom: 20px;
}
footer .footer_list li a {
  font-size: 13px;
}
@media only screen and (max-width: 768px) {
  footer .footer_list li a {
    font-size: 11px;
    text-transform: uppercase;
  }
}
footer .copy {
  width: 100%;
  text-align: right;
  font-size: 10px;
  font-weight: bold;
  font-family: "Wix Madefor Display", "Noto Sans JP", sans-serif;
  letter-spacing: 1px;
  margin: 120px 0 0;
  color: #848484;
}
@media only screen and (max-width: 768px) {
  footer .copy {
    margin: 40px 0 0;
  }
}

/* ==========================================================================

	breadcrumb

========================================================================== */
.breadcrumb {
  margin: 0 auto;
  position: relative;
  padding: 0px 0px;
}
@media only screen and (max-width: 768px) {
  .breadcrumb {
    display: none;
  }
}
.breadcrumb .list li {
  position: relative;
}
.breadcrumb .list li a {
  font-size: 1.1rem;
  line-height: 1.5;
  display: inline-block;
  letter-spacing: 1px;
}
@media only screen and (max-width: 768px) {
  .breadcrumb .list li a {
    font-size: 11px;
  }
}
.breadcrumb .list li:not(:last-child) {
  margin-right: 20px;
  position: relative;
}
.breadcrumb .list li:not(:last-child)::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 6px;
  height: 7px;
  margin: 0;
  background: url("../img/common/arrow_r.svg") no-repeat;
  background-size: contain;
  top: 7px;
  right: -13px;
}
.breadcrumb .list li:last-child {
  font-weight: bold;
  font-family: "Wix Madefor Display", "Noto Sans JP", sans-serif;
}

/* ==========================================================================

	modal

========================================================================== */
.modal_area {
  display: block;
  position: fixed;
  z-index: 10; /*サイトによってここの数値は調整 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal_bg {
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.9);
}

.modal_wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 30px);
  max-width: 500px;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 6px;
}
.modal_wrapper .title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  font-family: "Wix Madefor Display", "Noto Sans JP", sans-serif;
}

.btn_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  position: relative;
  margin: 30px 0 0;
}
.btn_list .link_box {
  padding: 10px 10px;
  font-size: 1.5rem;
  font-weight: bold;
  font-family: "Wix Madefor Display", "Noto Sans JP", sans-serif;
}
@media only screen and (max-width: 768px) {
  .btn_list .link_box {
    font-size: 1.2rem;
  }
}
.btn_list .close_modal {
  cursor: pointer;
}
.btn_list .link_cart {
  background-color: #e76140;
  border: 1px solid #e76140;
}
@media only screen and (min-width: 769px) {
  .btn_list .link_cart:hover {
    background-color: #ffffff;
    border: 1px solid #e76140;
    color: #e76140;
  }
}

/* ==========================================================================

	btn-list

========================================================================== */
.link_box {
  background-color: #a9d7ea;
  border: 1px solid #a9d7ea;
  align-items: center;
  padding: 20px 10px;
  color: #ffffff;
  font-size: 1.5rem;
  position: relative;
  text-align: center;
  z-index: 10;
  transition: all 0.5s ease;
  border-radius: 6px;
  cursor: pointer;
}
.link_box::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background: #ffffff;
  transition: all 0.5s ease;
}
@media only screen and (max-width: 768px) {
  .link_box {
    width: 100%;
  }
}
@media only screen and (min-width: 769px) {
  .link_box:hover {
    background-color: #ffffff;
    border: 1px solid #a9d7ea;
    color: #a9d7ea;
    border-radius: 6px;
  }
  .link_box:hover::after {
    left: 0;
    width: 100%;
  }
}

.read_more {
  color: #ffffff;
  font-size: 1.5rem;
  margin: 20px 0 0 0;
  padding: 20px 70px 20px 0;
  position: relative;
  display: inline-block;
  cursor: pointer;
}
@media only screen and (min-width: 769px) {
  .read_more:hover:before {
    background: #33ecff;
    transform: translateX(100%) scale(1.2);
  }
}
.read_more:before {
  content: "";
  border-radius: 50%;
  background: #183f97;
  width: 50px;
  height: 50px;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transform: translateX(100%);
  position: absolute;
  top: 6px;
  right: 50px;
  cursor: pointer;
}
@media only screen and (min-width: 769px) {
  .read_more:before {
    width: 40px;
    height: 40px;
    top: 12px;
  }
}
.read_more:after {
  content: "";
  position: absolute;
  background: url("../img/common/arrow-right.svg");
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  top: 21px;
  right: 15px;
  width: 20px;
  height: 20px;
  z-index: 10;
  cursor: pointer;
}
@media only screen and (min-width: 769px) {
  .read_more:after {
    top: 23px;
    right: 21px;
    width: 17px;
    height: 17px;
  }
}

.btn_area {
  width: 100%;
  position: relative;
}
.btn_area .item_btn, .btn_area .submit {
  background: #3c3d3d;
  border: 3px solid #3c3d3d;
  color: #fff;
  align-items: center;
  padding: 22px 10px 20px;
  width: 100%;
  position: relative;
  text-align: center;
  font-size: 13px;
  font-weight: bold;
  font-family: "Wix Madefor Display", "Noto Sans JP", sans-serif;
  letter-spacing: 1px;
  z-index: 10;
  cursor: pointer;
  line-height: 1;
}
@media only screen and (min-width: 769px) {
  .btn_area .item_btn:hover, .btn_area .submit:hover {
    background-color: #000;
    color: #fff;
  }
}
.btn_area .item_btn span, .btn_area .submit span {
  position: relative;
}
.btn_area .cart {
  background: #a9d7ea;
  border: 1px solid #a9d7ea;
}
.btn_area .cart span::before {
  content: "";
  display: inline-block;
  width: 19px;
  height: 19px;
  margin: 0px 7px 0px;
  background: url("../img/common/cart_w.svg") no-repeat;
  background-size: contain;
  vertical-align: sub;
}
@media only screen and (min-width: 769px) {
  .btn_area .cart:hover {
    background-color: #fff;
    color: #a9d7ea;
  }
  .btn_area .cart:hover span::before {
    content: "";
    display: inline-block;
    width: 19px;
    height: 19px;
    margin: 0px 7px 0px;
    background: url("../img/common/cart.svg") no-repeat;
    background-size: contain;
  }
}
.btn_area .blue {
  background: #0058a4;
  border: 1px solid #0058a4;
}
@media only screen and (min-width: 769px) {
  .btn_area .blue:hover {
    background-color: #fff;
    color: #0058a4;
  }
}
.btn_area .green {
  background: #29302a;
  border: 1px solid #29302a;
}
@media only screen and (min-width: 769px) {
  .btn_area .green:hover {
    background-color: #fff;
    color: #29302a;
  }
}
.btn_area .gold {
  background: #A28C63;
  border: 1px solid #A28C63;
}
@media only screen and (min-width: 769px) {
  .btn_area .gold:hover {
    background-color: #fff;
    color: #A28C63;
  }
}
.btn_area .black {
  background: #000;
  border: 1px solid #000;
}
@media only screen and (min-width: 769px) {
  .btn_area .black:hover {
    background-color: #fff;
    color: #000;
  }
}
.btn_area .grey {
  background: #848484;
  border: 1px solid #848484;
}
@media only screen and (min-width: 769px) {
  .btn_area .grey:hover {
    background-color: #fff;
    color: #848484;
  }
}
.btn_area .submit_grey {
  background: #848484;
  border: 1px solid #848484;
}
@media only screen and (min-width: 769px) {
  .btn_area .submit_grey:hover {
    background-color: #fff;
    color: #848484;
  }
}

/* ==========================================================================

	index.html

========================================================================== */
section .inner {
  max-width: 1300px;
  width: calc(100% - 17vw);
  margin: 0 auto;
  position: relative;
}
@media only screen and (max-width: 768px) {
  section .inner {
    width: calc(100% - 40px);
    max-width: 600px;
  }
}
section .txtbox .en {
  color: #a9d7ea;
  font-size: 14px;
  letter-spacing: 2px;
  position: relative;
  font-weight: 600;
  position: relative;
  padding: 0 0 0 20px;
}
section .txtbox .en:before {
  content: "";
  background: url("../img/common/icon.svg") no-repeat;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 0px;
  top: 3px;
}
@media only screen and (max-width: 768px) {
  section .txtbox .en {
    font-size: 12px;
  }
}
section .txtbox .title {
  font-size: 36px;
  letter-spacing: 2px;
  font-weight: 800;
  text-transform: uppercase;
  color: #000;
}
@media only screen and (max-width: 1500px) {
  section .txtbox .title {
    font-size: 3.6rem;
  }
}
@media only screen and (max-width: 768px) {
  section .txtbox .title {
    font-size: 25px;
    line-height: 1.4;
    letter-spacing: 1px;
  }
}
section .txtbox .subtitle {
  font-size: 18px;
  letter-spacing: 1px;
}
section .txtbox .txt {
  font-size: 1.5rem;
  line-height: 2.3;
}
@media only screen and (max-width: 768px) {
  section .txtbox .txt {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
section .category_title {
  font-size: 4rem;
  letter-spacing: 2px;
  font-weight: 800;
  text-transform: uppercase;
  color: #000000;
}
@media only screen and (max-width: 768px) {
  section .category_title {
    font-size: 2.2rem;
    text-align: center;
  }
}
section .category_title span {
  font-size: 2rem;
  letter-spacing: 1px;
}
@media only screen and (max-width: 768px) {
  section .category_title span {
    font-size: 1.6rem;
  }
}
section .ca {
  font-family: "Caveat", cursive;
}

.top_page main {
  border-radius: 80px;
  overflow: visible;
  margin: 90px 0 0;
}
@media only screen and (max-width: 768px) {
  .top_page main {
    border-radius: 60px;
    margin: 60px 0 0;
  }
}

.hero_top {
  position: relative;
  width: 100%;
  overflow: visible;
}
@media only screen and (max-width: 768px) {
  .hero_top {
    overflow: hidden;
  }
}
.hero_top:before {
  content: "";
  width: 100%;
  top: 30px;
  background: #d1eaef;
  /*background-image: linear-gradient(360deg, $color-bg, #7bded9);*/
  height: calc(100% - 29px);
  position: absolute;
  left: 0;
  border-radius: 100px 100px 0 0;
}
.hero_top .track {
  position: absolute;
  width: 170px;
  z-index: 10000;
  bottom: -50px;
  right: 0%;
}
@media only screen and (max-width: 768px) {
  .hero_top .track {
    width: 110px;
    z-index: 10000;
    bottom: 40svh;
    right: -1%;
  }
}
@media only screen and (max-width: 490px) {
  .hero_top .track {
    width: 80px;
    z-index: 10000;
    bottom: 0px;
    right: -1%;
  }
}
.hero_top .ca_bg {
  font-size: max(8vw, 70px);
  color: #ffffff;
  position: absolute;
  top: 36%;
  left: 7%;
  z-index: 1;
  font-family: "Caveat", cursive;
  transform: rotate(-3deg);
  opacity: 0;
}
@media only screen and (max-width: 1500px) {
  .hero_top .ca_bg {
    font-size: 8vw;
  }
}
@media only screen and (max-width: 768px) {
  .hero_top .ca_bg {
    font-size: 63px;
    left: 0%;
    top: 28%;
  }
}
@media only screen and (max-width: 490px) {
  .hero_top .ca_bg {
    font-size: 33px;
    left: 0%;
    top: 28%;
  }
}
.hero_top .splide__slide {
  margin: 0 10px 20px;
}
@media only screen and (max-width: 768px) {
  .hero_top .splide__slide {
    margin: 0 5px 20px;
  }
}
.hero_top .splide__slide:nth-child(2n) {
  margin-top: 20px;
}
.hero_top .slide-media,
.hero_top .thumb-media {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
.hero_top .slide-media img,
.hero_top .thumb-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero_top .splide {
  z-index: 11;
  overflow: visible;
}
.hero_top .splide-wrapper {
  overflow: visible;
}
.hero_top .splide__slide:focus-visible {
  outline: 3px solid rgba(180, 233, 0, 0.8);
  outline-offset: 3px;
  z-index: 1;
  transition: none;
}
.hero_top .splide-wrapper {
  position: relative;
}
.hero_top .splide__arrow > svg {
  display: none;
}
.hero_top .gallery .splide-wrapper {
  transition-timing-function: linear !important;
}
.hero_top .gallery .slide {
  width: var(--slide-width);
  transition: var(--transition);
  backface-visibility: hidden;
  --slide-width: 280px;
}
@media only screen and (max-width: 768px) {
  .hero_top .gallery .slide {
    --slide-width: 24svh;
  }
}
.hero_top .gallery .slide-media {
  height: var(--slide-width);
}
.hero_top .splide-a {
  position: relative;
}
.hero_top .splide-a .img02 {
  position: absolute;
  width: 147px;
  right: 127px;
  bottom: -61px;
}
@media only screen and (max-width: 1200px) {
  .hero_top .splide-a .img02 {
    width: 110px;
    right: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .hero_top .splide-a .img02 {
    width: 94px;
    right: -13px;
    bottom: -54px;
  }
}
.hero_top .middle_area {
  position: relative;
  z-index: 10;
  padding: 4vh 0;
}
@media only screen and (max-width: 1200px) {
  .hero_top .middle_area .inner {
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  .hero_top .middle_area {
    padding: 1vh 0 7vh;
  }
}
.hero_top .middle_area .ja {
  color: #0058a4;
  font-size: 50px;
  margin: 0 0 0 3vw;
  letter-spacing: 0.5px;
  transform: translateY(30px) scale(1);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  filter: blur(5px) brightness(1.7);
  -webkit-text-stroke: 1.5px #0058a4;
  text-stroke: 1.5px #0058a4;
}
@media only screen and (max-width: 1500px) {
  .hero_top .middle_area .ja {
    font-size: 3.3vw;
  }
}
@media only screen and (max-width: 1200px) {
  .hero_top .middle_area .ja {
    font-size: 4.8vw;
  }
}
@media only screen and (max-width: 768px) {
  .hero_top .middle_area .ja {
    font-size: max(6.7vw, 30px);
    letter-spacing: 1px;
    margin: 0 0 0 20px;
  }
}
.hero_top .middle_area .en {
  color: #0058a4;
  font-size: 14px;
  margin: 0 0 0 40px;
  letter-spacing: 1px;
  transform: translateY(30px) scale(1);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  filter: blur(5px) brightness(1.7);
}
@media only screen and (max-width: 1500px) {
  .hero_top .middle_area .en {
    font-size: max(0.8vw, 10px);
    margin: 0 0 0 20px;
  }
}
@media only screen and (max-width: 1200px) {
  .hero_top .middle_area .en {
    margin: 0 0 0 3vw;
  }
}
.hero_top .middle_area .ca {
  font-size: 60px;
  color: #0058a4;
  position: absolute;
  bottom: -27%;
  right: 0%;
  transform: rotate(-10deg);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  filter: blur(5px) brightness(1.7);
}
@media only screen and (max-width: 1500px) {
  .hero_top .middle_area .ca {
    font-size: 4vw;
    bottom: -29%;
    right: 0%;
  }
}
@media only screen and (max-width: 768px) {
  .hero_top .middle_area .ca {
    font-size: 56px;
    bottom: -15%;
  }
}
@media only screen and (max-width: 490px) {
  .hero_top .middle_area .ca {
    font-size: 36px;
    bottom: -27%;
  }
}
.hero_top .middle_area .img01 {
  position: absolute;
  width: 140px;
  left: -140px;
}
@media only screen and (min-width: 769px) {
  .hero_top .middle_area .img01 {
    top: 0;
  }
}
@media only screen and (max-width: 1200px) {
  .hero_top .middle_area .img01 {
    width: 120px;
    left: -90px;
    bottom: -18svh;
  }
}
@media only screen and (max-width: 768px) {
  .hero_top .middle_area .img01 {
    width: 100px;
    left: -37px;
    bottom: -18svh;
  }
}
@media only screen and (max-width: 375px) {
  .hero_top .middle_area .img01 {
    bottom: -22svh;
  }
}

.is-load .hero_top {
  width: 100%;
  position: relative;
}
.is-load .hero_top .ja {
  transform: scale(1);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
  filter: blur(0px) brightness(1);
  transition: transform 3s cubic-bezier(0.21, 0.75, 0.38, 0.95) 0.6s, opacity 2s ease 0.1s, filter 2s ease 0.1s;
}
.is-load .hero_top .en {
  transform: translateY(0px) scale(1);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
  filter: blur(0px) brightness(1);
  transition: transform 1s cubic-bezier(0.21, 0.75, 0.38, 0.95) 1s, opacity 1.5s ease 1s, filter 1s ease 1s;
  transition: transform 1s cubic-bezier(0.21, 0.75, 0.38, 0.95) 1s, opacity 1.5s ease 1s, filter 1.5s ease 1s;
}
.is-load .hero_top .ca {
  transform: rotate(-10deg) scale(1);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
  filter: blur(0px) brightness(1);
  transition: transform 1s cubic-bezier(0.21, 0.75, 0.38, 0.95) 2s, opacity 1.5s ease 2.5s, filter 1s ease 2s;
  transition: transform 1s cubic-bezier(0.21, 0.75, 0.38, 0.95) 2s, opacity 1.5s ease 2.5s, filter 1.5s ease 2s;
}
.is-load .hero_top .ca_bg {
  opacity: 0.5;
  transition: transform 3s cubic-bezier(0.21, 0.75, 0.38, 0.95) 0.6s, opacity 2s ease 0.1s, filter 2s ease 0.1s;
}

.scroll_txt {
  width: 100%;
  margin: 10% 0 0;
  mix-blend-mode: hard-light;
  opacity: 0.5;
}
.scroll_txt ul li {
  width: 120%;
  color: transparent;
  font-size: 7vw;
  letter-spacing: 3px;
  font-weight: 600;
  background: repeating-linear-gradient(160deg, #0093E9 0%, #80D0C7 10%, #0058a4 100%);
  -webkit-background-clip: text;
  mix-blend-mode: screen;
  background-color: #0093E9;
  margin: 0 0 0 40px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .scroll_txt ul li {
    font-size: 15vw;
    margin: 0 0 0 20px;
  }
}
.scroll_txt .scroll_top {
  animation: loop-slide 50s infinite linear both;
}
.scroll_txt .color_bg {
  color: rgba(28, 36, 34, 0.23);
}
.scroll_txt .scroll_bottom {
  animation-direction: reverse;
  animation: loop-slide-re 50s infinite linear both;
}

@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop-slide-re {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
.company_top {
  background: #d1eaef;
  padding: 140px 0 200px;
  position: relative;
  z-index: 100;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .company_top {
    padding: 60px 0 100px;
  }
}
.company_top .track {
  position: absolute;
  width: 210px;
  bottom: -10px;
  right: 40px;
}
@media only screen and (max-width: 768px) {
  .company_top .track {
    position: absolute;
    width: 150px;
    bottom: -7px;
    right: 60px;
  }
}
.company_top .left {
  width: 38%;
  margin: 0 7% 0 5%;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .company_top .left {
    width: 100%;
    margin: 0 0 30px;
    padding: 0 25px;
  }
}
.company_top .left .ca {
  font-size: 100px;
  color: #a9d7ea;
  position: absolute;
  top: -11%;
  left: -10%;
  transform: rotate(-15deg);
  z-index: 12;
}
@media only screen and (max-width: 1500px) {
  .company_top .left .ca {
    font-size: 6vw;
  }
}
@media only screen and (max-width: 768px) {
  .company_top .left .ca {
    left: -2%;
    font-size: 54px;
  }
}
.company_top .left .img {
  width: 100%;
  position: relative;
}
.company_top .left .img img {
  border-radius: 30px;
  position: relative;
  z-index: 10;
}
.company_top .left .img:before {
  content: "";
  background-color: #d1eaef;
  background-image: radial-gradient(#7bded9 30%, transparent 30%);
  background-size: 20px 20px;
  width: 100%;
  height: 100%;
  transform: rotate(18deg);
  position: absolute;
  border-radius: 30px;
  left: 0;
  top: 0;
  z-index: 0;
}
@media only screen and (max-width: 768px) {
  .company_top .left .img:before {
    background-size: 10px 10px;
  }
}
.company_top .right {
  width: 50%;
  margin: 0 0 0 5%;
}
@media only screen and (max-width: 768px) {
  .company_top .right {
    width: 100%;
    margin: 0;
  }
}
.company_top .right .title {
  color: #0058a4;
  margin: 20px 0 0;
  font-family: "Wix Madefor Display", "Noto Sans JP", sans-serif;
}
.company_top .right .txt {
  color: #0058a4;
  margin: 10px 0 0;
}
.company_top .read_more {
  color: #0058a4;
}
.company_top .scroll_txt {
  position: absolute;
  bottom: 1%;
}
@media only screen and (max-width: 768px) {
  .company_top .scroll_txt {
    bottom: -0.5%;
  }
}

.business_top {
  background: #d1eaef;
  padding: 170px 0 120px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .business_top {
    padding: 60px 0 80px;
  }
}
.business_top .scroll_txt {
  position: absolute;
  top: -3%;
  margin: 7% 0 0;
}
@media only screen and (max-width: 768px) {
  .business_top .scroll_txt {
    top: 0.5%;
  }
}
.business_top .scroll_txt ul li {
  width: 120%;
  color: transparent;
  font-size: 7vw;
  letter-spacing: 3px;
  font-weight: 600;
  background: repeating-linear-gradient(190deg, #0093E9 0%, #ffffff 40%, #0058a4 86%);
  -webkit-background-clip: text;
  mix-blend-mode: screen;
  background-color: #0093E9;
  margin: 0 0 0 40px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .business_top .scroll_txt ul li {
    font-size: 15vw;
    margin: 0 0 0 20px;
  }
}
.business_top:before {
  content: "";
  width: 100%;
  top: 0px;
  background-image: linear-gradient(360deg, #0058a4, #00b9e7);
  height: 100%;
  position: absolute;
  left: 0;
  border-radius: 0px 100px 0 0;
}
.business_top .left {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  .business_top .left {
    width: 100%;
  }
}
.business_top .left .title {
  color: #ffffff;
  margin: 20px 0 0;
  font-family: "Wix Madefor Display", "Noto Sans JP", sans-serif;
}
.business_top .left .txt {
  color: #ffffff;
  margin: 10px 0 0;
}
.business_top .right {
  width: 50%;
  text-align: right;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .business_top .right {
    width: 100%;
    margin: 10px 0 0;
  }
}
.business_top .right .img01 {
  width: 40%;
}
.business_top .right .ca {
  font-size: 100px;
  color: #a9d7ea;
  position: absolute;
  top: 13%;
  right: 12%;
  transform: rotate(-15deg);
  z-index: 12;
}
@media only screen and (max-width: 1500px) {
  .business_top .right .ca {
    font-size: 6vw;
  }
}
@media only screen and (max-width: 768px) {
  .business_top .right .ca {
    font-size: 54px;
  }
}
.business_top .right .read_more {
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .business_top .right .read_more {
    margin-bottom: -20px;
  }
}

.business_list {
  width: 100%;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
@media only screen and (max-width: 1400px) {
  .business_list {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 490px) {
  .business_list {
    display: block;
  }
}
.business_list li {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  position: relative;
}
@media only screen and (max-width: 490px) {
  .business_list li:not(:last-child) {
    margin-bottom: 20px;
  }
}
.business_list li:after {
  content: "";
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 2px #0058a4;
  border-right: solid 2px #0058a4;
  position: absolute;
  top: 345px;
  right: 35px;
  margin-top: -4px;
  transform: rotate(45deg);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
@media only screen and (max-width: 768px) {
  .business_list li:after {
    top: 212px;
    right: 32px;
  }
}
@media only screen and (min-width: 769px) {
  .business_list li:hover:after {
    right: 25px;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  }
}
.business_list li .img {
  height: 300px;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .business_list li .img {
    height: 180px;
  }
}
.business_list li .img img {
  transition: all 1s cubic-bezier(0.5, 1, 0.89, 1);
  margin: -40px 0 0;
}
@media only screen and (max-width: 768px) {
  .business_list li .img img {
    margin: -60px 0 0;
  }
}
.business_list li .txt_area {
  padding: 30px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .business_list li .txt_area {
    padding: 20px 20px 30px;
  }
}
.business_list li .txt_area .label {
  font-size: 39px;
  color: #d1eaef;
  font-weight: 600;
  margin: 0 0 6px;
  position: absolute;
  writing-mode: vertical-rl;
  top: 0;
  left: -14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.5;
  z-index: -4;
}
@media only screen and (max-width: 768px) {
  .business_list li .txt_area .label {
    font-size: 27px;
  }
}
.business_list li .txt_area .number {
  color: #ffffff;
  background: #0058a4;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 4px 0 0 0;
}
@media only screen and (max-width: 768px) {
  .business_list li .txt_area .number {
    font-size: 1.3rem;
    width: 24px;
    height: 24px;
    padding: 2px 0 0 0;
  }
}
.business_list li .txt_area .title {
  color: #0058a4;
  font-size: 2.3rem;
  margin: 0 0 10px;
  width: calc(100% - 40px);
  margin: 0 0 0 10px;
  font-weight: 600;
  font-family: "Wix Madefor Display", "Noto Sans JP", sans-serif;
}
@media only screen and (max-width: 768px) {
  .business_list li .txt_area .title {
    font-size: 1.8rem;
  }
}
.business_list li .txt_area .txt {
  font-size: 1.3rem;
  margin: 16px 0 0;
  color: #848484;
}
@media only screen and (max-width: 768px) {
  .business_list li .txt_area .txt {
    font-size: 1.2rem;
    margin: 8px 0 0;
  }
}
@media only screen and (min-width: 769px) {
  .business_list li:hover .img img {
    transform: scale(110%);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  }
}

.top_slider {
  position: relative;
}
.top_slider .track {
  position: absolute;
  width: 130px;
  top: -86px;
  z-index: 100;
}
@media only screen and (max-width: 768px) {
  .top_slider .track {
    width: 100px;
    top: -68px;
  }
}
.top_slider .splide__slide {
  width: 26vw;
}
@media only screen and (max-width: 1500px) {
  .top_slider .splide__slide {
    width: 36vw;
  }
}
@media only screen and (max-width: 768px) {
  .top_slider .splide__slide {
    width: 70%;
  }
}

.interview_top {
  background: #0058a4;
  padding: 100px 0 70px;
  position: relative;
  overflow: hidden;
  /* 前へ / 次へボタン */
}
.interview_top .bg_img {
  position: absolute;
  width: 100%;
  right: -21%;
}
@media only screen and (max-width: 768px) {
  .interview_top {
    padding: 60px 0 70px;
  }
}
.interview_top .inner {
  border-radius: 50px;
  background-image: linear-gradient(160deg, rgba(0, 147, 233, 0.7) 0%, rgba(32, 239, 239, 0.8) 100%);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  padding: 0 0 100px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .interview_top .inner {
    border-radius: 20px;
    padding: 0 0 10px;
  }
}
.interview_top .inner .ca {
  font-size: 100px;
  color: #ffffff;
  position: absolute;
  bottom: 7%;
  right: 20%;
  transform: rotate(-15deg);
  z-index: 12;
}
@media only screen and (max-width: 1500px) {
  .interview_top .inner .ca {
    font-size: 6vw;
  }
}
@media only screen and (max-width: 768px) {
  .interview_top .inner .ca {
    font-size: 13vw;
    bottom: 10%;
    left: 3%;
    right: auto;
    font-size: 54px;
  }
}
.interview_top .txtbox {
  padding: 70px 3vw 100px;
}
@media only screen and (max-width: 768px) {
  .interview_top .txtbox {
    padding: 50px 20px 80px;
  }
}
.interview_top .img01 {
  position: absolute;
  bottom: -7%;
  left: -6%;
  width: 12%;
  z-index: 100;
}
@media only screen and (max-width: 768px) {
  .interview_top .img01 {
    bottom: -9%;
    left: -4%;
    width: 27%;
  }
}
.interview_top .left {
  width: 100%;
  position: relative;
}
.interview_top .left .title {
  color: #ffffff;
  margin: 20px 0 0;
  font-family: "Wix Madefor Display", "Noto Sans JP", sans-serif;
}
.interview_top .left .txt {
  color: #ffffff;
}
.interview_top .left .read_more {
  position: absolute;
  right: 0;
  bottom: -70px;
}
@media only screen and (max-width: 768px) {
  .interview_top .left .read_more {
    bottom: -64px;
  }
}
.interview_top .left .img {
  position: absolute;
  top: -30px;
  right: -16px;
  width: 120px;
}
@media only screen and (max-width: 768px) {
  .interview_top .left .img {
    top: -127px;
    right: -16px;
    width: 100px;
  }
}
.interview_top .right {
  position: relative;
  width: 50%;
}
.interview_top .right .txt {
  color: #ffffff;
  margin: 10px 0 0;
}
.interview_top .l-inner {
  position: relative;
  box-sizing: content-box;
  margin: 30px 0 0;
  padding: 0 3vw 0px;
}
@media only screen and (max-width: 768px) {
  .interview_top .l-inner {
    padding: 0 20px;
    margin: 0;
  }
}
.interview_top .slide-media {
  position: relative;
  overflow: hidden;
}
.interview_top .splide {
  z-index: 0;
}
.interview_top .splide__arrow--prev,
.interview_top .splide__arrow--next {
  display: grid;
  place-content: center;
  width: 6.4rem;
  height: 6.4rem;
  cursor: pointer;
  transition: var(--transition);
  background-color: #ffffff;
  border-radius: 50%;
}
@media only screen and (max-width: 768px) {
  .interview_top .splide__arrow--prev,
  .interview_top .splide__arrow--next {
    width: 50px;
    height: 50px;
  }
}
.interview_top .splide__arrow--prev::after,
.interview_top .splide__arrow--next::after {
  width: 1.2rem;
  height: 1.2rem;
  content: "";
  border: solid var(--color-gray);
  border-width: 3px 3px 0 0;
}
.interview_top .splide__arrow--prev::after {
  margin-left: 0.4rem;
  transform: rotate(-135deg);
}
.interview_top .splide__arrow--prev {
  margin: 0 20px 0 0;
}
.interview_top .splide__arrow--next::after {
  margin-right: 0.4rem;
  transform: rotate(45deg);
}
.interview_top .splide__arrow--next {
  opacity: 1;
}
.interview_top .splide__arrow:disabled {
  pointer-events: none;
  opacity: 0;
}
.interview_top .splide__arrow:focus-visible {
  outline: 3px solid rgba(180, 233, 0, 0.8);
  outline-offset: 3px;
  z-index: 1;
  transition: none;
}
.interview_top .splide__slide:focus-visible {
  outline: 3px solid rgba(180, 233, 0, 0.8);
  outline-offset: 3px;
  z-index: 1;
  transition: none;
}
.interview_top .splide-wrapper {
  position: relative;
}
.interview_top .splide__arrow > svg {
  display: none;
}
.interview_top .interview_card {
  overflow: hidden;
}
.interview_top .interview_card .splide__track {
  overflow: visible;
}
.interview_top .interview_card .splide-controller {
  display: flex;
  gap: 1.6rem;
  align-items: center;
  margin-top: 6.2rem;
}
.interview_top .interview_card .splide__pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 0.8rem;
  justify-content: flex-start;
  margin: 0 auto 0 0;
  text-align: center;
  display: none;
  justify-content: space-between;
}
.interview_top .interview_card .splide__pagination > li {
  font-size: 0;
  /* liタグの下にある余白を消すため */
}
.interview_top .interview_card .splide__pagination__page {
  width: 1.6rem;
  height: 3px;
  cursor: pointer;
  transition: var(--transition);
  vertical-align: top;
  background-color: var(--color-gray);
}
.interview_top .interview_card .splide__pagination__page.is-active {
  width: 4rem;
  background-color: var(--color-theme);
}
.interview_top .interview_card .splide__arrows {
  display: flex;
  gap: 25px;
  margin: 50px 0 0 auto;
  position: relative; /* Safari */
  align-items: flex-end;
}
.interview_top .interview_card .splide__arrow--prev,
.interview_top .interview_card .splide__arrow--next {
  position: relative;
  flex-shrink: 0;
  margin: 0;
}
.interview_top .splide__arrow--prev {
  left: 0;
}
.interview_top .interview_card .splide__arrow:disabled::before {
  box-shadow: var(--box-shadow-inset);
}
.interview_top .interview_card .splide__slide {
  width: -moz-max-content;
  width: max-content;
  transform: scale(1);
  transition: all var(--transition);
}
.interview_top .interview_card .splide__slide {
  width: 100%;
  height: 100%;
}
.interview_top .interview_card .splide__slide:before {
  content: "";
  position: absolute;
  top: 60px;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
@media only screen and (max-width: 768px) {
  .interview_top .interview_card .splide__slide:before {
    top: 30px;
  }
}
@media only screen and (min-width: 769px) {
  .interview_top .interview_card .splide__slide:hover .slide-media img {
    transform: scale(1.1);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .interview_top .interview_card .splide__slide:hover .read_more:before {
    background: #33ecff;
    transform: translateX(100%) scale(1.2);
  }
}
.interview_top .bg-01:before {
  background: linear-gradient(to bottom right, #64ABFF, #C8B7FF);
}
.interview_top .bg-02:before {
  background: linear-gradient(170deg, #2CCECE, #67defa);
}
.interview_top .bg-03:before {
  background: linear-gradient(170deg, #60BAEA, #96EBFF);
}
.interview_top .interview_card .slide-media {
  width: 88%;
  height: 280px;
  margin: 0px auto 0;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .interview_top .interview_card .slide-media {
    height: 160px;
  }
}
.interview_top .interview_card .slide-media .service_name {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #ffffff;
  padding: 3px 5px;
  font-size: 1.4rem;
  color: #0058a4;
}
.interview_top .interview_card .slide-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.interview_top .interview_card .person_img {
  position: absolute;
  width: 54%;
  bottom: -60px;
  right: 6%;
  z-index: 10;
}
@media only screen and (max-width: 768px) {
  .interview_top .interview_card .person_img {
    bottom: -30px;
    width: 54%;
    right: 0;
  }
}
.interview_top .interview_card .slide-content {
  width: 50%;
  position: relative;
  z-index: 100;
  margin: 50px 0 45px 7%;
}
@media only screen and (max-width: 768px) {
  .interview_top .interview_card .slide-content {
    margin: 35px 0 25px 7%;
    width: 160px;
  }
}
.interview_top .interview_card .slide-content * {
  color: #ffffff;
}
.interview_top .interview_card .slide-content .name {
  font-size: 40px;
  font-weight: bold;
  font-family: "Wix Madefor Display", "Noto Sans JP", sans-serif;
  line-height: 1;
}
@media only screen and (max-width: 1500px) {
  .interview_top .interview_card .slide-content .name {
    font-size: max(4vw, 29px);
  }
}
@media only screen and (max-width: 768px) {
  .interview_top .interview_card .slide-content .name {
    font-size: max(10vw, 23px);
  }
}
.interview_top .interview_card .slide-content .time {
  font-size: 11px;
  margin: 0 0 3px 4px;
}
@media only screen and (max-width: 1500px) {
  .interview_top .interview_card .slide-content .time {
    font-size: 11px;
  }
}
@media only screen and (max-width: 768px) {
  .interview_top .interview_card .slide-content .time {
    font-size: 10px;
  }
}
.interview_top .interview_card .slide-content .occupation {
  margin: 10px 0 0;
  font-size: 13px;
}
@media only screen and (max-width: 1500px) {
  .interview_top .interview_card .slide-content .occupation {
    font-size: 12px;
    margin: 4px 0 0;
  }
}
.interview_top .interview_card .slide-content .txt {
  margin: 20px 0 0;
  font-size: 15px;
}
@media only screen and (max-width: 1500px) {
  .interview_top .interview_card .slide-content .txt {
    font-size: 15px;
    margin: 12px 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .interview_top .interview_card .slide-content .txt {
    font-size: max(0.7vw, 11px);
  }
}

.recruit_top {
  background: #0058a4;
  position: relative;
  overflow: hidden;
}
.recruit_top .read_more:before {
  background: #46b0d6;
}
.recruit_top .recruit_inner {
  border-radius: 100px 0 0 0;
  padding: 100px 0 30px;
  background: #183f97;
}
@media only screen and (max-width: 768px) {
  .recruit_top .recruit_inner {
    border-radius: 60px 0 0 0;
    padding: 70px 0 0px;
  }
}
.recruit_top .recruit_inner .title {
  color: #ffffff;
  margin: 20px 0 0;
  font-family: "Wix Madefor Display", "Noto Sans JP", sans-serif;
  max-width: 700px;
}
@media only screen and (max-width: 768px) {
  .recruit_top .recruit_inner .title {
    font-size: 4.8vw;
    line-height: 1.6;
    letter-spacing: 0.1vw;
  }
}
.recruit_top .recruit_inner .txt {
  color: #ffffff;
}
@media only screen and (max-width: 768px) {
  .recruit_top .recruit_inner .txt {
    margin: 10px 0 0;
  }
}
.recruit_top .recruit_inner .inner {
  position: relative;
  margin: 0 auto 10px;
}
@media only screen and (max-width: 768px) {
  .recruit_top .recruit_inner .inner {
    margin: 0 auto 20px;
  }
}
.recruit_top .recruit_inner .inner .ca {
  font-size: 100px;
  color: #a9d7ea;
  position: absolute;
  top: 13%;
  right: 0%;
  transform: rotate(-15deg);
  z-index: 12;
}
@media only screen and (max-width: 1500px) {
  .recruit_top .recruit_inner .inner .ca {
    font-size: 6vw;
  }
}
@media only screen and (max-width: 768px) {
  .recruit_top .recruit_inner .inner .ca {
    font-size: 13vw;
    top: -25%;
  }
}
.recruit_top .scroll_txt {
  margin: 0;
  mix-blend-mode: normal;
}
@media only screen and (max-width: 768px) {
  .recruit_top .scroll_txt {
    top: 0.5%;
  }
}
.recruit_top .scroll_txt ul li {
  width: 120%;
  font-size: max(10.86vw, 50px);
  letter-spacing: 3px;
  font-weight: 600;
  background-size: 700% 700%;
  background: linear-gradient(45deg, #21D4FD, #7c21ff, #52ffb8) fixed;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 0 40px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .recruit_top .scroll_txt ul li {
    font-size: 15vw;
    margin: 0 0 0 20px;
  }
}

.recruit_read_more {
  color: #0058a4;
  font-size: 1.5rem;
  margin: 0px 0 0 0;
  padding: 20px 70px 20px 0;
  position: relative;
  display: inline-block;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .recruit_read_more{
    font-size: 1.3rem;
	margin: 0px 0 0 0;
	padding: 20px 60px 20px 0;
  }
}

@media only screen and (min-width: 769px) {
  .recruit_read_more:hover:before {
    background: #33ecff;
    transform: translateX(100%) scale(1.2);
  }
}
.recruit_read_more:before {
  content: "";
  border-radius: 50%;
  background: #183f97;
  width: 40px;
  height: 40px;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transform: translateX(100%);
  position: absolute;
  top: 12px;
  right: 45px;
  cursor: pointer;
}

@media only screen and (min-width: 769px) {
  .recruit_read_more:before {
    width: 40px;
    height: 40px;
    top: 12px;
	right: 50px;
  }
}
.recruit_read_more:after {
  content: "";
  position: absolute;
  background: url("../img/common/arrow-right.svg");
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  top: 21px;
  right: 15px;
  width: 20px;
  height: 20px;
  z-index: 10;
  cursor: pointer;
}
@media only screen and (min-width: 769px) {
  .recruit_read_more:after {
    top: 23px;
    right: 21px;
    width: 17px;
    height: 17px;
  }
}


.page_recruit .read_more_blue {
  color: #0058a4;
}

/* ==========================================================================

	sub_page

========================================================================== */
.sub_page main {
  margin: 0;
  background: #d1eaef;
}
.sub_page .recruit_top {
  background: #ffffff;
}
.sub_page .sub_page_top {
  background: #d1eaef;
  position: relative;
  height: 70vh;
  min-height: 600px;
  max-height: 800px;
}
@media only screen and (max-width: 768px) {
  .sub_page .sub_page_top {
    height: 50vh;
    max-height: 100vh;
    min-height: 200px;
  }
}
.sub_page .sub_page_top .hero_img {
  width: 100%;
  overflow: hidden;
  height: 100%;
  border-radius: 0 0 180px 0;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .sub_page .sub_page_top .hero_img {
    border-radius: 0 0 180px 0;
    /*&:before{
        content: "";
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 100%);
        width: 100%;
        height: 26%;
        opacity: 1;
        position: absolute;
        bottom: 0;
        left: 0;
    }*/
  }
}
.sub_page .sub_page_top .hero_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translateY(0px) scale(1);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  filter: blur(5px) brightness(1.7);
}
.sub_page .sub_page_top .ca {
  font-size: 100px;
  color: #a9d7ea;
  position: absolute;
  bottom: -8%;
  right: 10%;
  transform: rotate(-15deg);
  z-index: 12;
}
@media only screen and (max-width: 1500px) {
  .sub_page .sub_page_top .ca {
    font-size: 6vw;
  }
}
@media only screen and (max-width: 768px) {
  .sub_page .sub_page_top .ca {
    font-size: 44px;
    bottom: -4%;
  }
}
.sub_page .sub_page_top .inner {
  position: absolute;
  top: 50%;
  left: 50%; /* Safari用 */
  transform: translate(-50%, -50%);
  z-index: 100;
}
@media only screen and (max-width: 768px) {
  .sub_page .sub_page_top .inner {
    top: 80%;
  }
}
.sub_page .sub_page_top .inner .ja {
  position: relative;
  color: #d1eaef;
  font-size: 1.8rem;
  margin: 0 0 10px;
  letter-spacing: 1px;
  transform: translateY(30px) scale(1);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  filter: blur(5px) brightness(1.7);
  z-index: 100;
  font-family: "Wix Madefor Display", "Noto Sans JP", sans-serif;
}
@media only screen and (max-width: 768px) {
  .sub_page .sub_page_top .inner .ja {
    font-size: 1.2rem;
    margin: 0 0 5px;
  }
}
.sub_page .sub_page_top .inner .en {
  position: relative;
  color: #d1eaef;
  font-size: 7.4rem;
  line-height: 1;
  font-weight: 600;
  transform: translateY(30px) scale(1);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  filter: blur(5px) brightness(1.7);
  z-index: 100;
}
@media only screen and (max-width: 768px) {
  .sub_page .sub_page_top .inner .en {
    font-size: 4rem;
  }
}
.sub_page .sub_page_top_business {
  position: relative;
  padding: 200px 0 60px;
}
@media only screen and (max-width: 768px) {
  .sub_page .sub_page_top_business {
    padding: 100px 0 30px;
  }
}
.sub_page .sub_page_top_business .ca {
  font-size: 100px;
  color: #ffffff;
  position: absolute;
  bottom: 4%;
  right: 10%;
  transform: rotate(-15deg);
  z-index: 12;
}
@media only screen and (max-width: 1500px) {
  .sub_page .sub_page_top_business .ca {
    font-size: 6vw;
  }
}
@media only screen and (max-width: 768px) {
  .sub_page .sub_page_top_business .ca {
    font-size: 44px;
    right: 4%;
    bottom: -3%;
  }
}
.sub_page .sub_page_top_business .ja {
  position: relative;
  color: #0058a4;
  font-size: 5rem;
  margin: 0 0 10px;
  letter-spacing: 1px;
  transform: translateY(30px) scale(1);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  filter: blur(5px) brightness(1.7);
  z-index: 100;
  font-family: "Wix Madefor Display", "Noto Sans JP", sans-serif;
}
@media only screen and (max-width: 768px) {
  .sub_page .sub_page_top_business .ja {
    font-size: 7.6vw;
    margin: 0 0 5px;
  }
}
.sub_page .sub_page_top_business .en {
  position: relative;
  color: #0058a4;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 600;
  transform: translateY(30px) scale(1);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  filter: blur(5px) brightness(1.7);
  z-index: 100;
}
@media only screen and (max-width: 768px) {
  .sub_page .sub_page_top_business .en {
    font-size: 11px;
  }
}
.sub_page .business_menu {
  background: #ffffff;
}
.sub_page .business_menu_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  margin: 30px 0 0;
}
@media only screen and (max-width: 768px) {
  .sub_page .business_menu_list {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }
}
.sub_page .business_menu_list li {
  position: relative;
  background: #0058a4;
  background-size: 180% auto;
  background-image: linear-gradient(to right, #0058a4 0%, #5EFCE8 100%);
  padding: 20px 20px;
  color: #ffffff;
  font-size: max(0.5vw, 14px);
  border-radius: 18px;
}
.sub_page .business_menu_list li:after {
  content: "";
  width: 10px;
  height: 10px;
  border: 0;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  position: absolute;
  top: 29px;
  right: 30px;
  margin-top: -4px;
  transform: rotate(45deg);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
@media only screen and (min-width: 769px) {
  .sub_page .business_menu_list li:hover:after {
    right: 20px;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  }
}
.sub_page .contents_section {
  position: relative;
  padding: 10vh 0;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .sub_page .contents_section {
    padding: 6vh 0;
  }
}
.sub_page .contents_section .inner {
  position: relative;
  z-index: 10;
}
.sub_page .contents_section .inner .section_read {
  color: #494949;
  font-size: max(0.93vw, 20px);
  line-height: 2;
  font-weight: 600;
}
@media only screen and (max-width: 1000px) {
  .sub_page .contents_section .inner .section_read {
    font-size: max(0.5vw, 15px);
  }
}
.sub_page .contents_section .inner .section_txt {
  color: #494949;
  font-size: max(0.8vw, 15px);
  line-height: 2;
}
@media only screen and (max-width: 768px) {
  .sub_page .contents_section .inner .section_txt {
    font-size: max(0.4vw, 13px);
    line-height: 1.8;
  }
}
.sub_page .contents_section .inner .left {
  width: 360px;
}
@media only screen and (max-width: 1350px) {
  .sub_page .contents_section .inner .left {
    width: 200px;
  }
}
@media only screen and (max-width: 1000px) {
  .sub_page .contents_section .inner .left {
    width: 100%;
    margin: 0 0 20px;
  }
}
.sub_page .contents_section .inner .left .section_title {
  color: #3c3d3d;
  font-size: max(1.1vw, 22px);
  margin: 0 0 2px;
  font-weight: 600;
  letter-spacing: 1px;
  font-family: "Wix Madefor Display", "Noto Sans JP", sans-serif;
}
@media only screen and (max-width: 768px) {
  .sub_page .contents_section .inner .left .section_title {
    font-size: 20px;
  }
}
.sub_page .contents_section .inner .left .section_en {
  color: #46b0d6;
  font-size: 12px;
}
.sub_page .contents_section .inner .right {
  width: calc(100% - 360px);
}
@media only screen and (max-width: 1350px) {
  .sub_page .contents_section .inner .right {
    width: calc(100% - 200px);
  }
}
@media only screen and (max-width: 1000px) {
  .sub_page .contents_section .inner .right {
    width: 100%;
  }
}
.sub_page .contents_section .inner .right .img {
  border-radius: 20px;
  overflow: hidden;
  margin: 0 0 20px;
}
.sub_page .contents_section .inner .right .img img {
  vertical-align: bottom;
}
.sub_page .contents_section .bg_txt {
  font-size: 8vw;
  color: #ffffff;
  left: -20px;
  bottom: -20px;
  position: absolute;
  z-index: 1;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
  opacity: 0.3;
}
@media only screen and (max-width: 768px) {
  .sub_page .contents_section .bg_txt {
    bottom: -5px;
    left: -4px;
  }
}
.sub_page .contents_img {
  position: relative;
  z-index: 3;
  padding: 50vh 0 0;
  background: #a9d7ea;
  overflow: hidden;
  height: 50vh;
}
@media only screen and (max-width: 768px) {
  .sub_page .contents_img {
    padding: 32vh 0 0;
    height: 32vh;
  }
}
.sub_page .contents_img #luxy {
  position: absolute !important;
  left: 0;
  top: 0;
  width: 130%;
  height: 180%;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.is-load .sub_page_top {
  width: 100%;
  position: relative;
}
.is-load .sub_page_top .hero_img img {
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
  filter: blur(0px) brightness(1);
  transition: transform 3s cubic-bezier(0.21, 0.75, 0.38, 0.95) 0.6s, opacity 2s ease 0.1s, filter 2s ease 0.1s;
}
.is-load .sub_page_top .inner .ja {
  transform: translateY(0px) scale(1);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
  filter: blur(0px) brightness(1);
  transition: transform 1s cubic-bezier(0.21, 0.75, 0.38, 0.95) 1s, opacity 1.5s ease 1s, filter 1s ease 1s;
  transition: transform 1s cubic-bezier(0.21, 0.75, 0.38, 0.95) 1s, opacity 1.5s ease 1s, filter 1.5s ease 1s;
}
.is-load .sub_page_top .inner .en {
  transform: translateY(0px) scale(1);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
  filter: blur(0px) brightness(1);
  transition: transform 1s cubic-bezier(0.21, 0.75, 0.38, 0.95) 1s, opacity 1.5s ease 1s, filter 1s ease 1s;
  transition: transform 1s cubic-bezier(0.21, 0.75, 0.38, 0.95) 1s, opacity 1.5s ease 1s, filter 1.5s ease 1s;
}
.is-load .sub_page_top_business .ja {
  transform: translateY(0px) scale(1);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
  filter: blur(0px) brightness(1);
  transition: transform 1s cubic-bezier(0.21, 0.75, 0.38, 0.95) 0.1s, opacity 1.5s ease 0.1s, filter 1s ease 0.1s;
  transition: transform 1s cubic-bezier(0.21, 0.75, 0.38, 0.95) 0.1s, opacity 1.5s ease 0.1s, filter 1.5s ease 0.1s;
}
.is-load .sub_page_top_business .en {
  transform: translateY(0px) scale(1);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
  filter: blur(0px) brightness(1);
  transition: transform 1s cubic-bezier(0.21, 0.75, 0.38, 0.95) 0.2s, opacity 1.5s ease 0.2s, filter 1s ease 0.2s;
  transition: transform 1s cubic-bezier(0.21, 0.75, 0.38, 0.95) 0.2s, opacity 1.5s ease 0.2s, filter 1.5s ease 0.2s;
}

/* ==========================================================================

	COMPANY 

========================================================================== */
.sub_page .message .name_label {
  margin: 30px 0 0;
  font-size: 1.2rem;
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .sub_page .message .name_label {
    font-size: 1.1rem;
  }
}
.sub_page .message .name {
  margin: 5px 0 0;
  font-size: 1.8rem;
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .sub_page .message .name {
    font-size: 1.4rem;
  }
}
.sub_page .profile {
  background: #ffffff;
}
.sub_page .profile .bg_txt {
  color: #d1eaef;
}
.sub_page .profile .company_dl {
  color: rgba(0, 0, 0, 0.7);
}
.sub_page .profile .company_dl_inner {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  position: relative;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .sub_page .profile .company_dl_inner {
    margin: 0 0 10px;
  }
}
.sub_page .profile .company_dl_border {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(197, 199, 201, 0.8);
}
.sub_page .profile .company_dl_dt {
  padding: 20px 0;
  width: 10vw;
  min-width: 120px;
  font-size: max(0.7vw, 15px);
  font-weight: 700;
  color: #0058a4;
  line-height: 1.86;
  letter-spacing: 0.1em;
  border-bottom: 2px solid #0058a4;
}
@media only screen and (max-width: 768px) {
  .sub_page .profile .company_dl_dt {
    width: 100%;
    font-size: max(0.5vw, 13px);
    padding: 2vw 0 0.6vw;
  }
}
.sub_page .profile .company_dl_dd {
  flex: 1;
  padding: 20px 0 20px 10px;
  font-size: max(0.7vw, 16px);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 768px) {
  .sub_page .profile .company_dl_dd {
    width: 100%;
    font-size: max(0.5vw, 13px);
    padding: 2vw 0 2vw;
  }
}
.sub_page .profile .company_label {
  font-size: max(0.9vw, 17px);
  font-weight: 700;
  margin: 60px 0 0;
  color: #494949;
}
@media only screen and (max-width: 768px) {
  .sub_page .profile .company_label {
    width: 100%;
    font-size: max(0.5vw, 14px);
    margin: 40px 0 0;
  }
}
.sub_page .profile .company_pdf {
  margin: 10px 0 0;
}
.sub_page .profile .company_pdf li {
  margin: 0 20px 0 0;
  padding: 14px 20px 14px 0;
  border-radius: 20px;
  width: 220px;
  text-align: center;
  color: #ffffff;
  font-size: 1.4rem;
  letter-spacing: 1px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background-size: 180% auto;
  background-image: linear-gradient(to right, #0058a4 0%, #5EFCE8 100%);
}
@media only screen and (max-width: 768px) {
  .sub_page .profile .company_pdf li {
    width: 100%;
    margin: 0 0 10px;
  }
}
.sub_page .profile .company_pdf li .icon {
  position: absolute;
  width: 22px;
  height: 22px;
  color: #ffffff;
  font-size: 2rem;
  right: 22px;
}
@media only screen and (min-width: 769px) {
  .sub_page .profile .company_pdf li:hover {
    background-position: right center;
  }
}
.sub_page .profile .company_table {
  margin: 60px 0 0;
}
@media only screen and (max-width: 768px) {
  .sub_page .profile .company_table {
    margin: 40px 0 0;
  }
}
.sub_page .profile .company_table li {
  padding: 20px;
  border-radius: 10px;
  background: #e8f1f3;
  width: calc(50% - 5px);
  margin: 0 0 10px;
}
@media only screen and (max-width: 1200px) {
  .sub_page .profile .company_table li {
    width: 100%;
  }
}
.sub_page .profile .company_table li:nth-child(odd) {
  margin: 0 10px 10px 0;
}
@media only screen and (max-width: 1200px) {
  .sub_page .profile .company_table li:nth-child(odd) {
    margin: 0 0px 10px 0;
  }
}
.sub_page .profile .company_table .label {
  position: relative;
  padding-left: 12px;
  position: relative;
  line-height: 1.3;
  font-size: 13px;
  color: #848484;
  margin: 0 20px 0 0;
}
@media only screen and (max-width: 768px) {
  .sub_page .profile .company_table .label {
    font-size: 12px;
  }
}
.sub_page .profile .company_table .label:after {
  content: "";
  background: #a9d7ea;
  width: 3px;
  height: 18px;
  position: absolute;
  line-height: 1.4;
  left: 0;
  top: -1px;
}
.sub_page .profile .company_table .txt {
  font-size: 14px;
  font-weight: 600;
  margin: 5px 0 0 13px;
}
@media only screen and (max-width: 768px) {
  .sub_page .profile .company_table .txt {
    font-size: 13px;
  }
}
.sub_page .access .inner .right img {
  margin: 0 !important;
}
.sub_page .access .google_map {
  position: relative;
  margin: 10px 0 0px;
  border-radius: 20px;
  overflow: hidden;
}
.sub_page .access .company_dl {
  color: rgba(0, 0, 0, 0.7);
}
.sub_page .access .company_dl_inner {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  position: relative;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .sub_page .access .company_dl_inner {
    margin: 0 0 10px;
  }
}
.sub_page .access .company_dl_border {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(197, 199, 201, 0.8);
}
.sub_page .access .company_dl_dt {
  padding: 20px 0;
  width: 15vw;
  min-width: 15vw;
  font-size: max(0.7vw, 15px);
  font-weight: 700;
  line-height: 1.86;
  letter-spacing: 0.1em;
  color: #0058a4;
}
@media only screen and (max-width: 768px) {
  .sub_page .access .company_dl_dt {
    width: 100%;
    font-size: max(0.5vw, 14px);
    padding: 2vw 0 0;
  }
}
.sub_page .access .company_dl_dd {
  flex: 1;
  padding: 20px 0;
  font-size: max(0.7vw, 15px);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 768px) {
  .sub_page .access .company_dl_dd {
    width: 100%;
    font-size: max(0.5vw, 13px);
    padding: 0px 0 20px;
  }
}
.sub_page .customer {
  background: #ffffff;
}
.sub_page .customer .bg_txt {
  color: #d1eaef;
}
.sub_page .customer .right ul {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  .sub_page .customer .right ul {
    width: 100%;
  }
}
.sub_page .customer .right ul li {
  font-size: max(0.7vw, 14px);
  margin: 0 0 10px;
}
@media only screen and (max-width: 768px) {
  .sub_page .customer .right ul li {
    width: 100%;
    font-size: max(0.5vw, 12px);
  }
}
.sub_page .customer .right p {
  width: 100%;
  text-align: right;
  color: #848484;
  font-size: 13px;
}

/* ==========================================================================

	BUSINESS

========================================================================== */
.page_business .sub_page_top .inner .ja, .page_business .sub_page_top .inner .en {
  color: #0058a4;
}
.page_business .contents_section .inner .ca {
  top: -50%;
}
.page_business .business_list_title {
  margin: 30px 0 0;
}
.page_business .business_list_title li {
  margin: 0 0 18px;
}
.page_business .business_list_title li a {
  position: relative;
  padding-left: 12px;
  position: relative;
  line-height: 1.3;
  font-size: max(0.8vw, 18px);
  font-weight: bold;
  font-family: "Wix Madefor Display", "Noto Sans JP", sans-serif;
  color: #494949;
  margin: 0 20px 0 0;
}
@media only screen and (max-width: 768px) {
  .page_business .business_list_title li a {
    font-size: 14px;
  }
}
.page_business .business_list_title li a:after {
  content: "";
  background: #a9d7ea;
  width: 3px;
  height: 22px;
  position: absolute;
  line-height: 1.4;
  left: 0;
  top: 2px;
}
.page_business .business_list {
  margin: 60px auto 0;
}
.page_business .read_more_blue {
  color: #0058a4;
}
.page_business .business_title {
  position: relative;
  padding-left: 12px;
  position: relative;
  line-height: 1.3;
  font-size: max(0.9vw, 18px);
  font-weight: bold;
  font-family: "Wix Madefor Display", "Noto Sans JP", sans-serif;
  color: #494949;
  margin: 50px 20px 10px 0;
}
@media only screen and (max-width: 768px) {
  .page_business .business_title {
    font-size: 18px;
    margin: 30px 20px 10px 0;
  }
}
.page_business .business_title:after {
  content: "";
  background: #a9d7ea;
  width: 3px;
  height: 22px;
  position: absolute;
  line-height: 1.4;
  left: 0;
  top: 2px;
}
@media only screen and (max-width: 768px) {
  .page_business .business_title:after {
    height: 20px;
  }
}
.page_business .business_section {
  margin: 10px 0 0;
}
.page_business .business_section .business_contents {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}
@media only screen and (max-width: 768px) {
  .page_business .business_section .business_contents {
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }
}
.page_business .business_section .business_contents li {
  margin: 0;
  padding: 20px;
  border-radius: 10px;
  background: #e8f1f3;
}
@media only screen and (max-width: 768px) {
  .page_business .business_section .business_contents li {
    margin: 0;
    padding: 16px;
  }
}
.page_business .business_section .business_contents .business_subtitle {
  color: #0058a4;
  font-size: max(0.7vw, 15px);
  font-weight: bold;
  font-family: "Wix Madefor Display", "Noto Sans JP", sans-serif;
  margin: 0 0 5px;
}
@media only screen and (max-width: 768px) {
  .page_business .business_section .business_contents .business_subtitle {
    font-size: max(0.7vw, 13px);
  }
}
.page_business .business_section .business_contents .business_txt {
  font-size: max(0.6vw, 13px);
}
.page_business .business_section .photo_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  margin: 10px 0 0;
}
@media only screen and (max-width: 768px) {
  .page_business .business_section .photo_list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.page_business .business_section .photo_list p {
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .page_business .business_section .photo_list p {
    width: 100%;
  }
}
.page_business .business_section .photo_list p img {
  border-radius: 20px;
}
.page_business .business_01, .page_business .business_03, .page_business .business_05, .page_business .business_price {
  background: #ffffff;
}
.page_business .business_01 .bg_txt, .page_business .business_03 .bg_txt, .page_business .business_05 .bg_txt, .page_business .business_price .bg_txt {
  color: #d1eaef;
}
.page_business .business_02 .business_contents li, .page_business .business_04 .business_contents li, .page_business .business_06 .business_contents li {
  background: #ffffff !important;
}
.page_business .business_06 .business_contents {
  margin: 30px 0 0;
}
.page_business .business_price .txt {
  font-size: 14px;
  margin: 10px 0 0;
}
.page_business .business_price dl {
  background: #fff;
  letter-spacing: 0;
  font-size: 0;
  overflow: hidden;
  border-radius: 5px;
  align-items: stretch;
}
.page_business .business_price dl:nth-child(n+2) {
  margin-top: 8px;
}
.page_business .business_price dl dt {
  width: 124px;
  padding: 10px 20px;
  background: #0058a4;
  line-height: 1.8;
  font-size: 16px;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .page_business .business_price dl dt {
    width: 100%;
    font-size: max(0.7vw, 13px);
  }
}
.page_business .business_price dl dd {
  width: calc(100% - 124px);
  padding: 10px 20px;
  line-height: 1.8;
  font-size: 16px;
  color: #1A1A1A;
  background: #e8f1f3;
}
@media only screen and (max-width: 768px) {
  .page_business .business_price dl dd {
    width: 100%;
    font-size: max(0.5vw, 12px);
  }
}

.page_price .recruit_top {
  background: #d1eaef !important;
}

/* ==========================================================================

	INTERVIEW

========================================================================== */
.page_interview_top .recruit_top {
  background: #d1eaef !important;
  margin: 0px 0 0;
}
.page_interview_top .contents_section {
  padding: 10vh 0 260px;
}
@media only screen and (max-width: 768px) {
  .page_interview_top .contents_section {
    padding: 6vh 0 120px;
  }
}

@media only screen and (max-width: 768px) {
  .page_interview .contents_section {
    padding: 6vh 0 120px;
  }
}
.page_interview .comingsoon {
  padding: 200px 0;
}
.page_interview .comingsoon .ja {
  color: #0058a4;
  font-size: 3rem;
  text-align: center;
  letter-spacing: 1px;
}
.page_interview .comingsoon .en {
  color: #0058a4;
  font-size: 1.3rem;
  text-align: center;
}
.page_interview .sub_page_top .inner .ja, .page_interview .sub_page_top .inner .en {
  color: #0058a4;
}
@media only screen and (max-width: 768px) {
  .page_interview .sub_page_top .inner .ja, .page_interview .sub_page_top .inner .en {
    color: #d1eaef;
  }
}
.page_interview .interview_bg {
  position: absolute;
  width: 67%;
  opacity: 0.3;
  top: 0%;
  left: -15%;
  mix-blend-mode: hard-light;
}
.page_interview .section_read {
  margin: 0 0 60px;
}
@media only screen and (max-width: 768px) {
  .page_interview .section_read {
    margin: 10px 0 30px;
  }
}
@media only screen and (max-width: 768px) {
  .page_interview .read_more {
    font-size: 1.2rem;
  }
  .page_interview .read_more:before {
    width: 40px;
    height: 40px;
    top: 9px;
  }
  .page_interview .read_more:after {
    top: 20px;
    right: 21px;
    width: 17px;
  }
}
.page_interview .recruit_top {
  background-image: rgba(128, 208, 199, 0.7);
  background: #0058a4;
  margin: 0px 0 0;
}
.page_interview .slide-media {
  position: relative;
  overflow: hidden;
}
.page_interview .splide {
  z-index: 0;
}
.page_interview .interview_list .slide {
  width: 100%;
  height: 100%;
  position: relative;
}
.page_interview .interview_list .slide:before {
  content: "";
  position: absolute;
  top: 60px;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
@media only screen and (max-width: 768px) {
  .page_interview .interview_list .slide:before {
    top: 30px;
    height: 95%;
  }
}
.page_interview .bg-01:before {
  background: linear-gradient(to bottom right, #64ABFF, #C8B7FF);
}
.page_interview .bg-02:before {
  background: linear-gradient(170deg, #2CCECE, #96EBFF);
}
.page_interview .bg-03:before {
  background: linear-gradient(170deg, #60BAEA, #96EBFF);
}
.page_interview .interview_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 140px;
}
@media only screen and (max-width: 900px) {
  .page_interview .interview_list {
    grid-template-columns: 1fr;
    grid-row-gap: 120px;
  }
}
@media only screen and (max-width: 768px) {
  .page_interview .interview_list {
    grid-row-gap: 60px;
  }
}
.page_interview .interview_list li {
  cursor: pointer;
}
@media only screen and (min-width: 769px) {
  .page_interview .interview_list li:hover .slide-media img {
    transform: scale(1.1);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .page_interview .interview_list li:hover .read_more:before {
    background: #33ecff;
    transform: translateX(100%) scale(1.2);
  }
}
.page_interview .interview_list .slide-media {
  width: 88%;
  height: 280px;
  margin: 0px auto 0;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .page_interview .interview_list .slide-media {
    height: 190px;
  }
}
@media only screen and (max-width: 500px) {
  .page_interview .interview_list .slide-media {
    height: 160px;
  }
}
.page_interview .interview_list .slide-media .service_name {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #ffffff;
  padding: 3px 5px;
  font-size: 1.4rem;
  color: #0058a4;
}
@media only screen and (max-width: 768px) {
  .page_interview .interview_list .slide-media .service_name {
    display: none;
  }
}
.page_interview .interview_list .slide-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.page_interview .interview_list .person_img {
  position: absolute;
  width: 50%;
  bottom: -60px;
  right: 6%;
  z-index: 10;
}
@media only screen and (max-width: 1280px) {
  .page_interview .interview_list .person_img {
    width: 55%;
  }
}
@media only screen and (max-width: 900px) {
  .page_interview .interview_list .person_img {
    width: 45%;
  }
}
@media only screen and (max-width: 768px) {
  .page_interview .interview_list .person_img {
    bottom: -9px;
    width: 56%;
    right: 4%;
    max-width: 220px;
  }
}
.page_interview .interview_list .person_img img {
  vertical-align: bottom;
}
.page_interview .interview_list .slide-content {
  width: 40%;
  position: relative;
  z-index: 100;
  margin: 50px 0 0 7%;
}
@media only screen and (max-width: 768px) {
  .page_interview .interview_list .slide-content {
    width: 50%;
    margin: 40px 0 45px 7%;
  }
}
.page_interview .interview_list .slide-content * {
  color: #ffffff;
}
.page_interview .interview_list .slide-content .name {
  font-size: 40px;
  font-weight: bold;
  font-family: "Wix Madefor Display", "Noto Sans JP", sans-serif;
  line-height: 1;
}
@media only screen and (max-width: 1500px) {
  .page_interview .interview_list .slide-content .name {
    font-size: 3vw;
  }
}
@media only screen and (max-width: 768px) {
  .page_interview .interview_list .slide-content .name {
    font-size: max(10vw, 23px);
  }
}
.page_interview .interview_list .slide-content .time {
  font-size: 11px;
  margin: 0 0 3px 4px;
}
@media only screen and (max-width: 1500px) {
  .page_interview .interview_list .slide-content .time {
    font-size: 0.9vw;
  }
}
@media only screen and (max-width: 768px) {
  .page_interview .interview_list .slide-content .time {
    font-size: max(0.7vw, 11px);
  }
}
.page_interview .interview_list .slide-content .occupation {
  margin: 10px 0 0;
  font-size: 13px;
}
@media only screen and (max-width: 1500px) {
  .page_interview .interview_list .slide-content .occupation {
    font-size: 12px;
    margin: 4px 0 0;
  }
}
.page_interview .interview_list .slide-content .txt {
  margin: 20px 0 0;
  font-size: 19px;
}
@media only screen and (max-width: 1500px) {
  .page_interview .interview_list .slide-content .txt {
    margin: 20px 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .page_interview .interview_list .slide-content .txt {
    font-size: 12px;
  }
}

.bg-01 .sub_page_top {
  background: linear-gradient(to bottom right, #64ABFF, #C8B7FF);
}

.bg-02 .sub_page_top {
  background: linear-gradient(170deg, #2CCECE, #96EBFF);
}

.bg-03 .sub_page_top {
  background: linear-gradient(170deg, #60BAEA, #96EBFF);
}

@media only screen and (max-width: 768px) {
  .page_interview_content {
    height: 80vh;
  }
}
.page_interview_content .sub_page_top {
  min-height: 720px;
}
@media only screen and (max-width: 768px) {
  .page_interview_content .sub_page_top {
    height: 70vh;
    max-height: 520px;
    min-height: 300px;
  }
  .page_interview_content .sub_page_top .inner {
    top: 54%;
  }
}

.page_interview .sub_page_top .img_box {
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.page_interview .sub_page_top .person_img {
  position: absolute;
  right: 17%;
  bottom: -10px;
  width: 500px;
}
@media only screen and (max-width: 1550px) {
  .page_interview .sub_page_top .person_img {
    right: 9%;
    bottom: -10px;
    width: 480px;
  }
}
@media only screen and (max-width: 1080px) {
  .page_interview .sub_page_top .person_img {
    right: 4%;
  }
}
@media only screen and (max-width: 768px) {
  .page_interview .sub_page_top .person_img {
    right: -14%;
    top: 14%;
    width: 97%;
  }
}
.page_interview .sub_page_top .interview_en {
  color: #0058a4;
  font-size: max(0.7vw, 12px);
  font-weight: bold;
  font-family: "Wix Madefor Display", "Noto Sans JP", sans-serif;
  margin: 0 0 10px;
}
.page_interview .sub_page_top .interview_name .name {
  font-size: max(2vw, 60px);
  color: #ffffff;
  font-weight: bold;
  font-family: "Wix Madefor Display", "Noto Sans JP", sans-serif;
  margin: 0 20px 0 0;
}
@media only screen and (max-width: 768px) {
  .page_interview .sub_page_top .interview_name .name {
    font-size: max(1.2vw, 40px);
    line-height: 1;
    margin: 0 0 5px;
    color: #ffffff;
  }
}
.page_interview .sub_page_top .interview_name .service_name {
  font-size: max(0.7vw, 14px);
  margin: 0 20px 0 0;
  color: #ffffff;
}
@media only screen and (max-width: 768px) {
  .page_interview .sub_page_top .interview_name .service_name {
    color: #ffffff;
  }
}
.page_interview .sub_page_top .interview_name .year {
  color: #ffffff;
}
@media only screen and (max-width: 768px) {
  .page_interview .sub_page_top .interview_name .year {
    color: #ffffff;
  }
}
.page_interview .sub_page_top .interview_top_read {
  font-size: max(0.8vw, 28px);
  width: 45%;
  margin: 30px 0 0;
  color: #ffffff;
}
@media only screen and (max-width: 768px) {
  .page_interview .sub_page_top .interview_top_read {
    font-size: max(0.9vw, 17px);
    color: #ffffff;
    width: 100%;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  }
}
.page_interview .sub_page_top .interview_profile {
  width: 50%;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 30px;
  margin: 30px 0 0;
}
@media only screen and (max-width: 768px) {
  .page_interview .sub_page_top .interview_profile {
    width: 100%;
    padding: 16px;
  }
}
.page_interview .sub_page_top .interview_profile .label {
  color: #46b0d6;
  font-size: 2rem;
  font-weight: bold;
  font-family: "Wix Madefor Display", "Noto Sans JP", sans-serif;
  margin: 0 0 10px;
}
@media only screen and (max-width: 768px) {
  .page_interview .sub_page_top .interview_profile .label {
    font-size: 1.7rem;
  }
}
.page_interview .sub_page_top .interview_profile .txt {
  font-size: 1.3rem;
  color: #494949;
}
.page_interview .interview_section_01 {
  padding-top: 0px;
}
@media only screen and (max-width: 768px) {
  .page_interview .interview_section_01 {
    padding-top: 0px;
  }
}
.page_interview .interview_section_01 .interview_profile {
  width: 50%;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px;
  margin: 30px 0 0;
}
@media only screen and (max-width: 768px) {
  .page_interview .interview_section_01 .interview_profile {
    width: calc(100% - 40px);
    padding: 16px;
    margin: 0 auto 60px;
  }
}
.page_interview .interview_section_01 .interview_profile .label {
  color: #46b0d6;
  font-size: 2rem;
  font-weight: bold;
  font-family: "Wix Madefor Display", "Noto Sans JP", sans-serif;
  margin: 0 0 10px;
}
@media only screen and (max-width: 768px) {
  .page_interview .interview_section_01 .interview_profile .label {
    font-size: 1.7rem;
  }
}
.page_interview .interview_section_01 .interview_profile .txt {
  font-size: 1.3rem;
  color: #494949;
}
.page_interview .interview_section {
  margin: 12vh auto 12vh;
  max-width: 1200px;
}
@media only screen and (max-width: 768px) {
  .page_interview .interview_section {
    margin: 6vh 0px 12vh;
  }
}
.page_interview .interview_section .inner {
  position: relative;
}
.page_interview .interview_section .inner .side_txt {
  color: #0058a4;
  position: absolute;
  top: 0;
  left: -50px;
  font-weight: bold;
  font-family: "Wix Madefor Display", "Noto Sans JP", sans-serif;
}
@media only screen and (min-width: 769px) {
  .page_interview .interview_section .inner .side_txt {
    writing-mode: vertical-rl;
  }
}
@media only screen and (max-width: 768px) {
  .page_interview .interview_section .inner .side_txt {
    top: -26px;
    left: 0px;
  }
}
.page_interview .interview_section .interview_read {
  font-size: max(1vw, 28px);
  color: #0058a4;
  margin: 0 0 20px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .page_interview .interview_section .interview_read {
    font-size: max(1vw, 22px);
  }
}
.page_interview .interview_section .interview_txt {
  font-size: max(0.8vw, 15px);
  line-height: 2;
}
@media only screen and (max-width: 768px) {
  .page_interview .interview_section .interview_txt {
    font-size: max(1vw, 13px);
  }
}
.page_interview .interview_section .img {
  border-radius: 20px;
  overflow: hidden;
  margin: 40px 0 20px auto;
  width: 75%;
}
@media only screen and (max-width: 768px) {
  .page_interview .interview_section .img {
    width: 100%;
    margin: 20px 0 20px auto;
  }
}
.page_interview .interview_section .img img {
  vertical-align: bottom;
}
.page_interview .interview_section .img_left {
  margin: 40px auto 20px 0;
}
@media only screen and (max-width: 768px) {
  .page_interview .interview_section .img_left {
    margin: 20px auto 20px 0;
  }
}
.page_interview .interview_message {
  padding-top: 60px;
}
@media only screen and (max-width: 768px) {
  .page_interview .interview_message {
    padding-top: 0px;
  }
}
.page_interview .interview_message .box {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  position: relative;
  max-width: calc(100% - 40px);
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .page_interview .interview_message .box {
    padding: 30px;
  }
}
.page_interview .interview_message .box .left {
  width: 45%;
  padding: 0 6% 0 5%;
}
@media only screen and (max-width: 768px) {
  .page_interview .interview_message .box .left {
    width: 100%;
    padding: 0 6% 0 5%;
  }
}
.page_interview .interview_message .box .left .img {
  width: 100%;
  position: relative;
  overflow: visible;
}
.page_interview .interview_message .box .left .img img {
  border-radius: 30px;
  position: relative;
  z-index: 10;
}
.page_interview .interview_message .box .left .img:before {
  content: "";
  background-image: radial-gradient(#7bded9 30%, transparent 30%);
  background-size: 20px 20px;
  width: 100%;
  height: 100%;
  transform: rotate(18deg);
  position: absolute;
  border-radius: 30px;
  left: 0;
  top: 0;
  z-index: 0;
}
@media only screen and (max-width: 768px) {
  .page_interview .interview_message .box .left .img:before {
    background-size: 10px 10px;
  }
}
.page_interview .interview_message .box .right {
  width: 55%;
}
@media only screen and (max-width: 768px) {
  .page_interview .interview_message .box .right {
    width: 100%;
    margin: 40px 0;
  }
}
.page_interview .interview_message .box .label {
  color: #46b0d6;
  font-size: 2rem;
  font-weight: bold;
  font-family: "Wix Madefor Display", "Noto Sans JP", sans-serif;
  margin: 0 0 5px;
}
@media only screen and (max-width: 768px) {
  .page_interview .interview_message .box .label {
    font-size: 1.8rem;
  }
}
.page_interview .interview_message .box .label_txt {
  color: #a9d7ea;
  font-size: 1.4rem;
  margin: 0 0 20px;
}
@media only screen and (max-width: 768px) {
  .page_interview .interview_message .box .label_txt {
    font-size: 1.2rem;
  }
}
.page_interview .interview_message .box .title {
  font-size: 2.2rem;
  font-weight: bold;
  font-family: "Wix Madefor Display", "Noto Sans JP", sans-serif;
  margin: 0 0 5px;
}
@media only screen and (max-width: 768px) {
  .page_interview .interview_message .box .title {
    font-size: 2rem;
  }
}
.page_interview .interview_message .box .txt {
  font-size: 1.4rem;
  line-height: 1.8;
}
.page_interview .interview_message .box .ca {
  font-size: 90px;
  opacity: 0.5;
  color: #a9d7ea;
  position: absolute;
  bottom: 6%;
  right: 6%;
  transform: rotate(-10deg);
  z-index: 12;
  font-family: "Caveat", cursive;
}
@media only screen and (max-width: 1500px) {
  .page_interview .interview_message .box .ca {
    font-size: 6vw;
  }
}
@media only screen and (max-width: 768px) {
  .page_interview .interview_message .box .ca {
    font-size: 46px;
    bottom: -2%;
  }
}
.page_interview .interview_top {
  padding: 0;
}
.page_interview .interview_top .bg {
  background-image: rgba(0, 147, 233, 0.7);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  padding: 0 0 40px;
}
.page_interview .interview_top .inner {
  border-radius: 0px;
  -webkit-backdrop-filter: blur(0px);
          backdrop-filter: blur(0px);
  background: transparent;
  padding: 0;
}
.page_interview .interview_top .inner .ca {
  color: #a9d7ea;
  right: 0%;
}
@media only screen and (max-width: 768px) {
  .page_interview .interview_top .inner .ca {
    left: auto;
    right: 0%;
    z-index: 1;
    opacity: 0.6;
  }
}
.page_interview .interview_top .txtbox {
  padding: 70px 0 40px;
}
@media only screen and (max-width: 768px) {
  .page_interview .interview_top .txtbox {
    padding: 40px 0 0px;
  }
}
.page_interview .interview_top .service_name {
  display: none;
}
@media only screen and (max-width: 768px) {
  .page_interview .interview_top .splide-controller {
    margin-top: 3.2rem;
  }
}
@media only screen and (max-width: 768px) {
  .page_interview .interview_top .splide__arrow--next {
    right: 0;
  }
}
@media only screen and (max-width: 768px) {
  .page_interview .interview_top .splide__arrows {
    gap: 8px;
  }
}
.page_interview .interview_top .l-inner {
  position: relative;
  box-sizing: content-box;
  margin: 30px auto 0;
  padding: 0 3vw 0px;
  max-width: 1300px;
  width: calc(100% - 17vw);
}
@media only screen and (max-width: 768px) {
  .page_interview .interview_top .slide-content {
    margin: 25px 0 25px 7%;
  }
}
.page_interview .interview_top .interview_card .slide-media {
  height: 200px;
}
@media only screen and (max-width: 768px) {
  .page_interview .interview_top .interview_card .slide-media {
    height: 100%;
  }
}

.page_interview_hero .inner {
  position: relative;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  filter: blur(5px) brightness(1.7);
  z-index: 100;
}
.page_interview_hero .person_img {
  transform: translateY(30px) scale(1);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  filter: blur(5px) brightness(1.7);
}

.is-load .page_interview_hero .inner {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
  filter: blur(0px) brightness(1);
  transition: transform 1s cubic-bezier(0.21, 0.75, 0.38, 0.95), opacity 1.5s ease, filter 1s ease;
  transition: transform 1s cubic-bezier(0.21, 0.75, 0.38, 0.95), opacity 1.5s ease, filter 1.5s ease;
}
.is-load .page_interview_hero .person_img {
  transform: translateY(0px) scale(1);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
  filter: blur(0px) brightness(1);
  transition: transform 1s cubic-bezier(0.21, 0.75, 0.38, 0.95) 0.5s, opacity 1.5s ease 0.5s, filter 1s ease 0.5s;
  transition: transform 1s cubic-bezier(0.21, 0.75, 0.38, 0.95) 0.5s, opacity 1.5s ease 0.5s, filter 1.5s ease 0.5s;
}

/* ==========================================================================

	RECRUIT

========================================================================== */
.page_recruit .sub_page_top .inner .ja, .page_recruit .sub_page_top .inner .en {
  color: #0058a4;
}
@media only screen and (max-width: 768px) {
  .page_recruit .sub_page_top .inner .ja, .page_recruit .sub_page_top .inner .en {
    color: #d1eaef;
  }
}
.page_recruit .recruit_top {
  background: #d1eaef;
}
.page_recruit .motto_list {
  margin: 60px 0 0;
  background: #ffffff;
  padding: 40px 30px 30px;
  border-radius: 20px;
  position: relative;
  z-index: 10;
}
@media only screen and (max-width: 768px) {
  .page_recruit .motto_list {
    margin: 30px 0 0;
  }
}
.page_recruit .motto_list .en {
  color: #0058a4;
  font-size: 38px;
  position: absolute;
  top: -25px;
  left: 30px;
}
@media only screen and (max-width: 768px) {
  .page_recruit .motto_list .en {
    font-size: 32px;
    position: absolute;
    top: -23px;
  }
}
.page_recruit .motto_list li {
  margin: 0 0 10px;
}
.page_recruit .motto_list li .title {
  font-size: 19px;
  color: #0058a4;
  position: relative;
  margin: 0 10px 0 0;
  background: #0058a4;
  width: 40px;
  height: 40px;
  color: #ffffff;
  text-align: center;
  border-radius: 50%;
  padding: 6px 0 0;
  font-weight: bold;
  font-family: "Wix Madefor Display", "Noto Sans JP", sans-serif;
}
@media only screen and (max-width: 768px) {
  .page_recruit .motto_list li .title {
    width: 36px;
    height: 36px;
    font-size: 17px;
  }
}
.page_recruit .motto_list li .txt {
  font-size: 21px;
  font-weight: bold;
  font-family: "Wix Madefor Display", "Noto Sans JP", sans-serif;
  width: calc(100% - 50px);
}
@media only screen and (max-width: 768px) {
  .page_recruit .motto_list li .txt {
    font-size: 18px;
  }
}
.page_recruit .informartion {
  background: #ffffff;
}
.page_recruit .informartion .bg_txt {
  color: #d1eaef;
}
.page_recruit .informartion .information_block {
  background: #e8f1f3;
  padding: 20px 30px 10px 30px;
  border-radius: 20px;
  margin: 0 0 20px;
}
.page_recruit .informartion .title {
  position: relative;
  line-height: 1.3;
  font-size: max(0.8vw, 16px);
  font-weight: bold;
  margin: 0px 20px 20px 0;
}
@media only screen and (max-width: 768px) {
  .page_recruit .informartion .title {
    font-size: max(0.7vw, 16px);
  }
}
.page_recruit .informartion dl {
  background: #fff;
  letter-spacing: 0;
  font-size: 0;
  overflow: hidden;
  border-radius: 5px;
  align-items: stretch;
}
.page_recruit .informartion dl:nth-child(n+2) {
  margin-top: 8px;
}
.page_recruit .informartion dl dt {
  width: 124px;
  padding: 5px 20px 5px 30px;
  background: #0058a4;
  line-height: 1.8;
  font-size: 14px;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .page_recruit .informartion dl dt {
    width: 100%;
	padding: 3px 20px 3px 30px;  
    font-size: 12px;
  }
}
.page_recruit .informartion dl dd {
  width: calc(100% - 124px);
  padding: 5px 20px 5px 20px;
  line-height: 1.8;
  font-size: 14px;
  color: #1A1A1A;
}
@media only screen and (max-width: 768px) {
  .page_recruit .informartion dl dd {
    width: 100%;
    padding: 3px 20px 3px 30px;  
    font-size: 12px;
  }
}
.page_recruit .contact .tel {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  letter-spacing: 0;
  font-size: 0;
}
.page_recruit .contact .tel .sec {
  background: #F7F7F7;
  width: 50%;
  height: 120px;
  padding: 0 10px 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .page_recruit .contact .tel .sec {
    width: 100%;
  }
}
.page_recruit .contact .tel .sec:nth-child(1) {
  border-right: 1px #FFF solid;
}
.page_recruit .contact .tel .sec a {
  padding-left: 48px;
  position: relative;
  display: inline-block;
  line-height: 40px;
  letter-spacing: 3px;
  font-weight: 500;
  font-size: 32px;
  color: #0058a4;
}
@media only screen and (max-width: 768px) {
  .page_recruit .contact .tel .sec a {
    padding-left: 38px;
    font-size: 28px;
    letter-spacing: 2px;
  }
}
.page_recruit .contact .tel .sec a .icon {
  width: 37px;
  height: 37px;
  position: absolute;
  left: 7px;
  top: calc(50% - 17px);
  display: block;
}
@media only screen and (max-width: 768px) {
  .page_recruit .contact .tel .sec a .icon {
    left: 2px;
    top: calc(50% - 14px);
  }
}
.page_recruit .contact .tel .txt {
  width: 100%;
  text-align: center !important;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 10px;
  font-size: 16px;
  color: #848484;
}

/* ==========================================================================

	check_zone

========================================================================== */
.check_zone .control {
  display: block;
  position: relative;
  padding: 6px 0 0 30px;
  margin: 0;
  cursor: pointer;
  font-size: 13px;
}
.check_zone .control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
@media only screen and (max-width: 768px) {
  .check_zone .control {
    height: auto;
    margin: 0;
    padding: 6px 0 0 30px;
    font-size: 1.3rem !important;
  }
}
.check_zone .control__indicator {
  position: absolute;
  top: 8px;
  left: 0;
  height: 20px;
  width: 20px;
  background: #ffffff;
}
.check_zone .control--radio .control__indicator {
  border-radius: 50%;
}
.check_zone .control:hover input ~ .control__indicator,
.check_zone .control input:focus ~ .control__indicator {
  background: #ccc;
}
.check_zone .control input:checked ~ .control__indicator {
  background: #000;
}
.check_zone .control:hover input:not([disabled]):checked .control__indicator,
.check_zone .control input:checked:focus .control__indicator {
  background: #0e647d;
}
.check_zone .control input:disabled .control__indicator {
  background: #e6e6e6;
  opacity: 0.6;
  pointer-events: none;
}
.check_zone .control__indicator:after {
  content: "";
  position: absolute;
  display: none;
}
.check_zone .control input:checked ~ .control__indicator:after {
  display: block;
}
.check_zone .control--checkbox .control__indicator:after {
  left: 7px;
  top: 4px;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.check_zone .control--checkbox input:disabled ~ .control__indicator:after {
  border-color: #fff;
}
.check_zone .control--radio .control__indicator:after {
  left: 7px;
  top: 7px;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: #fff;
}
.check_zone .control--radio input:disabled ~ .control__indicator:after {
  background: #7b7b7b;
}

/* ==========================================================================

	modal

========================================================================== */
#modal-content {
  width: 90%;
  margin: 0;
  padding: 0;
  background: #fff;
  position: fixed;
  display: none;
  z-index: 99999;
  max-width: 1600px;
}

#modal-content .modal_inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
}

#modal-content .modal_inner #player {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

#modal-overlay {
  z-index: 9999;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-color: rgba(0, 0, 0, 0.75);
}

.modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200000;
}
.modal__bg {
  background: rgba(0, 0, 0, 0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
}
.modal__content {
  background: #fff;
  left: 50%;
  padding: 40px;
  border-radius: 6px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  min-width: 600px;
  overflow: scroll;
}
@media only screen and (max-width: 768px) {
  .modal__content {
    min-width: 100px;
    width: calc(100% - 40px);
    padding: 30px 20px;
  }
}
.modal__content .title {
  font-size: 16px !important;
  font-weight: bold;
  font-family: "Wix Madefor Display", "Noto Sans JP", sans-serif;
  margin: 0 0 2px;
  letter-spacing: 0 !important;
  text-align: left;
}
.modal__content ul {
  margin: 20px auto;
}
.modal__content ul li:not(:last-child) {
  margin: 0 0 12px;
}
.modal__content .subtitle {
  font-size: 13px;
  font-weight: bold;
  font-family: "Wix Madefor Display", "Noto Sans JP", sans-serif;
  margin: 0 0 2px;
  text-align: left;
}
.modal__content .txt {
  font-size: 12px;
  color: #494949;
  text-align: left;
}
.modal .method_body {
  background: #f7f7f7;
  position: relative;
  padding: 20px;
  margin: 30px 0 0;
}
.modal .method_body input {
  background: #fff;
  border: 1px solid #848484;
}
.modal .method_body ::-moz-placeholder {
  color: #848484;
}
.modal .method_body ::placeholder {
  color: #848484;
}
.modal .method_body .number {
  margin: 0 0 20px;
}
.modal .method_body .name {
  margin: 0 0 20px;
}
.modal .card_info {
  background: #f7f7f7;
  position: relative;
  padding: 20px;
  margin: 30px 0 0;
}
.modal .btn_list {
  margin: 30px auto 0;
}
.modal .btn_list li .card_add {
  border: 1px solid #29302a;
  background: #29302a;
  color: #fff;
  border-radius: 4px;
  display: inline-block;
  padding: 6px 20px;
  font-size: 1.1rem;
  cursor: pointer;
}
.modal .btn_list li .modal_close {
  border: 1px solid #d8d8d8;
  color: #474747;
  border-radius: 4px;
  display: inline-block;
  padding: 6px 20px;
  font-size: 1.1rem;
  margin: 0px 0 0 10px;
}

/* ==========================================================================

	共通情報入力部分

========================================================================== */
input[type=text],
input[type=tel],
input[type=email],
input[type=time],
input[type=date],
input[type=password],
select,
textarea {
  box-sizing: border-box;
  font-size: 1.3rem;
  padding: 10px 15px;
  border-radius: 5px;
  border: 1px solid #e5e5e5;
  line-height: 180%;
  background: #f7f7f7;
  color: #494949;
  outline: none;
  transition: 0.2s ease all;
  font-size: 1.5rem;
}
@media only screen and (max-width: 768px) {
  input[type=text],
  input[type=tel],
  input[type=email],
  input[type=time],
  input[type=date],
  input[type=password],
  select,
  textarea {
    padding: 6px 12px;
  }
}

input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=time]:focus,
input[type=date]:focus,
input[type=password]:focus,
textarea:focus {
  background: #fff;
  border-color: #a9d7ea;
}

input[type=submit] {
  outline: none;
}

::-moz-placeholder {
  color: #d8d8d8;
}

::placeholder {
  color: #d8d8d8;
}

.select_label {
  position: relative;
}
.select_label::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 11px;
  height: 11px;
  margin: 0px 0px 2px 10px;
  background: url(../img/common/arrow_b.svg) no-repeat;
  background-size: contain;
  vertical-align: sub;
  top: 50%;
  right: 20px;
  margin-top: -3px;
}

.select_half {
  width: calc(50% - 10px);
}
@media only screen and (max-width: 768px) {
  .select_half {
    width: calc(50% - 5px);
  }
}

.select_all {
  width: 100%;
}

.select_birth {
  padding: 10px 45px 10px 15px;
}

.radio_btn input[type=radio] {
  display: none;
}

.radio_btn label {
  position: relative;
  display: block;
  padding: 5px 20px 3px 27px;
  cursor: pointer;
  font-size: 14px;
  line-height: 180%;
}

.radio_btn label::before {
  position: absolute;
  content: "";
  top: 47%;
  left: 0;
  width: 18px;
  height: 18px;
  margin-top: -8px;
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 100%;
  transition: background 0.25s linear;
  -webkit-transition: background 0.25s linear;
}

.radio_btn input[type=radio]:checked + label::after {
  position: absolute;
  content: "";
  top: 47%;
  left: 4px;
  width: 10px;
  height: 10px;
  margin-top: -4px;
  background: #a9d7ea;
  border-radius: 100%;
}

input[type=radio]:focus {
  outline: 0;
}

.login_box {
  background: #f7f7f7;
  border-radius: 2px;
  border: 1px solid #e5e5e5;
  width: 100%;
  position: relative;
  padding: 50px;
}
@media only screen and (max-width: 768px) {
  .login_box {
    padding: 20px;
  }
}
.login_box .label {
  width: 130px;
  margin-right: 10px;
}
@media only screen and (max-width: 768px) {
  .login_box .label {
    width: 100%;
    margin: 0 0 10px 0;
  }
}
.login_box .input_box {
  width: calc(100% - 140px);
}
@media only screen and (max-width: 768px) {
  .login_box .input_box {
    width: 100%;
    margin: 0;
  }
}
.login_box .login_mail {
  margin: 0 auto 12px;
}
.login_box input {
  background: #fff;
}
.login_box .btn_area {
  width: 100%;
  max-width: 300px;
  margin: 30px auto 12px;
}
.login_box .btn_area .login {
  font-size: 1.3rem;
  padding: 12px 10px;
}
.login_box .forget_password {
  text-align: center;
}
.login_box .forget_password a {
  display: inline-block;
  font-size: 1.1rem;
}
.login_box .error_box {
  margin: 40px 0 0;
}
.login_box .error_box .error {
  color: #df3b1b !important;
  text-align: center;
  font-size: 13px;
}

.input_all {
  width: 100%;
}

.input_half {
  width: calc(50% - 10px);
}
@media only screen and (max-width: 768px) {
  .input_half {
    width: calc(50% - 5px);
  }
}

.input_200 {
  width: 200px;
}
@media only screen and (max-width: 768px) {
  .input_200 {
    width: calc(50% - 5px);
    min-height: 51px;
  }
}

.user_area {
  width: 100%;
}
.user_area .subtitle {
  font-size: 1.6rem;
  font-weight: bold;
  font-family: "Wix Madefor Display", "Noto Sans JP", sans-serif;
  margin: 30px 0 0 10px;
}
@media only screen and (max-width: 768px) {
  .user_area .subtitle {
    margin: 30px 0 0 0px;
  }
}
.user_area .user_info .item {
  position: relative;
  margin: 0;
  border-bottom: 1px solid #e5e5e5;
  padding: 26px 0;
}
@media only screen and (max-width: 768px) {
  .user_area .user_info .item {
    padding: 20px 0;
  }
}
.user_area .user_info .item .user_left {
  width: 140px;
  margin: 6px 0 0 0;
  font-size: 1.4rem;
  font-weight: bold;
  color: #494949;
}
@media only screen and (max-width: 768px) {
  .user_area .user_info .item .user_left {
    width: 100%;
    margin: 0 0 11px 0;
    padding: 0;
  }
}
.user_area .user_info .item .user_left .required {
  position: relative;
  display: inline-block;
}
.user_area .user_info .item .user_left .required:after {
  content: "*";
  position: absolute;
  top: 1px;
  right: -10px;
  bottom: 0;
  display: block;
  font-size: 1.2rem;
  line-height: 1;
  color: #df3b1b;
}
.user_area .user_info .item .user_right {
  width: calc(100% - 150px);
}
@media only screen and (max-width: 768px) {
  .user_area .user_info .item .user_right {
    width: 100%;
  }
}
.user_area .user_info .item .user_right .contents .label {
  margin: 0 0 6px;
  color: #494949;
}
.user_area .user_info .item .user_right .mb {
  margin: 0 0 16px;
}
.user_area .user_info .item .user_right .hint {
  color: #848484;
  font-size: 1.1rem;
  margin: 10px 0 0 2px;
}
.user_area .user_info .error_box {
  margin: 10px 0 0;
}
.user_area .user_info .error_txt {
  color: #df3b1b;
  font-size: 1.2rem;
  font-weight: bold;
  font-family: "Wix Madefor Display", "Noto Sans JP", sans-serif;
  padding: 5px 0;
}

.flow_number_area {
  position: relative;
  margin: 0 auto 40px;
  width: 100%;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .flow_number_area {
    margin: 20px auto 30px;
  }
}
.flow_number_area .flow_number_list {
  position: relative;
  display: inline-flex;
}
.flow_number_area .flow_number_list:after {
  content: "";
  position: absolute;
  display: block;
  background: #E9E6E6;
  width: calc(100% - 20rem);
  height: 0.1rem;
  top: 1.5rem;
  left: 9.4rem;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .flow_number_area .flow_number_list:after {
    width: 80%;
    height: 0.1rem;
    top: 15%;
    left: 10%;
  }
}
.flow_number_area .flow_number_list li {
  width: 20.225rem;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .flow_number_area .flow_number_list li {
    max-width: 120px;
  }
}
.flow_number_area .flow_number_list li span {
  border: 1px solid #848484;
  background: #848484;
  color: #fff;
  text-align: center;
  padding: 4px 0 0;
  height: 30px;
  width: 30px;
  display: inline-block;
  border-radius: 50%;
  font-size: 13px;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .flow_number_area .flow_number_list li span {
    height: 30px;
    width: 30px;
    font-size: 1.2rem;
    padding: 5px 0 0;
    margin: 0;
  }
}
.flow_number_area .flow_number_list li p {
  font-size: 1.3rem;
  color: #848484;
  display: block;
  text-align: center;
  margin: 10px 0 0;
  width: 100%;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .flow_number_area .flow_number_list li p {
    font-size: 11px;
    height: 40px;
  }
}
.flow_number_area .flow_number_list li.active span {
  border: 1px solid #a9d7ea;
  background: #a9d7ea;
  color: #fff;
}
.flow_number_area .flow_number_list li.active p {
  font-size: 1.3rem;
  font-weight: bold;
  font-family: "Wix Madefor Display", "Noto Sans JP", sans-serif;
  color: #a9d7ea;
}
@media only screen and (max-width: 768px) {
  .flow_number_area .flow_number_list li.active p {
    font-size: 11px;
  }
}
.flow_number_area .flow_number_list li.done span {
  border: 1px solid #848484;
  background: #848484;
  color: #fff;
}
.flow_number_area .flow_number_list li.done p {
  font-size: 1.3rem;
  font-weight: bold;
  color: #848484;
}
@media only screen and (max-width: 768px) {
  .flow_number_area .flow_number_list li.done p {
    font-size: 11px;
  }
}
.flow_number_area .flow_number_list li:not(last-child) {
  margin-right: 0px;
}
@media only screen and (max-width: 768px) {
  .flow_number_area .flow_number_list li:not(last-child) {
    margin-right: 0px;
  }
}

/* ==========================================================================

	contact

========================================================================== */
.page_contact .sub_page_top {
  height: 40vh;
  min-height: 500px;
}
@media only screen and (max-width: 768px) {
  .page_contact .sub_page_top {
    min-height: 300px;
  }
}
.page_contact .sub_page_top .inner .ja, .page_contact .sub_page_top .inner .en {
  color: #ffffff;
}
@media only screen and (max-width: 768px) {
  .page_contact .sub_page_top .inner .ja, .page_contact .sub_page_top .inner .en {
    color: #ffffff;
  }
}
.page_contact .contents_section .inner .left {
  width: 200px;
}
@media only screen and (max-width: 1000px) {
  .page_contact .contents_section .inner .left {
    width: 100%;
  }
}
.page_contact .contents_section .inner .right {
  width: calc(100% - 200px);
}
@media only screen and (max-width: 1000px) {
  .page_contact .contents_section .inner .right {
    width: 100%;
    margin: 40px 0 0;
  }
}

.contact_nav {
  position: relative;
}
@media only screen and (max-width: 1000px) {
  .contact_nav {
    display: none;
  }
}
.contact_nav:after {
  content: "";
  width: 1px;
  height: calc(50% - 8px);
  position: absolute;
  top: 8px;
  left: 4px;
}
.contact_nav:before {
  content: "";
  width: 1px;
  height: calc(50% - 8px);
  position: absolute;
  bottom: 9px;
  left: 4px;
}
.contact_nav li {
  padding-left: 33px;
  position: relative;
  z-index: 1;
  line-height: 1;
  font-size: 13px;
}
.contact_nav li:nth-child(n+2) {
  margin-top: 68px;
}
.contact_nav li:after {
  content: "";
  background: #ffffff;
  width: 9px;
  height: 9px;
  border-radius: 20px;
  position: absolute;
  top: 4px;
  left: 0;
}
.contact_nav li span {
  padding-bottom: 9px;
  position: relative;
  display: inline-block;
}
.contact_nav li span:after {
  content: "";
  background: #0058a4;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}

#contact {
  margin: 0 auto 0;
  position: relative;
}
@media only screen and (max-width: 768px) {
  #contact {
    padding: 0;
    margin: 0px auto 100px;
  }
}
#contact .btn_area {
  width: 660px;
  margin: 50px auto 50px;
}
@media only screen and (max-width: 768px) {
  #contact .btn_area {
    width: 100%;
    max-width: 680px;
    padding: 0 0px;
  }
}
#contact .btn_area .item_btn {
  width: 320px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  #contact .btn_area .item_btn {
    width: 100%;
    margin: 0 0 10px;
  }
}
#contact .contact-inner {
  width: 100%;
  position: relative;
  margin: 40px auto;
}
@media only screen and (max-width: 768px) {
  #contact .contact-inner {
    width: 100%;
    margin: 20px auto 0;
    padding: 0px;
    background: rgba(255, 255, 255, 0);
  }
  #contact .contact-inner input[type=text], #contact .contact-inner input[type=tel], #contact .contact-inner input[type=email], #contact .contact-inner input[type=time], #contact .contact-inner input[type=date], #contact .contact-inner input[type=password], #contact .contact-inner select, #contact .contact-inner textarea {
    background: #fff;
  }
}
#contact .contact-inner select {
  width: 100%;
}

.contact_index .contact_nav:after,
.contact_index .contact_nav:before {
  background: #ffffff;
}

.contact_confirm .contact_nav:after {
  background: #0058a4;
}

.contact_confirm .contact_nav:before {
  background: #ffffff;
}

.contact_thanks .contact_nav:after,
.contact_thanks .contact_nav:before {
  background: #0058a4;
}

.contact_index .contact_nav li:nth-child(1):after {
  background: #0058a4;
}

.contact_confirm .contact_nav li:nth-child(1):after,
.contact_confirm .contact_nav li:nth-child(2):after {
  background: #0058a4;
}

.contact_thanks .contact_nav li:nth-child(1):after,
.contact_thanks .contact_nav li:nth-child(2):after,
.contact_thanks .contact_nav li:nth-child(3):after {
  background: #0058a4;
}

@media only screen and (max-width: 768px) {
  .contact_thanks #contact {
    padding: 0;
    margin: 60px auto 100px;
  }
}

.page_contact .user_area .user_info .item .user_left {
  width: 250px;
  position: relative;
  padding: 0 10px 0 0;
}
@media only screen and (max-width: 768px) {
  .page_contact .user_area .user_info .item .user_left {
    width: 100%;
    padding: 0;
  }
}
.page_contact .user_area .user_info .item .user_left .mark {
  position: absolute;
  right: 20px;
  top: 0;
  border: 2px solid #000;
  font-size: 1rem;
  padding: 4px 8px;
  border-radius: 17px;
}
@media only screen and (max-width: 768px) {
  .page_contact .user_area .user_info .item .user_left .mark {
    right: 0px;
    top: -5px;
  }
}
.page_contact .user_area .user_info .item .user_left .mark_required {
  color: #df3b1b;
  border: 2px solid #df3b1b;
}
.page_contact .user_area .user_info .item .user_left .mark_free {
  color: #494949;
  border: 2px solid #494949;
}
.page_contact .user_area .user_info .item .user_right {
  width: calc(100% - 250px);
  font-size: 1.3rem;
  font-weight: bold;
  font-family: "Wix Madefor Display", "Noto Sans JP", sans-serif;
  color: #494949;
  margin: 6px 0 0 0;
}
@media only screen and (max-width: 768px) {
  .page_contact .user_area .user_info .item .user_right {
    width: 100%;
  }
}
.page_contact .user_area .user_info .item .confirm_bg {
  padding: 17px;
  background: #fff;
  border-radius: 11px;
  margin: 0;
}
.page_contact .memo {
  margin: 10px 0 0 0;
  font-size: 1.2rem;
  color: #848484;
}
.page_contact textarea {
  min-height: 200px;
}
.page_contact .check_area {
  margin: 60px auto 0;
  font-size: 1.2rem;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .page_contact .check_area {
    margin: 30px auto 0;
  }
}
.page_contact .check_area .check_btn {
  width: 199px;
  margin: 20px auto 0;
}
.page_contact .check_area .check_zone .control {
  padding: 8px 0 0 30px;
}
/* ==========================================================================

	freepage

========================================================================== */
.free_page_inner {
  max-width: 980px;
  margin: 150px auto 90px;
  padding: 0 20px;
}
@media only screen and (max-width: 768px) {
  .free_page_inner {
    margin: 110px auto 90px;
  }
}
.free_page_inner .title {
  font-size: 22px;
  margin: 0 0 16px;
  font-weight: bold;
  font-family: "Wix Madefor Display", "Noto Sans JP", sans-serif;
}
.free_page_inner .lead_txt {
  font-size: 14px;
}

.policy * {
  font-size: 14px;
}
.policy .link {
  border: 1px solid #3c3d3d;
  padding: 7px 20px;
  display: inline-block;
  margin: 10px 0 0;
  font-size: 12px;
}
@media only screen and (min-width: 769px) {
  .policy .link:hover {
    background-color: #3c3d3d;
    border: 1px solid #3c3d3d;
    color: #fff;
  }
}
.policy .policy_body table {
  margin: 20px 0;
  border: 0;
  border-top: 1px solid #c1c1c1;
}
.policy .policy_body table th {
  padding-right: 20px;
  min-width: 200px;
}
@media only screen and (max-width: 768px) {
  .policy .policy_body table th {
    width: 100%;
  }
}
.policy .policy_body table td, .policy .policy_body table th {
  border: 0;
  border-bottom: 1px solid #ebebeb;
  padding: 15px 0;
  vertical-align: top;
  line-height: 1.8;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .policy .policy_body table td, .policy .policy_body table th {
    display: block;
  }
}
.policy .shipping_list {
  border-left: 1px dotted #848484;
  border-top: 1px dotted #848484;
  margin: 0 0 30px;
}
@media only screen and (max-width: 768px) {
  .policy .shipping_list {
    margin: 0 0 20px;
  }
}
.policy .shipping_list .list_head {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  grid-auto-flow: dense;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-auto-rows: auto;
  background: #e5e5e5;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .policy .shipping_list .list_head {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
}
.policy .shipping_list .list_head p {
  border-right: 1px dotted #848484;
  text-align: center;
  padding: 15px 0;
}
.policy .shipping_list .list_body {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  grid-auto-flow: dense;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background: #fff;
  margin: 0;
  border-bottom: 1px dotted #848484;
}
@media only screen and (max-width: 768px) {
  .policy .shipping_list .list_body {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
}
.policy .shipping_list .list_body p {
  border-right: 1px dotted #848484;
  text-align: center;
  padding: 15px 0;
}
.policy .shipping_list .list_body p.box_size {
  background: #f7f7f7;
}
.policy .privacy_list {
  margin: 30px auto 0;
}
.policy .privacy_list li {
  margin: 0 0 20px;
}
.policy .privacy_list .list_title {
  border-bottom: 1px solid #c1c1c1;
  padding: 15px 0 10px;
  line-height: 1.8;
  text-align: left;
  font-size: 16px;
  font-weight: bold;
  font-family: "Wix Madefor Display", "Noto Sans JP", sans-serif;
  margin: 0 0 10px 0;
}
.policy .privacy_list .list_txt {
  padding: 15px 0;
}
.policy .privacy_list .list dt {
  width: 50px;
}
@media only screen and (max-width: 768px) {
  .policy .privacy_list .list dt {
    width: 42px;
  }
}
.policy .privacy_list .list dd {
  width: calc(100% - 50px);
}
@media only screen and (max-width: 768px) {
  .policy .privacy_list .list dd {
    width: calc(100% - 42px);
    margin: 0 0 3px;
  }
}
.policy .privacy_list .list_2 dt {
  width: 18px;
  margin: 0 0 0 40px;
}
@media only screen and (max-width: 768px) {
  .policy .privacy_list .list_2 dt {
    width: 18px;
  }
}
.policy .privacy_list .list_2 dd {
  width: calc(100% - 58px);
}
@media only screen and (max-width: 768px) {
  .policy .privacy_list .list_2 dd {
    width: calc(100% - 58px);
    margin: 0 0 3px;
  }
}

.page_company .hito {
  width: 200px;
  margin: 0px 0px 0px 0px;
  filter: invert(21%) sepia(79%) saturate(2312%) hue-rotate(192deg) brightness(93%) contrast(101%);
}
@media only screen and (max-width: 768px) {
  .page_company .hito {
    width: 160px;
    margin: 20px auto;
  }
}
.page_company .hito_title {
  text-align: left;
  font-size: 20px;
  font-weight: bold;
  margin: 30px 0px 30px 0px;
  color: #0058a4;
}
@media only screen and (max-width: 768px) {
  .page_company .hito_title {
	text-align: center;  
    font-size: 18px;
    line-height: 1.9;
  }
}


.page_company .section_read_company {
  font-size: 18px !important;
}
@media only screen and (max-width: 768px) {
  .page_company .section_read_company {
    font-size: 14px !important;
    line-height: 1.8 !important;
  }
}

/* ==========================================================================

	hito to hito

========================================================================== */

.page_company .section_box_top {
  margin: 40px 0 30px !important;
}
.page_company .section_box {
  margin: 0px 0 30px;
  padding: 40px 0 40px;
  border: 1px solid #ffffff;
  background-color: rgba(255, 255, 255, 0.4);
  padding: 40px;
  border-radius: 20px;
}
@media only screen and (max-width: 768px) {
  .page_company .section_box {
    padding: 30px;
    border-radius: 12px;
  }
}

.page_company .section_box02 {
  margin: 0px 0 30px;
  padding: 40px 0 40px;
  padding: 40px;
  border-radius: 20px;
}
@media only screen and (max-width: 768px) {
  .page_company .section_box {
    padding: 30px;
    border-radius: 12px;
  }
}

.page_company .section_box02 .txt {
  font-size: 15px;
  line-height: 1.8;
  margin: 16px 0 0;
}
@media only screen and (max-width: 768px) {
  .page_company .section_box02 .txt {
    font-size: 13px;
  }
}
.page_company .section_box02 .txt span {
  font-weight: bold;
}
.page_company .section_box02 .txt_mt {
  margin: 12px 0 0;
}
.page_company .section_box02 .img_figure {
  width: 40%;
  display: block;
  margin: 20px 0;
}
@media only screen and (max-width: 768px) {
  .page_company .section_box02 .img_figure {
    width: 80%;
    margin: 20px auto;
  }


	
	
.page_company .section_box .title {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 20px;
  color: #183f97;
}
@media only screen and (max-width: 768px) {
  .page_company .section_box .title {
    font-size: 17px;
    margin: 0 0 12px;
  }
}
.page_company .section_box .txt {
  font-size: 15px;
  line-height: 1.8;
  margin: 16px 0 0;
}
@media only screen and (max-width: 768px) {
  .page_company .section_box .txt {
    font-size: 13px;
  }
}
.page_company .section_box .txt span {
  font-weight: bold;
}
.page_company .section_box .txt_mt {
  margin: 12px 0 0;
}
.page_company .section_box .img_figure {
  width: 40%;
  display: block;
  margin: 20px 0;
}
@media only screen and (max-width: 768px) {
  .page_company .section_box .img_figure {
    width: 80%;
    margin: 20px auto;
  }
}
	

	
/*# sourceMappingURL=style.css.map */
	


