@charset "UTF-8";
/*//////////////////////////////////////////////////////////

Copyright (C) apricot-design All Rights Reserved.
------------------------------------------------------------
CSS information
 file name  :  reset.css
 style info :  リセットファイル
 admin info :  apricot-design

//////////////////////////////////////////////////////////*/
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
  display: block;
}

audio[controls], canvas, video {
  display: inline-block;
  *display: inline;
  zoom: 1;
}

html {
  overflow-y: scroll;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body, div, dl, dt, dd, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, ul {
  margin: 0;
  padding: 0;
}

body, button, input, select, textarea {
  font-size: 100%;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

blockquote {
  margin: 1em 40px;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

pre, code, kbd, samp {
  font-family: monospace, monospace;
  _font-family: "courier new", monospace;
  font-size: 1em;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: none;
}
q:before, q:after {
  content: "";
  content: none;
}

small {
  font-size: 75%;
}

sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

ul, ol {
  margin: 0;
  padding: 0;
}

dd {
  margin: 0px;
}

nav ul, nav ol {
  list-style: none;
}

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}

svg:not(:root) {
  overflow: hidden;
}

figure, form {
  margin: 0;
}

fieldset {
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  *margin-left: -7px;
}

input, button, select, textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font-size: 100%;
  vertical-align: baseline;
  *vertical-align: middle;
  margin: 0;
  padding: 0;
  outline: none;
}

input[type=radio] {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  margin-right: 5px;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select {
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: "";
}
select::-ms-expand {
  display: none;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  font-size: 100%;
}

img, abbr, acronym, fieldset {
  border: 0;
}

li {
  list-style: none;
}

/*画像を縦に並べた時に余白が出ないように*/
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

/*box-sizingを全ブラウザに対応*/
* {
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
*:before, *:after {
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

.ie6_error, .no_script {
  background: #F66;
  padding: 100px;
  text-align: center;
  font-size: 150%;
  color: #333;
}

.flt {
  float: left;
}

.flr {
  float: right;
}

.txt_l, td.txt_l, .txt_l td {
  text-align: left;
}

.txt_r, td.txt_r, .txt_r td {
  text-align: right;
}

.txt_c, td.txt_c, .txt_c td {
  text-align: center;
}

.valign_t, td.valign_t, .valign_t td {
  vertical-align: top;
}

.valign_m, td.valign_m, .valign_m td {
  vertical-align: middle;
}

.valign_b, td.valign_b, .valign_b td {
  vertical-align: bottom;
}

.clear {
  clear: both;
}

.clearfix:before {
  content: "";
  display: block;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}
.clearfix {
  zoom: 1;
}

.img_bd {
  border: solid 1px #E8E8E8;
}

.c_red {
  color: #FF3425;
}

.fadeIn {
  opacity: 0;
}
.fadeIn.js_active {
  animation: fadeIn 1s ease-in-out forwards;
}

.fadeInLeft {
  opacity: 0;
}
.fadeInLeft.js_active {
  animation: fadeInLeft 0.6s ease-in-out forwards;
}

.fadeInRight {
  opacity: 0;
}
.fadeInRight.js_active {
  animation: fadeInRight 0.6s ease-in-out forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-1.5em);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(1.5em);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
:root {
  --min-with: 1000px;
  --headerHeight: 164px;
  --activeHeaderHeight: 150px;
  --sideW: min(4.66vw, 70px);
  --space: 120px;
  --spaceMin: 80px;
}
@media screen and (max-width: 768px) {
  :root {
    --min-with: 1px;
    --headerHeight: 87px;
    --activeHeaderHeight: 70px;
    --sideW: min(6.66vw, 25px);
    --space: 80px;
    --spaceMin: 60px;
  }
}

html {
  width: 100%;
  font-size: 10px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--activeHeaderHeight);
}

body {
  font: 400 16px/2 "Noto Sans JP", sans-serif;
  color: #000;
  text-align: left;
  letter-spacing: 0.1em;
}
body:not(.home) {
  background: url(../images/bg_main.svg) no-repeat center top/100% auto;
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: 0.04em;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: #000;
  transition: 0.5s;
}
a:link, a:active, a:visited {
  text-decoration: none;
}
a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  a[href*="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

.opacity {
  transition: 0.3s;
}
.opacity:hover {
  opacity: 0.6;
}

img {
  max-width: 100%;
  height: auto;
}

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

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

#container_wrap {
  position: relative;
  min-width: var(--min-with);
  padding-top: 270px;
}
@media screen and (max-width: 768px) {
  #container_wrap {
    overflow: hidden;
    min-width: 1px;
    padding-top: 170px;
  }
}

.home #container_wrap {
  padding-top: 0;
}

.section_wrap {
  position: relative;
  margin-bottom: var(--space);
}
.section_wrap_min {
  position: relative;
  margin-bottom: var(--spaceMin);
}
.section_wrap:last-child {
  margin-bottom: 0;
}

.of_hidden {
  overflow: hidden;
}

.inner, .inner_lg, .inner_sm {
  max-width: calc(1220px + var(--sideW) * 2);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--sideW);
}
.inner_sm {
  max-width: calc(1000px + var(--sideW) * 2);
}
.inner_lg {
  max-width: calc(1360px + var(--sideW) * 2);
}
.inner + [class*=inner], .inner_sm + [class*=inner], .inner_lg + [class*=inner] {
  margin-top: var(--spaceMin);
}

@keyframes fixedHeader {
  0% {
    transform: translateY(-100%);
  }
  20% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
.header {
  position: absolute;
  width: 100%;
  min-width: var(--min-with);
  height: var(--headerHeight);
  top: 0;
  left: 0;
  transition: transform 0.6s ease;
  padding: 27px var(--sideW);
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 5px;
  }
}
.header.js_scroll {
  position: fixed;
  padding-block: 5px;
  transform: translateY(-100%);
}
@media screen and (max-width: 768px) {
  .header.js_scroll {
    transform: none;
  }
}
.header.js_scroll .header__in {
  padding-block: 10px;
}
@media screen and (max-width: 768px) {
  .header.js_scroll .header__in {
    padding: 5px 5px 5px 15px;
  }
}
.header.js-active {
  transform: translateY(0);
  transition-delay: 0.2s;
}
.header__in {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .header__in {
    padding: 5px 5px 5px 15px;
  }
}
.header__ttl {
  transition: 0.5s;
}
.header__logo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 10px;
  font-size: clamp(0.875em, 1.33vw, 1.25em);
  font-weight: 700;
  letter-spacing: 0.06em;
  font-family: "Roboto", sans-serif;
  color: #066069;
}
@media screen and (max-width: 1200px) {
  .header__logo {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .header__logo {
    flex-direction: row;
    gap: 6px;
    font-size: 0.75em;
  }
}
.header__logo::before {
  content: "";
  display: block;
  width: 117px;
  aspect-ratio: 117/54;
  background: url(../images/logo.svg) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .header__logo::before {
    width: 90px;
  }
}
.header__nav {
  position: relative;
}

.global_nav {
  display: flex;
  align-items: center;
  gap: 0 min(2.466vw, 37px);
  position: relative;
}
@media screen and (max-width: 768px) {
  .global_nav {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    padding: calc(var(--headerHeight) / 2) var(--sideW) 35px;
    background: url(../images/gnav_bg_sp.jpg) no-repeat center/cover;
    overflow-y: scroll;
    opacity: 0;
    pointer-events: none;
    top: 0;
    left: 0;
    transition: 0.5s;
  }
}
.global_nav.active {
  opacity: 1;
  pointer-events: auto;
}
@media screen and (max-width: 768px) {
  .global_nav.active .global_nav__in {
    opacity: 1;
    transition-delay: 0.5s;
  }
}
.global_nav__in {
  display: contents;
}
@media screen and (max-width: 768px) {
  .global_nav__in {
    display: block;
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    padding: 70px var(--sideW) 60px;
    opacity: 0;
    transition: 0.5s;
  }
}
.global_nav .header__logo {
  flex-direction: column;
  justify-content: center;
  font-size: 1em;
  margin-bottom: 30px;
}
.global_nav .header__logo::before {
  width: 163px;
}
.global_nav .gnav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0 min(1.33vw, 20px);
}
@media screen and (max-width: 768px) {
  .global_nav .gnav {
    order: 1;
    flex-direction: column;
    align-items: stretch;
    gap: 25px 0;
    padding: 0 var(--sideW);
    margin-bottom: 60px;
  }
}
.global_nav .gnav a {
  display: block;
  position: relative;
  font-weight: 700;
  font-size: clamp(0.75em, 1vw, 0.9375em);
  color: #066069;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .global_nav .gnav a {
    font-size: 1.25em;
    text-align: center;
    line-height: 1.5;
  }
}
.global_nav .gnav a:hover::after {
  transform: scale(1);
}
.global_nav .gnav a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #23B8C5;
  left: 0;
  bottom: -2px;
  transform: scale(0, 1);
  transition: transform 0.5s;
}
.global_nav .btn {
  display: block;
  position: relative;
  width: min(12.933vw, 195px);
  line-height: 50px;
  background-color: #CC628B;
  color: #fff;
  text-align: center;
  font-size: clamp(1em, 1.33vw, 1.25em);
  font-weight: 700;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .global_nav .btn {
    width: auto;
    border-radius: 30px;
    line-height: 60px;
  }
}
.global_nav .btn:hover {
  background-color: #23B8C5;
}
.global_nav .btn::after {
  content: "";
  position: absolute;
  width: 19px;
  aspect-ratio: 1/1;
  background: url(../images/ico_arrow_right.svg) no-repeat center/contain;
  top: calc(50% - 9.5px);
  right: 8px;
}
@media screen and (max-width: 768px) {
  .global_nav .btn::after {
    width: 33px;
    top: calc(50% - 16.5px);
    right: 13px;
  }
}

.menu-trigger {
  display: none;
  place-content: center;
  place-items: center;
  gap: 3px;
  position: relative;
  width: 55px;
  aspect-ratio: 1/1;
  cursor: pointer;
  background-color: #066069;
  border-radius: 50%;
  z-index: 3;
  transition: 0.5s;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  .menu-trigger {
    display: grid;
  }
}
.menu-trigger span {
  display: block;
  position: relative;
  width: 24px;
  height: 20px;
  background: linear-gradient(to bottom, transparent calc(50% - 1px), #fff calc(50% - 1px), #fff calc(50% + 1px), transparent calc(50% + 1px));
  transition: 0.5s;
}
.menu-trigger span::before, .menu-trigger span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  top: 0;
  left: 0;
  transform-origin: center;
  transition: 0.5s;
}
.menu-trigger span::after {
  top: auto;
  bottom: 0;
}
.menu-trigger.active {
  background-color: #fff;
}
.menu-trigger.active span {
  background: none;
}
.menu-trigger.active span::before, .menu-trigger.active span::after {
  top: calc(50% - 1px);
  opacity: 1;
  rotate: 135deg;
  width: calc(100% + 10px);
  left: -5px;
  background-color: #066069;
}
.menu-trigger.active span::after {
  bottom: auto;
  rotate: -135deg;
}

.footer {
  overflow: hidden;
}
.footer__entry {
  position: relative;
}
.footer__entry::before {
  content: "";
  position: absolute;
  width: max(117.7vw, 1766px);
  aspect-ratio: 1766/562;
  background: url(../images/footer_bg_01.png) no-repeat center/contain;
  top: 180px;
  left: 50%;
  transform: translateX(-50%) rotate(-10deg);
  z-index: -2;
}
@media screen and (max-width: 768px) {
  .footer__entry::before {
    width: 1766px;
    left: -100px;
    top: 170px;
    transform: rotate(-10deg);
  }
}
.footer__entry .inner, .footer__entry .inner_sm, .footer__entry .inner_lg {
  position: relative;
  padding-top: 170px;
}
@media screen and (max-width: 768px) {
  .footer__entry .inner, .footer__entry .inner_sm, .footer__entry .inner_lg {
    padding-top: 0;
  }
}
.footer__entry .inner::before, .footer__entry .inner_sm::before, .footer__entry .inner_lg::before {
  content: "";
  position: absolute;
  width: 172px;
  aspect-ratio: 172/546;
  background: url(../images/footer_entry_txt_01.svg) no-repeat center/contain;
  right: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  .footer__entry .inner::before, .footer__entry .inner_sm::before, .footer__entry .inner_lg::before {
    display: block;
    position: static;
    width: 120px;
    margin: 0 auto 40px;
  }
}
.footer__entry .inner::after, .footer__entry .inner_sm::after, .footer__entry .inner_lg::after {
  content: "";
  position: absolute;
  width: 375px;
  aspect-ratio: 375/318;
  background: url(../images/footer_entry_icon_01.svg) no-repeat center/contain;
  left: 0;
  top: 10px;
}
@media screen and (max-width: 768px) {
  .footer__entry .inner::after, .footer__entry .inner_sm::after, .footer__entry .inner_lg::after {
    display: none;
  }
}
.footer__entry h2 {
  font-size: 1.125em;
  font-weight: 700;
  color: #066069;
  margin-bottom: 35px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer__entry h2 {
    font-size: 1em;
  }
}
.footer__entry h2 img {
  display: block;
  margin: 0 auto 15px;
}
@media screen and (max-width: 768px) {
  .footer__entry h2 img {
    width: 260px;
  }
}
.footer__entry p {
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .footer__entry p {
    font-size: 0.875em;
  }
}
.footer__info {
  position: relative;
  padding-block: 200px 50px;
}
@media screen and (max-width: 768px) {
  .footer__info {
    padding-top: 60px;
    text-align: center;
  }
}
.footer__info::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: calc(100% + 200px);
  background-color: #4A93A3;
  bottom: 0;
  left: calc(50% - 50vw);
  z-index: -3;
}
.footer__info .info {
  display: flex;
  align-items: center;
  gap: 45px;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .footer__info .info {
    flex-direction: column;
    justify-content: center;
    gap: 30px 0;
  }
}
.footer__info .info img {
  display: block;
  width: 252px;
}
@media screen and (max-width: 768px) {
  .footer__info .info img {
    width: 180px;
  }
}
.footer__info .info ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px min(2.66vw, 40px);
}
@media screen and (max-width: 768px) {
  .footer__info .info ul {
    display: none;
  }
}
.footer__info .info ul a {
  display: block;
  position: relative;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.footer__info .info ul a:hover::after {
  transform: scale(1);
}
.footer__info .info ul a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
  left: 0;
  bottom: -2px;
  transform: scale(0, 1);
  transition: transform 0.5s;
}
.footer__info .address {
  color: #fff;
  font-size: 0.9375em;
  line-height: 1.75;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .footer__info .address {
    text-align: center;
    font-size: 0.875em;
    margin-bottom: 30px;
  }
}
.footer__info .corp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375em;
  color: #fff;
  letter-spacing: 0.08em;
  margin-bottom: 65px;
}
.footer__info .corp::after {
  content: "";
  display: block;
  width: 45px;
  aspect-ratio: 1/1;
  background: url(../images/ico_arrow_right.svg) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .footer__info .corp::after {
    width: 30px;
  }
}
.footer .copyright {
  text-align: center;
  color: #fff;
  font-size: 0.875em;
}

.main_visual {
  position: relative;
  background: url(../images/bg_sparkle_01.jpg) no-repeat center/cover;
  padding: 170px 0 50px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .main_visual {
    padding: 180px var(--sideW) 100px;
  }
}
.main_visual__ttl {
  text-align: center;
}
.main_visual__ttl img {
  display: block;
  margin: 0 auto;
}
.main_visual::before {
  content: "";
  position: absolute;
  width: 1266px;
  aspect-ratio: 1266/203;
  background: url(../images/main_visual_bg_01.svg) no-repeat center/contain;
  left: calc(50% - 633px);
  bottom: 200px;
  transform-origin: center 70%;
  animation: ship-rock 4s ease-in-out infinite;
}
@media screen and (max-width: 768px) {
  .main_visual::before {
    width: 100%;
    left: 0;
    bottom: 20px;
  }
}

@keyframes ship-rock {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-6px);
  }
  50% {
    transform: translateY(-2px);
  }
  75% {
    transform: translateY(4px);
  }
  100% {
    transform: translateY(0);
  }
}
.top_about {
  position: relative;
  background: linear-gradient(to bottom, #2F7EB4, #123545);
  z-index: 1;
}
.top_about::before {
  content: "";
  position: absolute;
  width: 406px;
  aspect-ratio: 406/257;
  background: url(../images/main_visual_bg_02.svg) no-repeat center/contain;
  left: 16px;
  top: -155px;
}
@media screen and (max-width: 768px) {
  .top_about::before {
    width: 60%;
    top: -60px;
    left: -20px;
  }
}
.top_about__in {
  position: relative;
  padding-bottom: 180px;
}
@media screen and (max-width: 768px) {
  .top_about__in {
    padding: 0 var(--sideW) 100px;
  }
}
.top_about video {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
  z-index: -1;
}
.top_about h2 {
  font-size: 2.5em;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  text-align: center;
  line-height: 1.3;
  padding-top: 80px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .top_about h2 {
    font-size: 1.5em;
  }
}
.top_about p {
  font-weight: 500;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .top_about p {
    font-size: 0.875em;
    text-align: left;
  }
}
.top_about .btn_cmn_01 {
  position: relative;
}
.top_about .btn_cmn_01:hover::before {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border-width: 2px;
}
.top_about .btn_cmn_01::before {
  content: "";
  position: absolute;
  width: calc(100% + 26px);
  height: calc(100% + 20px);
  border: 1px solid #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 80px;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .top_about .btn_cmn_01::before {
    width: calc(100% + 18px);
    height: calc(100% + 14px);
  }
}

.scroll_text {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  overflow: hidden;
}
.scroll_text span {
  display: flex;
  gap: 0.5em;
  font-size: 10em;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-family: "Roboto", sans-serif;
  color: rgba(255, 255, 255, 0.38);
  line-height: 0.9;
  white-space: nowrap;
  translate: 0 18px;
}
@media screen and (max-width: 768px) {
  .scroll_text span {
    font-size: 5em;
  }
}
.scroll_text span::before, .scroll_text span::after {
  display: block;
  content: attr(data-text);
}

.top_charm {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .top_charm {
    margin-bottom: var(--space);
  }
}
.top_charm .inner, .top_charm .inner_sm, .top_charm .inner_lg {
  display: grid;
  grid-template-columns: 50% 1fr;
  gap: 40px min(5vw, 75px);
}
@media screen and (max-width: 768px) {
  .top_charm .inner, .top_charm .inner_sm, .top_charm .inner_lg {
    grid-template-columns: 1fr;
  }
}
.top_charm .inner h2, .top_charm .inner_sm h2, .top_charm .inner_lg h2 {
  font-size: 3em;
  font-weight: 700;
  line-height: 1.35;
  color: #066069;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .top_charm .inner h2, .top_charm .inner_sm h2, .top_charm .inner_lg h2 {
    font-size: 1.75em;
  }
}
.top_charm .inner h2::before, .top_charm .inner_sm h2::before, .top_charm .inner_lg h2::before {
  content: "";
  display: block;
  width: 92.13%;
  aspect-ratio: 562/262;
  background: url(../images/top_charm_icon_01.png) no-repeat center/contain;
  transform: translateX(min(-3.33vw, -50px));
}
@media screen and (max-width: 768px) {
  .top_charm .inner h2::before, .top_charm .inner_sm h2::before, .top_charm .inner_lg h2::before {
    transform: none;
    margin: 0 auto 25px;
  }
}
.top_charm .inner .image, .top_charm .inner_sm .image, .top_charm .inner_lg .image {
  position: relative;
  height: 445px;
}
@media screen and (max-width: 768px) {
  .top_charm .inner .image, .top_charm .inner_sm .image, .top_charm .inner_lg .image {
    height: 300px;
  }
}
.top_charm .inner .image figure, .top_charm .inner_sm .image figure, .top_charm .inner_lg .image figure {
  position: absolute;
  width: 50vw;
  height: 100%;
  top: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .top_charm .inner .image figure, .top_charm .inner_sm .image figure, .top_charm .inner_lg .image figure {
    width: 100vw;
    left: calc(var(--sideW) * -1);
  }
}
.top_charm .inner .image figure::after, .top_charm .inner_sm .image figure::after, .top_charm .inner_lg .image figure::after {
  content: "";
  position: absolute;
  width: 260px;
  aspect-ratio: 260/166;
  background: url(../images/top_charm_icon_02.svg) no-repeat center/contain;
  right: -142px;
  bottom: -25px;
}
@media screen and (max-width: 768px) {
  .top_charm .inner .image figure::after, .top_charm .inner_sm .image figure::after, .top_charm .inner_lg .image figure::after {
    width: 180px;
    right: -40px;
  }
}
.top_charm .inner .image figure img, .top_charm .inner_sm .image figure img, .top_charm .inner_lg .image figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-right-radius: 40px;
}
@media screen and (max-width: 768px) {
  .top_charm .inner .image figure img, .top_charm .inner_sm .image figure img, .top_charm .inner_lg .image figure img {
    border-radius: 0;
  }
}
.top_charm .inner ul, .top_charm .inner_sm ul, .top_charm .inner_lg ul {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.top_charm .inner ul li, .top_charm .inner_sm ul li, .top_charm .inner_lg ul li {
  counter-increment: num;
}
.top_charm .inner ul span, .top_charm .inner_sm ul span, .top_charm .inner_lg ul span {
  display: inline-block;
  white-space: nowrap;
  position: relative;
  font-size: 1.25em;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  color: #696969;
  border-bottom: 1px solid #696969;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .top_charm .inner ul span, .top_charm .inner_sm ul span, .top_charm .inner_lg ul span {
    font-size: 1em;
  }
}
.top_charm .inner ul span::after, .top_charm .inner_sm ul span::after, .top_charm .inner_lg ul span::after {
  content: counter(num, decimal-leading-zero);
  position: absolute;
  font-size: 2.5em;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-weight: 300;
  line-height: 1;
  top: 3px;
  left: calc(100% + 12px);
}
.top_charm .inner ul h3, .top_charm .inner_sm ul h3, .top_charm .inner_lg ul h3 {
  font-size: 1.5em;
  font-weight: 700;
  color: #066069;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .top_charm .inner ul h3, .top_charm .inner_sm ul h3, .top_charm .inner_lg ul h3 {
    font-size: 1.375em;
  }
}
.top_charm .inner ul p, .top_charm .inner_sm ul p, .top_charm .inner_lg ul p {
  font-size: 0.9375em;
}

.top_work {
  position: relative;
  background: url(../images/bg_sparkle_02.jpg) no-repeat center/cover;
  margin-top: -100px;
  padding: 170px 0 100px;
}
@media screen and (max-width: 768px) {
  .top_work {
    padding: 70px 0;
    margin-top: 0;
  }
}
.top_work::after {
  content: "";
  position: absolute;
  width: 406px;
  aspect-ratio: 406/257;
  background: url(../images/main_visual_bg_02.svg) no-repeat center/contain;
  right: var(--sideW);
  bottom: -206px;
  animation: ship-rock 4s ease-in-out infinite;
}
@media screen and (max-width: 768px) {
  .top_work::after {
    width: 50%;
    bottom: -70px;
    right: -20px;
  }
}
.top_work .inner, .top_work .inner_sm, .top_work .inner_lg {
  position: relative;
}
.top_work .inner::before, .top_work .inner_sm::before, .top_work .inner_lg::before {
  content: "";
  position: absolute;
  width: 442px;
  aspect-ratio: 442/97;
  background: url(../images/ttl_work.svg) no-repeat center/contain;
  right: 0;
  top: -192px;
}
@media screen and (max-width: 768px) {
  .top_work .inner::before, .top_work .inner_sm::before, .top_work .inner_lg::before {
    width: 260px;
    top: -100px;
    left: 0;
    margin: auto;
  }
}
.top_work .inner > p, .top_work .inner_sm > p, .top_work .inner_lg > p {
  margin-bottom: 35px;
}
.top_work ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px min(4vw, 60px);
  position: relative;
  z-index: 1;
}
.top_work ul a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 12px;
  position: relative;
  height: 240px;
  padding: 30px 22px;
  border-radius: 15px;
  overflow: hidden;
  color: #fff;
}
.top_work ul a:hover::after {
  background-color: rgba(0, 0, 0, 0.6);
}
.top_work ul a:hover img {
  transform: scale(1.1);
}
.top_work ul a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.24);
  top: 0;
  left: 0;
  z-index: -1;
  transition: 0.5s;
}
.top_work ul a img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
  top: 0;
  left: 0;
  transition: 0.5s;
}
.top_work ul a strong {
  display: block;
  font-size: 1.375em;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.top_work ul a p {
  position: relative;
  font-size: 0.9375em;
  line-height: 1.5;
  padding-bottom: 5px;
  border-bottom: 1px solid #fff;
}
.top_work ul a p::after {
  content: "";
  position: absolute;
  width: 21px;
  aspect-ratio: 1/1;
  background: url(../images/ico_arrow_right.svg) no-repeat center/contain;
  top: calc(50% - 10.5px);
  left: calc(100% + 8px);
}

.top_interview {
  padding-top: 160px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .top_interview {
    padding-top: var(--spaceMin);
  }
}
.top_interview h2 {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 1.25em;
  font-weight: 700;
  margin-bottom: 80px;
  color: #066069;
}
@media screen and (max-width: 768px) {
  .top_interview h2 {
    flex-direction: column;
    font-size: 1em;
  }
}
@media screen and (max-width: 768px) {
  .top_interview h2 img {
    width: 300px;
  }
}
.top_interview .interview_slide .swiper {
  overflow: visible;
}
.top_interview .interview_slide .swiper-slide a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .top_interview .interview_slide .swiper-slide a {
    gap: 15px;
  }
}
.top_interview .interview_slide .swiper-slide a:hover img {
  transform: scale(1.05);
}
.top_interview .interview_slide .swiper-slide a .image {
  position: relative;
  width: 100%;
}
.top_interview .interview_slide .swiper-slide a .image figure {
  overflow: hidden;
  aspect-ratio: 1/1;
  border-radius: 15px;
}
.top_interview .interview_slide .swiper-slide a .image figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
}
.top_interview .interview_slide .swiper-slide a .image p {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 9px;
  position: absolute;
  bottom: 23px;
  left: -28px;
}
@media screen and (max-width: 768px) {
  .top_interview .interview_slide .swiper-slide a .image p {
    gap: 5px;
    bottom: 10px;
    left: -10px;
  }
}
.top_interview .interview_slide .swiper-slide a .image p span {
  background-color: #23B8C5;
  color: #fff;
  font-size: 1.625em;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
  padding: 5px 15px;
}
@media screen and (max-width: 768px) {
  .top_interview .interview_slide .swiper-slide a .image p span {
    font-size: 1.125em;
  }
}
.top_interview .interview_slide .swiper-slide a .text {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 5px 22px;
}
@media screen and (max-width: 768px) {
  .top_interview .interview_slide .swiper-slide a .text {
    gap: 5px 10px;
  }
}
.top_interview .interview_slide .swiper-slide a .text .name {
  grid-column: 1/-1;
  font-size: 3em;
  font-weight: 700;
  line-height: 1;
  color: #066069;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .top_interview .interview_slide .swiper-slide a .text .name {
    font-size: 2em;
  }
}
.top_interview .interview_slide .swiper-slide a .text .year {
  background-color: #066069;
  font-size: 0.75em;
  padding: 0 10px 2px;
  color: #fff;
}
.top_interview .interview_slide .swiper-slide a .text .position {
  font-size: 1.125em;
  font-weight: 700;
  color: #696969;
}
@media screen and (max-width: 768px) {
  .top_interview .interview_slide .swiper-slide a .text .position {
    font-size: 1em;
  }
}
.top_interview .interview_slide .swiper-slide a .link {
  position: relative;
  font-size: 0.875em;
  line-height: 1.5;
  font-weight: 700;
  padding-bottom: 5px;
  color: #066069;
  border-bottom: 1px solid #066069;
  margin-right: 30px;
  margin-bottom: 20px;
}
.top_interview .interview_slide .swiper-slide a .link::after {
  content: "";
  position: absolute;
  width: 21px;
  aspect-ratio: 1/1;
  -webkit-mask: url(../images/ico_arrow_right.svg) no-repeat center/contain;
          mask: url(../images/ico_arrow_right.svg) no-repeat center/contain;
  background-color: #066069;
  top: calc(50% - 10.5px);
  left: calc(100% + 10px);
}
.top_interview .interview_slide .swiper-pagination {
  display: flex;
  gap: 4px;
  position: static;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .top_interview .interview_slide .swiper-pagination {
    margin-top: 20px;
  }
}
.top_interview .interview_slide .swiper-pagination-bullet {
  width: 118px;
  height: 5px;
  background-color: #CBCBCB;
  opacity: 1;
  margin: 0;
  border-radius: 0;
}
@media screen and (max-width: 768px) {
  .top_interview .interview_slide .swiper-pagination-bullet {
    width: 60px;
  }
}
.top_interview .interview_slide .swiper-pagination-bullet-active {
  background-color: #066069;
}

.hero {
  margin-bottom: 75px;
}
@media screen and (max-width: 768px) {
  .hero {
    margin-bottom: 50px;
  }
}
.hero__ttl {
  font-size: 1.125em;
  font-weight: 700;
  text-align: center;
  color: #066069;
}
.hero__ttl::before {
  content: "";
  display: block;
  background: no-repeat center/contain;
  margin: 0 auto 20px;
}
.hero__ttl--work::before {
  width: 353px;
  aspect-ratio: 353/78;
  background-image: url(../images/ttl_work.svg);
}
@media screen and (max-width: 768px) {
  .hero__ttl--work::before {
    width: 260px;
  }
}
.hero__ttl--environment::before {
  width: 754px;
  aspect-ratio: 754/76;
  background-image: url(../images/ttl_environment.svg);
}
@media screen and (max-width: 768px) {
  .hero__ttl--environment::before {
    width: 300px;
  }
}
.hero__ttl--attempt::before {
  width: 464px;
  aspect-ratio: 464/72;
  background-image: url(../images/ttl_attempt.svg);
}
@media screen and (max-width: 768px) {
  .hero__ttl--attempt::before {
    width: 280px;
  }
}
.hero__ttl--recruitment::before {
  width: 707px;
  aspect-ratio: 707/72;
  background-image: url(../images/ttl_recruitment.svg);
}
@media screen and (max-width: 768px) {
  .hero__ttl--recruitment::before {
    width: 300px;
  }
}
.hero__ttl--entry::before, .hero__ttl--thanks::before {
  width: 330px;
  aspect-ratio: 330/72;
  background-image: url(../images/ttl_entry.svg);
}
@media screen and (max-width: 768px) {
  .hero__ttl--entry::before, .hero__ttl--thanks::before {
    width: 280px;
  }
}
.hero__ttl--person::before {
  width: 395px;
  aspect-ratio: 395/74;
  background-image: url(../images/ttl_person.svg);
}
@media screen and (max-width: 768px) {
  .hero__ttl--person::before {
    width: 280px;
  }
}

.fixed_nav {
  display: grid;
  grid-template-columns: 68px 1fr;
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .fixed_nav {
    grid-template-columns: 40px 1fr;
  }
}
.fixed_nav label {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  font-size: 1.25em;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  writing-mode: vertical-rl;
  color: #fff;
  background-color: #066069;
  border-radius: 15px 0 0 15px;
  padding: 17px 0 20px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .fixed_nav label {
    font-size: 0.875em;
    font-weight: 500;
    padding: 12px 0 15px;
  }
}
.fixed_nav label::before {
  content: "";
  display: block;
  width: 24px;
  aspect-ratio: 1/1;
  background: url(../images/ico_index.svg) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .fixed_nav label::before {
    width: 16px;
  }
}
.fixed_nav input[type=checkbox] {
  display: none;
}
.fixed_nav input[type=checkbox]:checked + ul {
  width: 290px;
  padding: 20px 24px;
}
@media screen and (max-width: 768px) {
  .fixed_nav input[type=checkbox]:checked + ul {
    padding: 10px 15px;
    width: auto;
  }
}
.fixed_nav input[type=checkbox]:checked + ul li {
  opacity: 1;
  transition: 0.3s linear 0.3s;
}
.fixed_nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.25em;
  background-color: #fff;
  width: 0;
  overflow: hidden;
  transition: 0.3s;
}
.fixed_nav ul li {
  opacity: 0;
  white-space: nowrap;
}
.fixed_nav ul a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5em;
  font-size: 0.875em;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .fixed_nav ul a {
    font-size: 0.75em;
  }
}
.fixed_nav ul a:hover {
  color: #066069;
  font-weight: 700;
}
.fixed_nav ul a:hover::before {
  background: linear-gradient(#066069 0 0) center/100% 1px no-repeat;
}
.fixed_nav ul a::before {
  content: "";
  display: block;
  width: 0.8em;
  aspect-ratio: 1/1;
  background: linear-gradient(#000 0 0) center/100% 1px no-repeat, linear-gradient(#000 0 0) center/1px 100% no-repeat;
}

.box_white {
  background-color: #fff;
  padding: 0 min(8vw, 120px);
}
@media screen and (max-width: 768px) {
  .box_white {
    padding: 0;
  }
}

.sec_work_01 .grid {
  display: grid;
  grid-template-columns: 1fr 33.333%;
  align-items: start;
  gap: 30px min(2.66vw, 40px);
}
@media screen and (max-width: 768px) {
  .sec_work_01 .grid {
    grid-template-columns: 1fr;
  }
}
.sec_work_01 .grid .text {
  padding-top: 15px;
}
@media screen and (max-width: 768px) {
  .sec_work_01 .grid .text {
    padding-top: 0;
  }
}
.sec_work_01 .grid .text h3 {
  font-size: 2.25em;
  font-weight: 700;
  color: #066069;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .sec_work_01 .grid .text h3 {
    font-size: 1.5em;
  }
}
.sec_work_01 .grid .text p {
  font-size: 0.9375em;
}
@media screen and (max-width: 768px) {
  .sec_work_01 .grid .text p {
    font-size: 0.875em;
  }
}
.sec_work_01 .grid figure img {
  display: block;
  margin: 0 auto 20px;
}
.sec_work_01 .grid figure figcaption {
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .sec_work_01 .grid figure figcaption {
    font-size: 0.875em;
    text-align: center;
  }
}
.sec_work_01 .grid figure figcaption span {
  font-size: 1.875em;
  margin-left: 10px;
}

.sec_work_02 .grid {
  display: grid;
  grid-template-columns: 36% 1fr;
  align-items: center;
  gap: 30px min(4.66vw, 70px);
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .sec_work_02 .grid {
    grid-template-columns: 1fr;
  }
}
.sec_work_02 .work_detail {
  display: grid;
  grid-template-columns: 35% 1fr;
  gap: 0 min(3.33vw, 50px);
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .sec_work_02 .work_detail {
    grid-template-columns: 1fr;
  }
}
.sec_work_02 .work_detail:last-child {
  margin-bottom: 0;
}
.sec_work_02 .work_detail img {
  display: block;
  width: 100%;
  height: 382px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
  margin-bottom: 55px;
  grid-column: 1/-1;
}
@media screen and (max-width: 768px) {
  .sec_work_02 .work_detail img {
    height: 300px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .sec_work_02 .work_detail .ttl {
    margin-bottom: 20px;
  }
}
.sec_work_02 .work_detail .ttl span {
  display: block;
  width: 167px;
  line-height: 50px;
  border-radius: 30px;
  font-weight: 700;
  text-align: center;
  color: #066069;
  border: 1px solid #066069;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .sec_work_02 .work_detail .ttl span {
    width: 120px;
    line-height: 40px;
    margin-bottom: 10px;
  }
}
.sec_work_02 .work_detail .ttl p {
  font-size: 2em;
  line-height: 1.5;
  color: #066069;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .sec_work_02 .work_detail .ttl p {
    font-size: 1.375em;
  }
}
.sec_work_02 .work_detail .text p {
  font-size: 0.9375em;
}

.sec_environment_01 .box_white {
  position: relative;
  padding-top: 50px;
  padding: 50px min(4.4vw, 66px) 0;
}
.sec_environment_01 .box_white::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 10px;
  background-color: #066069;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .sec_environment_01 .box_white::before {
    width: 100px;
    height: 6px;
  }
}
.sec_environment_01 .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px min(2.66vw, 40px);
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .sec_environment_01 .grid {
    gap: 30px;
    margin-bottom: 60px;
  }
}
.sec_environment_01 .grid li {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 15px 0;
}
@media screen and (max-width: 768px) {
  .sec_environment_01 .grid li {
    gap: 5px;
  }
}
.sec_environment_01 .grid li > strong {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: 700;
  color: #066069;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .sec_environment_01 .grid li > strong {
    font-size: 1.125em;
  }
}
.sec_environment_01 .grid li > p {
  font-size: 0.875em;
  text-align: center;
}
.sec_environment_01 .grid img {
  display: block;
  width: 240px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .sec_environment_01 .grid img {
    width: 150px;
  }
}
.sec_environment_01 .grid [class*=box] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background-color: #F8F8F8;
  padding: 30px 15px;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .sec_environment_01 .grid [class*=box] {
    padding: 20px 10px;
  }
}
.sec_environment_01 .grid [class*=box] div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  font-family: "Roboto", sans-serif;
  color: #23B8C5;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.06em;
}
.sec_environment_01 .grid [class*=box] div span {
  font-size: 0.71em;
}
.sec_environment_01 .grid [class*=box] div small {
  font-size: 24px;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
}
.sec_environment_01 .grid .box div,
.sec_environment_01 .grid .box4 div {
  font-size: 4.375em;
  color: #23B8C5;
}
@media screen and (max-width: 768px) {
  .sec_environment_01 .grid .box div,
  .sec_environment_01 .grid .box4 div {
    font-size: 3.5em;
  }
}
.sec_environment_01 .grid .box2 div {
  font-size: 2.5em;
}
@media screen and (max-width: 768px) {
  .sec_environment_01 .grid .box2 div {
    font-size: 2em;
  }
}
.sec_environment_01 .grid .box3 p {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  font-family: "Roboto", sans-serif;
  color: #23B8C5;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.06em;
  font-size: 1.75em;
}
.sec_environment_01 .place {
  display: grid;
  grid-template-columns: 574px 1fr;
  align-items: center;
  gap: 30px min(6.66vw, 100px);
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .sec_environment_01 .place {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .sec_environment_01 .place .text {
    margin-bottom: 30px;
  }
}
.sec_environment_01 .place ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px min(3.33vw, 50px);
  margin-bottom: 55px;
}
@media screen and (max-width: 768px) {
  .sec_environment_01 .place ul {
    display: flex;
    flex-direction: column;
  }
}
.sec_environment_01 .place ul li {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: baseline;
  border-bottom: 1px solid #066069;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  padding-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .sec_environment_01 .place ul li {
    font-size: 1.25em;
  }
}
.sec_environment_01 .place ul li span {
  font-size: 3.5em;
  font-family: "Roboto", sans-serif;
  color: #23B8C5;
  line-height: 1;
}
.sec_environment_01 .atoms {
  position: relative;
  background-color: #FFFCD5;
  padding: 70px 25px;
}
@media screen and (max-width: 768px) {
  .sec_environment_01 .atoms {
    padding: 50px 15px;
  }
}
.sec_environment_01 .atoms::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 10px;
  background-color: #23B8C5;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .sec_environment_01 .atoms::before {
    width: 100px;
  }
}
.sec_environment_01 .atoms h3 {
  text-align: center;
  font-size: 2em;
  font-weight: 700;
  line-height: 1.5;
  color: #066069;
  margin-bottom: 55px;
}
@media screen and (max-width: 768px) {
  .sec_environment_01 .atoms h3 {
    font-size: 1.25em;
    margin-bottom: 30px;
  }
}
.sec_environment_01 .atoms ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 45px 56px;
}
@media screen and (max-width: 768px) {
  .sec_environment_01 .atoms ul {
    gap: 15px;
    padding-left: 15px;
  }
}
.sec_environment_01 .atoms li {
  position: relative;
  padding: 12px 30px 12px 54px;
  background-color: #fff;
  border-radius: 30px;
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .sec_environment_01 .atoms li {
    width: 100%;
    padding: 10px 20px 10px 40px;
    font-size: 0.875em;
    border-radius: 10px;
  }
}
.sec_environment_01 .atoms li::before {
  content: "";
  position: absolute;
  width: 80px;
  aspect-ratio: 1/1;
  background: url(../images/atoms_01.svg) no-repeat center/contain;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .sec_environment_01 .atoms li::before {
    width: 50px;
  }
}
.sec_environment_01 .atoms li:nth-child(2)::before {
  background-image: url(../images/atoms_02.svg);
}
.sec_environment_01 .atoms li:nth-child(3)::before {
  background-image: url(../images/atoms_03.svg);
}
.sec_environment_01 .atoms li:nth-child(4)::before {
  background-image: url(../images/atoms_04.svg);
}
.sec_environment_01 .atoms li:nth-child(5)::before {
  background-image: url(../images/atoms_05.svg);
}
.sec_environment_01 .atoms li:nth-child(6)::before {
  background-image: url(../images/atoms_06.svg);
}
.sec_environment_01 .atoms li:nth-child(7)::before {
  background-image: url(../images/atoms_07.svg);
}
.sec_environment_01 .atoms li:nth-child(8)::before {
  background-image: url(../images/atoms_08.svg);
}
.sec_environment_01 .atoms li:nth-child(9)::before {
  background-image: url(../images/atoms_09.svg);
}
.sec_environment_01 .atoms li span {
  font-size: 0.9em;
}

.sec_work_02 {
  background: url(../images/environment_bg.svg) no-repeat left top/499px auto;
}
@media screen and (max-width: 768px) {
  .sec_work_02 {
    background-size: 33% auto;
    background-repeat: repeat-y;
  }
}
.sec_work_02 ul {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.sec_work_02 ul li {
  display: grid;
  grid-template-columns: 36% 1fr;
  align-items: start;
  gap: 30px min(3.33vw, 50px);
  position: relative;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .sec_work_02 ul li {
    grid-template-columns: 1fr;
    padding-bottom: 60px;
  }
}
.sec_work_02 ul li:nth-child(2) .text::before {
  background-image: url(../images/hash_num_02.svg);
}
.sec_work_02 ul li:nth-child(3) .text::before {
  background-image: url(../images/hash_num_03.svg);
}
.sec_work_02 ul li:nth-child(4)::after {
  content: none;
}
.sec_work_02 ul li:nth-child(4) .text::before {
  background-image: url(../images/hash_num_04.svg);
}
.sec_work_02 ul li::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 10px;
  background-color: #066069;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .sec_work_02 ul li::after {
    width: 100px;
    height: 6px;
  }
}
.sec_work_02 ul li .image img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}
.sec_work_02 ul li .text {
  padding-top: 59px;
}
@media screen and (max-width: 768px) {
  .sec_work_02 ul li .text {
    padding-top: 0;
  }
}
.sec_work_02 ul li .text::before {
  content: "";
  display: block;
  width: 130px;
  aspect-ratio: 130/53;
  background: url(../images/hash_num_01.svg) no-repeat center/contain;
  margin-bottom: 33px;
}
.sec_work_02 ul li .text .cat {
  display: block;
  width: 167px;
  line-height: 50px;
  border-radius: 30px;
  font-weight: 700;
  text-align: center;
  color: #066069;
  border: 1px solid #066069;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .sec_work_02 ul li .text .cat {
    width: 120px;
    line-height: 40px;
    margin-bottom: 10px;
  }
}
.sec_work_02 ul li .text h3 {
  font-size: 2em;
  line-height: 1.5;
  font-weight: 700;
  color: #066069;
  margin-bottom: 23px;
}
@media screen and (max-width: 768px) {
  .sec_work_02 ul li .text h3 {
    font-size: 1.5em;
  }
}
.sec_work_02 ul li .text p {
  font-size: 0.9375em;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .sec_work_02 ul li .text p {
    font-size: 0.875em;
    margin-bottom: 30px;
  }
}
.sec_work_02 ul li .text p:last-child {
  margin-bottom: 0;
}
.sec_work_02 ul li .text .features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px min(2vw, 30px);
}
@media screen and (max-width: 768px) {
  .sec_work_02 ul li .text .features {
    justify-content: center;
    gap: 15px;
  }
}
.sec_work_02 ul li .text .features img {
  display: block;
  margin: 0 auto 5px;
}
.sec_work_02 ul li .text .features figcaption {
  font-size: 0.8125em;
  text-align: center;
  line-height: 1.5;
}

.sec_attempt_01 {
  overflow: hidden;
  margin-bottom: 190px;
}
@media screen and (max-width: 768px) {
  .sec_attempt_01 {
    margin-bottom: var(--space);
  }
}

.sec_attempt_02 .ttl_cmn_01::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 80px;
  background-color: #066069;
  left: calc(50% - 0.5px);
  bottom: calc(100% + 30px);
}
@media screen and (max-width: 768px) {
  .sec_attempt_02 .ttl_cmn_01::after {
    height: 60px;
    bottom: calc(100% + 10px);
  }
}

.attempt_wrap {
  margin-bottom: var(--spaceMin);
}
.attempt_wrap:nth-child(2n) .image {
  margin-left: auto;
}
.attempt_wrap:nth-child(2n) .image figure {
  right: auto;
  left: 0;
}
@media screen and (max-width: 768px) {
  .attempt_wrap:nth-child(2n) .image figure {
    left: calc(var(--sideW) * -1);
  }
}
.attempt_wrap:nth-child(2n) .text {
  margin-inline: 0 auto;
}
.attempt_wrap:nth-child(2) .text::before {
  background-image: url(../images/hash_num_02.svg);
}
.attempt_wrap:nth-child(3) {
  margin-bottom: 0;
}
.attempt_wrap:nth-child(3) .text::before {
  background-image: url(../images/hash_num_03.svg);
}
.attempt_wrap .image {
  position: relative;
  width: 76.23%;
  height: 520px;
}
@media screen and (max-width: 768px) {
  .attempt_wrap .image {
    width: 100%;
    height: 350px;
  }
}
.attempt_wrap .image figure {
  position: absolute;
  width: 71.3333vw;
  height: 100%;
  top: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .attempt_wrap .image figure {
    width: 100vw;
    left: calc(var(--sideW) * -1);
  }
}
.attempt_wrap .image figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.attempt_wrap .text {
  position: relative;
  width: 71.3%;
  z-index: 1;
  background-color: #fff;
  padding: 55px 0 0 65px;
  margin-top: -105px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .attempt_wrap .text {
    width: 100%;
    margin-top: -60px;
    padding: 55px var(--sideW) 0;
  }
}
.attempt_wrap .text::before {
  content: "";
  position: absolute;
  width: 131px;
  aspect-ratio: 131/53;
  background: url(../images/hash_num_01.svg) no-repeat center/contain;
  top: 0;
  left: 65px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .attempt_wrap .text::before {
    width: 120px;
    left: var(--sideW);
  }
}
.attempt_wrap .text strong {
  display: inline-block;
  font-size: 1.125em;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #066069;
  line-height: 1.5;
  border-bottom: 3px solid #066069;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .attempt_wrap .text strong {
    font-size: 1em;
  }
}
.attempt_wrap .text h3 {
  font-size: 2em;
  font-weight: 700;
  color: #066069;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .attempt_wrap .text h3 {
    font-size: 1.5em;
  }
}
.attempt_wrap .text p {
  font-size: 0.9375em;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .attempt_wrap .text p {
    font-size: 0.875em;
  }
}

.person_info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 80px;
}
.person_info .name {
  font-size: 3.125em;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  color: #066069;
  line-height: 1.25;
  margin-right: 5px;
}
@media screen and (max-width: 768px) {
  .person_info .name {
    font-size: 2.5em;
  }
}
.person_info .year {
  background-color: #066069;
  font-size: 0.8125em;
  padding: 0 10px 2px;
  color: #fff;
}
.person_info .position {
  font-size: 1.125em;
  font-weight: 700;
  color: #066069;
}
@media screen and (max-width: 768px) {
  .person_info .position {
    font-size: 1em;
  }
}

.person_contents {
  display: grid;
  grid-template-columns: 50% 1fr;
  align-items: center;
  gap: 30px min(3.66vw, 55px);
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .person_contents {
    display: block;
    margin-bottom: 50px;
  }
}
.person_contents:last-child {
  margin-bottom: 0;
}
.person_contents:nth-child(even) {
  grid-template-columns: 1fr 50%;
}
.person_contents:nth-child(even) .image {
  order: 2;
  border-radius: 30px 0 30px 0;
}
@media screen and (max-width: 768px) {
  .person_contents:nth-child(even) .image {
    border-radius: 0;
  }
}
.person_contents:nth-child(even) .text {
  order: 1;
}
.person_contents .image {
  border-radius: 0 30px 0 30px;
  overflow: hidden;
  height: 397px;
}
@media screen and (max-width: 768px) {
  .person_contents .image {
    width: 100vw;
    margin-left: calc(var(--sideW) * -1);
    border-radius: 0;
    margin-bottom: 30px;
    height: auto;
    aspect-ratio: 61/40;
  }
}
.person_contents .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.person_contents strong {
  display: block;
  font-size: 1.75em;
  font-weight: 700;
  color: #066069;
  line-height: 1.5;
  margin-bottom: 18px;
}
@media screen and (max-width: 768px) {
  .person_contents strong {
    font-size: 1.375em;
  }
}
.person_contents p {
  font-size: 0.9375em;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .person_contents p {
    font-size: 0.875em;
  }
}

.person_schedule {
  position: relative;
  padding-block: var(--space);
  margin-bottom: 0;
}
.person_schedule::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/bg_sparkle_01.jpg) no-repeat center top/cover;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: 0.45;
}
.person_schedule h2 {
  font-size: 1.125em;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  color: #066069;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .person_schedule h2 {
    font-size: 1em;
  }
}
.person_schedule h2::before {
  content: "";
  display: block;
  width: 367px;
  aspect-ratio: 376/58;
  background: url(../images/ttl_schedule.svg) no-repeat center/contain;
  margin: 0 auto 10px;
}
@media screen and (max-width: 768px) {
  .person_schedule h2::before {
    width: 280px;
  }
}
.person_schedule .schedule_box {
  background-color: #fff;
  padding: 60px min(3.66vw, 55px);
  border-radius: 20px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .person_schedule .schedule_box {
    padding: 30px var(--sideW);
    margin-bottom: 30px;
  }
}
.person_schedule .schedule_box:last-child {
  margin-bottom: 0;
}
.person_schedule .schedule_box table {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .person_schedule .schedule_box table {
    display: block;
  }
  .person_schedule .schedule_box table thead, .person_schedule .schedule_box table tbody, .person_schedule .schedule_box table tr, .person_schedule .schedule_box table th, .person_schedule .schedule_box table td {
    display: block;
    width: 100%;
  }
}
.person_schedule .schedule_box table th, .person_schedule .schedule_box table td {
  border-bottom: 2px dotted #066069;
  line-height: 1.5;
  padding: 20px 18px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .person_schedule .schedule_box table th, .person_schedule .schedule_box table td {
    padding: 15px 15px 5px;
    border: none;
    font-size: 0.875em;
  }
}
.person_schedule .schedule_box table td {
  padding-left: 0;
}
@media screen and (max-width: 768px) {
  .person_schedule .schedule_box table td {
    padding: 0 15px 15px;
    border-bottom: 2px dotted #066069;
  }
}
.person_schedule .schedule_box dl {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 35px;
}
@media screen and (max-width: 768px) {
  .person_schedule .schedule_box dl {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.person_schedule .schedule_box dl dt, .person_schedule .schedule_box dl dd {
  padding: 7px 0;
}
.person_schedule .schedule_box dl dt {
  position: relative;
  border-right: 1px solid #066069;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.5;
  color: #066069;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .person_schedule .schedule_box dl dt {
    border: none;
    border-bottom: 1px solid #066069;
    font-size: 1.25em;
  }
}
.person_schedule .schedule_box dl dt::after {
  content: "";
  position: absolute;
  width: 115px;
  aspect-ratio: 115/26;
  background: url(../images/txt_private.svg) no-repeat center/contain;
  left: 40%;
  bottom: -10px;
  transform: rotate(-17deg);
}
@media screen and (max-width: 768px) {
  .person_schedule .schedule_box dl dt::after {
    width: 90px;
    left: -25px;
    bottom: auto;
    top: -25px;
  }
}
.person_schedule .schedule_box dl dd {
  font-size: 0.875em;
  line-height: 1.8;
  letter-spacing: 0.06em;
}

.person_image {
  height: 490px;
  margin-bottom: var(--space);
}
@media screen and (max-width: 768px) {
  .person_image {
    height: 200px;
  }
}
.person_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.person_message {
  position: relative;
  margin-bottom: 180px;
}
.person_message::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 153px;
  background-color: #066069;
  left: calc(50% - 0.5px);
  bottom: calc(100% + 25px);
}
@media screen and (max-width: 768px) {
  .person_message::before {
    height: 100px;
  }
}
.person_message p {
  font-size: 0.9375em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .person_message p {
    font-size: 0.875em;
    text-align: left;
  }
}

.sec_person_message .scroll_text {
  bottom: 150px;
}
.sec_person_message .scroll_text span {
  color: rgba(214, 215, 239, 0.18);
}

.map {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 400px;
}
@media screen and (max-width: 768px) {
  .map {
    height: auto;
    aspect-ratio: 1/1;
  }
}
.map--lg {
  height: 460px;
}
@media screen and (max-width: 768px) {
  .map--lg {
    height: auto;
    aspect-ratio: 1/1;
  }
}
.map > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.map + p {
  font-weight: 700;
  letter-spacing: 0.01;
}

.ttl_cmn_01 {
  display: block;
  font-size: 2.5em;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
  color: #066069;
  text-align: center;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .ttl_cmn_01 {
    font-size: 1.875em;
  }
}
.ttl_cmn_01::after {
  content: attr(data-en);
  display: block;
  font-size: 0.45em;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #696969;
  margin-top: 5px;
}
.ttl_cmn_01--green::after {
  color: #066069;
  font-size: 0.5em;
}

.ttl_cmn_02 {
  display: block;
  font-size: 1.125em;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 25px;
}
.ttl_cmn_02::before {
  content: attr(data-en);
  display: block;
  font-size: 3.88em;
  font-weight: 700;
  color: #066069;
  line-height: 1.25;
  letter-spacing: 0.06em;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .ttl_cmn_02::before {
    font-size: 2.6em;
    margin-bottom: 5px;
  }
}

.list_person {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .list_person {
    gap: 40px;
  }
}
.list_person a {
  display: grid;
  grid-template-columns: 50% 1fr;
  align-items: center;
  gap: 30px min(5.8vw, 87px);
}
@media screen and (max-width: 768px) {
  .list_person a {
    grid-template-columns: 1fr;
  }
}
.list_person a:hover img {
  transform: scale(1.05);
}
.list_person a .image {
  overflow: hidden;
  height: 370px;
  border-radius: 0 30px 0 30px;
}
@media screen and (max-width: 768px) {
  .list_person a .image {
    height: 250px;
  }
}
.list_person a .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
}
.list_person a .text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 15px;
}
.list_person a .text .name {
  width: 100%;
  font-size: 3.125em;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  color: #066069;
  line-height: 1.25;
}
@media screen and (max-width: 768px) {
  .list_person a .text .name {
    font-size: 2.5em;
  }
}
.list_person a .text .year {
  background-color: #066069;
  font-size: 0.8125em;
  padding: 0 10px 2px;
  color: #fff;
}
.list_person a .text .position {
  font-size: 1.125em;
  font-weight: 700;
  color: #066069;
}
@media screen and (max-width: 768px) {
  .list_person a .text .position {
    font-size: 1em;
  }
}
.list_person a .text .catch_copy {
  width: 100%;
  font-size: 1.75em;
  color: #066069;
  font-weight: 700;
  line-height: 1.5;
  margin: 35px 0 20px;
}
@media screen and (max-width: 768px) {
  .list_person a .text .catch_copy {
    font-size: 1.375em;
    margin: 15px 0;
  }
}
.list_person a .text .link {
  position: relative;
  font-size: 0.9125em;
  line-height: 1.5;
  font-weight: 700;
  padding-bottom: 5px;
  color: #066069;
  border-bottom: 1px solid #066069;
}
.list_person a .text .link::after {
  content: "";
  position: absolute;
  width: 21px;
  aspect-ratio: 1/1;
  -webkit-mask: url(../images/ico_arrow_right.svg) no-repeat center/contain;
          mask: url(../images/ico_arrow_right.svg) no-repeat center/contain;
  background-color: #066069;
  top: calc(50% - 10.5px);
  left: calc(100% + 10px);
}

.list_btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}
@media screen and (max-width: 768px) {
  .list_btns {
    gap: 15px;
  }
}
.list_btns--left {
  justify-content: left;
}

.table_recruitment {
  border-collapse: separate;
  width: 100%;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .table_recruitment {
    display: block;
  }
  .table_recruitment thead, .table_recruitment tbody, .table_recruitment tr, .table_recruitment th, .table_recruitment td {
    display: block;
    width: 100%;
  }
}
.table_recruitment caption {
  background-color: #ED7251;
  font-size: 1.75em;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  padding: 15px 25px;
  text-align: left;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .table_recruitment caption {
    display: block;
    width: 100%;
    font-size: 1.25em;
    padding: 10px 15px;
  }
}
.table_recruitment th, .table_recruitment td {
  padding: 20px 18px;
}
@media screen and (max-width: 768px) {
  .table_recruitment th, .table_recruitment td {
    padding: 15px 0 0;
  }
}
.table_recruitment th {
  position: relative;
  width: 230px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .table_recruitment th {
    width: 100%;
  }
}
.table_recruitment th::after {
  content: "";
  position: absolute;
  width: calc(100% - 18px);
  height: 1px;
  background-color: #070707;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .table_recruitment th::after {
    content: none;
  }
}
.table_recruitment td {
  width: calc(100% - 230px);
  border-bottom: 1px solid #070707;
}
@media screen and (max-width: 768px) {
  .table_recruitment td {
    width: 100%;
    padding: 5px 0 15px;
    font-size: 0.875em;
  }
}
.table_recruitment + .btn_cmn_01 {
  margin-bottom: var(--spaceMin);
}
.table_recruitment + .btn_cmn_01:last-child {
  margin-bottom: 0;
}

.table_parent {
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .table_parent {
    white-space: nowrap;
    margin-bottom: 20px;
  }
}
.table_parent:last-child {
  margin-bottom: 0;
}

.btn_cmn_01 {
  display: block;
  width: 736px;
  max-width: 100%;
  line-height: 92px;
  border-radius: 50px;
  background: url(../images/ico_arrow_right.svg) no-repeat calc(100% - 19px) center/38px auto;
  background-color: #CC628B;
  color: #fff;
  font-size: 1.25em;
  font-weight: 500;
  text-align: center;
  margin: 0 auto 20px;
}
@media screen and (max-width: 768px) {
  .btn_cmn_01 {
    font-size: 1em;
    line-height: 56px;
    background-position: center right 10px;
  }
}
.btn_cmn_01:hover {
  background-color: #23B8C5;
}
.btn_cmn_01:last-child {
  margin-bottom: 0;
}
.btn_cmn_01--blue {
  background-color: #23B8C5;
}
.btn_cmn_01--blue:hover {
  background-color: #066069;
}

.btn_cmn_02 {
  display: block;
  width: 736px;
  max-width: 100%;
  line-height: 72px;
  border-radius: 40px;
  background: url(../images/ico_arrow_right.svg) no-repeat right 17px center/30px auto;
  background-color: #23B8C5;
  color: #fff;
  font-size: 1.25em;
  font-weight: 500;
  text-align: center;
  margin: 0 auto 20px;
}
@media screen and (max-width: 768px) {
  .btn_cmn_02 {
    font-size: 1em;
    line-height: 50px;
    background-position: center right 10px;
  }
}
.btn_cmn_02:hover {
  background-color: #066069;
}
.btn_cmn_02:last-child {
  margin-bottom: 0;
}

.btn_submit {
  display: block;
  position: relative;
  width: 574px;
  max-width: 100%;
  line-height: 72px;
  border-radius: 40px;
  text-align: center;
  background-color: #066069;
  color: #fff;
  font-size: 1.125em;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: 0.5s;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .btn_submit {
    line-height: 60px;
  }
}
.btn_submit:hover {
  background-color: #4A93A3;
}
.btn_submit:disabled {
  background-color: #A3A3A3;
}
.btn_submit:disabled:hover {
  filter: none;
  transform: none;
}
.btn_submit::after {
  content: "";
  position: absolute;
  width: 30px;
  aspect-ratio: 1/1;
  -webkit-mask: url(../images/ico_arrow_right.svg) no-repeat center/contain;
          mask: url(../images/ico_arrow_right.svg) no-repeat center/contain;
  background-color: #fff;
  right: 17px;
  top: 50%;
  transform: translateY(-50%);
}

.add_ttl {
  display: block;
  font-size: 2em;
  font-weight: 700;
  color: #fff;
  background-color: #066069;
  padding: 10px 25px;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .add_ttl {
    font-size: 1.25em;
    padding: 5px 10px;
  }
}
.add_ttl:first-child {
  margin-top: 0;
}

.add_ttl_02 {
  display: block;
  font-size: 1.75em;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding-left: 20px;
  border-left: 7px solid #066069;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .add_ttl_02 {
    font-size: 1.2em;
    padding-left: 10px;
  }
}
.add_ttl_02:first-child {
  margin-top: 0;
}

.add_ttl_03 {
  display: block;
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-bottom: 3px solid #066069;
  padding-bottom: 12px;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .add_ttl_03 {
    font-size: 1.125em;
  }
}
.add_ttl_03:first-child {
  margin-top: 0;
}

.post_content {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .post_content {
    margin-bottom: 50px;
  }
}
.post_content p {
  margin-top: 35px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .post_content p {
    font-size: 0.875em;
    margin-top: 25px;
  }
}
.post_content p:first-child {
  margin-top: 0;
}
.post_content img {
  display: block;
  margin-top: 35px;
}
.post_content img:first-child {
  margin-top: 0;
}
.post_content .table_parent {
  margin-top: 20px;
}
.post_content .table_parent:first-child {
  margin-top: 0;
}
.post_content table {
  width: 100%;
  border-collapse: separate;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .post_content table {
    width: auto;
  }
}
.post_content table:first-child {
  margin-top: 0;
}
.post_content table tr:last-child td {
  border-bottom: 0 none;
}
.post_content table td {
  font-size: 0.9375em;
  padding: 15px 25px;
  background-color: #F8F8F8;
  border-bottom: 8px solid #066069;
}
@media screen and (max-width: 768px) {
  .post_content table td {
    font-size: 0.875em;
    padding: 10px 15px;
  }
}
.post_content table td:first-child {
  background-color: #A3EBD9;
  font-weight: 700;
}

/* ==========================================================================//
//
// parts
//
// ========================================================================== */
/* 背景パララックス
---------------------------------------------------------------------------------------------------------------------- */
.bg_parallax {
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .bg_parallax {
    background-size: auto 120%;
  }
}

.img_parallax {
  position: relative;
  overflow: hidden;
}
.img_parallax img {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.1s linear;
  will-change: transform;
}

/* wp-pagenavi
---------------------------------------------------------------------------------------------------------------------- */
.wp-pagenavi {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 20px;
}
@media screen and (max-width: 768px) {
  .wp-pagenavi {
    gap: 10px;
    justify-content: flex-start;
  }
}
.wp-pagenavi a,
.wp-pagenavi span {
  display: grid;
  place-content: center;
  width: 50px;
  aspect-ratio: 1/1;
  background-color: rgba(6, 96, 105, 0.3);
  color: #066069;
  font-size: 1.25em;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .wp-pagenavi a,
  .wp-pagenavi span {
    width: 40px;
    font-size: 1.125em;
  }
}
.wp-pagenavi a:hover, .wp-pagenavi a.current,
.wp-pagenavi span:hover,
.wp-pagenavi span.current {
  background-color: #066069;
  color: #fff;
}
.wp-pagenavi a.extend,
.wp-pagenavi span.extend {
  width: auto;
  aspect-ratio: auto;
  background-color: transparent;
  font-family: "Noto Sans JP", sans-serif;
  color: #066069;
}
.wp-pagenavi a.extend::after,
.wp-pagenavi span.extend::after {
  content: none;
}

/* モーダル
---------------------------------------------------------------------------------------------------------------------- */
.modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 25px;
  z-index: 1001;
}
@media screen and (max-width: 768px) {
  .modal {
    border-radius: 20px;
  }
}
.modal_close_btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  aspect-ratio: 1/1;
  background: url(../images/ico_modal_close.svg) no-repeat center/contain;
  border-radius: 50%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .modal_close_btn {
    width: 30px;
    right: 12px;
  }
}
.modal_close_btn::after {
  transform: rotate(-45deg);
}
.modal_content {
  display: none;
  position: relative;
  width: auto;
  max-width: calc(100vw - var(--sideW) * 2);
  max-height: 90vh;
  overflow-y: scroll;
  padding: 75px min(6.66vw, 100px) 90px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .modal_content {
    padding: 40px var(--sideW);
    border-radius: 20px;
  }
}
.modal_prev, .modal_next {
  position: absolute;
  width: var(--sideW);
  height: 100%;
  left: 0;
  top: 0;
  text-indent: 110%;
  white-space: nowrap;
  overflow: hidden;
}
.modal_prev::after, .modal_next::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/ico_arrow_right.svg) no-repeat center/30px auto;
  left: 0;
  top: 0;
  transform: rotate(180deg);
}
.modal_next {
  left: auto;
  right: 0;
}
.modal_next::after {
  transform: rotate(0);
}

.modal_overlay {
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background-color: rgba(6, 96, 105, 0.8);
  top: 0;
  left: 0;
  z-index: 1000;
}

/* パンくず
---------------------------------------------------------------------------------------------------------------------- */
#list_breadcrumb {
  font-size: 0.875em;
  font-weight: 500;
  color: #fff;
  margin-bottom: var(--space);
}
@media screen and (max-width: 768px) {
  #list_breadcrumb {
    font-size: 0.75em;
    overflow-x: scroll;
    text-align: right;
  }
}
#list_breadcrumb .inner, #list_breadcrumb .inner_sm, #list_breadcrumb .inner_lg {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5em;
}
@media screen and (max-width: 768px) {
  #list_breadcrumb .inner, #list_breadcrumb .inner_sm, #list_breadcrumb .inner_lg {
    display: inline-flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    white-space: nowrap;
    width: auto;
    max-width: none;
    margin: 0;
  }
}
#list_breadcrumb .inner a, #list_breadcrumb .inner_sm a, #list_breadcrumb .inner_lg a, #list_breadcrumb .inner span, #list_breadcrumb .inner_sm span, #list_breadcrumb .inner_lg span {
  color: #fff;
}

/* swiper-common
---------------------------------------------------------------------------------------------------------------------- */
.swiper-button {
  width: 35px;
  height: auto;
  aspect-ratio: 1/1;
  background: url(../images/ico_swiper_button.svg) no-repeat right/contain;
  margin: 0;
  top: calc(50% - 17.5px);
}
.swiper-button::after {
  content: none;
}
.swiper-button-prev {
  transform: rotate(180deg);
  left: -50px;
}
@media screen and (max-width: 768px) {
  .swiper-button-prev {
    left: calc(var(--sideW) * -1);
  }
}
.swiper-button-next {
  right: -50px;
}
@media screen and (max-width: 768px) {
  .swiper-button-next {
    right: calc(var(--sideW) * -1);
  }
}
.swiper-button.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}

/* その他
---------------------------------------------------------------------------------------------------------------------- */
.lead {
  text-align: center;
  margin-bottom: var(--space);
}
@media screen and (max-width: 768px) {
  .lead {
    text-align: left;
    line-height: 1.75;
  }
}
.lead:last-child {
  margin-bottom: 0;
}
.lead.mb_sm {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .lead.mb_sm {
    margin-bottom: 20px;
  }
}
.lead--left {
  text-align: left;
}
.lead--sp_center {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .lead--sp_center {
    text-align: center;
  }
}
.lead--border {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 120px;
}
.lead--border::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 80px;
  background-color: #066069;
  left: calc(50% - 0.5px);
  bottom: 0;
}
.lead--green {
  color: #066069;
}

.catch {
  display: block;
  text-align: center;
  font-size: 2em;
  font-weight: 700;
  line-height: 1.5;
  color: #066069;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .catch {
    font-size: 1.5em;
  }
}
.catch:last-child {
  margin-bottom: 0;
}

/* アーカイブのページネーション
---------------------------------------------------------------------------------------------------------------------- */
.list_pagination {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 25px 12px;
  margin-bottom: var(--space);
}
@media screen and (max-width: 768px) {
  .list_pagination {
    padding: 20px 0;
  }
}
.list_pagination:last-child {
  margin-bottom: 0;
}
.list_pagination li {
  line-height: 1.5;
}
.list_pagination li.prev a, .list_pagination li.next a {
  display: inline-block;
  position: relative;
  font-weight: 700;
  padding: 0 25px;
}
@media screen and (max-width: 768px) {
  .list_pagination li.prev a, .list_pagination li.next a {
    padding: 0 15px;
  }
}
.list_pagination li.prev a::before, .list_pagination li.next a::before {
  content: "";
  position: absolute;
  width: 12px;
  aspect-ratio: 1/1;
  border-top: 2px solid #066069;
  border-right: 2px solid #066069;
  transform: rotate(45deg);
  top: calc(50% - 6px);
}
.list_pagination li.prev a:hover, .list_pagination li.next a:hover {
  text-decoration: underline;
}
.list_pagination li.prev a::before {
  transform: rotate(-135deg);
  left: 0;
}
.list_pagination li.next a::before {
  right: 0;
}
.list_pagination li.archive a {
  display: block;
  position: relative;
  width: 32px;
  aspect-ratio: 1/1;
  white-space: nowrap;
  overflow: hidden;
  text-indent: 110%;
}
.list_pagination li.archive a span {
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #066069;
  border-radius: 3px;
  top: calc(50% - 1.5px);
  left: 0;
}
.list_pagination li.archive a span::before, .list_pagination li.archive a span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #066069;
  border-radius: 3px;
  left: 0;
  top: -10px;
}
.list_pagination li.archive a span::after {
  top: 10px;
}

/* フォームパーツ
---------------------------------------------------------------------------------------------------------------------- */
.page-entry .lead {
  margin-bottom: 50px;
}

.dlist_form {
  display: flex;
  flex-direction: column;
  gap: 35px;
  position: relative;
  margin-bottom: 40px;
}
.dlist_form .item {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: baseline;
  gap: 25px;
}
@media screen and (max-width: 768px) {
  .dlist_form .item {
    grid-template-columns: 1fr;
    gap: 10px 0;
  }
}
.dlist_form .item.top_border {
  border-top: 1px solid #000;
  padding-top: 40px;
  margin-top: 25px;
}
.dlist_form .item.top_border p {
  font-size: 0.875em;
  line-height: 1.5;
}
.dlist_form dt {
  font-weight: 700;
}
.dlist_form dt.req {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .dlist_form dt.req {
    gap: 0 10px;
  }
}
.dlist_form dt.req::after {
  content: "必須";
  display: block;
  width: 45px;
  line-height: 22px;
  text-align: center;
  background-color: #066069;
  color: #fff;
  font-size: 0.75em;
  font-weight: 700;
}
.dlist_form dd [data-name=gender] .wpcf7-form-control {
  display: flex;
  flex-wrap: wrap;
  gap: 0 25px;
}
@media screen and (max-width: 768px) {
  .dlist_form dd [data-name=gender] .wpcf7-form-control {
    gap: 0 15px;
  }
}

input[type=text],
input[type=email],
input[type=tel],
input[type=date],
select,
textarea {
  width: 100%;
  max-width: 100%;
  padding: 18px 20px;
  border: 1px solid #000;
  background-color: #fff;
  line-height: 1.5;
  color: #000;
  text-align: left;
}
@media screen and (max-width: 768px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  input[type=date],
  select,
  textarea {
    padding: 15px 10px;
  }
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=date]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #ADADAD;
  font-size: 0.9375em;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=date]::placeholder,
select::placeholder,
textarea::placeholder {
  color: #ADADAD;
  font-size: 0.9375em;
}

textarea {
  height: 260px;
}
@media screen and (max-width: 768px) {
  textarea {
    height: 150px;
  }
}

select {
  width: auto;
  padding: 18px 40px 18px 20px;
  background: url(../images/ico_select.svg) no-repeat center right 10px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  select {
    width: 100%;
    padding: 15px 45px 15px 10px;
  }
}

.wpcf7-form-control-wrap:has(#zip) {
  display: block;
}
.wpcf7-form-control-wrap:has(#zip)::before {
  content: "〒";
  display: inline-block;
  margin-right: 15px;
}
@media screen and (max-width: 768px) {
  .wpcf7-form-control-wrap:has(#zip)::before {
    margin-right: 10px;
  }
}

#zip {
  width: 280px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #zip {
    width: 150px;
  }
}

.contact_privacy_wrap {
  background-color: #F7F7F7;
  padding: 30px 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .contact_privacy_wrap {
    padding: 20px 15px;
    margin-bottom: 25px;
  }
}
.contact_privacy_wrap strong {
  display: block;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.contact_privacy_wrap p {
  font-size: 0.875em;
  line-height: 1.8;
}

.wpcf7-checkbox,
.wpcf7-radio,
.wpcf7-acceptance {
  display: block;
}
.wpcf7-checkbox.site_check,
.wpcf7-radio.site_check,
.wpcf7-acceptance.site_check {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
}
@media screen and (max-width: 768px) {
  .wpcf7-checkbox.site_check,
  .wpcf7-radio.site_check,
  .wpcf7-acceptance.site_check {
    gap: 15px 25px;
  }
}
.wpcf7-checkbox.site_check .wpcf7-list-item,
.wpcf7-radio.site_check .wpcf7-list-item,
.wpcf7-acceptance.site_check .wpcf7-list-item {
  margin: 0;
}
.wpcf7-checkbox .wpcf7-list-item,
.wpcf7-radio .wpcf7-list-item,
.wpcf7-acceptance .wpcf7-list-item {
  display: block;
  margin: 0 0 15px;
}
@media screen and (max-width: 768px) {
  .wpcf7-checkbox .wpcf7-list-item,
  .wpcf7-radio .wpcf7-list-item,
  .wpcf7-acceptance .wpcf7-list-item {
    margin-bottom: 0;
  }
}
.wpcf7-checkbox .wpcf7-list-item:last-child,
.wpcf7-radio .wpcf7-list-item:last-child,
.wpcf7-acceptance .wpcf7-list-item:last-child {
  margin-bottom: 0;
}
.wpcf7-checkbox .wpcf7-list-item label,
.wpcf7-radio .wpcf7-list-item label,
.wpcf7-acceptance .wpcf7-list-item label {
  font-size: 0.9375em;
}
.wpcf7-checkbox .wpcf7-list-item label input,
.wpcf7-radio .wpcf7-list-item label input,
.wpcf7-acceptance .wpcf7-list-item label input {
  display: none;
}
.wpcf7-checkbox .wpcf7-list-item label input:checked + .wpcf7-list-item-label::after,
.wpcf7-radio .wpcf7-list-item label input:checked + .wpcf7-list-item-label::after,
.wpcf7-acceptance .wpcf7-list-item label input:checked + .wpcf7-list-item-label::after {
  border-color: #000;
}
.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label,
.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label,
.wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label {
  display: block;
  position: relative;
  padding-left: 30px;
}
.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label::before,
.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::before,
.wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  width: 1.42em;
  aspect-ratio: 1/1;
  border: 1px solid #000;
  left: 0;
  top: calc(50% - 0.71em);
}
.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label::after,
.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::after,
.wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 6px;
  border-left: 2px solid transparent;
  border-bottom: 2px solid transparent;
  left: 0.2em;
  top: calc(50% - 0.3em);
  transform: rotate(-40deg);
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label::after,
  .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::after,
  .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label::after {
    left: 3px;
  }
}

[data-name=doui] {
  display: block;
}
[data-name=doui] .wpcf7-acceptance {
  display: flex;
  text-align: center;
}
[data-name=doui] .wpcf7-acceptance .wpcf7-list-item {
  padding: 0;
}
[data-name=doui] .wpcf7-acceptance a {
  text-decoration: underline;
  color: #066069;
}
[data-name=doui] .wpcf7-acceptance a:hover {
  text-decoration: none;
}

.contact_cation {
  text-align: center;
  font-weight: 700;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .contact_cation {
    text-align: left;
  }
}

.privacy-policy_wrap {
  background-color: #fff;
  padding: 80px vwClamp(100);
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .privacy-policy_wrap {
    padding: 40px var(--sideW);
  }
}

.dlist_policy {
  margin-bottom: 20px;
}
.dlist_policy:last-child {
  margin-bottom: 0;
}
.dlist_policy .item {
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .dlist_policy .item {
    margin-bottom: 40px;
  }
}
.dlist_policy .item:last-child {
  margin-bottom: 0;
}
.dlist_policy dt {
  display: flex;
  gap: 0 10px;
  font-size: 1.25em;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .dlist_policy dt {
    font-size: 1.125em;
  }
}
.dlist_policy dt::before {
  content: "●";
  display: block;
  font-weight: 500;
  color: #CC628B;
  flex-shrink: 0;
}
.dlist_policy dd {
  font-size: 0.875em;
}
@media screen and (max-width: 768px) {
  .dlist_policy dd ul {
    padding: 15px 0;
    margin-bottom: 25px;
  }
}
.dlist_policy dd ul:last-child {
  margin-bottom: 0;
}
.dlist_policy dd ul li {
  display: flex;
  gap: 0.5em;
}
.dlist_policy dd ul li::before {
  content: "■";
  display: block;
  flex-shrink: 0;
}

/* reCAPTCHAバッジ非表示 */
.grecaptcha-badge {
  visibility: hidden;
}

.grecaptcha_text {
  text-align: center;
}

/* ユーティリティ
mx ＝ "x軸方向のmargin"
---------------------------------------------------------------------------------------------------------------------- */
.u-text-center {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .u-text-left-sp {
    text-align: left;
  }
}

.u-mx-center {
  margin-inline: auto;
}

.u-mx-right {
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .u-mx-right-sp {
    margin-left: auto;
  }
}

.u-mx-left {
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .u-mx-left-sp {
    margin-right: auto;
  }
}

.u-disp-ib {
  display: inline-block;
}

.u-gap {
  display: block;
  height: 1em;
}
@media screen and (max-width: 768px) {
  .u-gap {
    height: 0.6em;
  }
}