@charset 'UTF-8';
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=BIZ+UDGothic:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@700&display=swap');
@keyframes slideLoop {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes defKvAnim {
  0% {
    width: 0;
  }
  100% {
    width: 80px;
  }
}
@keyframes kvDots {
  0% {
    width: 0;
  }
  100% {
    width: 80px;
  }
}
@keyframes rekvDots {
  0% {
    width: 0;
  }
  100% {
    width: 80px;
  }
}
@keyframes headerfollow {
  0% {
    top: -134px;
  }
  100% {
    top: 0;
  }
}
@keyframes headerfollow-n {
  0% {
    top: 134px;
  }
  100% {
    top: 0;
  }
}
@keyframes contents_bg_rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes contents_bg_anim1 {
  0% {
    transform: translate(0px, 0px) scale(1);
  }
  100% {
    transform: translate(-36px, -262px) scale(1.2142857143);
  }
}
@keyframes contents_bg_anim2 {
  0% {
    transform: translate(0px, 0px) scale(1);
  }
  100% {
    transform: translate(-384px, -144px) scale(1.4047619048);
  }
}
@keyframes contents_bg_anim3 {
  0% {
    transform: translate(0px, 0px) scale(1);
  }
  100% {
    transform: translate(432px, 254px) scale(1.5);
  }
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  vertical-align: top;
}

html {
  overflow-y: scroll;
}

body {
  font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', '游ゴシック体', 'Yu Gothic', 'YuGothic', 'メイリオ', 'Meiryo', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: none;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  color: #424242;
}
a:hover {
  text-decoration: none;
}

::selection {
  background: #09102c;
  color: #fff;
}

.is-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .is-pc {
    display: none;
  }
}

.is-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .is-sp {
    display: block;
  }
}

.c-btn {
  position: relative;
}
.c-btn__in {
  position: relative;
  display: block;
  background-color: #09102c;
  border-radius: 100px;
  padding: 9px 0;
  font-family: 'BIZ UDGothic', sans-serif;
  font-size: 15px;
  line-height: 1.8666666667;
  color: #fff;
  font-weight: 700;
}
@media print, (min-width: 768px) {
  .c-btn__in {
    font-family: 'BIZ UDGothic', sans-serif;
    font-size: 16px;
    line-height: 1.75;
    font-weight: 700;
    transition: .3s cubic-bezier(.215, .61, .355, 1);
  }
  .c-btn__in:hover {
    background-color: #00a0e9 !important;
  }
  .c-btn__in:hover::before {
    width: 36px;
    height: 36px;
    opacity: 1;
  }
  .c-btn__in:hover.icon-window::after,
  .c-btn__in:hover.icon-arrow::after {
    right: 16px;
    background-color: #00a0e9;
    background-blend-mode: multiply;
  }
  .c-btn__in:hover.icon-x::after {
    rotate: -180deg;
    background-color: #00a0e9;
  }
}
.c-btn__in::before {
  position: absolute;
  content: '';
  display: inline-block;
  transition: .3s cubic-bezier(.215, .61, .355, 1);
  background: #fff;
  top: 50%;
  right: 23px;
  transform-origin: center;
  border-radius: 50%;
  transform: translate(50%, -50%);
  width: 0;
  height: 0;
  z-index: 1;
  opacity: 0;
}
.c-btn__in.icon-window::after {
  position: absolute;
  content: '';
  display: inline-block;
  transition: .3s cubic-bezier(.215, .61, .355, 1);
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
  width: 15px;
  height: 11px;
          mask-image: url('/images/icon_window01.webp');
  -webkit-mask-image: url('/images/icon_window01.webp');
          mask-position: center;
  -webkit-mask-position: center;
          mask-size: contain;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  z-index: 2;
  background-color: #fff;
}
.c-btn__in.icon-arrow::after {
  position: absolute;
  content: '';
  display: inline-block;
  transition: .3s cubic-bezier(.215, .61, .355, 1);
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
  width: 15px;
  height: 14px;
          mask-image: url('/images/icon_arrow01.webp');
  -webkit-mask-image: url('/images/icon_arrow01.webp');
          mask-position: center;
  -webkit-mask-position: center;
          mask-size: contain;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  z-index: 2;
  background-color: #fff;
}
.c-btn__in.icon-x::after {
  position: absolute;
  content: '';
  display: inline-block;
  transition: .3s cubic-bezier(.215, .61, .355, 1);
  top: 50%;
  right: 26px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
          mask-image: url('/images/icon_x.webp');
  -webkit-mask-image: url('/images/icon_x.webp');
          mask-position: center;
  -webkit-mask-position: center;
          mask-size: contain;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  z-index: 2;
  background-color: #fff;
  transform-origin: top;
}
@media print, (min-width: 768px) {
  .c-btn.sz-bg .c-btn__in:hover::before {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 767px) {
  .c-btn.sz-bg .c-btn__in {
    line-height: 1;
  }
}
.c-btn.sz-bg .c-btn__in::before {
  right: 35px;
}

.c-nav {
  display: flex;
  gap: 25px;
  justify-content: left;
  color: #09102c;
}
@media screen and (max-width: 767px) {
  .c-nav {
    flex-wrap: wrap;
    gap: 8px 25px;
  }
}
@media print, (min-width: 768px) {
  .c-nav {
    gap: 40px;
  }
}
.c-nav__aw {
  position: relative;
  line-height: 1.5;
  border-bottom: 1px solid #09102c;
  font-family: 'BIZ UDGothic', sans-serif;
  font-size: 12px;
}
@media print, (min-width: 768px) {
  .c-nav__aw {
    font-size: 14px;
  }
}
.c-nav__aw a {
  color: #09102c;
}
.c-nav__aw:not(:last-child)::after {
  position: absolute;
  content: '';
  width: 6px;
  height: 11px;
  background-image: url('/images/icon_arrow02.webp');
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
}
@media print, (min-width: 768px) {
  .c-nav__aw:not(:last-child)::after {
    right: -25px;
  }
}
.c-nav__aw:not(:last-child):first-child {
  font-family: 'Inter', sans-serif;
}
.c-nav__aw.is-now {
  border-bottom: none;
  color: #444;
}

.l-contents {
  position: relative;
}
.l-contents__in {
  margin: 0 auto;
  padding: 80px 0 0;
  background: #f1fbff;
  transition: .3s cubic-bezier(.215, .61, .355, 1);
}
@media print, (min-width: 768px) {
  .l-contents__in {
    padding: 134px 0 0;
  }
}
.l-contents__bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  pointer-events: none;
  transition: .6s cubic-bezier(.215, .61, .355, 1);
  transform: translate3d(0, 0, 0);
}
@media print, (min-width: 768px) {
  .l-contents__bg {
    min-width: 1280px;
  }
}
@media screen and (max-width: 767px) {
  .l-contents__bg {
    left: 0 !important;
  }
}
.l-contents__bg__in {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: rotate(0deg) scale(1, 1);
}
.l-contents__bg__u {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.l-contents__bg__u > span {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
}
.l-contents__bg__u > span > span {
  display: block;
  position: absolute;
}
.l-contents__bg__u > span > span > span {
  display: block;
  position: absolute;
  border-radius: 50%;
}
.l-contents__bg__u:nth-child(1) > span {
  animation: contents_bg_rotate 576000ms linear infinite;
}
.l-contents__bg__u:nth-child(1) > span > span {
  animation: contents_bg_anim1 28800ms ease-in-out infinite alternate;
}
@media print, (min-width: 768px) {
  .l-contents__bg__u:nth-child(1) > span > span {
    left: 395px;
    top: 31px;
  }
}
@media screen and (max-width: 767px) {
  .l-contents__bg__u:nth-child(1) > span > span {
    left: 276.5px;
    top: 21.7px;
  }
}
.l-contents__bg__u:nth-child(1) > span > span > span {
  background: radial-gradient(50% 50% at 50% 50%, rgba(254, 255, 245, .6) 0%, rgba(254, 255, 245, 0) 100%);
}
@media print, (min-width: 768px) {
  .l-contents__bg__u:nth-child(1) > span > span > span {
    width: 560px;
    height: 560px;
    margin: -280px 0 0 -280px;
  }
}
@media screen and (max-width: 767px) {
  .l-contents__bg__u:nth-child(1) > span > span > span {
    width: 392px;
    height: 392px;
    margin: -196px 0 0 -196px;
  }
}
.l-contents__bg__u:nth-child(2) > span {
  animation: contents_bg_rotate 640000ms linear infinite;
}
.l-contents__bg__u:nth-child(2) > span > span {
  animation: contents_bg_anim2 32000ms ease-in-out infinite alternate;
}
@media print, (min-width: 768px) {
  .l-contents__bg__u:nth-child(2) > span > span {
    left: 106px;
    top: -157px;
  }
}
@media screen and (max-width: 767px) {
  .l-contents__bg__u:nth-child(2) > span > span {
    left: 74.2px;
    top: -109.9px;
  }
}
.l-contents__bg__u:nth-child(2) > span > span > span {
  background: radial-gradient(rgba(234, 244, 247, .8) 0%, rgba(234, 244, 247, 0) 70%);
}
@media print, (min-width: 768px) {
  .l-contents__bg__u:nth-child(2) > span > span > span {
    width: 420px;
    height: 420px;
    margin: -210px 0 0 -210px;
  }
}
@media screen and (max-width: 767px) {
  .l-contents__bg__u:nth-child(2) > span > span > span {
    width: 294px;
    height: 294px;
    margin: -147px 0 0 -147px;
  }
}
.l-contents__bg__u:nth-child(3) > span {
  animation: contents_bg_rotate 704000ms linear infinite;
}
.l-contents__bg__u:nth-child(3) > span > span {
  animation: contents_bg_anim3 35200ms ease-in-out infinite alternate;
}
@media print, (min-width: 768px) {
  .l-contents__bg__u:nth-child(3) > span > span {
    left: -607px;
    top: 161px;
  }
}
@media screen and (max-width: 767px) {
  .l-contents__bg__u:nth-child(3) > span > span {
    left: -424.9px;
    top: 112.7px;
  }
}
.l-contents__bg__u:nth-child(3) > span > span > span {
  background: radial-gradient(rgba(231, 253, 249, .8) 0%, rgba(231, 253, 249, 0) 70%);
}
@media print, (min-width: 768px) {
  .l-contents__bg__u:nth-child(3) > span > span > span {
    width: 380px;
    height: 380px;
    margin: -190px 0 0 -190px;
  }
}
@media screen and (max-width: 767px) {
  .l-contents__bg__u:nth-child(3) > span > span > span {
    width: 266px;
    height: 266px;
    margin: -133px 0 0 -133px;
  }
}
.l-contents__bg.is-reverse .l-contents__bg__u > span > span {
  animation-direction: alternate-reverse;
}

.l-footer {
  position: relative;
  z-index: 200;
  background: #09102c;
}
.l-footer__ct {
  position: relative;
}
.l-footer__ct > a {
  text-decoration: none;
}
@media print, (min-width: 768px) {
  .l-footer__ct > a:hover .l-footer__ct__bg,
  .l-footer__ct > a:active .l-footer__ct__bg {
    opacity: 1;
  }
  .l-footer__ct > a:hover .l-footer__ct__rt > div,
  .l-footer__ct > a:active .l-footer__ct__rt > div {
    background: #00a0e9;
  }
  .l-footer__ct > a:hover .l-footer__ct__rt > div::before,
  .l-footer__ct > a:active .l-footer__ct__rt > div::before {
    opacity: 0;
  }
  .l-footer__ct > a:hover .l-footer__ct__rt > div > span,
  .l-footer__ct > a:active .l-footer__ct__rt > div > span {
    top: 25.5px;
    height: 33px;
    left: 58%;
  }
  .l-footer__ct > a:hover .is-hv-blk,
  .l-footer__ct > a:active .is-hv-blk {
    opacity: 1;
  }
}
.l-footer__ct__in {
  position: relative;
  height: 120px;
}
@media screen and (max-width: 767px) {
  .l-footer__ct__in {
    padding-left: 20px;
  }
}
@media print, (min-width: 768px) {
  .l-footer__ct__in {
    height: 240px;
    background-position: 50% 80%;
  }
}
.l-footer__ct__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: .4;
  transition: opacity 300ms cubic-bezier(.215, .61, .355, 1);
}
.l-footer__ct__bg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.l-footer__ct__ttl {
  position: relative;
  max-width: 1300px;
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  padding-top: 42px;
}
@media print, (min-width: 768px) {
  .l-footer__ct__ttl {
    padding: 97px 80px 0;
    margin: 0 auto;
  }
}
.l-footer__ct__ttl h3 {
  font-size: 24px;
  color: #fff;
}
@media print, (min-width: 768px) {
  .l-footer__ct__ttl h3 {
    font-size: 36px;
  }
}
.l-footer__ct__ttl__en {
  position: absolute;
  mix-blend-mode: overlay;
  opacity: .8;
  width: 257px;
  left: -3px;
  top: 5px;
}
@media print, (min-width: 768px) {
  .l-footer__ct__ttl__en {
    width: 733px;
  }
}
.l-footer__ct__ttl__en img {
  width: 100%;
}
.l-footer__ct__rt {
  position: absolute;
  z-index: 5;
}
@media print, (min-width: 768px) {
  .l-footer__ct__rt {
    right: 80px;
    top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__ct__rt {
    right: 0;
    bottom: 0;
  }
}
.l-footer__ct__rt > div {
  display: block;
  position: relative;
  transition: background 300ms cubic-bezier(.215, .61, .355, 1);
}
@media print, (min-width: 768px) {
  .l-footer__ct__rt > div {
    width: 100px;
    height: 100px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__ct__rt > div {
    width: 60px;
    height: 60px;
  }
}
.l-footer__ct__rt > div::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, .3);
  transition: opacity 300ms cubic-bezier(.215, .61, .355, 1);
}
.l-footer__ct__rt > div > span {
  display: block;
  position: absolute;
  left: 57%;
  width: 1px;
  margin-left: -.5px;
  background: #fff;
  transition: top 300ms cubic-bezier(.215, .61, .355, 1), left 300ms cubic-bezier(.215, .61, .355, 1), height 300ms cubic-bezier(.215, .61, .355, 1);
  rotate: 45deg;
}
@media print, (min-width: 768px) {
  .l-footer__ct__rt > div > span {
    top: 28.5px;
    height: 30px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__ct__rt > div > span {
    top: 14.5px;
    height: 20px;
    left: 59%;
  }
}
.l-footer__ct__rt > div > span::before,
.l-footer__ct__rt > div > span::after {
  content: '';
  display: block;
  position: absolute;
  top: 2px;
  height: 1px;
  background: #fff;
}
@media print, (min-width: 768px) {
  .l-footer__ct__rt > div > span::before,
  .l-footer__ct__rt > div > span::after {
    width: 12px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__ct__rt > div > span::before,
  .l-footer__ct__rt > div > span::after {
    width: 8px;
  }
}
.l-footer__ct__rt > div > span::before {
  transform: rotate(-45deg);
}
@media print, (min-width: 768px) {
  .l-footer__ct__rt > div > span::before {
    left: -9.5px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__ct__rt > div > span::before {
    left: -6px;
  }
}
.l-footer__ct__rt > div > span::after {
  transform: rotate(45deg);
}
@media print, (min-width: 768px) {
  .l-footer__ct__rt > div > span::after {
    right: -9.5px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__ct__rt > div > span::after {
    right: -6px;
  }
}
.l-footer__ct__rt > div .is-hv-blk {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 29px;
  height: 29px;
  background-image: url('/images/icon_square01.webp');
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .l-footer__ct__rt > div .is-hv-blk {
    width: 17px;
    height: 17px;
  }
}
.l-footer__consul,
.l-footer__case {
  position: relative;
  background: #09102c;
  overflow: hidden;
}
.l-footer__consul > a,
.l-footer__case > a {
  text-decoration: none;
}
@media print, (min-width: 768px) {
  .l-footer__consul > a:hover .l-footer__consul__bg,
  .l-footer__consul > a:hover .l-footer__case__bg,
  .l-footer__consul > a:active .l-footer__consul__bg,
  .l-footer__consul > a:active .l-footer__case__bg,
  .l-footer__case > a:hover .l-footer__consul__bg,
  .l-footer__case > a:hover .l-footer__case__bg,
  .l-footer__case > a:active .l-footer__consul__bg,
  .l-footer__case > a:active .l-footer__case__bg {
    opacity: 1;
  }
  .l-footer__consul > a:hover .l-footer__consul__rt > div,
  .l-footer__consul > a:hover .l-footer__case__rt > div,
  .l-footer__consul > a:active .l-footer__consul__rt > div,
  .l-footer__consul > a:active .l-footer__case__rt > div,
  .l-footer__case > a:hover .l-footer__consul__rt > div,
  .l-footer__case > a:hover .l-footer__case__rt > div,
  .l-footer__case > a:active .l-footer__consul__rt > div,
  .l-footer__case > a:active .l-footer__case__rt > div {
    background: #00a0e9;
  }
  .l-footer__consul > a:hover .l-footer__consul__rt > div::before,
  .l-footer__consul > a:hover .l-footer__case__rt > div::before,
  .l-footer__consul > a:active .l-footer__consul__rt > div::before,
  .l-footer__consul > a:active .l-footer__case__rt > div::before,
  .l-footer__case > a:hover .l-footer__consul__rt > div::before,
  .l-footer__case > a:hover .l-footer__case__rt > div::before,
  .l-footer__case > a:active .l-footer__consul__rt > div::before,
  .l-footer__case > a:active .l-footer__case__rt > div::before {
    opacity: 0;
  }
  .l-footer__consul > a:hover .l-footer__consul__rt > div > span,
  .l-footer__consul > a:hover .l-footer__case__rt > div > span,
  .l-footer__consul > a:active .l-footer__consul__rt > div > span,
  .l-footer__consul > a:active .l-footer__case__rt > div > span,
  .l-footer__case > a:hover .l-footer__consul__rt > div > span,
  .l-footer__case > a:hover .l-footer__case__rt > div > span,
  .l-footer__case > a:active .l-footer__consul__rt > div > span,
  .l-footer__case > a:active .l-footer__case__rt > div > span {
    height: 50px;
    top: 25px;
  }
  .l-footer__consul > a:hover .is-hv-blk,
  .l-footer__consul > a:active .is-hv-blk,
  .l-footer__case > a:hover .is-hv-blk,
  .l-footer__case > a:active .is-hv-blk {
    opacity: 1;
  }
}
.l-footer__consul__in,
.l-footer__case__in {
  position: relative;
  height: 120px;
}
@media screen and (max-width: 767px) {
  .l-footer__consul__in,
  .l-footer__case__in {
    padding-left: 20px;
  }
}
@media print, (min-width: 768px) {
  .l-footer__consul__in,
  .l-footer__case__in {
    height: 240px;
    background-position: 50% 80%;
  }
}
.l-footer__consul__bg,
.l-footer__case__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: opacity 300ms cubic-bezier(.215, .61, .355, 1);
  opacity: .8;
}
@media print, (min-width: 768px) {
  .l-footer__consul__bg,
  .l-footer__case__bg {
    opacity: .4;
  }
}
.l-footer__consul__bg img,
.l-footer__case__bg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.l-footer__consul__ttl,
.l-footer__case__ttl {
  position: relative;
  max-width: 1300px;
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  padding-top: 42px;
  z-index: 5;
}
@media print, (min-width: 768px) {
  .l-footer__consul__ttl,
  .l-footer__case__ttl {
    padding: 97px 80px 0;
    margin: 0 auto;
  }
}
.l-footer__consul__ttl h3,
.l-footer__case__ttl h3 {
  font-size: 24px;
  color: #fff;
}
@media print, (min-width: 768px) {
  .l-footer__consul__ttl h3,
  .l-footer__case__ttl h3 {
    font-size: 36px;
  }
}
.l-footer__consul__ttl__en,
.l-footer__case__ttl__en {
  position: absolute;
  mix-blend-mode: overlay;
  width: 387px;
  left: -3px;
  top: 5px;
  z-index: 2;
}
@media print, (min-width: 768px) {
  .l-footer__consul__ttl__en,
  .l-footer__case__ttl__en {
    width: 1105px;
  }
}
.l-footer__consul__ttl__en img,
.l-footer__case__ttl__en img {
  width: 100%;
}
.l-footer__consul__rt,
.l-footer__case__rt {
  position: absolute;
  z-index: 5;
}
@media print, (min-width: 768px) {
  .l-footer__consul__rt,
  .l-footer__case__rt {
    right: 80px;
    top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__consul__rt,
  .l-footer__case__rt {
    right: 0;
    bottom: 0;
  }
}
.l-footer__consul__rt > div,
.l-footer__case__rt > div {
  display: block;
  position: relative;
  transition: background 300ms cubic-bezier(.215, .61, .355, 1);
}
@media print, (min-width: 768px) {
  .l-footer__consul__rt > div,
  .l-footer__case__rt > div {
    width: 100px;
    height: 100px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__consul__rt > div,
  .l-footer__case__rt > div {
    width: 60px;
    height: 60px;
  }
}
.l-footer__consul__rt > div::before,
.l-footer__case__rt > div::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, .3);
  transition: opacity 300ms cubic-bezier(.215, .61, .355, 1);
}
.l-footer__consul__rt > div > span,
.l-footer__case__rt > div > span {
  display: block;
  position: absolute;
  left: 50%;
  width: 1px;
  margin-left: -.5px;
  background: #fff;
  transition: top 300ms cubic-bezier(.215, .61, .355, 1), left 300ms cubic-bezier(.215, .61, .355, 1), height 300ms cubic-bezier(.215, .61, .355, 1);
  rotate: 90deg;
}
@media print, (min-width: 768px) {
  .l-footer__consul__rt > div > span,
  .l-footer__case__rt > div > span {
    top: 35px;
    height: 30px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__consul__rt > div > span,
  .l-footer__case__rt > div > span {
    top: 20.5px;
    height: 20px;
  }
}
.l-footer__consul__rt > div > span::before,
.l-footer__consul__rt > div > span::after,
.l-footer__case__rt > div > span::before,
.l-footer__case__rt > div > span::after {
  content: '';
  display: block;
  position: absolute;
  top: 2px;
  height: 1px;
  background: #fff;
}
@media print, (min-width: 768px) {
  .l-footer__consul__rt > div > span::before,
  .l-footer__consul__rt > div > span::after,
  .l-footer__case__rt > div > span::before,
  .l-footer__case__rt > div > span::after {
    width: 12px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__consul__rt > div > span::before,
  .l-footer__consul__rt > div > span::after,
  .l-footer__case__rt > div > span::before,
  .l-footer__case__rt > div > span::after {
    width: 8px;
  }
}
.l-footer__consul__rt > div > span::before,
.l-footer__case__rt > div > span::before {
  transform: rotate(-45deg);
}
@media print, (min-width: 768px) {
  .l-footer__consul__rt > div > span::before,
  .l-footer__case__rt > div > span::before {
    left: -9.5px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__consul__rt > div > span::before,
  .l-footer__case__rt > div > span::before {
    left: -6px;
  }
}
.l-footer__consul__rt > div > span::after,
.l-footer__case__rt > div > span::after {
  transform: rotate(45deg);
}
@media print, (min-width: 768px) {
  .l-footer__consul__rt > div > span::after,
  .l-footer__case__rt > div > span::after {
    right: -9.5px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__consul__rt > div > span::after,
  .l-footer__case__rt > div > span::after {
    right: -6px;
  }
}
.l-footer__mn {
  position: relative;
}
@media print, (min-width: 768px) {
  .l-footer__mn {
    height: 315px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__mn {
    padding: 80px 30px 30px;
  }
}
@media print, (min-width: 768px) {
  .l-footer__mn__nv {
    display: flex;
    position: absolute;
    right: 80px;
    top: 216px;
  }
}
.l-footer__mn__nv > li {
  line-height: 1.4;
}
@media print, (min-width: 768px) {
  .l-footer__mn__nv > li {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__mn__nv > li {
    font-size: 13px;
    text-align: right;
  }
}
.l-footer__mn__nv > li > a {
  color: #fff;
  text-decoration: none;
}
@media print, (min-width: 768px) {
  .l-footer__mn__nv > li > a:hover,
  .l-footer__mn__nv > li > a:active {
    text-decoration: underline;
  }
}
@media print, (min-width: 768px) {
  .l-footer__mn__nv > li:nth-child(n+2) {
    margin-left: 50px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__mn__nv > li:nth-child(n+2) {
    margin-top: 20px;
  }
}
@media print, (min-width: 768px) {
  .l-footer__mn__lg {
    position: absolute;
    left: 80px;
    top: 160px;
    width: 184px;
  }
}
@media print and (max-width: 1614px), (min-width: 768px) and (max-width: 1614px) {
  .l-footer__mn__lg {
    top: 105px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__mn__lg {
    position: relative;
    width: 140px;
    margin-top: 80px;
  }
}
.l-footer__mn__lg > a {
  display: block;
  position: relative;
}
@media print, (min-width: 768px) {
  .l-footer__mn__lg > a {
    height: 75px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__mn__lg > a {
    height: 58px;
  }
}
.l-footer__mn__lg > a > img {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
}
.l-footer__mn__lg > a > img:nth-child(1) {
  top: 0;
}
@media print, (min-width: 768px) {
  .l-footer__mn__lg > a > img:nth-child(1) {
    height: 13px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__mn__lg > a > img:nth-child(1) {
    height: 10px;
  }
}
@media print, (min-width: 768px) {
  .l-footer__mn__lg > a > img:nth-child(2) {
    top: 20px;
    height: 55px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__mn__lg > a > img:nth-child(2) {
    top: 16px;
    height: 42px;
  }
}
.l-footer__mn__cp {
  color: #fff;
  line-height: 1.4;
}
@media print, (min-width: 768px) {
  .l-footer__mn__cp {
    position: absolute;
    left: 332px;
    top: 216px;
    font-size: 14px;
  }
}
@media print and (max-width: 1614px), (min-width: 768px) and (max-width: 1614px) {
  .l-footer__mn__cp {
    left: 80px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__mn__cp {
    margin-top: 15px;
    font-size: 12px;
  }
}
.l-footer__mn__rt {
  position: absolute;
}
@media print, (min-width: 768px) {
  .l-footer__mn__rt {
    right: 80px;
    top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__mn__rt {
    right: 0;
    bottom: 0;
  }
}
.l-footer__mn__rt > a {
  display: block;
  position: relative;
  transition: background 300ms cubic-bezier(.215, .61, .355, 1);
}
@media print, (min-width: 768px) {
  .l-footer__mn__rt > a {
    width: 100px;
    height: 100px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__mn__rt > a {
    width: 60px;
    height: 60px;
  }
}
.l-footer__mn__rt > a::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, .3);
  transition: opacity 300ms cubic-bezier(.215, .61, .355, 1);
}
.l-footer__mn__rt > a > span {
  display: block;
  position: absolute;
  left: 50%;
  width: 1px;
  margin-left: -.5px;
  background: #fff;
  transition: top 300ms cubic-bezier(.215, .61, .355, 1), height 300ms cubic-bezier(.215, .61, .355, 1);
}
@media print, (min-width: 768px) {
  .l-footer__mn__rt > a > span {
    top: 35px;
    height: 30px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__mn__rt > a > span {
    top: 20.5px;
    height: 20px;
  }
}
.l-footer__mn__rt > a > span::before,
.l-footer__mn__rt > a > span::after {
  content: '';
  display: block;
  position: absolute;
  top: 2px;
  height: 1px;
  background: #fff;
}
@media print, (min-width: 768px) {
  .l-footer__mn__rt > a > span::before,
  .l-footer__mn__rt > a > span::after {
    width: 12px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__mn__rt > a > span::before,
  .l-footer__mn__rt > a > span::after {
    width: 8px;
  }
}
.l-footer__mn__rt > a > span::before {
  transform: rotate(-45deg);
}
@media print, (min-width: 768px) {
  .l-footer__mn__rt > a > span::before {
    left: -9.5px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__mn__rt > a > span::before {
    left: -6px;
  }
}
.l-footer__mn__rt > a > span::after {
  transform: rotate(45deg);
}
@media print, (min-width: 768px) {
  .l-footer__mn__rt > a > span::after {
    right: -9.5px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__mn__rt > a > span::after {
    right: -6px;
  }
}
@media print, (min-width: 768px) {
  .l-footer__mn__rt > a:hover,
  .l-footer__mn__rt > a:active {
    background: #00a0e9;
  }
  .l-footer__mn__rt > a:hover::before,
  .l-footer__mn__rt > a:active::before {
    opacity: 0;
  }
  .l-footer__mn__rt > a:hover > span,
  .l-footer__mn__rt > a:active > span {
    top: 25px;
    height: 50px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__mn:has(.l-footer__mn__back) {
    padding-top: 140px;
  }
}
.l-footer__mn__back {
  position: absolute;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .l-footer__mn__back {
    top: 40px;
    left: 25px;
  }
}
@media print, (min-width: 768px) {
  .l-footer__mn__back {
    left: 80px;
    top: 60px;
  }
}
@media (max-width: 1614px) {
  .l-footer__mn__back {
    top: 25px;
  }
}
.l-footer__mn__back a {
  font-family: 'BIZ UDGothic', sans-serif;
  color: #fff;
  font-weight: bold;
  display: block;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .l-footer__mn__back a {
    padding-bottom: 10px;
    font-size: 15px;
  }
}
@media print, (min-width: 768px) {
  .l-footer__mn__back a {
    font-size: 18px;
  }
}
.l-footer__mn__back a .inter {
  font-family: 'Inter', sans-serif;
}
.l-footer__mn__back a::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 1px;
  background: #fff;
  bottom: 0;
  right: 0;
  transition: width .3s cubic-bezier(.215, .61, .355, 1);
}
.l-footer__mn__back a::after {
  position: absolute;
  content: '';
  width: 11px;
  height: 11px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(-135deg);
  bottom: -5.5px;
  left: 0;
  transition: .3s cubic-bezier(.215, .61, .355, 1);
}
@media print, (min-width: 768px) {
  .l-footer__mn__back a:hover::before,
  .l-footer__mn__back a:active::before {
    width: calc(100% + 35px);
  }
  .l-footer__mn__back a:hover::after,
  .l-footer__mn__back a:active::after {
    left: -35px;
  }
}
@media print, (min-width: 768px) {
  .l-footer__co {
    max-width: 1240px;
    margin: 0 auto;
    padding: 250px 80px 70px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__co {
    padding: 100px 30px 10px;
  }
}
.l-footer__co__tt {
  color: #fff;
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  line-height: 1.4;
}
@media print, (min-width: 768px) {
  .l-footer__co__tt {
    margin-bottom: 95px;
    font-size: 42px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__co__tt {
    margin-bottom: 45px;
    font-size: 30px;
  }
}
@media print, (min-width: 768px) {
  .l-footer__co__cw {
    display: flex;
  }
}
@media print, (min-width: 768px) {
  .l-footer__co__cw__c {
    width: 50%;
    box-sizing: border-box;
  }
}
@media print, (min-width: 768px) {
  .l-footer__co__cw__c:nth-child(1) {
    padding-right: 40px;
  }
}
@media print, (min-width: 768px) {
  .l-footer__co__cw__c:nth-child(2) {
    padding-left: 40px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__co__cw__c:nth-child(2) {
    margin-top: 30px;
  }
}
.l-footer__co__cw__bx__p {
  line-height: 1;
  text-align: center;
}
@media print, (min-width: 768px) {
  .l-footer__co__cw__bx__p > img {
    width: 624/2px;
    height: 154/2px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__co__cw__bx__p > img {
    width: 211px;
    height: 52px;
  }
}
.l-footer__co__cw__bx__t {
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
@media print, (min-width: 768px) {
  .l-footer__co__cw__bx__t {
    margin-top: 35px;
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__co__cw__bx__t {
    margin-top: 25px;
    font-size: 15px;
  }
}
.l-footer__co__cw__bx__t > span {
  display: inline-block;
  position: relative;
  width: 12px;
  height: 8px;
  background: #09102c;
  vertical-align: 13%;
}
@media print, (min-width: 768px) {
  .l-footer__co__cw__bx__t > span {
    margin-left: 15px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__co__cw__bx__t > span {
    margin-left: 10px;
  }
}
.l-footer__co__cw__bx__t > span::before,
.l-footer__co__cw__bx__t > span::after {
  content: '';
  display: block;
  position: absolute;
  right: -3px;
  bottom: -3px;
  background: #09102c;
}
.l-footer__co__cw__bx__t > span::before {
  width: 12px;
  height: 1px;
}
.l-footer__co__cw__bx__t > span::after {
  width: 1px;
  height: 8px;
}
.l-footer__co__cw__bx > a {
  display: block;
  background: #fff;
  color: inherit;
  text-decoration: none;
}
@media print, (min-width: 768px) {
  .l-footer__co__cw__bx > a {
    padding: 40px 0;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__co__cw__bx > a {
    padding: 30px 0;
  }
}
@media print, (min-width: 768px) {
  .l-footer__co__cw__bx > a:hover .l-footer__co__cw__bx__t,
  .l-footer__co__cw__bx > a:active .l-footer__co__cw__bx__t {
    text-decoration: underline;
  }
}
.l-footer.is-ptn1,
.l-footer.is-ptn4 {
  background: #09102c;
}
.l-footer.is-ptn2,
.l-footer.is-ptn3 {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0ms 500ms, opacity 500ms cubic-bezier(.215, .61, .355, 1);
}
html.is-footerShow .l-footer {
  visibility: visible;
  opacity: 1;
  transition: visibility 0ms, opacity 500ms cubic-bezier(.215, .61, .355, 1);
}

.l-footer__case__ttl__en {
  width: 364px;
}
@media print, (min-width: 768px) {
  .l-footer__case__ttl__en {
    width: 1040px;
  }
}

@media screen and (max-width: 767px) {
  body[data-id=index] .l-footer__mn {
    padding-top: 80px;
  }
}
body[data-id=index] .l-footer__mn__back {
  display: none;
}

body[data-id='404'] .l-footer__ct,
body[data-id=security] .l-footer__ct,
body[data-id=site] .l-footer__ct,
body[data-id=privacy] .l-footer__ct {
  display: none;
}

@media print, (min-width: 768px) {
  .l-hamburger {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .l-hamburger {
    position: fixed;
    right: 8px;
    top: 8px;
    z-index: 800;
  }
  .l-hamburger > a {
    display: block;
    position: relative;
    width: 60px;
    height: 60px;
    background: #09102c;
    border-radius: 50%;
  }
  .l-hamburger > a::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-sizing: border-box;
  }
  .l-hamburger > a > span {
    display: block;
    position: absolute;
    left: 18px;
    top: 18px;
    width: 24px;
    height: 24px;
  }
  .l-hamburger > a > span::before,
  .l-hamburger > a > span::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 12.5px;
    width: 24px;
    height: 1px;
    background: #fff;
    transition: transform 300ms cubic-bezier(.215, .61, .355, 1);
  }
  .l-hamburger > a > span::before {
    transform: translateY(-4px);
  }
  .l-hamburger > a > span::after {
    transform: translateY(4px);
  }
  .l-hamburger.is-show > a::before {
    border: 1px solid rgba(255, 255, 255, .3);
  }
  .l-hamburger.is-show > a > span::before {
    transform: rotate(-45deg);
  }
  .l-hamburger.is-show > a > span::after {
    transform: rotate(45deg);
  }
}

.l-header {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 500;
  width: 100%;
}
@media print, (min-width: 768px) {
  .l-header {
    min-width: 1280px;
  }
}
@media screen and (max-width: 767px) {
  .l-header {
    left: 0 !important;
    top: 0 !important;
    position: absolute !important;
  }
}
.l-header__mn {
  position: relative;
  transition: .7s cubic-bezier(.215, .61, .355, 1);
}
@media print, (min-width: 768px) {
  .l-header__mn {
    height: 134px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__mn {
    height: 80px;
  }
}
.l-header__mn__lg {
  position: absolute;
}
@media print, (min-width: 768px) {
  .l-header__mn__lg {
    left: 80px;
    top: 20px;
    width: 184px;
    transition: .7s cubic-bezier(.215, .61, .355, 1);
  }
}
@media screen and (max-width: 767px) {
  .l-header__mn__lg {
    left: 20px;
    top: 0;
    width: 120px;
  }
}
.l-header__mn__lg > a {
  display: block;
  position: relative;
}
@media print, (min-width: 768px) {
  .l-header__mn__lg > a {
    height: 75px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__mn__lg > a {
    height: 58px;
  }
}
.l-header__mn__lg > a > span {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.l-header__mn__lg > a > span > img {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  transition: .7s cubic-bezier(.215, .61, .355, 1);
}
@media print, (min-width: 768px) {
  .l-header__mn__lg > a > span > img {
    top: 20px;
    height: 55px;
    transition: .7s cubic-bezier(.215, .61, .355, 1);
  }
}
@media screen and (max-width: 767px) {
  .l-header__mn__lg > a > span > img {
    top: 20px;
    height: 35px;
  }
}
@media print, (min-width: 768px) {
  .l-header__mn__lg.is-hide {
    visibility: hidden;
    opacity: 0;
    transition: .7s cubic-bezier(.215, .61, .355, 1);
  }
}
@media screen and (max-width: 767px) {
  .l-header__mn__cn {
    display: none;
  }
}
@media print, (min-width: 768px) {
  .l-header__mn__cn {
    position: absolute;
    right: 80px;
    top: 40px;
    width: 180px;
    transition: .7s cubic-bezier(.215, .61, .355, 1);
  }
  .l-header__mn__cn > a {
    display: block;
    background: #09102c;
    color: #fff;
    font-family: 'BIZ UDGothic', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8666666667;
    text-align: center;
    text-decoration: none;
    transition: background 300ms cubic-bezier(.215, .61, .355, 1);
    border-radius: 100px;
  }
  .l-header__mn__cn > a > span {
    display: block;
    position: relative;
  }
  .l-header__mn__cn > a > span > span {
    display: table;
    width: 100%;
  }
  .l-header__mn__cn > a > span > span > span {
    display: table-cell;
    height: 54px;
    vertical-align: middle;
  }
  .l-header__mn__cn > a > span > span > span .is-window {
    position: relative;
    padding-right: 24px;
  }
  .l-header__mn__cn > a > span > span > span .is-window::before {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    right: 0;
    top: 50%;
    border-radius: 50%;
    transform: translate(50%, -50%);
    background: #09102c;
    transition: .3s cubic-bezier(.215, .61, .355, 1);
    opacity: 0;
    right: -5px;
    background: #fff;
  }
  .l-header__mn__cn > a > span > span > span .is-window::after {
    position: absolute;
    content: '';
    display: inline-block;
    transition: .3s cubic-bezier(.215, .61, .355, 1);
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 15px;
    height: 11px;
            mask-image: url('/images/icon_window01.webp');
    -webkit-mask-image: url('/images/icon_window01.webp');
            mask-position: center;
    -webkit-mask-position: center;
            mask-size: contain;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    z-index: 2;
    background-color: #fff;
  }
  .l-header__mn__cn > a:hover,
  .l-header__mn__cn > a:active {
    background: #00a0e9;
  }
  .l-header__mn__cn > a:hover .is-window::before,
  .l-header__mn__cn > a:active .is-window::before {
    width: 36px;
    height: 36px;
    opacity: 1;
  }
  .l-header__mn__cn > a:hover .is-window::after,
  .l-header__mn__cn > a:active .is-window::after {
    background-color: #00a0e9;
    right: -12px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__mn__nv {
    display: none;
  }
}
@media print, (min-width: 768px) {
  .l-header__mn__nv {
    position: absolute;
    top: 42px;
    transition: .7s cubic-bezier(.215, .61, .355, 1);
  }
}
@media print and (max-width: 1294px), (min-width: 768px) and (max-width: 1294px) {
  .l-header__mn__nv {
    right: 285px;
  }
}
@media print and (min-width: 1295px) and (max-width: 1614px), (min-width: 768px) and (min-width: 1295px) and (max-width: 1614px) {
  .l-header__mn__nv {
    right: calc(6.25vw + 200.063px);
  }
}
@media print and (min-width: 1615px), (min-width: 768px) and (min-width: 1615px) {
  .l-header__mn__nv {
    right: 300px;
  }
}
@media print, (min-width: 768px) {
  .l-header__mn__nv .l-header__mn__nv__ln {
    display: block;
    position: relative;
    color: #09102c;
    font-family: 'BIZ UDGothic', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    text-decoration: none;
    transition: color 300ms cubic-bezier(.215, .61, .355, 1);
  }
  .l-header__mn__nv .l-header__mn__nv__ln::before {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    bottom: 90%;
    width: 2px;
    height: 50px;
    transform: translateX(-50%) scaleY(0);
    background: #00a0e9;
    transition: background 300ms cubic-bezier(.215, .61, .355, 1), transform 300ms cubic-bezier(.215, .61, .355, 1);
    transform-origin: top;
  }
  .l-header__mn__nv .l-header__mn__nv__ln.is-current::before {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    bottom: 90%;
    width: 2px;
    transform: translateX(-50%) scaleY(1);
    height: 50px;
    background: #00a0e9;
    transition: background 300ms cubic-bezier(.215, .61, .355, 1), transform 300ms cubic-bezier(.215, .61, .355, 1);
    transform-origin: top;
  }
  .l-header__mn__nv .l-header__mn__nv__ln > span {
    display: table;
    width: 100%;
  }
  .l-header__mn__nv .l-header__mn__nv__ln > span > span {
    display: table-cell;
    height: 50px;
    vertical-align: middle;
  }
  .l-header__mn__nv .l-header__mn__nv__ln:hover::before,
  .l-header__mn__nv .l-header__mn__nv__ln:active::before {
    transform: translateX(-50%) scaleY(1);
  }
  .l-header__mn__nv > ul {
    display: flex;
    gap: 40px;
  }
}
@media print and (max-width: 1294px), (min-width: 768px) and (max-width: 1294px) {
  .l-header__mn__nv > ul {
    gap: 20px;
  }
}
@media print and (min-width: 1295px) and (max-width: 1614px), (min-width: 768px) and (min-width: 1295px) and (max-width: 1614px) {
  .l-header__mn__nv > ul {
    gap: calc(2.1875vw - 4px);
  }
}
@media print, (min-width: 768px) {
  .l-header__mn__nv > ul > li {
    position: relative;
  }
  .l-header__mn__nv > ul > li > span {
    cursor: default;
  }
  .l-header__mn__nv > ul > li:nth-child(n+2) {
    margin-left: 3px;
  }
  .l-header__mn__nv > ul > li:nth-child(2) {
    z-index: 1;
  }
  .l-header__mn__nv > ul > li.is-cr .l-header__mn__nv__ln::before {
    transform: scaleX(1);
  }
  .l-header__mn__nv > ul > li .is-window {
    position: relative;
    padding-right: 24px;
  }
  .l-header__mn__nv > ul > li .is-window::before {
    position: absolute;
    content: '';
    display: inline-block;
    transition: .3s cubic-bezier(.215, .61, .355, 1);
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 15px;
    height: 11px;
            mask-image: url('/images/icon_window01.webp');
    -webkit-mask-image: url('/images/icon_window01.webp');
            mask-position: center;
    -webkit-mask-position: center;
            mask-size: contain;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    z-index: 2;
    background-color: #09102c;
  }
}
.l-header.is-follow {
  position: fixed;
  top: -134px;
  animation: headerfollow .7s cubic-bezier(.215, .61, .355, 1) forwards;
}
.l-header.is-follow .l-header__mn {
  margin-top: -60px;
  background-color: #f1fbff;
}
@media print, (min-width: 768px) {
  .l-header.is-follow .l-header__mn__lg {
    width: 156px;
    top: 70px;
  }
}
.l-header.is-follow .l-header__mn__lg > a {
  height: 46px;
}
@media print, (min-width: 768px) {
  .l-header.is-follow .l-header__mn__lg > a > span > img {
    top: 0;
    height: 46px;
  }
}
@media print, (min-width: 768px) {
  .l-header.is-follow .l-header__mn__cn {
    top: 70px;
  }
}
@media print, (min-width: 768px) {
  .l-header.is-follow .l-header__mn__nv {
    top: 70px;
  }
}
.l-header.isn-follow {
  top: 134px;
  animation: headerfollow-n .7s cubic-bezier(.215, .61, .355, 1) forwards;
}
.l-headerHight {
  height: 134px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .l-headerHight {
    height: 80px;
  }
}
.l-header.preload {
  top: 0 !important;
  animation: none !important;
}

.m-top .m-kv {
  position: relative;
  overflow: hidden;
  padding-bottom: 50px;
  background-color: #f1fbff;
}
@media print, (min-width: 768px) {
  .m-top .m-kv {
    padding-bottom: 140px;
  }
}
.m-top .m-kv img {
  width: 100%;
}
.m-top .m-kv__slider:hover .slide-dots .slick-active button.is-paused::after {
  animation-play-state: paused;
}
.m-top .m-kv__slider .slick-list {
  padding-bottom: 2.9333333333vw;
}
@media print, (min-width: 768px) {
  .m-top .m-kv__slider .slick-list {
    max-height: 600px;
    padding-bottom: 20px;
  }
}
.m-top .m-kv__slider .slide-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  height: 10px;
}
.m-top .m-kv__slider .slide-dots button {
  text-indent: -9999px;
  background: transparent;
  border: none;
  position: relative;
  top: -10px;
  transition: .5s cubic-bezier(.215, .61, .355, 1);
  cursor: pointer;
}
.m-top .m-kv__slider .slide-dots button::before {
  content: '';
  width: 10px;
  height: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #09102c;
  border-radius: 50%;
  text-indent: 0;
  position: absolute;
  transition: .4s cubic-bezier(.215, .61, .355, 1);
}
.m-top .m-kv__slider .slide-dots .slick-active button {
  width: 80px;
}
.m-top .m-kv__slider .slide-dots .slick-active button::before {
  border-radius: 100px;
  width: 80px;
  background: #ddeef5;
}
.m-top .m-kv__slider .slide-dots .slick-active button::after {
  content: '';
  width: 0;
  height: 10px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #00a0e9;
  border-radius: 100px;
  text-indent: 0;
  position: absolute;
}
.m-top .m-kv__slider .slide-dots .slick-active button.is-anim::after {
  animation: defKvAnim 4s forwards linear;
}
.m-top .m-kv__slider .slide-dots .slick-active button.is-hover::after {
  animation: kvDots 4s forwards linear;
}
.m-top .m-kv__slider .slide-dots .slick-active button.is-hover-2::after {
  animation: rekvDots 4s forwards linear;
}
.m-top .m-kv__slider__item {
  overflow: hidden;
}
@media print, (min-width: 768px) {
  .m-top .m-kv__slider__item {
    max-height: 600px;
  }
}
.m-top .m-kv__slider__item img {
  width: auto;
  height: 100%;
  scale: .85;
  transition: .7s cubic-bezier(.215, .61, .355, 1);
}
@media print, (min-width: 768px) {
  .m-top .m-kv__slider__item img {
    width: 100%;
    height: auto;
  }
}
.m-top .m-kv__slider__item.slick-active img {
  scale: 1;
}
.m-top .m-kv__slider__item.is-active-next img {
  scale: 1;
  transition: .7s cubic-bezier(.215, .61, .355, 1);
}
.m-top .m-kv__slider__item__btn {
  display: inline-block;
  margin: 0 auto;
}
.m-top .m-kv__slider__item__btn a {
  padding: 11px 71px 9px 61px;
  line-height: 1.8666666667;
}
@media print, (min-width: 768px) {
  .m-top .m-kv__slider__item__btn a {
    line-height: 1.75;
    padding: 10px 76px 10px 56px;
  }
}
@media print, (min-width: 768px) {
  .m-top .m-kv__slider__item.ptn01 {
    display: flex;
    gap: 4.375%;
  }
}
.m-top .m-kv__slider__item.ptn01 .m-kv__slider__item__img {
  position: relative;
  width: 100%;
  height: 61.3333333333vw;
}
@media print, (min-width: 768px) {
  .m-top .m-kv__slider__item.ptn01 .m-kv__slider__item__img {
    height: 600px;
  }
}
.m-top .m-kv__slider__item.ptn01 .m-kv__slider__item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media print, (min-width: 768px) {
  .m-top .m-kv__slider__item.ptn01 .m-kv__slider__item__txtArea {
    margin-right: 70px;
    width: 30%;
    flex-shrink: 0;
    min-width: 470px;
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .m-top .m-kv__slider__item.ptn01 .m-kv__slider__item__txtArea {
    padding: 0 20px;
    height: 72vw;
  }
}
.m-top .m-kv__slider__item.ptn01 .m-kv__slider__item__txtArea__in {
  text-align: center;
  width: 100%;
  height: 100%;
  position: relative;
}
@media print, (min-width: 768px) {
  .m-top .m-kv__slider__item.ptn01 .m-kv__slider__item__txtArea__otr {
    height: calc(100% - 128px);
    padding-bottom: 128px;
    display: grid;
    place-content: center;
  }
}
.m-top .m-kv__slider__item.ptn01 .m-kv__slider__item__txtArea__ttl {
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  line-height: 1.4;
  font-size: 6.4vw;
  margin-top: 5.3333333333vw;
  overflow: hidden;
  text-align: left;
  color: #09102c;
}
@media print, (min-width: 768px) {
  .m-top .m-kv__slider__item.ptn01 .m-kv__slider__item__txtArea__ttl {
    font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
    font-size: 46px;
    margin-top: 0;
    font-weight: 700;
    line-height: 1.2608695652;
  }
}
.m-top .m-kv__slider__item.ptn01 .m-kv__slider__item__txtArea__ttl.is-row3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.m-top .m-kv__slider__item.ptn01 .m-kv__slider__item__txtArea__lead {
  font-family: 'BIZ UDGothic', sans-serif;
  font-size: 4vw;
  margin-top: 3.7333333333vw;
  font-weight: bold;
  margin-bottom: 5.8666666667vw;
  overflow: hidden;
  text-align: left;
  line-height: 1.87;
}
@media print, (min-width: 768px) {
  .m-top .m-kv__slider__item.ptn01 .m-kv__slider__item__txtArea__lead {
    font-family: 'BIZ UDGothic', sans-serif;
    font-size: 18px;
    font-weight: bold;
    margin-top: 60px;
    line-height: 1.67;
    margin-bottom: 0;
  }
}
.m-top .m-kv__slider__item.ptn01 .m-kv__slider__item__txtArea__lead.is-row2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.m-top .m-kv__slider__item.ptn01 .m-kv__slider__item__txtArea__lead.is-row3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.m-top .m-kv__slider__item.ptn01 .m-kv__slider__item__btn {
  min-width: 212px;
  position: absolute;
}
@media print, (min-width: 768px) {
  .m-top .m-kv__slider__item.ptn01 .m-kv__slider__item__btn {
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    left: 47%;
  }
}
@media screen and (max-width: 767px) {
  .m-top .m-kv__slider__item.ptn01 .m-kv__slider__item__btn {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.m-top .m-kv__slider__item.ptn02 .m-kv__slider__item__img {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .m-top .m-kv__slider__item.ptn02 .m-kv__slider__item__img {
    height: 138.6666666667vw;
  }
}
.m-top .m-kv__slider__item.ptn02 .m-kv__slider__item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media print, (min-width: 768px) {
  .m-top .m-kv__slider__item.ptn02 .m-kv__slider__item__img img {
    height: 600px;
  }
}
.m-top .m-kv__slider__item.ptn03 {
  position: relative;
}
.m-top .m-kv__slider__item.ptn03 .m-kv__slider__item__img {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .m-top .m-kv__slider__item.ptn03 .m-kv__slider__item__img {
    height: 138.6666666667vw;
  }
}
.m-top .m-kv__slider__item.ptn03 .m-kv__slider__item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media print, (min-width: 768px) {
  .m-top .m-kv__slider__item.ptn03 .m-kv__slider__item__img img {
    height: 600px;
  }
}
.m-top .m-kv__slider__item.ptn03 .m-kv__slider__item__btn {
  position: absolute;
  bottom: 30px;
  min-width: 212px;
}
@media print, (min-width: 768px) {
  .m-top .m-kv__slider__item.ptn03 .m-kv__slider__item__btn {
    bottom: 80px;
  }
}
@media print, (min-width: 768px) {
  .m-top .m-kv__slider__item.ptn03 .m-kv__slider__item__btn:has(.is-right) {
    right: 80px;
  }
}
@media screen and (max-width: 767px) {
  .m-top .m-kv__slider__item.ptn03 .m-kv__slider__item__btn:has(.is-right) {
    left: 50%;
    transform: translateX(-50%);
  }
}
.m-top .m-kv__slider__item.ptn03 .m-kv__slider__item__btn:has(.is-center) {
  left: 50%;
  transform: translateX(-50%);
}
.m-top .m-kv__slider__item.ptn03 .m-kv__slider__item__btn .c-btn__in.is-bg-w {
  background: #fff;
  color: #09102c;
}
.m-top .m-kv__slider__item.ptn03 .m-kv__slider__item__btn .c-btn__in.is-bg-w.icon-window::after {
  background: #09102c;
}
.m-top .m-kv__slider__item.ptn03 .m-kv__slider__item__btn .c-btn__in.is-bg-w.icon-arrow::after {
  background: #09102c;
}
@media print, (min-width: 768px) {
  .m-top .m-kv__slider__item.ptn03 .m-kv__slider__item__btn .c-btn__in.is-bg-w:hover {
    color: #fff;
  }
  .m-top .m-kv__slider__item.ptn03 .m-kv__slider__item__btn .c-btn__in.is-bg-w:hover.icon-window::after {
    background: #00a0e9;
  }
  .m-top .m-kv__slider__item.ptn03 .m-kv__slider__item__btn .c-btn__in.is-bg-w:hover.icon-arrow::after {
    background: #00a0e9;
  }
}
.m-top .m-kv__slider__item.ptn03 .m-kv__slider__item__btn .c-btn__in.is-bg-b {
  background: #09102c;
  color: #fff;
}
.m-top .m-kv__slider__item.ptn03 .m-kv__slider__item__btn .c-btn__in.is-bg-b.icon-window::after {
  background: #fff;
}
.m-top .m-kv__slider__item.ptn03 .m-kv__slider__item__btn .c-btn__in.is-bg-b.icon-arrow::after {
  background: #fff;
}
@media print, (min-width: 768px) {
  .m-top .m-kv__slider__item.ptn03 .m-kv__slider__item__btn .c-btn__in.is-bg-b:hover.icon-window::after {
    background: #00a0e9;
  }
  .m-top .m-kv__slider__item.ptn03 .m-kv__slider__item__btn .c-btn__in.is-bg-b:hover.icon-arrow::after {
    background: #00a0e9;
  }
}

.l-svs__bd {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}
@media print, (min-width: 768px) {
  .l-svs__bd {
    padding: 0 70px;
  }
}
.l-svs__bd__ttl {
  position: relative;
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #09102c;
}
@media print, (min-width: 768px) {
  .l-svs__bd__ttl {
    font-size: 36px;
    line-height: 1.5;
    margin-bottom: 50px;
  }
}
.l-svs__bd__txt {
  position: relative;
  font-family: 'BIZ UDGothic', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.87;
  margin-bottom: 30px;
  color: #424242;
}
@media print, (min-width: 768px) {
  .l-svs__bd__txt {
    font-size: 18px;
    margin-bottom: 60px;
  }
}
.l-svs__bd__figBox {
  background: #e3eef4;
  padding: 20px 5px;
  margin-bottom: 30px;
  overflow: hidden;
}
@media print, (min-width: 768px) {
  .l-svs__bd__figBox {
    margin-bottom: 60px;
    padding: 60px 20px;
  }
}
.l-svs__bd__figBox__item {
  position: relative;
}
@media print, (min-width: 768px) {
  .l-svs__bd__figBox__item {
    width: 100%;
    max-width: 1061px;
    margin: 0 auto;
  }
}
.l-svs__bd__figBox__item img {
  width: 100%;
}
.l-svs__bd__figBox__item.is-wm {
  width: 57.6vw;
  margin: 0 auto;
}
@media print, (min-width: 768px) {
  .l-svs__bd__figBox__item.is-wm {
    width: 100%;
    max-width: 501px;
  }
}
.l-svs__bd__figBox__item.is-bgCircle {
  position: relative;
}
.l-svs__bd__figBox__item.is-bgCircle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: #dee8ee;
  width: 700px;
  height: 700px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .l-svs__bd__figBox__item.is-bgCircle::before {
    width: 81.0666666667vw;
    height: 81.0666666667vw;
  }
}
.l-svs__bd__ttl-s {
  position: relative;
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media print, (min-width: 768px) {
  .l-svs__bd__ttl-s {
    font-size: 24px;
    margin-bottom: 40px;
  }
}
.l-svs__bd__btnBox {
  position: relative;
  display: grid;
  gap: 33px;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .l-svs__bd__btnBox {
    gap: 15px;
    padding: 0 20px;
  }
}
@media print, (min-width: 768px) {
  .l-svs__bd__btnBox {
    max-width: 1300px;
    margin: 0 auto;
  }
}
.l-svs__bd__btnBox__btn {
  width: 300px;
}
@media screen and (max-width: 767px) {
  .l-svs__bd__btnBox__btn {
    width: 128px;
    margin: 0 auto;
  }
}
.l-svs__bd__btnBox__btn:hover .c-btn__in::after {
  right: 21px;
}
.l-svs__bd__btnBox__btn.is-now .c-btn__in {
  background-color: #00a0e9;
  color: #fff;
}
.l-svs__bd__btnBox__btn.is-now .c-btn__in::before {
  background-color: #fff;
  height: 31px;
  width: 31px;
  opacity: 1;
}
.l-svs__bd__btnBox__btn.is-now .c-btn__in::after {
  background-color: #00a0e9;
  right: 21px;
}
.l-svs__bd__btnBox__btn .c-btn__in {
  padding: 17px 0;
}
@media screen and (max-width: 767px) {
  .l-svs__bd__btnBox__btn .c-btn__in {
    padding: 9px 0;
  }
}
.l-svs__bd__btnBox__btn .c-btn__in::before {
  right: 28px;
}
.l-svs__bd__btnBox__btn .c-btn__in::after {
  right: 33px;
}
.l-svs__bd__btnBox__btn .c-btn__in > span {
  font-family: 'Inter', sans-serif;
}
.l-svs__bd__btnBox__btn .is-pd01 {
  padding-left: 113px;
}
@media screen and (max-width: 767px) {
  .l-svs__bd__btnBox__btn .is-pd01 {
    padding-left: 28px;
  }
}
.l-svs__bd__btnBox__btn .is-pd02 {
  padding-left: 89px;
}
@media screen and (max-width: 767px) {
  .l-svs__bd__btnBox__btn .is-pd02 {
    padding-left: 36px;
  }
}
.l-svs__bd__btnBox__btn .is-pd03 {
  padding-left: 65px;
}
@media screen and (max-width: 767px) {
  .l-svs__bd__btnBox__btn .is-pd03 {
    padding-left: 30px;
  }
}
@media print, (min-width: 768px) {
  .l-svs__bd__btnBox.is-col4 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 300px));
  }
}
@media print and (max-width: 1440px), (min-width: 768px) and (max-width: 1440px) {
  .l-svs__bd__btnBox.is-col4 {
    grid-template-columns: repeat(2, 300px);
  }
}
@media screen and (max-width: 767px) {
  .l-svs__bd__btnBox.is-col4 {
    grid-template-columns: repeat(2, 160px);
  }
}
@media screen and (max-width: 767px) {
  .l-svs__bd__btnBox.is-col4 .l-svs__bd__btnBox__btn {
    width: 160px;
  }
  .l-svs__bd__btnBox.is-col4 .l-svs__bd__btnBox__btn .c-btn__in {
    line-height: 1.2;
  }
}
.l-svs__bd__btnBox.is-sbpgBtn {
  margin-top: 60px;
  margin-bottom: 30px;
}
@media print, (min-width: 768px) {
  .l-svs__bd__btnBox.is-sbpgBtn {
    margin-top: 120px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .l-svs__bd__btnBox.is-bk {
    display: block;
  }
}
.l-svs__bd__btnBox.is-bk .l-svs__bd__btnBox__btn {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .l-svs__bd__btnBox.is-bk .l-svs__bd__btnBox__btn {
    max-width: 335px;
  }
}
@media print, (min-width: 768px) {
  .l-svs__bd__btnBox.is-bk .l-svs__bd__btnBox__btn {
    margin: 0 auto;
    width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .l-svs__bd__btnBox.is-bk .c-btn__in {
    padding: 20px;
    text-align: center;
    line-height: 1;
  }
}
@media print, (min-width: 768px) {
  .l-svs__bd__btnBox.is-bk .c-btn__in {
    padding: 19px 0 19px 105px;
  }
}
.l-svs__bd__btnBox.is-bk .c-btn__in::before {
  left: 35px;
  right: auto;
  transform: translate(-50%, -50%);
}
.l-svs__bd__btnBox.is-bk .c-btn__in.icon-arrow::after {
  right: auto;
  left: 40px;
  rotate: 180deg;
  transform-origin: top;
}
@media print, (min-width: 768px) {
  .l-svs__bd__btnBox.is-bk .c-btn__in:hover {
    color: #fff;
    background-color: #00a0e9;
  }
  .l-svs__bd__btnBox.is-bk .c-btn__in:hover.icon-arrow::after {
    background-color: #00a0e9;
    left: 27px;
  }
}
.l-svs__bd .is-mb160 {
  margin-bottom: 160px;
}
@media screen and (max-width: 767px) {
  .l-svs__bd .is-mb160 {
    margin-bottom: 80px;
  }
}
.l-svs__bd .is-mb200 {
  margin-bottom: 200px;
}
@media screen and (max-width: 767px) {
  .l-svs__bd .is-mb200 {
    margin-bottom: 80px;
  }
}

.is-sbpg .l-svs__bd {
  max-width: 900px;
}

@media print, (min-width: 768px) {
  .l-spMenu {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .l-spMenu {
    overflow: hidden;
  }
  .l-spMenu .l-spMenu__bg {
    position: fixed;
    right: 38px;
    top: 38px;
    z-index: 700;
    width: 60px;
    height: 60px;
    visibility: hidden;
    border-radius: 50%;
    transition: .6s cubic-bezier(.645, .045, .355, 1);
    transform-origin: center;
    transform: translate(50%, -50%);
  }
  .l-spMenu .l-spMenu__bg::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #09102c;
    border-radius: 50%;
  }
  .l-spMenu .l-spMenu__bg.is-show {
    visibility: visible;
    opacity: 1;
    width: 300lvh;
    height: 300lvh;
    transition: .6s cubic-bezier(.645, .045, .355, 1);
  }
  .l-spMenu .l-spMenu__bd {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 710;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overscroll-behavior: none;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0ms 600ms, opacity 600ms cubic-bezier(.645, .045, .355, 1);
  }
  .l-spMenu .l-spMenu__bd__in {
    display: table;
    width: 100%;
    height: 100%;
  }
  .l-spMenu .l-spMenu__bd__in2 {
    padding: 20px 0 120px;
  }
  .l-spMenu .l-spMenu__bd__lg {
    width: 120px;
    margin-left: 20px;
    margin-bottom: 60px;
  }
  .l-spMenu .l-spMenu__bd__lg img {
    width: 100%;
  }
  .l-spMenu .l-spMenu__bd__in3 {
    position: relative;
  }
  .l-spMenu .l-spMenu__bd.is-show {
    visibility: visible;
    opacity: 1;
    transition: visibility 0ms, opacity 600ms cubic-bezier(.645, .045, .355, 1);
  }
  .l-spMenu .l-spMenu__nv__ln {
    display: block;
    position: relative;
    padding: 16px 0 17px 20px;
    color: #fff;
    font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
    line-height: 1;
  }
}
@media screen and (max-width: 767px) and (max-width: 374px) {
  .l-spMenu .l-spMenu__nv__ln {
    font-size: calc(6.6666666667vw - 4px);
  }
}
@media screen and (max-width: 767px) {
  .l-spMenu .l-spMenu__nv__ln > span.is-arrow {
    display: block;
    position: absolute;
    right: 30px;
    top: 50%;
    width: 23px;
    height: 1px;
    margin-top: -.5px;
    background: #fff;
  }
  .l-spMenu .l-spMenu__nv__ln > span.is-arrow::before,
  .l-spMenu .l-spMenu__nv__ln > span.is-arrow::after {
    content: '';
    display: block;
    position: absolute;
    right: -1px;
    width: 8px;
    height: 1px;
    background: #fff;
  }
  .l-spMenu .l-spMenu__nv__ln > span.is-arrow::before {
    top: -2.5px;
    transform: rotate(45deg);
  }
  .l-spMenu .l-spMenu__nv__ln > span.is-arrow::after {
    bottom: -2.5px;
    transform: rotate(-45deg);
  }
  .l-spMenu .l-spMenu__nv__ln > span.is-window::after {
    position: absolute;
    content: '';
    display: inline-block;
    transition: .3s cubic-bezier(.645, .045, .355, 1);
    top: 50%;
    right: 33px;
    transform: translateY(-50%);
    width: 15px;
    height: 11px;
            mask-image: url('/images/icon_window01.webp');
    -webkit-mask-image: url('/images/icon_window01.webp');
            mask-position: center;
    -webkit-mask-position: center;
            mask-size: contain;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    z-index: 2;
    background-color: #fff;
  }
  .l-spMenu .l-spMenu__ft {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 720;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0ms 600ms, opacity 600ms cubic-bezier(.645, .045, .355, 1);
  }
  .l-spMenu .l-spMenu__ft__cw__c {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    background-color: #09102c;
  }
  .l-spMenu .l-spMenu__ft__cw__c__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/bg_contact01.webp');
    background-size: cover;
    background-position: top;
    opacity: .4;
  }
  .l-spMenu .l-spMenu__ft__cw__c__bt {
    position: relative;
  }
  .l-spMenu .l-spMenu__ft__cw__c__bt::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
  }
  .l-spMenu .l-spMenu__ft__cw__c__bt > a {
    display: block;
    position: relative;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    text-align: left;
    text-decoration: none;
    padding-left: 30px;
  }
  .l-spMenu .l-spMenu__ft__cw__c__bt > a > span {
    display: table;
    width: 100%;
  }
  .l-spMenu .l-spMenu__ft__cw__c__bt > a > span > span {
    display: table-cell;
    height: 100px;
    vertical-align: middle;
  }
  .l-spMenu .l-spMenu__ft__cw__c__bt > a > span > span::after {
    position: absolute;
    content: '';
    display: inline-block;
    transition: .3s cubic-bezier(.645, .045, .355, 1);
    top: 50%;
    right: 33px;
    transform: translateY(-50%);
    width: 15px;
    height: 11px;
            mask-image: url('/images/icon_window01.webp');
    -webkit-mask-image: url('/images/icon_window01.webp');
            mask-position: center;
    -webkit-mask-position: center;
            mask-size: contain;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    z-index: 2;
    background-color: #fff;
  }
  .l-spMenu .l-spMenu__ft.is-show {
    visibility: visible;
    opacity: 1;
    transition: visibility 0ms, opacity 600ms cubic-bezier(.645, .045, .355, 1);
  }
}

.l-wrapper {
  width: 100%;
}
@media print, (min-width: 768px) {
  .l-wrapper {
    min-width: 1280px;
  }
}

.l-contents__bg,
.l-footer__ct__bg,
.l-footer__consul__bg {
  z-index: 1;
}

.m-kv,
.m-news__in,
.m-hCase__in,
.m-hMem__in,
.m-case__hd__in,
.m-case__search,
.m-case__more,
.m-case__bd,
.m-case__btmSearch,
.m-cSingle__hd__in,
.m-cSingle__kvs,
.m-cSingle__bd,
.m-cSingle__btm__in,
.m-mem__hd__in,
.m-mem__bd,
.m-mem__bd__item__intro,
.m-mSingle__bd,
.m-mSingle__hd__thumBg,
.m-mSingle__hd__intro,
.m-mSingle__hd__nav,
.m-mSingle__btm,
.l-footer__ct__in,
.l-footer__ct__ttl,
.l-footer__ct__ttl__en,
.l-footer__consul,
.l-footer__case,
.m-cmpInf__bd,
.m-svs__hd__in,
.m-svs__kvs,
.l-svs__bd__ttl,
.l-svs__bd__txt,
.l-svs__bd__figBox__item,
.l-svs__bd__btnBox,
.l-svs__bd__ttl-s,
.m-cmp__hd__in,
.m-cmp__topMenu,
.m-cmp__bd__in,
.m-cmpInf-sb,
.m-cmpHis,
.m-cmpLs,
.m-cmpIni,
.m-sa__bd,
.m-sa__kv,
.m-sa__hd__in,
.m-cmp__topMenu__in > li a,
.m-pol__hd__in,
.m-pol__bd,
.m-nf__in,
.m-nf__bd {
  z-index: 2;
}

.m-hCase__bd__ul__aw__txt__tag,
.m-case__bd__ul__aw__txt__tag,
.m-svs__kvs__txt,
.m-cmp__topMenu__aw,
.m-cmpInf-sb__in__con,
.m-cmpHis__btm__bd__tb > table > tbody,
.m-cmpLs__kv__profile {
  z-index: 3;
}

.m-case__modal__bg {
  z-index: 599;
}

.m-case__modal,
.m-case__modal__inner,
.m-case__modal__in {
  z-index: 600;
}

.m-nf__in {
  position: relative;
}
.m-nf__in::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 350px;
  background: linear-gradient(0deg, rgba(241, 251, 255, 0) 0%, #f1fbff 100%);
}
@media print, (min-width: 768px) {
  .m-nf__in {
    padding-bottom: 200px;
  }
}
@media screen and (max-width: 767px) {
  .m-nf__in {
    padding-bottom: 60px;
  }
}
.m-nf__hd {
  position: relative;
  overflow: hidden;
}
.m-nf__hd__in {
  position: relative;
  padding: 25px 20px 67px;
}
@media print, (min-width: 768px) {
  .m-nf__hd__in {
    max-width: 1300px;
    margin: 0 auto;
    padding: 109px 70px 160px;
  }
}
@media screen and (max-width: 767px) {
  .m-nf__hd__ttlArea {
    margin-top: 42px;
  }
}
@media print, (min-width: 768px) {
  .m-nf__hd__ttlArea {
    gap: 40px;
  }
}
.m-nf__hd__ttl {
  font-family: 'Inter', sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  color: #09102c;
}
@media screen and (max-width: 767px) {
  .m-nf__hd__ttl {
    letter-spacing: -.02em;
    line-height: 1.3;
  }
}
@media print, (min-width: 768px) {
  .m-nf__hd__ttl {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 68px;
    line-height: 1.1470588235;
  }
}
.m-nf__bd {
  position: relative;
  padding: 0 70px;
}
@media screen and (max-width: 767px) {
  .m-nf__bd {
    padding: 0 20px;
  }
}
.m-nf__bd__in {
  margin-bottom: 30px;
}
@media print, (min-width: 768px) {
  .m-nf__bd__in {
    max-width: 1300px;
    margin: 0 auto;
  }
}
.m-nf__bd__txt {
  font-family: 'BIZ UDGothic', sans-serif;
  color: #424242;
  font-size: 15px;
  line-height: 2;
}
@media print, (min-width: 768px) {
  .m-nf__bd__txt {
    font-size: 18px;
    line-height: 1.89;
  }
}
.m-nf__bd__txt + p {
  margin-top: 20px;
}
@media print, (min-width: 768px) {
  .m-nf__bd__txt + p {
    margin-top: 1.8888888889em;
  }
}
.m-nf__bd__txt a {
  text-decoration: underline;
}
.m-nf__bd__txt a:hover {
  opacity: .7;
  text-decoration: none;
}

.l-wrapper:has(.m-nf) {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #f1fbff;
}
.l-wrapper:has(.m-nf)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/images/bg_nf01.webp');
  background-size: cover;
}
.l-wrapper:has(.m-nf) .l-header__mn,
.l-wrapper:has(.m-nf) .l-headerHight {
  background: #f1fbff;
}
.l-wrapper:has(.m-nf) .l-contents__in {
  background: none;
}
.l-wrapper:has(.m-nf) .l-footer {
  margin-top: auto;
}

.m-cSingle__hd {
  position: relative;
  overflow: hidden;
}
.m-cSingle__hd__in {
  position: relative;
  padding: 25px 20px 40px;
}
@media print, (min-width: 768px) {
  .m-cSingle__hd__in {
    max-width: 1300px;
    margin: 0 auto;
    padding: 58px 70px 76px;
  }
}
.m-cSingle__hd__lct {
  margin-top: 42px;
  font-family: 'BIZ UDGothic', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: #09102c;
}
@media print, (min-width: 768px) {
  .m-cSingle__hd__lct {
    margin-top: 0;
    line-height: 1.3571428571;
    font-size: 28px;
  }
}
.m-cSingle__hd__ttl {
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3333333333;
  margin-top: 8px;
  color: #09102c;
}
@media print, (min-width: 768px) {
  .m-cSingle__hd__ttl {
    font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 52px;
    line-height: 1.1470588235;
  }
}
.m-cSingle__hd__tag {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
@media print, (min-width: 768px) {
  .m-cSingle__hd__tag {
    margin-top: 15px;
  }
}
.m-cSingle__hd__tag > li > a {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  color: #424242;
  background: #f1fbff;
  padding: 5px 10px;
  border-radius: 100px;
  border: 1px solid #424242;
  transition: .3s cubic-bezier(.215, .61, .355, 1);
}
@media print, (min-width: 768px) {
  .m-cSingle__hd__tag > li > a {
    font-size: 16px;
    padding: 9px 33px;
    line-height: 1.75;
  }
  .m-cSingle__hd__tag > li > a:hover {
    background: #00a0e9;
    color: #fff;
    border-color: #00a0e9;
  }
}
@media print, (min-width: 768px) {
  .m-cSingle__hd__nav {
    position: absolute;
    right: 70px;
    bottom: 36px;
  }
}
.m-cSingle__hd__bg {
  position: absolute;
  mix-blend-mode: overlay;
  opacity: .8;
  top: 0;
  left: -7px;
}
@media screen and (max-width: 767px) {
  .m-cSingle__hd__bg {
    top: 73px;
    left: 0;
  }
}
.m-cSingle__hd__bg img {
  width: 364px;
}
@media print, (min-width: 768px) {
  .m-cSingle__hd__bg img {
    width: 1352px;
  }
}
.m-cSingle__kvs {
  position: relative;
}
@media print, (min-width: 768px) {
  .m-cSingle__kvs {
    padding-bottom: 20px;
  }
}
.m-cSingle__kvs__img {
  width: 100%;
}
.m-cSingle__kvs__img img {
  max-height: 640px;
  min-height: 257px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.m-cSingle__bd {
  position: relative;
  margin-bottom: 80px;
}
@media print, (min-width: 768px) {
  .m-cSingle__bd {
    margin-bottom: 160px;
  }
}
.m-cSingle__btm__in {
  position: relative;
  margin-bottom: 30px;
  padding: 0 20px;
}
@media print, (min-width: 768px) {
  .m-cSingle__btm__in {
    padding: 0 70px;
    max-width: 1300px;
    margin: 0 auto;
  }
}
.m-cSingle__btm__ul {
  transition: .8s cubic-bezier(.215, .61, .355, 1);
  overflow: hidden;
  margin-bottom: 30px;
}
@media print, (min-width: 768px) {
  .m-cSingle__btm__ul {
    margin-bottom: 60px;
  }
}
.m-cSingle__btm__ul > li {
  position: relative;
  border-bottom: 1px solid #ddeef5;
  height: auto;
  transition: .3s cubic-bezier(.215, .61, .355, 1);
  overflow: hidden;
}
.m-cSingle__btm__ul > li:first-child {
  border-top: 1px solid #ddeef5;
}
@media print, (min-width: 768px) {
  .m-cSingle__btm__ul > li::before {
    position: absolute;
    width: 0;
    height: 1px;
    background-color: #09102c;
    content: '';
    bottom: 0;
    left: 0;
    transition: .3s cubic-bezier(.215, .61, .355, 1);
  }
  .m-cSingle__btm__ul > li:hover::before {
    width: 100%;
  }
  .m-cSingle__btm__ul > li:hover .m-cSingle__btm__ul__aw__thum img {
    transform: scale(1.1);
  }
  .m-cSingle__btm__ul > li:hover .m-cSingle__btm__ul__aw__txt__ttl .is-arrow::before,
  .m-cSingle__btm__ul > li:hover .m-cSingle__btm__ul__aw__txt__ttl .is-window::before {
    width: 36px;
    height: 36px;
    opacity: 1;
  }
  .m-cSingle__btm__ul > li:hover .m-cSingle__btm__ul__aw__txt__ttl .is-arrow::after,
  .m-cSingle__btm__ul > li:hover .m-cSingle__btm__ul__aw__txt__ttl .is-window::after {
    right: -7px;
    background-color: #fff;
  }
}
.m-cSingle__btm__ul > li.is-hidden {
  display: none;
}
.m-cSingle__btm__ul__aw {
  position: relative;
  font-family: 'BIZ UDGothic', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8666666667;
}
@media print, (min-width: 768px) {
  .m-cSingle__btm__ul__aw {
    font-family: 'BIZ UDGothic', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    display: flex;
    gap: 30px;
  }
}
.m-cSingle__btm__ul__aw__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.m-cSingle__btm__ul__aw__thum {
  margin: 20px 0 0;
  overflow: hidden;
}
@media print, (min-width: 768px) {
  .m-cSingle__btm__ul__aw__thum {
    margin: 20px 0;
    max-width: 290px;
  }
}
.m-cSingle__btm__ul__aw__thum img {
  transition: .3s cubic-bezier(.215, .61, .355, 1);
  width: 100%;
  height: 61.33333333vw;
  object-fit: cover;
}
@media print, (min-width: 768px) {
  .m-cSingle__btm__ul__aw__thum img {
    height: 200px;
  }
}
.m-cSingle__btm__ul__aw__txt {
  position: relative;
  padding: 10px 0 20px;
}
@media print, (min-width: 768px) {
  .m-cSingle__btm__ul__aw__txt {
    width: calc(100% - 320px);
    padding: 0 0 20px;
  }
}
.m-cSingle__btm__ul__aw__txt__estate {
  font-family: 'BIZ UDGothic', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 2;
  color: #424242;
}
@media print, (min-width: 768px) {
  .m-cSingle__btm__ul__aw__txt__estate {
    font-family: 'BIZ UDGothic', sans-serif;
    font-size: 14px;
    line-height: 2;
    padding-top: 40px;
  }
}
.m-cSingle__btm__ul__aw__txt__ttl {
  font-family: 'BIZ UDGothic', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  padding-bottom: 5px;
  font-weight: 700;
  color: #09102c;
}
@media print, (min-width: 768px) {
  .m-cSingle__btm__ul__aw__txt__ttl {
    font-size: 20px;
    margin-top: 5px;
    line-height: 1.4;
    padding-bottom: 9px;
    width: calc(100% - 150px);
  }
}
.m-cSingle__btm__ul__aw__txt__ttl .is-arrow::after {
          mask-image: url('/images/icon_arrow01.webp');
  -webkit-mask-image: url('/images/icon_arrow01.webp');
}
.m-cSingle__btm__ul__aw__txt__ttl .is-window::after {
          mask-image: url('/images/icon_window01.webp');
  -webkit-mask-image: url('/images/icon_window01.webp');
}
.m-cSingle__btm__ul__aw__txt__ttl .is-arrow,
.m-cSingle__btm__ul__aw__txt__ttl .is-window {
  position: relative;
  display: inline-block;
  content: '';
  top: 2px;
  right: -8px;
  width: 15px;
  height: 15px;
}
@media print, (min-width: 768px) {
  .m-cSingle__btm__ul__aw__txt__ttl .is-arrow,
  .m-cSingle__btm__ul__aw__txt__ttl .is-window {
    position: absolute;
    top: 50%;
    right: 28px;
    transform: translateY(-50%);
  }
}
.m-cSingle__btm__ul__aw__txt__ttl .is-arrow::before,
.m-cSingle__btm__ul__aw__txt__ttl .is-window::before {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  right: 0;
  top: 50%;
  border-radius: 50%;
  transform: translate(50%, -50%);
  background: #09102c;
  transition: .3s cubic-bezier(.215, .61, .355, 1);
  opacity: 0;
}
.m-cSingle__btm__ul__aw__txt__ttl .is-arrow::after,
.m-cSingle__btm__ul__aw__txt__ttl .is-window::after {
  position: absolute;
  content: '';
  display: inline-block;
  transition: .3s cubic-bezier(.215, .61, .355, 1);
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 15px;
  height: 11px;
          mask-position: center;
  -webkit-mask-position: center;
          mask-size: contain;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  z-index: 2;
  background-color: #09102c;
}
.m-cSingle__btm__ul__aw__txt__lead {
  display: inline-block;
  color: #424242;
}
@media print, (min-width: 768px) {
  .m-cSingle__btm__ul__aw__txt__lead {
    padding-right: 70px;
  }
}
.m-cSingle__btm__ul__aw__btn {
  width: 130px;
}
@media screen and (max-width: 767px) {
  .m-cSingle__btm__ul__aw__btn {
    margin: 13px auto 0;
  }
}
@media print, (min-width: 768px) {
  .m-cSingle__btm__ul__aw__btn {
    position: absolute;
    right: 0;
    bottom: 20px;
  }
}
.m-cSingle__btm__ul__aw__btn .c-btn__in {
  padding-left: 30px;
}
.m-cSingle__btm__btn {
  padding: 0 0 80px;
}
@media print, (min-width: 768px) {
  .m-cSingle__btm__btn {
    width: 300px;
    margin: 0 auto;
    padding-bottom: 200px;
  }
}
.m-cSingle__btm__btn .c-btn__in {
  padding: 20px;
  background: none;
  border: 1px solid #09102c;
  color: #fff;
  background: #09102c;
}
@media screen and (max-width: 767px) {
  .m-cSingle__btm__btn .c-btn__in {
    text-align: center;
  }
}
@media print, (min-width: 768px) {
  .m-cSingle__btm__btn .c-btn__in {
    padding: 19px 0 19px 120px;
  }
}
.m-cSingle__btm__btn .c-btn__in > span {
  font-family: 'Inter', sans-serif;
}
.m-cSingle__btm__btn .c-btn__in::before {
  left: 35px;
  right: auto;
  transform: translate(-50%, -50%);
}
.m-cSingle__btm__btn .c-btn__in.icon-arrow::after {
  right: auto;
  left: 40px;
  rotate: 180deg;
  transform-origin: top;
}
@media print, (min-width: 768px) {
  .m-cSingle__btm__btn .c-btn__in:hover {
    color: #fff;
    border: 1px solid #00a0e9;
    background-color: #00a0e9;
  }
  .m-cSingle__btm__btn .c-btn__in:hover.icon-arrow::after {
    background-color: #00a0e9;
    left: 27px;
  }
}

.m-case {
  background: #f1fbff;
}
.m-case__in {
  position: relative;
}
.m-case__hd {
  position: relative;
  overflow: hidden;
}
.m-case__hd__in {
  position: relative;
  padding: 25px 20px 67px;
}
@media print, (min-width: 768px) {
  .m-case__hd__in {
    max-width: 1300px;
    margin: 0 auto;
    padding: 109px 70px 116px;
  }
}
.m-case__hd__ttlArea {
  display: flex;
  gap: 15px;
  color: #09102c;
}
@media screen and (max-width: 767px) {
  .m-case__hd__ttlArea {
    margin-top: 42px;
  }
  .m-case__hd__ttlArea:not(:has(.m-case__searched__tags)) {
    display: block;
  }
}
.m-case__hd__ttlArea:has(.m-case__searched__tags) .m-case__hd__lead {
  display: none;
}
@media print, (min-width: 768px) {
  .m-case__hd__ttlArea {
    gap: 40px;
  }
}
.m-case__hd__ttl {
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 1;
  flex-shrink: 0;
}
@media print, (min-width: 768px) {
  .m-case__hd__ttl {
    font-size: 68px;
    line-height: 1.1470588235;
  }
}
.m-case__hd__lead {
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .m-case__hd__lead {
    margin-top: 40px;
  }
}
@media print, (min-width: 768px) {
  .m-case__hd__lead {
    font-size: 24px;
    display: flex;
    align-items: center;
    padding-left: 60px;
  }
}
@media print, (min-width: 768px) {
  .m-case__hd__nav {
    position: absolute;
    right: 70px;
    bottom: 36px;
  }
}
.m-case__hd__nav__ul {
  display: flex;
  gap: 25px;
  justify-content: left;
  color: #09102c;
}
@media print, (min-width: 768px) {
  .m-case__hd__nav__ul {
    gap: 40px;
  }
}
.m-case__hd__nav__ul__aw {
  position: relative;
  line-height: 1.5;
  border-bottom: 1px solid #09102c;
  font-family: 'BIZ UDGothic', sans-serif;
}
.m-case__hd__nav__ul__aw:not(:last-child) {
  font-size: 14px;
}
@media print, (min-width: 768px) {
  .m-case__hd__nav__ul__aw:not(:last-child) {
    font-size: 14px;
  }
}
.m-case__hd__nav__ul__aw:not(:last-child)::after {
  position: absolute;
  content: '';
  width: 6px;
  height: 11px;
  background-image: url('/images/icon_arrow02.webp');
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
}
@media print, (min-width: 768px) {
  .m-case__hd__nav__ul__aw:not(:last-child)::after {
    right: -25px;
  }
}
.m-case__hd__nav__ul__aw:first-child {
  font-family: 'Inter', sans-serif;
}
.m-case__hd__nav__ul__aw.is-now {
  border-bottom: none;
}
.m-case__hd__bg {
  position: absolute;
  mix-blend-mode: overlay;
  opacity: .8;
  top: 0;
  left: -7px;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .m-case__hd__bg {
    top: 50px;
  }
}
.m-case__hd__bg img {
  width: 364px;
}
@media print, (min-width: 768px) {
  .m-case__hd__bg img {
    width: 1352px;
  }
}
.m-case__search {
  position: relative;
  padding: 0 20px 30px;
}
@media print, (min-width: 768px) {
  .m-case__search__btn {
    width: 300px;
    margin: 0 auto;
  }
}
.m-case__search__btn .c-btn__in {
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .m-case__search__btn .c-btn__in {
    text-align: center;
  }
}
@media print, (min-width: 768px) {
  .m-case__search__btn .c-btn__in {
    padding: 19px 0 19px 93px;
  }
}
.m-case__bd {
  position: relative;
  padding: 0 70px;
}
@media screen and (max-width: 767px) {
  .m-case__bd {
    padding: 0 20px;
  }
}
.m-case__bd__in {
  margin-bottom: 30px;
}
@media print, (min-width: 768px) {
  .m-case__bd__in {
    max-width: 1300px;
    margin: 0 auto;
  }
}
.m-case__bd__ul {
  transition: 1.5s cubic-bezier(.215, .61, .355, 1);
  overflow: hidden;
}
.m-case__bd__ul > li {
  position: relative;
  border-bottom: 1px solid #ddeef5;
  height: auto;
  transition: .3s cubic-bezier(.215, .61, .355, 1);
  overflow: hidden;
}
.m-case__bd__ul > li:first-child {
  border-top: 1px solid #ddeef5;
}
@media print, (min-width: 768px) {
  .m-case__bd__ul > li:hover .m-case__bd__ul__aw__thum > img {
    transform: scale(1.1);
  }
  .m-case__bd__ul > li:hover::before {
    width: 100%;
  }
  .m-case__bd__ul > li:hover .m-case__bd__ul__aw__arrow::after {
    background-color: #fff;
    right: 13px;
  }
  .m-case__bd__ul > li:hover .m-case__bd__ul__aw__arrow::before {
    background-color: #09102c;
    width: 36px;
    height: 36px;
    opacity: 1;
  }
}
@media print, (min-width: 768px) {
  .m-case__bd__ul > li::before {
    position: absolute;
    width: 0;
    height: 1px;
    background-color: #09102c;
    content: '';
    bottom: 0;
    left: 0;
    transition: .3s cubic-bezier(.215, .61, .355, 1);
  }
  .m-case__bd__ul > li:hover::before {
    width: 100%;
  }
}
.m-case__bd__ul > li.is-filtered {
  display: none;
}
.m-case__bd__ul > li.is-hidden {
  display: none;
}
.m-case__bd__ul__aw {
  position: relative;
  font-family: 'BIZ UDGothic', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.87;
}
@media print, (min-width: 768px) {
  .m-case__bd__ul__aw {
    font-size: 16px;
    line-height: 1.75;
    display: flex;
    gap: 30px;
  }
}
.m-case__bd__ul__aw__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.m-case__bd__ul__aw__thum {
  margin: 20px 0 0;
}
@media print, (min-width: 768px) {
  .m-case__bd__ul__aw__thum {
    margin: 20px 0;
    max-width: 290px;
    overflow: hidden;
    flex-shrink: 0;
  }
}
.m-case__bd__ul__aw__thum img {
  width: 100%;
  height: 61.33333333vw;
  object-fit: cover;
  transition: .3s cubic-bezier(.215, .61, .355, 1);
}
@media print, (min-width: 768px) {
  .m-case__bd__ul__aw__thum img {
    height: 200px;
  }
}
.m-case__bd__ul__aw__txt {
  position: relative;
  padding: 10px 0 20px;
}
@media print, (min-width: 768px) {
  .m-case__bd__ul__aw__txt {
    width: calc(100% - 320px);
    padding: 0 70px 20px 0;
  }
}
.m-case__bd__ul__aw__txt__estate {
  font-family: 'BIZ UDGothic', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 2;
  color: #424242;
}
@media print, (min-width: 768px) {
  .m-case__bd__ul__aw__txt__estate {
    font-size: 14px;
    font-weight: 400;
    line-height: 2;
    padding-top: 40px;
  }
}
.m-case__bd__ul__aw__txt__ttl {
  font-family: 'BIZ UDGothic', sans-serif;
  font-weight: 400;
  line-height: 1.87;
  font-weight: bold;
  color: #09102c;
  margin-bottom: 5px;
}
@media print, (min-width: 768px) {
  .m-case__bd__ul__aw__txt__ttl {
    font-size: 20px;
    margin-top: 5px;
    line-height: 1.4;
    margin-bottom: 9px;
    padding-right: 70px;
  }
}
@media screen and (max-width: 767px) {
  .m-case__bd__ul__aw__txt__ttl {
    position: relative;
  }
  .m-case__bd__ul__aw__txt__ttl .is-arrow {
    position: relative;
    display: inline-block;
    content: '';
    top: 2px;
    right: -8px;
    width: 15px;
    height: 15px;
            mask-image: url('/images/icon_arrow01.webp');
    -webkit-mask-image: url('/images/icon_arrow01.webp');
            mask-position: center;
    -webkit-mask-position: center;
            mask-size: contain;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    background-color: #09102c;
    transition: .3s cubic-bezier(.215, .61, .355, 1);
  }
}
.m-case__bd__ul__aw__txt__tag {
  position: relative;
  display: inline-block;
}
.m-case__bd__ul__aw__txt__tag > li {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
}
.m-case__bd__ul__aw__txt__tag > li > a {
  border-radius: 20px;
  border: 1px solid #424242;
  color: #424242;
  display: block;
  padding: 6px 15px;
  transition: .3s cubic-bezier(.215, .61, .355, 1);
}
@media print, (min-width: 768px) {
  .m-case__bd__ul__aw__txt__tag > li > a:hover {
    background-color: #00a0e9;
    color: #fff;
    border: 1px solid #00a0e9;
  }
}
@media screen and (max-width: 767px) {
  .m-case__bd__ul__aw__arrow {
    display: none;
  }
}
.m-case__bd__ul__aw__arrow::after {
  position: absolute;
  content: '';
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 14px;
  background-color: #09102c;
          mask-image: url(/images/icon_arrow01.webp);
  -webkit-mask-image: url(/images/icon_arrow01.webp);
          mask-position: center;
  -webkit-mask-position: center;
          mask-size: contain;
  -webkit-mask-size: contain;
          mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  transition: .3s cubic-bezier(.215, .61, .355, 1);
}
.m-case__bd__ul__aw__arrow::before {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  right: 0;
  top: 50%;
  border-radius: 50%;
  transform: translate(50%, -50%);
  background: #09102c;
  transition: .3s cubic-bezier(.215, .61, .355, 1);
  opacity: 0;
  right: 20px;
}
.m-case__more {
  position: relative;
  padding: 0 20px 80px;
}
@media print, (min-width: 768px) {
  .m-case__more {
    padding: 60px 0 120px;
  }
}
.m-case__more:has(.is-hidden) {
  padding-bottom: 177px;
}
@media print, (min-width: 768px) {
  .m-case__more:has(.is-hidden) {
    padding-bottom: 188px;
  }
}
@media print, (min-width: 768px) {
  .m-case__more__btn {
    width: 300px;
    margin: 0 auto;
  }
}
.m-case__more__btn .c-btn__in {
  padding: 20px;
  background: none;
  border: 1px solid #09102c;
  color: #09102c;
}
@media screen and (max-width: 767px) {
  .m-case__more__btn .c-btn__in {
    text-align: center;
  }
}
@media print, (min-width: 768px) {
  .m-case__more__btn .c-btn__in {
    padding: 19px 0 19px 100px;
  }
}
.m-case__more__btn .c-btn__in.icon-x::after {
  background-color: #09102c;
}
@media print, (min-width: 768px) {
  .m-case__more__btn .c-btn__in:hover {
    color: #fff;
    border: 1px solid #00a0e9;
  }
  .m-case__more__btn .c-btn__in:hover.icon-x::after {
    background-color: #00a0e9;
  }
}
.m-case__more__btn.is-hidden {
  display: none;
}
.m-case__btmSearch {
  position: relative;
  background: #09102c;
}
.m-case__btmSearch__in {
  padding: 60px 20px 30px;
}
@media print, (min-width: 768px) {
  .m-case__btmSearch__in {
    padding: 80px 70px 35px;
  }
}
.m-case__btmSearch__hd {
  max-width: 1300px;
  margin: 0 auto;
}
.m-case__btmSearch__hd__ttl {
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 30px;
}
@media print, (min-width: 768px) {
  .m-case__btmSearch__hd__ttl {
    font-size: 36px;
    line-height: 1;
    margin-bottom: 40px;
  }
}
.m-case__btmSearch__bd__in {
  max-width: 1300px;
  margin: 0 auto;
}
.m-case__btmSearch__bd dl > div {
  border-bottom: 1px solid #222841;
  padding: 15px 0;
}
@media print, (min-width: 768px) {
  .m-case__btmSearch__bd dl > div {
    display: flex;
    padding: 20px 0;
  }
}
.m-case__btmSearch__bd dl > div:first-child {
  border-top: 1px solid #222841;
}
.m-case__btmSearch__bd dl > div dt {
  font-family: 'BIZ UDGothic', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .m-case__btmSearch__bd dl > div dt {
    margin-bottom: 10px;
  }
}
@media print, (min-width: 768px) {
  .m-case__btmSearch__bd dl > div dt {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.55;
    width: 120px;
  }
}
.m-case__btmSearch__bd dl > div dd {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
}
@media print, (min-width: 768px) {
  .m-case__btmSearch__bd dl > div dd {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
  }
}
.m-case__btmSearch__bd dl > div dd .m-case__btmSearch__bd__ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 5px;
}
.m-case__btmSearch__bd dl > div dd .m-case__btmSearch__bd__ul label {
  position: relative;
}
.m-case__btmSearch__bd dl > div dd .m-case__btmSearch__bd__ul input {
  position: absolute;
  bottom: calc(100% + 5px);
  right: calc(100% + 5px);
  opacity: 0;
}
.m-case__btmSearch__bd dl > div dd .m-case__btmSearch__bd__ul input:checked + span {
  border: 1px solid #fff;
  background-color: #fff;
  color: #09102c;
}
.m-case__btmSearch__bd dl > div dd .m-case__btmSearch__bd__ul span {
  display: block;
  border: 1px solid #6d6f80;
  border-radius: 100px;
  padding: 8px 33px;
  color: #fff;
  transition: .3s cubic-bezier(.215, .61, .355, 1);
  cursor: pointer;
  -webkit-user-select: none;
          user-select: none;
}
@media print, (min-width: 768px) {
  .m-case__btmSearch__bd dl > div dd .m-case__btmSearch__bd__ul span:hover {
    border: 1px solid #00a0e9;
    background-color: #00a0e9;
  }
}
.m-case__btmSearch__btn {
  padding: 0 20px 60px;
}
@media print, (min-width: 768px) {
  .m-case__btmSearch__btn {
    width: 300px;
    margin: 0 auto;
    padding-bottom: 80px;
  }
}
.m-case__btmSearch__btn .c-btn__in {
  padding: 20px;
  background: none;
  border: 1px solid #09102c;
  color: #09102c;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .m-case__btmSearch__btn .c-btn__in {
    text-align: center;
  }
}
@media print, (min-width: 768px) {
  .m-case__btmSearch__btn .c-btn__in {
    padding: 19px 0 19px 112px;
  }
}
.m-case__btmSearch__btn .c-btn__in.icon-arrow::after {
  right: 40px;
  background-color: #09102c;
}
@media print, (min-width: 768px) {
  .m-case__btmSearch__btn .c-btn__in:hover {
    color: #fff;
    border: 1px solid #00a0e9;
    background-color: #00a0e9;
  }
  .m-case__btmSearch__btn .c-btn__in:hover.icon-arrow::after {
    background-color: #00a0e9;
    right: 27px;
  }
}
.m-case__btmSearch__btn .c-btn__in.is-disabled {
  background: #6d6f80;
  border: 1px solid #6d6f80;
  cursor: not-allowed;
  pointer-events: none;
}
.m-case__modal {
  width: 100%;
  height: 100%;
  position: fixed;
  inset: 0;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s cubic-bezier(.215, .61, .355, 1);
}
.m-case__modal.is-active {
  opacity: 1;
  visibility: visible;
}
.m-case__modal__bg {
  position: absolute;
  background: rgba(255, 255, 255, .8);
  width: 100%;
  height: 100%;
  inset: 0;
  -webkit-backdrop-filter: blur(1.5px);
          backdrop-filter: blur(1.5px);
}
.m-case__modal__inner {
  position: absolute;
  display: flex;
  align-items: center;
  top: 0;
  left: 0;
  width: calc(100% - 40px);
  height: 100%;
  padding: 20px;
}
@media print, (min-width: 768px) {
  .m-case__modal__inner {
    width: calc(100% - 140px);
    padding: 0 70px;
  }
}
.m-case__modal__in {
  max-width: 1160px;
  position: relative;
  margin: auto;
  background: #09102c;
  padding: 60px 20px;
}
@media print, (min-width: 768px) {
  .m-case__modal__in {
    padding: 60px;
  }
}
.m-case__modal__hd__ttl {
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 40px;
}
@media print, (min-width: 768px) {
  .m-case__modal__hd__ttl {
    font-size: 38px;
    line-height: 1;
  }
}
.m-case__modal__bd dl > div {
  border-bottom: 1px solid #222841;
  padding: 15px 0;
}
@media print, (min-width: 768px) {
  .m-case__modal__bd dl > div {
    display: flex;
    padding: 20px 0;
  }
}
.m-case__modal__bd dl > div dt {
  font-family: 'BIZ UDGothic', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .m-case__modal__bd dl > div dt {
    margin-bottom: 10px;
  }
}
@media print, (min-width: 768px) {
  .m-case__modal__bd dl > div dt {
    display: flex;
    align-items: center;
    font-size: 18px;
    line-height: 1.56;
    font-weight: 700;
    width: 120px;
    flex-shrink: 0;
  }
}
.m-case__modal__bd dl > div dd {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
}
@media print, (min-width: 768px) {
  .m-case__modal__bd dl > div dd {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
  }
}
.m-case__modal__bd dl > div dd .m-case__modal__bd__ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 5px;
}
.m-case__modal__bd dl > div dd .m-case__modal__bd__ul label {
  position: relative;
}
.m-case__modal__bd dl > div dd .m-case__modal__bd__ul input {
  position: absolute;
  bottom: calc(100% + 5px);
  right: calc(100% + 5px);
  opacity: 0;
}
.m-case__modal__bd dl > div dd .m-case__modal__bd__ul input:checked + span {
  border: 1px solid #fff;
  background-color: #fff;
  color: #09102c;
}
.m-case__modal__bd dl > div dd .m-case__modal__bd__ul span {
  display: block;
  border: 1px solid #6d6f80;
  border-radius: 100px;
  padding: 8px 33px;
  color: #fff;
  transition: .3s cubic-bezier(.215, .61, .355, 1);
  cursor: pointer;
  -webkit-user-select: none;
          user-select: none;
}
@media print, (min-width: 768px) {
  .m-case__modal__bd dl > div dd .m-case__modal__bd__ul span:hover {
    border: 1px solid #00a0e9;
    background-color: #00a0e9;
  }
}
.m-case__modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
  border-radius: 50%;
  border: 1px solid #fff;
  transition: .3s cubic-bezier(.215, .61, .355, 1);
}
.m-case__modal__close::after {
  position: absolute;
  content: '';
  width: 15px;
  height: 15px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
          mask-image: url('/images/icon_x.webp');
  -webkit-mask-image: url('/images/icon_x.webp');
          mask-position: center;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #fff;
}
@media print, (min-width: 768px) {
  .m-case__modal__close:hover {
    background-color: #fff;
  }
  .m-case__modal__close:hover::after {
    background-color: #09102c;
  }
}
.m-case__modal__btn {
  padding: 40px 20px 0;
}
@media print, (min-width: 768px) {
  .m-case__modal__btn {
    width: 300px;
    margin: 0 auto;
  }
}
.m-case__modal__btn .c-btn__in {
  padding: 20px;
  background: none;
  border: 1px solid #09102c;
  color: #09102c;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .m-case__modal__btn .c-btn__in {
    text-align: center;
  }
}
@media print, (min-width: 768px) {
  .m-case__modal__btn .c-btn__in {
    padding: 19px 0 19px 112px;
  }
}
.m-case__modal__btn .c-btn__in.icon-arrow::after {
  right: 40px;
  background-color: #09102c;
}
@media print, (min-width: 768px) {
  .m-case__modal__btn .c-btn__in:hover {
    color: #fff;
    border: 1px solid #00a0e9;
    background-color: #00a0e9;
  }
  .m-case__modal__btn .c-btn__in:hover.icon-arrow::after {
    background-color: #00a0e9;
    right: 27px;
  }
}
.m-case__modal__btn .c-btn__in.is-disabled {
  background: #6d6f80;
  border: 1px solid #6d6f80;
  cursor: not-allowed;
  pointer-events: none;
}
.m-case__searched {
  display: flex;
}
.m-case__searched__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  line-height: 1;
}
@media print, (min-width: 768px) {
  .m-case__searched__tags {
    font-size: 16px;
    gap: 10px;
    line-height: 1.7;
  }
}
.m-case__searched__tags li:not(:last-child) {
  padding: 6px 15px;
  border-radius: 20px;
  background: #09102c;
  color: #fff;
}
@media print, (min-width: 768px) {
  .m-case__searched__tags li:not(:last-child) {
    padding: 9px 33px;
    border-radius: 100px;
  }
}
.m-case__searched__tags li:last-child a {
  position: relative;
  left: 5px;
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #09102c;
  transition: .3s cubic-bezier(.215, .61, .355, 1);
}
@media print, (min-width: 768px) {
  .m-case__searched__tags li:last-child a {
    left: 10px;
  }
  .m-case__searched__tags li:last-child a:hover {
    background-color: #00a0e9;
    border-color: #00a0e9;
  }
  .m-case__searched__tags li:last-child a:hover::before {
    background-color: #fff;
  }
}
.m-case__searched__tags li:last-child a::before {
  position: absolute;
  content: '';
  width: 15px;
  height: 15px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
          mask-image: url('/images/icon_x.webp');
  -webkit-mask-image: url('/images/icon_x.webp');
          mask-position: center;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #09102c;
  transition: .3s cubic-bezier(.215, .61, .355, 1);
}

.m-cmp {
  background: #f1fbff;
}
.m-cmp__in {
  position: relative;
}
@media print, (min-width: 768px) {
  .m-cmp__in {
    padding-bottom: 200px;
  }
}
@media screen and (max-width: 767px) {
  .m-cmp__in {
    padding-bottom: 60px;
  }
}
.m-cmp__hd {
  position: relative;
  overflow: hidden;
}
.m-cmp__hd__in {
  position: relative;
  padding: 25px 20px 67px;
}
@media print, (min-width: 768px) {
  .m-cmp__hd__in {
    max-width: 1300px;
    margin: 0 auto;
    padding: 109px 70px 116px;
  }
}
@media screen and (max-width: 767px) {
  .m-cmp__hd__ttlArea {
    margin-top: 42px;
  }
}
@media print, (min-width: 768px) {
  .m-cmp__hd__ttlArea {
    gap: 40px;
  }
}
.m-cmp__hd__ttl {
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  color: #09102c;
}
@media print, (min-width: 768px) {
  .m-cmp__hd__ttl {
    font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 68px;
    line-height: 1.1470588235;
  }
}
@media print, (min-width: 768px) {
  .m-cmp__hd__nav {
    position: absolute;
    right: 70px;
    bottom: 36px;
  }
}
.m-cmp__hd__bg {
  position: absolute;
  mix-blend-mode: overlay;
  opacity: .8;
  top: 0;
  left: -7px;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .m-cmp__hd__bg {
    top: 50px;
  }
}
.m-cmp__hd__bg img {
  width: 332px;
}
@media print, (min-width: 768px) {
  .m-cmp__hd__bg img {
    width: 1234px;
  }
}
.m-cmp__topMenu {
  position: relative;
  background-color: #09102c;
}
.m-cmp__topMenu__in {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
}
@media print, (min-width: 768px) {
  .m-cmp__topMenu__in {
    grid-template-columns: repeat(2, 1fr);
  }
}
.m-cmp__topMenu__in > li {
  position: relative;
  overflow: hidden;
}
.m-cmp__topMenu__in > li a {
  position: relative;
  display: block;
  transition: .3s cubic-bezier(.215, .61, .355, 1);
}
.m-cmp__topMenu__in > li a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, .65) 100%);
}
.m-cmp__topMenu__in > li a::before {
  content: '';
  position: absolute;
  top: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  left: 0;
  width: 100%;
  height: 100%;
  transition: .3s cubic-bezier(.215, .61, .355, 1);
}
.m-cmp__topMenu__in > li:nth-child(1) a::before {
  background-image: url('/images/bg_comp01.webp');
}
.m-cmp__topMenu__in > li:nth-child(2) a::before {
  background-image: url('/images/bg_comp02.webp');
}
.m-cmp__topMenu__in > li:nth-child(3) .m-cmp__topMenu__aw__ttl,
.m-cmp__topMenu__in > li:nth-child(3) .m-cmp__topMenu__aw__txt {
  color: #09102c;
}
.m-cmp__topMenu__in > li:nth-child(3) .m-cmp__topMenu__aw__txt::after {
  background-color: #09102c;
}
.m-cmp__topMenu__in > li:nth-child(3) a::after {
  display: none;
}
.m-cmp__topMenu__in > li:nth-child(3) a::before {
  background-image: url('/images/bg_comp03.webp');
}
.m-cmp__topMenu__in > li:nth-child(4) a::before {
  background-image: url('/images/bg_comp04.webp');
}
@media print, (min-width: 768px) {
  .m-cmp__topMenu__in:has(:hover) a:hover::before {
    transform: scale(1.1);
  }
  .m-cmp__topMenu__in:has(:hover) a:hover .m-cmp__topMenu__aw__txt::before {
    width: 36px;
    height: 36px;
    opacity: 1;
    background-color: #fff;
  }
  .m-cmp__topMenu__in:has(:hover) a:hover .m-cmp__topMenu__aw__txt::after {
    right: -42px;
    background-color: #09102c;
  }
  .m-cmp__topMenu__in:has(:hover) li:nth-child(3) a:hover .m-cmp__topMenu__aw__txt::before {
    background-color: #09102c;
  }
  .m-cmp__topMenu__in:has(:hover) li:nth-child(3) a:hover .m-cmp__topMenu__aw__txt::after {
    right: -42px;
    background-color: #fff;
  }
  .m-cmp__topMenu__in:has(:hover) a:not(:hover) {
    opacity: .2;
  }
}
.m-cmp__topMenu__aw {
  position: relative;
  padding: 101px 20px 20px;
}
@media print, (min-width: 768px) {
  .m-cmp__topMenu__aw {
    padding: 237px 0 73px clamp(120px, 9.5vw, 9.5vw);
  }
}
.m-cmp__topMenu__aw__ttl {
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
  margin-bottom: 15px;
  color: #fff;
}
@media print, (min-width: 768px) {
  .m-cmp__topMenu__aw__ttl {
    font-size: 36px;
    margin-bottom: 30px;
  }
}
.m-cmp__topMenu__aw__txt {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 1.6;
  font-family: 'BIZ UDGothic', sans-serif;
  color: #fff;
}
@media print, (min-width: 768px) {
  .m-cmp__topMenu__aw__txt {
    font-size: 18px;
    line-height: 1;
  }
}
@media screen and (max-width: 767px) {
  .m-cmp__topMenu__aw__txt .is-arrow {
    position: relative;
    display: inline-block;
    content: '';
    top: 2px;
    right: -8px;
    width: 15px;
    height: 15px;
            mask-image: url('/images/icon_arrow01.webp');
    -webkit-mask-image: url('/images/icon_arrow01.webp');
            mask-position: center;
    -webkit-mask-position: center;
            mask-size: contain;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    background-color: #09102c;
    transition: .3s cubic-bezier(.215, .61, .355, 1);
  }
  .m-cmp__topMenu__aw__txt .is-arrow.is-white {
    background-color: #fff;
  }
}
.m-cmp__topMenu__aw__txt::before {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  right: 0;
  top: 50%;
  border-radius: 50%;
  transform: translate(50%, -50%);
  background: #09102c;
  transition: .3s cubic-bezier(.215, .61, .355, 1);
  opacity: 0;
  right: -35px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .m-cmp__topMenu__aw__txt::before {
    display: none;
  }
}
.m-cmp__topMenu__aw__txt::after {
  position: absolute;
  content: '';
  display: inline-block;
  transition: .3s cubic-bezier(.215, .61, .355, 1);
  top: 50%;
  right: -28px;
  transform: translateY(-50%);
  width: 15px;
  height: 14px;
          mask-image: url('/images/icon_arrow01.webp');
  -webkit-mask-image: url('/images/icon_arrow01.webp');
          mask-position: center;
  -webkit-mask-position: center;
          mask-size: contain;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .m-cmp__topMenu__aw__txt::after {
    display: none;
  }
}
.m-cmp__bd {
  max-width: 1300px;
  margin: 0 auto;
  margin-top: 80px;
  padding: 0 20px;
}
@media print, (min-width: 768px) {
  .m-cmp__bd {
    padding: 0 70px;
    margin-top: 130px;
  }
}
.m-cmp__bd__ttl {
  position: relative;
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
  color: #09102c;
}
@media print, (min-width: 768px) {
  .m-cmp__bd__ttl {
    font-size: 36px;
    line-height: 1.5;
    margin-bottom: 60px;
  }
}
.m-cmp__bd__in {
  position: relative;
}
.m-cmp__bd__in__bd .is-cm {
  table-layout: fixed;
  width: 100%;
}
.m-cmp__bd__in__bd .is-cm > tbody > tr {
  border-top: 1px solid #ddeef5;
}
.m-cmp__bd__in__bd .is-cm > tbody > tr:last-child {
  border-bottom: 1px solid #ddeef5;
}
@media screen and (max-width: 767px) {
  .m-cmp__bd__in__bd .is-cm > tbody > tr {
    display: block;
    padding: 18px 0;
  }
}
.m-cmp__bd__in__bd .is-cm > tbody > tr > th {
  font-weight: bold;
}
@media print, (min-width: 768px) {
  .m-cmp__bd__in__bd .is-cm > tbody > tr > th {
    width: 25%;
  }
}
@media screen and (max-width: 767px) {
  .m-cmp__bd__in__bd .is-cm > tbody > tr > th {
    margin-bottom: 5px;
  }
}
.m-cmp__bd__in__bd .is-cm > tbody > tr > th,
.m-cmp__bd__in__bd .is-cm > tbody > tr td {
  vertical-align: middle;
  color: #424242;
  font-family: 'BIZ UDGothic', sans-serif;
}
@media print, (min-width: 768px) {
  .m-cmp__bd__in__bd .is-cm > tbody > tr > th,
  .m-cmp__bd__in__bd .is-cm > tbody > tr td {
    font-size: 18px;
    line-height: 1.89;
    padding: 20px 0;
  }
}
@media screen and (max-width: 767px) {
  .m-cmp__bd__in__bd .is-cm > tbody > tr > th,
  .m-cmp__bd__in__bd .is-cm > tbody > tr td {
    display: block;
    font-size: 15px;
    line-height: 1.86;
  }
}
.m-cmp__bd__in__bd .is-lc {
  position: relative;
  table-layout: fixed;
  width: 100%;
}
.m-cmp__bd__in__bd .is-lc > tbody {
  position: relative;
}
.m-cmp__bd__in__bd .is-lc > tbody > tr {
  border-top: 1px solid #ddeef5;
}
.m-cmp__bd__in__bd .is-lc > tbody > tr:first-child {
  border-top: none;
}
@media screen and (max-width: 767px) {
  .m-cmp__bd__in__bd .is-lc > tbody > tr:first-child > th:nth-child(1) {
    position: absolute;
    top: 18px;
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .m-cmp__bd__in__bd .is-lc > tbody > tr {
    display: block;
    padding: 18px 0;
    padding-left: 60px;
  }
}
.m-cmp__bd__in__bd .is-lc > tbody > tr > th {
  font-weight: bold;
}
@media print, (min-width: 768px) {
  .m-cmp__bd__in__bd .is-lc > tbody > tr > th:nth-child(1) {
    width: 10%;
  }
}
@media print, (min-width: 768px) {
  .m-cmp__bd__in__bd .is-lc > tbody > tr > th:nth-child(2) {
    width: 15%;
  }
}
.m-cmp__bd__in__bd .is-lc > tbody > tr > th,
.m-cmp__bd__in__bd .is-lc > tbody > tr td {
  vertical-align: middle;
  color: #424242;
  font-family: 'BIZ UDGothic', sans-serif;
}
@media print, (min-width: 768px) {
  .m-cmp__bd__in__bd .is-lc > tbody > tr > th,
  .m-cmp__bd__in__bd .is-lc > tbody > tr td {
    font-size: 18px;
    padding: 20px 0;
    line-height: 1.89;
  }
}
@media screen and (max-width: 767px) {
  .m-cmp__bd__in__bd .is-lc > tbody > tr > th,
  .m-cmp__bd__in__bd .is-lc > tbody > tr td {
    display: block;
    font-size: 15px;
    line-height: 1.86;
  }
}
@media screen and (max-width: 767px) {
  .m-cmp__bd__in__bd .is-lc > tbody > tr > td {
    margin-top: 5px;
  }
}
@media print, (min-width: 768px) {
  .m-cmp__bd__in__bd .is-lc > tbody > tr > td .in-table-layout {
    display: flex;
    justify-content: space-between;
  }
}
@media print, (min-width: 768px) {
  .m-cmp__bd__in__bd .is-lc > tbody > tr > td .in-table-layout .table__btn {
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .m-cmp__bd__in__bd .is-lc > tbody > tr > td .in-table-layout .table__btn {
    margin-top: 10px;
    text-align: center;
  }
}
.m-cmp__bd__in__bd .is-lc > tbody > tr > td .in-table-layout .table__btn > .c-btn__in {
  font-family: 'Inter', '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
  background-color: unset;
  border: 1px solid #09102c;
  color: #09102c;
}
.m-cmp__bd__in__bd .is-lc > tbody > tr > td .in-table-layout .table__btn > .c-btn__in.icon-window::after {
  background-color: #09102c;
}
@media print, (min-width: 768px) {
  .m-cmp__bd__in__bd .is-lc > tbody > tr > td .in-table-layout .table__btn > .c-btn__in {
    padding: 9px 81px 9px 51px;
  }
  .m-cmp__bd__in__bd .is-lc > tbody > tr > td .in-table-layout .table__btn > .c-btn__in:hover {
    color: #fff;
    border: 1px solid #00a0e9;
  }
  .m-cmp__bd__in__bd .is-lc > tbody > tr > td .in-table-layout .table__btn > .c-btn__in:hover.icon-window::after {
    background-color: #00a0e9;
  }
}
@media screen and (max-width: 767px) {
  .m-cmp__bd__in__bd .is-lc > tbody > tr > td .in-table-layout .table__btn > .c-btn__in > span {
    margin-left: -15px;
  }
}
@media screen and (max-width: 767px) {
  .m-cmp-sb__btm.is-comp-btn {
    margin-top: 30px;
    padding: 0 20px;
  }
}
@media print, (min-width: 768px) {
  .m-cmp-sb__btm.is-comp-btn {
    width: 300px;
    margin: 60px auto 0;
  }
}
@media print, (min-width: 768px) {
  .m-cmp-sb__btn {
    width: 300px;
    margin: 0 auto;
  }
}
.m-cmp-sb__btn .c-btn__in {
  padding: 20px;
  background: none;
  border: 1px solid #09102c;
  color: #fff;
  background: #09102c;
}
@media screen and (max-width: 767px) {
  .m-cmp-sb__btn .c-btn__in {
    text-align: center;
  }
}
@media print, (min-width: 768px) {
  .m-cmp-sb__btn .c-btn__in {
    padding: 19px 0 19px 105px;
  }
}
.m-cmp-sb__btn .c-btn__in > span {
  font-family: 'Inter', sans-serif;
}
.m-cmp-sb__btn .c-btn__in::before {
  left: 35px;
  right: auto;
  transform: translate(-50%, -50%);
}
.m-cmp-sb__btn .c-btn__in.icon-arrow::after {
  right: auto;
  left: 40px;
  rotate: 180deg;
  transform-origin: top;
}
@media print, (min-width: 768px) {
  .m-cmp-sb__btn .c-btn__in:hover {
    color: #fff;
    border: 1px solid #00a0e9;
    background-color: #00a0e9;
  }
  .m-cmp-sb__btn .c-btn__in:hover.icon-arrow::after {
    background-color: #00a0e9;
    left: 27px;
  }
}

.m-cmpInf-sb {
  position: relative;
}
.m-cmpInf-sb__in {
  position: relative;
  overflow: visible;
  clip: rect(auto, auto, auto, auto);
}
.m-cmpInf-sb__in.is-scroll {
  opacity: 1;
}
.m-cmpInf-sb__in.is-scroll .bg::before {
  opacity: 1;
}
.m-cmpInf-sb__in__con {
  position: relative;
  color: #fff;
  text-align: center;
  height: 2737px;
}
@media screen and (max-width: 767px) {
  .m-cmpInf-sb__in__con {
    height: 2015px;
  }
}
.m-cmpInf-sb__in__con .bg {
  display: block;
  background: no-repeat center center/cover;
  width: 100%;
  height: 100vh;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: -1;
  background-image: url('/images/bg_cmpinf01.webp');
}
.m-cmpInf-sb__in__con .bg::before {
  content: '';
  display: block;
  background: no-repeat center center/cover;
  width: 100%;
  height: 100vh;
  top: 0;
  opacity: 0;
  background-image: url('/images/bg_cmpinf02.webp');
  transition: .3s cubic-bezier(.215, .61, .355, 1);
}
.m-cmpInf-sb__in__con > div {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 100%;
}
.m-cmpInf-sb__in__con > div > div:first-child .m-cmpInf-sb__in__con__txt {
  margin-bottom: 20px;
}
@media print, (min-width: 768px) {
  .m-cmpInf-sb__in__con > div > div:first-child .m-cmpInf-sb__in__con__txt {
    margin-bottom: 40px;
  }
}
.m-cmpInf-sb__in__con > div > div:first-child .m-cmpInf-sb__in__con__txt.is-fz20 {
  font-size: 20px;
}
@media print, (min-width: 768px) {
  .m-cmpInf-sb__in__con > div > div:first-child .m-cmpInf-sb__in__con__txt.is-fz20 {
    font-size: 24px;
  }
}
.m-cmpInf-sb__in__con > div > div:nth-child(2) {
  margin-bottom: 80px;
}
@media print, (min-width: 768px) {
  .m-cmpInf-sb__in__con > div > div:nth-child(2) {
    margin-bottom: 160px;
  }
}
.m-cmpInf-sb__in__con > div > div:nth-child(2) .m-cmpInf-sb__in__con__txt {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .m-cmpInf-sb__in__con > div > div:nth-child(2) .m-cmpInf-sb__in__con__txt {
    margin-top: 30px;
  }
}
.m-cmpInf-sb__in__con__ttl {
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  line-height: 1.4;
  font-size: 26px;
  margin-bottom: 30px;
  margin-top: 80px;
}
@media print, (min-width: 768px) {
  .m-cmpInf-sb__in__con__ttl {
    font-size: 36px;
    margin-bottom: 60px;
    line-height: 1;
    margin-top: 160px;
  }
}
.m-cmpInf-sb__in__con__txt {
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  font-weight: bold;
}
@media print, (min-width: 768px) {
  .m-cmpInf-sb__in__con__txt {
    font-size: 20px;
    line-height: 2;
  }
}
.m-cmpInf-sb__in__con__en {
  font-family: 'Inter', '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
  font-size: 14px;
  line-height: 1.85;
  margin-top: 5px;
}
@media print, (min-width: 768px) {
  .m-cmpInf-sb__in__con__en {
    font-size: 16px;
    line-height: 2;
  }
}

.m-cmpHis {
  position: relative;
}
.m-cmpHis__kv {
  position: relative;
}
.m-cmpHis__kv__mv {
  overflow: hidden;
  height: 260px;
}
@media print, (min-width: 768px) {
  .m-cmpHis__kv__mv {
    height: 640px;
  }
}
.m-cmpHis__kv__mv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .m-cmpHis__kv__mv img {
    height: 260px;
  }
}
.m-cmpHis__bd {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  margin-top: 120px;
  padding: 0 20px;
}
@media print, (min-width: 768px) {
  .m-cmpHis__bd {
    padding: 0 70px;
  }
}
.m-cmpHis__bd__introBox {
  position: absolute;
  top: 180px;
  max-width: 1600px;
  width: 100%;
  left: 50%;
  display: flex;
  justify-content: right;
  transform: translateX(-50%);
}
@media print, (min-width: 768px) {
  .m-cmpHis__bd__introBox {
    top: 428px;
  }
}
.m-cmpHis__bd__intro-txt {
  right: 0;
  width: 260px;
}
@media print, (min-width: 768px) {
  .m-cmpHis__bd__intro-txt {
    right: 0;
    width: 690px;
  }
}
.m-cmpHis__bd__intro-txt img {
  width: 100%;
}
.m-cmpHis__bd__ttl {
  position: relative;
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
  color: #09102c;
  margin-top: 70px;
}
@media print, (min-width: 768px) {
  .m-cmpHis__bd__ttl {
    font-size: 36px;
    line-height: 1;
    margin-bottom: 60px;
    margin-top: 140px;
  }
}
.m-cmpHis__bd__ttl-s {
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #09102c;
}
@media print, (min-width: 768px) {
  .m-cmpHis__bd__ttl-s {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 40px;
  }
}
.m-cmpHis__bd__txt {
  font-family: 'BIZ UDGothic', sans-serif;
  color: #424242;
  font-size: 15px;
  line-height: 2;
}
@media print, (min-width: 768px) {
  .m-cmpHis__bd__txt {
    font-size: 18px;
    line-height: 1.89;
  }
}
.m-cmpHis__bd__txt + p {
  margin-top: 20px;
}
@media print, (min-width: 768px) {
  .m-cmpHis__bd__txt + p {
    margin-top: 1.8888888889em;
  }
}
.m-cmpHis__btm__hd {
  max-width: 1300px;
  margin: 0 auto;
  margin-top: 80px;
  padding: 0 20px;
}
@media print, (min-width: 768px) {
  .m-cmpHis__btm__hd {
    padding: 0 70px;
    margin-top: 160px;
    margin-bottom: 60px;
  }
}
.m-cmpHis__btm__bd__tb {
  position: relative;
}
.m-cmpHis__btm__bd__tb > table {
  display: block;
}
.m-cmpHis__btm__bd__tb > table::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-image: url('/images/bg_his01.webp');
  background-size: cover;
  background-position: 24%;
  width: 78px;
}
@media print, (min-width: 768px) {
  .m-cmpHis__btm__bd__tb > table::after {
    background-position: center;
    width: calc(50% - 300px);
  }
}
.m-cmpHis__btm__bd__tb > table > tbody {
  position: relative;
  display: block;
}
.m-cmpHis__btm__bd__tb > table > tbody > tr {
  display: flex;
}
.m-cmpHis__btm__bd__tb > table > tbody > tr > th,
.m-cmpHis__btm__bd__tb > table > tbody > tr > td {
  display: block;
  line-height: 1.8;
}
@media print, (min-width: 768px) {
  .m-cmpHis__btm__bd__tb > table > tbody > tr > th,
  .m-cmpHis__btm__bd__tb > table > tbody > tr > td {
    padding: 15px 0;
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .m-cmpHis__btm__bd__tb > table > tbody > tr > th,
  .m-cmpHis__btm__bd__tb > table > tbody > tr > td {
    padding: 15px 0;
    font-size: 16px;
  }
}
.m-cmpHis__btm__bd__tb > table > tbody > tr > th {
  color: #fff;
  font-weight: 700;
  font-family: 'Inter', '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
}
@media print, (min-width: 768px) {
  .m-cmpHis__btm__bd__tb > table > tbody > tr > th {
    width: calc(50% - 300px);
  }
}
.m-cmpHis__btm__bd__tb > table > tbody > tr > th > span {
  display: block;
  position: relative;
}
@media print, (min-width: 768px) {
  .m-cmpHis__btm__bd__tb > table > tbody > tr > th > span {
    width: 200px;
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .m-cmpHis__btm__bd__tb > table > tbody > tr > th > span {
    width: 78px;
    box-sizing: border-box;
    padding-left: 20px;
  }
}
.m-cmpHis__btm__bd__tb > table > tbody > tr > th > span::before {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  height: 1px;
  background: #fff;
}
@media print, (min-width: 768px) {
  .m-cmpHis__btm__bd__tb > table > tbody > tr > th > span::before {
    top: 15px;
    width: 120px;
  }
}
@media screen and (max-width: 767px) {
  .m-cmpHis__btm__bd__tb > table > tbody > tr > th > span::before {
    top: 14px;
    width: 10px;
  }
}
.m-cmpHis__btm__bd__tb > table > tbody > tr > td {
  color: #424242;
  font-family: 'BIZ UDGothic', sans-serif;
}
@media print, (min-width: 768px) {
  .m-cmpHis__btm__bd__tb > table > tbody > tr > td {
    width: calc(50% + 300px);
  }
}
@media screen and (max-width: 767px) {
  .m-cmpHis__btm__bd__tb > table > tbody > tr > td {
    width: 100%;
  }
}
.m-cmpHis__btm__bd__tb > table > tbody > tr > td > span {
  display: block;
  position: relative;
}
@media print, (min-width: 768px) {
  .m-cmpHis__btm__bd__tb > table > tbody > tr > td > span {
    padding-left: 150px;
  }
}
@media screen and (max-width: 767px) {
  .m-cmpHis__btm__bd__tb > table > tbody > tr > td > span {
    padding: 0 20px;
  }
}
.m-cmpHis__btm__bd__tb > table > tbody > tr > td > span::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  height: 1px;
  background: rgba(112, 112, 112, .15);
}
@media print, (min-width: 768px) {
  .m-cmpHis__btm__bd__tb > table > tbody > tr > td > span::before {
    top: 15px;
    width: 120px;
  }
}
@media screen and (max-width: 767px) {
  .m-cmpHis__btm__bd__tb > table > tbody > tr > td > span::before {
    top: 14px;
    width: 10px;
  }
}
@media print, (min-width: 768px) {
  .m-cmpHis__btm__bd__tb > table > tbody > tr:first-child > th,
  .m-cmpHis__btm__bd__tb > table > tbody > tr:first-child > td {
    padding-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .m-cmpHis__btm__bd__tb > table > tbody > tr:first-child > th,
  .m-cmpHis__btm__bd__tb > table > tbody > tr:first-child > td {
    padding-top: 65px;
  }
}
@media print, (min-width: 768px) {
  .m-cmpHis__btm__bd__tb > table > tbody > tr:last-child > th,
  .m-cmpHis__btm__bd__tb > table > tbody > tr:last-child > td {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .m-cmpHis__btm__bd__tb > table > tbody > tr:last-child > th,
  .m-cmpHis__btm__bd__tb > table > tbody > tr:last-child > td {
    padding-bottom: 55px;
  }
}

.m-cmpLs {
  position: relative;
}
.m-cmpLs-ttlSub {
  font-size: 24px;
}
@media print, (min-width: 768px) {
  .m-cmpLs-ttlSub {
    font-size: 46px;
  }
}
.m-cmpLs__kv:not(:first-child) {
  margin-top: 80px;
}
@media print, (min-width: 768px) {
  .m-cmpLs__kv:not(:first-child) {
    margin-top: 200px;
  }
}
.m-cmpLs__kv__in {
  position: relative;
}
@media print, (min-width: 768px) {
  .m-cmpLs__kv__in {
    display: flex;
    align-items: center;
    width: 100%;
    height: 680px;
  }
}
@media print, (min-width: 768px) {
  .m-cmpLs__kv__mv {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .m-cmpLs__kv__mv {
    height: 260px;
  }
}
.m-cmpLs__kv__mv img {
  display: block;
  width: 100%;
  max-width: 2400px;
  height: 100%;
  margin: 0 auto;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .m-cmpLs__kv__mv img {
    height: 260px;
  }
}
@media screen and (max-width: 767px) {
  .m-cmpLs__kv__mv.is-no1 img {
    object-position: 76% 0;
  }
  .m-cmpLs__kv__mv.is-no2 img {
    object-position: 76% 0;
  }
  .m-cmpLs__kv__mv.is-no3 img {
    object-position: 74% 0;
  }
  .m-cmpLs__kv__mv.is-no5 img {
    object-position: 76% 0;
  }
  .m-cmpLs__kv__mv.is-no4 img {
    object-position: 68% 0;
  }
}
.m-cmpLs__kv__profile {
  margin: 0 auto;
}
@media print, (min-width: 768px) {
  .m-cmpLs__kv__profile {
    width: 100%;
    max-width: 1300px;
    padding: 0 70px;
  }
}
@media screen and (max-width: 767px) {
  .m-cmpLs__kv__profile {
    padding: 30px 20px 0;
  }
}
.m-cmpLs__kv__profile__hd {
  margin: 0 0 60px;
}
@media screen and (max-width: 767px) {
  .m-cmpLs__kv__profile__hd {
    position: absolute;
    top: 40px;
    margin: 0;
  }
}
.m-cmpLs__kv__profile__ttl {
  font-size: 18px;
  line-height: 1.7;
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  color: #09102c;
}
@media print, (min-width: 768px) {
  .m-cmpLs__kv__profile__ttl {
    font-size: 24px;
    line-height: 1;
    margin-bottom: 20px;
  }
}
.m-cmpLs__kv__profile__ttl.is-sb {
  line-height: 1.3;
  font-size: 15px;
  margin-bottom: 5px;
}
@media print, (min-width: 768px) {
  .m-cmpLs__kv__profile__ttl.is-sb {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.m-cmpLs__kv__profile__name {
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
  font-size: 26px;
  line-height: 1.38;
  font-weight: 700;
  color: #09102c;
}
@media print, (min-width: 768px) {
  .m-cmpLs__kv__profile__name {
    font-size: 46px;
    line-height: 1;
  }
}
.m-cmpLs__kv__profile__lead__ttl {
  font-size: 18px;
  line-height: 1.7;
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
  color: #09102c;
}
@media print, (min-width: 768px) {
  .m-cmpLs__kv__profile__lead__ttl {
    font-size: 24px;
    line-height: 1.5;
  }
}
.m-cmpLs__kv__profile__lead__txt {
  font-family: 'BIZ UDGothic', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 2;
  color: #424242;
}
@media print, (min-width: 768px) {
  .m-cmpLs__kv__profile__lead__txt {
    font-size: 18px;
    line-height: 1.89;
    filter: drop-shadow(1px 1px 0 #e3efff);
  }
}
.m-cmpLs__kv__profile__lead__sns {
  display: flex;
  column-gap: 20px;
  margin: 40px 0 0;
}
@media screen and (max-width: 767px) {
  .m-cmpLs__kv__profile__lead__sns {
    column-gap: 15px;
    margin: 20px 0 0;
  }
}
.m-cmpLs__kv__profile__lead__sns > li {
  width: 40px;
}
@media screen and (max-width: 767px) {
  .m-cmpLs__kv__profile__lead__sns > li {
    width: 35px;
  }
}
.m-cmpLs__kv__profile__lead__sns > li a {
  display: block;
}
.m-cmpLs__kv__profile__lead__sns > li img {
  display: block;
  width: 100%;
  height: auto;
}
.m-cmpLs__bd {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  margin-top: 80px;
  padding: 0 20px;
}
@media print, (min-width: 768px) {
  .m-cmpLs__bd {
    padding: 0 70px;
    margin-top: 120px;
  }
}
.m-cmpLs__bd__intro-txt {
  position: absolute;
  right: calc(100% + 70px);
  top: -353px;
  width: 690px;
}
.m-cmpLs__bd__intro-txt img {
  width: 100%;
}
.m-cmpLs__bd__ttl {
  position: relative;
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
  color: #09102c;
  margin-top: 70px;
}
@media print, (min-width: 768px) {
  .m-cmpLs__bd__ttl {
    font-size: 36px;
    line-height: 1;
    margin-bottom: 60px;
    margin-top: 140px;
  }
}
.m-cmpLs__bd__ttl-s {
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #09102c;
}
@media print, (min-width: 768px) {
  .m-cmpLs__bd__ttl-s {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 40px;
  }
}
.m-cmpLs__bd__txt {
  font-family: 'BIZ UDGothic', sans-serif;
  color: #424242;
  font-size: 15px;
  line-height: 2;
}
@media print, (min-width: 768px) {
  .m-cmpLs__bd__txt {
    font-size: 18px;
    line-height: 1.89;
  }
}
.m-cmpLs__bd__txt + p {
  margin-top: 20px;
}
@media print, (min-width: 768px) {
  .m-cmpLs__bd__txt + p {
    margin-top: 1.8888888889em;
  }
}
.m-cmpLs__bd__btnBox {
  width: 207px;
}
@media screen and (max-width: 767px) {
  .m-cmpLs__bd__btnBox {
    margin-top: 30px;
    margin-inline: auto;
  }
}
@media print, (min-width: 768px) {
  .m-cmpLs__bd__btnBox {
    margin-top: 60px;
  }
}
.m-cmpLs__bd__btnBox .c-btn__in {
  padding-left: 30px;
}
@media print, (min-width: 768px) {
  .m-cmpLs__bd__btnBox .c-btn__in.icon-window::after {
    right: 26px;
  }
}
@media print, (min-width: 768px) {
  .m-cmpLs__bd__btnBox .c-btn__in:hover.icon-window::after {
    right: 16px;
  }
}

.m-cmpIni {
  position: relative;
}
.m-cmpIni__kv__mv {
  overflow: hidden;
  height: 260px;
}
@media print, (min-width: 768px) {
  .m-cmpIni__kv__mv {
    height: 640px;
  }
}
.m-cmpIni__kv__mv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .m-cmpIni__kv__mv img {
    height: 260px;
  }
}
.m-cmpIni__bd {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  margin-top: 80px;
  padding: 0 20px;
}
@media print, (min-width: 768px) {
  .m-cmpIni__bd {
    padding: 0 70px;
    margin-top: 120px;
  }
}
.m-cmpIni__bd__ttl {
  position: relative;
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
  color: #09102c;
  margin-top: 70px;
}
@media print, (min-width: 768px) {
  .m-cmpIni__bd__ttl {
    font-size: 36px;
    line-height: 1;
    margin-bottom: 60px;
    margin-top: 140px;
  }
}
.m-cmpIni__bd__ttl-s {
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #09102c;
}
@media print, (min-width: 768px) {
  .m-cmpIni__bd__ttl-s {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 40px;
  }
}
.m-cmpIni__bd__txt {
  font-family: 'BIZ UDGothic', sans-serif;
  color: #424242;
  font-size: 15px;
  line-height: 2;
}
@media print, (min-width: 768px) {
  .m-cmpIni__bd__txt {
    font-size: 18px;
    line-height: 1.89;
  }
}
.m-cmpIni__bd__txt + p {
  margin-top: 20px;
}
@media print, (min-width: 768px) {
  .m-cmpIni__bd__txt + p {
    margin-top: 1.8888888889em;
  }
}
@media print, (min-width: 768px) {
  .m-cmpIni__bd__ul {
    margin-bottom: 20px;
  }
}
.m-cmpIni__bd__ul > li {
  position: relative;
  font-family: 'BIZ UDGothic', sans-serif;
  color: #424242;
  font-size: 15px;
  line-height: 2;
  margin-left: 19px;
}
@media print, (min-width: 768px) {
  .m-cmpIni__bd__ul > li {
    font-size: 18px;
    line-height: 1.89;
    margin-left: 22px;
  }
}
.m-cmpIni__bd__ul > li::before {
  content: '';
  position: absolute;
  left: -18px;
  top: 11px;
  color: #09102c;
  border-radius: 50%;
  background-color: #09102c;
  width: 8px;
  height: 8px;
}
@media print, (min-width: 768px) {
  .m-cmpIni__bd__ul > li::before {
    top: 50%;
    transform: translateY(-50%);
    left: -20px;
    font-size: 24px;
    line-height: 1;
  }
}
.m-cmpIni__bd hr {
  border: none;
  height: 1px;
  background: #ddeef5;
  margin: 30px 0;
}
@media print, (min-width: 768px) {
  .m-cmpIni__bd hr {
    margin: 40px 0;
  }
}

.m-mSingle {
  position: relative;
}
.m-mSingle__hd {
  position: relative;
  overflow: hidden;
}
@media print, (min-width: 768px) {
  .m-mSingle__hd {
    padding-bottom: 40px;
  }
}
.m-mSingle__hd__in {
  position: relative;
  padding: 65px 0 0;
}
@media print, (min-width: 768px) {
  .m-mSingle__hd__in {
    margin: 0 auto;
    padding: 0;
  }
}
.m-mSingle__hd__bd {
  position: relative;
}
@media print, (min-width: 768px) {
  .m-mSingle__hd__bd {
    height: 40.625vw;
    min-height: 650px;
  }
}
.m-mSingle__hd__thumBg {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% - 20px);
}
@media print, (min-width: 768px) {
  .m-mSingle__hd__thumBg {
    min-height: 650px;
    width: clamp(1200px, 75vw, 100vw);
  }
  .m-mSingle__hd__thumBg::before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 600px;
    content: '';
    opacity: .7;
    background: linear-gradient(266deg, rgba(255, 255, 255, 0) 6.89%, #fff 100%);
  }
}
.m-mSingle__hd__thumBg img {
  width: 100%;
  height: 112vw;
  object-fit: cover;
}
@media print, (min-width: 768px) {
  .m-mSingle__hd__thumBg img {
    min-height: 650px;
    height: 40.625vw;
  }
}
.m-mSingle__hd__intro {
  position: relative;
}
@media screen and (max-width: 767px) {
  .m-mSingle__hd__intro {
    padding-top: 105.333333333%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media print, (min-width: 768px) {
  .m-mSingle__hd__intro {
    width: 100%;
    margin: 0 auto;
    padding-top: 100px;
    padding-left: clamp(120px, 9.375vw, 100vw);
  }
}
.m-mSingle__hd__intro__theme {
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: bold;
  margin-bottom: 18px;
}
@media print, (min-width: 768px) {
  .m-mSingle__hd__intro__theme {
    gap: 10px;
    margin-bottom: 40px;
  }
}
.m-mSingle__hd__intro__theme::before {
  position: absolute;
  top: 50%;
  left: -20px;
  width: 260px !important;
  height: 130%;
  transform: translateY(-50%);
  content: '';
  background: linear-gradient(90deg, #09102c 0%, #09102c 50%, #313f75 100%);
  z-index: -1;
  padding-left: 20px;
}
@media print, (min-width: 768px) {
  .m-mSingle__hd__intro__theme::before {
    left: min(-9.375vw, -120px);
    padding-right: 130px;
    padding-left: clamp(120px, 9.375vw, 100vw);
    height: 64px;
  }
}
.m-mSingle__hd__intro__theme__ttl {
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.125;
  flex-shrink: 0;
}
@media print, (min-width: 768px) {
  .m-mSingle__hd__intro__theme__ttl {
    font-size: 20px;
  }
}
.m-mSingle__hd__intro__theme__name {
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .m-mSingle__hd__intro__theme__name {
    max-width: 180px;
  }
}
@media print, (min-width: 768px) {
  .m-mSingle__hd__intro__theme__name {
    font-size: 32px;
  }
}
.m-mSingle__hd__intro__lead {
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
  font-size: 30px;
  line-height: 1.33;
  font-weight: bold;
  margin-bottom: 10px;
  color: #09102c;
}
@media print, (min-width: 768px) {
  .m-mSingle__hd__intro__lead {
    font-size: 52px;
    max-width: 755px;
    line-height: 1.1923076923;
    margin-bottom: 40px;
  }
}
.m-mSingle__hd__intro__post {
  font-family: 'BIZ UDGothic', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8666666667;
  color: #09102c;
}
@media print, (min-width: 768px) {
  .m-mSingle__hd__intro__post {
    font-size: 18px;
    line-height: 1;
    margin-bottom: 15px;
  }
}
.m-mSingle__hd__intro__name {
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
  font-size: 22px;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 6px;
  color: #09102c;
}
@media print, (min-width: 768px) {
  .m-mSingle__hd__intro__name {
    font-size: 32px;
    margin-bottom: 30px;
  }
}
.m-mSingle__hd__memNav {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .m-mSingle__hd__memNav {
    position: absolute;
    top: 25px;
  }
}
@media print, (min-width: 768px) {
  .m-mSingle__hd__memNav {
    padding: 0 70px;
    height: 1px;
  }
}
.m-mSingle__hd__nav {
  position: relative;
}
@media print, (min-width: 768px) {
  .m-mSingle__hd__nav {
    position: absolute;
    right: 70px;
    top: calc(100% + 15px);
  }
}
.m-mSingle__hd__bg {
  position: absolute;
  mix-blend-mode: overlay;
  opacity: .8;
  top: 0;
  left: -7px;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .m-mSingle__hd__bg {
    top: 25px;
  }
}
.m-mSingle__hd__bg img {
  width: 387px;
}
@media print, (min-width: 768px) {
  .m-mSingle__hd__bg img {
    width: 1436px;
  }
}
.m-mSingle__bd {
  position: relative;
  margin-bottom: 80px;
}
@media print, (min-width: 768px) {
  .m-mSingle__bd {
    margin-top: -40px;
    margin-bottom: 160px;
  }
}
.m-mSingle__btm {
  position: relative;
  padding: 25px 20px 60px;
}
@media print, (min-width: 768px) {
  .m-mSingle__btm {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 70px;
  }
}
.m-mSingle__btm__ttl {
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
  font-size: 26px;
  line-height: 1.3333333333;
  font-weight: bold;
  margin-bottom: 30px;
  color: #09102c;
}
@media print, (min-width: 768px) {
  .m-mSingle__btm__ttl {
    font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
    line-height: 1.1470588235;
    margin-bottom: 55px;
    font-size: 36px;
  }
}
.m-mSingle__btm__ul {
  display: flex;
  justify-content: center;
  font-family: 'BIZ UDGothic', sans-serif;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .m-mSingle__btm__ul {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media print, (min-width: 768px) {
  .m-mSingle__btm__ul {
    gap: 60px;
  }
}
.m-mSingle__btm__ul > li {
  width: 100%;
}
@media print, (min-width: 768px) {
  .m-mSingle__btm__ul > li {
    width: calc(50% - 30px);
    position: relative;
  }
  .m-mSingle__btm__ul > li > a:hover .m-mSingle__btm__ul__aw__thum img {
    transform: scale(1.1);
  }
  .m-mSingle__btm__ul > li > a:hover .c-btn__in {
    background-color: #00a0e9 !important;
  }
  .m-mSingle__btm__ul > li > a:hover .c-btn__in::before {
    width: 36px;
    height: 36px;
    opacity: 1;
  }
  .m-mSingle__btm__ul > li > a:hover .c-btn__in.icon-window::after,
  .m-mSingle__btm__ul > li > a:hover .c-btn__in.icon-arrow::after {
    right: 16px;
    background-color: #00a0e9;
    background-blend-mode: multiply;
  }
}
@media print, (min-width: 768px) {
  .m-mSingle__btm__ul__aw {
    height: 100%;
  }
}
.m-mSingle__btm__ul__aw__thum {
  margin-bottom: 15px;
  overflow: hidden;
}
@media print, (min-width: 768px) {
  .m-mSingle__btm__ul__aw__thum {
    margin-bottom: 20px;
  }
}
.m-mSingle__btm__ul__aw__thum img {
  width: 100%;
  height: 61.33333333vw;
  object-fit: cover;
  transition: .3s cubic-bezier(.215, .61, .355, 1);
}
@media print, (min-width: 768px) {
  .m-mSingle__btm__ul__aw__thum img {
    width: 100%;
    height: 425px;
  }
}
.m-mSingle__btm__ul__aw__txt__ttl {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 5px;
  color: #09102c;
}
@media print, (min-width: 768px) {
  .m-mSingle__btm__ul__aw__txt__ttl {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .m-mSingle__btm__ul__aw__txt__ttl .is-arrow {
    position: relative;
    display: inline-block;
    content: '';
    top: 2px;
    right: -8px;
    width: 15px;
    height: 15px;
            mask-image: url('/images/icon_arrow01.webp');
    -webkit-mask-image: url('/images/icon_arrow01.webp');
            mask-position: center;
    -webkit-mask-position: center;
            mask-size: contain;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    background-color: #09102c;
    transition: .3s cubic-bezier(.215, .61, .355, 1);
  }
  .m-mSingle__btm__ul__aw__txt__ttl .is-window {
    position: relative;
    display: inline-block;
    content: '';
    top: 2px;
    right: -8px;
    width: 15px;
    height: 15px;
            mask-image: url('/images/icon_window01.webp');
    -webkit-mask-image: url('/images/icon_window01.webp');
            mask-position: center;
    -webkit-mask-position: center;
            mask-size: contain;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    background-color: #09102c;
    transition: .3s cubic-bezier(.215, .61, .355, 1);
  }
}
.m-mSingle__btm__ul__aw__txt__lead {
  font-size: 15px;
  padding-bottom: 15px;
  color: #424242;
}
@media print, (min-width: 768px) {
  .m-mSingle__btm__ul__aw__txt__lead {
    font-size: 16px;
    line-height: 1.75;
    padding-bottom: 66px;
  }
}
.m-mSingle__btm__ul__aw__btn {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .m-mSingle__btm__ul__aw__btn {
    display: none;
  }
}
.m-mSingle__btm__ul__aw__btn .c-btn__in {
  padding-left: 30px;
}
.m-mSingle__btm__btn {
  padding: 0 0 80px;
}
@media print, (min-width: 768px) {
  .m-mSingle__btm__btn {
    width: 300px;
    margin: 0 auto;
    padding-bottom: 200px;
  }
}
.m-mSingle__btm__btn .c-btn__in {
  padding: 20px;
  background: none;
  border: 1px solid #09102c;
  color: #fff;
  background: #09102c;
}
@media screen and (max-width: 767px) {
  .m-mSingle__btm__btn .c-btn__in {
    text-align: center;
  }
}
@media print, (min-width: 768px) {
  .m-mSingle__btm__btn .c-btn__in {
    padding: 19px 0 19px 81px;
  }
}
.m-mSingle__btm__btn .c-btn__in > span {
  font-family: 'Inter', sans-serif;
}
.m-mSingle__btm__btn .c-btn__in::before {
  left: 35px;
  right: auto;
  transform: translate(-50%, -50%);
}
.m-mSingle__btm__btn .c-btn__in.icon-arrow::after {
  right: auto;
  left: 40px;
  rotate: 180deg;
  transform-origin: top;
}
@media print, (min-width: 768px) {
  .m-mSingle__btm__btn .c-btn__in:hover {
    color: #fff;
    border: 1px solid #00a0e9;
    background-color: #00a0e9;
  }
  .m-mSingle__btm__btn .c-btn__in:hover.icon-arrow::after {
    background-color: #00a0e9;
    left: 27px;
  }
}

.m-mem {
  background: #f1fbff;
}
.m-mem__hd {
  position: relative;
  overflow: hidden;
}
.m-mem__hd__in {
  position: relative;
  padding: 25px 20px 41px;
}
@media print, (min-width: 768px) {
  .m-mem__hd__in {
    max-width: 1300px;
    margin: 0 auto;
    padding: 109px 70px 116px;
  }
}
.m-mem__hd__ttlArea {
  color: #09102c;
}
@media screen and (max-width: 767px) {
  .m-mem__hd__ttlArea {
    margin-top: 42px;
  }
}
@media print, (min-width: 768px) {
  .m-mem__hd__ttlArea {
    display: flex;
    gap: 100px;
  }
}
.m-mem__hd__ttl {
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}
@media print, (min-width: 768px) {
  .m-mem__hd__ttl {
    font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 68px;
    line-height: 1.1470588235;
  }
}
.m-mem__hd__lead {
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .m-mem__hd__lead {
    margin-top: 40px;
  }
}
@media print, (min-width: 768px) {
  .m-mem__hd__lead {
    font-size: 24px;
    display: flex;
    align-items: center;
  }
}
@media print, (min-width: 768px) {
  .m-mem__hd__nav {
    position: absolute;
    right: 70px;
    bottom: 36px;
  }
}
.m-mem__hd__bg {
  position: absolute;
  mix-blend-mode: overlay;
  opacity: .8;
  top: 0;
  left: -7px;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .m-mem__hd__bg {
    top: 50px;
  }
}
.m-mem__hd__bg img {
  width: 387px;
}
@media print, (min-width: 768px) {
  .m-mem__hd__bg img {
    width: 1436px;
  }
}
.m-mem__bd {
  position: relative;
}
.m-mem__bd__ul {
  overflow: hidden;
  transition: 2.5s cubic-bezier(.215, .61, .355, 1);
}
.m-mem__bd__item {
  padding-bottom: 40px;
  margin-bottom: 1px;
}
@media print, (min-width: 768px) {
  .m-mem__bd__item {
    padding-bottom: 60px;
  }
}
.m-mem__bd__item__in {
  position: relative;
}
@media print, (min-width: 768px) {
  .m-mem__bd__item__in {
    height: 40.625vw;
    min-height: 650px;
    display: flex;
    align-items: center;
  }
}
.m-mem__bd__item__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% - 20px);
}
@media print, (min-width: 768px) {
  .m-mem__bd__item__bg {
    min-height: 650px;
    width: clamp(1200px, 75vw, 100vw);
  }
  .m-mem__bd__item__bg::before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 600px;
    content: '';
    opacity: .7;
    background: linear-gradient(266deg, rgba(255, 255, 255, 0) 6.89%, #fff 100%);
  }
}
.m-mem__bd__item__bg img {
  width: 100%;
  height: 112vw;
  object-fit: cover;
}
@media print, (min-width: 768px) {
  .m-mem__bd__item__bg img {
    min-height: 650px;
    height: 40.625vw;
  }
}
.m-mem__bd__item__intro {
  position: relative;
}
@media screen and (max-width: 767px) {
  .m-mem__bd__item__intro {
    padding-top: 105.333333333%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media print, (min-width: 768px) {
  .m-mem__bd__item__intro {
    width: 100%;
    margin: 0 auto;
    padding-left: clamp(120px, 9.375vw, 100vw);
  }
}
.m-mem__bd__item__intro__theme {
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: bold;
  margin-bottom: 22px;
}
@media print, (min-width: 768px) {
  .m-mem__bd__item__intro__theme {
    gap: 10px;
    margin-bottom: 67px;
  }
}
.m-mem__bd__item__intro__theme::before {
  position: absolute;
  top: 50%;
  left: -20px;
  width: 305px;
  height: 130%;
  transform: translateY(-50%);
  content: '';
  background: linear-gradient(90deg, #09102c 0%, #09102c 50%, #313f75 100%);
  z-index: -1;
}
@media print, (min-width: 768px) {
  .m-mem__bd__item__intro__theme::before {
    left: min(-9.375vw, -120px);
    padding-right: 275px;
    padding-left: clamp(120px, 9.375vw, 100vw);
    width: 295px;
    height: 100px;
  }
}
.m-mem__bd__item__intro__theme__ttl {
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.125;
  flex-shrink: 0;
}
@media print, (min-width: 768px) {
  .m-mem__bd__item__intro__theme__ttl {
    font-size: 26px;
  }
}
.m-mem__bd__item__intro__theme__name {
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
  font-size: 26px;
}
@media screen and (max-width: 767px) {
  .m-mem__bd__item__intro__theme__name {
    max-width: 210px;
  }
}
@media print, (min-width: 768px) {
  .m-mem__bd__item__intro__theme__name {
    font-size: 46px;
  }
}
.m-mem__bd__item__intro__lead {
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
  font-size: 22px;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 10px;
  color: #09102c;
}
@media print, (min-width: 768px) {
  .m-mem__bd__item__intro__lead {
    font-size: 36px;
    max-width: 755px;
    margin-bottom: 30px;
  }
}
.m-mem__bd__item__intro__post {
  font-family: 'BIZ UDGothic', sans-serif;
  color: #09102c;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8666666667;
}
@media print, (min-width: 768px) {
  .m-mem__bd__item__intro__post {
    font-size: 18px;
    line-height: 1;
    margin-bottom: 15px;
  }
}
.m-mem__bd__item__intro__name {
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
  font-size: 22px;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 6px;
  color: #09102c;
}
@media print, (min-width: 768px) {
  .m-mem__bd__item__intro__name {
    font-size: 32px;
    margin-bottom: 30px;
  }
}
.m-mem__bd__item__intro__btn {
  width: 130px;
}
@media screen and (max-width: 767px) {
  .m-mem__bd__item__intro__btn {
    margin: 0 auto;
  }
}
.m-mem__bd__item__intro__btn > .c-btn__in {
  padding-left: 30px;
}
@media print, (min-width: 768px) {
  .m-mem__bd__item > a:hover .c-btn__in {
    background-color: #00a0e9 !important;
  }
  .m-mem__bd__item > a:hover .c-btn__in::before {
    width: 36px;
    height: 36px;
    opacity: 1;
  }
  .m-mem__bd__item > a:hover .c-btn__in.icon-window::after,
  .m-mem__bd__item > a:hover .c-btn__in.icon-arrow::after {
    right: 16px;
    background-color: #00a0e9;
    background-blend-mode: multiply;
  }
}
.m-mem__more {
  padding: 0 20px 80px;
}
@media print, (min-width: 768px) {
  .m-mem__more {
    padding: 0 0 120px;
  }
}
@media print, (min-width: 768px) {
  .m-mem__more__btn {
    width: 300px;
    margin: 0 auto;
  }
}
.m-mem__more__btn .c-btn__in {
  padding: 20px;
  background: none;
  border: 1px solid #09102c;
  color: #09102c;
}
@media screen and (max-width: 767px) {
  .m-mem__more__btn .c-btn__in {
    text-align: center;
  }
}
@media print, (min-width: 768px) {
  .m-mem__more__btn .c-btn__in {
    padding: 19px 0 19px 100px;
  }
}
.m-mem__more__btn .c-btn__in.icon-x::after {
  background-color: #09102c;
}
@media print, (min-width: 768px) {
  .m-mem__more__btn .c-btn__in:hover {
    color: #fff;
    border: 1px solid #00a0e9;
  }
  .m-mem__more__btn .c-btn__in:hover.icon-x::after {
    background-color: #00a0e9;
  }
}
.m-mem__more__btn.is-hidden {
  display: none;
}

.m-pol {
  background: #f1fbff;
}
.m-pol__in {
  position: relative;
}
@media print, (min-width: 768px) {
  .m-pol__in {
    padding-bottom: 200px;
  }
}
@media screen and (max-width: 767px) {
  .m-pol__in {
    padding-bottom: 60px;
  }
}
.m-pol__hd {
  position: relative;
  overflow: hidden;
}
.m-pol__hd__in {
  position: relative;
  padding: 25px 20px 67px;
}
@media print, (min-width: 768px) {
  .m-pol__hd__in {
    max-width: 1300px;
    margin: 0 auto;
    padding: 109px 70px 116px;
  }
}
@media screen and (max-width: 767px) {
  .m-pol__hd__ttlArea {
    margin-top: 42px;
  }
}
@media print, (min-width: 768px) {
  .m-pol__hd__ttlArea {
    gap: 40px;
  }
}
.m-pol__hd__ttl {
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  color: #09102c;
}
@media screen and (max-width: 767px) {
  .m-pol__hd__ttl {
    letter-spacing: -.02em;
    line-height: 1.3;
  }
}
@media print, (min-width: 768px) {
  .m-pol__hd__ttl {
    font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 68px;
    line-height: 1.1470588235;
  }
}
@media print, (min-width: 768px) {
  .m-pol__hd__nav {
    position: absolute;
    right: 70px;
    bottom: 36px;
  }
}
.m-pol__hd__bg {
  position: absolute;
  mix-blend-mode: overlay;
  opacity: .8;
  top: 0;
  left: -7px;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .m-pol__hd__bg {
    top: 50px;
  }
}
.m-pol__hd__bg.is-01 img {
  width: 495px;
}
@media print, (min-width: 768px) {
  .m-pol__hd__bg.is-01 img {
    width: 1836px;
  }
}
.m-pol__hd__bg.is-02 img {
  width: 341px;
}
@media print, (min-width: 768px) {
  .m-pol__hd__bg.is-02 img {
    width: 1264px;
  }
}
.m-pol__hd__bg.is-03 img {
  width: 495px;
}
@media print, (min-width: 768px) {
  .m-pol__hd__bg.is-03 img {
    width: 1836px;
  }
}
.m-pol__bd {
  position: relative;
  padding: 0 70px;
}
@media screen and (max-width: 767px) {
  .m-pol__bd {
    padding: 0 20px;
  }
}
.m-pol__bd__in {
  margin-bottom: 30px;
}
@media print, (min-width: 768px) {
  .m-pol__bd__in {
    max-width: 1300px;
    margin: 0 auto;
  }
}
.m-pol__bd__ttl {
  position: relative;
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
  color: #09102c;
  margin-top: 70px;
}
@media print, (min-width: 768px) {
  .m-pol__bd__ttl {
    font-size: 36px;
    line-height: 1;
    margin-bottom: 60px;
    margin-top: 140px;
  }
}
@media print, (min-width: 768px) {
  .m-pol__bd__ttl:first-child {
    margin-top: 100px;
  }
}
@media screen and (max-width: 767px) {
  .m-pol__bd__ttl:first-child {
    margin-top: 0;
  }
}
.m-pol__bd__ttl-s {
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #09102c;
  margin-top: 30px;
}
@media print, (min-width: 768px) {
  .m-pol__bd__ttl-s {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 40px;
    margin-top: 60px;
  }
}
.m-pol__bd__txt {
  font-family: 'BIZ UDGothic', sans-serif;
  color: #424242;
  font-size: 15px;
  line-height: 2;
}
@media print, (min-width: 768px) {
  .m-pol__bd__txt {
    font-size: 18px;
    line-height: 1.89;
  }
}
.m-pol__bd__txt + p {
  margin-top: 20px;
}
@media print, (min-width: 768px) {
  .m-pol__bd__txt + p {
    margin-top: 1.8888888889em;
  }
}
.m-pol__bd__txt > span.is-box {
  display: block;
  margin-left: 15px;
}
@media print, (min-width: 768px) {
  .m-pol__bd__txt > span.is-box {
    margin-left: 17px;
    margin-top: 5px;
  }
}
.m-pol__bd__txt > span.is-sml {
  font-size: 13px;
}
@media print, (min-width: 768px) {
  .m-pol__bd__txt > span.is-sml {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .m-pol__bd__txt > span.is-sml {
    line-height: 1.5;
    display: inline-block;
  }
}
.m-pol__bd__txt > a {
  border-bottom: 1px solid #424242;
}
.m-pol__bd__txt > sup.is-sml-kome {
  display: inline-block;
  position: relative;
  margin-right: 5px;
  font-size: 12px;
  top: -5px;
}
.m-pol__bd__txt-sml {
  font-family: 'BIZ UDGothic', sans-serif;
  color: #424242;
  font-size: 15px;
  line-height: 2;
}
@media print, (min-width: 768px) {
  .m-pol__bd__txt-sml {
    font-size: 18px;
    line-height: 1.89;
  }
}
.m-pol__bd__txt-sml.is-01 {
  text-align: center;
  margin-top: 30px;
}
@media print, (min-width: 768px) {
  .m-pol__bd__txt-sml.is-01 {
    margin-bottom: 5px;
    margin-top: 60px;
  }
}
.m-pol__bd__txt-sml.is-02 {
  text-align: right;
  margin-top: 0;
}
@media print, (min-width: 768px) {
  .m-pol__bd__txt-sml.is-02 {
    margin-top: 5px;
  }
}
@media print, (min-width: 768px) {
  .m-pol__bd__ul {
    margin-bottom: 20px;
  }
}
.m-pol__bd__ul > li {
  position: relative;
  font-family: 'BIZ UDGothic', sans-serif;
  color: #424242;
  font-size: 15px;
  line-height: 2;
  margin-left: 19px;
}
@media print, (min-width: 768px) {
  .m-pol__bd__ul > li {
    font-size: 18px;
    line-height: 1.89;
    margin-left: 22px;
  }
}
.m-pol__bd__ul > li::before {
  content: '';
  position: absolute;
  left: -18px;
  top: 11px;
  color: #09102c;
  border-radius: 50%;
  background-color: #09102c;
  width: 8px;
  height: 8px;
}
@media print, (min-width: 768px) {
  .m-pol__bd__ul > li::before {
    top: 13px;
    left: -20px;
    font-size: 24px;
    line-height: 1;
  }
}
.m-pol .is-mt100 {
  margin-top: 0;
}
@media print, (min-width: 768px) {
  .m-pol .is-mt100 {
    margin-top: 100px;
  }
}

.m-sa {
  background: #f1fbff;
}
.m-sa__in {
  position: relative;
}
@media print, (min-width: 768px) {
  .m-sa__in {
    padding-bottom: 140px;
  }
}
@media screen and (max-width: 767px) {
  .m-sa__in {
    padding-bottom: 60px;
  }
}
.m-sa__hd {
  position: relative;
  overflow: hidden;
}
.m-sa__hd__in {
  position: relative;
  padding: 25px 20px 67px;
}
@media print, (min-width: 768px) {
  .m-sa__hd__in {
    max-width: 1300px;
    margin: 0 auto;
    padding: 109px 70px 116px;
  }
}
@media screen and (max-width: 767px) {
  .m-sa__hd__ttlArea {
    margin-top: 42px;
  }
}
@media print, (min-width: 768px) {
  .m-sa__hd__ttlArea {
    gap: 100px;
    display: flex;
  }
}
.m-sa__hd__ttl {
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  color: #09102c;
}
@media print, (min-width: 768px) {
  .m-sa__hd__ttl {
    font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 68px;
    line-height: 1.1470588235;
  }
}
@media print, (min-width: 768px) {
  .m-sa__hd__nav {
    position: absolute;
    right: 70px;
    bottom: 36px;
  }
}
.m-sa__hd__bg {
  position: absolute;
  mix-blend-mode: overlay;
  opacity: .8;
  top: 0;
  left: -7px;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .m-sa__hd__bg {
    top: 50px;
  }
}
.m-sa__hd__bg img {
  width: 453px;
}
@media print, (min-width: 768px) {
  .m-sa__hd__bg img {
    width: 1680px;
  }
}
.m-sa__kv {
  position: relative;
}
.m-sa__kv__mv {
  overflow: hidden;
  height: 260px;
}
@media print, (min-width: 768px) {
  .m-sa__kv__mv {
    height: 640px;
  }
}
.m-sa__kv__mv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .m-sa__kv__mv img {
    height: 260px;
  }
}
.m-sa__bd {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  margin-top: 30px;
  padding: 0 20px;
}
@media print, (min-width: 768px) {
  .m-sa__bd {
    padding: 0 70px;
    margin-bottom: 60px;
    margin-top: 120px;
  }
}
.m-sa__bd__ttl {
  position: relative;
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
  color: #09102c;
  margin-top: 70px;
}
@media print, (min-width: 768px) {
  .m-sa__bd__ttl {
    font-size: 36px;
    line-height: 1;
    margin-bottom: 60px;
    margin-top: 140px;
  }
}
.m-sa__bd__ttl:first-child {
  margin-top: 30px;
}
.m-sa__bd__ttl-s {
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #09102c;
  margin-top: 30px;
}
@media print, (min-width: 768px) {
  .m-sa__bd__ttl-s {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 40px;
    margin-top: 60px;
  }
}
.m-sa__bd__txt {
  font-family: 'BIZ UDGothic', sans-serif;
  color: #424242;
  font-size: 15px;
  line-height: 2;
}
@media print, (min-width: 768px) {
  .m-sa__bd__txt {
    font-size: 18px;
    line-height: 1.89;
  }
}
.m-sa__bd__txt + p {
  margin-top: 20px;
}
@media print, (min-width: 768px) {
  .m-sa__bd__txt + p {
    margin-top: 1.8888888889em;
  }
}
.m-sa__bd__txt.is-bold {
  font-weight: 700;
}
.m-sa__bd__txt + .m-sa__bd__prof {
  margin-top: 30px;
}
@media print, (min-width: 768px) {
  .m-sa__bd__txt + .m-sa__bd__prof {
    margin-top: 60px;
  }
}
.m-sa__bd__2col {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .m-sa__bd__2col {
    flex-direction: column;
  }
}
@media print, (min-width: 768px) {
  .m-sa__bd__2col {
    gap: 60px;
  }
}
.m-sa__bd__2col__img {
  width: 100%;
  flex-shrink: 0;
}
@media print, (min-width: 768px) {
  .m-sa__bd__2col__img {
    max-width: 520px;
  }
}
.m-sa__bd__2col__img img {
  width: 100%;
}
.m-sa__bd__2col__img > .is-cap {
  font-size: 13px;
  line-height: 1.5;
  color: #09102c;
  margin-top: 15px;
}
@media print, (min-width: 768px) {
  .m-sa__bd__2col__img > .is-cap {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 20px;
  }
}
.m-sa__bd__2col h4 {
  font-size: 16px;
  font-weight: 700;
  font-family: 'BIZ UDGothic', sans-serif;
  line-height: 1.875;
  margin-top: 20px;
  color: #424242;
  margin-bottom: 10px;
}
@media print, (min-width: 768px) {
  .m-sa__bd__2col h4 {
    font-size: 20px;
    line-height: 1.7;
    margin-top: 40px;
    margin-bottom: 20px;
  }
}
@media print, (min-width: 768px) {
  .m-sa__bd__2col.is-reverse {
    flex-direction: row-reverse;
  }
}
.m-sa__bd__prof {
  margin-bottom: 20px;
}
.m-sa__bd__prof__in {
  padding: 20px;
  background: #e5eff4;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .m-sa__bd__prof__in {
    flex-direction: column;
  }
}
@media print, (min-width: 768px) {
  .m-sa__bd__prof__in {
    padding: 60px;
    gap: 60px;
    flex-direction: row-reverse;
    justify-content: left;
  }
}
.m-sa__bd__prof__img {
  width: 100%;
  flex-shrink: 0;
}
@media print, (min-width: 768px) {
  .m-sa__bd__prof__img {
    max-width: 300px;
  }
}
.m-sa__bd__prof__img img {
  width: 100%;
}
.m-sa__bd__prof__top {
  display: flex;
}
@media screen and (max-width: 767px) {
  .m-sa__bd__prof__top {
    flex-direction: column;
    margin-bottom: 20px;
  }
}
@media print, (min-width: 768px) {
  .m-sa__bd__prof__top {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .m-sa__bd__prof__top {
    margin-bottom: 24px;
  }
}
@media print, (min-width: 768px) {
  .m-sa__bd__prof__top {
    margin-right: 40px;
    flex-shrink: 0;
  }
}
.m-sa__bd__prof__top__ttl {
  font-family: 'BIZ UDGothic', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: #09102c;
  margin-bottom: 15px;
}
@media print, (min-width: 768px) {
  .m-sa__bd__prof__top__ttl {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.m-sa__bd__prof__name__ttl {
  font-family: 'BIZ UDGothic', sans-serif;
  font-weight: 700;
  line-height: 1;
  color: #09102c;
  font-size: 16px;
  margin-bottom: 15px;
}
@media print, (min-width: 768px) {
  .m-sa__bd__prof__name__ttl {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.m-sa__bd__prof__ttl-s {
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  color: #09102c;
}
@media screen and (max-width: 767px) {
  .m-sa__bd__prof__ttl-s {
    margin-bottom: 20px;
  }
}
@media print, (min-width: 768px) {
  .m-sa__bd__prof__ttl-s {
    font-size: 28px;
    line-height: 1;
    padding-right: 120px;
  }
}
.m-sa__bd__prof__ttl-s > span {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  padding-left: 15px;
}
@media print, (min-width: 768px) {
  .m-sa__bd__prof__ttl-s > span {
    font-size: 18px;
    line-height: 1;
  }
}
@media print, (min-width: 768px) {
  .m-sa__bd__prof__detail {
    border-left: 1px solid #ced8e1;
    padding-left: 40px;
  }
  .m-sa__bd__prof__detail.is-fl {
    display: flex;
    gap: 96px;
  }
}
@media screen and (max-width: 767px) {
  .m-sa__bd__prof__detail.is-fl > div:first-child {
    margin-bottom: 10px;
  }
}
.m-sa__bd__prof__txt {
  font-family: 'BIZ UDGothic', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #424242;
}
@media print, (min-width: 768px) {
  .m-sa__bd__prof__txt {
    font-size: 18px;
    line-height: 1.89;
  }
}
.m-sa__bd__prof__txt.is-bold {
  font-weight: 700;
  color: #09102c;
}
@media screen and (max-width: 767px) {
  .m-sa__bd__prof__txt.is-bold {
    margin-bottom: 15px;
    font-size: 16px;
  }
}
@media print, (min-width: 768px) {
  .m-sa__bd__prof__txt.is-bold {
    margin-bottom: 20px;
    line-height: 1;
  }
}
.m-sa__bd__prof__txt.is-indent {
  padding-left: 4em;
  text-indent: -4em;
}
@media print, (min-width: 768px) {
  .m-sa__bd__prof__btm .is-fl {
    display: flex;
    gap: 193px;
  }
}
.m-sa__bd__prof__btm .m-sa__bd__prof__txt {
  display: flex;
}
@media screen and (max-width: 767px) {
  .m-sa__bd__prof__btm .m-sa__bd__prof__txt > span {
    display: block;
    flex-shrink: 0;
  }
}
.m-sa__bd__ul {
  margin-bottom: 15px;
}
@media print, (min-width: 768px) {
  .m-sa__bd__ul {
    margin-bottom: 20px;
  }
}
.m-sa__bd__ul > li {
  position: relative;
  font-family: 'BIZ UDGothic', sans-serif;
  color: #424242;
  font-size: 15px;
  line-height: 2;
  margin-left: 19px;
}
@media print, (min-width: 768px) {
  .m-sa__bd__ul > li {
    font-size: 18px;
    line-height: 1.89;
    margin-left: 22px;
  }
}
.m-sa__bd__ul > li::before {
  content: '';
  position: absolute;
  left: -18px;
  top: 11px;
  color: #09102c;
  border-radius: 50%;
  background-color: #09102c;
  width: 8px;
  height: 8px;
}
@media print, (min-width: 768px) {
  .m-sa__bd__ul > li::before {
    top: 13px;
    left: -20px;
    font-size: 24px;
    line-height: 1;
  }
}

.m-svs {
  background: #f1fbff;
}
.m-svs__in {
  position: relative;
}
@media print, (min-width: 768px) {
  .m-svs__in {
    padding-bottom: 140px;
  }
}
@media screen and (max-width: 767px) {
  .m-svs__in {
    padding-bottom: 60px;
  }
}
.m-svs__hd {
  position: relative;
  overflow: hidden;
}
.m-svs__hd__in {
  position: relative;
  padding: 25px 20px 67px;
}
@media print, (min-width: 768px) {
  .m-svs__hd__in {
    max-width: 1300px;
    margin: 0 auto;
    padding: 109px 70px 116px;
  }
}
@media screen and (max-width: 767px) {
  .m-svs__hd__ttlArea {
    margin-top: 42px;
  }
}
@media print, (min-width: 768px) {
  .m-svs__hd__ttlArea {
    gap: 40px;
  }
}
.m-svs__hd__ttl {
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  color: #09102c;
}
@media print, (min-width: 768px) {
  .m-svs__hd__ttl {
    font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 68px;
    line-height: 1.1470588235;
  }
}
@media print, (min-width: 768px) {
  .m-svs__hd__nav {
    position: absolute;
    right: 70px;
    bottom: 36px;
  }
}
.m-svs__hd__bg {
  position: absolute;
  mix-blend-mode: overlay;
  opacity: .8;
  top: 0;
  left: -7px;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .m-svs__hd__bg {
    top: 50px;
  }
}
.m-svs__hd__bg img {
  width: 285px;
}
@media print, (min-width: 768px) {
  .m-svs__hd__bg img {
    width: 1056px;
  }
}
.m-svs__kvs {
  position: relative;
}
.m-svs__kvs.pt01 {
  margin-bottom: 80px;
}
@media print, (min-width: 768px) {
  .m-svs__kvs.pt01 {
    margin-bottom: 140px;
  }
}
.m-svs__kvs.pt01 .m-svs__kvs__bg img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
@media print, (min-width: 768px) {
  .m-svs__kvs.pt01 .m-svs__kvs__bg img {
    position: absolute;
    top: 0;
    left: 0;
    height: 640px;
  }
}
@media print, (min-width: 768px) {
  .m-svs__kvs.pt01 .m-svs__kvs__bg::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    opacity: .7;
    background: linear-gradient(180deg, rgba(9, 16, 44, 0) 20%, #09102c 100%);
    z-index: 2;
  }
}
@media screen and (max-width: 767px) {
  .m-svs__kvs.pt01 .m-svs__kvs__in {
    padding: 30px 20px 0;
  }
}
@media print, (min-width: 768px) {
  .m-svs__kvs.pt01 .m-svs__kvs__in {
    max-width: 1300px;
    height: 640px;
    margin: 0 auto;
    padding: 0 70px;
  }
}
.m-svs__kvs.pt01 .m-svs__kvs__txt {
  position: relative;
}
@media print, (min-width: 768px) {
  .m-svs__kvs.pt01 .m-svs__kvs__txt {
    color: #fff;
  }
}
@media print, (min-width: 768px) {
  .m-svs__kvs.pt01 .m-svs__kvs__txt {
    position: absolute;
    bottom: 60px;
  }
}
.m-svs__kvs.pt01 .m-svs__kvs__ttl {
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
  font-size: 30px;
  line-height: 1.3;
  margin-bottom: 30px;
  font-weight: bold;
}
@media print, (min-width: 768px) {
  .m-svs__kvs.pt01 .m-svs__kvs__ttl {
    font-size: 46px;
    line-height: 1;
    margin-bottom: 60px;
  }
}
.m-svs__kvs.pt01 .m-svs__kvs__lead {
  font-family: 'BIZ UDGothic', sans-serif;
  font-size: 15px;
  line-height: 1.85;
}
@media print, (min-width: 768px) {
  .m-svs__kvs.pt01 .m-svs__kvs__lead {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .m-svs__kvs.pt01 .m-svs__kvs__lead {
    color: #424242;
  }
}
.m-svs__kvs.pt02 {
  background: #e7f0f3;
  margin-bottom: 30px;
}
@media print, (min-width: 768px) {
  .m-svs__kvs.pt02 {
    margin-bottom: 60px;
  }
  .m-svs__kvs.pt02 .is-bg01,
  .m-svs__kvs.pt02 .is-bg02,
  .m-svs__kvs.pt02 .is-bg03,
  .m-svs__kvs.pt02 .is-bg04,
  .m-svs__kvs.pt02 .is-bg05 {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .m-svs__kvs.pt02 .is-bg01 {
    background-image: url('/images/bg_svs01.webp');
  }
  .m-svs__kvs.pt02 .is-bg02 {
    background-image: url('/images/bg_svs02.webp');
  }
  .m-svs__kvs.pt02 .is-bg03 {
    background-image: url('/images/bg_svs03.webp');
  }
  .m-svs__kvs.pt02 .is-bg04 {
    background-image: url('/images/bg_svs04.webp');
  }
  .m-svs__kvs.pt02 .is-bg05 {
    background-image: url('/images/bg_svs05.webp');
  }
}
@media screen and (max-width: 767px) {
  .m-svs__kvs.pt02 .m-svs__kvs__bg img {
    width: 100%;
    height: auto;
  }
}
.m-svs__kvs.pt02 .m-svs__kvs__in {
  padding: 0 20px;
}
@media print, (min-width: 768px) {
  .m-svs__kvs.pt02 .m-svs__kvs__in {
    padding: 0 70px;
  }
}
.m-svs__kvs.pt02 .m-svs__kvs__mv {
  margin: 0 auto;
  padding: 20px 0;
}
@media print, (min-width: 768px) {
  .m-svs__kvs.pt02 .m-svs__kvs__mv {
    position: relative;
    max-width: 1061px;
    margin: 0 auto;
    padding: 60px 0;
  }
}
.m-svs__kvs.pt02 .m-svs__kvs__mv img {
  width: 100%;
}
.m-svs.is-sbpg .m-svs__hd__ttlSub {
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1;
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
}
@media print, (min-width: 768px) {
  .m-svs.is-sbpg .m-svs__hd__ttlSub {
    line-height: 1.35;
    font-size: 28px;
    margin-bottom: 10px;
  }
}
.m-svs.is-sbpg .m-svs__hd__ttl {
  font-size: 30px;
}
@media print, (min-width: 768px) {
  .m-svs.is-sbpg .m-svs__hd__ttl {
    font-size: 52px;
  }
}
@media print, (min-width: 768px) {
  .m-svs.is-sbpg .m-svs__in {
    padding-bottom: 200px;
  }
}

.m-mtf b {
  font-weight: 700;
}
.m-mtf__in {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  font-family: 'BIZ UDGothic', sans-serif;
}
@media print, (min-width: 768px) {
  .m-mtf__in {
    padding: 0 70px;
  }
}
.m-mtf__tt {
  position: relative;
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.38;
  margin: 80px auto 30px;
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
  color: #09102c;
}
@media print, (min-width: 768px) {
  .m-mtf__tt {
    font-size: 36px;
    line-height: 1;
    margin: 160px auto 60px;
  }
}
.m-mtf__h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin: 30px auto 20px;
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
  color: #09102c;
}
@media print, (min-width: 768px) {
  .m-mtf__h3 {
    margin: 60px auto 40px;
    font-size: 24px;
  }
}
.m-mtf__t {
  font-size: 15px;
  line-height: 1.8666666667;
  color: #424242;
}
@media print, (min-width: 768px) {
  .m-mtf__t {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.m-mtf__t p + p {
  margin-top: 1.8666666667em;
}
.m-mtf__col {
  margin: 30px auto;
}
@media print, (min-width: 768px) {
  .m-mtf__col {
    margin: 60px auto;
    display: flex;
    column-gap: 60px;
  }
}
.m-mtf__col.is-left {
  flex-direction: row-reverse;
}
.m-mtf__col .m-mtf__img {
  margin: 0;
}
@media print, (min-width: 768px) {
  .m-mtf__col .m-mtf__img {
    width: 620px;
    flex-shrink: 0;
  }
}
.m-mtf__col .m-mtf__h3 {
  margin-top: 0;
}
.m-mtf__col .m-mtf__t {
  margin-bottom: 30px;
}
@media print, (min-width: 768px) {
  .m-mtf__col .m-mtf__t {
    margin-bottom: 0;
  }
}
.m-mtf__yblock {
  background: rgba(255, 248, 212, .5);
  padding: 30px 0;
  margin: 30px auto;
  color: #424242;
}
@media print, (min-width: 768px) {
  .m-mtf__yblock {
    padding: 40px 0;
    margin: 60px auto;
  }
}
.m-mtf__yblock__tt {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 20px;
  font-weight: 700;
}
.m-mtf__yblock p {
  font-size: 15px;
  line-height: 1.86;
  padding: 0 20px;
}
@media print, (min-width: 768px) {
  .m-mtf__yblock p {
    font-size: 18px;
    line-height: 1.8888888889;
    padding: 0 40px;
  }
}
.m-mtf__t a,
.m-mtf__yblock a {
  color: #00a0e9;
  text-decoration: underline;
}
.m-mtf__t a:hover,
.m-mtf__yblock a:hover {
  opacity: .7;
  text-decoration: none;
}
.m-mtf__t strong,
.m-mtf__yblock strong {
  font-weight: 700;
  font-style: normal;
}
.m-mtf__t em,
.m-mtf__yblock em {
  background: rgba(0, 160, 233, .2);
  font-style: normal;
}
.m-mtf__img {
  margin: 30px auto;
}
@media print, (min-width: 768px) {
  .m-mtf__img {
    margin: 60px auto;
  }
}
.m-mtf__img img {
  display: block;
  width: 100%;
  height: auto;
}
.m-mtf__img figcaption {
  margin-top: 25px;
  font-size: 14px;
}
.m-mtf__img.is-l {
  width: 100%;
}
.m-mtf__img.is-m {
  max-width: 900px;
}
.m-mtf__nt {
  margin: 30px auto;
  font-size: 14px;
  line-height: 24px;
}
.m-mtf__anchor {
  width: 240px;
  border: 1px solid #09102c;
  border-radius: 100px;
}
@media screen and (max-width: 767px) {
  .m-mtf__anchor {
    width: 100%;
    margin: 0 auto 30px;
    text-align: center;
  }
}
@media print, (min-width: 768px) {
  .m-mtf__anchor {
    position: absolute;
    width: 292px;
    top: 0;
    right: 0;
    transition: .3s cubic-bezier(.215, .61, .355, 1);
  }
  .m-mtf__anchor:hover {
    background: #00a0e9;
    border-color: #00a0e9;
  }
  .m-mtf__anchor:hover .m-mtf__anchor__in__txt {
    color: #fff;
  }
  .m-mtf__anchor:hover .m-mtf__anchor__in__txt::before {
    width: 36px;
    height: 36px;
    opacity: 1;
  }
  .m-mtf__anchor:hover .m-mtf__anchor__in__txt::after {
    background-color: #00a0e9;
  }
}
.m-mtf__anchor__in__txt {
  padding: 9px 0 9px 0;
  font-family: 'BIZ UDGothic', sans-serif;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .m-mtf__anchor__in__txt {
    font-size: 15px;
    line-height: 1.86;
  }
}
@media print, (min-width: 768px) {
  .m-mtf__anchor__in__txt {
    padding: 9px 0 9px 20px;
    transition: .3s cubic-bezier(.215, .61, .355, 1);
    color: #09102c;
    font-size: 16px;
    line-height: 1.75;
  }
}
.m-mtf__anchor__in__txt::before {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  right: 0;
  top: 50%;
  border-radius: 50%;
  transform: translate(50%, -50%);
  background: #09102c;
  transition: .3s cubic-bezier(.215, .61, .355, 1);
  opacity: 0;
  background-color: #fff;
  right: 25px;
}
.m-mtf__anchor__in__txt::after {
  position: relative;
  display: inline-block;
  content: '';
  top: 2px;
  right: -8px;
  width: 15px;
  height: 15px;
          mask-image: url('/images/icon_arrow01.webp');
  -webkit-mask-image: url('/images/icon_arrow01.webp');
          mask-position: center;
  -webkit-mask-position: center;
          mask-size: contain;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #09102c;
  transition: .3s cubic-bezier(.215, .61, .355, 1);
  rotate: 90deg;
}
@media print, (min-width: 768px) {
  .m-mtf__anchor__in__txt::after {
    right: -16px;
  }
}

.is-w900 .m-mtf__tt,
.is-w900 .m-mtf__h3,
.is-w900 .m-mtf__t,
.is-w900 .m-mtf__yblock,
.is-w900 .m-mtf__nt {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}

.m-top {
  color: #424242;
}
.m-top .m-top30 {
  position: fixed;
  top: 30%;
  width: 110%;
  height: 1px;
}
.m-top .m-news {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.m-top .m-news__in {
  position: relative;
  padding: 60px 20px;
}
@media print, (min-width: 768px) {
  .m-top .m-news__in {
    max-width: 1300px;
    margin: 0 auto;
    padding: 78px 70px 70px;
    display: flex;
    justify-content: space-between;
  }
}
.m-top .m-news__ttl {
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 2;
  color: #09102c;
}
@media print, (min-width: 768px) {
  .m-top .m-news__ttl {
    font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
    font-size: 46px;
    font-weight: 700;
    line-height: 2;
  }
}
.m-top .m-news__lead {
  font-family: 'BIZ UDGothic', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 2;
  margin-bottom: 30px;
  color: #09102c;
}
@media print, (min-width: 768px) {
  .m-top .m-news__lead {
    font-size: 14px;
  }
}
.m-top .m-news__bd {
  margin-bottom: 30px;
}
@media print, (min-width: 768px) {
  .m-top .m-news__bd {
    width: 67%;
    margin-top: 22px;
  }
}
.m-top .m-news__bd__ul > li {
  position: relative;
  border-bottom: 1px solid #ddeef5;
}
.m-top .m-news__bd__ul > li:first-child {
  border-top: 1px solid #ddeef5;
}
@media print, (min-width: 768px) {
  .m-top .m-news__bd__ul > li::before {
    position: absolute;
    width: 0;
    height: 1px;
    background-color: #09102c;
    content: '';
    bottom: 0;
    left: 0;
    transition: .3s cubic-bezier(.215, .61, .355, 1);
  }
  .m-top .m-news__bd__ul > li:hover::before {
    width: 100%;
  }
  .m-top .m-news__bd__ul > li:hover .m-news__bd__ul__aw__ttl::before {
    opacity: 1;
    width: 36px;
    height: 36px;
  }
  .m-top .m-news__bd__ul > li:hover .m-news__bd__ul__aw__ttl::after {
    right: 10px;
    background-color: #fff;
  }
}
.m-top .m-news__bd__ul__aw {
  font-family: 'BIZ UDGothic', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8666666667;
}
@media print, (min-width: 768px) {
  .m-top .m-news__bd__ul__aw {
    font-family: 'BIZ UDGothic', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
  }
  .m-top .m-news__bd__ul__aw > a {
    display: flex;
    justify-content: space-between;
  }
}
.m-top .m-news__bd__ul__aw__date {
  padding-top: 24px;
}
@media screen and (max-width: 767px) {
  .m-top .m-news__bd__ul__aw__date {
    margin-bottom: 5px;
  }
}
@media print, (min-width: 768px) {
  .m-top .m-news__bd__ul__aw__date {
    width: 112px;
    flex-shrink: 0;
  }
}
.m-top .m-news__bd__ul__aw__ttl {
  position: relative;
  padding-bottom: 22px;
  color: #09102c;
}
@media print, (min-width: 768px) {
  .m-top .m-news__bd__ul__aw__ttl {
    width: calc(100% - 134px);
    padding: 24px 60px 23px 22px;
  }
  .m-top .m-news__bd__ul__aw__ttl::before {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    right: 0;
    top: 50%;
    border-radius: 50%;
    transform: translate(50%, -50%);
    background: #09102c;
    transition: .3s cubic-bezier(.215, .61, .355, 1);
    opacity: 0;
    right: 17px;
  }
  .m-top .m-news__bd__ul__aw__ttl::after {
    position: absolute;
    content: '';
    display: inline-block;
    transition: .3s cubic-bezier(.215, .61, .355, 1);
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 15px;
    height: 11px;
            mask-image: url(/images/icon_window01.webp);
    -webkit-mask-image: url(/images/icon_window01.webp);
            mask-position: center;
    -webkit-mask-position: center;
            mask-size: contain;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    background-color: #09102c;
  }
}
@media screen and (max-width: 767px) {
  .m-top .m-news__bd__ul__aw__ttl .is-window {
    position: relative;
    display: inline-block;
    content: '';
    top: 2px;
    right: -8px;
    width: 15px;
    height: 15px;
            mask-image: url('/images/icon_window01.webp');
    -webkit-mask-image: url('/images/icon_window01.webp');
            mask-position: center;
    -webkit-mask-position: center;
            mask-size: contain;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    background-color: #09102c;
    transition: .3s cubic-bezier(.215, .61, .355, 1);
  }
}
.m-top .m-news__btn {
  width: 170px;
  margin: 0 auto;
}
@media print, (min-width: 768px) {
  .m-top .m-news__btn {
    position: absolute;
    top: 258px;
    left: 70px;
  }
}
.m-top .m-news__btn .c-btn__in {
  padding-left: 47px;
}
.m-top .m-news__bg {
  position: absolute;
  top: 45px;
  left: -5px;
  width: 231px;
}
@media print, (min-width: 768px) {
  .m-top .m-news__bg {
    top: -5px;
    left: -10px;
    width: 643px;
  }
}
.m-top .m-news__bg img {
  width: 100%;
  height: auto;
}
.m-top .m-hCase {
  position: relative;
  overflow: hidden;
  background: #f1fbff;
}
.m-top .m-hCase__in {
  position: relative;
  padding: 140px 20px 110px;
}
@media print, (min-width: 768px) {
  .m-top .m-hCase__in {
    padding: 287px 70px 150px;
    margin: 0 auto;
    max-width: 1300px;
    display: flex;
    justify-content: space-between;
  }
}
.m-top .m-hCase__ttl {
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 2;
  color: #09102c;
}
@media print, (min-width: 768px) {
  .m-top .m-hCase__ttl {
    font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
    font-size: 46px;
    font-weight: 700;
    line-height: 2;
    margin-top: 22px;
  }
}
.m-top .m-hCase__lead {
  font-family: 'BIZ UDGothic', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 2;
  margin-bottom: 30px;
  color: #09102c;
}
@media print, (min-width: 768px) {
  .m-top .m-hCase__lead {
    font-size: 14px;
  }
}
.m-top .m-hCase__bd {
  margin-bottom: 30px;
}
@media print, (min-width: 768px) {
  .m-top .m-hCase__bd {
    width: 67%;
    margin-top: 22px;
  }
}
.m-top .m-hCase__bd__ul > li {
  position: relative;
  border-bottom: 1px solid #ddeef5;
}
.m-top .m-hCase__bd__ul > li:first-child {
  border-top: 1px solid #ddeef5;
}
@media print, (min-width: 768px) {
  .m-top .m-hCase__bd__ul > li::before {
    position: absolute;
    width: 0;
    height: 1px;
    background-color: #09102c;
    content: '';
    bottom: 0;
    left: 0;
    transition: .3s cubic-bezier(.215, .61, .355, 1);
  }
  .m-top .m-hCase__bd__ul > li:hover .m-hCase__bd__ul__aw__thum > img {
    transform: scale(1.1);
  }
  .m-top .m-hCase__bd__ul > li:hover::before {
    width: 100%;
  }
  .m-top .m-hCase__bd__ul > li:hover .m-hCase__bd__ul__aw__arrow::after {
    background-color: #fff;
    right: 10px;
  }
  .m-top .m-hCase__bd__ul > li:hover .m-hCase__bd__ul__aw__arrow::before {
    background-color: #09102c;
    width: 36px;
    height: 36px;
    opacity: 1;
  }
}
.m-top .m-hCase__bd__ul__aw {
  position: relative;
  font-family: 'BIZ UDGothic', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8666666667;
}
@media print, (min-width: 768px) {
  .m-top .m-hCase__bd__ul__aw {
    font-family: 'BIZ UDGothic', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    display: flex;
    gap: 30px;
  }
}
.m-top .m-hCase__bd__ul__aw__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.m-top .m-hCase__bd__ul__aw__thum {
  margin: 20px 0 0;
}
@media print, (min-width: 768px) {
  .m-top .m-hCase__bd__ul__aw__thum {
    margin: 20px 0;
    max-width: 290px;
    overflow: hidden;
  }
}
.m-top .m-hCase__bd__ul__aw__thum img {
  width: 100%;
  object-fit: cover;
  height: 61.33333333vw;
}
@media print, (min-width: 768px) {
  .m-top .m-hCase__bd__ul__aw__thum img {
    transition: .3s cubic-bezier(.215, .61, .355, 1);
    height: 200px;
    transform: scale(1);
  }
}
.m-top .m-hCase__bd__ul__aw__txt {
  position: relative;
  padding: 10px 0 20px;
}
@media print, (min-width: 768px) {
  .m-top .m-hCase__bd__ul__aw__txt {
    width: calc(100% - 320px);
    padding: 0 20px 20px 0;
  }
}
.m-top .m-hCase__bd__ul__aw__txt__estate {
  font-family: 'BIZ UDGothic', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 2;
}
@media print, (min-width: 768px) {
  .m-top .m-hCase__bd__ul__aw__txt__estate {
    font-size: 14px;
    padding-top: 40px;
  }
}
.m-top .m-hCase__bd__ul__aw__txt__ttl {
  font-family: 'BIZ UDGothic', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8666666667;
  padding-bottom: 5px;
  color: #09102c;
}
@media print, (min-width: 768px) {
  .m-top .m-hCase__bd__ul__aw__txt__ttl {
    font-family: 'BIZ UDGothic', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5555555556;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .m-top .m-hCase__bd__ul__aw__txt__ttl {
    position: relative;
  }
  .m-top .m-hCase__bd__ul__aw__txt__ttl .is-arrow {
    position: relative;
    display: inline-block;
    content: '';
    top: 2px;
    right: -8px;
    width: 15px;
    height: 15px;
            mask-image: url('/images/icon_arrow01.webp');
    -webkit-mask-image: url('/images/icon_arrow01.webp');
            mask-position: center;
    -webkit-mask-position: center;
            mask-size: contain;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    background-color: #09102c;
    transition: .3s cubic-bezier(.215, .61, .355, 1);
  }
}
.m-top .m-hCase__bd__ul__aw__txt__tag {
  position: relative;
  display: inline-block;
}
.m-top .m-hCase__bd__ul__aw__txt__tag > li {
  display: inline-block;
}
.m-top .m-hCase__bd__ul__aw__txt__tag > li a {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  padding: 6px 15px;
  line-height: 1;
  border: 1px solid #09102c;
  border-radius: 20px;
  transition: .3s cubic-bezier(.215, .61, .355, 1);
}
@media print, (min-width: 768px) {
  .m-top .m-hCase__bd__ul__aw__txt__tag > li a:hover {
    background-color: #00a0e9;
    color: #fff;
    border: 1px solid #00a0e9;
  }
}
@media screen and (max-width: 767px) {
  .m-top .m-hCase__bd__ul__aw__arrow {
    display: none;
  }
}
.m-top .m-hCase__bd__ul__aw__arrow::after {
  position: absolute;
  content: '';
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 14px;
  background-color: #09102c;
          mask-image: url(/images/icon_arrow01.webp);
  -webkit-mask-image: url(/images/icon_arrow01.webp);
          mask-position: center;
  -webkit-mask-position: center;
          mask-size: contain;
  -webkit-mask-size: contain;
          mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  transition: .3s cubic-bezier(.215, .61, .355, 1);
}
.m-top .m-hCase__bd__ul__aw__arrow::before {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  right: 0;
  top: 50%;
  border-radius: 50%;
  transform: translate(50%, -50%);
  background: #09102c;
  transition: .3s cubic-bezier(.215, .61, .355, 1);
  opacity: 0;
  right: 17px;
}
.m-top .m-hCase__btn {
  width: 170px;
  margin: 0 auto;
}
@media print, (min-width: 768px) {
  .m-top .m-hCase__btn {
    position: absolute;
    top: 490px;
    left: 70px;
  }
}
.m-top .m-hCase__btn .c-btn__in {
  padding-left: 47px;
}
.m-top .m-hCase__bg {
  position: absolute;
  top: -5px;
  left: -5px;
  width: 364px;
  mix-blend-mode: overlay;
  opacity: .8;
  top: 115px;
}
@media print, (min-width: 768px) {
  .m-top .m-hCase__bg {
    left: -10px;
    top: 170px;
    width: 1345px;
  }
}
.m-top .m-hCase__bg img {
  width: 100%;
  height: auto;
}
.m-top .m-hMem {
  position: relative;
  overflow: hidden;
  transition: .3s cubic-bezier(.215, .61, .355, 1);
}
.m-top .m-hMem__in {
  position: relative;
  padding-bottom: 119px;
}
@media print, (min-width: 768px) {
  .m-top .m-hMem__in {
    padding-bottom: 150px;
  }
}
.m-top .m-hMem__hd {
  position: relative;
  padding: 30px 20px 0;
  margin-bottom: 30px;
}
@media print, (min-width: 768px) {
  .m-top .m-hMem__hd {
    padding: 127px 70px 0;
    margin: 0 auto 60px;
    max-width: 1300px;
  }
}
.m-top .m-hMem__ttl {
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 2;
  color: #09102c;
}
@media print, (min-width: 768px) {
  .m-top .m-hMem__ttl {
    font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
    font-size: 46px;
    font-weight: 700;
    line-height: 2;
  }
}
.m-top .m-hMem__lead {
  font-family: 'BIZ UDGothic', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 2;
  color: #09102c;
  letter-spacing: -.02em;
}
@media print, (min-width: 768px) {
  .m-top .m-hMem__lead {
    font-size: 14px;
  }
}
.m-top .m-hMem__bd {
  position: relative;
  text-align: center;
}
.m-top .m-hMem__bd__slide {
  display: inline-block;
  position: relative;
  animation: slideLoop 8s infinite linear;
}
.m-top .m-hMem__bd__ul {
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.m-top .m-hMem__bd__ul__before,
.m-top .m-hMem__bd__ul__after {
  display: flex;
  position: absolute;
  top: 0;
}
.m-top .m-hMem__bd__ul__before .m-hMem__bd__ul,
.m-top .m-hMem__bd__ul__after .m-hMem__bd__ul {
  transform: translateX(0);
}
.m-top .m-hMem__bd__ul__before {
  flex-direction: row-reverse;
  right: 100%;
}
.m-top .m-hMem__bd__ul__after {
  left: 100%;
}
.m-top .m-hMem__bd__ul__item {
  width: 250px;
  padding: 10px;
  text-align: left;
}
@media print, (min-width: 768px) {
  .m-top .m-hMem__bd__ul__item {
    width: 375px;
    padding: 30px;
    flex-shrink: 0;
  }
}
.m-top .m-hMem__bd__ul__item:nth-child(2n) {
  margin-top: 20px;
}
@media print, (min-width: 768px) {
  .m-top .m-hMem__bd__ul__item:nth-child(2n) {
    margin-top: 40px;
  }
}
.m-top .m-hMem__bd__ul__item__thum img {
  width: 250px;
  height: 296px;
  object-fit: cover;
}
@media print, (min-width: 768px) {
  .m-top .m-hMem__bd__ul__item__thum img {
    width: 375px;
    height: 444px;
  }
}
.m-top .m-hMem__bd__ul__item__ttl {
  font-family: 'BIZ UDGothic', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8666666667;
  margin-top: 10px;
}
@media print, (min-width: 768px) {
  .m-top .m-hMem__bd__ul__item__ttl {
    font-family: 'BIZ UDGothic', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    margin-top: 20px;
  }
}
.m-top .m-hMem__bd__ul.is-odd:nth-child(2n) .m-hMem__bd__ul__item {
  margin-top: 20px;
}
@media print, (min-width: 768px) {
  .m-top .m-hMem__bd__ul.is-odd:nth-child(2n) .m-hMem__bd__ul__item {
    margin-top: 40px;
  }
}
.m-top .m-hMem__bd__ul.is-odd:nth-child(2n) .m-hMem__bd__ul__item:nth-child(2n) {
  margin-top: 0;
}
.m-top .m-hMem__btm {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}
@media print, (min-width: 768px) {
  .m-top .m-hMem__btm {
    padding: 0 70px;
  }
}
.m-top .m-hMem__btn {
  width: 170px;
  margin: 30px auto 0;
}
@media print, (min-width: 768px) {
  .m-top .m-hMem__btn {
    margin: 40px 0 0;
  }
}
.m-top .m-hMem__btn .c-btn__in {
  padding-left: 47px;
}
.m-top .m-hMem__bg {
  position: absolute;
  top: -5px;
  left: -5px;
  width: 387px;
  mix-blend-mode: overlay;
  opacity: .8;
  top: 15px;
}
@media print, (min-width: 768px) {
  .m-top .m-hMem__bg {
    left: -10px;
    top: 0;
    width: 1415px;
  }
}
.m-top .m-hMem__bg img {
  width: 100%;
  height: auto;
}
.m-top .m-cmpInf {
  position: relative;
  overflow: hidden;
  padding: 0 0 57px 0;
  transition: .3s cubic-bezier(.215, .61, .355, 1);
}
@media print, (min-width: 768px) {
  .m-top .m-cmpInf {
    padding: 0 0 200px 0;
  }
}
.m-top .m-cmpInf__out {
  max-width: 1600px;
  position: relative;
  margin: 0 auto;
}
.m-top .m-cmpInf__in {
  position: relative;
  padding: 100px 20px 0;
}
@media print, (min-width: 768px) {
  .m-top .m-cmpInf__in {
    padding: 370px 70px 488px;
    margin: 0 auto;
    max-width: 1300px;
    display: flex;
    justify-content: space-between;
  }
}
.m-top .m-cmpInf__ttl {
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 2;
  color: #fff;
}
@media print, (min-width: 768px) {
  .m-top .m-cmpInf__ttl {
    font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
    font-size: 46px;
    font-weight: 700;
    line-height: 2;
  }
}
.m-top .m-cmpInf__lead {
  font-family: 'BIZ UDGothic', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 2;
  color: #fff;
  margin-bottom: 30px;
}
@media print, (min-width: 768px) {
  .m-top .m-cmpInf__lead {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .m-top .m-cmpInf__bd {
    padding: 0 20px;
    margin-bottom: 30px;
  }
}
@media print, (min-width: 768px) {
  .m-top .m-cmpInf__bd {
    position: absolute;
    bottom: 0;
    right: 0;
  }
}
@media print, (min-width: 768px) {
  .m-top .m-cmpInf__bd__ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .m-top .m-cmpInf__bd__ul:has(:hover) a:hover::before {
    transform: scale(1.1);
  }
  .m-top .m-cmpInf__bd__ul:has(:hover) a:hover .m-cmpInf__bd__ul__aw__ttl::before {
    width: 36px;
    height: 36px;
    opacity: 1;
    background-color: #fff;
  }
  .m-top .m-cmpInf__bd__ul:has(:hover) a:hover .m-cmpInf__bd__ul__aw__ttl::after {
    right: -42px;
    background-color: #09102c;
  }
  .m-top .m-cmpInf__bd__ul:has(:hover) li:nth-child(3) > a:hover .m-cmpInf__bd__ul__aw__ttl::before {
    background-color: #09102c;
  }
  .m-top .m-cmpInf__bd__ul:has(:hover) li:nth-child(3) > a:hover .m-cmpInf__bd__ul__aw__ttl::after {
    right: -42px;
    background-color: #fff;
  }
  .m-top .m-cmpInf__bd__ul:has(:hover) a:not(:hover) {
    opacity: .2;
  }
}
.m-top .m-cmpInf__bd__ul > li {
  overflow: hidden;
}
@media print, (min-width: 768px) {
  .m-top .m-cmpInf__bd__ul > li {
    max-width: 510px;
    min-width: 408px;
    width: 31.875vw;
    transition: .3s cubic-bezier(.215, .61, .355, 1);
  }
}
.m-top .m-cmpInf__bd__ul > li > a {
  position: relative;
  display: block;
  font-family: 'BIZ UDGothic', sans-serif;
  font-size: 15px;
  line-height: 1.8666666667;
  font-weight: bold;
  width: 100%;
  color: #fff;
  transition: .3s cubic-bezier(.215, .61, .355, 1);
}
.m-top .m-cmpInf__bd__ul > li > a::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: .3s cubic-bezier(.215, .61, .355, 1);
}
@media print, (min-width: 768px) {
  .m-top .m-cmpInf__bd__ul > li > a {
    font-size: 18px;
  }
}
.m-top .m-cmpInf__bd__ul > li .m-cmpInf__bd__ul__aw {
  padding: 175px 0 20px 20px;
}
@media print, (min-width: 768px) {
  .m-top .m-cmpInf__bd__ul > li .m-cmpInf__bd__ul__aw {
    padding: 262px 0 40px 40px;
  }
}
.m-top .m-cmpInf__bd__ul > li:nth-child(1) > a::before {
  background-image: url('/images/bg_top_comp01.webp');
}
.m-top .m-cmpInf__bd__ul > li:nth-child(2) > a::before {
  background-image: url('/images/bg_top_comp02.webp');
}
.m-top .m-cmpInf__bd__ul > li:nth-child(3) > a {
  color: #09102c;
}
.m-top .m-cmpInf__bd__ul > li:nth-child(3) > a .m-cmpInf__bd__ul__aw__ttl::before {
  background-color: #09102c;
}
.m-top .m-cmpInf__bd__ul > li:nth-child(3) > a .m-cmpInf__bd__ul__aw__ttl::after {
  background-color: #09102c;
}
.m-top .m-cmpInf__bd__ul > li:nth-child(3) > a::before {
  background-image: url('/images/bg_top_comp03.webp');
}
.m-top .m-cmpInf__bd__ul > li:nth-child(4) > a::before {
  background-image: url('/images/bg_top_comp04.webp');
}
.m-top .m-cmpInf__bd__ul__aw {
  display: inline-block;
}
.m-top .m-cmpInf__bd__ul__aw__ttl {
  line-height: 1;
  position: relative;
}
.m-top .m-cmpInf__bd__ul__aw__ttl::before {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  right: 0;
  top: 50%;
  border-radius: 50%;
  transform: translate(50%, -50%);
  background: #09102c;
  transition: .3s cubic-bezier(.215, .61, .355, 1);
  opacity: 0;
  right: -35px;
  background-color: #fff;
}
.m-top .m-cmpInf__bd__ul__aw__ttl::after {
  position: absolute;
  content: '';
  display: inline-block;
  transition: .3s cubic-bezier(.215, .61, .355, 1);
  top: 50%;
  right: -28px;
  transform: translateY(-50%);
  width: 15px;
  height: 14px;
          mask-image: url('/images/icon_arrow01.webp');
  -webkit-mask-image: url('/images/icon_arrow01.webp');
          mask-position: center;
  -webkit-mask-position: center;
          mask-size: contain;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #fff;
}
.m-top .m-cmpInf__btn {
  width: 170px;
  margin: 0 auto;
}
@media print, (min-width: 768px) {
  .m-top .m-cmpInf__btn {
    position: absolute;
    top: 560px;
    left: clamp(70px, (100vw - 1280px) / 2, 150px);
  }
}
.m-top .m-cmpInf__btn .c-btn__in {
  padding-left: 47px;
  border: 1px solid #53586b;
  background-color: unset;
}
@media screen and (max-width: 767px) {
  .m-top .m-cmpInf__btn .c-btn__in {
    background: #fff;
    color: #09102c;
  }
  .m-top .m-cmpInf__btn .c-btn__in::after {
    background-color: #09102c;
  }
}
.m-top .m-cmpInf__bg {
  position: absolute;
  top: -5px;
  left: -2px;
  width: 333px;
  mix-blend-mode: overlay;
  opacity: .8;
  top: 90px;
}
@media print, (min-width: 768px) {
  .m-top .m-cmpInf__bg {
    left: 0;
    top: 288px;
    width: 1223px;
  }
}
.m-top .m-cmpInf__bg img {
  width: 100%;
  height: auto;
}
.m-top .m-cmpInf.is-active {
  background: #09102c;
}
