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

foundation/base.scss

***************************/
:root {
  --white: #fff;
  --black: #111111;
  --gray: #444444;
  --l-gray: #EEEEEE;
  --blue: #0240B7;
  --blue02: #0141BB;
  --yellow: #FCD13E;
  --font: "Zen Kaku Gothic New", 游ゴシック体, "Yu Gothic", YuGothic, メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  --popping: "Poppins", sans-serif;
  --zenkaku: "Zen Kaku Gothic New", sans-serif;
  --jakarta: "Plus Jakarta Sans", sans-serif;
}

* {
  box-sizing: border-box;
  word-break: break-all;
  word-wrap: break-word;
}

html {
  /*overflow:auto;*/
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
  font-family: sans-serif;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  font-size: 16px;
  color: var(--black);
  font-family: var(--font);
  font-weight: normal;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 2;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: 1s;
  -moz-transition: 1s;
  -webkit-transition: 1s;
  -o-transition: 1s;
  -ms-transition: 1s;
}

a:hover {
  color: inherit;
  text-decoration: none;
  opacity: 0.75;
}

a:active,
a:hover {
  outline-width: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0;
  font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  text-align: left;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

figure {
  margin: 0;
}

figcaption,
figure,
main {
  display: block;
}

article,
aside,
footer,
header,
nav,
section {
  display: block;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

img {
  border-style: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

::-webkit-file-upload-button {
  -webkit-appearance: none;
  font: inherit;
}

[hidden] {
  display: none;
}

address {
  font-style: normal;
}

figure {
  margin: 0;
}

table {
  border-collapse: collapse;
}

.wrapper {
  max-width: 1500px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 5%;
}

/***************************

foundation/_animation.scss

***************************/
.mv_fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

.mv_title.mv_fadeUp {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*==================================================
ふわっ
===================================*/
/* その場で */
.fadeIn {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 下から */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 上から */
.fadeDown {
  -webkit-animation-name: fadeDownAnime;
          animation-name: fadeDownAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 左から */
.fadeLeft {
  -webkit-animation-name: fadeLeftAnime;
          animation-name: fadeLeftAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 右から */
.fadeRight {
  -webkit-animation-name: fadeRightAnime;
          animation-name: fadeRightAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
  opacity: 0;
}

/*==================================================
    ボンッ、ヒュッ
    ===================================*/
/* 拡大 */
.zoomIn {
  -webkit-animation-name: zoomInAnime;
          animation-name: zoomInAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes zoomInAnime {
  from {
    transform: scale(0.6);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomInAnime {
  from {
    transform: scale(0.6);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* 縮小 */
.zoomOut {
  -webkit-animation-name: zoomOutAnime;
          animation-name: zoomOutAnime;
  -webkit-animation-duration: 1.8s;
          animation-duration: 1.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes zoomOutAnime {
  from {
    transform: scale(1.04);
    opacity: 1;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomOutAnime {
  from {
    transform: scale(1.04);
    opacity: 1;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.zoomInTrigger,
.zoomOutTrigger {
  opacity: 0;
}

/*==================================================
    じわっ
    ===================================*/
/* ぼかしから出現 */
.blur {
  -webkit-animation-name: blurAnime;
          animation-name: blurAnime;
  -webkit-animation-duration: 1.8s;
          animation-duration: 1.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes blurAnime {
  from {
    filter: blur(5px);
    transform: scale(1.01);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes blurAnime {
  from {
    filter: blur(5px);
    transform: scale(1.01);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
.blurTrigger {
  opacity: 0;
}

@-webkit-keyframes textSlideIn {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
@keyframes textSlideIn {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.textSlideIn {
  display: inline-block;
  opacity: 0;
  visibility: hidden;
}

.textSlideIn.is-animated {
  -webkit-animation-name: textSlideIn;
          animation-name: textSlideIn;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
          animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes textSlideDown {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@keyframes textSlideDown {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.textSlideDown {
  display: inline-block;
  opacity: 0;
  visibility: hidden;
}

.textSlideDown.is-animated {
  -webkit-animation-name: textSlideDown;
          animation-name: textSlideDown;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
          animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes clipPath {
  0% {
    opacity: 0;
    -webkit-clip-path: polygon(0% 105%, 100% 105%, 100% 105%, 0% 105%);
            clip-path: polygon(0% 105%, 100% 105%, 100% 105%, 0% 105%);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: polygon(0% -5%, 100% -5%, 100% 105%, 0% 105%);
            clip-path: polygon(0% -5%, 100% -5%, 100% 105%, 0% 105%);
  }
}

@keyframes clipPath {
  0% {
    opacity: 0;
    -webkit-clip-path: polygon(0% 105%, 100% 105%, 100% 105%, 0% 105%);
            clip-path: polygon(0% 105%, 100% 105%, 100% 105%, 0% 105%);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: polygon(0% -5%, 100% -5%, 100% 105%, 0% 105%);
            clip-path: polygon(0% -5%, 100% -5%, 100% 105%, 0% 105%);
  }
}
.clipPathTrigger {
  opacity: 0;
}

.clipPathTrigger.is-animated {
  -webkit-animation: clipPath 1s cubic-bezier(0.74, 0.01, 0.29, 0.97) forwards;
          animation: clipPath 1s cubic-bezier(0.74, 0.01, 0.29, 0.97) forwards;
}

/***************************

layout/_header.scss

***************************/
.header.-is-fixed {
  z-index: 999;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  padding-left: 25px;
}
@media screen and (min-width: 769px) {
  .header {
    padding-left: 0;
    padding-right: 28px;
  }
}

.header_wrap {
  gap: 10px;
}

.header__logo {
  line-height: 1;
}
@media screen and (min-width: 769px) {
  .header__logo {
    background: var(--white);
    border-radius: 0 0 30px 0;
    padding: 21px 30px 24px;
  }
}

.header__nav_toggle {
  cursor: pointer;
  display: inline-block;
  background: none;
  border: none;
  outline: none;
  text-align: center;
  position: relative;
  z-index: 7;
  background: var(--blue);
  padding: 29px 16px;
}

.header__nav_toggle_bar {
  position: relative;
  margin: 8px 6px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.header__nav_toggle_bar,
.header__nav_toggle_bar::before,
.header__nav_toggle_bar::after {
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--white);
  outline: 1px solid transparent;
  transition-property: background-color, transform;
  transition-duration: 0.5s;
}

.header__nav_toggle_bar::before,
.header__nav_toggle_bar::after {
  position: absolute;
  content: "";
}

.header__nav_toggle_bar {
  width: 30px;
}

.header__nav_toggle_bar::after {
  width: 30px;
}

.header__nav_toggle_bar::before {
  top: -8px;
}

.header__nav_toggle_bar::after {
  top: 8px;
}

.header__nav_toggle_title {
  font-size: 10px;
  font-size: 1rem;
  display: block;
  padding-top: 5px;
  width: 4em;
  white-space: nowrap;
}

.header__nav_toggle_title:before {
  content: "MENU";
  color: var(--white);
}

.header.-is-open .header__nav_toggle_bar {
  background-color: transparent;
}

.header.-is-open .header__nav_toggle_bar::before {
  transform: translateY(8px) rotate(135deg);
}

.header.-is-open .header__nav_toggle_bar::after {
  transform: translateY(-8px) rotate(-135deg);
  width: 30px;
}

.header.-is-open .header__nav_toggle_title:before {
  content: "MENU";
  color: var(--white);
}

@media screen and (min-width: 769px) {
  .header__nav_toggle {
    display: none;
  }
  .header__nav_list {
    gap: 18px 30px;
    justify-content: flex-end;
  }
  .header__nav {
    width: 100%;
  }
  .header__nav_item {
    width: 100%;
    max-width: 249px;
  }
  .header__nav_item a {
    display: block;
    padding: 15px 0;
    border: 1px solid var(--yellow);
    background: var(--yellow);
    border-radius: 28px;
    display: flex;
    align-items: center;
    margin: 0 auto;
    width: 100%;
    line-height: 1.5;
    padding: 15px 19px;
    font-size: 20px;
    font-weight: bold;
    color: var(--blue);
  }
  .header__nav_item a img {
    margin-right: 20px;
  }
}
@media screen and (min-width: 769px) and (min-width: 1024px) {
  .header__nav_item a img {
    margin-right: 50px;
  }
}
@media screen and (min-width: 769px) {
  .header__nav_item a:hover {
    background: var(--blue);
    border: 1px solid var(--blue);
    color: var(--white);
    opacity: 1;
  }
  .header__nav_item a:hover img {
    content: url(../img/common/icon_tel-w.png);
  }
}
@media screen and (min-width: 769px) {
  .header__nav_item.--jeed a {
    background: var(--blue);
    color: var(--white);
    font-size: 16px;
    border: 1px solid var(--blue);
  }
  .header__nav_item.--jeed a:hover {
    background: var(--white);
    color: var(--blue);
    opacity: 1;
  }
  .header__nav_item.--jeed a:hover img {
    content: url(../img/common/ico_blank-b.png);
  }
}
@media screen and (max-width: 768px) {
  .header {
    background: var(--white);
  }
  .header__logo {
    z-index: 10;
  }
  .header__nav {
    max-width: min(100%, 1000px);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--white);
    z-index: 6;
    transition: 0.5s;
  }
  .header.-is-open .header__nav {
    height: 100vh;
    position: absolute;
    overflow: hidden;
    transition-property: height, visibility;
    transition-duration: 0.35s;
    transition-timing-function: ease;
  }
  .header__nav_list {
    flex-direction: column;
    margin: 0;
    padding: 15px;
    text-align: center;
    position: relative;
    top: 100%;
    transform: translateY(-100%);
    opacity: 0;
    gap: 18px;
  }
  .header.-is-open .header__nav_list {
    opacity: 1;
    top: 35%;
    transform: translateY(-35%);
  }
  .header__nav_item a {
    display: block;
    opacity: 0;
    visibility: hidden;
    padding: 15px 0;
    width: 100%;
    max-width: 249px;
    border: 1px solid var(--blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    margin: 0 auto;
    padding: 15px 19px;
    font-size: 20px;
    font-weight: bold;
    color: var(--blue);
  }
  .header__nav_item a img {
    margin-right: 50px;
  }
  .header__nav_item a:hover {
    background: var(--blue);
    color: var(--white);
  }
  .header__nav_item a:hover img {
    content: url(../img/common/icon_tel-w.png);
  }
  .header__nav_item.--jeed a {
    background: var(--blue);
    color: var(--white);
    font-size: 16px;
  }
  .header__nav_item.--jeed a:hover {
    background: var(--white);
    color: var(--blue);
  }
  .header__nav_item.--jeed a:hover img {
    content: url(../img/common/ico_blank-b.png);
  }
  .header.-is-open .header__nav_item a {
    opacity: 1;
    visibility: visible;
    transition: all 0.6s ease;
  }
  .header.-is-open .header__nav_item:nth-child(2) a {
    transition-delay: 0.2s;
  }
}
/***************************

layout/_footer.scss

***************************/
.footer {
  background: url(../img/home/mv_bg01.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-bottom: 80px;
  }
}
.footer::before {
  content: "";
  width: 100%;
  height: 300px;
  background: linear-gradient(#fff, transparent);
  background-size: cover;
  background-position: top center;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 769px) {
  .footer::before {
    height: 555px;
  }
}
.footer .container_xs {
  position: relative;
  z-index: 5;
  padding-top: 70px;
  padding-bottom: 130px;
}
@media screen and (min-width: 769px) {
  .footer .container_xs {
    padding-top: 130px;
    padding-bottom: 130px;
  }
}

.footer_contents {
  background: var(--white);
  border-radius: 22px;
  padding: 38px 35px 70px;
}

.footer__nav_list {
  display: grid;
  gap: 15px;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .footer__nav_list {
    max-width: 282px;
  }
}

.footer__nav_item a {
  display: block;
  opacity: 0;
  visibility: hidden;
  padding: 15px 0;
  width: 100%;
  border: 1px solid var(--blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding: 15px 19px;
  font-size: 20px;
  font-weight: bold;
  color: var(--blue);
}
.footer__nav_item a img {
  margin-right: 20px;
}
@media screen and (min-width: 769px) {
  .footer__nav_item a img {
    margin-right: 50px;
  }
}
.footer__nav_item.--contact a:hover {
  background: var(--blue);
  color: var(--white);
}
.footer__nav_item.--contact a:hover img {
  content: url(../img/common/icon_tel-w.png);
}
.footer__nav_item.--jeed a {
  background: var(--blue);
  color: var(--white);
  font-size: 16px;
}
.footer__nav_item.--jeed a:hover {
  background: var(--white);
  color: var(--blue);
}
.footer__nav_item.--jeed a:hover img {
  content: url(../img/common/ico_blank-b.png);
}

.footer__nav_item a {
  opacity: 1;
  visibility: visible;
  transition: all 0.6s ease;
}

.footer__nav_item:nth-child(2) a {
  transition-delay: 0.2s;
}

.footer__sns_list {
  display: flex;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.footer_contents_list {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 792px;
  margin: 0 auto;
  gap: 120px;
  position: relative;
}
@media screen and (min-width: 769px) {
  .footer_contents_list {
    flex-direction: row-reverse;
    justify-content: space-around;
  }
}
.footer_contents_list::before {
  content: "";
  width: 100%;
  height: 2px;
  background: var(--blue);
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 769px) {
  .footer_contents_list::before {
    width: 2px;
    height: 196px;
  }
}

.footer__copyright {
  color: var(--white);
  background: var(--blue);
  display: block;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  padding: 12px 0;
  line-height: 1.3;
}

.footer__sns_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  color: var(--blue);
  margin-bottom: 30px;
  gap: 5px;
}

@media screen and (max-width: 768px) {
  .floating_menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
  }
  .floating_menu a {
    background: var(--yellow);
    padding: 20px;
    display: block;
    color: var(--blue);
    font-family: var(--popping);
    font-weight: bold;
    font-size: 20px;
    text-align: center;
  }
  .floating_menu a img {
    transition: all 1s;
  }
  .floating_menu a:hover {
    opacity: 1;
    background: var(--blue);
    color: var(--white);
  }
  .floating_menu a:hover img {
    content: url(../img/common/icon_tel-w.png);
  }
}

/***************************

layout/_lity.scss

***************************/
/*! Lity - v2.3.1 - 2018-04-20
* http://sorgalla.com/lity/
* Copyright (c) 2015-2018 Jan Sorgalla; Licensed MIT */
.lity {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.9);
  outline: none !important;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lity.lity-opened {
  opacity: 1;
}

.lity.lity-closed {
  opacity: 0;
}

.lity * {
  box-sizing: border-box;
}

.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important;
}

.lity-wrap:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.lity-loader {
  z-index: 9991;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lity-loading .lity-loader {
  opacity: 1;
}

.lity-container {
  z-index: 9992;
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
  max-width: 100%;
  max-height: 100%;
  outline: none !important;
}

.lity-content {
  z-index: 9993;
  width: 100%;
  transform: scale(1);
  transition: transform 0.3s ease;
}

.lity-loading .lity-content,
.lity-closed .lity-content {
  transform: scale(0.8);
}

.lity-content:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.lity-close {
  z-index: 9994;
  width: 35px;
  height: 35px;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  box-shadow: none;
}

.lity-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.lity-close:hover,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  box-shadow: none;
}

.lity-close:active {
  top: 1px;
}

/* Image */
.lity-image img {
  max-width: 100%;
  display: block;
  line-height: 0;
  border: 0;
}

/* iFrame */
.lity-iframe .lity-container,
.lity-youtube .lity-container,
.lity-vimeo .lity-container,
.lity-facebookvideo .lity-container,
.lity-googlemaps .lity-container {
  width: 100%;
  max-width: 964px;
}

.lity-iframe-container {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  pointer-events: auto;
  transform: translateZ(0);
  -webkit-overflow-scrolling: touch;
}

.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

.lity-hide {
  display: none;
}

/***************************

layout/_pager.scss

***************************/
.wp-pagenavi {
  margin-top: 100px;
  display: flex;
  justify-content: center;
  text-align: center;
}

.wp-pagenavi a,
.wp-pagenavi span {
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  font-family: "Montserrat Alternates", serif;
  margin: 5px;
  width: 40px;
  height: 40px;
  line-height: 2.5;
  display: block;
  text-decoration: none;
  padding: 0;
  background: #38ACEF;
  opacity: 1;
  border-radius: 50%;
}
@media screen and (min-width: 1101px) {
  .wp-pagenavi a,
.wp-pagenavi span {
    width: 60px;
    height: 60px;
    line-height: 4;
    font-size: 16px;
  }
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  line-height: 4.5;
}

.wp-pagenavi span.current {
  color: #38ACEF;
  cursor: default;
  background: #E6F8FF;
}

.wp-pagenavi a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  .wp-pagenavi .extend {
    display: none;
  }
  .wp-pagenavi .extend + .larger {
    display: none;
  }
}
@media screen and (max-width: 450px) {
  .wp-pagenavi a,
.wp-pagenavi span {
    width: 40px;
  }
}
.pager {
  margin: 20px 0 100px 0;
  display: flex;
  justify-content: space-between;
  text-align: center;
}

.pager a {
  color: #fff;
  font-size: 14px;
  margin: 5px;
  width: 3.5em;
  height: 3.5em;
  line-height: 3.5;
  display: block;
  text-decoration: none;
  padding: 0;
  background: #f4f4f4;
  opacity: 1;
}

.pager .back a {
  width: 200px;
  padding: 0 20px;
  font-weight: bold;
  color: #FFF;
}

@media screen and (max-width: 450px) {
  .pager .back a {
    width: auto;
  }
}
/***************************

layout/_breadcrumbs.scss

***************************/
.l-breadcrumbs {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 10px 15px;
  font-size: 12px;
}
.l-breadcrumbs a {
  color: #fff;
  display: block;
}

.l-breadcrumbs__item {
  position: relative;
}
.l-breadcrumbs__item:not(:first-of-type) {
  padding-left: 20px;
}
.l-breadcrumbs__item:not(:first-of-type):after {
  content: "";
  width: 4px;
  height: 4px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  position: absolute;
  left: 8px;
  top: calc(50% - 4px);
  transform: rotate(-45deg);
}
.l-breadcrumbs__item:last-of-type {
  pointer-events: none;
  text-decoration: none;
}

.l-pageTitle .l-breadcrumbs {
  position: absolute;
  bottom: 0;
  left: 0;
}

.breadcrumbs_content {
  position: absolute;
  bottom: -1px;
  right: 0;
  z-index: 5;
  background-color: #fff;
  padding: 10px 30px;
  padding-bottom: 0;
  padding-right: 40px;
  border-radius: 12px 0 0 0;
}
@media screen and (max-width: 768px) {
  .breadcrumbs_content {
    width: 85%;
  }
}
@media screen and (max-width: 450px) {
  .breadcrumbs_content {
    width: 85%;
    padding: 10px 15px;
    padding-bottom: 0;
    padding-right: 10px;
  }
}

.breadcrumbs {
  font-size: 15px;
  font-weight: bold;
  color: #999999;
}
@media screen and (max-width: 450px) {
  .breadcrumbs {
    font-size: 14px;
  }
}

.breadcrumbs li:before {
  content: "／";
  margin: 0 10px;
  color: #999999;
}

.breadcrumbs li:first-child:before {
  display: none;
}

.breadcrumbs a {
  color: #444444;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.breadcrumbs a:hover {
  color: #999999;
}

/***************************

layout/_page-title.scss

***************************/
.title01 {
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  letter-spacing: 5%;
  line-height: 1.5;
}
.title01 .en {
  font-family: var(--popping);
  font-weight: bold;
  letter-spacing: 23%;
  font-size: 40px;
}

.title02 {
  color: var(--blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  letter-spacing: 5%;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 410px) {
  .title02 {
    font-size: 32px;
  }
}
.title02 .en {
  font-family: var(--popping);
  font-weight: bold;
  letter-spacing: 23%;
  font-size: 24px;
}
@media screen and (min-width: 410px) {
  .title02 .en {
    font-size: 32px;
  }
}
@media screen and (min-width: 769px) {
  .title02 .en {
    font-size: 40px;
  }
}

.title03 {
  font-size: 30px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 50px;
}
@media screen and (min-width: 410px) {
  .title03 {
    font-size: 40px;
  }
}
.title03 span {
  font-size: 18px;
  font-weight: bold;
}
@media screen and (min-width: 410px) {
  .title03 span {
    font-size: 24px;
  }
}
@media screen and (min-width: 769px) {
  .title03 {
    padding-bottom: 0;
  }
}

.title04 {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 3%;
  color: var(--blue);
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (min-width: 410px) {
  .title04 {
    font-size: 32px;
  }
}
@media screen and (min-width: 769px) {
  .title04 {
    margin-bottom: 40px;
  }
}

.title05 {
  color: var(--blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  gap: 20px;
  margin-bottom: 60px;
}
.title05 .en {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 14%;
  font-family: var(--popping);
}

/***************************

object/component/_box.scss

***************************/
.container_l {
  max-width: 1400px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

.container_m {
  max-width: 1220px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

.container_s {
  max-width: 1160px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

.container_xs {
  max-width: 1030px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

/***************************

object/component/_button.scss

***************************/
.btn01 {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  border-radius: 36px;
  background-color: #38ACEF;
  padding: 13px 40px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.btn01.is_orange {
  background-color: #FF843D;
  max-width: 256px;
  width: 100%;
}
.btn01.is_white {
  background-color: #fff;
  color: #444444;
}
.btn01.is_white::after {
  content: "";
  background: url(../img/common/arrow_right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
  display: block;
}
.btn01.is_white:hover {
  color: #444444;
}
@media screen and (max-width: 450px) {
  .btn01 {
    width: 100%;
    justify-content: space-between;
  }
}
.btn01::after {
  content: "";
  background: url(../img/common/arrow_right_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
  display: block;
}
.btn01:hover {
  color: #fff;
}
.btn01:hover::after {
  -webkit-animation: slideIn2 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation: slideIn2 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.btn02 {
  border: 3px solid var(--blue);
  background: var(--yellow);
  border-radius: 13px;
  padding: 15px;
  font-size: 20px;
  font-weight: bold;
  color: var(--blue);
  display: inline-block;
  text-align: center;
  width: 100%;
  line-height: 1.5;
  position: relative;
}
@media screen and (min-width: 769px) {
  .btn02 {
    max-width: 622px;
    font-size: 24px;
  }
}
.btn02 .en {
  font-family: var(--popping);
}
.btn02 i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  font-size: 30px;
}
@media screen and (min-width: 321px) {
  .btn02 i {
    right: 20px;
    font-size: 40px;
  }
}
@media screen and (min-width: 769px) {
  .btn02 i {
    right: 35px;
  }
}
.btn02:hover {
  opacity: 1;
  background: var(--blue);
  color: var(--yellow);
}

/***************************

object/component/_form.scss

***************************/
/***************************

object/object/project/_home.scss

***************************/
.contents_bg {
  background: url(../img/home/mv_bg01.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.contents_bg::before {
  content: "";
  width: 100%;
  height: 300px;
  background: linear-gradient(transparent, #fff);
  background-size: cover;
  background-position: bottom center;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 769px) {
  .contents_bg::before {
    height: 555px;
  }
}

.top_mv_contents {
  position: relative;
  margin-top: 90px;
}
@media screen and (min-width: 769px) {
  .top_mv_contents {
    margin-top: 0;
  }
}
.top_mv_contents .top_mv_textbox {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
  padding-right: 15px;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .top_mv_contents .top_mv_textbox {
    bottom: 50px;
  }
}

.top_mv_subtitle {
  background: var(--yellow);
  color: var(--blue02);
  font-weight: bold;
  font-size: 13px;
  padding: 0 30px;
  padding-right: 10px;
  margin-top: 20px;
  border-radius: 0 5px 5px 0;
  display: inline-block;
}
@media screen and (min-width: 390px) {
  .top_mv_subtitle {
    font-size: 15px;
    margin-top: 20px;
    padding-right: 50px;
  }
}
@media screen and (min-width: 1024px) {
  .top_mv_subtitle {
    font-size: 24px;
    margin-top: 10px;
    padding: 0 70px;
    padding-right: 65px;
  }
}

.top_mv_img {
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin-bottom: 76px;
}
.top_mv_img img {
  width: 100%;
  height: 100%;
  -o-object-position: top;
     object-position: top;
}
@media screen and (min-width: 769px) {
  .top_mv_img {
    margin-bottom: 100px;
  }
}

.top_about {
  position: relative;
  z-index: 5;
}

.top_mv_link {
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 121px;
  height: 121px;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  line-height: 1.4;
  color: #1D62C8;
  gap: 6px;
  font-weight: bold;
  margin-left: auto;
}
.top_mv_link img {
  width: 100%;
  max-width: 18px;
}
@media screen and (min-width: 769px) {
  .top_mv_link {
    width: 180px;
    height: 180px;
    font-size: 16px;
    margin-right: 100px;
    margin-bottom: -300px;
  }
  .top_mv_link img {
    width: 100%;
    max-width: 36px;
    margin-top: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .top_mv_link {
    width: 212px;
    height: 212px;
    font-size: 20px;
    margin-bottom: -340px;
    margin-right: 150px;
  }
}

.br_sp {
  display: block;
}
@media screen and (min-width: 769px) {
  .br_sp {
    display: none;
  }
}

.br_pc {
  display: none;
}
@media screen and (min-width: 769px) {
  .br_pc {
    display: block;
  }
}

.top_mv_character {
  position: absolute;
  z-index: 6;
  width: 100%;
  max-width: 1800px;
  padding: 0 15px;
  margin: 0 auto;
  text-align: right;
}
@media screen and (min-width: 769px) {
  .top_mv_character {
    max-width: 100%;
    padding: 0 60px;
  }
}
.top_mv_character.--left {
  bottom: 110px;
  right: 0;
}
@media screen and (min-width: 450px) {
  .top_mv_character.--left {
    bottom: 5%;
  }
}
@media screen and (min-width: 769px) {
  .top_mv_character.--left {
    bottom: auto;
    top: 60%;
    transform: translateY(-60%);
    left: 0;
    text-align: right;
  }
}
.top_mv_character.--left img {
  width: 100%;
  max-width: 20%;
}
@media screen and (min-width: 450px) {
  .top_mv_character.--left img {
    max-width: 15%;
  }
}
@media screen and (min-width: 769px) {
  .top_mv_character.--left img {
    max-width: 100px;
  }
}
.top_mv_character.--right {
  top: 100px;
  right: 80px;
}
@media screen and (min-width: 769px) {
  .top_mv_character.--right {
    bottom: auto;
    top: 20%;
    right: 0;
    left: 0;
    text-align: left;
  }
}
@media screen and (min-width: 1200px) {
  .top_mv_character.--right {
    top: 200px;
  }
}
.top_mv_character.--right img {
  width: 100%;
  max-width: 25%;
}
@media screen and (min-width: 450px) {
  .top_mv_character.--right img {
    max-width: 20%;
  }
}
@media screen and (min-width: 769px) {
  .top_mv_character.--right img {
    max-width: 120px;
  }
}

.top_about_lead_text {
  text-align: center;
  color: var(--white);
  font-size: clamp(24px, 1.318rem + 0.91vw, 32px);
  margin: 40px 0 27px;
}
@media screen and (min-width: 769px) {
  .top_about_lead_text {
    margin: 45px 0 45px;
  }
}

.top_about {
  padding-bottom: 160px;
}
@media screen and (min-width: 769px) {
  .top_about {
    padding-bottom: 195px;
  }
}
.top_about p {
  text-align: center;
  color: var(--white);
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 6%;
  line-height: 2;
}
@media screen and (min-width: 769px) {
  .top_about p {
    font-size: 18px;
  }
}

.choose_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 17px;
  margin-top: 80px;
}
@media screen and (min-width: 769px) {
  .choose_list {
    gap: 40px 15px;
    margin-top: 90px;
  }
}

.choose_item {
  width: 100%;
  border: 1px solid var(--blue);
  border-radius: 30px;
  padding: 40px 35px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .choose_item {
    max-width: 390px;
    padding: 40px;
  }
}

.choose_num_img {
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .choose_num_img {
    top: -30px;
  }
}

.choose_title {
  font-size: 18px;
  font-weight: bold;
  color: var(--blue);
  margin-bottom: 10px;
  margin-top: 5px;
}

.top_course {
  margin-top: 80px;
  margin-bottom: 80px;
}
@media screen and (min-width: 769px) {
  .top_course {
    margin-top: 140px;
    margin-bottom: 190px;
  }
}

.course_list {
  margin-top: 80px;
  display: grid;
  gap: 50px;
  margin-bottom: 80px;
}
@media screen and (min-width: 769px) {
  .course_list {
    gap: 80px;
    margin-bottom: 90px;
  }
}

.course_item {
  box-shadow: 0 4px 12px rgba(54, 89, 130, 0.25);
  border-radius: 26px;
}

.course_titlebox {
  background: #2166D1;
  border-radius: 26px 26px 0 0;
  padding-top: 25px;
}
@media screen and (min-width: 769px) {
  .course_titlebox {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    padding-top: 0;
  }
  .course_titlebox .title03 {
    position: relative;
    z-index: 2;
    padding-left: 5%;
  }
}
.course_titlebox.--type02 {
  background: #39A4E7;
}
.course_titlebox.--type02 .course_titlebox_img::before {
  content: "";
  background: linear-gradient(#39A4E7, transparent);
  width: 100%;
  height: 100px;
  display: block;
  position: absolute;
  top: -1px;
  left: 0;
}
@media screen and (min-width: 769px) {
  .course_titlebox.--type02 .course_titlebox_img::before {
    background: linear-gradient(-90deg, #39A4E7, transparent);
    width: 200px;
    height: 100%;
    top: 0;
    right: 0;
    left: auto;
  }
}
.course_titlebox.--type03 {
  background: var(--yellow);
}
.course_titlebox.--type03 .title03 {
  color: var(--blue);
}
.course_titlebox.--type03 .course_titlebox_img::before {
  content: "";
  background: linear-gradient(var(--yellow), transparent);
  width: 100%;
  height: 100px;
  display: block;
  position: absolute;
  top: -1px;
  left: 0;
}
@media screen and (min-width: 769px) {
  .course_titlebox.--type03 .course_titlebox_img::before {
    background: linear-gradient(-90deg, var(--yellow), transparent);
    width: 100px;
    height: 100%;
    top: 0;
    right: 0;
    left: auto;
  }
}

.course_titlebox_img {
  position: relative;
}
@media screen and (min-width: 769px) {
  .course_titlebox_img img {
    border-radius: 26px 0 0 0;
  }
}
@media screen and (min-width: 1024px) {
  .course_titlebox_img {
    width: 500px;
  }
}
.course_titlebox_img::before {
  content: "";
  background: linear-gradient(#2166D1, transparent);
  width: 100%;
  height: 100px;
  display: block;
  position: absolute;
  top: -1px;
  left: 0;
}
@media screen and (min-width: 769px) {
  .course_titlebox_img::before {
    background: linear-gradient(-90deg, #2166D1, transparent);
    width: 200px;
    height: 100%;
    top: 0;
    right: 0;
    left: auto;
  }
}
.course_titlebox_img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.course_contents_list {
  background: #F3F3F3;
  border-radius: 0 0 23px 23px;
  padding: 38px 10px 35px;
}
@media screen and (min-width: 769px) {
  .course_contents_list {
    padding: 52px 34px 52px;
  }
}

.course_contents_list {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}
@media screen and (min-width: 769px) {
  .course_contents_list {
    gap: 28px 19px;
  }
}

.course_contents_item {
  background: var(--white);
  border-radius: 18px;
  padding: 25px 17px;
  padding-bottom: 50px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  position: relative;
}
@media screen and (min-width: 769px) {
  .course_contents_item {
    padding: 25px 30px;
    padding-bottom: 80px;
    max-width: calc(50% - 10px);
  }
}
@media screen and (min-width: 1413px) {
  .course_contents_item {
    max-width: 420px;
  }
}

.course_contents_title {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  color: var(--white);
  background: linear-gradient(-45deg, #32BDE3, #0240B7);
  border-radius: 110px;
  padding: 2px 30px;
  display: inline-block;
}
@media screen and (min-width: 769px) {
  .course_contents_title {
    padding: 2px 39px;
  }
}

.course_contents_text {
  font-size: 15px;
  font-weight: bold;
  text-align: left;
  letter-spacing: 3%;
}

.course_contents_yellow {
  position: absolute;
  bottom: 0;
  right: 0;
  color: var(--blue);
  font-size: 15px;
  font-weight: bold;
  background: var(--yellow);
  padding: 8px 23px;
  border-radius: 18px 0 18px 0;
}

.btn_wrap {
  text-align: center;
}

.top_support {
  padding-top: 50px;
  padding-bottom: 180px;
}
@media screen and (min-width: 769px) {
  .top_support {
    padding-top: 80px;
    padding-bottom: 120px;
  }
}
.top_support .title02 {
  color: var(--white);
}

.support_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 27px 39px;
  position: relative;
  z-index: 2;
  margin-top: 80px;
}

.support_item {
  width: 100%;
  max-width: 370px;
  background: var(--white);
  border-radius: 185px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px 150px;
}
@media screen and (min-width: 410px) {
  .support_item {
    padding: 60px 46px 150px;
  }
}

.support_title {
  color: var(--blue);
  font-size: 18px;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 20px;
}

.support_text {
  font-weight: bold;
  font-size: 15px;
  letter-spacing: 3%;
}

.top_experience {
  margin-top: 110px;
}

.top_experience_leadtext {
  font-size: 15px;
  font-weight: bold;
}

.experience_list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 50px;
  margin-bottom: 50px;
}
@media screen and (min-width: 769px) {
  .experience_list {
    flex-direction: row;
    justify-content: center;
    margin-top: 130px;
    margin-bottom: 140px;
  }
}

.experience_item {
  width: 100%;
  border-radius: 23px;
  box-shadow: 0 4px 12px rgba(54, 89, 130, 0.25);
  padding: 22px 15px 50px;
}
@media screen and (min-width: 769px) {
  .experience_item {
    max-width: 535px;
  }
}

.experience_unit {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
}

.experience_img {
  background: #FFFAE8;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px;
  position: relative;
}

.experience_yellow {
  background: var(--yellow);
  border-radius: 50%;
  color: var(--blue);
  font-weight: bold;
  font-size: 16px;
  line-height: 1.3;
  width: 67px;
  height: 67px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: -30px;
  right: 20px;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  .experience_yellow {
    font-size: 24px;
    width: 90px;
    height: 90px;
  }
}
@media screen and (min-width: 769px) {
  .experience_yellow {
    right: -10px;
  }
}

.experience_title {
  font-size: 20px;
  font-weight: bold;
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.experience_title::before {
  content: "";
  width: 6px;
  height: 30px;
  display: block;
  border-radius: 110px;
}
.experience_title.--yellow::before {
  background: linear-gradient(45deg, #FFE985, #FCD13E);
}
.experience_title.--blue::before {
  background: linear-gradient(45deg, #32BDE3, #0240B7);
}

.experience_text {
  font-weight: bold;
  font-size: 16px;
}

.top_step {
  margin-top: 100px;
  margin-bottom: 40px;
}
@media screen and (min-width: 769px) {
  .top_step {
    margin-top: 210px;
    margin-bottom: 140px;
  }
}

.step_list {
  display: grid;
  gap: 60px;
  margin-top: 70px;
}
@media screen and (min-width: 769px) {
  .step_list {
    gap: 40px;
    margin-top: 105px;
  }
}

.step_item {
  width: 100%;
  border: 2px solid var(--blue);
  border-radius: 27px;
  padding: 27px 20px;
  position: relative;
}
@media screen and (min-width: 410px) {
  .step_item {
    padding: 27px 40px;
  }
}
@media screen and (min-width: 769px) {
  .step_item {
    padding-right: 70px;
  }
}
.step_item::before {
  content: "";
  background: url(../img/home/step_arrow.png);
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  width: 30px;
  height: 20px;
  margin: 0 auto;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 769px) {
  .step_item::before {
    bottom: -34px;
  }
}
.step_item:last-child::before {
  display: none;
}

.step_contents {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .step_contents {
    display: grid;
    grid-template-columns: 190px 1fr 150px;
    align-items: center;
  }
}

.step_num {
  display: flex;
  align-items: center;
  flex-direction: column;
  border-bottom: 2px solid var(--blue);
  padding-bottom: 15px;
  position: relative;
}
.step_num span {
  font-size: 13px;
  font-weight: bold;
  font-family: var(--popping);
  color: var(--blue);
  letter-spacing: 23%;
}
@media screen and (min-width: 769px) {
  .step_num {
    border-bottom: none;
    padding-bottom: 0;
    justify-content: center;
    padding-right: 30px;
    margin-right: 40px;
  }
  .step_num::after {
    content: "";
    width: 2px;
    height: 164px;
    background: var(--blue);
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}

.step_title {
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  padding-top: 30px;
}
@media screen and (min-width: 769px) {
  .step_title {
    text-align: left;
    font-size: 18px;
    padding-top: 0;
    margin-bottom: 10px;
  }
}

.step_text {
  font-size: 15px;
  font-weight: bold;
}

.step_img {
  text-align: center;
}

.fuwafuwa {
  -webkit-animation-name: floating;
  animation-name: floating;
  -webkit-animation-duration: 3000ms;
  animation-duration: 3000ms;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.fuwafuwa2 {
  -webkit-animation-name: floating2;
  animation-name: floating2;
  -webkit-animation-duration: 3000ms;
  animation-duration: 3000ms;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-webkit-keyframes floating {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes floating {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@-webkit-keyframes floating2 {
  0% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
@keyframes floating2 {
  0% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
.top_mv_link {
  display: flex;
}
.top_mv_link:hover {
  -webkit-animation: jumpText 0.48s ease-out;
          animation: jumpText 0.48s ease-out;
  -webkit-animation-delay: calc(0.06s * var(--char-index));
          animation-delay: calc(0.06s * var(--char-index));
  opacity: 1;
  color: var(--blue);
}

@-webkit-keyframes jumpText {
  0% {
    transform: scaleY(1);
  }
  15% {
    transform: scaleY(0.8);
  }
  50% {
    transform: scaleY(1.1);
  }
  100% {
    transform: scaleY(1);
  }
}

@keyframes jumpText {
  0% {
    transform: scaleY(1);
  }
  15% {
    transform: scaleY(0.8);
  }
  50% {
    transform: scaleY(1.1);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* クラスの適用 */
.top_mv_textbox .top_mv_title, .top_mv_textbox .top_mv_subtitle {
  -webkit-animation: slideInLeft 1s ease-in-out forwards;
          animation: slideInLeft 1s ease-in-out forwards;
}

/***************************

object/object/project/_about.scss

***************************/
/***************************

object/utility/display.scss

***************************/
.relative {
  position: relative;
}

.inline {
  display: inline;
}

.inline-block {
  display: inline-block;
}

.block {
  display: block;
}

.none {
  display: none;
}

.flexbox {
  display: flex;
}

.flex-row {
  flex-direction: row;
}

.flex-row-rev {
  flex-direction: row-reverse;
}

.flex-col {
  flex-direction: col;
}

.flex-col-rev {
  flex-direction: col-reverse;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.flex-justify-start {
  justify-content: flex-start;
}

.flex-justify-end {
  justify-content: flex-end;
}

.flex-justify-center {
  justify-content: center;
}

.flex-justify-between {
  justify-content: space-between;
}

.flex-justify-around {
  justify-content: space-around;
}

.flex-align-start {
  align-items: flex-start;
}

.flex-align-end {
  align-items: flex-end;
}

.flex-align-center {
  align-items: center;
}

.flex-align-baseline {
  align-items: baseline;
}

.flex-item {
  flex: 0 1 auto;
}

.flex-item0 {
  flex: 0 0 auto;
}

@media screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}
/***************************

object/utility/_background.scss

***************************/
/***************************

object/utility/_link.scss

***************************/
.link--under-line {
  text-decoration: underline;
}

.link--under-line:hover {
  text-decoration: none;
}

/***************************

object/utility/_text.scss

***************************/
.fv {
  writing-mode: vertical-rl;
  letter-spacing: 3px;
}

.t-center {
  text-align: center;
}

.t-left {
  text-align: left;
}

.t-right {
  text-align: right;
}

@media screen and (min-width: 451px) {
  .t-center_pc {
    text-align: center;
  }
  .t-left_pc {
    text-align: left;
  }
  .t-right_pc {
    text-align: right;
  }
}
.vat {
  vertical-align: top;
}

.vam {
  vertical-align: middle;
}

.vab {
  vertical-align: bottom;
}

.fs-10 {
  font-size: 10px;
}

.fs-11 {
  font-size: 11px;
}

.fs-12 {
  font-size: 12px;
}

.fs-13 {
  font-size: 13px;
}

.fs-14 {
  font-size: 14px;
}

.fs-15 {
  font-size: 15px;
}

.fs-16 {
  font-size: 16px;
}

.fs-17 {
  font-size: 17px;
}

.fs-18 {
  font-size: 18px;
}

.fs-19 {
  font-size: 19px;
}

.fs-20 {
  font-size: 20px;
}

.fs-21 {
  font-size: 21px;
}

.fs-22 {
  font-size: 22px;
}

.fs-23 {
  font-size: 23px;
}

.fs-24 {
  font-size: 24px;
}

.fs-25 {
  font-size: 25px;
}

.fs-26 {
  font-size: 26px;
}

.fs-27 {
  font-size: 27px;
}

.fs-28 {
  font-size: 28px;
}

.fs-29 {
  font-size: 29px;
}

.fs-30 {
  font-size: 30px;
}

.fs-31 {
  font-size: 31px;
}

.fs-32 {
  font-size: 32px;
}

.fs-33 {
  font-size: 33px;
}

.fs-34 {
  font-size: 34px;
}

.fs-35 {
  font-size: 35px;
}

.fs-36 {
  font-size: 36px;
}

.f-bold {
  font-weight: bold;
}

.f-normal {
  font-weight: normal;
}

.indent--1 {
  text-indent: -1em;
  padding-left: 1em;
}

.indent--2 {
  text-indent: -2em;
  padding-left: 2em;
}

.indent--3 {
  text-indent: -3em;
  padding-left: 3em;
}

.indent--4 {
  text-indent: -4em;
  padding-left: 4em;
}

.indent--5 {
  text-indent: -5em;
  padding-left: 5em;
}

.fc--gray {
  color: var(--gray);
}

.fc--black {
  color: var(--black);
}

.fc--blue {
  color: var(--blue);
}

.fc--yellow {
  color: var(--yellow);
}

.fc--red {
  color: red;
}

.txtdeco-none {
  text-decoration: none;
}

.ff--popping {
  font-size: var(--popping);
}

.ff--zenkaku {
  font-size: var(--zenkaku);
}

.ff--jakarta {
  font-size: var(--jakarta);
}

/***************************

object/utility/spases.scss

***************************/
.m-0 {
  margin: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.mb10 {
  margin-bottom: 10px;
}

.mt-190 {
  margin-top: 190px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb150 {
  margin-bottom: 150px;
}

.mb300 {
  margin-bottom: 10px;
}

.mt-0 {
  margin-top: 0px;
}

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

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

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mr-0 {
  margin-right: 0px;
}

.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-45 {
  margin-right: 45px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-55 {
  margin-right: 55px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-65 {
  margin-right: 65px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-75 {
  margin-right: 75px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-85 {
  margin-right: 85px;
}

.mr-90 {
  margin-right: 90px;
}

.mr-95 {
  margin-right: 95px;
}

.mr-100 {
  margin-right: 100px;
}

.ml-0 {
  margin-left: 0px;
}

.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-55 {
  margin-left: 55px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-65 {
  margin-left: 65px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-75 {
  margin-left: 75px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-85 {
  margin-left: 85px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-95 {
  margin-left: 95px;
}

.ml-100 {
  margin-left: 100px;
}

.p-0 {
  padding: 0;
}

.pt-0 {
  padding-top: 0px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pr-0 {
  padding-right: 0px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-55 {
  padding-right: 55px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-85 {
  padding-right: 85px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-95 {
  padding-right: 95px;
}

.pr-100 {
  padding-right: 100px;
}

.pl-0 {
  padding-left: 0px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-55 {
  padding-left: 55px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-65 {
  padding-left: 65px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-75 {
  padding-left: 75px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-85 {
  padding-left: 85px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-95 {
  padding-left: 95px;
}

.pl-100 {
  padding-left: 100px;
}

/***************************

object/utility/_font.scss

***************************/
.fv {
  writing-mode: vertical-rl;
  letter-spacing: 3px;
}

.uppercase {
  text-transform: uppercase;
}

.letterspace01 {
  letter-spacing: 2px;
}

.letterspace02 {
  letter-spacing: 4px;
}

.letterspace03 {
  letter-spacing: 1px;
}

.lineheight01 {
  line-height: 1.3;
}

.vertical {
  writing-mode: vertical-rl;
}
/*# sourceMappingURL=style.css.map */