@charset "UTF-8";
/* Scss Document */
:root {
  --main-font-family: "Zen Maru Gothic", sans-serif;
  --sub-font-family: "Comfortaa", sans-serif;
  --main-font-size: 16px;
  --main-font-weight: 400;
  --main-font-color: #000;
  --main-line-hlight: 1.625;
  --main-letter-spacing: 0;
  --main-link-color: #000;
  --main-color: #07BDFF;
  --sub-color: #000;
  --inner-width: 1140px;
  --inner-padding: 0 20px;
  --anime-speed: 750ms;
  --anime-delay: 0.6s;
}

@media (max-width: 750px) {
  :root {
    --main-font-size: 13px;
    --main-line-hlight: 1.84;
    --main-letter-spacing: 0;
    --inner-width: 100%;
    --inner-padding: 0 24px;
  }
}
/* Scss Document */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
*:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  padding: 0;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
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;
}

body {
  font-family: var(--main-font-family);
  font-size: var(--main-font-size);
  line-height: var(--line-hlight);
  font-weight: var(--main-font-weight);
  color: var(--main-font-color);
  letter-spacing: var(--letter-spacing);
  -webkit-text-size-adjust: 100%;
}

img,
svg {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: bottom;
  line-height: 1;
}

a {
  color: var(--main-link-color);
  text-decoration: none;
}

input,
textarea,
button,
select {
  font-family: var(--main-font-family);
  font-size: var(--main-font-size);
  line-height: var(--line-hlight);
  font-weight: var(--main-font-weight);
  color: var(--main-font-color);
}

@media screen and (max-width: 750px) {
  body {
    font-weight: var(--main-font-weight);
    line-height: var(--line-hlight);
  }
  input,
  textarea,
  button,
  select {
    font-weight: var(--main-font-weight);
  }
}
/* Scss Document */
/*　header
----------------------------------------------- */
.header {
  width: 100%;
  padding: 22px 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 6;
}

.header__inner {
  max-width: 1296px;
  margin: 0 auto;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header-logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 15px;
}

.header-logo__text {
  font-size: 14px;
  font-weight: 700;
}

.header__r {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 38px;
}

.header-nav {
  max-width: 700px;
}

.header-menu {
  width: 100%;
  padding: 23px 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 65px;
  background: #FFF;
  border-radius: 50px;
  -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.15);
}

.header-menu__item a {
  font-weight: 700;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .header-menu__item a:hover {
    color: var(--main-color);
  }
}

.header-contact {
  width: 200px;
}
.header-contact a {
  padding: 24px 0;
  color: #FFF;
  font-weight: 700;
  line-height: 1.4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 4px;
  background: var(--main-color);
  border-radius: 50px;
  -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.15);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .header-contact a:hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.header-contact a span {
  display: block;
}

.header-btn {
  display: none;
}

.header-copy {
  position: fixed;
  top: 200px;
  right: 20px;
  font-size: 14px;
  line-height: 1;
  z-index: 5;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 36px;
  white-space: nowrap;
}

.header-copy__ja {
  font-weight: 500;
  font-size: 14px;
  background: -webkit-gradient(linear, left top, left bottom, from(#07BDFF), to(#243787));
  background: linear-gradient(180deg, #07BDFF 0%, #243787 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.header-copy__en {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.2em;
  background: -webkit-gradient(linear, right top, left top, from(#07BDFF), to(#243787));
  background: linear-gradient(-90deg, #07BDFF 0%, #243787 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.sp-menu {
  display: none;
}

@media (min-width: 1181px) {
  body.js-on {
    overflow: visible !important;
  }
  .sp-menu {
    display: none !important;
  }
}
@media (max-width: 1180px) {
  .header__r {
    gap: 0 20px;
  }
  .header-menu {
    padding: 23px 30px;
    gap: 0 20px;
  }
  .header-menu__item a {
    font-size: 14px;
  }
}
@media (max-width: 895px) {
  .header {
    padding: 0;
  }
  .header__inner {
    padding: 7px 13px;
    background: #FFF;
    z-index: 7;
    position: relative;
  }
  .header-logo {
    position: relative;
    z-index: 7;
  }
  .header-logo__img {
    width: 35px;
    display: block;
  }
  .header-logo__text {
    font-size: 12px;
  }
  .header__r {
    display: none;
  }
  .header-btn {
    display: none;
  }
  .header-copy {
    display: none;
  }
  .header-btn {
    width: 35px;
    height: 25px;
    position: relative;
    z-index: 13;
    display: block;
  }
  .menu {
    display: block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    width: 100%;
    height: 100%;
    background: none;
    border: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    cursor: pointer;
  }
  .menu span {
    display: inline-block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--main-color);
    border-radius: 10px;
  }
  .menu span:nth-of-type(1) {
    top: 0;
  }
  .menu span:nth-of-type(2) {
    top: 11px;
  }
  .menu span:nth-of-type(3) {
    bottom: 0;
  }
  .menu.active span:nth-of-type(1) {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(-45deg);
            transform: translateY(-50%) rotate(-45deg);
  }
  .menu.active span:nth-of-type(2) {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
  }
  .menu.active span:nth-of-type(3) {
    opacity: 0;
  }
  .sp-menu {
    width: 100%;
    height: 100%;
    background: var(--main-color);
    position: fixed;
    top: 0;
    left: 0;
    overflow-y: auto;
    display: none;
    z-index: 6;
  }
  .sp-menu__inner {
    padding: 96px 28px 40px;
  }
  .sp-menu__btn {
    margin-top: 26px;
  }
  .sp-menu__btn:first-of-type {
    margin-top: 0;
  }
  .sp-menu__btn a {
    padding: 17px 21px;
    font-weight: 700;
    color: var(--main-color);
    display: block;
    background: #FFF;
    position: relative;
    border-radius: 10px;
  }
  .sp-menu__btn a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 16px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: url("../../img/common/sp_arrow.svg") no-repeat center center/100% auto;
    pointer-events: none;
  }
  .sp-menu__gp {
    margin-top: 26px;
    border-radius: 10px;
    overflow: hidden;
  }
  .sp-menu__gp-ttl {
    padding: 21px 0 13px;
    font-weight: 700;
    text-align: center;
    color: #FFF;
    border-top: 1px solid #FFF;
    border-left: 1px solid #FFF;
    border-right: 1px solid #FFF;
    border-radius: 10px 10px 0 0;
  }
  .sp-menu__gp-item {
    border-top: 1px solid var(--main-color);
  }
  .sp-menu__gp-item:first-of-type {
    border-top: none;
  }
  .sp-menu__gp-item a {
    padding: 17px 21px;
    font-weight: 700;
    position: relative;
    color: var(--main-color);
    background: #FFF;
    display: block;
  }
  .sp-menu__gp-item a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 16px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: url("../../img/common/sp_arrow.svg") no-repeat center center/100% auto;
    pointer-events: none;
  }
  .sp-menu__sns {
    margin-top: 45px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0 36px;
    line-height: 1;
  }
  .sp-menu__sns-item:first-child {
    width: 46px;
  }
  .sp-menu__sns-item:nth-child(2) {
    width: 153px;
  }
  .sp-menu__sns-item img {
    width: 100%;
    height: auto;
  }
  .sp-menu__links {
    margin-top: 26px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    line-height: 1;
  }
  .sp-menu__link:nth-child(2) {
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid #FFF;
  }
  .sp-menu__link a {
    color: #FFF;
    font-weight: 700;
  }
  .header-contact {
    width: 100%;
    margin-top: 39px;
  }
  .header-contact a {
    padding: 14px 0;
    color: var(--main-color);
    gap: 0 10px;
    border-radius: 10px;
    background: #FFF;
  }
}
/*　footer
----------------------------------------------- */
.footer {
  padding: 70px 0 20px;
  color: #FFF;
  border-radius: 250px 50px 0 0;
  background: var(--main-color);
}

.footer__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.footer-logo__text {
  font-size: 14px;
  font-weight: 700;
}

.footer-name {
  margin-top: 14px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.footer-contact {
  width: 200px;
  margin-top: 41px;
}
.footer-contact a {
  padding: 13px 0;
  font-weight: 700;
  color: var(--main-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 6px;
  background: #FFFFFF;
  border: 1px solid #07BDFF;
  -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.15);
  border-radius: 50px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .footer-contact a:hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

.footer-nav {
  width: 58.18%;
  padding-left: 74px;
  line-height: 2.5;
  display: grid;
  grid-template-columns: 32% 38.6% 29.4%;
  border-left: 1px solid #FFF;
}
.footer-nav a {
  color: #FFF;
  font-weight: 700;
}

.footer-nav__link a {
  display: inline-block;
  position: relative;
}
@media (hover: hover) and (pointer: fine) {
  .footer-nav__link a:hover::after {
    width: 100%;
  }
}
.footer-nav__link a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  display: block;
  width: 0;
  height: 2px;
  background: #FFF;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer-nav__link--mt {
  margin-top: 40px;
}

.footer-nav__sub-link {
  padding-left: 20px;
  position: relative;
}
.footer-nav__sub-link::before {
  content: "ー";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 16px;
  font-weight: 700;
}

.footer-nav__sns-wrap {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 35px;
}
.footer-nav__sns-wrap a {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .footer-nav__sns-wrap a:hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

.footer-nav__small-link a {
  display: inline-block;
  position: relative;
}
@media (hover: hover) and (pointer: fine) {
  .footer-nav__small-link a:hover::after {
    width: 100%;
  }
}
.footer-nav__small-link a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  display: block;
  width: 0;
  height: 2px;
  background: #FFF;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer__copy {
  width: 100%;
  margin-top: 46px;
  font-size: 12px;
  font-weight: 500;
}

.page-top {
  width: 70px;
  position: fixed;
  z-index: 5;
  bottom: 50px;
  right: calc((100vw - 1296px) / 2 + 20px);
}

.sp-fixed {
  display: none;
}

@media (max-width: 1296px) {
  .page-top {
    bottom: 25px;
    right: 20px;
  }
}
@media (max-width: 1240px) {
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 35px 0;
  }
  .footer__l {
    margin: 0 auto;
  }
  .footer-nav {
    width: 100%;
    margin: 0 auto;
    padding-left: 0;
    border-left: none;
  }
  .footer__copy {
    text-align: center;
    display: block;
  }
}
@media screen and (max-width: 750px) {
  .footer {
    padding: 34px 0 7px;
    border-radius: 100px 30px 0 0;
  }
  .footer__inner {
    padding: 0 20px;
    display: block;
  }
  .footer-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
  .footer-logo__img {
    width: 132px;
    margin: 0 auto;
    display: block;
  }
  .footer-logo__text {
    display: none;
  }
  .footer-name {
    margin-top: 4px;
    font-size: 12px;
    text-align: center;
    letter-spacing: 0;
  }
  .footer-contact {
    display: none;
  }
  .footer-nav {
    width: 100%;
    padding-left: 0;
    line-height: 1;
    display: block;
    border-left: none;
  }
  .footer-nav__item01 {
    display: none;
  }
  .footer-nav__link--mt {
    margin-top: 40px;
  }
  .footer-nav__item02 {
    display: none;
  }
  .footer-nav__item03 {
    margin-top: 27px;
  }
  .footer-nav__sns-wrap {
    margin-bottom: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer-nav__small-link {
    display: none;
  }
  .footer__copy {
    margin-top: 23px;
    font-size: 10px;
    text-align: center;
    display: block;
  }
  .page-top {
    display: none;
  }
  .sp-fixed {
    width: 100%;
    height: 60px;
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 5;
  }
  .sp-fixed a {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: url(../../img/common/sp_fixed@2x.jpg) no-repeat center center/cover;
    position: relative;
  }
  .sp-fixed a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 47.73vw;
    height: 100%;
    background: url(../../img/common/sp_fixed_bg.svg) no-repeat center left/cover;
  }
  .sp-fixed__text {
    padding-left: 6.4vw;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.29;
    color: #FFFFFF;
    position: relative;
    z-index: 1;
  }
  .sp-fixed__contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0 8px;
    padding-right: 9.07vw;
    position: relative;
    z-index: 1;
  }
  .sp-fixed__contact-icon {
    width: 28px;
    display: block;
  }
  .sp-fixed__contact-text {
    font-size: 18px;
    font-weight: 700;
    color: #FFF;
  }
}
/*　フェード
----------------------------------------------- */
.view01 {
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  position: relative;
  opacity: 0;
  -webkit-transition: all var(--anime-speed) ease;
  transition: all var(--anime-speed) ease;
  -webkit-transition-delay: var(--anime-delay);
          transition-delay: var(--anime-delay);
}
.view01.view-on {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  -webkit-transition: all var(--anime-speed) ease;
  transition: all var(--anime-speed) ease;
  -webkit-transition-delay: var(--anime-delay);
          transition-delay: var(--anime-delay);
}

.view02 {
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
  position: relative;
  opacity: 0;
  -webkit-transition: all var(--anime-speed) ease;
  transition: all var(--anime-speed) ease;
  -webkit-transition-delay: var(--anime-delay);
          transition-delay: var(--anime-delay);
}
.view02.view-on {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  -webkit-transition: all var(--anime-speed) ease;
  transition: all var(--anime-speed) ease;
  -webkit-transition-delay: var(--anime-delay);
          transition-delay: var(--anime-delay);
}

.view03 {
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
  position: relative;
  opacity: 0;
  -webkit-transition: all var(--anime-speed) ease;
  transition: all var(--anime-speed) ease;
  -webkit-transition-delay: var(--anime-delay);
          transition-delay: var(--anime-delay);
}
.view03.view-on {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  -webkit-transition: all var(--anime-speed) ease;
  transition: all var(--anime-speed) ease;
  -webkit-transition-delay: var(--anime-delay);
          transition-delay: var(--anime-delay);
}

.view04 {
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  position: relative;
  opacity: 0;
  -webkit-transition: all var(--anime-speed) ease;
  transition: all var(--anime-speed) ease;
  -webkit-transition-delay: var(--anime-delay);
          transition-delay: var(--anime-delay);
}
.view04.view-on {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  -webkit-transition: all var(--anime-speed) ease;
  transition: all var(--anime-speed) ease;
  -webkit-transition-delay: var(--anime-delay);
          transition-delay: var(--anime-delay);
}

.view05 {
  position: relative;
  opacity: 0;
  -webkit-transition: all var(--anime-speed) ease;
  transition: all var(--anime-speed) ease;
  -webkit-transition-delay: var(--anime-delay);
          transition-delay: var(--anime-delay);
}
.view05.view-on {
  opacity: 1;
  -webkit-transition: all var(--anime-speed) ease;
  transition: all var(--anime-speed) ease;
  -webkit-transition-delay: var(--anime-delay);
          transition-delay: var(--anime-delay);
}

/*　スライドアニメーション
----------------------------------------------- */
.js-slide-h {
  display: grid;
  -webkit-transition: grid-template-rows 0.4s;
  transition: grid-template-rows 0.4s;
  transition: grid-template-rows 0.4s, -ms-grid-rows 0.4s;
  grid-template-rows: 0fr;
}
.js-slide-h > * {
  overflow: hidden;
}
.js-slide-h.js-active {
  grid-template-rows: 1fr;
}

/*　共通
----------------------------------------------- */
body {
  overflow-x: clip;
}
body.js-on {
  overflow: hidden;
}

.sp {
  display: none;
}

.pc {
  display: block;
}

.pc-inline {
  display: inline;
}

.sp-inline {
  display: none;
}

.inner {
  max-width: var(--inner-width);
  margin-inline: auto;
  padding: var(--inner-padding);
}

.no-link {
  pointer-events: none !important;
}

.p-breadcrumb {
  max-width: 1140px;
  margin: -40px auto 70px;
  padding: 0 20px;
}

.p-breadcrumb__lists {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 15px;
}

.p-breadcrumb__item {
  position: relative;
  font-size: 14px;
  font-weight: 500;
}
.p-breadcrumb__item::after {
  content: ">";
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  position: absolute;
  top: 0;
  right: -13px;
}
.p-breadcrumb__item a {
  font-size: 14px;
  font-weight: 500;
  color: var(--main-color);
}
.p-breadcrumb__item:last-child::after {
  display: none;
}
.p-breadcrumb__item:last-child a {
  color: #2F373B;
  pointer-events: none;
}

.page-ttl01 {
  width: 400px;
  padding: 53px 0;
  text-align: center;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border-radius: 20px 80px 80px 80px;
}

.page-ttl01__ja {
  font-size: 32px;
  font-weight: 700;
  color: var(--main-color);
  line-height: 1;
}

.page-ttl01__en {
  margin-top: 17px;
  font-family: var(--sub-font-family);
  font-size: 22px;
  line-height: 1;
}

.page-mv {
  padding: 182px 0 0;
  position: relative;
}

.page-mv__img {
  width: 100%;
  height: 300px;
  border-radius: 0 0 200px 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.page-mv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.more-btn {
  width: 200px;
  margin: 57px auto 0;
}
.more-btn a {
  padding: 16px 0;
  font-weight: 700;
  color: var(--main-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 9px;
  border: 3px solid var(--main-color);
  border-radius: 50px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.more-btn a span {
  display: block;
}
@media (hover: hover) and (pointer: fine) {
  .more-btn a:hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

.more-btn__icon {
  padding-bottom: 6px;
  line-height: 1;
}

@media screen and (max-width: 750px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  .sp-inline {
    display: inline;
  }
  .pc-inline {
    display: none;
  }
  #container {
    padding-top: 60px;
  }
  .inner {
    margin: 0;
  }
  .p-breadcrumb {
    display: none;
  }
  .page-ttl01 {
    width: auto;
    margin-bottom: 30px;
    padding: 25px 25px;
    border-radius: 10px 40px 40px 40px;
    display: inline-block;
  }
  .page-ttl01__ja {
    font-size: 24px;
  }
  .page-ttl01__en {
    margin-top: 15px;
    font-size: 16px;
  }
  .page-mv {
    padding: 125px 0 0;
  }
  .page-mv__img {
    width: 100%;
    height: 200px;
    border-radius: 0 0 80px 0;
  }
  .more-btn {
    width: 180px;
    margin: 30px auto 0;
  }
  .more-btn a {
    padding: 11px 0;
    font-size: 14px;
    gap: 0 5px;
  }
  .more-btn__icon {
    width: 16px;
    padding-bottom: 6px;
  }
}
/*　投稿
----------------------------------------------- */
.post h1,
.interface-interface-skeleton__body h1 {
  font-size: 26px;
  font-weight: bold;
}
.post h2,
.interface-interface-skeleton__body h2 {
  font-size: 24px;
  font-weight: bold;
}
.post h3,
.interface-interface-skeleton__body h3 {
  font-size: 22px;
  font-weight: bold;
}
.post h4,
.interface-interface-skeleton__body h4 {
  font-size: 20px;
  font-weight: bold;
}
.post h5,
.interface-interface-skeleton__body h5 {
  font-size: 18px;
  font-weight: bold;
}
.post h6,
.interface-interface-skeleton__body h6 {
  font-size: 16px;
  font-weight: bold;
}
.post strong,
.interface-interface-skeleton__body strong {
  font-weight: bold;
}

@media screen and (max-width: 750px) {
  .post h1,
  .interface-interface-skeleton__body h1 {
    font-size: 24px;
  }
  .post h2,
  .interface-interface-skeleton__body h2 {
    font-size: 22px;
  }
  .post h3,
  .interface-interface-skeleton__body h3 {
    font-size: 20px;
  }
  .post h4,
  .interface-interface-skeleton__body h4 {
    font-size: 18px;
  }
  .post h5,
  .interface-interface-skeleton__body h5 {
    font-size: 16px;
  }
  .post h6,
  .interface-interface-skeleton__body h6 {
    font-size: 14px;
  }
}
/* Scss Document */
.top {
  overflow: hidden;
}
.top .top-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0 6px;
  position: relative;
}
.top .top-ttl__ja {
  padding-right: 28px;
  font-size: 36px;
  font-weight: 700;
  color: var(--main-color);
  display: inline-block;
  position: relative;
}
.top .top-ttl__ja::after {
  content: "";
  width: 1px;
  height: 35px;
  display: block;
  position: absolute;
  right: 10px;
  top: 56%;
  -webkit-transform: translateY(-50%) rotate(30deg);
          transform: translateY(-50%) rotate(30deg);
  background: #2F373B;
}
.top .top-ttl__en {
  font-family: var(--sub-font-family);
  font-size: 20px;
  font-weight: 400;
}
.top .top-deco01 {
  width: 280px;
  height: 180px;
  background: #f2fbff;
  position: absolute;
  border-radius: 0 100px 100px 50px;
  z-index: -1;
}
.top .top-deco--01 {
  top: 0;
  left: -170px;
}
.top .top-deco02 {
  width: 280px;
  height: 180px;
  background: #f2fbff;
  position: absolute;
  border-radius: 50px 100px 100px 0;
  z-index: -1;
}
.top .top-deco--02 {
  top: -20px;
  left: -170px;
}
.top .top-deco--03 {
  top: -40px;
  left: -170px;
}
.top .mv {
  height: 810px;
  position: relative;
  border-radius: 0 0 450px 0;
  overflow: hidden;
}
.top .mv__copy {
  max-width: 624px;
  position: absolute;
  top: 230px;
  right: 170px;
  z-index: 1;
}
.top .mv__img {
  width: 100%;
  height: 100%;
}
.top .mv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
.top .top-navi {
  margin-top: -40px;
}
.top .top-navi__inner {
  padding: 24px 0 27px;
  background: rgba(255, 255, 255, 0.7);
  border: 3px solid #FFFFFF;
  -webkit-box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(35px);
  border-radius: 10px;
}
.top .top-navi__ttl {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
.top .top-navi__list {
  margin-top: 27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top .top-navi__item {
  width: 25%;
  text-align: center;
  border-left: 1px solid #F5F5F5;
}
.top .top-navi__item:first-child {
  border-left: none;
}
.top .top-navi__item a {
  padding: 11px 0 10px;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .top .top-navi__item a:hover {
    color: var(--main-color);
  }
  .top .top-navi__item a:hover .top-navi__arrow {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}
.top .top-navi__sttl {
  margin-top: 4px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
.top .top-navi__arrow {
  margin-top: 6px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.top .top-mission {
  margin-top: 158px;
  padding-bottom: 170px;
  background: #FFF;
  border-radius: 0 0 0 300px;
  position: relative;
  z-index: 1;
}
.top .top-mission .inner {
  position: relative;
}
.top .top-mission .top-ttl {
  width: 48.18%;
  padding-top: 64px;
}
.top .top-mission__flex {
  width: 48.18%;
}
.top .top-mission__img {
  width: 45.45%;
  position: absolute;
  top: 0;
  right: 0;
}
.top .top-mission__textarea {
  margin-top: 116px;
}
.top .top-mission__sttl {
  font-weight: 700;
  font-size: 26px;
  line-height: 1.77;
  color: #243787;
}
.top .top-mission__text {
  margin-top: 19px;
  line-height: 2;
}
.top .top-mission__point {
  max-width: 500px;
  margin-top: 50px;
  padding: 54px 60px 30px;
  border-radius: 10px;
  position: relative;
  background: #f8f8f8;
  overflow: hidden;
}
.top .top-mission__point-ttl {
  padding: 7px 20px;
  font-weight: 900;
  color: #FFF;
  display: inline-block;
  background: var(--main-color);
  position: absolute;
  top: 0;
  left: 0;
}
.top .top-mission__point-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 16%;
  line-height: 2;
}
.top .top-mission__point-item {
  position: relative;
  padding-left: 20px;
  font-weight: 500;
}
.top .top-mission__point-item::before {
  content: "●";
  font-size: 16px;
  font-weight: 500;
  color: var(--main-color);
  line-height: 2;
  position: absolute;
  left: 0;
  top: 0;
}
.top .top-worries {
  margin-top: -357px;
  padding: 447px 0 120px;
  background: linear-gradient(181.41deg, #CDF2FF 57.01%, #9CE5FF 98.8%);
  overflow: hidden;
}
.top .top-worries__tll {
  max-width: 700px;
  margin: 0 auto;
  padding-bottom: 15px;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.78;
  text-align: center;
  color: #243787;
  border-bottom: 2px dashed #FFF;
}
.top .top-worries__list {
  margin-top: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 35px 3.64%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.top .top-worries__item {
  width: 28.18%;
}
.top .top-worries__item:first-child, .top .top-worries__item:nth-child(2) {
  width: 45.45%;
}
.top .top-worries__item:first-child .top-worries__item-inner, .top .top-worries__item:nth-child(2) .top-worries__item-inner {
  padding-bottom: 36px;
}
.top .top-worries__item-inner {
  padding: 41px 5px 51px;
  background: #FFF;
  -webkit-box-shadow: -6px 6px 0px rgba(7, 189, 255, 0.25), 6px -6px 0px rgba(0, 0, 0, 0.15);
          box-shadow: -6px 6px 0px rgba(7, 189, 255, 0.25), 6px -6px 0px rgba(0, 0, 0, 0.15);
  border-radius: 0px 50px;
  position: relative;
}
.top .top-worries__item-text {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  line-height: 1.8;
}
.top .top-worries__item-icon {
  position: absolute;
  bottom: 19px;
  right: 25px;
}
.top .top-worries__center {
  padding-left: 144px;
  text-align: center;
  position: relative;
}
.top .top-worries__bold {
  margin-top: 72px;
  padding: 0 30px;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.43;
  color: #FFF;
  text-align: center;
  text-shadow: 0px 0px 10px rgba(7, 189, 255, 0.8);
  display: inline-block;
  position: relative;
}
.top .top-worries__bold::before {
  content: "";
  position: absolute;
  top: 58%;
  left: -10px;
  width: 40px;
  height: 3px;
  display: block;
  background: #FFF;
  -webkit-transform: translateY(-50%) rotate(63deg);
          transform: translateY(-50%) rotate(63deg);
}
.top .top-worries__bold::after {
  content: "";
  position: absolute;
  top: 58%;
  right: 0;
  width: 40px;
  height: 3px;
  display: block;
  background: #FFF;
  -webkit-transform: translateY(-50%) rotate(-63deg);
          transform: translateY(-50%) rotate(-63deg);
}
.top .top-worries__img {
  position: absolute;
  bottom: -132px;
  left: 77px;
}
.top .top-service {
  margin-top: -70px;
  position: relative;
}
.top .top-service .wave {
  width: 100%;
  min-width: 1440px;
}
.top .top-service .wave svg {
  width: 100%;
  height: auto;
}
.top .top-service .inner {
  padding-top: 136px;
}
.top .top-service__text {
  margin-top: 14px;
  line-height: 1.75;
}
.top .top-service__list {
  margin-top: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 70px 0;
}
.top .top-service__item {
  min-height: 500px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top .top-service__item:nth-child(odd) .top-service__img {
  left: calc(50% + 20px);
  border-radius: 250px 0px 0px 100px;
}
.top .top-service__item:nth-child(even) .top-service__textarea {
  margin: 0 0 0 auto;
}
.top .top-service__item:nth-child(even) .top-service__img {
  right: calc(50% + 20px);
  border-radius: 0px 250px 100px 0px;
}
.top .top-service__textarea {
  width: 48.18%;
  position: relative;
}
.top .top-service__no {
  position: absolute;
  top: 4px;
  right: 50px;
}
.top .top-service__sttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 10px;
}
.top .top-service__sttl-text {
  font-weight: 700;
  font-size: 30px;
  line-height: 1.43;
  color: #243787;
}
.top .top-service__stext {
  margin-top: 40px;
  line-height: 1.75;
}
.top .top-service__btn {
  width: 200px;
  margin-top: 15px;
}
.top .top-service__btn a {
  padding: 14px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 9px;
  border: 3px solid var(--main-color);
  border-radius: 50px;
}
.top .top-service__btn-text {
  font-weight: 700;
  color: var(--main-color);
}
.top .top-service__img {
  width: calc(50vw - 20px);
  height: 500px;
  position: absolute;
  top: 0;
  overflow: hidden;
}
.top .top-service__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
.top .top-partnership {
  margin-top: 130px;
  position: relative;
}
.top .top-partnership::after {
  content: "";
  top: 50%;
  left: 0;
  width: 100%;
  height: 51%;
  display: block;
  position: absolute;
  background: #f2fbff;
  z-index: -2;
}
.top .top-partnership .inner {
  position: relative;
}
.top .top-partnership .top-ttl__ja {
  color: #FFF;
}
.top .top-partnership .top-ttl__ja::after {
  background: #FFF;
}
.top .top-partnership .top-ttl__en {
  color: #FFF;
}
.top .top-partnership__contents {
  min-height: 750px;
  padding: 78px 0 88px;
  background: linear-gradient(248.3deg, #65d1fb 45.48%, #a3b3d6 102.13%);
  border-radius: 0px 450px 450px 0px;
  position: relative;
  z-index: 1;
}
.top .top-partnership__img {
  width: 51.91%;
  position: absolute;
  top: -8px;
  right: 1.8%;
}
.top .top-partnership__textarea {
  width: 43.64%;
  margin-top: 52px;
  padding: 38px 37px 46px;
  border: 1px solid #FFFFFF;
  border-radius: 0px 50px 50px 50px;
  color: #FFF;
}
.top .top-partnership__sttl {
  font-weight: 700;
  font-size: 30px;
  line-height: 2;
}
.top .top-partnership__text {
  margin-top: 24px;
  font-weight: 500;
  line-height: 2;
}
.top .top-partnership__note {
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
}
.top .top-connection {
  padding: 92px 0 190px;
  background: #f2fbff;
  border-radius: 0 0 0 450px;
}
.top .connection__ttl {
  font-size: 36px;
  font-weight: 700;
  color: var(--main-color);
  text-align: center;
}
.top .splide {
  margin-top: 52px;
}
.top .splide__slide {
  width: 330px;
  padding-bottom: 6px;
}
.top .splide__slide a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
.top .splide__pagination {
  display: block !important;
}
.top .top-connection__item {
  padding: 27px 35px 29px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 6px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 6px 0px rgba(0, 0, 0, 0.15);
  border-radius: 50px 50px 20px 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .top .top-connection__item:hover {
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.top .top-connection__logo {
  text-align: center;
}
.top .top-connection__sttl {
  margin-top: 13px;
  margin-bottom: 2px;
  padding-bottom: 2px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.71;
  border-bottom: 1px solid #000;
}
.top .top-connection__text {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.71;
}
.top .splide__options {
  margin-top: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top .splide__pagination {
  padding: 0 1em;
  position: static;
}
.top .splide__pagination__page {
  background: #a7e5fd;
  height: 20px;
  margin: 10px;
  opacity: 1;
  width: 20px;
}
.top .splide__pagination__page.is-active {
  background: var(--main-color);
  -webkit-transform: scale(1);
          transform: scale(1);
}
.top .splide__arrow {
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  background: #FFF;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  height: 40px;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  opacity: 1;
  padding: 0;
  position: relative;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  width: 40px;
  z-index: 1;
  border: 2px solid var(--main-color);
  top: auto;
  left: auto;
  right: auto;
}
.top .splide__arrow::after {
  content: "";
  width: 20px;
  height: 16px;
  position: absolute;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url("../../img/top/arrow_left.svg") no-repeat center center;
}
.top .splide__arrow.splide__arrow--next::after {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
          transform: translate(-50%, -50%) rotate(180deg);
}
.top .top-news {
  margin-top: 168px;
  padding-bottom: 150px;
  position: relative;
}
.top .news-page__list--top {
  margin-top: 109px;
}
.top .top-news__text {
  margin-top: 16px;
  font-weight: 500;
}

@media (max-width: 1120px) {
  .top .top-partnership__img {
    width: 100%;
    margin: 22px auto 0;
    text-align: center;
    position: static;
  }
  .top .top-partnership__textarea {
    width: 70%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 750px) {
  .top .top-ttl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    gap: 0 6px;
    position: relative;
  }
  .top .top-ttl__ja {
    padding-right: 14px;
    font-size: 22px;
  }
  .top .top-ttl__ja::after {
    height: 25px;
    right: 5px;
  }
  .top .top-ttl__en {
    font-size: 14px;
  }
  .top .top-deco01 {
    width: 130px;
    height: 80px;
    border-radius: 0 100px 100px 50px;
  }
  .top .top-deco--01 {
    top: -20px;
    left: -24px;
  }
  .top .top-deco02 {
    width: 130px;
    height: 80px;
    border-radius: 0 100px 100px 50px;
  }
  .top .top-deco--02 {
    top: -20px;
    left: -24px;
  }
  .top .top-deco--03 {
    top: -20px;
    left: -24px;
  }
  .top .mv {
    height: auto;
    border-radius: 0 0 150px 0;
  }
  .top .mv__copy {
    width: 68.53%;
    top: 29.6vw;
    right: 24px;
  }
  .top .mv__img {
    width: 100%;
    height: auto;
  }
  .top .mv__img img {
    width: 100%;
    height: auto;
  }
  .top .top-navi {
    margin-top: -26px;
  }
  .top .top-navi .inner {
    padding: 0;
  }
  .top .top-navi__inner {
    padding: 13px 0 12px;
    background: rgba(255, 255, 255, 0.7);
    border: 3px solid #FFFFFF;
    -webkit-box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(35px);
    border-radius: 0;
  }
  .top .top-navi__ttl {
    font-size: 14px;
  }
  .top .top-navi__list {
    margin-top: 12px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .top .top-navi__item {
    width: 50%;
    text-align: center;
    border-left: 1px solid #F5F5F5;
  }
  .top .top-navi__item:first-child {
    border-left: none;
    border-bottom: 1px solid #F5F5F5;
  }
  .top .top-navi__item:nth-child(2) {
    border-bottom: 1px solid #F5F5F5;
  }
  .top .top-navi__item:nth-child(3) a a, .top .top-navi__item:nth-child(3) a {
    padding-top: 15px;
  }
  .top .top-navi__item a {
    padding: 11px 0 10px;
    display: block;
  }
  .top .top-navi__sttl {
    margin-top: 6px;
    font-size: 16px;
  }
  .top .top-navi__arrow {
    width: 16px;
    margin: 6px auto 0;
    line-height: 1;
  }
  .top .top-mission {
    margin-top: 100px;
    padding-bottom: 69px;
    border-radius: 0 0 0 80px;
  }
  .top .top-mission .top-ttl {
    width: 100%;
    padding-top: 0;
  }
  .top .top-mission__flex {
    width: 100%;
    margin-top: 43px;
  }
  .top .top-mission__img {
    width: 100%;
    position: static;
  }
  .top .top-mission__textarea {
    margin-top: 20px;
  }
  .top .top-mission__sttl {
    font-size: 18px;
    line-height: 1.66;
  }
  .top .top-mission__text {
    margin-top: 15px;
    font-size: 13px;
    line-height: 1.84;
  }
  .top .top-mission__point {
    margin-top: 31px;
    padding: 39px 25px 19px 20px;
  }
  .top .top-mission__point-ttl {
    padding: 6px 19px 4px 23px;
    font-size: 12px;
  }
  .top .top-mission__point-list {
    gap: 0 7%;
    line-height: 1.71;
  }
  .top .top-mission__point-item {
    padding-left: 16px;
    font-size: 14px;
  }
  .top .top-mission__point-item::before {
    font-size: 14px;
    line-height: 1.71;
  }
  .top .top-worries {
    margin-top: -70px;
    padding: 120px 0 32px;
  }
  .top .top-worries__tll {
    padding-bottom: 14px;
    font-size: 22px;
    text-align: center;
    line-height: 1.36;
  }
  .top .top-worries__list {
    margin-top: 30px;
    gap: 30px 0;
  }
  .top .top-worries__item {
    width: 100%;
  }
  .top .top-worries__item:first-child, .top .top-worries__item:nth-child(2) {
    width: 100%;
  }
  .top .top-worries__item:first-child .top-worries__item-inner, .top .top-worries__item:nth-child(2) .top-worries__item-inner {
    padding-bottom: 25px;
  }
  .top .top-worries__item-inner {
    padding: 26px 30px 25px 36px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .top .top-worries__item-text {
    font-size: 18px;
    text-align: left;
    line-height: 1.44;
  }
  .top .top-worries__item-icon {
    position: static;
  }
  .top .top-worries__center {
    text-align: right;
    padding-left: 0;
  }
  .top .top-worries__bold {
    margin-top: 34px;
    padding: 0 23px;
    font-size: 16px;
    line-height: 1.5;
  }
  .top .top-worries__bold::before {
    top: 58%;
    left: -10px;
    width: 40px;
    height: 3px;
  }
  .top .top-worries__bold::after {
    top: 58%;
    width: 40px;
    height: 3px;
    right: -10px;
  }
  .top .top-worries__img {
    width: 100px;
    bottom: -41px;
    left: 0;
  }
  .top .top-service {
    margin-top: -18px;
  }
  .top .top-service .wave {
    min-width: 100%;
  }
  .top .top-service .inner {
    padding-top: 86px;
  }
  .top .top-service__text {
    margin-top: 44px;
  }
  .top .top-service__list {
    margin-top: 38px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px 0;
  }
  .top .top-service__item {
    min-height: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .top .top-service__item:nth-child(odd) .top-service__img {
    border-radius: 100px 0 0 50px;
  }
  .top .top-service__item:nth-child(even) .top-service__textarea {
    margin: 0 0 0 auto;
  }
  .top .top-service__item:nth-child(even) .top-service__img {
    border-radius: 0 100px 50px 0;
  }
  .top .top-service__item:first-child .top-service__no {
    width: 60px;
    top: 17px;
  }
  .top .top-service__item:nth-child(2) .top-service__no {
    width: 71px;
    top: 17px;
  }
  .top .top-service__item:nth-child(3) .top-service__no {
    width: 73px;
    top: 17px;
  }
  .top .top-service__item:nth-child(4) .top-service__no {
    width: 76px;
    top: 17px;
  }
  .top .top-service__textarea {
    width: 100%;
    padding-top: 29px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .top .top-service__no {
    position: absolute;
    top: 4px;
    right: 0;
  }
  .top .top-service__sttl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0 6px;
  }
  .top .top-service__sttl-icon {
    width: 50px;
    display: block;
  }
  .top .top-service__sttl-text {
    font-size: 20px;
  }
  .top .top-service__stext {
    margin-top: 10px;
    line-height: 1.84;
  }
  .top .top-service__btn {
    width: 180px;
    margin: 10px auto 0;
  }
  .top .top-service__btn a {
    padding: 9px 0;
    font-size: 14px;
    gap: 0 5px;
  }
  .top .top-service__btn-icon {
    width: 16px;
    display: block;
    line-height: 1;
  }
  .top .top-service__img {
    width: 100vw;
    height: auto;
    margin: 0 calc(50vw - 50%) 0;
    position: static;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .top .top-service__img img {
    width: 100%;
    height: auto;
  }
  .top .top-partnership {
    margin-top: 50px;
  }
  .top .top-partnership::after {
    content: "";
    top: 50%;
    left: 0;
    width: 100%;
    height: 51%;
    display: block;
    position: absolute;
    background: #f2fbff;
    z-index: -2;
  }
  .top .top-partnership__contents {
    min-height: 0;
    padding: 38px 0 39px;
    border-radius: 0px 100px 0 0;
  }
  .top .top-partnership__img {
    width: 100vw;
    margin: 22px calc(50% - 50vw) 0;
    padding: 0 16px;
    text-align: center;
    position: static;
  }
  .top .top-partnership__textarea {
    width: 100%;
    margin-top: 27px;
    padding: 22px 36px 43px;
    border-radius: 0px 30px 30px 30px;
  }
  .top .top-partnership__sttl {
    font-size: 20px;
    line-height: 1.7;
  }
  .top .top-partnership__text {
    margin-top: 20px;
    line-height: 1.84;
  }
  .top .top-partnership__note {
    margin-top: 9px;
    font-size: 12px;
    line-height: 1.5;
  }
  .top .top-connection {
    padding: 45px 0 54px;
    border-radius: 0 0 0 100px;
  }
  .top .connection__ttl {
    font-size: 22px;
  }
  .top .splide {
    margin-top: 15px;
    padding: 0 24px;
  }
  .top .splide__slide {
    width: 100%;
    padding-bottom: 6px;
  }
  .top .top-connection__item {
    padding: 38px 30px 24px;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 6px 0px rgba(0, 0, 0, 0.15);
            box-shadow: 0px 6px 0px rgba(0, 0, 0, 0.15);
    border-radius: 50px 50px 20px 20px;
  }
  .top .top-connection__sttl {
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.71;
  }
  .top .top-connection__text {
    font-size: 14px;
    line-height: 1.71;
  }
  .top .splide__options {
    margin-top: 15px;
  }
  .top .splide__pagination {
    padding: 0 1em;
    position: static;
  }
  .top .splide__pagination__page {
    height: 15px;
    margin: 0 5px;
    width: 15px;
  }
  .top .splide__arrow {
    height: 30px;
    width: 30px;
  }
  .top .splide__arrow::after {
    content: "";
    width: 20px;
    height: 16px;
    position: absolute;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background: url("../../img/top/arrow_left.svg") no-repeat center center;
  }
  .top .splide__arrow.splide__arrow--next::after {
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
            transform: translate(-50%, -50%) rotate(180deg);
  }
  .top .top-news {
    margin-top: 93px;
    padding-bottom: 75px;
  }
  .top .news-page__list--top {
    margin-top: 36px;
  }
  .top .top-news__text {
    margin-top: 40px;
    line-height: 1.84;
  }
  .top .news-page__no-posts {
    padding: 0 24px;
  }
}
.news-page__list {
  margin-top: 54px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7px 0;
}

.news-page__item a {
  padding: 18px 65px 28px 55px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #f2fbff;
  border-radius: 20px 20px 50px 20px;
}
.news-page__item.important a {
  background: #fff9f8;
  border-color: #FFA489;
}
.news-page__item.important a .news-page__item-category {
  background: #FFA489;
}

.news-page__item-date {
  font-weight: 700;
}

.news-page__item-category {
  min-width: 110px;
  margin-top: 11px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  text-align: center;
  color: #FFF;
  background: var(--main-color);
  border-radius: 30px;
  display: inline-block;
}

.news-page__item-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--main-color);
}

.news-page__item-text {
  margin-top: 10px;
  font-weight: 500;
  line-height: 1.75;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.news-archive {
  padding-bottom: 187px;
}
.news-archive .term-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 23px;
}
.news-archive .term-list__item {
  width: 165px;
  position: relative;
}
.news-archive .term-list__item.important a {
  border-color: #FFA489;
  color: #FFA489;
}
.news-archive .term-list__item.important.active a {
  background-color: #FFA489;
  border-color: #FFA489;
  color: #FFF;
}
.news-archive .term-list__item.important.active::after {
  background: #FFA489;
}
.news-archive .term-list__item.active::after {
  content: "";
  width: 20px;
  height: 12px;
  display: block;
  position: absolute;
  left: 50%;
  bottom: -10px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #243787;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  pointer-events: none;
  z-index: -1;
}
.news-archive .term-list__item.active a {
  background: #243787;
  border-color: #243787;
  color: #FFF;
}
.news-archive .term-list__item a {
  padding: 5px;
  font-weight: 700;
  text-align: center;
  color: var(--main-color);
  display: block;
  border: 2px solid var(--main-color);
  border-radius: 45px;
}
.news-archive .pagination {
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px 30px;
}
.news-archive .cp_pagenum {
  font-size: 16px;
  font-weight: 700;
  color: var(--main-color);
}
.news-archive .current {
  font-size: 16px;
  font-weight: 700;
  color: var(--main-color);
}
.news-archive .cp_prev,
.news-archive .cp_next {
  width: 30px;
  height: 30px;
  overflow: hidden;
  text-indent: -999px;
}
.news-archive .cp_prev {
  margin-right: 5px;
  background: url("../../img/news/prev.svg") no-repeat center center/100% auto;
}
.news-archive .cp_next {
  margin-left: 5px;
  background: url("../../img/news/next.svg") no-repeat center center/100% auto;
}

@media screen and (max-width: 750px) {
  .news-page__list {
    width: 100vw;
    margin: 30px calc(50% - 50vw) 0;
    gap: 4px 0;
  }
  .news-page__item a {
    padding: 21px 24px 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    border-radius: 0;
  }
  .news-page__item-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0 9px;
  }
  .news-page__item-date {
    font-weight: 700;
  }
  .news-page__item-category {
    min-width: 100px;
    margin-top: 0;
    font-weight: 700;
  }
  .news-page__item-title {
    font-size: 14px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
  .news-page__item-text {
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.41;
  }
  .news-archive {
    padding-bottom: 60px;
  }
  .news-archive .term-list {
    gap: 15px 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .news-archive .term-list__item {
    width: 48.5%;
  }
  .news-archive .term-list__item.active::after {
    bottom: -6px;
  }
  .news-archive .pagination {
    margin-top: 40px;
    gap: 10px 25px;
  }
  .news-archive .cp_pagenum {
    font-size: 14px;
  }
  .news-archive .current {
    font-size: 14px;
  }
  .news-archive .cp_prev,
  .news-archive .cp_next {
    width: 25px;
    height: 25px;
  }
}
.contact {
  padding-bottom: 147px;
}
.contact input[type=text],
.contact input[type=email],
.contact input[type=tel] {
  margin: 0;
  padding: 14px 17px;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  background: #f2fbff;
  border-radius: 0 10px 10px 10px;
  display: block;
  font-size: 16px;
  font-weight: 500;
}
.contact textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  padding: 10px 17px;
  border: 0;
  background: transparent;
  width: 100%;
  height: 150px;
  background: #f4f4f4;
  border-radius: 0 10px 10px 10px;
  font-size: 16px;
  font-weight: 500;
}
.contact .step {
  max-width: 671px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
.contact .step::after {
  content: "";
  width: 100%;
  height: 3px;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  background: var(--main-color);
}
.contact .step__item {
  width: 180px;
  padding: 7px;
  color: var(--main-color);
  background: #FFF;
  border: 2px solid var(--main-color);
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 23px;
  position: relative;
  z-index: 1;
}
.contact .step__item.active {
  color: #FFF;
  background: var(--main-color);
}
.contact .step__item-en {
  font-size: 16px;
  font-weight: 700;
}
.contact .step__item-en span {
  font-size: 22px;
}
.contact .step__item-ja {
  font-size: 20px;
  font-weight: 700;
}
.contact .intro {
  max-width: 800px;
  margin: 60px auto 0;
}
.contact .intro-ttl {
  font-size: 26px;
  font-weight: 700;
  color: #243787;
}
.contact .intro-text {
  line-height: 1.87;
}
.contact .form-main {
  max-width: 800px;
  margin: 38px auto 0;
  padding-top: 40px;
  border-top: 1px solid #2F373B;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px 0;
}
.contact .form-box {
  display: grid;
  grid-template-columns: 204px 1fr;
}
.contact .form-box__l {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.contact .form-box__l--pt {
  padding-top: 13px;
}
.contact .form-box__ttl {
  font-weight: 500;
}
.contact .form-box__ttl--small {
  font-size: 14px;
  font-weight: 500;
}
.contact .form-box__required {
  margin-left: 10px;
  padding: 0 7px;
  font-size: 14px;
  font-weight: 700;
  color: #FFF;
  display: inline-block;
  background: #FFA489;
  border-radius: 10px;
}
.contact .gray input {
  background: #f4f4f4;
}
.contact .input-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px 69px;
}
.contact .input-radio label {
  position: relative;
  cursor: pointer;
  padding-left: 18px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact .input-radio label::before,
.contact .input-radio label::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
}
.contact .input-radio label::before {
  background-color: #FFF;
  border: 1px solid #2F373B;
  width: 14px;
  height: 14px;
  left: 0;
}
.contact .input-radio label::after {
  background-color: #cfd1d2;
  width: 8px;
  height: 8px;
  left: 3px;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.contact .input-radio label:has(input[type=radio]:checked)::after {
  opacity: 1;
}
.contact .input-radio input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
}
.contact .wpcf7-list-item {
  margin-left: 0;
}
.contact .input-note {
  font-size: 14px;
  font-weight: 500;
  line-height: 2.14;
}
.contact .input-check-wrap .wpcf7-form-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 38px;
}
.contact .input-check-wrap .wpcf7-list-item {
  margin: 0;
  display: block;
}
.contact .input-check-wrap .wpcf7-list-item:first-child, .contact .input-check-wrap .wpcf7-list-item:nth-child(4) {
  width: 162px;
}
.contact .input-check-wrap .wpcf7-list-item:nth-child(2), .contact .input-check-wrap .wpcf7-list-item:nth-child(5) {
  width: 211px;
}
.contact .input-check-wrap .wpcf7-list-item:nth-child(3), .contact .input-check-wrap .wpcf7-list-item:nth-child(6) {
  width: 146px;
}
.contact .input-check label {
  position: relative;
  cursor: pointer;
  padding-left: 18px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
}
.contact .input-check label::before,
.contact .input-check label::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
}
.contact .input-check label::before {
  background-color: #fff;
  border: 1px solid #ddd;
  width: 14px;
  height: 14px;
  left: 0;
}
.contact .input-check label::after {
  background-color: #cfd1d2;
  width: 8px;
  height: 8px;
  left: 3px;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.contact .input-check label:has(input[type=checkbox]:checked)::after {
  opacity: 1;
}
.contact .input-check input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
}
.contact .policy-box {
  max-width: 800px;
  margin: 50px auto 0;
  padding-top: 55px;
  text-align: center;
  border-top: 1px solid #808385;
}
.contact .policy-box .wpcf7-list-item-label {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.66;
}
.contact .policy-box label {
  position: relative;
  cursor: pointer;
  padding-left: 30px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact .policy-box label::before,
.contact .policy-box label::after {
  content: "";
  display: block;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
}
.contact .policy-box label::before {
  background-color: #fff;
  border: 1px solid #2F373B;
  width: 17px;
  height: 17px;
  left: 5px;
  border-radius: 5px;
}
.contact .policy-box label::after {
  border-bottom: 2px solid var(--main-color);
  border-right: 2px solid var(--main-color);
  width: 5px;
  height: 10px;
  left: 12px;
  top: 9px;
  opacity: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.contact .policy-box label:has(input[type=checkbox]:checked)::after {
  opacity: 1;
}
.contact .policy-box input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
}
.contact .policy-box__text {
  margin-top: 5px;
  font-size: 14px;
  line-height: 2.14;
}
.contact .policy-box__text a {
  color: var(--main-color);
  font-weight: 700;
  text-decoration: underline;
}
.contact .button-wrap {
  margin-top: 63px;
}
.contact .button-wrap__btn {
  width: 250px;
  margin: 0 auto;
  position: relative;
}
.contact .button-wrap__btn input {
  width: 100%;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 16px 0;
  font-weight: 700;
  color: var(--main-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 9px;
  border: 3px solid var(--main-color);
  border-radius: 50px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .contact .button-wrap__btn input:hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.contact .button-wrap__btn-icon {
  padding-bottom: 6px;
  line-height: 1;
  position: absolute;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-form-confirm .form-box {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-form-confirm .form-box__l--pt {
  padding-top: 0;
}
.c-form-confirm .form-box__r {
  padding: 14px 17px;
  width: 100%;
  background: #f2fbff;
  border-radius: 0 10px 10px 10px;
  display: block;
  font-size: 16px;
  font-weight: 500;
}
.c-form-confirm .form-box__r.gray {
  background: #f4f4f4;
}
.c-form-confirm .button-wrap {
  max-width: 800px;
  width: 100%;
  margin: 58px auto 0;
  padding-top: 50px;
  border-top: 1px solid #808385;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 10%;
}
.c-form-confirm .button-wrap__btn {
  margin: 0;
}
.c-form-confirm .button-wrap__btn-back {
  width: 250px;
  margin: 0;
  position: relative;
}
.c-form-confirm .button-wrap__btn-back input {
  width: 100%;
  background-color: #efefef;
  border: none;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 16px 0;
  font-weight: 700;
  color: #969696;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 9px;
  border: 3px solid #d4d4d4;
  border-radius: 50px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .c-form-confirm .button-wrap__btn-back input:hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.c-form-confirm .button-wrap__btn-back-icon {
  padding-bottom: 6px;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-form-confirm .wpcf7-spinner {
  display: none;
}

.thanks__bold {
  margin-top: 64px;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.15;
  text-align: center;
  color: #243787;
}

.thanks__text {
  margin-top: 40px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.88;
  text-align: center;
}

.thanks__box {
  max-width: 593px;
  margin: 56px auto 0;
  padding: 24px 0;
  border-top: 1px solid #8c9092;
  border-bottom: 1px solid #8c9092;
  display: grid;
  grid-template-columns: 137px 1fr;
  gap: 0 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.thanks__box-ttl {
  padding: 34px 0;
  font-size: 14px;
  font-weight: 500;
  background: #f2fbff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0 80px 80px 30px;
}

.thanks__box-textarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 17px 0;
}

.thanks__box-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 16px;
  font-size: 14px;
  font-weight: 500;
}

.thanks__box-l {
  width: 175px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 10px;
}

.thanks__box-icon {
  width: 25px;
  display: block;
}

.thanks__box-r {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.thanks__box-text {
  display: block;
}

.thanks__box-small {
  font-size: 12px;
}

.thanks__btns {
  max-width: 800px;
  margin: 103px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.thanks__btn {
  width: 31.25%;
}
.thanks__btn a {
  padding: 16px 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--main-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 9px;
  border: 3px solid var(--main-color);
  border-radius: 50px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.thanks__btn a span {
  display: block;
}
@media (hover: hover) and (pointer: fine) {
  .thanks__btn a:hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

@media screen and (max-width: 750px) {
  .contact {
    padding-bottom: 60px;
  }
  .contact input[type=text],
  .contact input[type=email],
  .contact input[type=tel] {
    padding: 14px 17px;
    font-size: 16px;
  }
  .contact textarea {
    height: 150px;
    font-size: 16px;
  }
  .contact .step::after {
    height: 2px;
  }
  .contact .step__item {
    width: 100px;
    padding: 4px;
    border-radius: 30px;
    gap: 0 8px;
  }
  .contact .step__item-en {
    font-size: 10px;
  }
  .contact .step__item-en span {
    font-size: 12px;
  }
  .contact .step__item-ja {
    font-size: 16px;
  }
  .contact .intro {
    margin: 30px auto 0;
  }
  .contact .intro-ttl {
    font-size: 16px;
  }
  .contact .form-main {
    margin: 20px auto 0;
    padding-top: 20px;
    gap: 30px 0;
  }
  .contact .form-box {
    grid-template-columns: 1fr;
    gap: 15px 0;
  }
  .contact .form-box__l {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .contact .form-box__l--pt {
    padding-top: 0;
  }
  .contact .form-box__ttl--small {
    font-size: 10px;
  }
  .contact .form-box__required {
    margin-left: 10px;
    padding: 0 5px;
    font-size: 10px;
  }
  .contact .input-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px 25px;
  }
  .contact .input-radio label {
    padding-left: 18px;
  }
  .contact .wpcf7-list-item {
    margin-left: 0;
  }
  .contact .input-note {
    font-size: 10px;
    line-height: 2;
  }
  .contact .input-check-wrap .wpcf7-form-control {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px 25px;
  }
  .contact .input-check-wrap .wpcf7-list-item {
    margin: 0;
    display: block;
  }
  .contact .input-check-wrap .wpcf7-list-item:first-child, .contact .input-check-wrap .wpcf7-list-item:nth-child(4) {
    width: 100%;
  }
  .contact .input-check-wrap .wpcf7-list-item:nth-child(2), .contact .input-check-wrap .wpcf7-list-item:nth-child(5) {
    width: 100%;
  }
  .contact .input-check-wrap .wpcf7-list-item:nth-child(3), .contact .input-check-wrap .wpcf7-list-item:nth-child(6) {
    width: 100%;
  }
  .contact .input-check label {
    padding-left: 18px;
    font-size: 14px;
  }
  .contact .policy-box {
    margin: 25px auto 0;
    padding-top: 30px;
  }
  .contact .policy-box .wpcf7-list-item-label {
    font-size: 16px;
  }
  .contact .policy-box label {
    padding-left: 30px;
  }
  .contact .policy-box label::after {
    top: 7px;
  }
  .contact .policy-box__text {
    margin-top: 5px;
    font-size: 12px;
    line-height: 2;
  }
  .contact .button-wrap {
    margin-top: 30px;
  }
  .contact .button-wrap__btn input {
    width: 100%;
    padding: 11px 0;
    font-size: 14px;
    border: 3px solid var(--main-color);
  }
  .c-form-confirm .form-box__r {
    padding: 14px 17px;
    font-size: 14px;
  }
  .c-form-confirm .button-wrap {
    margin: 30px auto 0;
    padding-top: 25px;
    gap: 0 4%;
  }
  .c-form-confirm .button-wrap__btn-back {
    width: 250px;
    margin: 0;
    position: relative;
  }
  .c-form-confirm .button-wrap__btn-back input {
    width: 100%;
    padding: 11px 0;
    font-size: 14px;
  }
  .c-form-confirm .wpcf7-spinner {
    display: none;
  }
  .thanks__bold {
    margin-top: 32px;
    font-size: 18px;
  }
  .thanks__text {
    margin-top: 20px;
    font-size: 12px;
  }
  .thanks__box {
    margin: 30px auto 0;
    padding: 12px 0;
    grid-template-columns: 100px 1fr;
    gap: 0 15px;
  }
  .thanks__box-ttl {
    padding: 20px 0;
    font-size: 12px;
    border-radius: 0 80px 80px 30px;
  }
  .thanks__box-textarea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 17px 0;
  }
  .thanks__box-item {
    gap: 0 10px;
    font-size: 12px;
  }
  .thanks__box-l {
    width: 100%;
    gap: 0 5px;
  }
  .thanks__box-icon {
    width: 25px;
  }
  .thanks__box-r {
    margin-top: 5px;
  }
  .thanks__box-small {
    font-size: 10px;
  }
  .thanks__btns {
    margin: 50px auto 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px 0;
  }
  .thanks__btn {
    width: 100%;
  }
  .thanks__btn a {
    padding: 11px 0;
    font-size: 14px;
    -webkit-transition: 0s;
    transition: 0s;
  }
}
.privacy-policy__contents {
  padding-bottom: 127px;
}

.privacy-policy__bold01 {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.87;
}

.privacy-policy__bold02 {
  margin-top: 20px;
  font-weight: 700;
  line-height: 1.87;
}
.privacy-policy__bold02.mt0 {
  margin-top: 0;
}

.privacy-policy__text {
  font-weight: 500;
  line-height: 1.87;
}

.privacy-policy__list {
  margin-top: 33px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px 0;
}

.privacy-policy__item-ttl {
  margin-bottom: 10px;
  padding: 5px 19px;
  font-size: 20px;
  font-weight: 700;
  color: #FFF;
  background: var(--main-color);
  border-radius: 30px 30px 0px 30px;
}

.privacy-policy__sub-list {
  margin-top: 8px;
  line-height: 1.87;
}

.privacy-policy__sub-item {
  padding-left: 16px;
  font-weight: 500;
  position: relative;
}
.privacy-policy__sub-item::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.87;
}

.privacy-policy__access {
  margin-top: 20px;
  padding: 10px 0;
  border-top: 1px solid #8c9092;
  border-bottom: 1px solid #8c9092;
}

.privacy-policy__access-name {
  font-weight: 500;
  line-height: 1.87;
}
.privacy-policy__access-name span {
  font-weight: 700;
}

.privacy-policy__day {
  margin-top: 60px;
  font-weight: 700;
}

.privacy-policy__note {
  font-weight: 500;
  line-height: 1.87;
}

@media screen and (max-width: 750px) {
  .privacy-policy__contents {
    padding-bottom: 60px;
  }
  .privacy-policy__bold01 {
    margin-top: 10px;
    font-size: 16px;
  }
  .privacy-policy__bold02 {
    margin-top: 10px;
  }
  .privacy-policy__bold02.mt0 {
    margin-top: 0;
  }
  .privacy-policy__list {
    margin-top: 15px;
    gap: 24px 0;
  }
  .privacy-policy__item-ttl {
    margin-bottom: 5px;
    padding: 5px 15px;
    font-size: 18px;
    border-radius: 15px 15px 0px 15px;
  }
  .privacy-policy__sub-list {
    margin-top: 8px;
  }
  .privacy-policy__sub-item {
    padding-left: 16px;
  }
  .privacy-policy__sub-item::before {
    font-size: 16px;
  }
  .privacy-policy__access {
    margin-top: 10px;
    padding: 5px 0;
  }
  .privacy-policy__day {
    margin-top: 30px;
  }
}
.post-back {
  width: 200px;
}
.post-back a {
  padding: 16px 0;
  font-weight: 700;
  color: var(--main-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 9px;
  border: 3px solid var(--main-color);
  border-radius: 50px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.post-back a span {
  display: block;
}
@media (hover: hover) and (pointer: fine) {
  .post-back a:hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

.post-back__icon {
  padding-bottom: 6px;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.post-header {
  margin-top: 35px;
  padding: 20px 0;
  border-top: 5px solid #2F373B;
  border-bottom: 1px dotted #2F373B;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px 34px;
}

.post-date {
  font-weight: 700;
}

.post-category {
  min-width: 110px;
  padding: 4px 15px;
  color: #FFF;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  background: var(--main-color);
  display: inline-block;
  border-radius: 30px;
}

.post-body {
  margin-top: 22px;
  padding-bottom: 187px;
  line-height: 2;
}
.post-body strong {
  font-weight: 700;
}
.post-body a {
  color: var(--main-color);
  text-decoration: underline;
  line-height: 2;
}
.post-body a:hover {
  text-decoration: none;
}

.post-ttl {
  margin-bottom: 25px;
  font-size: 24px;
  font-weight: 700;
  color: #243787;
}

.post-heading01 {
  margin-top: 35px;
  margin-bottom: 5px;
  font-size: 24px;
  font-weight: 700;
  color: #243787;
}

.post-heading02 {
  margin-top: 35px;
  margin-bottom: 5px;
  padding-left: 5px;
  font-size: 22px;
  font-weight: 700;
  color: #243787;
  border-left: 5px solid #243787;
}

.post-heading03 {
  margin-top: 35px;
  margin-bottom: 5px;
  padding-bottom: 10px;
  font-size: 22px;
  font-weight: 700;
  color: #243787;
  border-bottom: 1px solid #243787;
}

.post-heading04 {
  margin-top: 35px;
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 700;
  color: #243787;
}

.post-heading05 {
  margin-top: 35px;
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 700;
  color: #243787;
}

.post-heading06 {
  margin-top: 35px;
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 700;
  color: #243787;
}

.post-img01 {
  width: 47.27%;
  margin: 64px auto 83px;
}

.post-img01__caption {
  font-size: 14px;
  font-weight: 500;
}

.post-img-r {
  margin: 64px auto 83px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.post-img-r__img {
  width: 47.27%;
}

.post-img-r__text {
  width: 45.45%;
}

.post-img-l {
  margin: 64px auto 83px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.post-img-l__img {
  width: 47.27%;
}

.post-img-l__text {
  width: 45.45%;
}

.post-img-w {
  margin: 64px auto 83px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.post-img-w__box {
  width: 47.27%;
}

.post-movie {
  width: 63.64%;
  margin: 64px auto 83px;
}

.post-movie__movie {
  width: 100%;
  aspect-ratio: 16/9;
}
.post-movie__movie iframe {
  width: 100%;
  height: 100%;
}

.post-movie__text {
  font-size: 14px;
  font-weight: 500;
}

@media screen and (max-width: 750px) {
  .post-back {
    width: 180px;
  }
  .post-back a {
    padding: 11px 0;
    font-size: 14px;
  }
  .post-back__icon {
    width: 16px;
    padding-bottom: 6px;
    left: 15px;
  }
  .post-header {
    margin-top: 20px;
    padding: 10px 0;
    border-top: 3px solid #2F373B;
    gap: 10px 15px;
  }
  .post-category {
    min-width: 100px;
    padding: 4px 15px;
  }
  .post-body {
    margin-top: 10px;
    padding-bottom: 60px;
    line-height: 2;
  }
  .post-ttl {
    margin-bottom: 10px;
    font-size: 21px;
  }
  .post-heading01 {
    margin-top: 25px;
    margin-bottom: 2px;
    font-size: 21px;
  }
  .post-heading02 {
    margin-top: 25px;
    margin-bottom: 2px;
    padding-left: 5px;
    font-size: 19px;
    border-left: 3px solid #243787;
  }
  .post-heading03 {
    margin-top: 25px;
    margin-bottom: 2px;
    padding-bottom: 2px;
    font-size: 19px;
  }
  .post-heading04 {
    margin-top: 25px;
    margin-bottom: 2px;
    font-size: 17px;
  }
  .post-heading05 {
    margin-top: 25px;
    margin-bottom: 2px;
    font-size: 15px;
  }
  .post-heading06 {
    margin-top: 25px;
    margin-bottom: 2px;
    font-size: 13px;
  }
  .post-img01 {
    width: 47.27%;
    margin: 64px auto 83px;
  }
  .post-img01__caption {
    font-size: 12px;
  }
  .post-img-r {
    margin: 32px auto 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px 0;
  }
  .post-img-r__img {
    width: 100%;
  }
  .post-img-r__text {
    width: 100%;
  }
  .post-img-l {
    margin: 32px auto 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px 0;
  }
  .post-img-l__img {
    width: 100%;
  }
  .post-img-l__text {
    width: 100%;
  }
  .post-img-w {
    margin: 32px auto 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px 0;
  }
  .post-img-w__box {
    width: 100%;
  }
  .post-movie {
    width: 100%;
    margin: 32px auto 40px;
  }
  .post-movie__text {
    font-size: 12px;
  }
}