@charset "UTF-8";
/* ----------------------------------------------------------------------------------------------------
*  リセット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, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  line-height: 1;
  -webkit-text-size-adjust: 100%;
}

img {
  border: 0;
  vertical-align: bottom;
}

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

sub {
  vertical-align: sub;
}

sup {
  vertical-align: super;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

pre {
  white-space: pre-wrap;
}

/* ----------------------------------------------------------------------------------------------------
*  WEBフォント
* --------------------------------------------------------------------------------------------------*/
@font-face {
  font-style: normal;
  font-weight: 400;
  font-family: "Noto Sans JP";
  font-display: swap;
  src: url("../../fonts/Noto_Sans_JP/NotoSansJP-Regular.woff2") format("woff2"), url("../../fonts/Noto_Sans_JP/NotoSansJP-Regular.woff") format("woff");
}
@font-face {
  font-style: normal;
  font-weight: 500;
  font-family: "Noto Sans JP";
  font-display: swap;
  src: url("../../fonts/Noto_Sans_JP/NotoSansJP-Medium.woff2") format("woff2"), url("../../fonts/Noto_Sans_JP/NotoSansJP-Medium.woff") format("woff");
}
@font-face {
  font-style: normal;
  font-weight: 700;
  font-family: "Noto Sans JP";
  font-display: swap;
  src: url("../../fonts/Noto_Sans_JP/NotoSansJP-Bold.woff2") format("woff2"), url("../../fonts/Noto_Sans_JP/NotoSansJP-Bold.woff") format("woff");
}
@font-face {
  font-style: normal;
  font-weight: 900;
  font-family: "Noto Sans JP";
  font-display: swap;
  src: url("../../fonts/Noto_Sans_JP/NotoSansJP-Black.woff2") format("woff2"), url("../../fonts/Noto_Sans_JP/NotoSansJP-Black.woff") format("woff");
}
@font-face {
  font-style: normal;
  font-weight: 700;
  font-family: "Noto Serif JP";
  font-display: swap;
  src: url("../../fonts/Noto_Serif_JP/NotoSerifJP-Bold.woff2") format("woff2"), url("../../fonts/Noto_Serif_JP/NotoSerifJP-Bold.woff") format("woff");
}
@font-face {
  font-style: italic;
  font-weight: 400;
  font-family: "Zalando Sans Expanded";
  font-display: swap;
  src: url("../../fonts/ZalandoSansExpanded/ZalandoSansExpanded-Italic.woff2") format("woff2"), url("../../fonts/ZalandoSansExpanded/ZalandoSansExpanded-Italic.woff") format("woff");
}
@font-face {
  font-style: normal;
  font-weight: 500;
  font-family: "Zalando Sans Expanded";
  font-display: swap;
  src: url("../../fonts/ZalandoSansExpanded/ZalandoSansExpanded-Medium.woff2") format("woff2"), url("../../fonts/ZalandoSansExpanded/ZalandoSansExpanded-Medium.woff") format("woff");
}
@font-face {
  font-style: normal;
  font-weight: 600;
  font-family: "Zalando Sans Expanded";
  font-display: swap;
  src: url("../../fonts/ZalandoSansExpanded/ZalandoSansExpanded-SemiBold.woff2") format("woff2"), url("../../fonts/ZalandoSansExpanded/ZalandoSansExpanded-SemiBold.woff") format("woff");
}
@font-face {
  font-style: normal;
  font-weight: 700;
  font-family: "Zalando Sans Expanded";
  font-display: swap;
  src: url("../../fonts/ZalandoSansExpanded/ZalandoSansExpanded-Bold.woff2") format("woff2"), url("../../fonts/ZalandoSansExpanded/ZalandoSansExpanded-Bold.woff") format("woff");
}
@font-face {
  font-style: normal;
  font-weight: 700;
  font-family: "Poppins";
  font-display: swap;
  src: url("../../fonts/Poppins/Poppins_Bold.woff2") format("woff2"), url("../../fonts/Poppins/Poppins_Bold.woff") format("woff");
}
/* ----------------------------------------------------------------------------------------------------
*	共通
* --------------------------------------------------------------------------------------------------*/
html {
  scrollbar-gutter: stable;
}

body {
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.06em;
  font-weight: 500;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #000;
  background-color: #f4f7ff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}
body.fixed {
  position: fixed;
  left: 0;
  width: 100%;
  height: 100%;
}
body.is-drawer-open {
  overflow: hidden;
  height: 100%;
}
body.is-modal-open {
  overflow: hidden;
  height: 100%;
}

a {
  color: #333;
  text-decoration: none;
  outline: none;
}
@media (any-hover: hover) {
  a:hover, a:active, a:focus {
    text-decoration: none;
  }
}

button,
input,
select,
textarea,
option {
  font-family: inherit !important;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
}
img.emoji {
  display: inline !important;
  width: 1em !important;
  height: 1em !important;
  margin: 0 0.07em !important;
  padding: 0 !important;
  vertical-align: -0.1em !important;
  background: none !important;
  border: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

* {
  word-break: break-all;
}

@media screen and (min-width: 769px) and (max-width: 1280px) {
  html {
    font-size: 1.25vw;
  }
}
/* ----------------------------------------------------------------------------------------------------
*  メインコンテンツ
* --------------------------------------------------------------------------------------------------*/
.l-content {
  width: 100%;
  max-width: 77.5rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.l-content__small {
  width: 100%;
  max-width: 58.125rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media screen and (max-width: 767px) {
  .l-content {
    max-width: initial;
    padding: 0 4vw;
  }
  .l-content__small {
    max-width: initial;
    padding: 0 4vw;
  }
}
/* ----------------------------------------------------------------------------------------------------
*	 ヘッダー
* --------------------------------------------------------------------------------------------------*/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
}

.l-header__wrap {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  position: relative;
  z-index: 100;
  padding: 1.25rem 1.25rem 1.25rem 1.875rem;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
}

.l-header__logo {
  margin: 0 0.313rem 0 0;
}

.l-header__logo-pic {
  width: 15rem;
}
.l-header__logo-pic img {
  width: 100%;
  height: auto;
}

.l-header-pc__nav {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}

.l-header-pc__nav-list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  margin: 0 1.875rem 0 0;
}

.l-header-pc__nav-list-item {
  margin: 0 2.188rem 0 0;
}
.l-header-pc__nav-list-item:last-of-type {
  margin: 0;
}

.l-header-pc__nav-list-item-link {
  font-size: 0.9375rem;
  line-height: 1.5;
  font-weight: 700;
  padding: 0 0 0.188rem;
  color: #000;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#674cdc), to(#674cdc));
  background-image: linear-gradient(#674cdc, #674cdc);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 0 1px;
  -webkit-transition: background-size 0.3s, color 0.3s;
  transition: background-size 0.3s, color 0.3s;
}
@media (any-hover: hover) {
  .l-header-pc__nav-list-item-link:hover {
    color: #674cdc;
    background-position: bottom left;
    background-size: 100% 1px;
  }
}

.l-header-pc__btn {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}

.l-header-pc__request-btn {
  width: 10rem;
  margin: 0 1.25rem 0 0;
}

.l-header-pc__request-btn-link {
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 700;
  display: block;
  padding: 0.75rem 0.938rem;
  text-align: center;
  color: #fff;
  background-color: #2f3659;
  border: 0.125rem solid #2f3659;
  border-radius: 9999px;
  -webkit-transition: 0.3s ease-in-out background-color, 0.3s ease-in-out color;
  transition: 0.3s ease-in-out background-color, 0.3s ease-in-out color;
}
@media (any-hover: hover) {
  .l-header-pc__request-btn-link:hover {
    color: #2f3659;
    background-color: #fff;
  }
}

.l-header-pc__contact-btn {
  width: 10rem;
}

.l-header-pc__contact-btn-link {
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 700;
  display: block;
  padding: 0.875rem 0.938rem;
  text-align: center;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#71aeea), color-stop(50%, #9662e7), to(#71aeea));
  background: linear-gradient(to right, #71aeea 0%, #9662e7 50%, #71aeea 100%);
  background-position: 0 50%;
  background-size: 200% 100%;
  border-radius: 9999px;
  -webkit-transition: background-position 0.6s ease;
  transition: background-position 0.6s ease;
}
@media (any-hover: hover) {
  .l-header-pc__contact-btn-link:hover {
    background-position: 100% 50%;
  }
}

.l-header-sp__hamburger {
  display: none;
}

.l-header-sp__drawer {
  display: none;
}

@media screen and (max-width: 767px) {
  .l-header__wrap {
    padding: 0 0 0 4vw;
  }
  .l-header__logo {
    margin: 0 1.3vw 0 0;
    padding: 3.7vw 0;
  }
  .l-header__logo-pic {
    width: 48vw;
  }
  .l-header-pc__nav {
    display: none;
  }
  .l-header-sp__nav {
    display: block;
  }
  .l-header-sp__hamburger {
    display: block;
    padding: 5.6vw 4vw;
    text-align: center;
  }
  .l-header-sp__hamburger-btn {
    position: relative;
    width: 5.3vw;
    height: 4.8vw;
    margin: 0 auto;
  }
  .l-header-sp__hamburger-btn span {
    content: "";
    position: absolute;
    left: 50%;
    display: inline-block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    height: 2px;
    background-color: #3d80cd;
    border-radius: 0.188rem;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .l-header-sp__hamburger-btn span:nth-of-type(1) {
    top: 0;
  }
  .l-header-sp__hamburger-btn span:nth-of-type(2) {
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .l-header-sp__hamburger-btn span:nth-of-type(3) {
    bottom: 0;
  }
  .l-header-sp__drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: block;
    width: 100%;
    height: auto;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    background-color: rgba(255, 255, 255, 0.6);
    -webkit-transform: translate(100%);
            transform: translate(100%);
    opacity: 0;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s ease-in-out;
    transition: opacity 0.3s, -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, opacity 0.3s;
    transition: transform 0.3s ease-in-out, opacity 0.3s, -webkit-transform 0.3s ease-in-out;
    backdrop-filter: blur(10px);
  }
  .l-header-sp__drawer.is-open {
    -webkit-transform: translate(0);
            transform: translate(0);
    opacity: 1;
  }
  .l-header-sp__box {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
            justify-content: space-between;
    -ms-flex-align: center;
    -webkit-box-align: center;
            align-items: center;
    position: relative;
    z-index: 100;
    margin: 0 0 2.7vw;
    padding: 0 0 0 4vw;
  }
  .l-header-sp__logo-pic {
    width: 48vw;
  }
  .l-header-sp__logo-pic img {
    width: 100%;
    height: auto;
  }
  .l-header-sp__drawer-close {
    display: block;
    padding: 5.6vw 4vw;
    text-align: center;
  }
  .l-header-sp__drawer-close-btn {
    position: relative;
    width: 5.3vw;
    height: 4.8vw;
    margin: 0 auto;
  }
  .l-header-sp__drawer-close-btn span {
    content: "";
    position: absolute;
    left: 50%;
    display: inline-block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    height: 2px;
    background-color: #3d80cd;
    border-radius: 0.188rem;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .l-header-sp__drawer-close-btn span:nth-of-type(1) {
    top: 0;
    -webkit-transform: translate(-50%, 2.1vw) rotate(-45deg);
    transform: translate(-50%, 2.1vw) rotate(-45deg);
  }
  .l-header-sp__drawer-close-btn span:nth-of-type(2) {
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    opacity: 0;
  }
  .l-header-sp__drawer-close-btn span:nth-of-type(3) {
    bottom: 0;
    -webkit-transform: translate(-50%, -2.1vw) rotate(45deg);
    transform: translate(-50%, -2.1vw) rotate(45deg);
  }
  .l-header-sp__drawer-list {
    margin: 0 0 6.7vw;
    padding: 0 8vw;
  }
  .l-header-sp__drawer-link {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: start;
    -webkit-box-pack: start;
            justify-content: flex-start;
    -ms-flex-align: center;
    -webkit-box-align: center;
            align-items: center;
    width: 100%;
    padding: 3.2vw 0;
  }
  .l-header-sp__drawer-link-en {
    font-size: 6.4vw;
    line-height: 1.5;
    font-weight: 600;
    margin: 0 4vw 0 0;
    font-family: "Zalando Sans Expanded", sans-serif;
    color: #2f3659;
  }
  .l-header-sp__drawer-link-ja {
    font-size: 4.3vw;
    line-height: 1.5;
    font-weight: 900;
    color: #674cdc;
  }
  .l-header-sp__drawer-btn {
    margin: 0 0 1.875rem;
    padding: 0 8vw;
  }
  .l-header-sp__drawer-request-btn {
    margin: 0 0 5.3vw;
  }
  .l-header-sp__drawer-request-btn-link {
    font-size: 3.7vw;
    line-height: 1.5;
    font-weight: 700;
    display: block;
    padding: 3.7vw 4vw;
    text-align: center;
    color: #fff;
    background-color: #2f3659;
    border: 0.125rem solid #2f3659;
    border-radius: 9999px;
    -webkit-transition: 0.3s ease-in-out background-color, 0.3s ease-in-out color;
    transition: 0.3s ease-in-out background-color, 0.3s ease-in-out color;
  }
  .l-header-sp__drawer-contact-btn-link {
    font-size: 3.7vw;
    line-height: 1.5;
    font-weight: 700;
    display: block;
    padding: 4.3vw 4vw;
    text-align: center;
    color: #fff;
    background: -webkit-gradient(linear, left top, right top, from(#71aeea), color-stop(50%, #9662e7), to(#71aeea));
    background: linear-gradient(to right, #71aeea 0%, #9662e7 50%, #71aeea 100%);
    background-position: 0 50%;
    background-size: 200% 100%;
    border-radius: 9999px;
    -webkit-transition: background-position 0.6s ease;
    transition: background-position 0.6s ease;
  }
  .l-header-sp__drawer-bnr-link {
    display: block;
    width: 77.3vw;
    margin: 0 auto;
  }
  .l-header-sp__drawer-bnr-link img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
/* ----------------------------------------------------------------------------------------------------
*	 追従バナー
* --------------------------------------------------------------------------------------------------*/
#fixedBanner {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
#fixedBanner.is-show {
  visibility: visible;
  opacity: 1;
}

.l-fixed-banner {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 999;
}

.l-fixed-banner__pic-link {
  position: relative;
  display: inline-block;
  width: 11.25rem;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
}
@media (any-hover: hover) {
  .l-fixed-banner__pic-link:hover {
    opacity: 0.7;
  }
}
.l-fixed-banner__pic-link:before {
  content: "";
  position: absolute;
  top: -0.125rem;
  right: -0.125rem;
  bottom: -0.125rem;
  left: -0.125rem;
  z-index: -1;
  background: rgba(103, 76, 220, 0.3);
  border-radius: 50%;
  opacity: 0;
}
.l-fixed-banner__pic-link img {
  width: 100%;
  height: auto;
}

.l-fixed-banner__pic-link:before {
  -webkit-animation: pulseEffect 2s ease-out infinite;
          animation: pulseEffect 2s ease-out infinite;
}

.l-fixed-banner__pic-link:after {
  -webkit-animation: pulseEffect 2s ease-out 1s infinite;
          animation: pulseEffect 2s ease-out 1s infinite;
}

@-webkit-keyframes pulseEffect {
  0% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    opacity: 1;
  }
  30% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    opacity: 0;
  }
}

@keyframes pulseEffect {
  0% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    opacity: 1;
  }
  30% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    opacity: 0;
  }
}
@media screen and (max-width: 767px) {
  .l-fixed-banner {
    right: 2.7vw;
    bottom: 2.7vw;
  }
  .l-fixed-banner__pic-link {
    width: 29.3vw;
  }
  .l-fixed-banner__pic-link:before {
    content: "";
    top: -0.8vw;
    right: -0.8vw;
    bottom: -0.8vw;
    left: -0.8vw;
  }
}
/* ----------------------------------------------------------------------------------------------------
*	 フッター
* --------------------------------------------------------------------------------------------------*/
.l-footer__contact-link {
  display: block;
  padding: 6.25rem 0;
  background: -webkit-gradient(linear, left top, right top, from(#212048), color-stop(50%, #5440b4), to(#212048));
  background: linear-gradient(to right, #212048 0%, #5440b4 50%, #212048 100%);
  background-position: 0 50%;
  background-size: 200% 100%;
  -webkit-transition: background-position 0.6s ease;
  transition: background-position 0.6s ease;
}
@media (any-hover: hover) {
  .l-footer__contact-link:hover {
    background-position: 100% 50%;
  }
  .l-footer__contact-link:hover .l-footer__contact-txt:after {
    right: 1.688rem;
  }
}

.l-footer__contact-link-box {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  width: 100%;
  max-width: 77.5rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.l-footer__contact-ttl-en {
  font-size: 4.0625rem;
  line-height: 1.4;
  font-weight: 600;
  font-family: "Zalando Sans Expanded", sans-serif;
  color: #fff;
}

.l-footer__contact-ttl-ja {
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 900;
  color: #fff;
}

.l-footer__contact-txt {
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
  position: relative;
  padding: 0 6.25rem 0 0;
  color: #fff;
}
.l-footer__contact-txt:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.875rem;
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  border-top: 0.188rem solid #fff;
  border-right: 0.188rem solid #fff;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.l-footer__bottom {
  padding: 5rem 0 2.5rem;
  background-color: #2f3659;
}

.l-footer__bottom-wrap {
  width: 100%;
  max-width: 77.5rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.l-footer__bottom-box {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
}

.l-footer__logo-link {
  display: block;
  width: 20rem;
  margin: 0 0 3.75rem;
}
.l-footer__logo-link img {
  width: 100%;
  height: auto;
}

.l-footer__btn {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}

.l-footer__request-btn {
  width: 10.313rem;
  margin: 0 1.25rem 0 0;
}

.l-footer__request-btn-link {
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 700;
  display: block;
  padding: 0.75rem 0.938rem;
  text-align: center;
  color: #2f3659;
  background-color: #fff;
  border: 0.125rem solid #fff;
  border-radius: 9999px;
  -webkit-transition: 0.3s ease-in-out background-color, 0.3s ease-in-out color;
  transition: 0.3s ease-in-out background-color, 0.3s ease-in-out color;
}
@media (any-hover: hover) {
  .l-footer__request-btn-link:hover {
    color: #fff;
    background-color: #2f3659;
  }
}

.l-footer__inquiry-btn {
  width: 10.313rem;
}

.l-footer__inquiry-btn-link {
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 700;
  display: block;
  padding: 0.875rem 0.938rem;
  text-align: center;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#71aeea), color-stop(50%, #9662e7), to(#71aeea));
  background: linear-gradient(to right, #71aeea 0%, #9662e7 50%, #71aeea 100%);
  background-position: 0 50%;
  background-size: 200% 100%;
  border-radius: 9999px;
  -webkit-transition: background-position 0.6s ease;
  transition: background-position 0.6s ease;
}
@media (any-hover: hover) {
  .l-footer__inquiry-btn-link:hover {
    background-position: 100% 50%;
  }
}

.l-footer__right {
  width: 51%;
  margin: 1.25rem 0 0;
}

.l-footer__list-box {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.l-footer__list-item-box {
  margin: 0 3.063rem 2.5rem 0;
}
.l-footer__list-item-box:nth-of-type(4n) {
  margin: 0 0 2.5rem;
}
.l-footer__list-item-box.is-recruit {
  margin: 0 6.438rem 2.5rem 0;
}

.l-footer__list-item-link {
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 700;
  padding: 0 0 0.188rem;
  color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff));
  background-image: linear-gradient(#fff, #fff);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 0 1px;
  -webkit-transition: background-size 0.3s, color 0.3s;
  transition: background-size 0.3s, color 0.3s;
}
@media (any-hover: hover) {
  .l-footer__list-item-link:hover {
    background-position: bottom left;
    background-size: 100% 1px;
  }
}

.l-footer__sub-list {
  margin: 0.938rem 0 0;
}

.l-footer__sub-list-item {
  margin: 0 0 0.938rem;
}
.l-footer__sub-list-item:last-of-type {
  margin: 0;
}

.l-footer__sub-list-item-link {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  padding: 0 0 0.188rem;
  color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff));
  background-image: linear-gradient(#fff, #fff);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 0 1px;
  -webkit-transition: background-size 0.3s, color 0.3s;
  transition: background-size 0.3s, color 0.3s;
}
@media (any-hover: hover) {
  .l-footer__sub-list-item-link:hover {
    background-position: bottom left;
    background-size: 100% 1px;
  }
}

.l-footer__privacy-pic {
  display: block;
  width: 3.438rem;
  margin: 0 0 1.25rem auto;
}

.l-footer__terms-list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 0 1.563rem;
}

.l-footer__terms-list-item {
  position: relative;
  padding: 0 1.375rem;
  line-height: 1;
}
.l-footer__terms-list-item::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.188rem;
  display: block;
  width: 0.063rem;
  height: 0.938rem;
  background-color: #fff;
}
.l-footer__terms-list-item:last-of-type::before {
  display: none;
}

.l-footer__terms-list-item-link {
  font-size: 0.9375rem;
  line-height: 1.5;
  font-weight: 700;
  padding: 0 0 0.188rem;
  color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff));
  background-image: linear-gradient(#fff, #fff);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 0 1px;
  -webkit-transition: background-size 0.3s, color 0.3s;
  transition: background-size 0.3s, color 0.3s;
}
@media (any-hover: hover) {
  .l-footer__terms-list-item-link:hover {
    background-position: bottom left;
    background-size: 100% 1px;
  }
}

.l-footer__copyright-txt {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  text-align: center;
  color: #8c95c4;
}

.l-footer-form {
  background-color: #2F3659;
  padding: 1.875rem 0.938rem;
}

.l-footer-form__copyright-txt {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  text-align: center;
  color: #8c95c4;
}

@media screen and (max-width: 767px) {
  .l-footer__contact-link {
    padding: 12vw 0;
  }
  .l-footer__contact-link-box {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    max-width: initial;
    padding: 0 8vw;
  }
  .l-footer__contact-link-box:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 8vw;
    display: block;
    width: 2.1vw;
    height: 2.1vw;
    border-top: 0.5vw solid #fff;
    border-right: 0.5vw solid #fff;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .l-footer__contact-ttl-box {
    margin: 0 0 8vw;
  }
  .l-footer__contact-ttl-en {
    font-size: 9.1vw;
  }
  .l-footer__contact-ttl-ja {
    font-size: 4.3vw;
  }
  .l-footer__contact-txt {
    font-size: 3.7vw;
    width: 71%;
    padding: 0;
  }
  .l-footer__contact-txt:after {
    display: none;
  }
  .l-footer__bottom {
    padding: 5.3vw 0;
  }
  .l-footer__bottom-wrap {
    max-width: initial;
    padding: 0 4vw;
  }
  .l-footer__bottom-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .l-footer__logo-link {
    width: 53.3vw;
    margin: 0 auto 5.3vw;
  }
  .l-footer__btn {
    margin: 0 0 5.3vw;
  }
  .l-footer__request-btn {
    width: 44vw;
    margin: 0 4vw 0 0;
  }
  .l-footer__request-btn-link {
    font-size: 3.2vw;
    padding: 3.5vw 0.938rem;
  }
  .l-footer__inquiry-btn {
    width: 44vw;
  }
  .l-footer__inquiry-btn-link {
    font-size: 3.2vw;
    padding: 3.5vw 0.938rem;
  }
  .l-footer__right {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: start;
    -webkit-box-pack: start;
            justify-content: flex-start;
    -ms-flex-align: start;
    -webkit-box-align: start;
            align-items: flex-start;
    width: 100%;
    margin: 1.25rem 0 0;
  }
  .l-footer__list-box {
    width: 50%;
    padding: 0 2.7vw;
  }
  .l-footer__list-item-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    margin: 0 0 5.3vw 0;
  }
  .l-footer__list-item-box:nth-of-type(4n) {
    margin: 0 0 5.3vw;
  }
  .l-footer__list-item-box.is-recruit {
    margin: 0 0 5.3vw;
  }
  .l-footer__list-item-link {
    font-size: 3.5vw;
  }
  .l-footer__sub-list {
    margin: 2.1vw 0 0;
  }
  .l-footer__sub-list-item {
    margin: 0 0 1.3vw;
  }
  .l-footer__sub-list-item-link {
    font-size: 3.2vw;
  }
  .l-footer__privacy-pic {
    width: 13.3vw;
    margin: -16vw 0 5.3vw auto;
  }
  .l-footer__terms-list {
    margin: 0 0 2.7vw;
  }
  .l-footer__terms-list-item {
    margin: 0 0 1.3vw;
    padding: 0 4vw;
  }
  .l-footer__terms-list-item::before {
    bottom: 0.8vw;
    width: 0.3vw;
    height: 2.7vw;
  }
  .l-footer__terms-list-item-link {
    font-size: 2.7vw;
  }
  .l-footer__copyright-txt {
    font-size: 2.7vw;
  }
  .l-footer-form {
    padding: 4vw;
  }
  .l-footer-form__copyright-txt {
    font-size: 2.7vw;
  }
}
/* common
---------------------------------------------------------------------------- */
/* Wisywigエディタ スタイル
---------------------------------------------------------------------------- */
.m-single-content {
  font-size: 1.6rem;
  line-height: 1.75;
}
.m-single-content p + p {
  margin-top: 1.5em;
}
.m-single-content h2 {
  clear: both;
  font-weight: 700;
  font-size: 2em;
}
.m-single-content h3 {
  clear: both;
  font-weight: 700;
  font-size: 1.7em;
}
.m-single-content h4 {
  clear: both;
  font-weight: 500;
  font-size: 1.5em;
}
.m-single-content h5 {
  clear: both;
  font-weight: 500;
  font-size: 1.4em;
}
.m-single-content h6 {
  clear: both;
  font-weight: 500;
  font-size: 1.2em;
}
.m-single-content table {
  clear: both;
  width: auto;
  margin-top: 2em;
}
.m-single-content table th {
  padding: 1.25rem 0.938rem;
  background-color: #d6d6d6;
  border-right: 0.188rem solid #fff;
  border-bottom: 0.188rem solid #fff;
}
.m-single-content table td {
  padding: 1.25rem 0.938rem;
  font-weight: 400;
  background-color: #f2f2f2;
  border-bottom: 0.188rem solid #fff;
}
.m-single-content table td p {
  margin: 0;
}
.m-single-content .wp-block-image {
  margin-top: 1.25rem;
}
.m-single-content ul {
  margin-top: 1.5em;
  list-style-position: inside;
  list-style-type: disc;
}
.m-single-content ol {
  margin-top: 1.5em;
  list-style-position: inside;
  list-style-type: decimal;
}
.m-single-content .aligncenter {
  display: block;
  margin: 0 auto;
}
.m-single-content .alignright {
  float: right;
  margin-left: 1em;
}
.m-single-content .alignleft {
  float: left;
  margin-left: 1em;
}
.m-single-content strong {
  font-weight: bold;
}
.m-single-content em {
  font-style: italic;
}
.m-single-content blockquote {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 1.5em;
  padding: 0.625rem 0.938rem 0.625rem 3.75rem;
  font-style: italic;
  color: #555;
  background: #efefef;
}
.m-single-content blockquote:before {
  content: "“";
  position: absolute;
  top: 0.625rem;
  left: 0.625rem;
  display: inline-block;
  font-weight: 900;
  font-size: 3em;
  line-height: 1;
  color: #cfcfcf;
}
.m-single-content hr {
  clear: both;
}

/* ----------------------------------------------------------------------------------------------------
*	 固定ページ
* --------------------------------------------------------------------------------------------------*/
.p-pages-mv {
  background-color: #fff;
  border-bottom: 0.5rem solid #eaeff5;
}

.p-pages-mv__box {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  width: 100%;
  max-width: 62.5rem;
  margin: 0 auto;
  padding: 3.125rem 1.25rem;
}

.p-pages-mv__ttl {
  font-size: 1.875rem;
  line-height: 1.5;
  font-weight: bold;
  color: #333;
}

@media screen and (max-width: 767px) {
  .p-pages-mv {
    border-bottom: 2.1vw solid #eaeff5;
  }
  .p-pages-mv__box {
    max-width: initial;
    padding: 8vw 4vw;
  }
  .p-pages-mv__ttl {
    font-size: 5.9vw;
  }
}
.p-pages {
  padding: 3.75rem 0;
}

.p-pages__content {
  font-size: 0.875rem;
  line-height: 2;
  font-weight: 500;
  margin: 0 0 1.875rem;
  padding: 1.563rem 1.875rem;
  background-color: #fff;
}
.p-pages__content h2,
.p-pages__content h3,
.p-pages__content h4,
.p-pages__content h5 {
  margin: 1.25rem 0 0.625rem;
  padding: 0.625rem;
  background: #efece5 !important;
}
.p-pages__content p {
  font-size: 0.875rem;
  line-height: 2;
  font-weight: 500;
}
.p-pages__content p + p {
  margin: 1.25rem 0 0;
}
.p-pages__content a {
  color: #097cf2;
  text-decoration: underline;
}
@media (any-hover: hover) {
  .p-pages__content a:hover {
    text-decoration: none;
    opacity: 1;
  }
}
.p-pages__content h2 {
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 700;
}
.p-pages__content h3 {
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 700;
}
.p-pages__content h4 {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
}
.p-pages__content h5 {
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 700;
}
.p-pages__content .wp-block-table table {
  width: 100%;
  margin: 1.875rem 0 0;
}
.p-pages__content .wp-block-table table tr:last-of-type td {
  border-bottom: 0.063rem solid #ccd8dc;
}
.p-pages__content .wp-block-table table th {
  font-size: 0.875rem;
  line-height: 2;
  font-weight: 700;
  padding: 0.625rem;
  vertical-align: middle;
  background-color: #e3e6e7;
  border: 0.063rem solid #ccd8dc;
}
.p-pages__content .wp-block-table table td {
  font-size: 0.875rem;
  line-height: 2;
  font-weight: 500;
  padding: 0.625rem;
  vertical-align: middle;
  background-color: #fff;
  border: 0.063rem solid #ccd8dc;
}
.p-pages__content .wp-block-image {
  margin: 1.25rem 0 0.625rem;
}
.p-pages__content ul {
  margin: 1.25rem 0 0;
  list-style-position: inside;
  list-style-type: disc;
}
.p-pages__content ol {
  margin: 1.25rem 0 0;
  list-style-position: inside;
  list-style-type: decimal;
}
.p-pages__content .aligncenter {
  display: block;
  margin: 0 auto;
}
.p-pages__content .alignright {
  float: right;
  margin-left: 0.625rem;
}
.p-pages__content .alignleft {
  float: left;
  margin-left: 0.625rem;
}
.p-pages__content strong {
  font-weight: bold;
}
.p-pages__content em {
  font-style: italic;
}
.p-pages__content blockquote {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0.938rem;
  padding: 0.625rem 0.938rem 0.625rem 3.75rem;
  font-style: italic;
  color: #555;
  background: #efefef;
}
.p-pages__content blockquote:before {
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 500;
  content: "“";
  position: absolute;
  top: 0.625rem;
  left: 0.625rem;
  display: inline-block;
  color: #cfcfcf;
}
.p-pages__content hr {
  clear: both;
}

.p-pages__link-box {
  width: 40%;
  margin: 0 auto;
  text-align: center;
}

.p-pages__link {
  font-size: 1rem;
  font-weight: 700;
  display: block;
  padding: 1.188rem 1.875rem 1.188rem 0;
  text-align: center;
  color: #0d2ea1;
  background-color: #fff;
  border: 0.063rem solid #ccd8dc;
  border-radius: 0.25rem;
  -webkit-box-shadow: 0 0.188rem #ccd8dc;
          box-shadow: 0 0.188rem #ccd8dc;
  -webkit-transition: 0.2s ease-in-out box-shadow, 0.2s ease-in-out transform;
  transition: 0.2s ease-in-out box-shadow, 0.2s ease-in-out transform;
}
@media (any-hover: hover) {
  .p-pages__link:hover {
    -webkit-box-shadow: 0 0 #de1a1a;
            box-shadow: 0 0 #de1a1a;
    -webkit-transform: translate3d(0, 0.125rem, 0);
            transform: translate3d(0, 0.125rem, 0);
  }
}

.p-pages__link-txt {
  position: relative;
  display: inline-block;
}
.p-pages__link-txt:before {
  content: "";
  position: absolute;
  top: 50%;
  right: -1.563rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 0.938rem;
  height: 0.938rem;
  vertical-align: middle;
  border: 0.094rem solid #0d2ea1;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-pages__link-txt:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1.156rem;
  width: 0.188rem;
  height: 0.188rem;
  vertical-align: middle;
  border-top: 0.094rem solid #0d2ea1;
  border-right: 0.094rem solid #0d2ea1;
  -webkit-transform: rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

@media screen and (max-width: 767px) {
  .p-pages {
    padding: 10.7vw 0;
  }
  .p-pages__ttl-box {
    margin: 0 0 4vw;
  }
  .p-pages__date {
    font-size: 4.3vw;
    margin: 0 4vw 4vw 0;
  }
  .p-pages__category-list-item {
    font-size: 3.2vw;
    width: auto;
    margin: 0;
    margin: 0 4vw 4vw 0;
    padding: 1.3vw 2.7vw;
  }
  .p-pages__category-list-item:last-of-type {
    margin: 0 0 4vw;
  }
  .p-pages__content {
    font-size: 3.2vw;
    margin: 0 0 8vw;
    padding: 5.3vw 4vw;
  }
  .p-pages__content h2,
  .p-pages__content h3,
  .p-pages__content h4,
  .p-pages__content h5 {
    margin: 5.3vw 0 2.7vw;
    padding: 2.7vw;
  }
  .p-pages__content p {
    font-size: 3.2vw;
  }
  .p-pages__content p + p {
    margin: 5.3vw 0 0;
  }
  .p-pages__content h2 {
    font-size: 4.8vw;
  }
  .p-pages__content h3 {
    font-size: 4.3vw;
  }
  .p-pages__content h4 {
    font-size: 3.7vw;
  }
  .p-pages__content h5 {
    font-size: 3.2vw;
  }
  .p-pages__content .wp-block-table table {
    margin: 8vw 0 0;
  }
  .p-pages__content .wp-block-table table th {
    font-size: 3.2vw;
    padding: 2.7vw;
  }
  .p-pages__content .wp-block-table table td {
    font-size: 3.2vw;
    padding: 2.7vw;
  }
  .p-pages__content .wp-block-image {
    margin: 5.3vw 0 2.7vw;
  }
  .p-pages__content ul {
    margin: 5.3vw 0 2.7vw;
  }
  .p-pages__content ol {
    margin: 5.3vw 0 2.7vw;
  }
  .p-pages__content .alignright {
    margin-left: 2.7vw;
  }
  .p-pages__content .alignleft {
    margin-left: 2.7vw;
  }
  .p-pages__content blockquote {
    margin: 4vw;
    padding: 2.7vw 4vw 2.7vw 16vw;
  }
  .p-pages__content blockquote:before {
    font-size: 3.2vw;
    top: 2.7vw;
    left: 2.7vw;
  }
  .p-pages__link-box {
    width: 100%;
  }
  .p-pages__link {
    font-size: 4.3vw;
    padding: 3.7vw 8vw 3.7vw 0;
  }
  .p-pages__link-txt:before {
    right: -6.7vw;
    width: 4vw;
    height: 4vw;
  }
  .p-pages__link-txt:after {
    right: -5.1vw;
  }
}
/* module
---------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------
*	 改行
* --------------------------------------------------------------------------------------------------*/
@media all and (min-width: 768px) {
  .nopc {
    display: none !important;
  }
}
@media all and (max-width: 767px) {
  .nosp {
    display: none !important;
  }
}
/* ----------------------------------------------------------------------------------------------------
*	 パンくずリスト
* --------------------------------------------------------------------------------------------------*/
.l-breadcrumbs__wrap {
  width: 100%;
  max-width: 77.5rem;
  margin: 0 auto;
  padding: 1.25rem;
}

.l-breadcrumbs__list {
  overflow-x: auto;
  overflow-y: hidden;
  overflow-scrolling: touch;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
}

.l-breadcrumbs__list-item {
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 500;
  position: relative;
  display: inline-block;
}
.l-breadcrumbs__list-item:first-of-type {
  padding: 0 0 0 1.563rem;
}
.l-breadcrumbs__list-item:first-of-type:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 0.938rem;
  height: 0.938rem;
  background-image: url("../../images/common/icn_breadcrumb_home.svg");
  background-repeat: no-repeat;
  background-position: 0;
  background-size: cover;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.l-breadcrumbs__list-item:not(:last-of-type) span {
  color: #333;
  text-decoration: underline;
}
@media (any-hover: hover) {
  .l-breadcrumbs__list-item:hover span {
    text-decoration: none;
  }
}
.l-breadcrumbs__list-item + li:before {
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 500;
  content: "＞";
  margin: 0 0.313rem;
  color: #333;
}

@media screen and (max-width: 767px) {
  .l-breadcrumbs__wrap {
    padding: 4vw;
  }
  .l-breadcrumbs__list-item {
    font-size: 3.2vw;
  }
  .l-breadcrumbs__list-item:first-of-type {
    padding: 0 0 0 5.3vw;
  }
  .l-breadcrumbs__list-item:first-of-type:after {
    width: 3.2vw;
    height: 3.2vw;
  }
  .l-breadcrumbs__list-item + li:before {
    font-size: 3.2vw;
    margin: 0 1.3vw;
  }
}
/* ----------------------------------------------------------------------------------------------------
*	 ページャー
* --------------------------------------------------------------------------------------------------*/
.m-pager {
  font-size: 1.125rem;
  line-height: 1;
  font-weight: 700;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  margin: 3.125rem 0 0;
  font-family: "Zalando Sans Expanded", sans-serif;
  text-align: center;
}

.m-pager__wrap {
  position: relative;
}
.m-pager__wrap span {
  display: inline-block;
  width: 2.938rem;
  height: 2.938rem;
  margin: 0 0.625rem;
  line-height: 2.938rem;
  color: #fff;
  background-color: #2f3659;
  border: 0.125rem solid #000;
  border-radius: 0.375rem;
}
.m-pager__wrap span.dots {
  color: #2f3659;
  background-color: transparent;
  border-color: transparent;
}
.m-pager__wrap a.page-numbers {
  display: inline-block;
  width: 2.938rem;
  height: 2.938rem;
  margin: 0 0.438rem;
  line-height: 2.938rem;
  color: #674cdc;
  text-decoration: none;
  background-color: #fff;
  border: 0.063rem solid #cacdde;
  border-radius: 0.375rem;
  -webkit-transition: 0.2s ease-in-out color, 0.2s ease-in-out background-color;
  transition: 0.2s ease-in-out color, 0.2s ease-in-out background-color;
}
@media (any-hover: hover) {
  .m-pager__wrap a.page-numbers:hover {
    color: #fff;
    background-color: #2f3659;
  }
}
.m-pager__wrap a.prev {
  position: absolute;
  left: -3.75rem;
  background-color: transparent;
  border: none;
}
.m-pager__wrap a.prev:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.563rem;
  height: 0.563rem;
  vertical-align: middle;
  border-top: 0.125rem solid #2f3659;
  border-left: 0.125rem solid #2f3659;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: 0.2s ease-in-out color, 0.2s ease-in-out background-color;
  transition: 0.2s ease-in-out color, 0.2s ease-in-out background-color;
}
@media (any-hover: hover) {
  .m-pager__wrap a.prev:hover {
    color: #2f3659;
    background-color: transparent;
  }
}
.m-pager__wrap a.next {
  position: absolute;
  right: -3.75rem;
  background-color: transparent;
  border: none;
}
.m-pager__wrap a.next:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.563rem;
  height: 0.563rem;
  vertical-align: middle;
  border-top: 0.125rem solid #000;
  border-right: 0.125rem solid #000;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: 0.2s ease-in-out color, 0.2s ease-in-out background-color;
  transition: 0.2s ease-in-out color, 0.2s ease-in-out background-color;
}
@media (any-hover: hover) {
  .m-pager__wrap a.next:hover {
    color: #2f3659;
    background-color: transparent;
  }
}

@media screen and (max-width: 767px) {
  .m-pager {
    font-size: 4.3vw;
    margin: 13.3vw 0 0;
  }
  .m-pager__wrap span {
    width: 10.7vw;
    height: 10.7vw;
    margin: 2.1vw;
    line-height: 10.7vw;
  }
  .m-pager__wrap a.page-numbers {
    width: 10.7vw;
    height: 10.7vw;
    margin: 2.1vw;
    line-height: 10.7vw;
  }
  .m-pager__wrap a.prev:after {
    width: 2.4vw;
    height: 2.4vw;
  }
  .m-pager__wrap a.next:after {
    width: 2.4vw;
    height: 2.4vw;
  }
}
/* ----------------------------------------------------------------------------------------------------
*	 モーダル
* --------------------------------------------------------------------------------------------------*/
.m-modal {
  position: fixed;
  z-index: 10000;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  inset: 0;
}
.m-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.m-modal__overlay {
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
  inset: 0;
}

.m-modal__content-box {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 100%;
  max-width: 66.875rem;
  margin: 0 auto;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.m-modal__content-wrap {
  max-height: 80vh;
  padding: 4.375rem 1.25rem 5.625rem;
  overflow-y: auto;
  background: #fff;
  border-radius: 1rem;
}

.m-modal__close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 3.125rem;
  height: 3.125rem;
  cursor: pointer;
}
.m-modal__close-btn span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.875rem;
  height: 0.25rem;
  background-color: #3d80cd;
  border-radius: 0.188rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.m-modal__close-btn span:nth-of-type(1) {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.m-modal__close-btn span:nth-of-type(2) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.m-modal__content {
  max-width: 45rem;
  margin: 0 auto;
}
.m-modal__content:after {
  content: "";
  display: block;
  clear: both;
}
.m-modal__content > * {
  margin-bottom: 1.25rem;
}
.m-modal__content > :first-child,
.m-modal__content div > :first-child {
  margin-top: 0 !important;
}
.m-modal__content div > :last-of-type {
  margin-bottom: 0 !important;
}
.m-modal__content h2 {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 700;
  margin: 0 0 1.875rem;
  padding: 0 0 1.875rem;
  border-bottom: 0.125rem solid #3d80cd;
}
.m-modal__content h3 {
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 700;
}
.m-modal__content p {
  font-size: 0.9375rem;
  line-height: 1.8;
  font-weight: 500;
  color: #000;
}
.m-modal__content mark {
  background-color: #fffcb6;
}
.m-modal__content strong {
  font-weight: bold;
}
.m-modal__content a {
  color: #097cf2;
  text-decoration: underline;
}
@media (any-hover: hover) {
  .m-modal__content a:hover {
    text-decoration: none;
    opacity: 1;
  }
}
.m-modal__content ul {
  padding: 0 0 0 1.25rem;
  list-style: disc;
}
.m-modal__content ul li {
  font-size: 0.9375rem;
  line-height: 1.8;
  font-weight: 500;
  color: #333;
}
.m-modal__content ol {
  padding: 0 0 0 1.25rem;
}
.m-modal__content ol li {
  font-size: 0.9375rem;
  line-height: 1.8;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .m-modal__content-box {
    width: 92%;
    max-width: initial;
  }
  .m-modal__content-wrap {
    padding: 10.7vw 6.7vw;
  }
  .m-modal__close-btn {
    top: 4vw;
    right: 4vw;
    width: 8vw;
    height: 8vw;
  }
  .m-modal__close-btn span {
    width: 5.3vw;
    height: 0.5vw;
  }
  .m-modal__content {
    max-width: initial;
  }
  .m-modal__content > * {
    margin-bottom: 4vw;
  }
  .m-modal__content h2 {
    font-size: 4.3vw;
    margin: 0 0 4vw;
    padding: 0 0 4vw;
    border-bottom: 0.5vw solid #3d80cd;
  }
  .m-modal__content h3 {
    font-size: 3.7vw;
  }
  .m-modal__content p {
    font-size: 3.2vw;
  }
  .m-modal__content ul {
    padding: 0 0 0 4vw;
  }
  .m-modal__content ul li {
    font-size: 3.2vw;
  }
  .m-modal__content ol {
    padding: 0 0 0 4vw;
  }
  .m-modal__content ol li {
    font-size: 3.2vw;
  }
}
/* ----------------------------------------------------------------------------------------------------
*	 お問い合わせフォーム
* --------------------------------------------------------------------------------------------------*/
.m-cf7 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 3.75rem 0 6.25rem;
}

.m-cf7__box {
  width: 100%;
  max-width: 77.5rem;
  margin: 0 auto;
  padding: 3.75rem 1.25rem 5rem;
  background-color: #fff;
  border-radius: 1rem;
}

.m-cf7__box-wrap {
  max-width: 45rem;
  margin: 0 auto;
}

.m-cf7__ttl {
  font-size: 1.75rem;
  line-height: 1.5;
  font-weight: 900;
  margin: 0 0 2.5rem;
  color: #2f3659;
}

.m-cf7__txt {
  font-size: 0.9375rem;
  line-height: 1.8;
  font-weight: 400;
  margin: 0 0 1.875rem;
  color: #2f3659;
}

.m-cf7__thanks-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

@media screen and (max-width: 767px) {
  .m-cf7 {
    padding: 16vw 4vw;
  }
  .m-cf7__box-wrap {
    max-width: initial;
  }
  .m-cf7__ttl {
    font-size: 1.5rem;
    margin: 0 0 8vw;
  }
  .m-cf7__txt {
    font-size: 3.7vw;
    margin: 0 0 8vw;
  }
}
/* ----------------------------------------------------------------------------------------------------
*	 お問い合わせフォーム：Contact Form 7
* --------------------------------------------------------------------------------------------------*/
.m-cf7__form {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: #2f3659;
}
.m-cf7__form .m-cf7__item {
  margin: 0 0 1.563rem;
}
.m-cf7__form .m-cf7__item:last-of-type {
  margin: 0;
}
.m-cf7__form label {
  display: block;
  cursor: pointer;
}
.m-cf7__form span.is-required {
  font-size: 0.75rem;
  line-height: 1.5;
  font-weight: 700;
  display: inline-block;
  margin: 0 0.625rem 0 0;
  padding: 0.25rem 0.5rem;
  text-align: center;
  color: #fff;
  background-color: #e25075;
}
.m-cf7__form span.is-optinal {
  font-size: 0.75rem;
  line-height: 1.5;
  font-weight: 700;
  display: inline-block;
  margin: 0 0.625rem 0 0;
  padding: 0.25rem 0.5rem;
  text-align: center;
  color: #fff;
  background-color: #9fa9b5;
}
.m-cf7__form span.wpcf7-form-control-wrap {
  display: block;
  margin: 0.625rem 0 0;
}
.m-cf7__form input[type=text],
.m-cf7__form input[type=email],
.m-cf7__form input[type=tel],
.m-cf7__form input[type=url],
.m-cf7__form input[type=number],
.m-cf7__form textarea,
.m-cf7__form select {
  font-size: 0.9375rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-weight: 400;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 0.625rem 0.938rem;
  background-color: #fff;
  border: 0.063rem solid #d9d9d9;
  border-radius: 0.25rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
}
.m-cf7__form input[type=text]::-webkit-input-placeholder, .m-cf7__form input[type=email]::-webkit-input-placeholder, .m-cf7__form input[type=tel]::-webkit-input-placeholder, .m-cf7__form input[type=url]::-webkit-input-placeholder, .m-cf7__form input[type=number]::-webkit-input-placeholder, .m-cf7__form textarea::-webkit-input-placeholder, .m-cf7__form select::-webkit-input-placeholder {
  color: #b2b2b2;
}
.m-cf7__form input[type=text]::-moz-placeholder, .m-cf7__form input[type=email]::-moz-placeholder, .m-cf7__form input[type=tel]::-moz-placeholder, .m-cf7__form input[type=url]::-moz-placeholder, .m-cf7__form input[type=number]::-moz-placeholder, .m-cf7__form textarea::-moz-placeholder, .m-cf7__form select::-moz-placeholder {
  color: #b2b2b2;
}
.m-cf7__form input[type=text]:-ms-input-placeholder, .m-cf7__form input[type=email]:-ms-input-placeholder, .m-cf7__form input[type=tel]:-ms-input-placeholder, .m-cf7__form input[type=url]:-ms-input-placeholder, .m-cf7__form input[type=number]:-ms-input-placeholder, .m-cf7__form textarea:-ms-input-placeholder, .m-cf7__form select:-ms-input-placeholder {
  color: #b2b2b2;
}
.m-cf7__form input[type=text]::-ms-input-placeholder, .m-cf7__form input[type=email]::-ms-input-placeholder, .m-cf7__form input[type=tel]::-ms-input-placeholder, .m-cf7__form input[type=url]::-ms-input-placeholder, .m-cf7__form input[type=number]::-ms-input-placeholder, .m-cf7__form textarea::-ms-input-placeholder, .m-cf7__form select::-ms-input-placeholder {
  color: #b2b2b2;
}
.m-cf7__form input[type=text]::placeholder,
.m-cf7__form input[type=email]::placeholder,
.m-cf7__form input[type=tel]::placeholder,
.m-cf7__form input[type=url]::placeholder,
.m-cf7__form input[type=number]::placeholder,
.m-cf7__form textarea::placeholder,
.m-cf7__form select::placeholder {
  color: #b2b2b2;
}
.m-cf7__form select {
  background-color: #fff;
  background-image: linear-gradient(45deg, transparent 50%, #333 50%), linear-gradient(135deg, #333 50%, transparent 50%);
  background-repeat: no-repeat;
  background-position: right 0.938rem center, right 0.625rem center;
  background-size: 0.375rem 0.375rem, 0.375rem 0.375rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.m-cf7__form textarea {
  height: 12.5rem;
  resize: vertical;
}
.m-cf7__form .m-cf7__cloudflare {
  text-align: center;
  margin: 1.875rem 0 0;
}
.m-cf7__form .m-cf7__btn {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 3.75rem 0 0;
}
.m-cf7__form .m-cf7__btn .m-cf7__submit-btn {
  position: relative;
  display: inline-block;
}
.m-cf7__form .m-cf7__btn .m-cf7__submit-btn:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .m-cf7__form .m-cf7__btn .m-cf7__submit-btn:hover input[type=submit] {
    color: #2f3659;
    background-color: #fff;
  }
  .m-cf7__form .m-cf7__btn .m-cf7__submit-btn:hover:after {
    right: 1.125rem;
    border-top: 0.125rem solid #2f3659;
    border-right: 0.125rem solid #2f3659;
  }
}
.m-cf7__form .m-cf7__btn .m-cf7__submit-btn input[type=submit] {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
  position: relative;
  display: block;
  width: 16.875rem;
  margin: 0 auto;
  padding: 1.375rem 2.5rem 1.375rem 1.875rem;
  text-align: left;
  color: #fff;
  background-color: #2f3659;
  border: 0.125rem solid #2f3659;
  border-radius: 9999px;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out background-color, 0.3s ease-in-out color;
  transition: 0.3s ease-in-out background-color, 0.3s ease-in-out color;
}
.m-cf7__form .m-cf7__btn .m-cf7__submit-btn input[type=submit]:disabled {
  color: #fff;
  background-color: #bfc5d2;
  border-color: #bfc5d2;
  cursor: not-allowed;
  opacity: 0.7;
}
.m-cf7__form .m-cf7__btn .m-cf7__submit-btn:has(input[type=submit]:disabled)::after {
  border-top-color: rgba(255, 255, 255, 0.6);
  border-right-color: rgba(255, 255, 255, 0.6);
}
.m-cf7__form .m-cf7__btn .m-cf7__back-btn {
  position: relative;
  display: inline-block;
  margin: 1.875rem 0 0;
}
.m-cf7__form .m-cf7__btn .m-cf7__back-btn input[type=button] {
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 700;
  position: relative;
  display: block;
  width: 12.5rem;
  margin: 0 auto;
  padding: 0.938rem 1.875rem;
  text-align: center;
  color: #fff;
  background-color: #818496;
  border: 0.125rem solid #818496;
  border-radius: 9999px;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out background-color, 0.3s ease-in-out color;
  transition: 0.3s ease-in-out background-color, 0.3s ease-in-out color;
}
.m-cf7__form .wpcf7-spinner {
  display: none;
}
.m-cf7__form .m-cf7__privacy-ttl {
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 500;
  margin: 0 0 0.625rem;
  color: #333;
}
.m-cf7__form .m-cf7__privacy-txt-box {
  font-size: 0.75rem;
  line-height: 1.7;
  font-weight: 400;
  height: 13.75rem;
  padding: 0.625rem 0.938rem;
  overflow-y: scroll;
  color: #333;
  border: 0.063rem solid #d9d9d9;
}
.m-cf7__form .m-cf7__privacy-check {
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 500;
  margin: 1.25rem 0 0;
  text-align: center;
  color: #333;
}
.m-cf7__form .wpcf7-not-valid {
  border-color: #e25075;
}
.m-cf7__form .wpcf7-not-valid-tip {
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 700;
  margin: 0.313rem 0 0;
  color: #e25075;
}
.m-cf7__form .wpcf7 form.invalid .wpcf7-response-output {
  border-color: #f00;
  border-radius: 0.25rem;
}

.m-cf7__thanks h2 {
  font-size: 1.75rem;
  line-height: 1.5;
  font-weight: 900;
  margin: 0 0 2.5rem;
  color: #2f3659;
}
.m-cf7__thanks p {
  font-size: 1rem;
  line-height: 1.9;
  font-weight: 500;
  color: #2f3659;
}
.m-cf7__thanks .m-cf7__thanks-btn {
  margin: 3.75rem 0 0;
}
.m-cf7__thanks .m-cf7__thanks-btn-link {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
  position: relative;
  display: block;
  width: 16.875rem;
  margin: 0 auto;
  padding: 1.375rem 2.5rem 1.375rem 1.875rem;
  color: #fff;
  background-color: #2f3659;
  border: 0.125rem solid #2f3659;
  border-radius: 9999px;
  -webkit-transition: 0.3s ease-in-out background-color, 0.3s ease-in-out color;
  transition: 0.3s ease-in-out background-color, 0.3s ease-in-out color;
}
.m-cf7__thanks .m-cf7__thanks-btn-link:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .m-cf7__thanks .m-cf7__thanks-btn-link:hover {
    color: #2f3659;
    background-color: #fff;
  }
  .m-cf7__thanks .m-cf7__thanks-btn-link:hover:after {
    right: 1.125rem;
    border-top: 0.125rem solid #2f3659;
    border-right: 0.125rem solid #2f3659;
  }
}

@media screen and (max-width: 767px) {
  .m-cf7__form {
    font-size: 3.7vw;
  }
  .m-cf7__form .m-cf7__item {
    margin: 0 0 6.7vw;
  }
  .m-cf7__form span.is-required {
    font-size: 3.2vw;
    line-height: 1.5;
    font-weight: 700;
    margin: 0 2.7vw 0 0;
    padding: 1.1vw 2.1vw;
  }
  .m-cf7__form span.is-optinal {
    font-size: 3.2vw;
    line-height: 1.5;
    font-weight: 700;
    margin: 0 2.7vw 0 0;
    padding: 1.1vw 2.1vw;
  }
  .m-cf7__form span.wpcf7-form-control-wrap {
    margin: 2.7vw 0 0;
  }
  .m-cf7__form input[type=text],
  .m-cf7__form input[type=email],
  .m-cf7__form input[type=tel],
  .m-cf7__form input[type=url],
  .m-cf7__form input[type=number],
  .m-cf7__form textarea,
  .m-cf7__form select {
    font-size: 3.7vw;
    padding: 2.7vw 4vw;
  }
  .m-cf7__form select {
    background-position: right 4vw center, right 2.7vw center;
    background-size: 1.6vw 1.6vw 1.6vw 1.6vw;
  }
  .m-cf7__form textarea {
    height: 53.3vw;
  }
  .m-cf7__form .m-cf7__btn {
    margin: 16vw 0 0;
  }
  .m-cf7__form .m-cf7__btn .m-cf7__submit-btn:after {
    right: 4vw;
    width: 1.6vw;
    height: 1.6vw;
  }
  .m-cf7__form .m-cf7__btn .m-cf7__submit-btn input[type=submit] {
    font-size: 3.7vw;
    width: 64vw;
    padding: 5.3vw 8vw;
  }
  .m-cf7__form .m-cf7__btn .m-cf7__back-btn {
    margin: 8vw 0 0;
  }
  .m-cf7__form .m-cf7__btn .m-cf7__back-btn input[type=button] {
    font-size: 3.7vw;
    width: 53.3vw;
    padding: 4vw 8vw;
  }
  .m-cf7__form .m-cf7__privacy-ttl {
    font-size: 3.7vw;
    margin: 0 0 2.7vw;
  }
  .m-cf7__form .m-cf7__privacy-txt-box {
    font-size: 3.2vw;
    height: 58.7vw;
    padding: 2.7vw 4vw;
  }
  .m-cf7__form .m-cf7__privacy-check {
    font-size: 3.7vw;
    margin: 5.3vw 0 0;
  }
  .m-cf7__form .wpcf7-not-valid-tip {
    font-size: 3.7vw;
    margin: 1.3vw 0 0;
  }
  .m-cf7__form .wpcf7 form.invalid .wpcf7-response-output {
    border-radius: 1.1vw;
  }
  .m-cf7__form .m-cf7__confirm-txt {
    font-size: 4vw;
    margin: 2.7vw 0 0;
  }
  .m-cf7__thanks h2 {
    font-size: 6.4vw;
    margin: 0 0 10.7vw;
  }
  .m-cf7__thanks .m-cf7__thanks-btn {
    margin: 16vw 0 0;
  }
  .m-cf7__thanks .m-cf7__thanks-btn-link {
    font-size: 3.7vw;
    width: 64vw;
    padding: 5.3vw 8vw;
  }
  .m-cf7__thanks .m-cf7__thanks-btn-link:after {
    right: 4vw;
    width: 1.6vw;
    height: 1.6vw;
  }
}
/* print
---------------------------------------------------------------------------- */
/* 印刷設定
---------------------------------------------------------------------------- */
@media print {
  * html body {
    zoom: 70%;
  }
}