@charset "UTF-8";
:root,
*::before,
*::after {
  --color-01: #000;
  --color-02: #01f;
  --color-03: #666;
  --pd-01: 40px;
  --width-01: calc(1000px - (var(--pd-01) * 2));
  --height-header: 66px;
  --outline: 2px solid #ccc;
  --bdrs-01: 2px;
  --transition: 0.2s;
  --z-menubtn: 15;
  --z-menubg: 14;
  --z-overlay: 13;
  --z-spmenu: 11;
  --input-height: 40px;
  --input-pd: 5px;
  --input-bg-color: #fff;
  --input-bd-color: #d9d9d9;
  --linear: linear(
  	0,
  	0.0114,
  	0.0427,
  	0.0898,
  	0.149,
  	0.2169,
  	0.2906,
  	0.3673,
  	0.445,
  	0.5216,
  	0.5958,
  	0.6663,
  	0.7321,
  	0.7926,
  	0.8474,
  	0.8962,
  	0.9389,
  	0.9758,
  	1.0069,
  	1.0325,
  	1.053,
  	1.0689,
  	1.0805,
  	1.0884,
  	1.093,
  	1.0947,
  	1.0941,
  	1.0915,
  	1.0873,
  	1.0819,
  	1.0756,
  	1.0687,
  	1.0614,
  	1.0541,
  	1.0468,
  	1.0397,
  	1.0329,
  	1.0266,
  	1.0208,
  	1.0155,
  	1.0107,
  	1.0066,
  	1.003,
  	0.9999,
  	0.9974,
  	0.9953,
  	0.9937,
  	0.9926,
  	0.9917,
  	0.9913,
  	0.991,
  	0.9911,
  	0.9913,
  	0.9916,
  	0.9921,
  	0.9927,
  	0.9934,
  	0.994,
  	0.9947,
  	0.9954,
  	0.9961,
  	0.9968,
  	0.9974,
  	0.9979,
  	0.9984,
  	0.9989,
  	0.9993,
  	0.9997,
  	1,
  	1.0002,
  	1.0004,
  	1.0006,
  	1.0007,
  	1.0008,
  	1.0008,
  	1.0008,
  	1.0008,
  	1.0008,
  	1.0008,
  	1.0008,
  	1.0007,
  	1.0006,
  	1.0006,
  	1.0005,
  	1.0004,
  	1.0004,
  	1.0003,
  	1.0003,
  	1.0002,
  	1.0002,
  	1.0001,
  	1.0001,
  	1,
  	1,
  	1,
  	1,
  	0.9999,
  	0.9999,
  	0.9999,
  	0.9999,
  	1
  );
}
@media screen and (max-width: 767px) {
  :root,
  *::before,
  *::after {
    --pd-01: 20px;
    --height-header: 56px;
    --input-height: 50px;
  }
}
/* リセット
============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}
ul,
ol {
  padding: 0;
  margin: 0;
}
ul {
  list-style: none;
}
table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}
/* デフォルト
============================================================ */
body {
  font-family: "a-otf-ud-shin-go-pr6n", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
  color: var(--color-01);
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 100%;
}
ol {
  padding: 0 0 0 1.25em;
}
@media all and (max-width: 767px) {
  ol {
    padding: 0 0 0 1.5em;
  }
}
a {
  color: var(--color-02);
  line-break: strict;
  word-break: normal;
  overflow-wrap: anywhere;
  text-decoration: none;
  transition: var(--transition) linear;
}
a:focus:not(:focus-visible) {
  outline: 0;
}
a:focus-visible {
  outline: var(--outline);
}
@media (any-hover: hover) {
  a:hover img {
    filter: brightness(1.1);
  }
}
@media (hover: none) {
  a:active img {
    filter: brightness(1.1);
  }
}
a img {
  transition: filter var(--transition) linear;
}
a::before,
a::after {
  transition: var(--transition) linear;
}
img,
picture {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
button,
input:where([type="submit"], [type="reset"], [type="button"]) {
  font-family: inherit;
  font-size: 16px;
  color: var(--color-01);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #eee;
  border: none;
  border-radius: var(--bdrs-01);
  transition: var(--transition) linear;
}
button:focus:not(:focus-visible),
input:where([type="submit"], [type="reset"], [type="button"]):focus:not(:focus-visible) {
  outline: 0;
}
button:focus-visible,
input:where([type="submit"], [type="reset"], [type="button"]):focus-visible {
  outline: var(--outline);
}
button:not([disabled]),
input:where([type="submit"], [type="reset"], [type="button"]):not([disabled]) {
  cursor: pointer;
}
:where(input:is([type="text"], [type="tel"], [type="email"], [type="password"]), textarea, select) {
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  color: var(--color-01);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: var(--input-bg-color);
  border: 1px solid var(--input-bd-color);
  border-radius: var(--bdrs-01);
  -webkit-tap-highlight-color: transparent;
}
:where(input:is([type="text"], [type="tel"], [type="email"], [type="password"]), textarea, select):-webkit-autofill {
  box-shadow: 0 0 0 1000px var(--input-bg-color) inset;
}
:where(input:is([type="text"], [type="tel"], [type="email"], [type="password"]), textarea, select):focus:not(:focus-visible) {
  outline: 0;
}
:where(input:is([type="text"], [type="tel"], [type="email"], [type="password"]), textarea, select):focus-visible {
  outline: var(--outline);
}
input:is([type="text"], [type="tel"], [type="email"], [type="password"]) {
  min-height: var(--input-height);
  padding: 0 var(--input-pd);
}
textarea {
  display: block;
  min-height: 150px;
  padding: var(--input-pd);
  line-height: 150%;
}
select {
  min-height: var(--input-height);
  padding: 0 25px 0 var(--input-pd);
  background: var(--input-bg-color) url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20320%20512%22%3E%3Cpath%20style%3D%22fill%3A%23838383%22%20d%3D%22M137.4%20374.6c12.5%2012.5%2032.8%2012.5%2045.3%200l128-128c9.2-9.2%2011.9-22.9%206.9-34.9S301%20191.9%20288%20191.9L32%20192c-12.9%200-24.6%207.8-29.6%2019.8s-2.2%2025.7%206.9%2034.9l128%20128z%22%2F%3E%3C%2Fsvg%3E") no-repeat right 10px center;
  background-size: 8px auto;
}
select:not([disabled]) {
  cursor: pointer;
}
@media all and (max-width: 767px) {
  select {
    background-size: 10px auto;
  }
}
input:is([type="radio"], [type="checkbox"]) {
  margin: 0;
  accent-color: var(--color-link);
}
/* レイアウト
============================================================ */
.l-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.l-wrapper.is-fixed {
  position: fixed;
  right: 0;
  left: 0;
  overflow: auto;
  scrollbar-gutter: stable;
}
/* ----------------------------------------
メインエリア
---------------------------------------- */
.l-main {
  width: 100%;
}
/* ヘッダー
---------------------------------------- */
.l-header {
  position: fixed;
  top: 32px;
  left: 0;
  z-index: var(--z-spmenu);
  width: 100%;
  height: var(--height-header);
  transition: top 0.1s linear;
}
.l-header.is-scrolled {
  top: 10px;
}
@media all and (max-width: 767px) {
  .l-header {
    position: absolute;
    top: 20px;
  }
}
.header-inner {
  display: flex;
  align-items: center;
  width: calc(100% - var(--pd-01) * 2);
  max-width: var(--width-01);
  height: 100%;
  padding: 0 20px;
  margin: 0 auto;
  background: #fff;
  border-radius: 2em;
  box-shadow: 0 0 20px rgba(0, 49, 135, 0.2);
}
.logo-header-link {
  display: inline-block;
}
.nav-global.is-visible {
  overflow-y: scroll;
}
@media all and (min-width: 768px) {
  .nav-global {
    margin-left: auto;
  }
}
@media all and (max-width: 767px) {
  .nav-global {
    position: fixed;
    right: 0;
    z-index: var(--z-menubg);
    width: 100%;
    transition: var(--transition) linear;
    top: 0;
    bottom: 0;
    display: none;
    height: 100vh;
    padding: calc(var(--height-header) + 24px) 0 20px;
    background: rgba(0, 0, 0, 0.9);
    opacity: 0;
  }
}
.menu-global {
  display: flex;
}
@media all and (min-width: 768px) {
  .menu-global {
    gap: 2em;
  }
}
@media all and (max-width: 767px) {
  .menu-global {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}
.menu-global-link {
  color: var(--color-01);
}
@media (any-hover: hover) {
  .menu-global-link:hover {
    color: var(--color-03);
  }
}
@media (hover: none) {
  .menu-global-link:active {
    color: var(--color-03);
  }
}
@media all and (min-width: 768px) {
  .menu-global-link {
    display: flex;
    gap: 0.5em;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
  }
  .menu-global-link::before {
    display: inline-block;
    width: 10px;
    height: 10px;
    content: "";
    background: var(--color-01);
    border-radius: 5px;
    transform-origin: center;
    transition: all 0.8s var(--linear);
  }
}
@media (min-width: 768px) and (any-hover: hover) {
  .menu-global-link:hover::before {
    opacity: 0.15;
    transform: scale(3) translateX(100%);
  }
}
@media (min-width: 768px) and (hover: none) {
  .menu-global-link:active::before {
    opacity: 0.15;
    transform: scale(3) translateX(100%);
  }
}
@media all and (max-width: 767px) {
  .menu-global-link {
    display: grid;
    place-content: center;
    min-height: 44px;
    padding: 5px 10px;
    background: #fff;
  }
}
/* --- メニュー開閉ボタン ------------------- */
.btn-menu {
  display: none;
}
@media all and (max-width: 767px) {
  .btn-menu {
    position: relative;
    z-index: var(--z-menubtn);
    display: flex;
    width: 44px;
    height: 44px;
    margin-left: auto;
    background: #fff;
    transition: background var(--transition) linear, color var(--transition) linear;
  }
}
@media (max-width: 767px) and (any-hover: hover) {
  .btn-menu:hover {
    background: #e0e0e0;
  }
}
@media (max-width: 767px) and (hover: none) {
  .btn-menu:active {
    background: #e0e0e0;
  }
}
.btn-menu::after {
  position: absolute;
  bottom: -0.5em;
  left: 0;
  width: 44px;
  font-size: 12px;
  color: var(--color-01);
  text-align: center;
  content: "menu";
  opacity: 1;
}
.btn-menu.is-active::after {
  content: "";
  opacity: 0;
}
/* --- ハンバーガーライン ------------------- */
.btn-menu.is-active .btn-menu-line-top {
  top: 48%;
  transform: translateY(0) scale(0);
}
.btn-menu.is-active .btn-menu-line-middle::before {
  transform: rotate(45deg);
}
.btn-menu.is-active .btn-menu-line-middle::after {
  transform: rotate(-45deg);
}
.btn-menu.is-active .btn-menu-line-bottom {
  top: 48%;
  transform: translateY(0) scale(0);
}
.btn-menu-line {
  position: absolute;
  left: 12px;
  display: block;
  width: 20px;
  height: 2px;
  background: #333;
  transition: var(--transition) linear;
}
.btn-menu-line-top {
  top: 15px;
  transform: scale(1);
}
.btn-menu-line-middle {
  top: 21px;
  background: none;
}
.btn-menu-line-middle::before, .btn-menu-line-middle::after {
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  content: "";
  background: #333;
  transform: rotate(0);
  transition: var(--transition) linear;
}
.btn-menu-line-bottom {
  top: 27px;
  transform: scale(1);
}
/* フッター
---------------------------------------- */
.l-footer {
  width: calc(100% - var(--pd-01) * 2);
  max-width: var(--width-01);
  padding: 45px 0 10px;
  margin: auto auto 0;
  background: #000;
  border-image-source: linear-gradient(#000, #000);
  border-image-slice: 0 fill;
  border-image-outset: 0 100vw;
}
@media all and (max-width: 767px) {
  .l-footer {
    width: 100%;
    padding-bottom: 50px;
  }
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
}
@media all and (max-width: 767px) {
  .footer-nav {
    width: calc(100% - var(--pd-01) * 2);
    margin-inline: auto;
  }
}
.footer-nav-link {
  display: flex;
  gap: 4px;
  align-items: center;
  font-size: 12px;
  color: #fff;
}
.footer-nav-link::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  content: "";
  background: #fff;
  border-radius: 4px;
  transform: translateY(0);
  transition: all 0.8s var(--linear);
}
@media (any-hover: hover) {
  .footer-nav-link:hover {
    color: #aaa;
  }
  .footer-nav-link:hover::before {
    opacity: 0.3;
    transform: scale(3.5) translateX(100%);
  }
}
@media (hover: none) {
  .footer-nav-link:active {
    color: #aaa;
  }
  .footer-nav-link:active::before {
    opacity: 0.3;
    transform: scale(3.5) translateX(100%);
  }
}
.footer-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 80px 0 0;
}
@media all and (max-width: 767px) {
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    align-items: start;
    width: calc(100% - var(--pd-01));
    margin-inline: auto;
  }
}
.footer-community-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
  align-items: center;
  margin: 10px 0 0;
}
.footer-community-item a {
  display: inline-block;
}
.footer-community-item a img {
  transition: transform 0.35s cubic-bezier(0.86, 0, 0.07, 1);
}
@media (any-hover: hover) {
  .footer-community-item a:hover img {
    filter: none;
    transform: translateY(-5px);
  }
}
@media (hover: none) {
  .footer-community-item a:active img {
    filter: none;
    transform: translateY(-5px);
  }
}
.footer-logo {
  text-align: right;
}
/* トップへ戻るボタン
---------------------------------------- */
.btn-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}
@media all and (max-width: 767px) {
  .btn-to-top {
    right: 10px;
    bottom: 10px;
  }
}
.link-to-top {
  display: grid;
  place-content: center;
  width: 60px;
  height: 60px;
  pointer-events: none;
  background: #666;
  border: 1px solid #fff;
  border-radius: 50%;
  opacity: 0;
  transition: var(--transition) linear;
}
.link-to-top.is-visible {
  pointer-events: auto;
  opacity: 1;
}
@media (any-hover: hover) {
  .link-to-top:hover {
    opacity: 0.9;
  }
}
@media (hover: none) {
  .link-to-top:active {
    opacity: 0.9;
  }
}
@media all and (max-width: 767px) {
  .link-to-top {
    width: 50px;
    height: 50px;
  }
}
/* トップページ
============================================================ */
/* ファーストビュー
---------------------------------------- */
.sec-first {
  position: relative;
  min-height: 540px;
}
@media all and (max-width: 767px) {
  .sec-first {
    min-height: 100svh;
  }
}
.slide-hero {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  overflow: hidden;
}
.slide-hero-group {
  display: flex;
  margin-left: -1px;
  animation: loop-slide 60s infinite linear 0s both;
}
@media all and (max-width: 767px) {
  .slide-hero-group {
    animation-duration: 120s;
  }
}
@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.slide-hero-item {
  width: 384px;
  height: 540px;
}
@media all and (max-width: 767px) {
  .slide-hero-item {
    width: auto;
    height: 100svh;
    aspect-ratio: 1/1.406;
  }
  .slide-hero-item img {
    width: 100%;
  }
}
.first-contents {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(2, auto);
  align-items: center;
  padding-top: 100px;
  color: #fff;
}
@media all and (max-width: 767px) {
  .first-contents {
    grid-template-columns: auto;
    gap: 60px;
    justify-content: center;
    padding-top: 120px;
  }
}
.first-microcopy {
  line-height: 150%;
  letter-spacing: 2px;
}
@media all and (max-width: 767px) {
  .first-microcopy {
    display: flex;
    justify-content: center;
  }
}
.first-maincopy {
  margin-top: 1rem;
  font-size: 32px;
}
@media all and (max-width: 767px) {
  .first-maincopy {
    display: flex;
    justify-content: center;
  }
}
.first-maincopy-name {
  font-family: "Titillium Web", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 2px;
}
.first-btn-wrap {
  margin: 80px 0 0;
}
@media all and (max-width: 767px) {
  .first-btn-wrap {
    margin-top: 40px;
  }
}
.first-contents-img {
  transform: translateY(10px);
}
/* お知らせ
---------------------------------------- */
.sec-top-news {
  position: relative;
  padding: 50px 0;
}
.sec-top-news::after {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 90px;
  content: "";
  background: #fcfcf7;
}
@media all and (max-width: 767px) {
  .sec-top-news {
    padding-top: 100px;
  }
}
.top-news-contents {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: min(500px, 60%) auto;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
@media all and (max-width: 767px) {
  .top-news-contents {
    grid-template-columns: auto;
  }
}
.dl-news {
  display: grid;
  grid-template-columns: 7em auto;
  margin: 65px 0 0;
  border-top: 1px solid;
  border-bottom: 1px solid;
}
@media all and (max-width: 767px) {
  .dl-news {
    grid-template-columns: auto;
  }
}
.dl-news :is(dt, dd) {
  padding: 1em 0;
  line-height: 120%;
}
@media all and (min-width: 768px) {
  .dl-news :is(dt, dd):nth-of-type(n + 2) {
    border-top: 1px solid;
  }
}
@media all and (max-width: 767px) {
  .dl-news dt {
    padding-bottom: 0;
  }
  .dl-news dt:nth-of-type(n + 2) {
    border-top: 1px solid;
  }
}
@media all and (max-width: 767px) {
  .dl-news dd {
    padding-top: 0.5em;
  }
}
.news-link {
  color: var(--color-01);
}
@media (any-hover: hover) {
  .news-link:hover {
    color: var(--color-03);
  }
}
@media (hover: none) {
  .news-link:active {
    color: var(--color-03);
  }
}
.news-more {
  display: flex;
  justify-content: flex-end;
  margin: 2em 0 0;
}
.news-more-link {
  display: flex;
  gap: 7px;
  align-items: center;
  color: var(--color-01);
}
.news-more-link::after {
  display: inline-block;
  width: 7px;
  height: 12px;
  content: "";
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224.31%22%20height%3D%2240%22%20viewBox%3D%220%200%2024.31%2040%22%3E%3Cpath%20d%3D%22M3.05%2040a3.05%203.05%200%200%201-2.16-5.2L15.69%2020%20.89%205.2A3.05%203.05%200%200%201%205.2.89L24.31%2020%205.2%2039.11c-.6.6-1.38.89-2.16.89Z%22%20style%3D%22fill%3A%23000%22%2F%3E%3C%2Fsvg%3E") no-repeat center;
  background-size: 100% auto;
  transition: 0.2s linear;
}
@media (any-hover: hover) {
  .news-more-link:hover {
    color: var(--color-03);
  }
  .news-more-link:hover::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224.31%22%20height%3D%2240%22%20viewBox%3D%220%200%2024.31%2040%22%3E%3Cpath%20d%3D%22M3.05%2040a3.05%203.05%200%200%201-2.16-5.2L15.69%2020%20.89%205.2A3.05%203.05%200%200%201%205.2.89L24.31%2020%205.2%2039.11c-.6.6-1.38.89-2.16.89Z%22%20style%3D%22fill%3A%23666%22%2F%3E%3C%2Fsvg%3E");
    transform: translateX(2px);
  }
}
@media (hover: none) {
  .news-more-link:active {
    color: var(--color-03);
  }
  .news-more-link:active::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224.31%22%20height%3D%2240%22%20viewBox%3D%220%200%2024.31%2040%22%3E%3Cpath%20d%3D%22M3.05%2040a3.05%203.05%200%200%201-2.16-5.2L15.69%2020%20.89%205.2A3.05%203.05%200%200%201%205.2.89L24.31%2020%205.2%2039.11c-.6.6-1.38.89-2.16.89Z%22%20style%3D%22fill%3A%23666%22%2F%3E%3C%2Fsvg%3E");
    transform: translateX(2px);
  }
}
@media all and (max-width: 767px) {
  .top-news-img {
    text-align: center;
  }
}
/* easy
---------------------------------------- */
.sec-easy {
  position: relative;
  padding: 10px 0 0;
  background: #fcfcf7;
}
.sec-easy::after {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  aspect-ratio: 1/0.186;
  content: "";
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221920%22%20height%3D%22357%22%20viewBox%3D%220%200%201920%20357%22%3E%3Cpath%20d%3D%22M0%2078.1s133.4-33.5%20328.7-3.5C524.5%20104.7%20623.6%20233.7%20867%20187.7c217-41%20388.5-1%20554.4%20107.7C1630%20432%201920%20298.6%201920%20298.6V.8H0z%22%20style%3D%22fill%3A%23fcfcf7%22%2F%3E%3C%2Fsvg%3E") no-repeat center;
  background-size: 100% auto;
  transform: translateY(99%);
}
@media all and (max-width: 767px) {
  .sec-easy {
    padding-bottom: 20px;
  }
}
.easy-contents {
  display: grid;
  grid-template-columns: min(40%, 320px) auto;
  margin: 40px 0 0;
}
@media all and (max-width: 767px) {
  .easy-contents {
    grid-template-columns: auto;
    gap: 20px;
    justify-content: center;
  }
}
.easy-text {
  line-height: 180%;
}
@media all and (min-width: 768px) {
  .easy-animation {
    transform: translateY(-60px);
  }
}
@media all and (max-width: 767px) {
  .easy-animation {
    width: calc(100% + var(--pd-01) * 2);
    margin-left: calc(var(--pd-01) * -1);
  }
}
/* emotional
---------------------------------------- */
.sec-emotional {
  position: relative;
  display: flex;
  align-items: center;
  background: url("/asset/img/bg_emotional_01.png") no-repeat center;
}
.sec-emotional::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 5;
  width: 100%;
  aspect-ratio: 1/0.13;
  content: "";
  background: url("/asset/img/bg_emotional_02.png") no-repeat center bottom;
  background-size: 100% auto;
}
@media all and (max-width: 767px) {
  .sec-emotional {
    background-size: cover;
  }
  .sec-emotional::after {
    aspect-ratio: 1/0.26;
    background-size: 200% auto;
  }
}
.emo-contents {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: auto min(500px, 60%);
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  padding: 200px 0 0;
}
@media all and (max-width: 767px) {
  .emo-contents {
    grid-template-columns: auto;
    padding-top: 100px;
  }
}
.emo-text {
  padding-bottom: 100px;
}
@media all and (max-width: 767px) {
  .emo-text {
    padding-bottom: 0;
  }
}
.emo-desc {
  margin: 60px 0 0;
  line-height: 180%;
}
/* consistent
---------------------------------------- */
.sec-consistent {
  padding: 50px 0;
  overflow: hidden;
}
@media all and (max-width: 767px) {
  .sec-consistent {
    padding-top: 80px;
  }
}
.consistent-contents {
  display: grid;
  grid-template-columns: 21em auto;
  gap: 40px;
  margin: 60px 0 0;
}
@media all and (max-width: 767px) {
  .consistent-contents {
    grid-template-columns: auto;
  }
}
.consistent-desc {
  line-height: 180%;
}
.consistent-sample {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media all and (max-width: 767px) {
  .consistent-sample {
    width: 100%;
    max-width: 500px;
    padding: 30px 15px;
    margin-inline: auto;
    overflow: hidden;
  }
}
.consistent-sample-item {
  position: relative;
  z-index: 3;
  padding: 30px;
  background: #e9e3e0;
  background: linear-gradient(0deg, #e9e3e0 6%, #f5f2f1 92%);
  border-radius: 20px;
  transform: rotate(-9deg);
}
@media all and (max-width: 767px) {
  .consistent-sample-item {
    padding: 10px;
  }
}
.consistent-sample-item img {
  position: relative;
  z-index: 10;
  transform: rotate(9deg);
}
.consistent-sample-item::before, .consistent-sample-item::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 20px;
  transform-origin: center;
}
.consistent-sample-item::before {
  z-index: 2;
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 49, 135, 0.2);
  transform: rotate(9deg);
}
.consistent-sample-item::after {
  z-index: 1;
  background: #f2eee8;
  background: linear-gradient(0deg, #f2eee8 17%, #fbf9f7 88%);
  transform: rotate(5deg);
}
/* yours
---------------------------------------- */
.sec-yours {
  padding: 100px 0 80px;
  overflow: hidden;
}
.yours-contents {
  position: relative;
  display: grid;
  grid-template-columns: min(70%, 600px) auto;
  background: url("/asset/img/bg_yours.png") no-repeat center;
  border: 16px solid #fffdf8;
  border-radius: 40px;
  box-shadow: 0 0 20px rgba(0, 49, 135, 0.2);
}
@media all and (max-width: 767px) {
  .yours-contents {
    grid-template-columns: auto;
    background-size: auto 130%;
    border-width: 12px;
  }
}
.yours-contents-main {
  padding: 60px 0 60px 40px;
}
@media all and (max-width: 767px) {
  .yours-contents-main {
    padding: 20px;
  }
}
.yours-desc {
  margin: 60px 0 0;
  line-height: 180%;
}
@media all and (max-width: 767px) {
  .yours-desc {
    margin-top: 40px;
  }
}
.yours-img-01 {
  margin: 40px 0 0;
}
@media all and (max-width: 767px) {
  .yours-img-01 {
    text-align: center;
  }
}
.yours-contents-img {
  display: flex;
  flex-direction: column;
  justify-content: end;
}
@media all and (max-width: 767px) {
  .yours-contents-img {
    flex-direction: row;
    gap: 10px;
  }
}
.yours-img-02 {
  text-align: center;
}
.yours-img-02 img {
  transform: translate(32px, 22px);
}
.yours-img-03 img {
  transform: translate(50px, 16px);
}
@media all and (max-width: 767px) {
  .yours-img-03 {
    text-align: right;
  }
  .yours-img-03 img {
    transform: translate(30px, 12px);
  }
}
/* features
---------------------------------------- */
.sec-features {
  padding: 50px 0;
}
.features-contents {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 100%;
  max-width: 600px;
  margin: 60px auto 0;
}
.features-item {
  display: grid;
  grid-template-columns: auto 240px;
  gap: 40px;
}
@media all and (max-width: 767px) {
  .features-item {
    grid-template-columns: auto;
    gap: 20px;
  }
}
.features-ttl {
  font-size: 24px;
}
.features-desc {
  margin: 40px 0 0;
  line-height: 180%;
}
@media all and (max-width: 767px) {
  .features-desc {
    margin: 20px 0 0;
  }
}
.features-img {
  position: relative;
  width: 240px;
  margin-inline: auto;
}
@media all and (max-width: 767px) {
  .features-img {
    transform: translateX(17px);
  }
}
.features-img-label {
  position: absolute;
  top: -20px;
  right: 10px;
  display: grid;
  place-content: center;
  width: 80px;
  height: 81px;
  font-size: 0.9em;
  line-height: 120%;
  color: #fff;
  text-align: center;
  background: url("/asset/img/bg_features_label.png") no-repeat center top 2px;
  background-size: 100% auto;
  border-radius: 40px;
}
/* gallery
---------------------------------------- */
.sec-gallery {
  padding: 80px 0;
  background: url("/asset/img/bg_gallery.png") no-repeat center;
  background-size: cover;
}
.gallery-text {
  margin: 80px 0 0;
  line-height: 180%;
  color: #fff;
}
@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}
.splide__track--fade > .splide__list > .splide__slide {
  z-index: 0;
  margin: 0 !important;
  opacity: 0;
}
.splide__track--fade > .splide__list > .splide__slide.is-active {
  z-index: 1;
  opacity: 1;
}
.splide--rtl {
  direction: rtl;
}
.splide__track--ttb > .splide__list {
  display: block;
}
.splide__container {
  position: relative;
  box-sizing: border-box;
}
.splide__list {
  display: flexbox;
  display: flex;
  height: 100%;
  padding: 0 !important;
  margin: 0 !important;
  backface-visibility: hidden;
}
.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}
.splide__pagination {
  display: flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
  -ms-flex-align: center;
  -ms-flex-pack: center;
}
.splide__pagination li {
  display: inline-block;
  margin: 0;
  line-height: 1;
  pointer-events: auto;
  list-style-type: none;
}
.splide:not(.is-overflow) .splide__pagination {
  display: none;
}
.splide__progress__bar {
  width: 0;
}
.splide {
  position: relative;
  visibility: hidden;
}
.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}
.splide__slide {
  position: relative;
  box-sizing: border-box;
  flex-shrink: 0;
  margin: 0;
  list-style-type: none !important;
  backface-visibility: hidden;
  -ms-flex-negative: 0;
}
.splide__slide img {
  vertical-align: bottom;
}
.splide__spinner {
  position: absolute;
  inset: 0;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: auto;
  contain: strict;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  animation: splide-loading 1s linear infinite;
}
.splide__sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
}
.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}
.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}
.splide__track {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.gallery-link {
  display: block;
  height: 100%;
  padding: 20px;
  color: var(--color-01);
  background: #fff;
  border-radius: 12px;
  transition: transform 0.35s cubic-bezier(0.86, 0, 0.07, 1);
}
@media (any-hover: hover) {
  .gallery-link:hover {
    transform: translateY(-20px);
  }
}
@media (hover: none) {
  .gallery-link:active {
    transform: translateY(-20px);
  }
}
.gallery-link img {
  width: 100%;
}
.gallery-thumb {
  overflow: hidden;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
}
.gallery-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 10px 0 0;
  font-size: 14px;
}
.gallery-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  line-height: 150%;
}
.gallery-genre {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.gallery-genre li {
  padding: 3px;
  font-size: 0.8em;
  line-height: 120%;
  border: 1px solid #aaa;
  border-radius: 2px;
}
.splide {
  margin-top: 60px;
}
.splide__track {
  padding-top: 25px;
}
.splide__arrows {
  display: flex;
  justify-content: space-between;
  width: calc(100% - var(--pd-01) * 2);
  max-width: var(--width-01);
  margin: 20px auto 0;
}
:is(.splide__arrow--prev, .splide__arrow--next) {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 1px solid #efefef;
  border-radius: 24px;
}
:is(.splide__arrow--prev, .splide__arrow--next) svg {
  width: 12px;
  height: 20px;
  transition: 0.2s linear;
}
:is(.splide__arrow--prev, .splide__arrow--next) path {
  fill: #efefef;
}
.splide__arrow--prev svg {
  transform: translateX(-2px);
}
@media (any-hover: hover) {
  .splide__arrow--prev:hover svg {
    transform: translateX(-4px);
  }
}
@media (hover: none) {
  .splide__arrow--prev:active svg {
    transform: translateX(-4px);
  }
}
@media (any-hover: hover) {
  .splide__arrow--next:hover svg {
    transform: translateX(2px);
  }
}
@media (hover: none) {
  .splide__arrow--next:active svg {
    transform: translateX(2px);
  }
}
.splide__pagination {
  gap: 10px;
}
.splide__pagination__page {
  width: 6px;
  height: 6px;
  padding: 0;
  background: #efefef;
  border-radius: 3px;
}
.splide__pagination__page.is-active {
  background: #959595;
}
.gallery-btn-wrap {
  display: flex;
  justify-content: center;
  margin: 60px 0;
}
/* evolution
---------------------------------------- */
.sec-evolution {
  padding: 100px 0 80px;
  background: #fcfcf7;
}
.timeline-list {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 60px auto 0;
}
.timeline-list::before {
  position: absolute;
  top: -10px;
  left: -30px;
  width: 8px;
  height: calc(100% + 10px);
  content: "";
  background: #4f4f4f;
  border-radius: 4px;
}
@media all and (max-width: 767px) {
  .timeline-list {
    padding-left: 30px;
  }
  .timeline-list::before {
    left: 0;
  }
}
.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: auto 204px;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid #8d8d8d;
}
.timeline-item:not(:last-of-type) {
  margin-bottom: 40px;
}
.timeline-item::before {
  position: absolute;
  top: 0;
  left: -41px;
  width: 30px;
  height: 30px;
  content: "";
  background: #fff;
  border: 8px solid #4f4f4f;
  border-radius: 100%;
}
@media all and (max-width: 767px) {
  .timeline-item {
    grid-template-columns: auto;
    gap: 20px;
  }
}
.timeline-date {
  display: inline-block;
  padding: 5px 15px;
  color: #fff;
  background: #000;
  border-radius: 14px 14px 14px 0;
}
.timeline-ttl {
  margin: 1rem 0 0;
  font-size: 20px;
}
.timeline-desc {
  margin: 1em 0 0;
  line-height: 180%;
}
/* price
---------------------------------------- */
.sec-price {
  padding: 90px 0;
  background: url("/asset/img/bg_price.png") no-repeat center;
  background-size: cover;
}
.price-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px auto 0;
}
@media all and (max-width: 1023px) and (min-width: 768px) {
  .price-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media all and (max-width: 767px) {
  .price-list {
    grid-template-columns: auto;
    max-width: 300px;
  }
}
.price-item {
  padding: 40px 20px 20px;
  font-weight: bold;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 0 16px rgba(0, 49, 135, 0.2);
}
.price-copy {
  font-size: 14px;
}
.plan-free .price-copy {
  color: #14c0d8;
}
.plan-starter .price-copy {
  color: #0820c7;
}
.plan-creator .price-copy {
  color: #8f14d6;
}
.plan-pro .price-copy {
  color: #c9202c;
}
.price-plan {
  margin: 10px 0 0;
  font-size: 24px;
}
.price-detail {
  margin: 40px 0 0;
  text-align: center;
}
.price-detail dt {
  padding: 5px 0;
  font-size: 12px;
  color: #fff;
  background: #000;
  border-radius: 1em;
}
.price-detail dd {
  padding: 20px 0;
  font-size: 32px;
  font-weight: bold;
  letter-spacing: -0.5px;
}
.price-yen {
  font-size: 16px;
}
.price-tax {
  font-size: 12px;
}
.price-link-wrap {
  margin: 20px 0 0;
}
.price-link {
  display: block;
  padding: 15px;
  color: #fff;
  text-align: center;
  background: #666;
  border-radius: 2em;
}
@media (any-hover: hover) {
  .price-link:hover {
    opacity: 0.8;
  }
}
@media (hover: none) {
  .price-link:active {
    opacity: 0.8;
  }
}
.price-note {
  margin: 2em 0 0;
  line-height: 180%;
}
.plan-free {
  }
.plan-free .price-copy {
  color: #14c0d8;
}
.plan-free .price-link {
  background: #14c0d8;
  background: linear-gradient(0deg, #5bd3e3 5%, #14c0d8 100%);
}
.plan-starter {
  }
.plan-starter .price-copy {
  color: #0820c7;
}
.plan-starter .price-link {
  background: #0820c7;
  background: linear-gradient(0deg, #2f43d0 0%, #0820c7 94%);
}
.plan-creator {
  }
.plan-creator .price-copy {
  color: #8f14d6;
}
.plan-creator .price-link {
  background: #8f14d6;
  background: linear-gradient(0deg, #a746df 0%, #8f14d6 94%);
}
.plan-pro {
  }
.plan-pro .price-copy {
  color: #c9202c;
}
.plan-pro .price-link {
  background: #c9202c;
  background: linear-gradient(0deg, #d6545d 0%, #c9202c 94%);
}
/* connections
---------------------------------------- */
.sec-connections {
  padding: 90px 0;
}
.connections-list {
  width: 100%;
  max-width: 750px;
  margin: 40px auto 0;
  background: #fcfcf7;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 49, 135, 0.2);
}
@media all and (max-width: 767px) {
  .connections-list {
    max-width: 450px;
  }
}
.connections-item {
  display: grid;
  grid-template-columns: 180px auto 140px;
  gap: 30px;
  align-items: center;
  padding: 30px;
}
@media all and (max-width: 767px) {
  .connections-item {
    grid-template-columns: auto;
    padding: 20px;
  }
}
.connections-item:not(:last-of-type) {
  border-bottom: 1px solid #e5e5e5;
}
.connections-logo {
  text-align: center;
}
.connections-desc li {
  position: relative;
  padding-left: 1.25em;
  line-height: 180%;
}
.connections-desc li::before {
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 0.8em;
  height: 0.8em;
  content: "";
  background: var(--color-01);
  border-radius: 50%;
}
.connections-link-wrap {
  display: flex;
  justify-content: center;
  margin: 20px 0 0;
}
.connections-link {
  display: inline-block;
  width: 100%;
  max-width: 300px;
  padding: 15px 10px;
  color: #fff;
  text-align: center;
  border-radius: 23px;
}
@media (any-hover: hover) {
  .connections-link:hover {
    opacity: 0.8;
  }
}
@media (hover: none) {
  .connections-link:active {
    opacity: 0.8;
  }
}
.connections-link.type-discord {
  background: #838df5;
  background: linear-gradient(0deg, #838df5 3%, #5865f2 85%);
}
.connections-link.type-line {
  background: #48d682;
  background: linear-gradient(0deg, rgb(72, 214, 130) 5%, rgb(6, 199, 85) 89%);
}
@media all and (max-width: 767px) {
  .connections-qr {
    text-align: center;
  }
}
/* よくあるご質問
---------------------------------------- */
.sec-faq {
  padding: 40px 0 100px;
}
.faq-list {
  margin: 40px 0 0;
}
.s-details {
  line-height: 180%;
  border: 1px solid #d1d2db;
  border-radius: 12px;
}
.s-details + .s-details {
  margin: 20px 0 0;
}
.s-summary {
  position: relative;
  display: block;
  padding: 20px 40px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
@media all and (max-width: 767px) {
  .s-summary {
    padding-right: 30px;
  }
}
.s-summary:focus:not(:focus-visible) {
  outline: 0;
}
.s-summary:focus-visible {
  outline: var(--outline);
}
.s-summary::-webkit-details-marker {
  display: none;
}
.s-summary::before {
  position: absolute;
  top: 20px;
  left: 10px;
  font-family: "mono45-headline", monospace, "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 40px;
  color: #888;
  content: "Q";
}
.s-summary::after {
  position: absolute;
  top: calc(50% - 0.5em);
  right: 20px;
  display: inline-block;
  width: 1em;
  height: 1em;
  content: "";
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2232%22%20height%3D%2232%22%20fill%3D%22%23888%22%20viewBox%3D%220%200%20256%20256%22%3E%3Cpath%20d%3D%22M213.66%2C101.66l-80%2C80a8%2C8%2C0%2C0%2C1-11.32%2C0l-80-80A8%2C8%2C0%2C0%2C1%2C48%2C88H208a8%2C8%2C0%2C0%2C1%2C5.66%2C13.66Z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") no-repeat;
  background-size: contain;
  transform-origin: center;
  transition: 0.2s ease-in-out;
}
@media all and (max-width: 767px) {
  .s-summary::after {
    right: 10px;
  }
}
.s-summary.is-active::after {
  transform: rotate(180deg);
}
.s-answer {
  overflow: hidden;
}
.s-answer-inner {
  position: relative;
  padding: 0 40px 20px;
}
@media all and (max-width: 767px) {
  .s-answer-inner {
    padding-right: 30px;
  }
}
.s-answer-inner::before {
  position: absolute;
  top: 0;
  left: 10px;
  font-family: "mono45-headline", monospace, "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 40px;
  color: #c9202c;
  content: "A";
}
/* news
============================================================ */
.sec-news {
  padding: 150px 0 100px;
}
.page-contents {
  margin: 80px 0 0;
  word-wrap: break-word;
}
.page-contents p {
  line-height: 180%;
}
.page-contents :where(p, ul, ol, dl, table) + :where(p, ul, ol, dl, table) {
  margin-top: 2em;
}
.page-contents ul li {
  position: relative;
  padding-left: 0.5em;
  line-height: 150%;
}
.page-contents ul li::before {
  position: absolute;
  top: calc(0.5em + 1px);
  left: 0;
  width: 4px;
  height: 4px;
  content: "";
  background: var(--color-01);
  border-radius: 2px;
}
.page-contents ol li {
  line-height: 150%;
}
@media all and (min-width: 768px) {
  .page-contents table tr:last-of-type :is(th, td) {
    border-bottom: 1px solid #666;
  }
}
@media all and (max-width: 767px) {
  .page-contents table tr:last-of-type td {
    border-bottom: 1px solid #666;
  }
}
.page-contents table :is(th, td) {
  padding: 10px 20px;
  line-height: 150%;
}
@media all and (min-width: 768px) {
  .page-contents table :is(th, td) {
    border-top: 1px solid #666;
  }
}
@media all and (max-width: 767px) {
  .page-contents table :is(th, td) {
    display: block;
    padding: 10px;
  }
}
.page-contents table th {
  text-align: left;
  background: #f0f0f0;
}
@media all and (max-width: 767px) {
  .page-contents table th {
    border-top: 1px solid #666;
  }
}
.news-back {
  display: flex;
  justify-content: flex-end;
  margin: 80px 0 0;
}
.news-back-link {
  display: flex;
  gap: 7px;
  align-items: center;
  color: var(--color-01);
}
.news-back-link::after {
  display: inline-block;
  width: 7px;
  height: 12px;
  content: "";
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224.31%22%20height%3D%2240%22%20viewBox%3D%220%200%2024.31%2040%22%3E%3Cpath%20d%3D%22M3.05%2040a3.05%203.05%200%200%201-2.16-5.2L15.69%2020%20.89%205.2A3.05%203.05%200%200%201%205.2.89L24.31%2020%205.2%2039.11c-.6.6-1.38.89-2.16.89Z%22%20style%3D%22fill%3A%23000%22%2F%3E%3C%2Fsvg%3E") no-repeat center;
  background-size: 100% auto;
  transition: 0.2s linear;
}
@media (any-hover: hover) {
  .news-back-link:hover {
    color: var(--color-03);
  }
  .news-back-link:hover::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224.31%22%20height%3D%2240%22%20viewBox%3D%220%200%2024.31%2040%22%3E%3Cpath%20d%3D%22M3.05%2040a3.05%203.05%200%200%201-2.16-5.2L15.69%2020%20.89%205.2A3.05%203.05%200%200%201%205.2.89L24.31%2020%205.2%2039.11c-.6.6-1.38.89-2.16.89Z%22%20style%3D%22fill%3A%23666%22%2F%3E%3C%2Fsvg%3E");
    transform: translateX(2px);
  }
}
@media (hover: none) {
  .news-back-link:active {
    color: var(--color-03);
  }
  .news-back-link:active::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224.31%22%20height%3D%2240%22%20viewBox%3D%220%200%2024.31%2040%22%3E%3Cpath%20d%3D%22M3.05%2040a3.05%203.05%200%200%201-2.16-5.2L15.69%2020%20.89%205.2A3.05%203.05%200%200%201%205.2.89L24.31%2020%205.2%2039.11c-.6.6-1.38.89-2.16.89Z%22%20style%3D%22fill%3A%23666%22%2F%3E%3C%2Fsvg%3E");
    transform: translateX(2px);
  }
}
/* お問い合わせ
============================================================ */
.sec-contact {
  padding: 150px 0 100px;
}
/* 汎用スタイル
============================================================ */
.cmn-contents {
  width: calc(100% - var(--pd-01) * 2);
  max-width: var(--width-01);
  margin-inline: auto;
}
.cmn-btn {
  position: relative;
  z-index: 10;
  display: grid;
  place-content: center;
  width: 100%;
  max-width: 360px;
  height: 68px;
  color: #fff;
  background: #000;
  border-radius: 34px;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.6), 0 0 14px rgba(255, 255, 255, 0.6);
}
@media (any-hover: hover) {
  .cmn-btn:hover {
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6), 0 0 8px rgba(255, 255, 255, 0.6);
    transform: translateY(1px);
    animation: none;
  }
  .cmn-btn:hover .cmn-btn-inner1::before {
    top: -1px;
    left: -1px;
  }
  .cmn-btn:hover .cmn-btn-inner1::after {
    top: -1px;
    left: 1px;
  }
  .cmn-btn:hover .cmn-btn-inner2::before {
    top: 1px;
    left: 1px;
  }
  .cmn-btn:hover .cmn-btn-inner2::after {
    top: 1px;
    left: -1px;
  }
}
@media (hover: none) {
  .cmn-btn:active {
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6), 0 0 8px rgba(255, 255, 255, 0.6);
    transform: translateY(1px);
    animation: none;
  }
  .cmn-btn:active .cmn-btn-inner1::before {
    top: -1px;
    left: -1px;
  }
  .cmn-btn:active .cmn-btn-inner1::after {
    top: -1px;
    left: 1px;
  }
  .cmn-btn:active .cmn-btn-inner2::before {
    top: 1px;
    left: 1px;
  }
  .cmn-btn:active .cmn-btn-inner2::after {
    top: 1px;
    left: -1px;
  }
}
:is(.cmn-btn-inner1, .cmn-btn-inner2) {
  position: absolute;
  inset: 0;
}
:is(.cmn-btn-inner1, .cmn-btn-inner2)::before, :is(.cmn-btn-inner1, .cmn-btn-inner2)::after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 34px;
  mix-blend-mode: multiply;
  transition: 0.2s linear;
}
.cmn-btn-inner1 {
  z-index: 9;
}
.cmn-btn-inner1::before {
  top: -3px;
  left: -3px;
  z-index: 8;
  background: #f30300;
}
.cmn-btn-inner1::after {
  top: -3px;
  left: 3px;
  z-index: 7;
  background: #f503f7;
}
.cmn-btn-inner2 {
  z-index: 6;
}
.cmn-btn-inner2::before {
  top: 3px;
  left: 3px;
  z-index: 5;
  background: #13f4ec;
}
.cmn-btn-inner2::after {
  top: 3px;
  left: -3px;
  z-index: 4;
  background: #fdff00;
}
.cmn-btn-text {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: grid;
  place-content: center;
  color: #fff;
  background: #000;
  border-radius: 34px;
}
.cmn-ttl-primary-main {
  margin: 10px 0 0;
  font-family: "M PLUS Rounded 1c", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 800;
  line-height: 120%;
}
.color-white .cmn-ttl-primary-main {
  color: #fff;
}
@media all and (max-width: 767px) {
  .cmn-ttl-primary-main {
    font-size: 28px;
  }
}
.cmn-ttl-primary-sub {
  position: relative;
  display: inline-block;
  padding: 3px 15px;
  font-family: "mono45-headline", monospace, "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  color: #fff;
  letter-spacing: 1px;
  background: #000;
  border-radius: 1em 1em 1em 0;
}
.cmn-ttl-primary-sub::before {
  position: absolute;
  bottom: -6px;
  left: 0;
  display: inline-block;
  width: 16px;
  height: 17px;
  content: "";
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2217%22%20viewBox%3D%220%200%2016%2017%22%3E%3Cpath%20d%3D%22M0%200v14.95a1.26%201.26%200%200%200%202.16.89l2.53-2.53a8%208%200%200%201%205.59-2.32h5.09z%22%2F%3E%3C%2Fsvg%3E") no-repeat center;
  background-size: 100% auto;
}
.color-white .cmn-ttl-primary-sub {
  color: var(--color-01);
  background: #fff;
}
.color-white .cmn-ttl-primary-sub::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2217%22%20viewBox%3D%220%200%2016%2017%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M0%200v14.95a1.26%201.26%200%200%200%202.16.89l2.53-2.53a8%208%200%200%201%205.59-2.32h5.09z%22%2F%3E%3C%2Fsvg%3E");
}
/* --- 表示/非表示 ------------------- */
@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}
/* --- 余白 ------------------- */
.m-t05em {
  margin-top: 0.5em;
}
.m-t1em {
  margin-top: 1em;
}
.m-t2em {
  margin-top: 2em;
}
@media screen and (min-width: 768px) {
  .sp-only-m-t1em {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .sp-only-m-t1em {
    margin-top: 1em;
  }
}