@charset "utf-8";
audio:not([controls]),
[hidden] {
  display: none;
}
input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input:focus,
textarea:focus {
  outline: none;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select::-ms-expand {
  display: none;
}
select:focus {
  outline: none;
}
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@import url("http://fonts.googleapis.com/earlyaccess/notosansjp.css");
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,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: inherit;
  font-style: inherit;
  vertical-align: baseline;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
table {
  border-collapse: separate;
  border-spacing: 0;
  vertical-align: middle;
}
caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}
a img {
  border: none;
}
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
main {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
}
audio,
canvas,
video {
  display: inline-block;
}
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  font-family: "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic,
    "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  position: relative;
  min-height: 100vh;
  width: 100%;
  line-height: 1.2;
  color: #333;
  z-index: 1;
  font-weight: 500;
}
.body__bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(#d6d9ec),
    to(#fff)
  );
  background: linear-gradient(270deg, #d6d9ec 0%, #fff 100%);
}
.body__bg:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/common/bg_sp.webp");
  background-size: cover;
  z-index: 1;
}
@media screen and (min-width: 835px) {
  .body__bg:before {
    background-image: url("../img/common/bg_pc.webp");
  }
}
a {
  cursor: pointer;
}
a:link,
a:active {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.item--pc {
  display: none;
}
@media screen and (min-width: 835px) {
  .item--pc {
    display: block;
  }
}
.item--sp {
  display: block;
}
@media screen and (min-width: 835px) {
  .item--sp {
    display: none;
  }
}
#cursor-follower,
#cursor-trail,
#cursor-join {
  display: none;
}
@media screen and (min-width: 835px) {
  #cursor-follower,
  #cursor-trail,
  #cursor-join {
    display: block;
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
#cursor-follower {
  width: 10px;
  height: 10px;
  background-color: #ec6c00;
  z-index: 9999;
  opacity: 0.8;
}
#cursor-trail {
  width: 15px;
  height: 15px;
  background-color: #4652a1;
  opacity: 0.5;
  z-index: 9998;
}
#cursor-join {
  position: fixed;
  width: 200px;
  height: 200px;
  background-color: #0669db;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  -webkit-transform: translate(-50%, -50%) scale(0.6);
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease,
    -webkit-transform 0.4s ease;
}
#cursor-join span {
  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;
  width: 100%;
  height: 100%;
  font-size: 30px;
  letter-spacing: 0.05em;
  color: #fff;
  font-family: "Raleway", sans-serif;
}
#cursor-join.is-visible {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}
.header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 60px;
  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;
}
@media screen and (min-width: 835px) {
  .header {
    height: 110px;
  }
}
.header.top {
  opacity: 0;
}
.header.top.is-show {
  opacity: 1;
  -webkit-transition: opacity 0.5s 1.5s;
  transition: opacity 0.5s 1.5s;
}
.header__logo {
  margin-left: 12px;
  position: relative;
  z-index: 12;
}
@media screen and (min-width: 835px) {
  .header__logo {
    margin-left: 3%;
  }
}
.header__logo a {
  width: 330px;
  height: 38px;
  display: block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}

@media screen and (max-width: 500px) {
  .header__logo a {
    width: 220px;
  }
}

.header__logo a:hover {
  opacity: 0.8;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 835px) {
  .header__logo a {
    width: 340px;
    height: 50px;
  }
}
.header__logo a img {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.header__logo a img:nth-of-type(2) {
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

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

.header__pcMenu {
  display: none;
}
@media screen and (min-width: 835px) {
  .header__pcMenu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 32px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .header__pcMenu a {
    font-size: 14px;
    font-weight: bold;
    color: #0669db;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
}
.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 835px) {
  .header__right {
    gap: 60px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.header__lineBtn {
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #0669db;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__lineBtn:hover {
  background: #bfe100;
}
@media screen and (min-width: 835px) {
  .header__lineBtn {
    position: fixed;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    top: 300px;
    right: 0;
    gap: 5px;
    height: 264px;
    border-radius: 10px 0px 0px 10px;
    -webkit-box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.25);
    z-index: 10;
  }
}
.header__lineBtn img {
  width: 42px;
}
@media screen and (min-width: 835px) {
  .header__lineBtn img {
    width: 52px;
  }
}
.header__lineBtn p {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #0669db;
  margin-top: -3px;
}
@media screen and (min-width: 835px) {
  .header__lineBtn p {
    font-size: 18px;
    font-weight: bold;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
}
.header__lineBtn p span {
  display: none;
}
@media screen and (min-width: 835px) {
  .header__lineBtn p span {
    display: inline;
  }
}
.hamburger {
  -webkit-appearance: none;
  -ms-progress-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-transform: translateZ(0);
  z-index: 10001;
  position: fixed;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: none;
  background: #0669db;
  text-align: center;
  cursor: pointer;
  -webkit-transition-property: background, -webkit-transform;
  transition-property: background, -webkit-transform;
  transition-property: transform, background;
  transition-property: transform, background, -webkit-transform;
}
@media screen and (min-width: 835px) {
  .hamburger {
    width: 110px;
    height: 110px;
  }
}
.hamburger.is-open {
  background-color: #fff;
}
.hamburger.is-open .hamburger__bar--first {
  margin-top: 0 !important;
  -webkit-transform: rotate(35deg);
  transform: rotate(35deg);
}
.hamburger.is-open .hamburger__bar--first:before {
  background-color: #0669db !important;
}
.hamburger.is-open .hamburger__bar--second {
  margin-top: 0 !important;
  -webkit-transform: rotate(-35deg);
  transform: rotate(-35deg);
}
.hamburger.is-open .hamburger__bar--second:before {
  background-color: #0669db !important;
}
.hamburger.is-open .hamburger__str:before {
  letter-spacing: 3px;
  content: "Close";
  color: #0669db !important;
}
.hamburger.is-open:focus:not(:focus-visible) {
  outline: 0;
}
.hamburger .hamburger__bars {
  position: absolute;
  top: 40%;
  left: 50%;
  width: 28px;
  height: 14px;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
}
@media screen and (min-width: 835px) {
  .hamburger .hamburger__bars {
    width: 52px;
  }
}
.hamburger .hamburger__bars .hamburger__bar--first {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  margin-top: -7px;
  -webkit-transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition-property: margin, -webkit-transform;
  transition-property: margin, -webkit-transform;
  transition-property: transform, margin;
  transition-property: transform, margin, -webkit-transform;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  will-change: auto;
}
@media screen and (min-width: 835px) {
  .hamburger .hamburger__bars .hamburger__bar--first {
    height: 5px;
  }
}
.hamburger .hamburger__bars .hamburger__bar--first:before {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 3px;
  background: #fff;
  content: "";
  will-change: auto;
}
@media screen and (min-width: 835px) {
  .hamburger .hamburger__bars .hamburger__bar--first:before {
    height: 5px;
  }
}
.hamburger .hamburger__bars .hamburger__bar--second {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  margin-top: 4px;
  -webkit-transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition-property: margin, -webkit-transform;
  transition-property: margin, -webkit-transform;
  transition-property: transform, margin;
  transition-property: transform, margin, -webkit-transform;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  will-change: auto;
}
@media screen and (min-width: 835px) {
  .hamburger .hamburger__bars .hamburger__bar--second {
    height: 5px;
    margin-top: 8px;
  }
}
.hamburger .hamburger__bars .hamburger__bar--second:before {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 3px;
  background: #fff;
  content: "";
  will-change: auto;
}
@media screen and (min-width: 835px) {
  .hamburger .hamburger__bars .hamburger__bar--second:before {
    height: 5px;
  }
}
.hamburger .hamburger__str {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hamburger .hamburger__str:before {
  position: absolute;
  top: 65%;
  left: 50%;
  width: 52px;
  height: 20px;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
  color: #fff;
  font-size: 8px;
  font-weight: bold;
  letter-spacing: 2.56px;
  text-align: center;
  white-space: nowrap;
  content: "Menu";
  font-family: "Raleway", sans-serif;
  text-shadow: 0px 4px 16px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 835px) {
  .hamburger .hamburger__str:before {
    font-size: 12px;
    letter-spacing: 6px;
  }
}
.hamburger:hover .hamburger__bar--first:before {
  -webkit-animation: hamburger 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
  -webkit-animation-fill-mode: both;
  -webkit-transform-origin: right center;
  transform-origin: right center;
  animation: hamburger 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
  animation-fill-mode: both;
}
.hamburger:hover .hamburger__bar--second:before {
  -webkit-animation: hamburger 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
  -webkit-animation-fill-mode: both;
  -webkit-transform-origin: right center;
  transform-origin: right center;
  animation: hamburger 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
  animation-fill-mode: both;
}
body.drawer-opened {
  height: 100%;
  overflow: hidden;
}
body.drawer-opened .l-drawer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 10000;
}
body.drawer-opening .l-drawer {
  -webkit-animation: drawer-open 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -webkit-animation-fill-mode: both;
  animation: drawer-open 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  animation-fill-mode: both;
}
body.drawer-closing .l-drawer {
  -webkit-animation: drawer-close 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  -webkit-animation-fill-mode: both;
  animation: drawer-close 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  animation-fill-mode: both;
}
.header__menu {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s ease, visibility 0s linear 2s;
  transition: opacity 0.5s ease, visibility 0s linear 2s;
}
.header__menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/common/menu_bg_sp.webp");
  background-size: cover;
  background-position: center;
  opacity: 0;
  -webkit-transition: opacity 0s ease 0s;
  transition: opacity 0s ease 0s;
  z-index: 1;
}
.header__menu.is-open {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.5s ease, visibility 0s;
  transition: opacity 0.5s ease, visibility 0s;
}
.header__menu.is-open::before {
  opacity: 1;
  -webkit-transition: opacity 1s ease 0.2s;
  transition: opacity 1s ease 0.2s;
}
@media screen and (min-width: 835px) {
  .header__menu::before {
    background-image: url("../img/common/menu_bg_pc.webp");
  }
}
.header__menu__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.header__menu__bg.is-open .header__menu__bg__item {
  -webkit-transform: translate(0%, 0px) skew(-29.5deg, 0deg) scale(1, 1);
  transform: translate(0%, 0px) skew(-29.5deg, 0deg) scale(1, 1);
}
.header__menu__bg.is-open .header__menu__bg__item:nth-of-type(1) {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.header__menu__bg.is-open .header__menu__bg__item:nth-of-type(2) {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.header__menu__bg.is-open .header__menu__bg__item:nth-of-type(3) {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.header__menu__bg.is-open .header__menu__bg__item:nth-of-type(4) {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.header__menu__bg:not(.is-open) .header__menu__bg__item:nth-of-type(1) {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.header__menu__bg:not(.is-open) .header__menu__bg__item:nth-of-type(2) {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.header__menu__bg:not(.is-open) .header__menu__bg__item:nth-of-type(3) {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.header__menu__bg:not(.is-open) .header__menu__bg__item:nth-of-type(4) {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.header__menu__bg__item {
  -webkit-transform: translate(-15%, 100%) skew(-29.5deg, 0deg) scale(1, 0);
  transform: translate(-15%, 100%) skew(-29.5deg, 0deg) scale(1, 0);
  -webkit-transform-origin: top;
  transform-origin: top;
  width: 70vw;
  height: 112vh;
  position: absolute;
  background: #0669db;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  will-change: transform;
}
@media screen and (min-width: 835px) {
  .header__menu__bg__item {
    width: 48vw;
    height: 102vh;
  }
}
.header__menu__bg__item:nth-of-type(1) {
  right: -148vw;
  top: 0;
}
@media screen and (min-width: 835px) {
  .header__menu__bg__item:nth-of-type(1) {
    right: -58.47vw;
  }
}
.header__menu__bg__item:nth-of-type(2) {
  right: -85.33vw;
  top: 0;
}
@media screen and (min-width: 835px) {
  .header__menu__bg__item:nth-of-type(2) {
    right: -19.59vw;
  }
}
.header__menu__bg__item:nth-of-type(3) {
  right: -22.66vw;
  top: 0;
}
@media screen and (min-width: 835px) {
  .header__menu__bg__item:nth-of-type(3) {
    right: 19.74vw;
  }
}
.header__menu__bg__item:nth-of-type(4) {
  right: 40vw;
  top: 0;
}
@media screen and (min-width: 835px) {
  .header__menu__bg__item:nth-of-type(4) {
    right: 59.73vw;
  }
}
.header__menu__container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 90px 36px 0;
  z-index: 10;
}
@media screen and (min-width: 835px) {
  .header__menu__container {
    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;
    padding: 0;
  }
}
.header__menu__logo {
  margin-left: 12px;
  position: absolute;
  left: 0;
  top: 0;
  height: 60px;
  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;
}
@media screen and (min-width: 835px) {
  .header__menu__logo {
    height: 110px;
    margin-left: 30px;
  }
}
.header__menu__logo a {
  width: 250px;
  height: 38px;
  display: block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
}
@media screen and (min-width: 835px) {
  .header__menu__logo a {
    width: 330px;
    height: 50px;
  }
}
.header__menu__logo a img {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.header__menu__logo a img:nth-of-type(2) {
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.header__menu__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 835px) {
  .header__menu__main {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 1000px;
    margin: auto;
  }
}
.header__menu__head {
  font-family: "Raleway", sans-serif;
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 16px;
  display: block;
}
@media screen and (min-width: 835px) {
  .header__menu__head {
    font-size: 48px;
    margin-bottom: 20px;
  }
}
a.header__menu__head {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
a.header__menu__head:hover {
  opacity: 0.8;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header__menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px 30px;
  border-left: 1px solid #aad1ff;
  padding-left: 20px;
}
@media screen and (min-width: 835px) {
  .header__menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
    border-left: 1px solid #aad1ff;
    padding-left: 30px;
  }
}
.header__menu__list a {
  color: #fff;
  font-size: 14px;
  font-weight: normal;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.header__menu__list a:hover {
  opacity: 0.8;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 835px) {
  .header__menu__list a {
    font-size: 16px;
  }
}
.header__menu__list a img {
  margin-left: 5px;
}
.header__menu__boxlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 835px) {
  .header__menu__boxlist {
    gap: 40px;
  }
}
.header__menu__sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 835px) {
  .header__menu__sub {
    gap: 34px;
  }
}
.header__menu__sub a {
  font-family: "Raleway", sans-serif;
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.header__menu__sub a:hover {
  opacity: 0.8;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 835px) {
  .header__menu__sub a {
    font-size: 48px;
  }
}
@-webkit-keyframes hamburger {
  50% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
  51% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes hamburger {
  50% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
  51% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@-webkit-keyframes drawer-open {
  0% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes drawer-open {
  0% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes drawer-close {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0;
  }
}
@keyframes drawer-close {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0;
  }
}
@-webkit-keyframes hamburger {
  50% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
  51% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes hamburger {
  50% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
  51% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.page__container,
.page__container--w {
  position: relative;
  padding: 40px 0 60px;
}
@media screen and (min-width: 835px) {
  .page__container,
  .page__container--w {
    padding: 80px 0 160px;
  }
}
.page__container--w {
  background: #fff;
}
.page__topdeco {
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  z-index: -1;
}
@media screen and (min-width: 835px) {
  .page__topdeco {
    height: 60px;
    top: -60px;
  }
}
.page__inner,
.page__inner--l {
  padding: 0 24px;
}
@media screen and (min-width: 835px) {
  .page__inner,
  .page__inner--l {
    max-width: 900px;
    margin: auto;
  }
}
@media screen and (min-width: 835px) {
  .page__inner--l {
    max-width: 1040px;
  }
}
.head {
  height: 210px;
  position: relative;
  padding-left: 24px;
  padding-top: 85px;
  overflow: hidden;
  z-index: 11;
}
@media screen and (min-width: 835px) {
  .head {
    height: 350px;
    padding-top: 160px;
    padding-left: 130px;
  }
}
.head.is-show .head__eng {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  transition: clip-path 0.8s cubic-bezier(0.43, 0.05, 0.17, 1),
    -webkit-clip-path 0.8s cubic-bezier(0.43, 0.05, 0.17, 1);
}
.head.is-show .head__eng:after {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}
.head.is-show .head__img__line {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}
.head.is-show .u-animation:before {
  -webkit-animation-name: obiStartY, obiEndY;
  animation-name: obiStartY, obiEndY;
  -webkit-animation-duration: 0.8s, 0.6s;
  animation-duration: 0.8s, 0.6s;
  -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1),
    cubic-bezier(0.6, 0, 0.07, 1);
  animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1),
    cubic-bezier(0.6, 0, 0.07, 1);
  -webkit-animation-delay: 0s, 0.6s;
  animation-delay: 0s, 0.6s;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.head.is-show .u-animation > img,
.head.is-show .u-animation > h2,
.head.is-show .u-animation > p,
.head.is-show .u-animation > div {
  -webkit-animation: displayActive 0s 0.6s forwards;
  animation: displayActive 0s 0.6s forwards;
}
.head.small {
  height: 190px;
  padding-top: 60px;
}
@media screen and (min-width: 835px) {
  .head.small {
    height: 300px;
    padding-top: 100px;
  }
}
.head.small .head__eng {
  font-size: 40px;
}
@media screen and (min-width: 835px) {
  .head.small .head__eng {
    font-size: 80px;
  }
}
.head__img {
  height: 150px;
  width: auto;
  position: absolute;
  right: -150px;
  bottom: 0;
}
@media screen and (min-width: 835px) {
  .head__img {
    height: 100%;
    right: 0;
  }
}
.head__img__line {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  -webkit-transform: translate(-40%, 100%);
  transform: translate(-40%, 100%);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease,
    -webkit-transform 0.8s cubic-bezier(0.43, 0.05, 0.17, 1);
  transition: opacity 0.3s ease,
    -webkit-transform 0.8s cubic-bezier(0.43, 0.05, 0.17, 1);
  transition: transform 0.8s cubic-bezier(0.43, 0.05, 0.17, 1),
    opacity 0.3s ease;
  transition: transform 0.8s cubic-bezier(0.43, 0.05, 0.17, 1),
    opacity 0.3s ease, -webkit-transform 0.8s cubic-bezier(0.43, 0.05, 0.17, 1);
  -webkit-transition-delay: 0.5s, 1s;
  transition-delay: 0.5s, 1s;
}
.head__img__main,
.head__img__main--sec {
  -webkit-mask-image: url("../img/head/mask.png");
  mask-image: url("../img/head/mask.png");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
}
.head__img__main img,
.head__img__main--sec img {
  height: 160%;
  display: block;
}
.head__img__main--sec img {
  height: 140%;
}
.head__title {
  font-size: 11px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  margin-left: 10px;
}
@media screen and (min-width: 835px) {
  .head__title {
    font-size: 13px;
    gap: 10px;
  }
}
.head__title span {
  width: 3px;
  height: 15px;
  background: #0669db;
  -webkit-transform: skew(-30deg);
  transform: skew(-30deg);
  display: inline-block;
}
@media screen and (min-width: 835px) {
  .head__title span {
    width: 4px;
    height: 20px;
  }
}
.head__eng {
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  color: #4176fe;
  font-family: "Raleway", sans-serif;
  font-weight: bold;
  position: relative;
  font-size: 54px;
}
@media screen and (min-width: 835px) {
  .head__eng {
    font-size: 80px;
  }
}
.head__eng:after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  color: #333;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.43, 0.05, 0.17, 1),
    -webkit-clip-path 0.8s cubic-bezier(0.43, 0.05, 0.17, 1);
  -webkit-transition-delay: 0.45s;
  transition-delay: 0.45s;
}
.page__thanks h2 {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  line-height: 1.8;
}
@media screen and (min-width: 835px) {
  .page__thanks h2 {
    font-size: 40px;
  }
}
.page__thanks p {
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.8;
  margin-top: 20px;
}
@media screen and (min-width: 835px) {
  .page__thanks p {
    font-size: 18px;
    margin-top: 40px;
  }
}
.page__thanks a {
  border-radius: 28px;
  background: #0669db;
  width: 240px;
  height: 56px;
  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;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  margin: 40px auto 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.page__thanks a:hover {
  opacity: 0.8;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 835px) {
  .page__thanks a {
    margin: 60px auto 0;
  }
}
.page__content .first {
  margin-top: 0;
}
.page__content h1 {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (min-width: 835px) {
  .page__content h1 {
    font-size: 32px;
    margin-bottom: 30px;
  }
}
.page__content h2 {
  font-size: 22px;
  font-weight: bold;
  padding-bottom: 12px;
  border-bottom: 3px solid #0669db;
  margin-top: 50px;
}
@media screen and (min-width: 835px) {
  .page__content h2 {
    margin-top: 80px;
    margin-bottom: 30px;
    font-size: 32px;
    border-bottom: 4px solid #0669db;
  }
}
.page__content h3 {
  font-size: 20px;
  font-weight: bold;
  background: #f7f9fa;
  padding: 8px 10px;
  margin-top: 50px;
  position: relative;
  border-left: 4px solid #0669db;
}
@media screen and (min-width: 835px) {
  .page__content h3 {
    font-size: 24px;
    margin-top: 70px;
    padding: 8px 16px;
  }
}
.page__content h4 {
  border: 4px solid #eee;
  border-radius: 4px;
  background: #f7f7f8;
  padding: 10px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 40px;
}
@media screen and (min-width: 835px) {
  .page__content h4 {
    margin-top: 40px;
    font-size: 20px;
  }
}
.page__content > p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  margin-top: 20px;
  padding: 0 8px;
  word-break: break-all;
}
.page__content > p.text {
  margin-top: 10px;
}
@media screen and (min-width: 835px) {
  .page__content > p.text {
    margin-top: 10px;
  }
}
@media screen and (min-width: 835px) {
  .page__content > p {
    font-size: 16px;
    line-height: 2;
    margin: 30px auto 0;
  }
}
.page__content > p.right {
  text-align: right;
}
.page__content .note {
  padding: 20px 40px;
  background: #f2f2f2;
  text-align: center;
  font-size: 14px;
  line-height: 2;
  margin-top: 40px;
}
@media screen and (min-width: 835px) {
  .page__content .note {
    margin: 40px auto 0;
    padding: 20px 0;
    font-size: 18px;
    max-width: 580px;
  }
}
.page__content .terms a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 5px;
  margin-top: 12px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.page__content .terms a:hover {
  opacity: 0.8;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.page__content .terms a > img {
  width: 15px;
  margin-top: 5px;
}
@media screen and (min-width: 835px) {
  .page__content .terms a > img {
    width: 18px;
  }
}
.page__content .terms a > p {
  font-size: 14px;
  color: #0669db;
  line-height: 1.8;
}
@media screen and (min-width: 835px) {
  .page__content .terms a > p {
    font-size: 16px;
  }
}
.page__content .terms a > p img {
  width: 18px;
  display: inline-block;
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  margin-left: 4px;
}
.page__content ul {
  margin-top: 30px;
}
@media screen and (min-width: 835px) {
  .page__content ul {
    margin: 40px auto 0;
  }
}
.page__content ul li {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  padding: 10px 0;
  padding-left: 20px;
  line-height: 1.8;
}
@media screen and (min-width: 835px) {
  .page__content ul li {
    font-size: 16px;
  }
}
.page__content ul li:before {
  content: "";
  position: absolute;
  left: 4px;
  top: 20px;
  width: 6px;
  height: 6px;
  background: #0669db;
  border-radius: 50%;
}
@media screen and (min-width: 835px) {
  .page__content ul li:before {
    top: 22px;
  }
}
.page__content ol {
  margin-top: 30px;
  counter-reset: item;
}
@media screen and (min-width: 835px) {
  .page__content ol {
    margin: 40px auto 0;
  }
}
.page__content ol li {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  padding: 10px 0;
  padding-left: 30px;
  line-height: 1.8;
}
@media screen and (min-width: 835px) {
  .page__content ol li {
    font-size: 16px;
  }
}
.page__content ol li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  background: #0669db;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
@media screen and (min-width: 835px) {
  .page__content ol li:before {
    top: 15px;
  }
}
.page__content ol li:after {
  content: counter(item);
  counter-increment: item;
  position: absolute;
  left: 6px;
  top: 12px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  z-index: 10;
}
@media screen and (min-width: 835px) {
  .page__content ol li:after {
    top: 14px;
  }
}
.page__content a {
  text-decoration: underline;
  font-size: 14px;
  color: #004cb3;
  display: inline-block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.page__content a:hover {
  opacity: 0.8;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 835px) {
  .page__content a {
    font-size: 16px;
  }
}
.page__content strong {
  font-weight: bold;
}
.page__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2px;
  margin: -10px 10px 40px;
}
@media screen and (min-width: 835px) {
  .page__nav {
    margin: -30px auto 40px;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.page__nav__item {
  width: calc(50% - 1px);
  height: 46px;
  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;
  padding: 0 6px 0 12px;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.page__nav__item:hover {
  opacity: 0.8;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 835px) {
  .page__nav__item {
    width: 230px;
    height: 62px;
    padding: 0 20px;
  }
}
.page__nav__item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0669db;
  z-index: -1;
}
@media screen and (min-width: 835px) {
  .page__nav__item:before {
    -webkit-transform: skew(-35deg);
    transform: skew(-35deg);
  }
}
.page__nav__item span {
  color: #fff;
  font-size: 12px;
}
@media screen and (min-width: 835px) {
  .page__nav__item span {
    font-size: 14px;
  }
}
.page__nav__item svg {
  width: 30px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.page__section {
  padding: 40px 0 60px;
  position: relative;
}
.page__section:last-of-type {
  padding-bottom: 0;
}
@media screen and (min-width: 835px) {
  .page__section {
    padding: 40px 0 60px;
  }
}
.page__subtitle {
  position: relative;
  padding-top: 10px;
  margin-bottom: 20px;
}
@media screen and (min-width: 835px) {
  .page__subtitle {
    padding-top: 20px;
    margin-bottom: 30px;
  }
}
.page__subtitle p {
  font-size: 36px;
  font-weight: bold;
  font-family: "Raleway", sans-serif;
}
@media screen and (min-width: 835px) {
  .page__subtitle p {
    font-size: 80px;
  }
}
.page__subtitle h2 {
  font-size: 11px;
  line-height: 1.4;
}
@media screen and (min-width: 835px) {
  .page__subtitle h2 {
    font-size: 13px;
  }
}
.page__subtitle:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #d2d6e5;
}
.page__subtitle:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 2px;
  background: #ec6c00;
}
@media screen and (min-width: 835px) {
  .page__subtitle:after {
    width: 500px;
  }
}
.footer {
  padding-bottom: 40px;
  position: relative;
  z-index: 1;
  background-image: url("../img/common/footer_bg_sp.webp");
  background-size: cover;
}
@media screen and (min-width: 835px) {
  .footer {
    background-image: url("../img/common/footer_bg_pc.webp");
    padding: 20px 0 80px;
  }
}
.footer__blur {
  position: absolute;
  width: 400px;
  top: 250px;
  left: -200px;
  z-index: -1;
  opacity: 0.8;
}
@media screen and (min-width: 835px) {
  .footer__blur {
    width: 600px;
    left: -200px;
    top: 100px;
  }
}
@media screen and (min-width: 835px) {
  .footer__inner {
    max-width: 1100px;
    margin: auto;
  }
}
.footer__contact {
  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;
  padding: 30px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
}
@media screen and (min-width: 835px) {
  .footer__contact {
    padding: 60px 0;
  }
}
.footer__contact > div {
  width: calc(100% - 80px);
}
.footer__contact > svg {
  width: 60px;
  height: 60px;
}
@media screen and (min-width: 835px) {
  .footer__contact > svg {
    width: 120px;
    height: 120px;
  }
}
.footer__contact svg .circle-base {
  stroke: #fff;
  opacity: 1;
  -webkit-transition: none;
  transition: none;
}
.footer__contact svg .circle-animate {
  stroke: #fff;
  stroke-dasharray: 154;
  stroke-dashoffset: 154;
  -webkit-transition: none;
  transition: none;
}
.footer__contact svg .circle-animate-l {
  stroke: #fff;
  stroke-dasharray: 248;
  stroke-dashoffset: 248;
  -webkit-transition: none;
  transition: none;
}
.footer__contact:hover .circle-base {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.footer__contact:hover .circle-animate,
.footer__contact:hover .circle-animate-l {
  -webkit-transition: stroke-dashoffset 0.6s ease;
  transition: stroke-dashoffset 0.6s ease;
  stroke-dashoffset: 0;
}
.footer__contact:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.footer__contact:hover:before {
  width: 100%;
}
.footer__contact:hover .footer__contact__title,
.footer__contact:hover .footer__contact__eng,
.footer__contact:hover .footer__contact__text {
  -webkit-transform: translateX(10px);
  transform: translateX(10px);
}
.footer__contact__title {
  font-size: 13px;
  color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (min-width: 835px) {
  .footer__contact__title {
    font-size: 15px;
  }
}
.footer__contact__eng {
  font-size: 54px;
  font-weight: bold;
  font-family: "Raleway", sans-serif;
  line-height: 1;
  color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (min-width: 835px) {
  .footer__contact__eng {
    font-size: 80px;
  }
}
.footer__contact__text {
  font-size: 12px;
  line-height: 2;
  color: #fff;
  margin-top: 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (min-width: 835px) {
  .footer__contact__text {
    font-size: 15px;
    margin-top: 40px;
  }
}
.footer__logo {
  width: 300px;
  margin: 40px auto 30px;
  display: block;
}
@media screen and (min-width: 835px) {
  .footer__logo {
    width: 400px;
    margin: 60px auto 40px 0;
  }
}
.footer__logo img {
  width: 100%;
  display: block;
}
.footer__menu {
  margin-top: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0 14px;
}
@media screen and (min-width: 835px) {
  .footer__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: none;
  }
}
.footer__menu__box {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  padding: 30px 10px;
}
@media screen and (min-width: 835px) {
  .footer__menu__box {
    width: 33.33333%;
    padding: 5px 30px;
    border-top: none;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
  }
  .footer__menu__box:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
  }
}
.footer__menu__title {
  font-size: 14px;
  color: #fff;
  margin-bottom: 20px;
  display: block;
}
a.footer__menu__title {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
a.footer__menu__title:hover {
  opacity: 0.8;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer__menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px 0;
  margin-left: -15px;
  width: calc(100% + 30px);
}
@media screen and (min-width: 835px) {
  .footer__menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    margin: 0;
  }
}
.footer__menu__list li:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.4);
}
@media screen and (min-width: 835px) {
  .footer__menu__list li:not(:last-child) {
    border-right: none;
  }
}
.footer__menu__item {
  font-size: 14px;
  color: #fff;
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  padding: 0 30px;
  line-height: 1;
  transition: all 0.3s;
  cursor: pointer;
}
.footer__menu__item:hover {
  opacity: 0.8;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 835px) {
  .footer__menu__item {
    font-size: 15px;
    padding: 0;
  }
}
.footer__menu__item img {
  width: 10px;
  margin-left: 6px;
}
.footer__menu__foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 30px 10px 0;
  gap: 20px 0;
}
@media screen and (min-width: 835px) {
  .footer__menu__foot {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 0;
    margin-top: 40px;
  }
}
.footer__menu__foot li:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.4);
}
@media screen and (min-width: 835px) {
  .footer__menu__foot li:not(:last-child) {
    border-right: none;
  }
}
.footer__menu__foot a {
  color: #fff;
  font-size: 12px;
  display: block;
  padding: 0 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.footer__menu__foot a:hover {
  opacity: 0.8;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 835px) {
  .footer__menu__foot a {
    font-size: 14px;
  }
}
.copyright {
  background: #4d91e7;
  text-align: center;
  color: #fff;
  font-size: 12px;
  padding: 10px 0;
}
.footer__top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  width: 40px;
  height: 40px;
  z-index: 99;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 835px) {
  .footer__top {
    width: 50px;
    height: 50px;
    right: 30px;
    bottom: 30px;
  }
}
.footer__top img {
  width: 100%;
}
.footer__top:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}
.link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.link:hover {
  opacity: 0.8;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.link p {
  font-size: 15px;
  color: #0669db;
}
@media screen and (min-width: 835px) {
  .link p {
    font-size: 18px;
  }
}
.link svg .circle-base {
  stroke: #0669db;
  opacity: 1;
  -webkit-transition: none;
  transition: none;
}
.link svg .circle-animate {
  stroke: #0669db;
  stroke-dasharray: 154;
  stroke-dashoffset: 154;
  -webkit-transition: none;
  transition: none;
}
.link svg .circle-animate-l {
  stroke: #0669db;
  stroke-dasharray: 248;
  stroke-dashoffset: 248;
  -webkit-transition: none;
  transition: none;
}
.link:hover .circle-base {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.link:hover .circle-animate,
.link:hover .circle-animate-l {
  -webkit-transition: stroke-dashoffset 0.6s ease;
  transition: stroke-dashoffset 0.6s ease;
  stroke-dashoffset: 0;
}
.link svg {
  width: 60px;
  height: 60px;
}
@media screen and (min-width: 835px) {
  .link svg {
    width: 80px;
    height: 80px;
  }
}
.c-btn,
.c-btn--secondaly {
  text-align: center;
  margin-top: 30px;
  display: inline-block;
  width: 100%;
}
.c-btn__inner {
  position: relative;
  display: inline-block;
  text-align: center;
  background: #fff;
  width: 230px;
  height: 40px;
  line-height: 40px;
  border: 1px solid #1d91ff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 32px;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  text-decoration: none !important;
}
@media screen and (min-width: 835px) {
  .c-btn__inner {
    width: 300px;
    height: 50px;
  }
}
.c-btn__inner:before {
  content: "";
  position: absolute;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(#5574f7),
    to(#389eff)
  );
  background: linear-gradient(to left, #5574f7, #389eff);
  width: 230px;
  height: 40px;
  right: -1px;
  top: -1px;
  border-radius: 32px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (min-width: 835px) {
  .c-btn__inner:before {
    width: 300px;
    height: 50px;
  }
}
.c-btn__inner:hover:before {
  width: 50px;
}
.c-btn__inner:hover .c-btn__txt {
  color: #1d91ff;
}
.c-btn--secondaly .c-btn__inner:before {
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(#389eff),
    to(#55d2f7)
  );
  background: linear-gradient(to left, #389eff, #55d2f7);
}
.c-btn__arw {
  position: absolute;
  right: 17px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 13px !important;
}
.c-btn__txt {
  position: absolute;
  color: #fff;
  font-size: 15px !important;
  width: 100%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (min-width: 835px) {
  .c-btn__txt {
    font-size: 18px !important;
  }
}
.c-arw {
  position: relative;
  text-align: center;
  display: inline-block;
  height: 30px;
  width: 150px;
  margin-top: 30px;
  line-height: 1;
}
@media screen and (min-width: 835px) {
  .c-arw {
    margin-top: 40px;
  }
}
.c-arw:hover .c-arw__txt {
  opacity: 0.5;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.c-arw:hover .c-arw__icon {
  margin-left: 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.c-arw:hover .c-arw__icon:before,
.c-arw:hover .c-arw__icon:after {
  opacity: 0.5;
}
.c-arw__txt {
  font-size: 20px;
  color: #000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  letter-spacing: 2px;
}
@media screen and (min-width: 835px) {
  .c-arw__txt {
    font-size: 28px;
  }
}
.c-arw__icon {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
}
.c-arw__icon:before,
.c-arw__icon:after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.c-arw__icon:before {
  left: -60px;
  width: 120px;
  height: 2px;
  background: #000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (min-width: 835px) {
  .c-arw__icon:before {
    width: 180px;
    left: -90px;
  }
}
.c-arw__icon:after {
  right: -60px;
  width: 20px;
  bottom: 10px;
  height: 4px;
  border-top: 2px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (min-width: 835px) {
  .c-arw__icon:after {
    right: -90px;
  }
}
.c-arrow,
.c-arrow--r,
.c-arrow--l {
  width: 8px;
  height: 8px;
  border: 0px;
  border-top: solid 2.3px #222;
  border-right: solid 2.3px #222;
  position: absolute;
  top: 50%;
  margin-top: -4px;
}
.c-arrow--r {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 0;
}
.c-arrow--l {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  right: 0;
}
@font-face {
  font-family: "icomoon";
  font-display: swap;
  src: url("../img/fonts/icomoon.eot?816ycz");
  src: url("../img/fonts/icomoon.eot?816ycz#iefix") format("embedded-opentype"),
    url("../img/fonts/icomoon.ttf?816ycz") format("truetype"),
    url("../img/fonts/icomoon.woff?816ycz") format("woff"),
    url("../img/fonts/icomoon.svg?816ycz#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^="c-ico--"]:before,
[class*=" c-ico--"]:before {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
  font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.c-ico--menu:before {
  content: "\e902";
}
.c-ico--close:before {
  content: "\e903";
}
.c-ico--arrow--r:before {
  content: "\e904";
}
.c-ico--arrow--u:before {
  content: "\e905";
}
.c-ico--arrow--l:before {
  content: "\e906";
}
.c-ico--arrow--d:before {
  content: "\e907";
}
.c-ico--search:before {
  content: "\e908";
}
.c-ico--tag:before {
  content: "\e909";
}
.c-ico--feedly--01:before {
  content: "\e90c";
}
.c-ico--instagram--01:before {
  content: "\e90d";
}
.c-ico--facebook:before {
  content: "\e90e";
}
.c-ico--twitter:before {
  content: "\e90f";
}
.u-animation {
  display: inline-block;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.u-animation > img,
.u-animation > h2,
.u-animation > p,
.u-animation > div {
  opacity: 0;
}
.u-animation:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #0669db;
  -webkit-transform: translateY(101%);
  transform: translateY(101%);
  top: 0;
  left: 0;
  z-index: 100;
}
.u-animation.is-show:before {
  -webkit-animation-name: obiStartY, obiEndY;
  animation-name: obiStartY, obiEndY;
  -webkit-animation-duration: 0.8s, 0.6s;
  animation-duration: 0.8s, 0.6s;
  -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1),
    cubic-bezier(0.6, 0, 0.07, 1);
  animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1),
    cubic-bezier(0.6, 0, 0.07, 1);
  -webkit-animation-delay: 0s, 0.6s;
  animation-delay: 0s, 0.6s;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.u-animation.is-show > img,
.u-animation.is-show > h2,
.u-animation.is-show > p,
.u-animation.is-show > div {
  -webkit-animation: displayActive 0s 0.6s forwards;
  animation: displayActive 0s 0.6s forwards;
}
@-webkit-keyframes displayActive {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes displayActive {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes obiStartY {
  0% {
    -webkit-transform: translateY(101%);
    transform: translateY(101%);
  }
  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}
@keyframes obiStartY {
  0% {
    -webkit-transform: translateY(101%);
    transform: translateY(101%);
  }
  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}
@-webkit-keyframes obiEndY {
  0% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
  100% {
    -webkit-transform: translateY(-101%);
    transform: translateY(-101%);
  }
}
@keyframes obiEndY {
  0% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
  100% {
    -webkit-transform: translateY(-101%);
    transform: translateY(-101%);
  }
}
.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 20px;
}
.breadcrumbs > span,
.breadcrumbs a {
  font-size: 10px;
}
@media screen and (min-width: 835px) {
  .breadcrumbs > span,
  .breadcrumbs a {
    font-size: 13px;
  }
}
.breadcrumbs > span {
  max-width: 210px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #333;
}
@media screen and (min-width: 835px) {
  .breadcrumbs > span {
    max-width: none;
    max-width: 280px;
  }
}
.breadcrumbs a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #a8acbd;
}
.breadcrumbs a:hover {
  color: #333;
}
.breadcrumbs .line {
  width: 2px;
  height: 8px;
  background: #a8acbd;
  -webkit-transform: skew(-30deg);
  transform: skew(-30deg);
  margin: 0 10px;
}
@media screen and (min-width: 835px) {
  .breadcrumbs .line {
    margin: 0 16px;
  }
}
.business {
  overflow: hidden;
}
.business__head {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 50px;
  margin-bottom: 30px;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
}
@media screen and (min-width: 835px) {
  .business__head {
    font-size: 32px;
    margin-top: 80px;
    margin-bottom: 60px;
  }
}
.business__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  padding: 0 8px;
}
@media screen and (min-width: 835px) {
  .business__text {
    font-size: 16px;
  }
}
.business__headimg,
.business__headimg02 {
  width: 90%;
  position: absolute;
  top: -50px;
  right: -150px;
}
@media screen and (min-width: 835px) {
  .business__headimg,
  .business__headimg02 {
    width: 110%;
    position: absolute;
    width: 650px;
    right: -200px;
    top: -100px;
  }
}
.business__headimg.is-show .business__img__line,
.business__headimg02.is-show .business__img__line {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}
.business__headimg02 {
  top: -90px;
}
.business__img__line {
  width: 110%;
  position: absolute;
  left: -20%;
  top: 50px;
  z-index: 10;
  mix-blend-mode: hard-light;
  opacity: 0;
  -webkit-transform: translate(-80%, 200%);
  transform: translate(-80%, 200%);
  -webkit-transition: opacity 0.3s ease,
    -webkit-transform 0.8s cubic-bezier(0.43, 0.05, 0.17, 1);
  transition: opacity 0.3s ease,
    -webkit-transform 0.8s cubic-bezier(0.43, 0.05, 0.17, 1);
  transition: transform 0.8s cubic-bezier(0.43, 0.05, 0.17, 1),
    opacity 0.3s ease;
  transition: transform 0.8s cubic-bezier(0.43, 0.05, 0.17, 1),
    opacity 0.3s ease, -webkit-transform 0.8s cubic-bezier(0.43, 0.05, 0.17, 1);
  -webkit-transition-delay: 0.5s, 1s;
  transition-delay: 0.5s, 1s;
}
@media screen and (min-width: 835px) {
  .business__img__line {
    top: 80px;
  }
}
.business__img__bg {
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-image: url("../img/business/img_mask.png");
  mask-image: url("../img/business/img_mask.png");
}
.business__img__bg img {
  width: 100%;
  display: block;
}
.business__img,
.business__img01,
.business__img02,
.business__img03 {
  padding: 10px 25px;
  display: block;
  border-radius: 10px;
  background: #fff;
  -webkit-box-shadow: 0px 4px 20px 0px rgba(17, 40, 188, 0.1);
  box-shadow: 0px 4px 20px 0px rgba(17, 40, 188, 0.1);
  margin: 30px 0;
}
@media screen and (min-width: 835px) {
  .business__img,
  .business__img01,
  .business__img02,
  .business__img03 {
    margin: 60px auto;
  }
}
.business__img img,
.business__img01 img,
.business__img02 img,
.business__img03 img {
  width: 100%;
  display: block;
}
@media screen and (min-width: 835px) {
  .business__img01 {
    max-width: 800px;
  }
}
@media screen and (min-width: 835px) {
  .business__img02 {
    max-width: 500px;
  }
}
@media screen and (min-width: 835px) {
  .business__img03 {
    max-width: 760px;
  }
}
.business__subhead {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  border-bottom: 2px solid #a4bbd5;
  padding-bottom: 10px;
  margin-top: 50px;
  margin-bottom: 20px;
}
@media screen and (min-width: 835px) {
  .business__subhead {
    font-size: 24px;
    margin-bottom: 30px;
    margin-top: 80px;
  }
}
.business__service {
  padding: 0 16px;
}
@media screen and (min-width: 835px) {
  .business__service {
    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: 40px;
  }
}
.business__service__img {
  background: #fff;
}
.business__service__img img {
  width: 205px;
  display: block;
  margin: auto;
}
@media screen and (min-width: 835px) {
  .business__service__img img {
    width: 300px;
  }
}
.business__service__info a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: bold;
  line-height: 2;
  color: #333;
  margin: 10px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.business__service__info a:hover {
  opacity: 0.8;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 835px) {
  .business__service__info a {
    font-size: 20px;
    margin: 0;
  }
}
.business__service__info a img {
  width: 12px;
}
.business__service__info p {
  font-size: 13px;
  font-weight: 400;
  line-height: 2;
}
@media screen and (min-width: 835px) {
  .business__service__info p {
    font-size: 13px;
  }
}
.wpcf7-form.custom-wpcf7c-confirmed .contact__text--contact {
  display: none;
}
.wpcf7-form.custom-wpcf7c-confirmed .contact__text--confirm {
  display: block;
}
.wpcf7-form.custom-wpcf7c-confirmed .contact__step__item:nth-of-type(1) {
  background: #fff;
  border: 2px solid #ccc;
}
@media screen and (min-width: 835px) {
  .wpcf7-form.custom-wpcf7c-confirmed .contact__step__item:nth-of-type(1) {
    border: 4px solid #ccc;
  }
}
.wpcf7-form.custom-wpcf7c-confirmed .contact__step__item:nth-of-type(1):before {
  content: none;
}
.wpcf7-form.custom-wpcf7c-confirmed .contact__step__item:nth-of-type(1) p,
.wpcf7-form.custom-wpcf7c-confirmed .contact__step__item:nth-of-type(1) span {
  color: #283064;
}
.wpcf7-form.custom-wpcf7c-confirmed .contact__step__item:nth-of-type(2) {
  background: #283064;
  border: 2px solid #283064;
}
@media screen and (min-width: 835px) {
  .wpcf7-form.custom-wpcf7c-confirmed .contact__step__item:nth-of-type(2) {
    border: 4px solid #283064;
  }
}
.wpcf7-form.custom-wpcf7c-confirmed .contact__step__item:nth-of-type(2):before {
  content: "";
}
.wpcf7-form.custom-wpcf7c-confirmed .contact__step__item:nth-of-type(2) p,
.wpcf7-form.custom-wpcf7c-confirmed .contact__step__item:nth-of-type(2) span {
  color: #fff;
}
.wpcf7-form.custom-wpcf7c-confirmed .contact__privacy {
  display: none;
}
.wpcf7-form.custom-wpcf7c-confirmed .contact__form__item {
  border-top: 1px solid #ddd;
  padding: 20px 0;
  margin-bottom: 0;
}
.wpcf7-form.custom-wpcf7c-confirmed .contact__form__item:nth-of-type(7) {
  border-bottom: 1px solid #ddd;
}
.wpcf7-form.custom-wpcf7c-confirmed .contact__form__item input,
.wpcf7-form.custom-wpcf7c-confirmed .contact__form__item textarea {
  background: transparent;
  border: none;
  height: auto;
  padding: 0;
  font-size: 16px;
  font-weight: bold;
}
@media screen and (min-width: 835px) {
  .wpcf7-form.custom-wpcf7c-confirmed .contact__form__item input,
  .wpcf7-form.custom-wpcf7c-confirmed .contact__form__item textarea {
    margin-top: 20px;
  }
}
.wpcf7-form.custom-wpcf7c-confirmed
  .contact__form__item
  input::-webkit-input-placeholder,
.wpcf7-form.custom-wpcf7c-confirmed
  .contact__form__item
  textarea::-webkit-input-placeholder {
  color: transparent;
}
.wpcf7-form.custom-wpcf7c-confirmed
  .contact__form__item
  input::-moz-placeholder,
.wpcf7-form.custom-wpcf7c-confirmed
  .contact__form__item
  textarea::-moz-placeholder {
  color: transparent;
}
.wpcf7-form.custom-wpcf7c-confirmed
  .contact__form__item
  input::-ms-input-placeholder,
.wpcf7-form.custom-wpcf7c-confirmed
  .contact__form__item
  textarea::-ms-input-placeholder {
  color: transparent;
}
.wpcf7-form.custom-wpcf7c-confirmed .contact__form__item input::placeholder,
.wpcf7-form.custom-wpcf7c-confirmed .contact__form__item textarea::placeholder {
  color: transparent;
}
.wpcf7-form.custom-wpcf7c-confirmed textarea {
  height: 116px !important;
}
.wpcf7-form.custom-wpcf7c-confirmed .select {
  border: none;
  height: auto;
}
.wpcf7-form.custom-wpcf7c-confirmed .select .arw {
  display: none;
}
.wpcf7-form.custom-wpcf7c-confirmed .select select {
  padding: 0;
  font-size: 16px;
  font-weight: bold;
  opacity: 1;
}
.acceptance .wpcf7-list-item label {
  display: none;
}
.wpcf7-radio input[type="radio"] {
  margin-bottom: 8px !important;
}
@media screen and (min-width: 835px) {
  .wpcf7-radio input[type="radio"] {
    margin-bottom: 0px !important;
    margin-top: 0 !important;
  }
}
.wpcf7-radio p {
  color: #333;
}
.contact__text,
.contact__text--contact,
.contact__text--confirm {
  font-size: 12px;
  line-height: 2;
  text-align: center;
}
@media screen and (min-width: 835px) {
  .contact__text,
  .contact__text--contact,
  .contact__text--confirm {
    font-size: 15px;
  }
}

.wpcf7-response-output {
  display: none !important;
}

.contact__text span,
.contact__text--contact span,
.contact__text--confirm span {
  display: block;
  color: #f00;
  text-align: center;
}
.contact__text--confirm {
  display: none;
}
.contact__step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 auto 20px;
  width: 210px;
  position: relative;
}
@media screen and (min-width: 835px) {
  .contact__step {
    margin: 0 auto 40px;
    width: 460px;
  }
}
.contact__step:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: calc(100% - 50px);
  height: 2px;
  background: #ddd;
}
.contact__step__item {
  width: 54px;
  height: 54px;
  position: relative;
  background: #fff;
  border: 2px solid #ccc;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 50%;
}
@media screen and (min-width: 835px) {
  .contact__step__item {
    width: 100px;
    height: 100px;
    border: 4px solid #ccc;
  }
}
.contact__step__item span {
  font-size: 10px;
  color: #333;
}
@media screen and (min-width: 835px) {
  .contact__step__item span {
    font-size: 12px;
    margin-bottom: 10px;
  }
}
.contact__step__item p {
  font-size: 13px;
  color: #333;
}
@media screen and (min-width: 835px) {
  .contact__step__item p {
    font-size: 16px;
  }
}
.contact__step__item.is-active {
  background: #0669db;
  border: none;
}
.contact__step__item.is-active p,
.contact__step__item.is-active span {
  color: #fff;
}
.contact__form {
  margin-top: 40px;
}
@media screen and (min-width: 835px) {
  .contact__form {
    max-width: 680px;
    margin: 60px auto 0;
  }
}
.contact__form__item {
  margin-bottom: 30px;
}
@media screen and (min-width: 835px) {
  .contact__form__item {
    margin-bottom: 35px;
  }
}
.contact__form__item > p {
  font-size: 15px;
  margin-bottom: 8px;
}
@media screen and (min-width: 835px) {
  .contact__form__item > p {
    width: 280px;
  }
}
.contact__form__item > p span {
  color: #f00;
  margin-left: 2px;
  display: inline-block;
}
.contact__form__item input[type="text"],
.contact__form__item input[type="tel"],
.contact__form__item input[type="email"],
.contact__form__item textarea {
  width: 100%;
  height: 60px;
  background: #fff;
  padding: 0 12px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 16px;
  border-radius: 4px;
  border: 1px solid #c8ddf7;
  background: #f4f8fd;
  line-height: 1.4;
}
.contact__form__item input[type="text"]::-webkit-input-placeholder,
.contact__form__item input[type="tel"]::-webkit-input-placeholder,
.contact__form__item input[type="email"]::-webkit-input-placeholder,
.contact__form__item textarea::-webkit-input-placeholder {
  color: rgba(26, 26, 26, 0.302);
}
.contact__form__item input[type="text"]::-moz-placeholder,
.contact__form__item input[type="tel"]::-moz-placeholder,
.contact__form__item input[type="email"]::-moz-placeholder,
.contact__form__item textarea::-moz-placeholder {
  color: rgba(26, 26, 26, 0.302);
}
.contact__form__item input[type="text"]::-ms-input-placeholder,
.contact__form__item input[type="tel"]::-ms-input-placeholder,
.contact__form__item input[type="email"]::-ms-input-placeholder,
.contact__form__item textarea::-ms-input-placeholder {
  color: rgba(26, 26, 26, 0.302);
}
.contact__form__item input[type="text"]::placeholder,
.contact__form__item input[type="tel"]::placeholder,
.contact__form__item input[type="email"]::placeholder,
.contact__form__item textarea::placeholder {
  color: rgba(26, 26, 26, 0.302);
}
.contact__form__item textarea {
  height: 150px;
  padding-top: 10px;
}
@media screen and (min-width: 835px) {
  .contact__form__item textarea {
    height: 190px;
  }
}
.contact__form__item textarea.address {
  height: 60px;
}
@media screen and (min-width: 835px) {
  .contact__form__item textarea.address {
    height: 60px;
    padding-top: 20px;
  }
}
.contact__form__item .select {
  width: 100%;
  height: 60px;
  position: relative;
  border: 1px solid #ddd;
  border-radius: 4px;
}
@media screen and (min-width: 835px) {
  .contact__form__item .select {
    height: 60px;
  }
}
.contact__form__item .select select {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  border: 1px solid #c8ddf7;
  background: #f4f8fd;
  padding-left: 12px;
  font-size: 16px;
}
.contact__form__item .select .arw {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 4px 0 4px;
  border-color: #333 transparent transparent transparent;
}
.contact__form__item .supplement {
  padding-left: 34px;
  font-size: 12px;
  margin-top: 8px;
}
.contact__form__item .supplement a {
  color: #283064;
  text-decoration: underline;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.contact__form__item .supplement a img {
  width: 10px;
  margin-left: 2px;
}
@media screen and (min-width: 835px) {
  .contact__form__box {
    margin-left: 8px;
    margin-top: 30px;
  }
  .contact__form__box p {
    font-size: 14px;
  }
}
.contact__form__box__item:not(:first-of-type) {
  margin-top: 30px;
}
.contact__form__acceptance {
  text-align: center;
}
.contact__form__acceptance .wpcf7-form-control-wrap {
  width: 100%;
}
.contact__form__acceptance span.wpcf7-list-item {
  margin: 0;
}
.contact__form__acceptance input {
  display: none;
}
.acceptance .wpcf7-list-item {
  margin: 0 !important;
}
.acceptance .wpcf7-list-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}
.acceptance .wpcf7-list-item label input {
  display: none;
}
.acceptance .wpcf7-list-item label input:checked ~ span {
  background: #0669db;
}
.acceptance .wpcf7-list-item label input:checked ~ span:before,
.acceptance .wpcf7-list-item label input:checked ~ span:after {
  content: "";
}
.acceptance .wpcf7-list-item label > span {
  width: 16px;
  height: 16px;
  border: 1px solid #ddd;
  background: #fff;
  position: relative;
}
.acceptance .wpcf7-list-item label > span span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.acceptance .wpcf7-list-item label > span:before {
  position: absolute;
  z-index: 10;
  width: 6px;
  height: 2px;
  background: #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 8px;
  left: 1px;
}
.acceptance .wpcf7-list-item label > span:after {
  position: absolute;
  z-index: 10;
  width: 10px;
  height: 2px;
  background: #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 6px;
  left: 4px;
}
.acceptance .wpcf7-list-item label p {
  font-size: 12px;
  padding-left: 10px;
  margin-bottom: 2px;
}
@media screen and (min-width: 835px) {
  .acceptance .wpcf7-list-item label p {
    font-size: 14px;
  }
}
.acceptance .wpcf7-list-item label p a {
  color: #015fc3;
  text-decoration: underline;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.acceptance .wpcf7-list-item label p a:hover {
  opacity: 0.8;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.acceptance .wpcf7-list-item label p a img {
  margin: 0 3px;
}
.acceptance .wpcf7-list-item label p span {
  color: #ea463c;
}
.contact__form__confirm {
  width: 100%;
  max-width: 480px;
  height: 56px;
  background: #ec6c00;
  border-radius: 28px;
  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;
  font-size: 16px;
  font-weight: bold;
  margin: 40px auto 0;
  color: #fff;
  border: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.contact__form__confirm:hover {
  opacity: 0.8;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 835px) {
  .contact__form__confirm {
    margin: 60px auto 0;
  }
}
.contact__form__confirm:disabled {
  background: #a1abb8;
  cursor: not-allowed;
  opacity: 1;
}
.contact__form__submit {
  width: 100%;
  max-width: 480px;
  height: 56px;
  background: #ec6c00;
  border-radius: 28px;
  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;
  font-size: 16px;
  font-weight: bold;
  margin: 40px auto 0;
  color: #fff;
  border: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.contact__form__submit:hover {
  opacity: 0.8;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 835px) {
  .contact__form__submit {
    margin: 60px auto 0;
  }
}
.contact__form__back {
  width: 100%;
  max-width: 480px;
  height: 56px;
  border-radius: 28px;
  border: 1px solid #000;
  background: #fff url("../img/common/icon_arrow_left.svg") no-repeat left 10px
    center;
  background-size: 28px 28px;
  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;
  font-size: 16px;
  font-weight: bold;
  margin: auto;
  color: #000;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.contact__form__back:hover {
  opacity: 0.8;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
span.wpcf7-not-valid-tip {
  margin-top: 10px;
}
.wpcf7-form-control-wrap.content {
  padding: 0;
}
.wpcf7-validation-errors {
  display: none !important;
}
.wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 25px;
}
@media screen and (min-width: 835px) {
  .wpcf7-radio {
    margin-top: 18px;
    margin-bottom: 10px;
  }
}
.wpcf7-radio > span {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 !important;
  margin-right: 20px !important;
}
@media screen and (min-width: 835px) {
  .wpcf7-radio > span {
    margin-right: 80px !important;
  }
}
.wpcf7-radio > span input {
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
  margin-right: 10px;
  margin-bottom: 3px;
  accent-color: #283064;
}
.contact__thanks__text {
  text-align: left;
  font-size: 13px;
  line-height: 2;
  margin-top: 20px;
  color: #535353;
}
@media screen and (min-width: 835px) {
  .contact__thanks__text {
    text-align: center;
    margin-top: 40px;
  }
}
.contact__privacy {
  text-align: center;
  font-size: 12px;
  line-height: 1.75;
}
@media screen and (min-width: 835px) {
  .contact__privacy {
    font-size: 14px;
  }
}
.contact__privacy a {
  color: #115096;
  text-decoration: underline;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.contact__privacy a:hover {
  opacity: 0.8;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.contact__privacy a img {
  width: 10px;
  margin: 0 4px;
}
.outline__greeting {
  margin-top: 80px;
}
.outline__greeting__img {
  width: calc(100% + 48px);
  margin-left: -24px;
  aspect-ratio: 2.5;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (min-width: 835px) {
  .outline__greeting__img {
    width: 100%;
    height: 380px;
    aspect-ratio: none;
    margin: 0;
  }
}
.outline__greeting__message {
  background: #fff;
  -webkit-box-shadow: 0px 4px 10px 0px rgba(17, 40, 188, 0.1);
  box-shadow: 0px 4px 10px 0px rgba(17, 40, 188, 0.1);
  padding: 30px;
  margin-top: -40px;
  position: relative;
}
@media screen and (min-width: 835px) {
  .outline__greeting__message {
    max-width: 900px;
    margin: -40px auto 0;
    padding: 40px;
  }
}
.outline__greeting__message p {
  font-weight: 400;
  line-height: 1.6;
  font-size: 15px;
}

.greeting__message_br_sp {
  display: none;
}

.greeting__message_br_tb {
  display: none;
}

@media screen and (max-width: 835px) {
  .greeting__message_br_tb {
    display: block;
  }

  .outline__greeting__message p {
    font-size: max(2vw, 13px);
  }
}

@media screen and (max-width: 480px) {
  .outline__greeting__message {
    padding: 9px;
  }

  .outline__greeting__message p {
    font-size: 2.4vw;
    font-size: max(2.4vw, 13px);
  }

  .greeting__message_br_sp {
    display: block;
  }

  .greeting__message_br_tb {
    display: none;
  }
}

.outline__greeting__message p.foot {
  text-align: right;
  margin-top: 30px;
}
.outline__greeting__message img {
  width: 120px;
  display: block;
  margin-left: auto;
}
@media screen and (min-width: 835px) {
  .outline__greeting__message img {
    width: 160px;
    margin-top: 10px;
  }
}
.outline__company {
  width: 100%;
  border: 1px solid #d2d6e5;
  -webkit-box-shadow: 0px 4px 10px 0px rgba(17, 40, 188, 0.1);
  box-shadow: 0px 4px 10px 0px rgba(17, 40, 188, 0.1);
}
@media screen and (min-width: 835px) {
  .outline__company {
    max-width: 900px;
    margin: 0 auto;
  }
}
.outline__company th,
.outline__company td {
  display: block;
  text-align: left;
}
@media screen and (min-width: 835px) {
  .outline__company th,
  .outline__company td {
    display: table-cell;
    border-top: 1px solid #d2d6e5;
  }
}
.outline__company th {
  background: #0669db;
  color: #fff;
  font-size: 13px;
  line-height: 1.6;
  padding: 6px 16px;
}
@media screen and (min-width: 835px) {
  .outline__company th {
    width: 220px;
    padding: 10px 16px;
    font-size: 15px;
  }
}
.outline__company td {
  background: #fff;
  padding: 12px 16px;
  font-size: 13px;
  line-height: 1.6;
}
@media screen and (min-width: 835px) {
  .outline__company td {
    padding: 20px 16px;
    font-size: 15px;
  }
}
.outline__company td a {
  color: #1148bc;
  text-decoration: underline;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.outline__company td a:hover {
  opacity: 0.8;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.outline__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 835px) {
  .outline__group {
    gap: 40px;
    max-width: 840px;
    margin: 0 auto;
  }
}
.outline__group__item {
  background: #fff;
  -webkit-box-shadow: 0px 4px 10px 0px rgba(17, 40, 188, 0.1);
  box-shadow: 0px 4px 10px 0px rgba(17, 40, 188, 0.1);
  padding: 20px 30px 40px;
}
@media screen and (min-width: 835px) {
  .outline__group__item {
    padding: 40px 40px 40px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.outline__group__item > img {
  width: 100%;
  display: block;
}
@media screen and (min-width: 835px) {
  .outline__group__item > img {
    width: 230px;
  }
}
@media screen and (min-width: 835px) {
  .outline__group__item > div {
    width: calc(100% - 260px);
  }
}
.outline__group__item > div > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  color: #0669db;
  text-decoration: underline;
  margin: 10px 0 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.outline__group__item > div > a:hover {
  opacity: 0.8;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 835px) {
  .outline__group__item > div > a {
    margin: 0 0 20px;
    font-size: 20px;
  }
}
.outline__group__item > div > a img {
  width: 12px;
}
@media screen and (min-width: 835px) {
  .outline__group__item > div > a img {
    width: 16px;
  }
}
.outline__group__item > div > p {
  font-size: 13px;
  opacity: 0.7;
  line-height: 1.4;
}
@media screen and (min-width: 835px) {
  .outline__group__item > div > p {
    font-size: 14px;
  }
}
.outline__office {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 835px) {
  .outline__office {
    gap: 60px;
  }
}
@media screen and (min-width: 835px) {
  .outline__office__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 40px;
  }
}
.outline__office__item h3 {
  font-size: 20px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  padding-left: 10px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #d2d5e5;
}
@media screen and (min-width: 835px) {
  .outline__office__item h3 {
    font-size: 28px;
    gap: 10px;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
.outline__office__item h3 span {
  width: 3px;
  height: 15px;
  background: #0669db;
  -webkit-transform: skew(-30deg);
  transform: skew(-30deg);
  display: inline-block;
}
@media screen and (min-width: 835px) {
  .outline__office__item h3 span {
    width: 4px;
    height: 20px;
  }
}
.outline__office__item p {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
}
@media screen and (min-width: 835px) {
  .outline__office__item p {
    font-size: 16px;
  }
}
@media screen and (min-width: 835px) {
  .outline__office__item__box {
    width: calc(100% - 580px);
  }
}
.outline__office__item__map {
  border: 3px solid rgba(6, 105, 219, 0.2);
  -webkit-box-shadow: 0px 4px 10px 0px rgba(17, 40, 188, 0.1);
  box-shadow: 0px 4px 10px 0px rgba(17, 40, 188, 0.1);
  padding: 5px;
  margin-top: 30px;
}
@media screen and (min-width: 835px) {
  .outline__office__item__map {
    margin: 0;
    width: 540px;
  }
}
.outline__office__item__map iframe {
  width: 100%;
  height: 60vw;
}
@media screen and (min-width: 835px) {
  .outline__office__item__map iframe {
    height: 400px;
  }
}
.pagenation {
  display: block;
  width: 100%;
  margin-top: 40px;
}
@media screen and (min-width: 835px) {
  .pagenation {
    margin-top: 60px;
  }
}
ul.page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
ul.page-numbers .page-numbers {
  width: 40px;
  height: 40px;
  border-radius: 80px;
  border: 1px solid #a8acbd;
  color: #a8acbd;
  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;
  font-size: 16px;
  margin: 0 2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  line-height: 1;
  font-family: "Raleway", sans-serif;
  transition: 0.3s;
}
@media screen and (min-width: 835px) {
  ul.page-numbers .page-numbers {
    width: 72px;
    height: 72px;
    font-size: 20px;
    margin: 0 10px;
    padding-bottom: 2px;
  }
}
ul.page-numbers .page-numbers.current {
  border: 1px solid #0669db;
  color: #0669db;
}
ul.page-numbers .page-numbers.prev,
ul.page-numbers .page-numbers.next {
  font-size: 13px;
  border: none !important;
  position: relative;
}
ul.page-numbers .page-numbers.prev:before,
ul.page-numbers .page-numbers.next:before {
  vertical-align: middle;
  text-decoration: underline;
}
@media screen and (min-width: 835px) {
  ul.page-numbers .page-numbers.prev,
  ul.page-numbers .page-numbers.next {
    font-size: 18px;
  }
}
ul.page-numbers .page-numbers.prev {
  margin-right: 6px;
}
ul.page-numbers .page-numbers.prev:before {
  content: "PREV";
}
ul.page-numbers .page-numbers.next {
  margin-left: 6px;
}
ul.page-numbers .page-numbers.next:before {
  content: "NEXT";
}
ul.page-numbers .page-numbers:hover {
  border: 1px solid #0669db;
  color: #0669db;
}
.single {
  padding: 40px 16px;
}
@media screen and (min-width: 835px) {
  .single {
    max-width: 960px;
    margin: 0 auto;
    padding: 40px 24px 80px;
  }
}
.single__date {
  font-size: 12px;
  color: #a8acbd;
}
.single__title {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 10px;
}
@media screen and (min-width: 835px) {
  .single__title {
    font-size: 32px;
  }
}
.single__img {
  margin-top: 10px;
}
@media screen and (min-width: 835px) {
  .single__img {
    max-width: 680px;
    margin: 20px auto 0;
  }
}
.single__img img {
  display: block;
  width: 100%;
  height: auto;
}
.single__content .first {
  margin-top: 0;
}
.single__content h1,
.single__content h2 {
  font-size: 22px;
  font-weight: bold;
  padding-bottom: 12px;
  border-bottom: 3px solid #0669db;
  margin-top: 50px;
}
@media screen and (min-width: 835px) {
  .single__content h1,
  .single__content h2 {
    margin-top: 80px;
    font-size: 32px;
    border-bottom: 4px solid #0669db;
  }
}
.single__content h3 {
  font-size: 20px;
  font-weight: bold;
  background: #f5f5f5;
  padding: 10px 10px;
  margin-top: 50px;
  position: relative;
  border-left: 4px solid #0669db;
}
@media screen and (min-width: 835px) {
  .single__content h3 {
    font-size: 24px;
    margin-top: 70px;
    padding: 10px 16px;
  }
}
.single__content h4 {
  border: 4px solid #eee;
  border-radius: 4px;
  background: #f7f7f8;
  padding: 10px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 40px;
}
@media screen and (min-width: 835px) {
  .single__content h4 {
    margin-top: 40px;
    font-size: 20px;
  }
}
.single__content p {
  font-size: 14px;
  line-height: 1.8;
  margin-top: 20px;
  padding: 0 8px;
  word-break: break-all;
  font-weight: 400;
}
@media screen and (min-width: 835px) {
  .single__content p {
    font-size: 16px;
    line-height: 2;
    margin: 30px auto 0;
  }
}
.single__content ul {
  margin-top: 30px;
}
@media screen and (min-width: 835px) {
  .single__content ul {
    margin: 40px auto 0;
  }
}
.single__content ul li {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  padding: 10px 0;
  padding-left: 20px;
  line-height: 1.8;
}
@media screen and (min-width: 835px) {
  .single__content ul li {
    font-size: 16px;
  }
}
.single__content ul li:before {
  content: "";
  position: absolute;
  left: 4px;
  top: 20px;
  width: 6px;
  height: 6px;
  background: #0669db;
  border-radius: 50%;
}
@media screen and (min-width: 835px) {
  .single__content ul li:before {
    top: 22px;
  }
}
.single__content ol {
  margin-top: 30px;
  counter-reset: item;
}
@media screen and (min-width: 835px) {
  .single__content ol {
    margin: 40px auto 0;
  }
}
.single__content ol li {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  padding: 10px 0;
  padding-left: 30px;
  line-height: 1.8;
}
@media screen and (min-width: 835px) {
  .single__content ol li {
    font-size: 16px;
  }
}
.single__content ol li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  background: #0669db;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
@media screen and (min-width: 835px) {
  .single__content ol li:before {
    top: 15px;
  }
}
.single__content ol li:after {
  content: counter(item);
  counter-increment: item;
  position: absolute;
  left: 6px;
  top: 12px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  z-index: 10;
}
@media screen and (min-width: 835px) {
  .single__content ol li:after {
    top: 14px;
  }
}
.single__content strong {
  font-weight: bold;
}
.single__content u {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(65%, transparent),
    color-stop(65%, rgba(253, 171, 6, 0.2))
  );
  background: linear-gradient(transparent 65%, rgba(253, 171, 6, 0.2) 65%);
  text-decoration: none;
}
.single__content .marker {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(60%, transparent),
    color-stop(0%, rgba(253, 171, 6, 0.2))
  );
  background: linear-gradient(transparent 60%, rgba(253, 171, 6, 0.2) 0%);
  display: inline;
  padding: 0 1px 0px;
}
.single__content a {
  text-decoration: underline;
  font-size: 14px;
  font-weight: 400;
  color: #004cb3;
  display: inline-block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.single__content a:hover {
  opacity: 0.7;
}
@media screen and (min-width: 835px) {
  .single__content a {
    font-size: 16px;
  }
}
.single__content .wp-block-buttons {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.single__content .wp-block-buttons .wp-block-button a {
  width: 300px;
  height: 60px;
  background: #0669db;
  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;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  margin: 30px auto 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.single__content .wp-block-buttons .wp-block-button a:hover {
  opacity: 0.8;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 835px) {
  .single__content .wp-block-buttons .wp-block-button a {
    margin-top: 40px;
    width: 460px;
    height: 70px;
    font-size: 16px;
  }
}
.single__content figure > div {
  width: 100% !important;
}
.single__content figure .wp-caption-text {
  text-align: center;
  margin-top: 10px;
}
.single__content > img {
  display: block;
  margin: 30px auto 0;
  width: 100%;
}
@media screen and (min-width: 835px) {
  .single__content > img {
    max-width: 680px;
    margin: 40px auto 0;
  }
}
.single__content .wp-caption {
  width: 100% !important;
  text-align: center;
}
.single__content .wp-caption p {
  margin-top: 10px;
}
.single__back {
  background: #f7f9fa;
  padding: 40px 0;
}
@media screen and (min-width: 835px) {
  .single__back {
    padding: 80px 0;
  }
}
.single__back a {
  height: 40px;
  width: 240px;
  margin: auto;
  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;
  color: #0669db;
  font-size: 16px;
  font-weight: bold;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
@media screen and (min-width: 835px) {
  .single__back a {
    font-size: 18px;
  }
}
.single__back a span {
  width: 28px;
  height: 28px;
  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;
  background: #0669db;
  border-radius: 50%;
  margin-right: 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 835px) {
  .single__back a span {
    width: 18px;
    height: 18px;
  }
}
.single__back a span img {
  width: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
@media screen and (min-width: 835px) {
  .single__back a span img {
    width: 0;
  }
}
.single__back a:hover span {
  border-radius: 44px;
  width: 32px;
  height: 32px;
  left: 265px;
}
.single__back a:hover span img {
  left: 8px;
  width: 10px;
}
@media screen and (min-width: 835px) {
  .slick__list {
    width: 70%;
  }
}
.slick__list--left {
  display: none;
}
@media screen and (min-width: 835px) {
  .slick__list--left {
    display: block;
    position: absolute;
    top: 0;
    left: 80px;
    width: 100%;
  }
  .slick__list--left .slick__item img {
    width: 140px;
    height: 250px;
    border-radius: 30px;
  }
}
.slick__list--left .slick__item {
  margin: 0;
}
.slick__item {
  -webkit-box-shadow: 0px 0px 10px 3px #ccc;
  box-shadow: 0px 0px 10px 3px #ccc;
  margin: 30px 20px;
  position: relative;
}
.slick__item img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (min-width: 835px) {
  .slick__item img {
    height: 530px;
  }
}
@media screen and (min-width: 835px) and (max-width: 1024px) {
  .slick__item img {
    height: 400px;
  }
}
.slick__item__box {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 90%;
  padding: 25px 20px;
  background: rgba(0, 0, 0, 0.8);
  text-align: left;
}
.slick__item__ttl {
  color: #fff;
  font-size: 17px;
  font-weight: 500;
}
.slick__item__subttl {
  color: #fff;
  font-size: 11px;
  font-weight: 500;
}
.next-arrow {
  position: absolute;
  top: 45%;
  right: -10px;
  width: 60px;
  height: 60px;
  z-index: 10;
  cursor: pointer;
}
@media screen and (min-width: 835px) {
  .next-arrow {
    right: 30px;
  }
}
.next-arrow img {
  width: 100%;
}
.prev-arrow {
  position: absolute;
  top: 45%;
  left: -10px;
  width: 60px;
  height: 60px;
  z-index: 10;
  cursor: pointer;
}
.prev-arrow img {
  width: 100%;
}
@media screen and (min-width: 835px) {
  .slick-list {
    padding: 0 10% 0 0;
  }
}
.slick__list--left .slick-list {
  padding: 0;
}
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: opacity 0.5s ease 0.8s;
  transition: opacity 0.5s ease 0.8s;
  opacity: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
.loading span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: transform 0.8s ease, opacity 0.8s ease;
  transition: transform 0.8s ease, opacity 0.8s ease,
    -webkit-transform 0.8s ease;
}
.loading span:nth-of-type(1) {
  background: #4176fe;
}
.loading span:nth-of-type(2) {
  background: #0669db;
}
.loading.hide {
  opacity: 0;
  pointer-events: none;
}
.loading.hide span:nth-of-type(2) {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  opacity: 0;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.loading.hide span:nth-of-type(1) {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  opacity: 0;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.loading div {
  overflow: hidden;
  width: 330px;
  height: 54px;
}
@media screen and (min-width: 835px) {
  .loading div {
    width: 465px;
    height: 70px;
  }
}
.loading div img {
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  opacity: 0;
  -webkit-animation: fadeUp 1s ease forwards 0.3s;
  animation: fadeUp 1s ease forwards 0.3s;
  width: 100%;
}
.top__container {
  overflow: hidden;
}
.bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(#d6d9ec),
    to(rgba(255, 255, 255, 0))
  );
  background: linear-gradient(270deg, #d6d9ec 0%, rgba(255, 255, 255, 0) 100%);
  z-index: -1;
}
.bg canvas {
  display: block;
}
.section__title {
  font-size: 11px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  margin-left: 10px;
}
@media screen and (min-width: 835px) {
  .section__title {
    font-size: 13px;
    gap: 10px;
  }
}
.section__title span {
  width: 3px;
  height: 15px;
  background: #0669db;
  -webkit-transform: skew(-30deg);
  transform: skew(-30deg);
  display: inline-block;
}
@media screen and (min-width: 835px) {
  .section__title span {
    width: 4px;
    height: 20px;
  }
}
.section__eng {
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  color: #4176fe;
  font-family: "Raleway", sans-serif;
  font-weight: bold;
  position: relative;
  font-size: 54px;
}
@media screen and (min-width: 835px) {
  .section__eng {
    font-size: 80px;
  }
}
.section__eng:after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  color: #333;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.43, 0.05, 0.17, 1),
    -webkit-clip-path 0.8s cubic-bezier(0.43, 0.05, 0.17, 1);
  -webkit-transition-delay: 0.45s;
  transition-delay: 0.45s;
}
.section__eng.is-show {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  transition: clip-path 0.8s cubic-bezier(0.43, 0.05, 0.17, 1),
    -webkit-clip-path 0.8s cubic-bezier(0.43, 0.05, 0.17, 1);
}
.section__eng.is-show:after {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}
.mv__container {
  margin-top: 170px;
}

@media screen and (max-width: 500px) {
  .mv__container {
    margin-top: 90px;
  }
}

@media screen and (min-width: 835px) {
  .mv__container {
  }
}

@media screen and (min-width: 500px) and (max-width: 834px) {
  .mv__container {
    margin-top: 140px;
  }
}

.mv__particles {
  width: 60%;
  height: 100%;
  position: absolute;
  left: -15%;
  top: -25%;
  -webkit-transform: rotate(35deg);
  transform: rotate(35deg);
}
@media screen and (min-width: 835px) {
  .mv__particles {
    height: 120%;
    -webkit-transform: rotate(32deg);
    transform: rotate(32deg);
  }
}
.mv__inner {
}
@media screen and (min-width: 835px) {
  .mv__inner {
  }
}

.mv_img {
  width: 95%;
  margin: 0 auto;
  margin-top: -170px;
}

.mv_img img {
  width: 100%;
}

.mv_map {
  width: 550px;
  position: absolute;
  top: -5%;
  left: 540px;
}

@media screen and (max-width: 375px) {
  .mv_img {
    margin-top: -100px;
  }

  .mv_map {
    width: 270px;
    top: -10%;
    left: 62px;
  }
}

@media screen and (min-width: 835px) and (max-width: 1024px) {
  .mv_img {
    margin-top: -147px;
  }

  .mv_map {
    width: 490px;
    left: 380px;
  }
}

@media screen and (min-width: 500px) and (max-width: 834px) {
  .mv_img {
    margin-top: -114px;
  }

  .mv_map {
    width: 330px;
    left: 220px;
  }
}

@media screen and (min-width: 375px) and (max-width: 500px) {
  .mv_map {
    width: 280px;
    left: 105px;
    top: -8%;
  }

  .mv_img {
    margin-top: -108px;
  }

  .mv__title {
    font-size: 30px;
  }

  .mv__box {
    margin: 0 5% 0 0;
    width: 100%;
  }
}

@media screen and(max-width: 375px) {
  .mv_map {
    width: 330px;
    left: 180px;
  }
}

.mv--pc {
  display: none;
}
@media screen and (min-width: 500px) {
  .mv--pc {
    display: block;
  }
}
.mv--sp {
  display: block;
}
@media screen and (min-width: 500px) {
  .mv--sp {
    display: none;
  }
}

.mv__box {
  margin: 0 auto;
  width: 91%;
  position: relative;
}

@media screen and (min-width: 835px) {
  .mv__box {
  }
}

.mv__left {
  color: #fff;
  font-family: Raleway;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.1px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  left: -98px;
  top: 105px;
  position: absolute;
}
@media screen and (min-width: 835px) {
  .mv__left {
    font-size: 13px;
    left: -98px;
    top: 125px;
  }
}
.mv__title {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-size: 23px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  position: relative;
  z-index: 2;
  line-height: 1.1em;
}
@media screen and (min-width: 835px) {
  .mv__title {
    font-size: 75px;
  }
}

@media screen and (min-width: 375px) and (max-width: 500px) {
  .mv__title {
    font-size: 28px;
  }
}

@media screen and (min-width: 500px) and (max-width: 834px) {
  .mv__title {
    font-size: 36px;
  }
}
@media screen and (min-width: 835px) and (max-width: 1024px) {
  .mv__title {
    font-size: 60px;
  }
}
.mv__title span {
  line-height: 1;
  display: inline-block;
}
.mv__title span:not(:first-of-type) {
  margin-top: -15px;
}

.mv__title span:nth-of-type(1):after {
  text-underline-offset: 10px;
}

@media screen and (max-width: 375px) {
  .mv__text {
    font-size: 14px;
  }
}

@media screen and (min-width: 835px) {
  .mv__title span:nth-of-type(1):after {
    text-underline-offset: 22px;
  }
}
.mv__text {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  line-height: 1em;
  margin-top: 5px;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 835px) {
  .mv__text {
    font-size: 30px;
  }
}

@media screen and (min-width: 375px) and (max-width: 500px) {
  .mv__text {
    font-size: 16px;
  }
}

@media screen and (min-width: 500px) and (max-width: 834px) {
  .mv__text {
    font-size: 22px;
  }
}

@media screen and (min-width: 835px) and (max-width: 1024px) {
  .mv__text {
    font-size: 26px;
  }
}
.mv__title span,
.mv__text span {
  display: inline-block;
  position: relative;
  overflow-y: hidden;
  color: #fff;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.43, 0.05, 0.17, 1),
    -webkit-clip-path 0.8s cubic-bezier(0.43, 0.05, 0.17, 1);
}
.mv__title span::after,
.mv__text span::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  color: #105db5;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.43, 0.05, 0.17, 1),
    -webkit-clip-path 0.8s cubic-bezier(0.43, 0.05, 0.17, 1);
}
.mv__title.is-show span,
.mv__text.is-show span {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}
.mv__title.is-show span::after,
.mv__text.is-show span::after {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}

.mv__text span {
  margin-bottom: 0.3em;
}

.mv__small__text {
  font-size: 16px;
  line-height: 1.4em;
  margin-top: 0;
}

.mv__small__text span {
  margin-bottom: 0;
}

@media screen and (max-width: 375px) {
  .mv__small__text {
    font-size: 11px;
  }
}

@media screen and (min-width: 375px) and (max-width: 500px) {
  .mv__small__text {
    font-size: 11px;
  }
}

@media screen and (min-width: 835px) and (max-width: 1024px) {
  .mv__small__text {
    font-size: 14px;
  }
}

@media screen and (min-width: 500px) and (max-width: 834px) {
  .mv__small__text {
    font-size: 12px;
  }
}

.mv__title.is-show span:nth-of-type(1) {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.mv__title.is-show span:nth-of-type(1):after {
  -webkit-transition-delay: 0.65s;
  transition-delay: 0.65s;
}
.mv__title.is-show span:nth-of-type(2) {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.mv__title.is-show span:nth-of-type(2):after {
  -webkit-transition-delay: 0.85s;
  transition-delay: 0.85s;
}
.mv__title.is-show span:nth-of-type(3) {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.mv__title.is-show span:nth-of-type(3):after {
  -webkit-transition-delay: 1.05s;
  transition-delay: 1.05s;
}
.mv__text.is-show span:nth-of-type(1) {
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}
.mv__text.is-show span:nth-of-type(1):after {
  -webkit-transition-delay: 1.25s;
  transition-delay: 1.25s;
}
.mv__text.is-show span:nth-of-type(2) {
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}
.mv__text.is-show span:nth-of-type(2):after {
  -webkit-transition-delay: 1.45s;
  transition-delay: 1.45s;
}
.mv__logo {
  width: 240px;
  margin: 20px auto 0;
  mix-blend-mode: hard-light;
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition-delay: 1.5s;
  transition-delay: 1.5s;
}
@media screen and (min-width: 835px) {
  .mv__logo {
    width: 460px;
    margin: 0;
  }
}
.mv__logo img {
  width: 100%;
  display: block;
}
.mv__logo.is-show {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
.mv__eng {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  height: 80px;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (min-width: 835px) {
  .mv__eng {
    height: 120px;
    bottom: 18%;
  }
}
.mv__eng div {
  display: inline-block;
  white-space: nowrap;
  -webkit-animation: scroll-left 20s linear infinite;
  animation: scroll-left 20s linear infinite;
  mix-blend-mode: overlay;
}
.mv__eng div p {
  display: inline-block;
  margin-right: 100px;
  font-size: 50px;
  color: #fff;
  font-family: "Raleway", sans-serif;
  letter-spacing: 0.02em;
  mix-blend-mode: overlay;
}
@media screen and (min-width: 835px) {
  .mv__eng div p {
    font-size: 80px;
  }
}
.news__container {
  padding: 140px 0 90px;
}
.news__inner {
  padding: 0 24px;
}
@media screen and (min-width: 835px) {
  .news__inner {
    max-width: 1200px;
    margin: auto;
    padding-left: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 60px;
  }
}
.news__inner .news__item {
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
}
.news__inner .news__item__inner {
  -webkit-transform: translateY(100%) rotate(0.0001deg);
  transform: translateY(100%) rotate(0.0001deg);
}
@media screen and (min-width: 835px) {
  .news__inner .news__list {
    width: calc(100% - 300px);
  }
}
.news__inner.is-show .section__eng {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  transition: clip-path 0.8s cubic-bezier(0.43, 0.05, 0.17, 1),
    -webkit-clip-path 0.8s cubic-bezier(0.43, 0.05, 0.17, 1);
}
.news__inner.is-show .section__eng:after {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}
.news__inner.is-show .news__item {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.news__inner.is-show .news__item__inner {
  -webkit-transform: rotate(0.0001deg);
  transform: rotate(0.0001deg);
  -webkit-transition: -webkit-transform 1.35s
    cubic-bezier(0.21, 0.975, 0.445, 1);
  transition: -webkit-transform 1.35s cubic-bezier(0.21, 0.975, 0.445, 1);
  transition: transform 1.35s cubic-bezier(0.21, 0.975, 0.445, 1);
  transition: transform 1.35s cubic-bezier(0.21, 0.975, 0.445, 1),
    -webkit-transform 1.35s cubic-bezier(0.21, 0.975, 0.445, 1);
}
.news__head {
  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;
  margin-bottom: 20px;
}
@media screen and (min-width: 835px) {
  .news__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 20px;
  }
}
.news__item {
  -webkit-transition: -webkit-transform 1.35s
    cubic-bezier(0.21, 0.975, 0.445, 1);
  transition: -webkit-transform 1.35s cubic-bezier(0.21, 0.975, 0.445, 1);
  transition: transform 1.35s cubic-bezier(0.21, 0.975, 0.445, 1);
  transition: transform 1.35s cubic-bezier(0.21, 0.975, 0.445, 1),
    -webkit-transform 1.35s cubic-bezier(0.21, 0.975, 0.445, 1);
  display: block;
  overflow: hidden;
}
.news__item:nth-of-type(2) {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.news__item:nth-of-type(2) .news__item__inner {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.news__item:nth-of-type(3) {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.news__item:nth-of-type(3) .news__item__inner {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.news__item:nth-of-type(4) {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.news__item:nth-of-type(4) .news__item__inner {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.news__item:nth-of-type(5) {
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}
.news__item:nth-of-type(5) .news__item__inner {
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}
.news__item svg .circle-base {
  stroke: #0669db;
  opacity: 1;
  -webkit-transition: none;
  transition: none;
}
.news__item svg .circle-animate {
  stroke: #0669db;
  stroke-dasharray: 154;
  stroke-dashoffset: 154;
  -webkit-transition: none;
  transition: none;
}
.news__item svg .circle-animate-l {
  stroke: #0669db;
  stroke-dasharray: 248;
  stroke-dashoffset: 248;
  -webkit-transition: none;
  transition: none;
}
.news__item:hover .circle-base {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.news__item:hover .circle-animate,
.news__item:hover .circle-animate-l {
  -webkit-transition: stroke-dashoffset 0.6s ease;
  transition: stroke-dashoffset 0.6s ease;
  stroke-dashoffset: 0;
}
.news__item svg {
  width: 36px;
  height: 36px;
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (min-width: 835px) {
  .news__item svg {
    width: 50px;
    height: 50px;
    right: 24px;
  }
}
.news__item:first-of-type {
  border-top: 1px solid #c2c7ea;
}
.news__item:hover .news__item__inner:before {
  width: 100%;
}
.news__item:hover .news__item__date,
.news__item:hover .news__item__title {
  -webkit-transform: translateX(10px);
  transform: translateX(10px);
}
.news__item__inner {
  padding: 16px;
  border-bottom: 1px solid #c2c7ea;
  position: relative;
  padding-right: 60px;
  -webkit-transition: -webkit-transform 1.35s
    cubic-bezier(0.21, 0.975, 0.445, 1);
  transition: -webkit-transform 1.35s cubic-bezier(0.21, 0.975, 0.445, 1);
  transition: transform 1.35s cubic-bezier(0.21, 0.975, 0.445, 1);
  transition: transform 1.35s cubic-bezier(0.21, 0.975, 0.445, 1),
    -webkit-transform 1.35s cubic-bezier(0.21, 0.975, 0.445, 1);
  margin-bottom: 1px;
}
@media screen and (min-width: 835px) {
  .news__item__inner {
    padding: 24px;
    padding-right: 100px;
  }
}
.news__item__inner:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #0669db;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  z-index: 1;
}
.news__item__date {
  font-size: 10px;
  color: #0669db;
  letter-spacing: 0.1em;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
@media screen and (min-width: 835px) {
  .news__item__date {
    font-size: 12px;
  }
}
.news__item__title {
  font-size: 13px;
  font-weight: bold;
  color: #333;
  margin-top: 10px;
  line-height: 1.5;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
@media screen and (min-width: 835px) {
  .news__item__title {
    font-size: 16px;
    margin-top: 20px;
  }
}
.about__container {
  position: relative;
  padding: 0 0 80px;
}
@media screen and (min-width: 835px) {
  .about__container {
    padding: 100px 0 280px;
  }
}
.about__img {
  position: absolute;
  left: -20%;
  top: 50px;
  width: 130%;
}
@media screen and (min-width: 835px) {
  .about__img {
    width: 65%;
    left: -15%;
  }
}
@media screen and (min-width: 1800px) {
  .about__img {
    left: 0;
    max-width: 1000px;
  }
}
.about__img.is-show .about__img__line {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}
.about__img__line {
  position: absolute;
  left: -10%;
  top: 20px;
  width: 120%;
  z-index: 10;
  mix-blend-mode: hard-light;
  -webkit-transform: translate(-40%, 100%);
  transform: translate(-40%, 100%);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease,
    -webkit-transform 0.8s cubic-bezier(0.43, 0.05, 0.17, 1);
  transition: opacity 0.3s ease,
    -webkit-transform 0.8s cubic-bezier(0.43, 0.05, 0.17, 1);
  transition: transform 0.8s cubic-bezier(0.43, 0.05, 0.17, 1),
    opacity 0.3s ease;
  transition: transform 0.8s cubic-bezier(0.43, 0.05, 0.17, 1),
    opacity 0.3s ease, -webkit-transform 0.8s cubic-bezier(0.43, 0.05, 0.17, 1);
  -webkit-transition-delay: 0.5s, 1s;
  transition-delay: 0.5s, 1s;
}
@media screen and (min-width: 835px) {
  .about__img__line {
    left: -50px;
    top: 30px;
    width: 115%;
  }
}
.about__img__bg {
  -webkit-mask-image: url("../img/top/about_mask.png");
  mask-image: url("../img/top/about_mask.png");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
.about__img__bg img {
  width: 100%;
  display: block;
}
@media screen and (min-width: 835px) {
  .about__inner {
    max-width: 1100px;
    margin: auto;
  }
}
.about__box {
  padding: 125vw 24px 0;
}
@media screen and (min-width: 835px) {
  .about__box {
    padding: 180px 0 0;
    margin-left: auto;
    margin-right: 0;
    max-width: 525px;
  }
}
.about__box .link {
  margin-left: auto;
  margin-right: 0;
}
.about__box.is-show .section__eng {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  transition: clip-path 0.8s cubic-bezier(0.43, 0.05, 0.17, 1),
    -webkit-clip-path 0.8s cubic-bezier(0.43, 0.05, 0.17, 1);
}
.about__box.is-show .section__eng:after {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}
.about__box.is-show .about__text span {
  -webkit-transform: rotate(0.0001deg);
  transform: rotate(0.0001deg);
  -webkit-transition: -webkit-transform 1.35s
    cubic-bezier(0.21, 0.975, 0.445, 1);
  transition: -webkit-transform 1.35s cubic-bezier(0.21, 0.975, 0.445, 1);
  transition: transform 1.35s cubic-bezier(0.21, 0.975, 0.445, 1);
  transition: transform 1.35s cubic-bezier(0.21, 0.975, 0.445, 1),
    -webkit-transform 1.35s cubic-bezier(0.21, 0.975, 0.445, 1);
}
.about__text {
  font-size: 13px;
  line-height: 2;
  margin-top: 20px;
  overflow: hidden;
}
@media screen and (min-width: 835px) {
  .about__text {
    font-size: 15px;
    margin-top: 40px;
  }
}
.about__text span {
  display: inline-block;
  -webkit-transform: translateY(100%) rotate(0.0001deg);
  transform: translateY(100%) rotate(0.0001deg);
}
.about__link {
  text-align: right;
  margin-top: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.about__link:hover {
  opacity: 0.8;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 835px) {
  .about__link {
    margin-top: 40px;
  }
}
.about__eng {
  position: absolute;
  left: -361.5px;
  top: 260px;
  white-space: nowrap;
  overflow: hidden;
  height: 112px;
}
@media screen and (min-width: 835px) {
  .about__eng {
    height: 208px;
    bottom: 50px;
    top: auto;
  }
}
.about__eng div {
  display: inline-block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  -webkit-animation: scroll-left 20s linear infinite;
  animation: scroll-left 20s linear infinite;
  mix-blend-mode: overlay;
}
.about__eng div p {
  font-family: "Raleway", sans-serif;
  opacity: 0.8;
  mix-blend-mode: overlay;
  font-size: 70px;
  line-height: 160%;
  letter-spacing: 5.2px;
  color: #fff;
  margin-right: 100px;
}
@media screen and (min-width: 835px) {
  .about__eng div p {
    font-size: 130px;
  }
}
.about__blur {
  position: absolute;
  left: -200px;
  top: -50px;
  z-index: -1;
}
@media screen and (min-width: 835px) {
  .about__blur {
    left: -30%;
    top: -50%;
    width: 1500px;
  }
}
.about__blur img {
  width: 100%;
}
.about__circle {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid #8192ff;
  z-index: -1;
}
.business__container {
  margin-top: 40px;
}
@media screen and (min-width: 835px) {
  .business__container {
    margin-top: 160px;
  }
}
.business__title {
  padding: 0 24px;
}
@media screen and (min-width: 835px) {
  .business__title {
    max-width: 1100px;
    margin: auto;
  }
}
.business__list {
  margin-top: 20px;
}
@media screen and (min-width: 835px) {
  .business__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .business__list.is-hover-1 .business__item:nth-of-type(1) {
    width: 75%;
  }
  .business__list.is-hover-1
    .business__item:nth-of-type(1)
    .business__item__bg {
    -webkit-clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
  }
  .business__list.is-hover-1 .business__item:nth-of-type(1) > div {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
  }
  .business__list.is-hover-1 .business__item:nth-of-type(2) {
    width: 25%;
  }
  .business__list.is-hover-1 .business__item:nth-of-type(2) > div {
    opacity: 0;
  }
  .business__list.is-hover-2 .business__item:nth-of-type(2) {
    width: 75%;
  }
  .business__list.is-hover-2
    .business__item:nth-of-type(2)
    .business__item__bg {
    -webkit-clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
    left: -10%;
  }
  .business__list.is-hover-2 .business__item:nth-of-type(2) > div {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
  .business__list.is-hover-2 .business__item:nth-of-type(1) {
    width: 25%;
  }
  .business__list.is-hover-2 .business__item:nth-of-type(1) > div {
    opacity: 0;
  }
}
.business__item {
  padding: 50px 20px;
  position: relative;
  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;
}
@media screen and (min-width: 835px) {
  .business__item {
    width: 50%;
    height: 500px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .business__item:nth-of-type(1) .business__item__bg {
    -webkit-clip-path: polygon(0 0, 100% 0, 70% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 70% 100%, 0% 100%);
  }
  .business__item:nth-of-type(2) .business__item__bg {
    -webkit-clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
    left: -20%;
  }
}
.business__item > div {
  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: 20px;
}
@media screen and (min-width: 835px) {
  .business__item > div {
    max-width: 500px;
    margin: auto;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
}
.business__item > div > div {
  width: calc(100% - 80px);
}
@media screen and (min-width: 835px) {
  .business__item > div > div {
    width: calc(100% - 120px);
  }
}
.business__item > div > svg {
  width: 60px;
  height: 60px;
}
@media screen and (min-width: 835px) {
  .business__item > div > svg {
    width: 100px;
    height: 100px;
  }
}
.business__item .svg-arw-w {
  background-color: transparent;
  border-radius: 50%;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.business__item .svg-arw-w path {
  fill: #fff;
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}
.business__item:hover > div > svg.svg-arw-w {
  background-color: #fff;
}
.business__item:hover > div > svg.svg-arw-w path {
  fill: #000;
}
.business__item.is-show .business__item__text span,
.business__item.is-show .business__item__eng span,
.business__item.is-show .business__item__title span {
  -webkit-transform: rotate(0.0001deg);
  transform: rotate(0.0001deg);
  -webkit-transition: -webkit-transform 1.35s
    cubic-bezier(0.21, 0.975, 0.445, 1);
  transition: -webkit-transform 1.35s cubic-bezier(0.21, 0.975, 0.445, 1);
  transition: transform 1.35s cubic-bezier(0.21, 0.975, 0.445, 1);
  transition: transform 1.35s cubic-bezier(0.21, 0.975, 0.445, 1),
    -webkit-transform 1.35s cubic-bezier(0.21, 0.975, 0.445, 1);
}
.business__item__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
}
@media screen and (min-width: 835px) {
  .business__item__bg {
    width: 120%;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
}
.business__item__title {
  font-size: 13px;
  color: #fff;
  overflow: hidden;
}
@media screen and (min-width: 835px) {
  .business__item__title {
    font-size: 18px;
  }
}
.business__item__title span {
  display: inline-block;
  -webkit-transform: translateY(100%) rotate(0.0001deg);
  transform: translateY(100%) rotate(0.0001deg);
}
.business__item__eng {
  font-size: 36px;
  font-family: "Raleway", sans-serif;
  color: #fff;
  font-weight: bold;
  line-height: 1;
  margin: 10px 0;
  overflow: hidden;
}
@media screen and (min-width: 835px) {
  .business__item__eng {
    font-size: 50px;
  }
}
.business__item__eng span {
  display: inline-block;
  -webkit-transform: translateY(100%) rotate(0.0001deg);
  transform: translateY(100%) rotate(0.0001deg);
}
.business__item__text {
  font-size: 12px;
  line-height: 2;
  color: #fff;
  margin-top: 10px;
  overflow: hidden;
}
@media screen and (min-width: 835px) {
  .business__item__text {
    font-size: 15px;
    margin-top: 30px;
  }
}
.business__item__text span {
  display: inline-block;
  -webkit-transform: translateY(100%) rotate(0.0001deg);
  transform: translateY(100%) rotate(0.0001deg);
}
.service__container {
  padding: 120px 24px 120px;
}
@media screen and (min-width: 835px) {
  .service__container {
    padding: 180px 24px 230px;
  }
}
@media screen and (min-width: 835px) {
  .service__inner {
    max-width: 1100px;
    margin: auto;
  }
}
.service__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 90px;
  margin-top: 20px;
}
@media screen and (min-width: 835px) {
  .service__list {
    gap: 200px;
  }
}
.service__item {
  position: relative;
}
.service__item:nth-of-type(1) .service__item__img__bg,
.service__item:nth-of-type(3) .service__item__img__bg {
  -webkit-mask-image: url("../img/top/service_img_01_mask.png");
  mask-image: url("../img/top/service_img_01_mask.png");
}
.service__item:nth-of-type(2n) .service__item__img__bg {
  -webkit-mask-image: url("../img/top/service_img_02_mask.png");
  mask-image: url("../img/top/service_img_02_mask.png");
}
.service__item:nth-of-type(2n) .service__item__img {
  margin-left: -15%;
}
@media screen and (min-width: 835px) {
  .service__item:nth-of-type(2n) .service__item__img {
    right: auto;
    width: 65%;
    left: -20%;
    margin: 0;
  }
}
@media screen and (min-width: 835px) {
  .service__item:nth-of-type(2n) .service__item__box {
    margin-right: 0;
    margin-left: auto;
  }
}
.service__item.is-show .service__item__img__line {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}
.service__item.is-show .service__item__logo img {
  -webkit-transform: rotate(0.0001deg);
  transform: rotate(0.0001deg);
  -webkit-transition: -webkit-transform 1.35s
    cubic-bezier(0.21, 0.975, 0.445, 1);
  transition: -webkit-transform 1.35s cubic-bezier(0.21, 0.975, 0.445, 1);
  transition: transform 1.35s cubic-bezier(0.21, 0.975, 0.445, 1);
  transition: transform 1.35s cubic-bezier(0.21, 0.975, 0.445, 1),
    -webkit-transform 1.35s cubic-bezier(0.21, 0.975, 0.445, 1);
}
.service__item.is-show .service__item__text span {
  -webkit-transform: rotate(0.0001deg);
  transform: rotate(0.0001deg);
  -webkit-transition: -webkit-transform 1.35s
    cubic-bezier(0.21, 0.975, 0.445, 1);
  transition: -webkit-transform 1.35s cubic-bezier(0.21, 0.975, 0.445, 1);
  transition: transform 1.35s cubic-bezier(0.21, 0.975, 0.445, 1);
  transition: transform 1.35s cubic-bezier(0.21, 0.975, 0.445, 1),
    -webkit-transform 1.35s cubic-bezier(0.21, 0.975, 0.445, 1);
}
.service__item__img {
  width: 110%;
  position: relative;
}
@media screen and (min-width: 835px) {
  .service__item__img {
    position: absolute;
    width: 55%;
    right: -15%;
    top: -20%;
  }
}
.service__item__img__line {
  width: 110%;
  position: absolute;
  left: -10%;
  top: 20px;
  z-index: 10;
  mix-blend-mode: hard-light;
  opacity: 0;
  -webkit-transform: translate(-80%, 200%);
  transform: translate(-80%, 200%);
  -webkit-transition: opacity 0.3s ease,
    -webkit-transform 0.8s cubic-bezier(0.43, 0.05, 0.17, 1);
  transition: opacity 0.3s ease,
    -webkit-transform 0.8s cubic-bezier(0.43, 0.05, 0.17, 1);
  transition: transform 0.8s cubic-bezier(0.43, 0.05, 0.17, 1),
    opacity 0.3s ease;
  transition: transform 0.8s cubic-bezier(0.43, 0.05, 0.17, 1),
    opacity 0.3s ease, -webkit-transform 0.8s cubic-bezier(0.43, 0.05, 0.17, 1);
  -webkit-transition-delay: 0.5s, 1s;
  transition-delay: 0.5s, 1s;
}
.service__item__img__bg {
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
.service__item__img__bg img {
  width: 100%;
  display: block;
}
@media screen and (min-width: 835px) {
  .service__item__box {
    width: 50%;
  }
}
.service__item__logo {
  width: 220px;
  margin-top: 30px;
  overflow: hidden;
}
@media screen and (min-width: 835px) {
  .service__item__logo {
    width: 320px;
  }
}
.service__item__logo img {
  display: inline-block;
  -webkit-transform: translateY(100%) rotate(0.0001deg);
  transform: translateY(100%) rotate(0.0001deg);
  width: 100%;
}
.service__item__title {
  font-size: 16px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  margin-left: 10px;
  margin-top: 20px;
}
@media screen and (min-width: 835px) {
  .service__item__title {
    margin-top: 40px;
  }
}
.service__item__title span {
  width: 3px;
  height: 15px;
  background: #0669db;
  -webkit-transform: skew(-30deg);
  transform: skew(-30deg);
  display: inline-block;
}
.service__item__text {
  font-size: 13px;
  line-height: 2;
  margin-top: 20px;
  overflow: hidden;
}
@media screen and (min-width: 835px) {
  .service__item__text {
    font-size: 15px;
  }
}
.service__item__text span {
  display: inline-block;
  -webkit-transform: translateY(100%) rotate(0.0001deg);
  transform: translateY(100%) rotate(0.0001deg);
}
.service__item__link {
  text-align: right;
  margin-top: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.service__item__link:hover {
  opacity: 0.8;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 835px) {
  .service__item__link {
    margin-top: 40px;
  }
}
.join__container {
  padding: 60px 0 160px;
  display: block;
}
@media screen and (min-width: 835px) {
  .join__container {
    padding: 60px 0 160px;
  }
}
.join__box {
  width: 100%;
  height: 340px;
  position: relative;
  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;
}
@media screen and (min-width: 835px) {
  .join__box {
    height: 320px;
    width: 1024px;
    margin: auto;
  }
}
.join__bg {
  -webkit-clip-path: polygon(30% 0, 100% 0, 70% 100%, 0 100%);
  clip-path: polygon(30% 0, 100% 0, 70% 100%, 0 100%);
  background-image: url("../img/top/join_bg_sp.webp");
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transform-origin: center center;
  transform-origin: center center;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
@media screen and (min-width: 835px) {
  .join__bg {
    -webkit-clip-path: polygon(15% 0, 100% 0, 85% 100%, 0 100%);
    clip-path: polygon(15% 0, 100% 0, 85% 100%, 0 100%);
    background-image: url("../img/top/join_bg_pc.webp");
  }
}
.join__circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid #fff;
  position: absolute;
  inset: 0;
  margin: auto;
}
@media screen and (min-width: 835px) {
  .join__circle {
    width: 320px;
    height: 320px;
  }
}
.join__text {
  width: 220px;
  height: 220px;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (min-width: 835px) {
  .join__text {
    width: 320px;
    height: 320px;
  }
}
.join__text p {
  color: #fff;
  font-size: 54px;
  font-weight: bold;
  font-family: "Raleway", sans-serif;
  line-height: 1;
}
@media screen and (min-width: 835px) {
  .join__text p {
    font-size: 95px;
    white-space: nowrap;
  }
}
.join__text h2 {
  color: #fff;
  font-size: 13px;
  font-weight: normal;
}
@media screen and (min-width: 835px) {
  .join__text h2 {
    font-size: 15px;
  }
}

.sponsor__container {
  padding: 60px 24px 80px;
  position: relative;
}
@media screen and (min-width: 835px) {
  .sponsor__container {
    padding: 120px 24px 180px;
  }
}

.sponsor__inner {
  max-width: 1100px;
  margin: auto;
}

.sponsor__text {
  font-size: 13px;
  line-height: 2;
  overflow: hidden;
  margin: 20px 0;
}

@media screen and (min-width: 835px) {
  .sponsor__text {
    font-size: 15px;
    margin: 40px 0;
  }
}

.sponsor__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
  margin: 30px auto 0;
}
@media screen and (min-width: 835px) {
  .sponsor__list {
    max-width: 800px;
    margin: 50px auto 0;
  }
}
.sponsor__banner {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.sponsor__banner:hover {
  opacity: 0.8 !important;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.sponsor__banner img {
  width: 100%;
  display: block;
  overflow: hidden;
}

.sponsor__banner {
  overflow: hidden;
}

.sponsor__list.is-show .sponsor__banner img {
  -webkit-transform: rotate(0.0001deg);
  transform: rotate(0.0001deg);
  -webkit-transition: -webkit-transform 1.35s
    cubic-bezier(0.21, 0.975, 0.445, 1);
  transition: -webkit-transform 1.35s cubic-bezier(0.21, 0.975, 0.445, 1);
  transition: transform 1.35s cubic-bezier(0.21, 0.975, 0.445, 1);
  transition: transform 1.35s cubic-bezier(0.21, 0.975, 0.445, 1),
    -webkit-transform 1.35s cubic-bezier(0.21, 0.975, 0.445, 1);
}

.sponsor__list .sponsor__banner img {
  display: inline-block;
  -webkit-transform: translateY(100%) rotate(0.0001deg);
  transform: translateY(100%) rotate(0.0001deg);
  width: 100%;
}

@-webkit-keyframes fadeUp {
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeUp {
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes scroll-left {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@keyframes scroll-left {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.topics__container {
  padding: 60px 0 80px;
  position: relative;
}
@media screen and (min-width: 835px) {
  .topics__container {
    padding: 120px 0 180px;
  }
}

.topics__inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

@media screen and (min-width: 835px) {
  .topics__inner {
    padding: 0 50px;
  }
}

.topics__text {
  font-size: 13px;
  line-height: 2;
  overflow: hidden;
  margin: 20px 0;
  line-height: 1.7em;
}

.topics__text span {
  font-size: 18px;
  font-weight: bold;
}

@media screen and (min-width: 835px) {
  .topics__text {
    font-size: 15px;
    margin: 40px 0;
  }

  .topics__text span {
    font-size: 20px;
  }
}

.topics_video_wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (min-width: 835px) {
  .topics_video_wrapper {
    width: 80%;
  }
}

@media screen and (max-width: 1200px) {
  .topics_video_wrapper {
    width: 100%;
  }
}

@media screen and (max-width: 425px) {
  .topics_video_wrapper {
    display: block;
  }

  .video_box {
    width: 100%;
  }
}

.video_box {
  width: 46%;
}

@media screen and (max-width: 425px) {
  .video_box {
    width: 100%;
  }
  .video_box:first-of-type {
    margin-bottom: 30px;
  }
}

.video_box a div {
  position: relative;
}

.video_box a div img {
  width: 100%;
  display: block;
}

.video_box a div .play {
  width: 10%;
  position: absolute;
  bottom: 10px;
  left: 10px;
}

.video_box p {
  text-align: center;
  margin: 3% auto 0;
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

@media screen and (max-width: 425px) {
  .video_box p {
    font-size: 15px;
  }
}

.video_box a .play {
  display: block;
  transition: transform 0.3s ease;
}

.video_box a:hover .play {
  transform: scale(1.1);
}

.modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99999;
}

.modal__bg {
  background: rgba(0, 0, 0, 0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
  z-index: 9998;
}

.modal__content {
  background: #fff;
  left: 50%;
  padding: 10px 10px 10px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  z-index: 9999;
}

.modal__content p {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-top: 8px;
}

.modal__content video {
  width: 100%;
  margin: 0 auto;
}

.modal a {
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 9999;
  width: 70px;
}

.modal a img {
  width: 100%;
}

@media screen and (max-width: 425px) {
  .modal__content {
    width: 90%;
    padding: 10px 10px 10px;
  }

  .modal a {
    width: 13%;
    top: 15px;
    right: 15px;
  }
}

.u-mt5 {
  margin-top: 5px;
}
.u-mt25--sp {
  margin-top: 25px;
}
@media screen and (min-width: 835px) {
  .u-mt25--sp {
    display: none;
  }
}
@media screen and (min-width: 835px) {
  .u-mt25--pc {
    margin-top: 25px;
  }
}
.u-mb5 {
  margin-bottom: 5px;
}
.u-mr5 {
  margin-right: 5px;
}
.u-ml5 {
  margin-left: 5px;
}
.u-mt10 {
  margin-top: 10px;
}
.u-mt50--sp {
  margin-top: 50px;
}
@media screen and (min-width: 835px) {
  .u-mt50--sp {
    display: none;
  }
}
@media screen and (min-width: 835px) {
  .u-mt50--pc {
    margin-top: 50px;
  }
}
.u-mb10 {
  margin-bottom: 10px;
}
.u-mr10 {
  margin-right: 10px;
}
.u-ml10 {
  margin-left: 10px;
}
.u-mt15 {
  margin-top: 15px;
}
.u-mt75--sp {
  margin-top: 75px;
}
@media screen and (min-width: 835px) {
  .u-mt75--sp {
    display: none;
  }
}
@media screen and (min-width: 835px) {
  .u-mt75--pc {
    margin-top: 75px;
  }
}
.u-mb15 {
  margin-bottom: 15px;
}
.u-mr15 {
  margin-right: 15px;
}
.u-ml15 {
  margin-left: 15px;
}
.u-mt20 {
  margin-top: 20px;
}
.u-mt100--sp {
  margin-top: 100px;
}
@media screen and (min-width: 835px) {
  .u-mt100--sp {
    display: none;
  }
}
@media screen and (min-width: 835px) {
  .u-mt100--pc {
    margin-top: 100px;
  }
}
.u-mb20 {
  margin-bottom: 20px;
}
.u-mr20 {
  margin-right: 20px;
}
.u-ml20 {
  margin-left: 20px;
}
.u-mt25 {
  margin-top: 25px;
}
.u-mt125--sp {
  margin-top: 125px;
}
@media screen and (min-width: 835px) {
  .u-mt125--sp {
    display: none;
  }
}
@media screen and (min-width: 835px) {
  .u-mt125--pc {
    margin-top: 125px;
  }
}
.u-mb25 {
  margin-bottom: 25px;
}
.u-mr25 {
  margin-right: 25px;
}
.u-ml25 {
  margin-left: 25px;
}
.u-mt30 {
  margin-top: 30px;
}
.u-mt150--sp {
  margin-top: 150px;
}
@media screen and (min-width: 835px) {
  .u-mt150--sp {
    display: none;
  }
}
@media screen and (min-width: 835px) {
  .u-mt150--pc {
    margin-top: 150px;
  }
}
.u-mb30 {
  margin-bottom: 30px;
}
.u-mr30 {
  margin-right: 30px;
}
.u-ml30 {
  margin-left: 30px;
}
.u-mt35 {
  margin-top: 35px;
}
.u-mt175--sp {
  margin-top: 175px;
}
@media screen and (min-width: 835px) {
  .u-mt175--sp {
    display: none;
  }
}
@media screen and (min-width: 835px) {
  .u-mt175--pc {
    margin-top: 175px;
  }
}
.u-mb35 {
  margin-bottom: 35px;
}
.u-mr35 {
  margin-right: 35px;
}
.u-ml35 {
  margin-left: 35px;
}
.u-mt40 {
  margin-top: 40px;
}
.u-mt200--sp {
  margin-top: 200px;
}
@media screen and (min-width: 835px) {
  .u-mt200--sp {
    display: none;
  }
}
@media screen and (min-width: 835px) {
  .u-mt200--pc {
    margin-top: 200px;
  }
}
.u-mb40 {
  margin-bottom: 40px;
}
.u-mr40 {
  margin-right: 40px;
}
.u-ml40 {
  margin-left: 40px;
}
.u-mt45 {
  margin-top: 45px;
}
.u-mt225--sp {
  margin-top: 225px;
}
@media screen and (min-width: 835px) {
  .u-mt225--sp {
    display: none;
  }
}
@media screen and (min-width: 835px) {
  .u-mt225--pc {
    margin-top: 225px;
  }
}
.u-mb45 {
  margin-bottom: 45px;
}
.u-mr45 {
  margin-right: 45px;
}
.u-ml45 {
  margin-left: 45px;
}
.u-mt50 {
  margin-top: 50px;
}
.u-mt250--sp {
  margin-top: 250px;
}
@media screen and (min-width: 835px) {
  .u-mt250--sp {
    display: none;
  }
}
@media screen and (min-width: 835px) {
  .u-mt250--pc {
    margin-top: 250px;
  }
}
.u-mb50 {
  margin-bottom: 50px;
}
.u-mr50 {
  margin-right: 50px;
}
.u-ml50 {
  margin-left: 50px;
}
.u-mt55 {
  margin-top: 55px;
}
.u-mt275--sp {
  margin-top: 275px;
}
@media screen and (min-width: 835px) {
  .u-mt275--sp {
    display: none;
  }
}
@media screen and (min-width: 835px) {
  .u-mt275--pc {
    margin-top: 275px;
  }
}
.u-mb55 {
  margin-bottom: 55px;
}
.u-mr55 {
  margin-right: 55px;
}
.u-ml55 {
  margin-left: 55px;
}
.u-mt60 {
  margin-top: 60px;
}
.u-mt300--sp {
  margin-top: 300px;
}
@media screen and (min-width: 835px) {
  .u-mt300--sp {
    display: none;
  }
}
@media screen and (min-width: 835px) {
  .u-mt300--pc {
    margin-top: 300px;
  }
}
.u-mb60 {
  margin-bottom: 60px;
}
.u-mr60 {
  margin-right: 60px;
}
.u-ml60 {
  margin-left: 60px;
}
.u-mt65 {
  margin-top: 65px;
}
.u-mt325--sp {
  margin-top: 325px;
}
@media screen and (min-width: 835px) {
  .u-mt325--sp {
    display: none;
  }
}
@media screen and (min-width: 835px) {
  .u-mt325--pc {
    margin-top: 325px;
  }
}
.u-mb65 {
  margin-bottom: 65px;
}
.u-mr65 {
  margin-right: 65px;
}
.u-ml65 {
  margin-left: 65px;
}
.u-mt70 {
  margin-top: 70px;
}
.u-mt350--sp {
  margin-top: 350px;
}
@media screen and (min-width: 835px) {
  .u-mt350--sp {
    display: none;
  }
}
@media screen and (min-width: 835px) {
  .u-mt350--pc {
    margin-top: 350px;
  }
}
.u-mb70 {
  margin-bottom: 70px;
}
.u-mr70 {
  margin-right: 70px;
}
.u-ml70 {
  margin-left: 70px;
}
.u-mt75 {
  margin-top: 75px;
}
.u-mt375--sp {
  margin-top: 375px;
}
@media screen and (min-width: 835px) {
  .u-mt375--sp {
    display: none;
  }
}
@media screen and (min-width: 835px) {
  .u-mt375--pc {
    margin-top: 375px;
  }
}
.u-mb75 {
  margin-bottom: 75px;
}
.u-mr75 {
  margin-right: 75px;
}
.u-ml75 {
  margin-left: 75px;
}
.u-mt80 {
  margin-top: 80px;
}
.u-mt400--sp {
  margin-top: 400px;
}
@media screen and (min-width: 835px) {
  .u-mt400--sp {
    display: none;
  }
}
@media screen and (min-width: 835px) {
  .u-mt400--pc {
    margin-top: 400px;
  }
}
.u-mb80 {
  margin-bottom: 80px;
}
.u-mr80 {
  margin-right: 80px;
}
.u-ml80 {
  margin-left: 80px;
}
.u-mt85 {
  margin-top: 85px;
}
.u-mt425--sp {
  margin-top: 425px;
}
@media screen and (min-width: 835px) {
  .u-mt425--sp {
    display: none;
  }
}
@media screen and (min-width: 835px) {
  .u-mt425--pc {
    margin-top: 425px;
  }
}
.u-mb85 {
  margin-bottom: 85px;
}
.u-mr85 {
  margin-right: 85px;
}
.u-ml85 {
  margin-left: 85px;
}
.u-mt90 {
  margin-top: 90px;
}
.u-mt450--sp {
  margin-top: 450px;
}
@media screen and (min-width: 835px) {
  .u-mt450--sp {
    display: none;
  }
}
@media screen and (min-width: 835px) {
  .u-mt450--pc {
    margin-top: 450px;
  }
}
.u-mb90 {
  margin-bottom: 90px;
}
.u-mr90 {
  margin-right: 90px;
}
.u-ml90 {
  margin-left: 90px;
}
.u-mt95 {
  margin-top: 95px;
}
.u-mt475--sp {
  margin-top: 475px;
}
@media screen and (min-width: 835px) {
  .u-mt475--sp {
    display: none;
  }
}
@media screen and (min-width: 835px) {
  .u-mt475--pc {
    margin-top: 475px;
  }
}
.u-mb95 {
  margin-bottom: 95px;
}
.u-mr95 {
  margin-right: 95px;
}
.u-ml95 {
  margin-left: 95px;
}
.u-mt100 {
  margin-top: 100px;
}
.u-mt500--sp {
  margin-top: 500px;
}
@media screen and (min-width: 835px) {
  .u-mt500--sp {
    display: none;
  }
}
@media screen and (min-width: 835px) {
  .u-mt500--pc {
    margin-top: 500px;
  }
}
.u-mb100 {
  margin-bottom: 100px;
}
.u-mr100 {
  margin-right: 100px;
}
.u-ml100 {
  margin-left: 100px;
}
.u-mt105 {
  margin-top: 105px;
}
.u-mt525--sp {
  margin-top: 525px;
}
@media screen and (min-width: 835px) {
  .u-mt525--sp {
    display: none;
  }
}
@media screen and (min-width: 835px) {
  .u-mt525--pc {
    margin-top: 525px;
  }
}
.u-mb105 {
  margin-bottom: 105px;
}
.u-mr105 {
  margin-right: 105px;
}
.u-ml105 {
  margin-left: 105px;
}
.u-mt110 {
  margin-top: 110px;
}
.u-mt550--sp {
  margin-top: 550px;
}
@media screen and (min-width: 835px) {
  .u-mt550--sp {
    display: none;
  }
}
@media screen and (min-width: 835px) {
  .u-mt550--pc {
    margin-top: 550px;
  }
}
.u-mb110 {
  margin-bottom: 110px;
}
.u-mr110 {
  margin-right: 110px;
}
.u-ml110 {
  margin-left: 110px;
}
.u-mt115 {
  margin-top: 115px;
}
.u-mt575--sp {
  margin-top: 575px;
}
@media screen and (min-width: 835px) {
  .u-mt575--sp {
    display: none;
  }
}
@media screen and (min-width: 835px) {
  .u-mt575--pc {
    margin-top: 575px;
  }
}
.u-mb115 {
  margin-bottom: 115px;
}
.u-mr115 {
  margin-right: 115px;
}
.u-ml115 {
  margin-left: 115px;
}
.u-mt120 {
  margin-top: 120px;
}
.u-mt600--sp {
  margin-top: 600px;
}
@media screen and (min-width: 835px) {
  .u-mt600--sp {
    display: none;
  }
}
@media screen and (min-width: 835px) {
  .u-mt600--pc {
    margin-top: 600px;
  }
}
.u-mb120 {
  margin-bottom: 120px;
}
.u-mr120 {
  margin-right: 120px;
}
.u-ml120 {
  margin-left: 120px;
}
.u-mt125 {
  margin-top: 125px;
}
.u-mt625--sp {
  margin-top: 625px;
}
@media screen and (min-width: 835px) {
  .u-mt625--sp {
    display: none;
  }
}
@media screen and (min-width: 835px) {
  .u-mt625--pc {
    margin-top: 625px;
  }
}
.u-mb125 {
  margin-bottom: 125px;
}
.u-mr125 {
  margin-right: 125px;
}
.u-ml125 {
  margin-left: 125px;
}
.u-mt130 {
  margin-top: 130px;
}
.u-mt650--sp {
  margin-top: 650px;
}
@media screen and (min-width: 835px) {
  .u-mt650--sp {
    display: none;
  }
}
@media screen and (min-width: 835px) {
  .u-mt650--pc {
    margin-top: 650px;
  }
}
.u-mb130 {
  margin-bottom: 130px;
}
.u-mr130 {
  margin-right: 130px;
}
.u-ml130 {
  margin-left: 130px;
}
.u-mt135 {
  margin-top: 135px;
}
.u-mt675--sp {
  margin-top: 675px;
}
@media screen and (min-width: 835px) {
  .u-mt675--sp {
    display: none;
  }
}
@media screen and (min-width: 835px) {
  .u-mt675--pc {
    margin-top: 675px;
  }
}
.u-mb135 {
  margin-bottom: 135px;
}
.u-mr135 {
  margin-right: 135px;
}
.u-ml135 {
  margin-left: 135px;
}
.u-mt140 {
  margin-top: 140px;
}
.u-mt700--sp {
  margin-top: 700px;
}
@media screen and (min-width: 835px) {
  .u-mt700--sp {
    display: none;
  }
}
@media screen and (min-width: 835px) {
  .u-mt700--pc {
    margin-top: 700px;
  }
}
.u-mb140 {
  margin-bottom: 140px;
}
.u-mr140 {
  margin-right: 140px;
}
.u-ml140 {
  margin-left: 140px;
}
.u-mt145 {
  margin-top: 145px;
}
.u-mt725--sp {
  margin-top: 725px;
}
@media screen and (min-width: 835px) {
  .u-mt725--sp {
    display: none;
  }
}
@media screen and (min-width: 835px) {
  .u-mt725--pc {
    margin-top: 725px;
  }
}
.u-mb145 {
  margin-bottom: 145px;
}
.u-mr145 {
  margin-right: 145px;
}
.u-ml145 {
  margin-left: 145px;
}
.u-mt150 {
  margin-top: 150px;
}
.u-mt750--sp {
  margin-top: 750px;
}
@media screen and (min-width: 835px) {
  .u-mt750--sp {
    display: none;
  }
}
@media screen and (min-width: 835px) {
  .u-mt750--pc {
    margin-top: 750px;
  }
}
.u-mb150 {
  margin-bottom: 150px;
}
.u-mr150 {
  margin-right: 150px;
}
.u-ml150 {
  margin-left: 150px;
}
.u-mt155 {
  margin-top: 155px;
}
.u-mt775--sp {
  margin-top: 775px;
}
@media screen and (min-width: 835px) {
  .u-mt775--sp {
    display: none;
  }
}
@media screen and (min-width: 835px) {
  .u-mt775--pc {
    margin-top: 775px;
  }
}
.u-mb155 {
  margin-bottom: 155px;
}
.u-mr155 {
  margin-right: 155px;
}
.u-ml155 {
  margin-left: 155px;
}
.u-mt160 {
  margin-top: 160px;
}
.u-mt800--sp {
  margin-top: 800px;
}
@media screen and (min-width: 835px) {
  .u-mt800--sp {
    display: none;
  }
}
@media screen and (min-width: 835px) {
  .u-mt800--pc {
    margin-top: 800px;
  }
}
.u-mb160 {
  margin-bottom: 160px;
}
.u-mr160 {
  margin-right: 160px;
}
.u-ml160 {
  margin-left: 160px;
}
.u-mt165 {
  margin-top: 165px;
}
.u-mt825--sp {
  margin-top: 825px;
}
@media screen and (min-width: 835px) {
  .u-mt825--sp {
    display: none;
  }
}
@media screen and (min-width: 835px) {
  .u-mt825--pc {
    margin-top: 825px;
  }
}
.u-mb165 {
  margin-bottom: 165px;
}
.u-mr165 {
  margin-right: 165px;
}
.u-ml165 {
  margin-left: 165px;
}
.u-mt170 {
  margin-top: 170px;
}
.u-mt850--sp {
  margin-top: 850px;
}
@media screen and (min-width: 835px) {
  .u-mt850--sp {
    display: none;
  }
}
@media screen and (min-width: 835px) {
  .u-mt850--pc {
    margin-top: 850px;
  }
}
.u-mb170 {
  margin-bottom: 170px;
}
.u-mr170 {
  margin-right: 170px;
}
.u-ml170 {
  margin-left: 170px;
}
.u-mt175 {
  margin-top: 175px;
}
.u-mt875--sp {
  margin-top: 875px;
}
@media screen and (min-width: 835px) {
  .u-mt875--sp {
    display: none;
  }
}
@media screen and (min-width: 835px) {
  .u-mt875--pc {
    margin-top: 875px;
  }
}
.u-mb175 {
  margin-bottom: 175px;
}
.u-mr175 {
  margin-right: 175px;
}
.u-ml175 {
  margin-left: 175px;
}
.u-mt180 {
  margin-top: 180px;
}
.u-mt900--sp {
  margin-top: 900px;
}
@media screen and (min-width: 835px) {
  .u-mt900--sp {
    display: none;
  }
}
@media screen and (min-width: 835px) {
  .u-mt900--pc {
    margin-top: 900px;
  }
}
.u-mb180 {
  margin-bottom: 180px;
}
.u-mr180 {
  margin-right: 180px;
}
.u-ml180 {
  margin-left: 180px;
}
.u-mt185 {
  margin-top: 185px;
}
.u-mt925--sp {
  margin-top: 925px;
}
@media screen and (min-width: 835px) {
  .u-mt925--sp {
    display: none;
  }
}
@media screen and (min-width: 835px) {
  .u-mt925--pc {
    margin-top: 925px;
  }
}
.u-mb185 {
  margin-bottom: 185px;
}
.u-mr185 {
  margin-right: 185px;
}
.u-ml185 {
  margin-left: 185px;
}
.u-mt190 {
  margin-top: 190px;
}
.u-mt950--sp {
  margin-top: 950px;
}
@media screen and (min-width: 835px) {
  .u-mt950--sp {
    display: none;
  }
}
@media screen and (min-width: 835px) {
  .u-mt950--pc {
    margin-top: 950px;
  }
}
.u-mb190 {
  margin-bottom: 190px;
}
.u-mr190 {
  margin-right: 190px;
}
.u-ml190 {
  margin-left: 190px;
}
.u-mt195 {
  margin-top: 195px;
}
.u-mt975--sp {
  margin-top: 975px;
}
@media screen and (min-width: 835px) {
  .u-mt975--sp {
    display: none;
  }
}
@media screen and (min-width: 835px) {
  .u-mt975--pc {
    margin-top: 975px;
  }
}
.u-mb195 {
  margin-bottom: 195px;
}
.u-mr195 {
  margin-right: 195px;
}
.u-ml195 {
  margin-left: 195px;
}
.u-mt200 {
  margin-top: 200px;
}
.u-mt1000--sp {
  margin-top: 1000px;
}
@media screen and (min-width: 835px) {
  .u-mt1000--sp {
    display: none;
  }
}
@media screen and (min-width: 835px) {
  .u-mt1000--pc {
    margin-top: 1000px;
  }
}
.u-mb200 {
  margin-bottom: 200px;
}
.u-mr200 {
  margin-right: 200px;
}
.u-ml200 {
  margin-left: 200px;
}
.u-mt205 {
  margin-top: 205px;
}
.u-mt1025--sp {
  margin-top: 1025px;
}
@media screen and (min-width: 835px) {
  .u-mt1025--sp {
    display: none;
  }
}
@media screen and (min-width: 835px) {
  .u-mt1025--pc {
    margin-top: 1025px;
  }
}
.u-mb205 {
  margin-bottom: 205px;
}
.u-mr205 {
  margin-right: 205px;
}
.u-ml205 {
  margin-left: 205px;
}
.u-mt210 {
  margin-top: 210px;
}
.u-mt1050--sp {
  margin-top: 1050px;
}
@media screen and (min-width: 835px) {
  .u-mt1050--sp {
    display: none;
  }
}
@media screen and (min-width: 835px) {
  .u-mt1050--pc {
    margin-top: 1050px;
  }
}
.u-mb210 {
  margin-bottom: 210px;
}
.u-mr210 {
  margin-right: 210px;
}
.u-ml210 {
  margin-left: 210px;
}
.u-mt215 {
  margin-top: 215px;
}
.u-mt1075--sp {
  margin-top: 1075px;
}
@media screen and (min-width: 835px) {
  .u-mt1075--sp {
    display: none;
  }
}
@media screen and (min-width: 835px) {
  .u-mt1075--pc {
    margin-top: 1075px;
  }
}
.u-mb215 {
  margin-bottom: 215px;
}
.u-mr215 {
  margin-right: 215px;
}
.u-ml215 {
  margin-left: 215px;
}
.u-mt220 {
  margin-top: 220px;
}
.u-mt1100--sp {
  margin-top: 1100px;
}
@media screen and (min-width: 835px) {
  .u-mt1100--sp {
    display: none;
  }
}
@media screen and (min-width: 835px) {
  .u-mt1100--pc {
    margin-top: 1100px;
  }
}
.u-mb220 {
  margin-bottom: 220px;
}
.u-mr220 {
  margin-right: 220px;
}
.u-ml220 {
  margin-left: 220px;
}
.u-mt225 {
  margin-top: 225px;
}
.u-mt1125--sp {
  margin-top: 1125px;
}
@media screen and (min-width: 835px) {
  .u-mt1125--sp {
    display: none;
  }
}
@media screen and (min-width: 835px) {
  .u-mt1125--pc {
    margin-top: 1125px;
  }
}
.u-mb225 {
  margin-bottom: 225px;
}
.u-mr225 {
  margin-right: 225px;
}
.u-ml225 {
  margin-left: 225px;
}
.u-mt230 {
  margin-top: 230px;
}
.u-mt1150--sp {
  margin-top: 1150px;
}
@media screen and (min-width: 835px) {
  .u-mt1150--sp {
    display: none;
  }
}
@media screen and (min-width: 835px) {
  .u-mt1150--pc {
    margin-top: 1150px;
  }
}
.u-mb230 {
  margin-bottom: 230px;
}
.u-mr230 {
  margin-right: 230px;
}
.u-ml230 {
  margin-left: 230px;
}
.u-mt235 {
  margin-top: 235px;
}
.u-mt1175--sp {
  margin-top: 1175px;
}
@media screen and (min-width: 835px) {
  .u-mt1175--sp {
    display: none;
  }
}
@media screen and (min-width: 835px) {
  .u-mt1175--pc {
    margin-top: 1175px;
  }
}
.u-mb235 {
  margin-bottom: 235px;
}
.u-mr235 {
  margin-right: 235px;
}
.u-ml235 {
  margin-left: 235px;
}
.u-mt240 {
  margin-top: 240px;
}
.u-mt1200--sp {
  margin-top: 1200px;
}
@media screen and (min-width: 835px) {
  .u-mt1200--sp {
    display: none;
  }
}
@media screen and (min-width: 835px) {
  .u-mt1200--pc {
    margin-top: 1200px;
  }
}
.u-mb240 {
  margin-bottom: 240px;
}
.u-mr240 {
  margin-right: 240px;
}
.u-ml240 {
  margin-left: 240px;
}
.u-mt245 {
  margin-top: 245px;
}
.u-mt1225--sp {
  margin-top: 1225px;
}
@media screen and (min-width: 835px) {
  .u-mt1225--sp {
    display: none;
  }
}
@media screen and (min-width: 835px) {
  .u-mt1225--pc {
    margin-top: 1225px;
  }
}
.u-mb245 {
  margin-bottom: 245px;
}
.u-mr245 {
  margin-right: 245px;
}
.u-ml245 {
  margin-left: 245px;
}
.u-mt250 {
  margin-top: 250px;
}
.u-mt1250--sp {
  margin-top: 1250px;
}
@media screen and (min-width: 835px) {
  .u-mt1250--sp {
    display: none;
  }
}
@media screen and (min-width: 835px) {
  .u-mt1250--pc {
    margin-top: 1250px;
  }
}
.u-mb250 {
  margin-bottom: 250px;
}
.u-mr250 {
  margin-right: 250px;
}
.u-ml250 {
  margin-left: 250px;
}
.scroll-prevent {
  overflow: hidden;
}
.u-fs5 {
  font-size: 5px;
}
.u-fs10 {
  font-size: 10px;
}
.u-fs15 {
  font-size: 15px;
}
.u-fs20 {
  font-size: 20px;
}
.u-fs25 {
  font-size: 25px;
}
.u-fs30 {
  font-size: 30px;
}
.u-fs35 {
  font-size: 35px;
}
.u-fs40 {
  font-size: 40px;
}
.u-fs45 {
  font-size: 45px;
}
.u-fs50 {
  font-size: 50px;
}
.u-fs55 {
  font-size: 55px;
}
.u-fs60 {
  font-size: 60px;
}
.u-fs65 {
  font-size: 65px;
}
.u-fs70 {
  font-size: 70px;
}
.u-fs75 {
  font-size: 75px;
}
.u-fs80 {
  font-size: 80px;
}
.u-fs85 {
  font-size: 85px;
}
.u-fs90 {
  font-size: 90px;
}
.u-fs95 {
  font-size: 95px;
}
.u-fs100 {
  font-size: 100px;
}
.u-fs105 {
  font-size: 105px;
}
.u-fs110 {
  font-size: 110px;
}
.u-fs115 {
  font-size: 115px;
}
.u-fs120 {
  font-size: 120px;
}
.u-fs125 {
  font-size: 125px;
}
.u-fs130 {
  font-size: 130px;
}
.u-fs135 {
  font-size: 135px;
}
.u-fs140 {
  font-size: 140px;
}
.u-fs145 {
  font-size: 145px;
}
.u-fs150 {
  font-size: 150px;
}
.u-fs155 {
  font-size: 155px;
}
.u-fs160 {
  font-size: 160px;
}
.u-fs165 {
  font-size: 165px;
}
.u-fs170 {
  font-size: 170px;
}
.u-fs175 {
  font-size: 175px;
}
.u-fs180 {
  font-size: 180px;
}
.u-fs185 {
  font-size: 185px;
}
.u-fs190 {
  font-size: 190px;
}
.u-fs195 {
  font-size: 195px;
}
.u-fs200 {
  font-size: 200px;
}
.u-fs205 {
  font-size: 205px;
}
.u-fs210 {
  font-size: 210px;
}
.u-fs215 {
  font-size: 215px;
}
.u-fs220 {
  font-size: 220px;
}
.u-fs225 {
  font-size: 225px;
}
.u-fs230 {
  font-size: 230px;
}
.u-fs235 {
  font-size: 235px;
}
.u-fs240 {
  font-size: 240px;
}
.u-fs245 {
  font-size: 245px;
}
.u-fs250 {
  font-size: 250px;
}
.u-tac {
  text-align: center;
}

.outline__office__item_list h3 {
  font-size: 20px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  padding-left: 10px;
  padding-bottom: 10px;
  margin: 10px 0;
  border-bottom: 1px solid #d2d5e5;
}

@media screen and (min-width: 835px) {
  .outline__office__item_list h3 {
    font-size: 28px;
    gap: 10px;
    padding-bottom: 20px;
    margin-bottom: 30px;
    margin: 20px 10px 20px;
  }
}

.outline__office__item_list h3 span {
  width: 3px;
  height: 15px;
  background: #0669db;
  -webkit-transform: skew(-30deg);
  transform: skew(-30deg);
  display: inline-block;
}

@media screen and (min-width: 835px) {
  .outline__office__item_list h3 span {
    width: 4px;
    height: 20px;
  }
}

.table th,
.table td {
  display: block;
  text-align: left;
}

.table {
  width: 100%;
  border: 1px solid #d2d6e5;
  -webkit-box-shadow: 0px 4px 10px 0px rgba(17, 40, 188, 0.1);
  box-shadow: 0px 4px 10px 0px rgba(17, 40, 188, 0.1);
}

@media screen and (min-width: 835px) {
  .table {
    max-width: 900px;
    margin: 0 auto;
  }
}

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

.table th {
  background: #0669db;
  color: #fff;
  font-size: 13px;
  line-height: 1.6;
  padding: 6px 16px;
}

@media screen and (min-width: 835px) {
  .table th {
    width: 220px;
    padding: 10px 16px;
    font-size: 15px;
  }
}

@media screen and (min-width: 835px) {
  .table th,
  .table td {
    display: table-cell;
    border-top: 1px solid #d2d6e5;
  }
}

.table .map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #0669db;
  text-decoration: underline;
  margin-top: 4px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}

.table td {
  background: #fff;
  padding: 12px 16px;
  font-size: 13px;
  line-height: 1.6;
}

@media screen and (min-width: 835px) {
  .table td {
    padding: 20px 16px;
    font-size: 15px;
  }
}

@media screen and (min-width: 835px) {
  .table th,
  .table td {
    display: table-cell;
    border-top: 1px solid #d2d6e5;
  }
}

.enviroment__head {
  background: #0669db;
  text-align: center;
  color: #fff;
  padding: 4px 0;
  font-size: 18px;
  line-height: 1.4;
  margin-top: 30px;
}

@media screen and (min-width: 835px) {
  .enviroment__head {
    max-width: 920px;
    margin: 0 auto;
    font-size: 24px;
    padding: 6px 0 8px;
  }
}

.history {
  display: block;
  width: 100%;
  margin: 60px auto 100px;
}

@media screen and (min-width: 835px) {
  .history {
    display: flex;
  }
}

.history .history_inner {
  width: 100%;
}

.history__subhead {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.4;
  border-bottom: 2px solid #a4bbd5;
  padding-bottom: 10px;
  margin-bottom: 20px;
  margin-top: 50px;
  font-family: "Raleway", sans-serif;
}
@media screen and (min-width: 835px) {
  .history__subhead {
    font-size: 60px;
    margin-bottom: 30px;
  }
}

.history_inner .history_box {
  display: flex;
  width: 100%;
  margin-bottom: 25px;
  margin: 0;
  align-items: flex-start;
  margin-top: -8px;
}

.history_inner .history_box .ad {
  font-size: 35px;
  color: #939393;
  margin-top: -11px;
  font-weight: 800;
}

.history_inner .history_box ul {
  padding-inline-start: 0;
  list-style-position: inside;
}

.custom-list {
  list-style: none;
  padding-left: 0;
}

.custom-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 7px;
}

.custom-list .marker {
  margin-right: 0.75em; /* ← ここで自由に余白調整 */
  color: #333;
  flex-shrink: 0;
  font-size: 5px;
  margin-top: 1.5em;
}

.history .border {
  width: 5%;
  margin: 0 2%;
}

@media screen and (min-width: 835px) {
  .history .border .item--sp {
    display: none;
  }
}

.border_vertical {
  height: 170px;
  width: 2px;
  background-color: #000;
  display: block;
  margin: 0 auto;
}

.circle {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #0669db;
  display: block;
  margin: 0 auto;
  margin-top: 5px;
}

@media screen and (max-width: 835px) {
  .border_vertical {
    height: 170px;
  }

  .circle {
    margin-top: 4px;
  }

  .custom-list li {
    font-size: 13px;
  }

  .history_inner .history_box .ad {
    font-size: 23px;
    margin-top: -5px;
  }

  .custom-list .marker {
    margin-top: 1em;
  }
}

.kobutu_h2 {
  text-align: center;
  border-bottom: none !important;
}
