@charset "UTF-8";
/*-----------ベース -----------*/
:root {
  --yellow: #FFD664;
  --lightyellow: #f9f2bb;
  --blue: #4A9EE1;
  --navy: #003D66;
  --lightblue: #DCE2EB;
  --lightgreen: #4ED29B;
  --red: #fc0000;
  --orange: #FF9061;
  --pink: #F83378;
  --purple: #A16DB9;
  --lightpurple: #CBBAEE;
  --white: #fff;
  --offwhite: #FEFEFE;
  --black: #1C1D21;
  --grey: #d4dde2;
  --darkgrey: #676974;
  --lightgrey: #EDEFF3;
  --ivory: #f5f1eb;
  --main-c: var(--navy);
  --base-c: var(--offwhite);
  --accent-c: var(--orange);
  --bg-c: var(--offwhite);
  --border-c: var(--grey);
}

.l-header {
  z-index: 10;
}

.l-footer {
  z-index: 1;
}

.l-overlay {
  z-index: 4;
}

#splash {
  z-index: 8;
}

.swiper-button-next,
.swiper-button-prev {
  z-index: 4;
}

[data-appear-blur] {
  transition: 1s;
  opacity: 0;
  filter: blur(0.625rem);
}

[data-appear-blur=true] {
  opacity: 1;
  filter: blur(0);
}

[data-aos=blur].aos-init {
  opacity: 0;
  transition: 1s;
}
[data-aos=blur].aos-animate {
  opacity: 0.09;
}

[data-aos=fade-up] {
  transform: translate3d(0, 2rem, 0);
}

[data-slidein-border] {
  text-decoration: none;
  display: flex;
  flex-wrap: wrap;
}
[data-slidein-border] .anim-text {
  position: relative;
}
[data-slidein-border] .anim-text::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.125rem;
  background-color: var(--main-c);
  opacity: 0;
  transform: translateX(-3.125rem);
  transform-origin: left;
  transition: transform 0.6s, opacity 0.6s;
  transition-delay: 0.6s;
}

[data-slidein-border=true] .anim-text::before {
  opacity: 1;
  transform: translateX(0);
}
[data-slidein-border=true] .br {
  content: "";
  width: 100%;
}

[data-appear-each] {
  display: flex;
  flex-wrap: wrap;
}
[data-appear-each] .anim-text {
  position: relative;
  transform: translateY(100%);
  opacity: 0;
}

[data-appear-each=true] .anim-text {
  animation: textAnim 0.7s ease-out forwards;
}

@keyframes textAnim {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
[data-clip-anim] {
  -webkit-clip-path: polygon(0 0, 0 0, 0 0);
  clip-path: polygon(0 0, 0 0, 0 0);
  transition: 0.7s ease-in-out;
}

[data-clip-anim=true] {
  -webkit-clip-path: polygon(0 0, 200% 0, 0 200%);
  clip-path: polygon(0 0, 200% 0, 0 200%);
}

[data-mouse-more] {
  position: relative;
}
[data-mouse-more]:before {
  content: "";
  position: absolute;
  z-index: 3;
  border-radius: 50%;
  width: 7.6875rem;
  height: 7.6875rem;
  overflow: hidden;
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0;
  pointer-events: none;
  will-change: transform;
  transition: all 0.15s linear;
}
@media screen and (min-width: 1024px) {
  [data-mouse-more]:before {
    width: 10.1875rem;
    height: 10.1875rem;
    top: var(--y);
    left: var(--x);
    transform: translate(-50%, -50%) translateZ(0) scale(0);
    right: unset;
    bottom: unset;
  }
}
[data-mouse-more]:after {
  content: "more";
  position: absolute;
  z-index: 3;
  right: 6rem;
  bottom: 6.7rem;
  opacity: 0;
  font-family: "Wix Madefor Display", "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  transition: all 0.15s linear;
}
@media screen and (min-width: 1024px) {
  [data-mouse-more]:after {
    font-size: 1.5rem;
    top: var(--y);
    left: var(--x);
    transform: translate(-50%, -50%) translateZ(0);
    right: unset;
    bottom: unset;
  }
}
[data-mouse-more]:hover:before {
  opacity: 1;
  transform: translate(-50%, -50%) translateZ(0) scale(1);
}
[data-mouse-more]:hover:after {
  opacity: 1;
}

[data-mouse-more=difference]:before {
  mix-blend-mode: difference;
  background-color: var(--white);
}
[data-mouse-more=difference]:after {
  color: var(--black);
}

[data-mouse-more=multiply]:before {
  mix-blend-mode: multiply;
  background-color: #003d66;
}
[data-mouse-more=multiply]:after {
  color: var(--white);
}

[data-mouse-more=view-more]:before {
  content: "view more";
  font-family: "Wix Madefor Display", "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  display: grid;
  place-content: center;
  width: 9.375rem;
  height: 2.8125rem;
  border-radius: 999px;
  position: absolute;
  top: var(--y);
  left: var(--x);
  opacity: 0;
  transition: all 0.15s linear;
}
@media screen and (min-width: 768px) {
  [data-mouse-more=view-more]:before {
    width: 12.5rem;
    height: 3.75rem;
    font-size: 0.875rem;
  }
}
[data-mouse-more=view-more]:after {
  content: "";
  width: 2.125rem;
  height: 2.125rem;
  background-image: url(../images/icons/icon-view-more.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(-210%, -50%) translateZ(0);
}
@media screen and (min-width: 768px) {
  [data-mouse-more=view-more]:after {
    width: 2.9375rem;
    height: 2.9375rem;
    transform: translate(-200%, -50%) translateZ(0);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  list-style: none;
}

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

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 0.0625rem dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 0.0625rem;
  border: 0;
  border-top: 0.0625rem solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

i {
  font-style: normal;
}

/* Chrome、Safari以外 */
summary {
  display: block;
  -webkit-tap-highlight-color: transparent;
}

/* Chrome、Safari */
summary::-webkit-details-marker {
  display: none;
}

html {
  text-underline-position: under;
}
@media (max-width: 376px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1540px) {
  html {
    font-size: 1.038961039vw;
  }
}
@media (min-width: 1541px) {
  html {
    font-size: 16px;
  }
}

body {
  position: relative;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.75;
  width: 100%;
  overflow-x: hidden;
  letter-spacing: 0.02em;
  color: var(--black);
  font-size: 0.875rem;
  cursor: url("../images/common/cursor-default.svg"), auto;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1rem;
  }
}

a {
  text-decoration: none;
  color: inherit;
  cursor: url("../images/common/a-cursor.png") 20 18, auto;
}

svg {
  display: block;
  max-width: 100%;
}

img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
}

span,
i {
  font-size: inherit;
  color: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  font-family: inherit;
}

button {
  font-size: inherit;
  font-family: inherit;
  background: none;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
button:focus {
  opacity: 0.6;
}

/*-------フォントサイズ---------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.4;
}

h1 {
  font-size: 3.75rem;
}

h2 {
  font-size: 3.375rem;
}

h3 {
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  h3 {
    font-size: 2.25rem;
  }
}

h4 {
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  h4 {
    font-size: 2rem;
  }
}

h5 {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  h5 {
    font-size: 1.5rem;
  }
}

h6 {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  h6 {
    font-size: 1.125rem;
  }
}

/*-------------------------------------
ページ遷移アニメーション
-------------------------------------*/
/* オーバーレイの初期状態 */
.transition-overlay {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 200vmax;
  height: 200vmax;
  border-radius: 50%;
  transform: var(--transform, translate(-50%, -50%) scale(0));
  background: var(--background);
  z-index: 9999;
  pointer-events: none;
  transition: transform 0.6s ease-in-out, background 0.3s;
  transition-delay: 0.6s;
}
.transition-overlay:before, .transition-overlay:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200vmax;
  height: 200vmax;
  border-radius: 50%;
  transform: var(--transform, translate(-50%, -50%) scale(0));
  background: var(--background);
  z-index: 9999;
  pointer-events: none;
  transition: transform 0.6s ease-in-out, background 0.3s;
  transition-delay: 0s; /* 親要素のdelayをリセット */
}
.transition-overlay:before {
  transition-delay: 0s;
  opacity: 0.3;
  transform: var(--transform, translate(-50%, -50%) scale(0));
}
.transition-overlay:after {
  transition-delay: 0.3s;
  opacity: 0.6;
  transform: var(--transform, translate(-50%, -50%) scale(0));
}

/*-----------レイアウト　接頭辞「l-」-----------*/
.l-archive__wrapper {
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .l-archive__wrapper {
    padding-bottom: 7.5rem;
  }
}

.l-archive__filters {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  padding-bottom: 1.875rem;
  margin-bottom: 2.5rem;
  border-bottom: solid 0.0625rem var(--lightblue);
}
@media screen and (min-width: 768px) {
  .l-archive__filters {
    flex-direction: unset;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    margin-bottom: 3.125rem;
  }
}

.l-archive__select {
  position: relative;
  width: fit-content;
}
.l-archive__select::after {
  content: "";
  display: inline-block;
  width: 0.375rem;
  height: 0.375rem;
  border-top: solid 0.0625rem var(--black);
  border-right: solid 0.0625rem var(--black);
  position: absolute;
  right: 1rem;
  top: 48%;
  transform: translateY(-50%) rotate(135deg);
}
@media screen and (min-width: 768px) {
  .l-archive__select::after {
    width: 0.5rem;
    height: 0.5rem;
    border-top: solid 0.125rem var(--black);
    border-right: solid 0.125rem var(--black);
  }
}
.l-archive__select select {
  background-color: #fff;
  color: var(--main-c);
  font-size: 0.875rem;
  font-weight: bold;
  text-align: center;
  text-align-last: center;
  border: solid 0.0625rem var(--lightblue);
  border-radius: 3.125rem;
  padding-block: 0.625rem 0.5625rem;
  outline: none;
  appearance: none;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .l-archive__select select {
    font-size: 1rem;
  }
}
.l-archive__select.-year select {
  min-width: 7.75rem;
}

.l-archive__category {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.625rem;
  row-gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .l-archive__category {
    column-gap: 0.9375rem;
  }
}
.l-archive__category .category-item .link {
  display: inline-block;
  background-color: var(--lightgrey);
  color: var(--main-c);
  padding: 0.3125rem 1.0625rem;
  border-radius: 1.25rem;
  font-weight: 500;
}
.l-archive__category .category-item .link.is-active {
  background-color: var(--main-c);
  color: #fff;
}

.archive-title__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3.3125rem;
}

.l-archive__pagination {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .l-archive__pagination {
    margin-top: 6.25rem;
  }
}
.l-archive__pagination .link,
.l-archive__pagination .item.dots {
  width: 1.875rem;
  height: 1.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .l-archive__pagination .link,
  .l-archive__pagination .item.dots {
    width: 2.375rem;
    height: 2.375rem;
  }
}
.l-archive__pagination .link:hover,
.l-archive__pagination .item.dots:hover {
  opacity: 0.6;
}
.l-archive__pagination .link {
  font-family: "Wix Madefor Display", "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .l-archive__pagination .link {
    font-size: 1.25rem;
  }
}
.l-archive__pagination .item.dots:hover {
  opacity: 1;
}
.l-archive__pagination .link.is-active {
  background-color: var(--main-c);
  color: #fff;
}
.l-archive__pagination .link.prev,
.l-archive__pagination .link.next {
  background-color: var(--black);
}
.l-archive__pagination .link.prev .arrow,
.l-archive__pagination .link.next .arrow {
  width: 0.375rem;
  height: 0.375rem;
  border-bottom: solid 0.0625rem #fff;
  border-left: solid 0.0625rem #fff;
}
.l-archive__pagination .link.prev {
  margin-right: 0.5rem;
}
@media screen and (min-width: 768px) {
  .l-archive__pagination .link.prev {
    margin-right: 0.75rem;
  }
}
.l-archive__pagination .link.prev .arrow {
  transform: translateX(0.0625rem) rotate(45deg);
}
.l-archive__pagination .link.next {
  margin-left: 0.5rem;
}
@media screen and (min-width: 768px) {
  .l-archive__pagination .link.next {
    margin-left: 0.75rem;
  }
}
.l-archive__pagination .link.next .arrow {
  transform: translateX(-0.0625rem) rotate(-135deg);
}

.l-article__wrapper .c-mv {
  padding-block: 7.5rem 4.375rem;
}
@media screen and (min-width: 768px) {
  .l-article__wrapper .c-mv {
    padding-block: 12.5rem 6.875rem;
  }
}
.l-article__wrapper .c-mv__contents .c-breadcrumb {
  margin-top: 0;
}
.l-article__wrapper .footer-contact {
  display: none;
}

.l-article__main {
  padding-block: 3.75rem 5rem;
}
@media screen and (min-width: 768px) {
  .l-article__main {
    padding-block: 4.625rem 7.5rem;
  }
}

.l-article__main-wrap {
  max-width: 62.5rem;
  margin-inline: auto;
}

.l-article__head .title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .l-article__head .title {
    font-size: 2rem;
    margin-top: 1.25rem;
  }
}
.l-article__head .date {
  font-size: 1rem;
  font-weight: 600;
  color: var(--darkgrey);
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .l-article__head .date {
    font-size: 1.125rem;
    margin-top: 1.125rem;
  }
}

.l-article__head-upper {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .l-article__head-upper {
    flex-direction: unset;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
  }
}
.l-article__head-upper .taxonomy {
  display: flex;
  align-items: center;
  gap: 1.125rem;
}
.l-article__head-upper .c-badge {
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .l-article__head-upper .c-badge {
    font-size: 0.875rem;
  }
}
.l-article__head-upper .contact-button {
  font-size: 0.625rem;
}
@media screen and (min-width: 768px) {
  .l-article__head-upper .contact-button {
    font-size: 0.8125rem;
  }
}
.l-article__head-upper .contact-button .icon {
  width: 1.6875rem;
  height: 1.6875rem;
}
@media screen and (min-width: 768px) {
  .l-article__head-upper .contact-button .icon {
    width: 2.1875rem;
    height: 2.1875rem;
  }
}

.l-article__content {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .l-article__content {
    margin-top: 3.875rem;
  }
}

.l-article__pagination {
  margin-top: 5rem;
  padding-block: 2.5rem;
  border-top: solid 0.0625rem var(--lightblue);
  border-bottom: solid 0.0625rem var(--lightblue);
}
@media screen and (min-width: 768px) {
  .l-article__pagination {
    margin-top: 7.5rem;
    padding-block: 3.875rem;
  }
}
.l-article__pagination .list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 62.5rem;
  margin-inline: auto;
}
.l-article__pagination .item .link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .l-article__pagination .item .link {
    gap: 1.25rem;
  }
}
.l-article__pagination .item .link:hover {
  opacity: 0.6;
}
.l-article__pagination .item.-archive .link {
  font-size: 0.75rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .l-article__pagination .item.-archive .link {
    font-size: 1rem;
  }
}
.l-article__pagination .item.-archive .icon {
  width: 0.625rem;
  height: 0.625rem;
  margin-top: 0.125rem;
}
@media screen and (min-width: 768px) {
  .l-article__pagination .item.-archive .icon {
    width: 0.8125rem;
    height: 0.8125rem;
  }
}
.l-article__pagination .item.-prev,
.l-article__pagination .item.-next {
  width: 5rem;
}
@media screen and (min-width: 768px) {
  .l-article__pagination .item.-prev,
  .l-article__pagination .item.-next {
    width: 6.875rem;
  }
}
.l-article__pagination .item.-prev .link,
.l-article__pagination .item.-next .link {
  font-size: 0.875rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .l-article__pagination .item.-prev .link,
  .l-article__pagination .item.-next .link {
    font-size: 1.125rem;
  }
}
.l-article__pagination .item.-prev .arrow,
.l-article__pagination .item.-next .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.875rem;
  height: 1.875rem;
  background-color: var(--black);
  border-radius: 50%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-article__pagination .item.-prev .arrow,
  .l-article__pagination .item.-next .arrow {
    width: 2.375rem;
    height: 2.375rem;
  }
}
.l-article__pagination .item.-prev .arrow::after,
.l-article__pagination .item.-next .arrow::after {
  content: "";
  display: inline-block;
  width: 0.3125rem;
  height: 0.3125rem;
  border-bottom: solid 0.0625rem #fff;
  border-left: solid 0.0625rem #fff;
}
.l-article__pagination .item.-prev .arrow::after {
  transform: translateX(0.0625rem) rotate(45deg);
}
.l-article__pagination .item.-next .arrow::after {
  transform: translateX(-0.0625rem) rotate(-135deg);
}

.l-article__bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .l-article__bottom {
    flex-direction: unset;
    padding-top: 4.875rem;
  }
}
.l-article__bottom .article-title {
  display: inline-block;
  font-size: 1.75rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .l-article__bottom .article-title {
    font-size: 2.6875rem;
  }
}
.l-article__bottom .u-t-deco {
  padding-bottom: 0.125rem;
}
@media screen and (min-width: 768px) {
  .l-article__bottom .u-t-deco {
    padding-bottom: 0.1875rem;
  }
}

.l-article__bottom-recommend {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-article__bottom-recommend {
    width: 51.875rem;
  }
}
.l-article__bottom-recommend .l-archive-news__container {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .l-article__bottom-recommend .l-archive-news__container {
    margin-top: 1.25rem;
  }
}
.l-article__bottom-recommend .panel-list {
  margin-right: 0 !important;
}

.l-article__bottom-category {
  width: 100%;
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .l-article__bottom-category {
    width: 25rem;
    margin-top: 0;
  }
}
.l-article__bottom-category .category-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.625rem;
  row-gap: 0.75rem;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .l-article__bottom-category .category-list {
    column-gap: 0.9375rem;
    row-gap: 1.125rem;
    margin-top: 3.125rem;
  }
}
.l-article__bottom-category .c-badge {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .l-article__bottom-category .c-badge {
    font-size: 1rem;
  }
}

.l-inner {
  width: 90%;
  max-width: 75rem;
  margin: 0 auto;
  position: relative;
}

.l-inner-lg {
  width: 90%;
  max-width: 87.5rem;
  margin: 0 auto;
  position: relative;
}

.l-inner--full {
  width: 100%;
  max-width: 120rem;
}
@media screen and (min-width: 768px) {
  .l-inner--full {
    width: 90%;
  }
}

.l-basic-wrapper {
  background-color: inherit;
}

.l-color-wrapper {
  background-color: var(--bg-c);
}

.l-ivory-wrapper {
  background-color: var(--ivory);
}

.l-flex {
  display: flex;
}
.l-flex.-wrap {
  flex-wrap: wrap;
}
.l-flex.-jbetween {
  justify-content: space-between;
}
.l-flex.-jcenter {
  justify-content: center;
}
.l-flex.-jaround {
  justify-content: space-around;
}
.l-flex.-acenter {
  align-items: center;
}
.l-flex.-abaseline {
  align-items: baseline;
}
.l-flex.-column {
  flex-direction: column;
}
.l-flex.-gap-s {
  gap: 0.5em;
}
.l-flex.-gap-m {
  gap: 1em;
}
.l-flex.-gap-l {
  gap: 1.5em;
}

.l-grid {
  display: grid;
}
.l-grid.-col2 {
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .l-grid.-col2 {
    grid-template-columns: 1fr 1fr;
  }
}
.l-grid.-col3 {
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .l-grid.-col3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.l-grid.-col4 {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 768px) {
  .l-grid.-col4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.l-grid.-gap {
  gap: 0.75rem;
}

.l-overlay {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  position: fixed;
  top: 3.8125rem;
  right: -100%;
  transition: opacity 0.6s;
}
.l-overlay.is-open {
  right: 0;
  opacity: 1;
}
@media screen and (min-width: 1281px) {
  .l-overlay {
    top: 5.9375rem;
  }
}

.l-footer {
  width: 100%;
}

.footer-contact {
  display: block;
  background-color: var(--black);
  color: #fff;
  padding-block: 4.5rem;
}
@media screen and (min-width: 768px) {
  .footer-contact {
    padding-block: 8.875rem 7.8125rem;
  }
}

.footer-contact__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .footer-contact__inner {
    flex-direction: unset;
    gap: unset;
  }
}

.footer-contact__title {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .footer-contact__title {
    align-items: flex-start;
  }
}
.footer-contact__title .p-front-title {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer-contact__title .p-front-title {
    text-align: left;
  }
}
.footer-contact__title .title-h2 {
  font-size: 3rem !important;
}
@media screen and (min-width: 768px) {
  .footer-contact__title .title-h2 {
    font-size: 5.625rem !important;
  }
}
.footer-contact__title .email {
  display: inline-block;
  border: solid 0.0625rem #707070;
  border-radius: 1.25rem;
  font-size: 1.125rem;
  font-weight: 600;
  padding: 0.25rem 1.25rem;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .footer-contact__title .email {
    margin-top: 0;
  }
}

.footer-contact__text {
  font-weight: 500;
}
.footer-contact__text .lead {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .footer-contact__text .lead {
    flex-direction: unset;
    font-size: 1.5rem;
  }
}
.footer-contact__text .color-text:first-child {
  color: var(--lightgreen);
}
.footer-contact__text .color-text:last-child {
  color: var(--yellow);
}
.footer-contact__text .text {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer-contact__text .text {
    text-align: left;
  }
}

.footer-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--lightgrey);
  padding-top: 6.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .footer-menu {
    flex-direction: unset;
  }
}
.footer-menu .contact-button {
  width: fit-content;
  margin-top: 2.25rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .footer-menu .contact-button {
    margin-inline: auto 0;
  }
}
.footer-menu .page-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  width: 8.1875rem;
  height: 4.1875rem;
  border-radius: 0 0 0 2.1875rem;
  background-color: var(--black);
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .footer-menu .page-top {
    gap: 0.875rem;
    width: 10.125rem;
    height: 5.1875rem;
    border-radius: 0 0 0 2.5rem;
  }
}
.footer-menu .page-top:hover {
  opacity: 0.8;
}
.footer-menu .page-top:hover .arrow {
  transform: translateY(-0.3125rem);
}
.footer-menu .page-top .arrow {
  display: block;
  width: 0.6875rem;
  height: 0.6875rem;
  background-image: url("../images/icons/icon-arrow-wht.png");
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .footer-menu .page-top .arrow {
    width: 0.875rem;
    height: 0.875rem;
  }
}
.footer-menu .page-top .text {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .footer-menu .page-top .text {
    font-size: 1rem;
  }
}

.footer-menu__main {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .footer-menu__main {
    margin-top: 3.75rem;
  }
}

.footer-menu__main-menu {
  display: none;
}
@media screen and (min-width: 768px) {
  .footer-menu__main-menu {
    display: flex;
    gap: 5rem;
  }
}
.footer-menu__main-menu a {
  transition: 0.3s;
}
.footer-menu__main-menu a:hover {
  opacity: 0.6;
}
.footer-menu__main-menu .sub-menu-list {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
  margin-top: 0.625rem;
}
.footer-menu__main-menu .sub-menu-item {
  font-size: 0.75rem;
}

.footer-menu__second {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3.4375rem;
  flex: 1;
}

.footer-menu__list {
  display: flex;
  align-items: flex-start;
  gap: 5rem;
}

.footer-menu__item.-first {
  width: 7.875rem;
}
.footer-menu__item.-second {
  width: 4.625rem;
}

.footer-menu__link {
  font-family: "Wix Madefor Display", "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-size: 1rem;
  font-weight: bold;
}
.footer-menu__link.-contact {
  background-color: var(--black);
  color: #fff;
  border-radius: 1.25rem;
  padding: 0.4375rem 1.375rem;
}

.footer-menu__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2.0625rem;
}
@media screen and (min-width: 768px) {
  .footer-menu__top {
    flex-direction: unset;
    align-items: flex-end;
    gap: 0;
  }
}

.footer-menu__company {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer-menu__company {
    width: unset;
  }
}
.footer-menu__company .link {
  display: block;
  aspect-ratio: 312/76;
  width: 73%;
  max-width: 19.5rem;
  margin-inline: auto;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .footer-menu__company .link {
    width: 70%;
    margin-inline: unset;
  }
}
.footer-menu__company .link:hover {
  opacity: 0.6;
}
.footer-menu__company .logo {
  width: 100%;
  object-fit: cover;
}
.footer-menu__company .address {
  font-size: 0.75rem;
  text-align: center;
  line-height: 1.75;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .footer-menu__company .address {
    font-size: 0.875rem;
    text-align: left;
    line-height: 1;
    margin-top: 0.9375rem;
  }
}
.footer-menu__company .space {
  display: none;
}
@media screen and (min-width: 768px) {
  .footer-menu__company .space {
    display: inline;
  }
}

.menu__bottom.-footer {
  flex-direction: column-reverse;
  margin-top: 2.25rem;
  padding-block: 1.25rem 1.875rem;
  border-top: solid 0.0625rem var(--lightblue);
}
@media screen and (min-width: 768px) {
  .menu__bottom.-footer {
    flex-direction: unset;
  }
}
.menu__bottom.-footer .copyright {
  font-size: 0.75rem;
  font-weight: 600;
}
.menu__bottom.-footer .site-policy {
  color: #4F4F4F;
}

.footer-menu__sub-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.75rem;
  row-gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .footer-menu__sub-list {
    column-gap: 0.875rem;
    row-gap: 0.75rem;
  }
}

.footer-menu__sub-item {
  width: calc((100% - 0.75rem) / 2);
  border-radius: 0.3125rem;
  overflow: hidden;
}
@media screen and (min-width: 540px) {
  .footer-menu__sub-item {
    width: calc((100% - 1.5rem) / 3);
  }
}
@media screen and (min-width: 768px) {
  .footer-menu__sub-item {
    width: calc((100% - 3.5rem) / 5);
  }
}

.footer-menu__sub-link {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 264/87;
  width: 100%;
  height: 100%;
  position: relative;
  transition: 0.3s;
}
.footer-menu__sub-link:hover {
  opacity: 0.6;
}
.footer-menu__sub-link .title {
  font-size: 0.5rem;
  font-weight: 600;
  color: #fff;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .footer-menu__sub-link .title {
    font-size: 0.875rem;
  }
}
.footer-menu__sub-link .image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.banner-fixed {
  display: block;
  aspect-ratio: 250/247;
  width: clamp(8.563rem, 4.796rem + 16.07vw, 12.5rem);
  height: auto;
  position: fixed;
  bottom: 1.25rem;
  right: 1.125rem;
  z-index: 9;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .banner-fixed {
    width: clamp(13.75rem, 6.126rem + 7.92vw, 15.625rem);
    right: 1.375rem;
  }
}
.banner-fixed:hover {
  opacity: 0.8;
}
.banner-fixed .close-btn {
  width: 1.125rem;
  height: 1.125rem;
  position: absolute;
  top: -0.375rem;
  right: -0.5rem;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .banner-fixed .close-btn {
    width: 1.875rem;
    height: 1.875rem;
    top: -0.625rem;
    right: -0.75rem;
  }
}

.banner-front__add {
  box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16);
}
.banner-front__add .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3.8125rem;
  transition: 0.5s ease-in-out;
}
@media screen and (min-width: 768px) {
  .l-header {
    height: 5.9375rem;
  }
}
.l-header.-unpinned {
  transform: translateY(-100%);
}

/*********************************************
 * サイドバーのレイアウト
 *
 * 接頭詞『.l-sidebar』
 *********************************************/
.l-sidebar {
  grid-area: sidebar;
  min-width: 12.5rem;
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-sidebar {
    position: sticky;
    height: fit-content;
    top: 2rem;
    padding-bottom: 5rem;
    transition: top 0.5s ease-in-out;
  }
  .l-sidebar.-shift {
    top: 7.9375rem;
  }
}
.l-sidebar a {
  text-decoration: none;
}
.l-sidebar .l-sidebar-content + .l-sidebar-content {
  margin-top: 1rem;
}
.l-sidebar .l-sidebar-content.-category {
  grid-area: category;
  order: 1;
}
@media screen and (min-width: 768px) {
  .l-sidebar .l-sidebar-content.-category .ttl {
    cursor: auto;
  }
}
.l-sidebar .l-sidebar-content.-category .c-tag {
  cursor: pointer;
  display: block;
}
@media screen and (min-width: 768px) {
  .l-sidebar .l-sidebar-content.-category .icon {
    display: none;
  }
}
.l-sidebar .l-sidebar-content.-new {
  grid-area: new;
}
.l-sidebar .l-sidebar-content.-new .date {
  font-size: 0.875rem;
}
.l-sidebar .l-sidebar-content.-new .title {
  font-size: 1rem;
}
.l-sidebar .l-sidebar-content.-archive {
  grid-area: archive;
}
.l-sidebar .l-sidebar-content.-archive .menu {
  padding: 0.3125rem;
  background-color: var(--main-c);
  color: var(--white);
  border-radius: 0.3125rem;
}
.l-sidebar .l-sidebar-content.-archive .menu.is-active + .menu_wrap {
  display: block;
}
.l-sidebar .l-sidebar-content.-archive .menu_wrap {
  display: none;
}
.l-sidebar .l-sidebar__head {
  padding: 0.5em 0 0.5em 1em;
  pointer-events: all;
}
@media screen and (min-width: 768px) {
  .l-sidebar .l-sidebar__head {
    pointer-events: none;
  }
}
.l-sidebar .l-sidebar__body {
  display: none;
  border-top: solid 0.125rem var(--main-c);
  padding: 0.5rem 0;
}
@media screen and (min-width: 768px) {
  .l-sidebar .l-sidebar__body {
    display: block;
    padding: 0;
  }
}
.l-sidebar .l-sidebar__body .list {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .l-sidebar .l-sidebar__body .list {
    padding: 0.75rem 0;
  }
}
.l-sidebar .l-sidebar__body .item {
  margin: 0.375rem 0;
  text-align: left;
  transition: 0.3s;
}
.l-sidebar .l-sidebar__body .item a {
  width: fit-content;
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.l-sidebar .l-sidebar__body .item a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 0.125rem;
  background: var(--main-c);
  bottom: -0.25rem;
  transform: scale(0, 1);
  transition: transform 0.3s;
  transform-origin: left top;
}
.l-sidebar .l-sidebar__body .item a:hover::after {
  transform: scale(1, 1);
}
.l-sidebar .l-sidebar__title {
  font-size: 1rem;
  position: relative;
}
.l-sidebar .l-sidebar__title:after, .l-sidebar .l-sidebar__title:before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 0.125rem;
  background: var(--black);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1rem;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .l-sidebar .l-sidebar__title:after, .l-sidebar .l-sidebar__title:before {
    display: none;
  }
}
.l-sidebar .l-sidebar__title::after {
  transform: rotate(90deg);
  transition: 0.3s;
}
.l-sidebar .l-sidebar__title.is-active:after {
  transform: rotate(0deg);
}

/*----------パーツ 接頭辞「c-」------------*/
.c-title-bg {
  width: 100%;
  min-height: 12.5rem;
  padding: 1.875rem 0;
  display: flex;
  align-items: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-title-bg {
    min-height: 18.75rem;
    padding: 4.375rem 0;
  }
}

.c-title-bg--black::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  mix-blend-mode: darken;
}

.c-title-bg--white::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.5);
}

.c-title-bg__inner {
  width: 95%;
  max-width: 75rem;
  margin: 0 auto;
  z-index: 1;
}

.c-title-bg__text {
  width: 100%;
  letter-spacing: 0.1rem;
}
.c-title-bg__text + * {
  margin-top: 1rem;
}

.c-title-bg__sub-text {
  display: inline-block;
}
.c-title-bg__sub-text + * {
  margin-top: 1rem;
}

.c-title-bg__lead + * {
  margin-top: 1rem;
}

.c-title-bg-double {
  width: 100%;
  min-height: 25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  color: var(--white);
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-title-bg-double {
    min-height: 31.25rem;
    align-items: stretch;
  }
}

.c-title-bg-double__container {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  width: 100%;
  min-height: 18.75rem;
}
@media screen and (min-width: 1024px) {
  .c-title-bg-double__container {
    min-height: 31.25rem;
    width: 50%;
  }
}

.c-title-bg-double__cover {
  width: 100%;
  min-height: 12.5rem;
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-title-bg-double__cover {
    margin: 0 auto 0 0;
  }
}

.c-title-bg-double__inner {
  width: 95%;
  max-width: 75rem;
  margin: 0 auto;
  padding: 3.125rem 0;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .c-title-bg-double__inner {
    width: 100%;
    margin: 0 0 0 auto;
    padding: 1.875rem 1.25rem;
    text-align: left;
  }
}
@media screen and (min-width: 1281px) {
  .c-title-bg-double__inner {
    width: 82%;
    margin: 0 0 0 auto;
    padding: 1.875rem 4.375rem 1.875rem 1.25rem;
    text-align: left;
  }
}

.c-title-bg-double__title {
  width: 100%;
}
.c-title-bg-double__title + * {
  margin-top: 1rem;
}

.c-title-bg-double__sub-title {
  display: inline-block;
}
.c-title-bg-double__sub-title + * {
  margin-top: 1rem;
}

.c-title-bg-double__text + * {
  margin-top: 1rem;
}

.c-title-bg-double__lead + * {
  margin-top: 1rem;
}

.c-title-bg-double--reverse.c-title-bg-double--white .c-title-bg-double__container:first-of-type .c-title-bg-double__cover {
  background: transparent;
}
.c-title-bg-double--reverse.c-title-bg-double--white .c-title-bg-double__container:last-of-type .c-title-bg-double__cover {
  background: rgba(255, 255, 255, 0.6);
}
.c-title-bg-double--reverse.c-title-bg-double--black .c-title-bg-double__container:first-of-type .c-title-bg-double__cover {
  background: transparent;
}
.c-title-bg-double--reverse.c-title-bg-double--black .c-title-bg-double__container:last-of-type .c-title-bg-double__cover {
  background: rgba(0, 0, 0, 0.6);
}
.c-title-bg-double--reverse.c-title-bg-double--main .c-title-bg-double__container:first-of-type .c-title-bg-double__cover::after {
  display: none;
}
.c-title-bg-double--reverse.c-title-bg-double--main .c-title-bg-double__container:last-of-type .c-title-bg-double__cover::after {
  background: var(--main-c);
  mix-blend-mode: multiply;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  z-index: 0;
}

.c-title-bg-double--white .c-title-bg-double__container:first-of-type .c-title-bg-double__cover {
  background: rgba(255, 255, 255, 0.6);
}

.c-title-bg-double--black .c-title-bg-double__container:first-of-type .c-title-bg-double__cover {
  background: rgba(0, 0, 0, 0.6);
}

.c-title-bg-double--main .c-title-bg-double__container:first-of-type .c-title-bg-double__cover::after {
  background: var(--main-c);
  mix-blend-mode: multiply;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  z-index: 0;
}

.c-title-bg-half {
  width: 100%;
  min-height: 25rem;
  display: flex;
  align-items: flex-end;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-title-bg-half {
    min-height: 31.25rem;
    align-items: stretch;
  }
}

.c-title-bg-half__cover {
  width: 100%;
  min-height: 12.5rem;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-title-bg-half__cover {
    width: 50%;
    margin: 0 auto 0 0;
  }
}

.c-title-bg-half__inner {
  width: 95%;
  max-width: 75rem;
  margin: 0 auto;
  padding: 1.25rem 0;
}
@media screen and (min-width: 768px) {
  .c-title-bg-half__inner {
    width: auto;
    width: 37.5rem;
    max-width: 90%;
    margin: 0 auto;
    padding: 1.875rem 2.5rem;
    text-align: left;
  }
}

.c-title-bg-half__text {
  width: 100%;
}
.c-title-bg-half__text + * {
  margin-top: 1rem;
}

.c-title-bg-half__sub-text {
  display: inline-block;
}
.c-title-bg-half__sub-text + * {
  margin-top: 1rem;
}

.c-title-bg-half__lead + * {
  margin-top: 1rem;
}

.c-title-bg-half--reverse .c-title-bg-half__cover {
  margin: 0 0 0 auto;
}

.c-title-bg-half--white .c-title-bg-half__cover {
  background: rgba(255, 255, 255, 0.6);
}

.c-title-bg-half--main .c-title-bg-half__cover::after {
  background: var(--main-c);
  mix-blend-mode: multiply;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
}
.c-title-bg-half--main .c-title-bg-half__inner {
  position: relative;
  z-index: 1;
}

.c-title-bg-loop {
  position: relative;
  align-items: center;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  overflow: hidden;
  padding: 8rem 0 3rem;
}
@media screen and (min-width: 768px) {
  .c-title-bg-loop {
    padding: 9rem 0 4rem;
  }
}

.c-title-bg-loop__loop {
  animation: loopTitle 30s linear infinite;
  position: absolute;
  left: 50%;
  top: 13%;
  z-index: 0;
  display: flex;
  transform: translate(-50%, 0%);
  white-space: nowrap;
  transition: all 0.3s;
}
.c-title-bg-loop__loop .title {
  margin-right: 1.5ch;
  line-height: 1;
  white-space: nowrap;
  font-weight: bold;
  font-size: 3.75rem;
}
@media screen and (min-width: 768px) {
  .c-title-bg-loop__loop .title {
    font-size: 9.375rem;
  }
}
.c-title-bg-loop__loop .title.-color {
  color: #C3EDFC;
}
.c-title-bg-loop__loop .title.-white {
  color: var(--white);
}

.c-title-bg-loop__container {
  max-width: 100%;
  padding: 0 5%;
  z-index: 1;
  text-align: center;
}

@keyframes loopTitle {
  from {
    transform: translate(-40%, 0%);
  }
  to {
    transform: translate(-60%, 0%);
  }
}
.c-title-cont {
  margin-bottom: 0.625rem;
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-title-cont {
    margin-bottom: 1.5625rem;
    font-size: 2rem;
  }
}

.c-title-cont__sub {
  display: block;
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 768px) {
  .c-title-cont__sub {
    font-size: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .c-title-cont--row {
    display: flex;
    align-items: baseline;
  }
  .c-title-cont--row .c-title-cont__sub {
    margin-left: 1.25rem;
  }
}

.c-title.-center {
  text-align: center;
}

.c-title__main {
  font-size: 2.375rem;
}
@media screen and (min-width: 768px) {
  .c-title__main {
    font-size: 3.5rem;
  }
}

.c-title__sub {
  position: relative;
  font-weight: 500;
}
.c-title__sub::after {
  content: "";
  display: inline-block;
  width: 0.25rem;
  height: 0.25rem;
  background: -webkit-linear-gradient(270deg, #ED7A49, #FE2C55);
  border-radius: 50%;
  margin-left: 0.375rem;
}
@media screen and (min-width: 768px) {
  .c-title__sub::after {
    width: 0.375rem;
    height: 0.375rem;
    margin-left: 0.5rem;
  }
}

.c-title.-with-bg {
  width: 100%;
  text-align: center;
  padding-top: 1.5625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-title.-with-bg {
    padding-top: 2rem;
  }
}
.c-title.-with-bg .title-bg {
  width: 100%;
  font-size: 2.625rem;
  font-weight: 600;
  line-height: 1;
  color: #F5F7FB;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .c-title.-with-bg .title-bg {
    font-size: 3.5rem;
  }
}
.c-title.-with-bg .title {
  position: relative;
}

.c-title-h1 {
  position: relative;
  padding: 1.875rem 0;
  letter-spacing: 0.2rem;
}
@media screen and (min-width: 768px) {
  .c-title-h1 {
    padding: 3.125rem 0 1.875rem;
  }
}

.c-title-h1--center {
  text-align: center;
}
.c-title-h1--center .c-title-h1--col {
  justify-content: center;
}

.c-title-h1--col {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 1rem;
}

.c-title-h1__main,
.c-title-h1__sub {
  position: relative;
  z-index: 1;
}

.c-title-h1__sub {
  font-weight: normal;
  margin-top: 1rem;
}

.c-title-h1__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-title-h1__bg .image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.c-title-h1--full {
  line-height: 1;
  letter-spacing: 0.2rem;
  position: relative;
  padding: 1.875rem 0;
}
@media screen and (min-width: 768px) {
  .c-title-h1--full {
    padding: 3.125rem 0;
  }
}

.c-title-h1--full--center {
  justify-content: center;
}

.c-title-h1--full__main {
  font-size: clamp(2.5rem, 1.8932rem + 2.589vw, 5rem);
  letter-spacing: 0.3125rem;
  position: relative;
  z-index: 1;
}

.c-title-h1--full__sub {
  margin-top: 1.25rem;
  font-size: clamp(1rem, 0.8786rem + 0.5178vw, 1.5rem);
  letter-spacing: 0;
  position: relative;
  z-index: 1;
}

.c-title-h3 {
  padding-bottom: 2.1875rem;
  position: relative;
}
.c-title-h3::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 0.125rem;
  height: 1.875rem;
  background-color: var(--main-c);
  bottom: 0;
}
.c-title-h3.u-tac::before {
  left: 50%;
  transform: translateX(-50%);
}

.c-title-h4.u-tac .c-title-h4__main:before {
  left: 0;
  right: 0;
  margin: auto;
}

.c-title-h4__main {
  position: relative;
}
.c-title-h4__main:before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 1.875rem;
  height: 0.125rem;
  background-color: var(--main-c);
}

.c-title-h6 {
  width: 100%;
  display: flex;
}
.c-title-h6.u-tac {
  justify-content: center;
  text-align: unset !important;
}
.c-title-h6.u-tar {
  justify-content: right;
  text-align: unset !important;
}

.c-title-h6__main {
  display: grid;
  grid-template-columns: 1.875rem minmax(0, 1fr);
  gap: 0.625rem;
  align-items: flex-start;
  width: fit-content;
}
.c-title-h6__main::before {
  content: "";
  display: inline-block;
  width: 1.875rem;
  height: 0.0625rem;
  background-color: var(--main-c);
  margin-top: 40%;
}

.c-title-sub {
  font-size: 1rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .c-title-sub {
    font-size: 1.125rem;
  }
}

.c-title-sub--main {
  color: var(--main-c);
}

.c-video__caption {
  padding: 0.9375rem 0.625rem;
  border-top: 0.125rem solid var(--main-c);
  background-color: var(--bg-c);
}

.c-video__wrap {
  padding-top: 56.25%;
  position: relative;
}

.c-video__cont {
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  position: absolute;
  object-fit: cover;
}

.c-wysiwyg {
  overflow-wrap: anywhere;
  /* 配置位置 右 */
  /* 配置位置 左 */
  /* 配置位置 中央 */
}
.c-wysiwyg a {
  color: var(--pink);
  text-decoration: underline;
}
.c-wysiwyg ul,
.c-wysiwyg ol {
  padding-left: 1rem;
  margin-left: 1rem;
  margin-bottom: 2rem;
}
.c-wysiwyg ul li {
  list-style-type: disc;
}
.c-wysiwyg ol li {
  list-style-type: decimal;
}
.c-wysiwyg .aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.c-wysiwyg table {
  border-collapse: separate;
  border-spacing: 0.125rem;
}
.c-wysiwyg table,
.c-wysiwyg thead,
.c-wysiwyg tbody,
.c-wysiwyg tr,
.c-wysiwyg th,
.c-wysiwyg td {
  border: solid 0.0625rem var(--main-c);
}
.c-wysiwyg th {
  vertical-align: middle;
}
.c-wysiwyg p + *,
.c-wysiwyg h1 + *,
.c-wysiwyg h2 + *,
.c-wysiwyg h3 + *,
.c-wysiwyg h4 + *,
.c-wysiwyg h5 + * {
  margin-top: 1rem;
}
.c-wysiwyg h1,
.c-wysiwyg h2,
.c-wysiwyg h3,
.c-wysiwyg h4,
.c-wysiwyg h5 {
  font-weight: bold;
}
.c-wysiwyg img.alignright {
  display: block;
  margin: 0 0 0 auto;
}
.c-wysiwyg img.alignleft {
  display: block;
  margin: 0 auto 0 0;
}
.c-wysiwyg img.aligncenter {
  display: block;
  margin: 0 auto;
}
.c-wysiwyg [style*="font-size: 0.75rem"] {
  font-size: 0.625rem !important;
}
@media screen and (min-width: 768px) {
  .c-wysiwyg [style*="font-size: 0.75rem"] {
    font-size: 0.75rem !important;
  }
}
.c-wysiwyg [style*="font-size: 0.875rem"] {
  font-size: 0.75rem !important;
}
@media screen and (min-width: 768px) {
  .c-wysiwyg [style*="font-size: 0.875rem"] {
    font-size: 0.875rem !important;
  }
}
.c-wysiwyg [style*="font-size: 1rem"] {
  font-size: 1rem !important;
}
.c-wysiwyg [style*="font-size: 1.125rem"] {
  font-size: 1rem !important;
}
@media screen and (min-width: 768px) {
  .c-wysiwyg [style*="font-size: 1.125rem"] {
    font-size: 1.125rem !important;
  }
}
.c-wysiwyg [style*="font-size: 1.25rem"] {
  font-size: 1.125rem !important;
}
@media screen and (min-width: 768px) {
  .c-wysiwyg [style*="font-size: 1.25rem"] {
    font-size: 1.25rem !important;
  }
}
.c-wysiwyg [style*="font-size: 1.5rem"] {
  font-size: 1.125rem !important;
}
@media screen and (min-width: 768px) {
  .c-wysiwyg [style*="font-size: 1.5rem"] {
    font-size: 1.5rem !important;
  }
}
.c-wysiwyg [style*="font-size: 1.75rem"] {
  font-size: 1.25rem !important;
}
@media screen and (min-width: 768px) {
  .c-wysiwyg [style*="font-size: 1.75rem"] {
    font-size: 1.75rem !important;
  }
}
.c-wysiwyg [style*="font-size: 2rem"] {
  font-size: 1.25rem !important;
}
@media screen and (min-width: 768px) {
  .c-wysiwyg [style*="font-size: 2rem"] {
    font-size: 2rem !important;
  }
}
.c-wysiwyg [style*="font-size: 2.25rem"] {
  font-size: 1.25rem !important;
}
@media screen and (min-width: 768px) {
  .c-wysiwyg [style*="font-size: 2.25rem"] {
    font-size: 2.25rem !important;
  }
}
.c-wysiwyg [style*="font-size: 2.625rem"] {
  font-size: 1.5rem !important;
}
@media screen and (min-width: 768px) {
  .c-wysiwyg [style*="font-size: 2.625rem"] {
    font-size: 2.625rem !important;
  }
}
.c-wysiwyg [style*="font-size: 2.75rem"] {
  font-size: 1.5rem !important;
}
@media screen and (min-width: 768px) {
  .c-wysiwyg [style*="font-size: 2.75rem"] {
    font-size: 2.75rem !important;
  }
}
.c-wysiwyg [style*="font-size: 3.5rem"] {
  font-size: 1.5rem !important;
}
@media screen and (min-width: 768px) {
  .c-wysiwyg [style*="font-size: 3.5rem"] {
    font-size: 3.5rem !important;
  }
}
.c-wysiwyg [style*="font-size: 4rem"] {
  font-size: 2rem !important;
}
@media screen and (min-width: 768px) {
  .c-wysiwyg [style*="font-size: 4rem"] {
    font-size: 4rem !important;
  }
}

.c-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5625rem;
  height: 1.5625rem;
  position: absolute;
  bottom: 0.625rem;
  right: 0.625rem;
  border-radius: 1.25rem;
  transition: 0.3s;
}
.c-arrow::after {
  content: "";
  display: inline-block;
  width: 0.8125rem;
  height: 0.8125rem;
  background-size: auto 100%;
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(45deg);
  transition: 0.3s;
}

.c-arrow.-navy {
  background-color: #fff;
}
.c-arrow.-navy::after {
  background-image: url("../images/icons/icon-arrow-blu.png");
}

.c-arrow.-black {
  background-color: var(--black);
}
.c-arrow.-black::after {
  background-image: url("../images/icons/icon-arrow-wht.png");
}

.c-arrow-v {
  position: relative;
  display: inline-block;
  width: 0.625rem;
  height: 0.625rem;
  margin-left: 0.3125rem;
  margin-bottom: 0.125rem;
}
.c-arrow-v::before, .c-arrow-v::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 0.0625rem);
  width: 0.125rem;
  height: 0.5rem;
  background-color: var(--black);
  transform-origin: 50% calc(100% - 0.0625rem);
}
.c-arrow-v::before {
  transform: rotate(47deg);
}
.c-arrow-v::after {
  transform: rotate(-47deg);
}

.c-article__media .body {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-article__media .body {
    margin-top: 0.9375rem;
  }
}
.c-article__media.-sm:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
.c-article__media.-sm .image,
.c-article__media.-sm .body {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-article__media.-sm .image {
    float: right;
    width: 45%;
    margin-left: 1em;
  }
}
@media screen and (min-width: 768px) {
  .c-article__media.-sm.-reverse .image {
    float: left;
    margin-right: 1em;
    margin-left: 0;
  }
}

.c-article__title {
  font-size: 1.25rem;
}

.c-article__text > p {
  font-size: 1rem;
}

.c-article__title + .c-article__text {
  margin-top: 0.3125rem;
}

.c-badge {
  display: inline-block;
  background-color: var(--lightgrey);
  color: var(--main-c);
  border-radius: 1.875rem;
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  padding: 0.375rem 0.5625rem;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-badge {
    font-size: 0.75rem;
    padding: 0.625rem 1.125rem;
  }
}

.c-badge__wrap {
  width: fit-content;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3125rem;
}

.c-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.c-banner + .c-banner {
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .c-banner {
    flex-wrap: nowrap;
    justify-content: center;
  }
}

.c-banner__item {
  width: 100%;
}

.c-banner__wrap {
  display: block;
  padding-top: 56.25%;
  position: relative;
  overflow: hidden;
}
.c-banner__wrap::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.c-banner__wrap:hover .c-banner__img, .c-banner__wrap:active .c-banner__img {
  transform: scale(1.2);
}

.c-banner__title {
  color: var(--white);
  text-align: center;
  z-index: 1;
  width: 80%;
  line-height: 1.2em;
  font-size: 1rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .c-banner__title {
    font-size: 1.5rem;
  }
}

.c-banner__img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  transition: 0.8s;
}

.c-banner--col1 .c-banner__item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-banner--col1 .c-banner__item {
    width: 60%;
  }
}
.c-banner--col1 .c-banner__wrap {
  padding-top: 40%;
}

@media screen and (min-width: 768px) {
  .c-banner--col2 .c-banner__item {
    width: 50%;
  }
}
.c-banner--col2 .c-banner__wrap {
  padding-top: 48%;
}

@media screen and (min-width: 768px) {
  .c-banner--col3 .c-banner__item {
    width: 33.3333333333%;
  }
}
.c-banner--col3 .c-banner__wrap {
  padding-top: 72%;
}

.c-breadcrumb {
  display: flex;
  flex-direction: column;
  list-style: none;
  font-family: "Wix Madefor Display", "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  animation: fadeIn 1s ease-in-out forwards;
  opacity: 0;
  transform: translateY(-100%);
  animation-delay: 1.1s;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (min-width: 768px) {
  .c-breadcrumb {
    flex-direction: unset;
    font-size: 0.875rem;
  }
}

.c-breadcrumb_item {
  display: inline;
}
.c-breadcrumb_item + .c-breadcrumb_item:before {
  content: "";
  display: inline-block;
  width: 2.1875rem;
  height: 0.0625rem;
  background-color: var(--darkgrey);
  margin-bottom: 0.3125rem;
  margin-inline: 0 0.5rem;
}
@media screen and (min-width: 768px) {
  .c-breadcrumb_item + .c-breadcrumb_item:before {
    margin-inline: 0.5rem;
  }
}

.c-breadcrumb_link {
  color: var(--darkgrey);
}

.c-button {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  border-radius: 2.5rem;
  box-shadow: 0 0.5rem 1.875rem rgba(119, 127, 167, 0.08);
  padding: 1rem 1.0625rem;
  width: fit-content;
  min-width: 14.6875rem;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-button {
    font-size: 1.125rem;
    padding: 1.5625rem 2.8125rem;
    min-width: 22.0625rem;
  }
}

.c-button-logo {
  height: 1.375rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .c-button-logo {
    height: 1.9375rem;
  }
}

.c-button-anime {
  width: fit-content;
  position: relative;
}
.c-button-anime:hover .blinking {
  opacity: 1;
}
.c-button-anime .c-button {
  background-color: var(--lightgrey);
  color: var(--black);
  box-shadow: 0 0.5rem 1.875rem rgba(119, 127, 167, 0.08);
  position: relative;
  transition: 0.3s;
}
.c-button-anime .c-button:hover {
  background-color: var(--black);
  color: #fff;
}
.c-button-anime .c-button:hover::after {
  background-color: #fff;
}
.c-button-anime .c-button.-white {
  background-color: var(--white);
}
.c-button-anime .c-button.-white:hover {
  background-color: var(--black);
}
.c-button-anime .c-button.-grey {
  background-color: var(--lightgrey);
}
.c-button-anime .c-button.-grey:hover {
  background-color: var(--black);
}
.c-button-anime .c-button::after {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--black);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 2.0625rem;
  transform: translateY(-50%);
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-button-anime .c-button::after {
    width: 0.75rem;
    height: 0.75rem;
  }
}
.c-button-anime .blinking {
  display: block;
  width: 6.625rem;
  height: 6.625rem;
  background-color: #B4B5BA;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: -1.25rem;
  transform: translateY(-50%);
  opacity: 0;
  transition: 0.3s;
}
.c-button-anime .blinking::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background-color: #CBCDD1;
  border-radius: 50%;
  box-sizing: border-box;
  pointer-events: none;
  animation: pulsate 1s linear infinite;
}
@keyframes pulsate {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.c-button.-white-dot {
  background-color: #fff;
}
.c-button.-white-dot:hover {
  background-color: var(--black);
  color: #fff;
}
.c-button.-white-dot:hover::after {
  background-color: #fff;
}
.c-button.-white-dot::after {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--black);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 2.0625rem;
  transform: translateY(-50%);
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-button.-white-dot::after {
    width: 0.75rem;
    height: 0.75rem;
  }
}

.c-button-anchor__contents {
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: left;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .c-button-anchor__contents {
    column-gap: 2.9375rem;
    row-gap: 3.125rem;
  }
}

.c-button-anchor__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9375rem;
  width: calc((100% - 1rem) / 2);
  border-bottom: solid 0.0625rem var(--lightblue);
  padding-bottom: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-button-anchor__button {
    width: calc((100% - 8.8125rem) / 4);
    font-size: 1.125rem;
  }
}
.c-button-anchor__button:hover {
  border-bottom: solid 0.0625rem var(--black);
}
.c-button-anchor__button:hover .arrow {
  background-color: var(--black);
}
.c-button-anchor__button:hover .arrow::after {
  border-bottom: solid 0.0625rem #fff;
  border-left: solid 0.0625rem #fff;
}
.c-button-anchor__button .text {
  flex: 1;
}
.c-button-anchor__button .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background-color: var(--lightgrey);
  border-radius: 50%;
  position: relative;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-button-anchor__button .arrow {
    width: 3rem;
    height: 3rem;
  }
}
.c-button-anchor__button .arrow::after {
  content: "";
  display: inline-block;
  width: 0.375rem;
  height: 0.375rem;
  border-bottom: solid 0.0625rem var(--black);
  border-left: solid 0.0625rem var(--black);
  transform: rotate(-45deg);
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-button-anchor__button .arrow::after {
    width: 0.4375rem;
    height: 0.4375rem;
  }
}

.c-card__wrapper .c-grid {
  grid-gap: 1rem;
}
.c-card__wrapper .c-grid__child {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  grid-gap: 0;
  margin-top: 0;
}

.c-card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  grid-gap: 0;
  width: 100%;
  height: 100%;
  text-align: justify;
  background-color: var(--white);
  border-bottom-right-radius: 0.3125rem;
  border-bottom-left-radius: 0.3125rem;
  filter: drop-shadow(0px 0.1875rem 0.1875rem rgba(0, 0, 0, 0.1));
}

.c-card__head {
  width: 100%;
  padding: 0.625rem 0.9375rem;
  text-align: center;
  background-color: var(--base-c);
  display: table;
  border-top-right-radius: 0.3125rem;
  border-top-left-radius: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .c-card__head {
    padding: 0.625rem 1.25rem;
  }
}

.c-card__head__text {
  display: table-cell;
  vertical-align: middle;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .c-card__head__text {
    font-size: 1rem;
  }
}

.c-card__body {
  width: 100%;
  padding: 0.625rem 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-card__body {
    padding: 0.625rem 1.25rem;
  }
}

.c-card__lead {
  font-weight: normal !important;
}

.c-card-img {
  width: 100%;
  height: 100%;
  background-color: var(--white);
}
.c-card-img .c-card-img__body {
  padding: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-card-img .c-card-img__body {
    padding: 1.875rem;
  }
}

.c-card-img__wrap {
  width: 100%;
  padding-top: 72%;
  position: relative;
}

.c-card-img__image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.c-card-img__body .c-title-sub {
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .c-card-img__body .c-title-sub {
    font-size: 1.5rem;
  }
}
.c-card-img__body .c-card-img__lead {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .c-card-img__body .c-card-img__lead {
    font-size: 1.125rem;
  }
}
.c-card-img__body .c-card-img__text {
  font-size: 1rem;
}
.c-card-img__body .c-button {
  font-size: 1rem;
}

.c-card-img--icon .c-card-img__body {
  padding: 13vw 1em 1em;
}
@media screen and (min-width: 768px) {
  .c-card-img--icon .c-card-img__body {
    padding: 3.125rem 1em 1em;
  }
}

.c-card-img__point {
  font-size: 3.2vw;
  line-height: 1;
  text-align: center;
  color: var(--main-c);
  position: absolute;
  z-index: 2;
  left: 50%;
  transform: translate(-50%, -60%);
}
@media screen and (min-width: 768px) {
  .c-card-img__point {
    font-size: 1rem;
  }
}

.c-card-img__point__num {
  font-size: 8vw;
}
@media screen and (min-width: 768px) {
  .c-card-img__point__num {
    font-size: 2.625rem;
  }
}

.c-card-img__title + .c-card-img__lead {
  margin-top: 0.3125rem;
}
.c-card-img__title + .c-card-img__text {
  margin-top: 0.3125rem;
}
.c-card-img__title + .c-card-img__button {
  margin-top: 0.3125rem;
}

.c-card-img__lead + .c-card-img__text {
  margin-top: 0.3125rem;
}
.c-card-img__lead + .c-card-img__button {
  margin-top: 0.3125rem;
}

.c-card-img__text + .c-card-img__button {
  margin-top: 1.25rem;
}

.c-card-img--shadow {
  filter: drop-shadow(0px 0.1875rem 0.1875rem rgba(0, 0, 0, 0.1));
}
.c-card-img--shadow .c-card-img__body {
  padding: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-card-img--shadow .c-card-img__body {
    padding: 1.875rem;
  }
}

.c-card-img--icon {
  position: relative;
}
.c-card-img--icon .c-card-img__wrap {
  margin: 0 auto -17.5%;
  padding-top: 0;
  border-radius: 50%;
  position: absolute;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
  width: 19vw;
  height: 19vw;
  top: -8vw;
}
@media screen and (min-width: 768px) {
  .c-card-img--icon .c-card-img__wrap {
    width: 6.25rem;
    height: 6.25rem;
    top: -3.5rem;
  }
}
.c-card-img--icon .c-card-img__image {
  border-radius: 50%;
}

.c-card-img-grid.c-grid--col1-4 .c-card-img__body .c-title-sub,
.c-card-img-grid.c-grid--col1-5 .c-card-img__body .c-title-sub {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .c-card-img-grid.c-grid--col1-4 .c-card-img__body .c-title-sub,
  .c-card-img-grid.c-grid--col1-5 .c-card-img__body .c-title-sub {
    font-size: 1.5rem;
  }
}
.c-card-img-grid.c-grid--col1-4 .c-card-img__body .c-card-img__lead,
.c-card-img-grid.c-grid--col1-5 .c-card-img__body .c-card-img__lead {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .c-card-img-grid.c-grid--col1-4 .c-card-img__body .c-card-img__lead,
  .c-card-img-grid.c-grid--col1-5 .c-card-img__body .c-card-img__lead {
    font-size: 1.125rem;
  }
}
.c-card-img-grid.c-grid--col1-4 .c-card-img__body .c-card-img__text,
.c-card-img-grid.c-grid--col1-5 .c-card-img__body .c-card-img__text {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .c-card-img-grid.c-grid--col1-4 .c-card-img__body .c-card-img__text,
  .c-card-img-grid.c-grid--col1-5 .c-card-img__body .c-card-img__text {
    font-size: 1rem;
  }
}
.c-card-img-grid.c-grid--col1-4 .c-card-img__body .c-button,
.c-card-img-grid.c-grid--col1-5 .c-card-img__body .c-button {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .c-card-img-grid.c-grid--col1-4 .c-card-img__body .c-button,
  .c-card-img-grid.c-grid--col1-5 .c-card-img__body .c-button {
    font-size: 1rem;
  }
}

.c-chart__item {
  display: grid;
  grid-template-columns: 1.5625rem 1fr;
  grid-template-rows: auto auto;
}
.c-chart__item:last-of-type .c-chart__border {
  display: none;
}
.c-chart__item + .c-chart__item {
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .c-chart__item {
    grid-template-columns: auto 1fr 70%;
    grid-template-rows: 1fr;
  }
}

.c-chart__deco {
  grid-row-start: 1;
  grid-row-end: 3;
  margin-right: 0.625rem;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-chart__deco {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 2;
  }
}

.c-chart__point {
  width: 100%;
  height: 0.625rem;
  margin-top: 0.3125rem;
  display: block;
  position: relative;
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  .c-chart__point {
    margin-top: 0.625rem;
  }
}

.c-chart__round {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background-color: var(--black);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.c-chart__dashed {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-chart__dashed {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 100%;
    height: 0.0625rem;
  }
  .c-chart__dashed::before, .c-chart__dashed::after {
    content: "";
    display: inline-block;
    width: 45%;
    height: 100%;
    background-size: 0.4375rem 0.0625rem;
    background-image: linear-gradient(to right, #000, #000 0.1875rem, transparent 0.1875rem, transparent 0.4375rem);
    background-repeat: repeat-x;
    position: absolute;
  }
  .c-chart__dashed::before {
    left: -0.3125rem;
  }
  .c-chart__dashed::after {
    right: -0.3125rem;
  }
}

.c-chart__border {
  width: 0.0625rem;
  height: calc(100% - 0.9375rem);
  background-color: var(--black);
  position: absolute;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .c-chart__border {
    top: 1.5625rem;
  }
}

.c-chart__year {
  grid-row-start: 1;
  grid-row-end: 2;
  display: flex;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .c-chart__year {
    grid-column-start: 1;
    grid-column-end: 2;
    flex-direction: column;
  }
}

.c-chart__year-title {
  margin-right: 0.3125rem;
  font-size: 4.8vw;
  font-family: "ヒラギノ明朝 ProN W4", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
@media screen and (min-width: 768px) {
  .c-chart__year-title {
    font-size: 2.875rem;
    line-height: 1;
  }
}

.c-chart__year-sub-title {
  font-size: 4.8vw;
  color: var(--main-c);
}
@media screen and (min-width: 768px) {
  .c-chart__year-sub-title {
    font-size: 1rem;
    align-self: flex-end;
  }
}

.c-chart__cont {
  grid-row-start: 2;
  grid-row-end: 3;
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-chart__cont {
    grid-column-start: 3;
    grid-column-end: 4;
    grid-row-start: 1;
    grid-row-end: 2;
  }
}

.c-chart__title {
  line-height: 1.5;
}

.c-chart__image-list {
  margin-top: 0.625rem;
  gap: 0.625rem;
}

.c-conversion {
  background-color: var(--bg-c);
}

.c-conversion--image {
  background-color: transparent;
  background-position: center;
  background-size: cover;
  position: relative;
}
.c-conversion--image::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
}
.c-conversion--image .c-conversion__title,
.c-conversion--image .c-conversion__text {
  color: var(--white);
}

.c-conversion__inner {
  width: 95%;
  max-width: 75rem;
  min-height: 21.875rem;
  margin: 0 auto;
  padding: 3.125rem 0;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .c-conversion__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.c-conversion__title {
  text-align: center;
  color: var(--main-c);
}

.c-conversion__text {
  margin-top: 0.3125rem;
}

.c-conversion__btn-area {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-conversion__btn-area {
    flex-wrap: nowrap;
  }
}

.c-conversion__button {
  width: 90%;
}
@media screen and (min-width: 768px) {
  .c-conversion__button {
    width: 100%;
    max-width: 18.75rem;
  }
}

.c-cv {
  display: flex;
  flex-direction: column;
  gap: 0.4375rem;
  padding-block: 0.4375rem 3.75rem;
  padding-inline: 0.4375rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .c-cv {
    flex-direction: unset;
    gap: 0.75rem;
    padding-block: 0.75rem 5.875rem;
    padding-inline: 0.75rem;
  }
}

.c-cv__banner {
  position: relative;
  flex: 1;
}
.c-cv__banner::after {
  content: "";
  display: inline-block;
  aspect-ratio: 178/90;
  width: 50%;
  max-width: 13.75rem;
  height: auto;
  background-image: url("../images/front/deco-circle.webp");
  background-size: cover;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
  border-radius: 0 0 0.75rem 0;
}
@media screen and (min-width: 768px) {
  .c-cv__banner::after {
    aspect-ratio: unset;
    width: clamp(17.5rem, 0.728rem + 17.41vw, 21.625rem);
    max-width: unset;
    height: clamp(8.75rem, 0.11rem + 8.97vw, 10.875rem);
  }
}

.c-cv__banner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 2.9375rem 6rem;
  padding-inline: 1.25rem;
  border-radius: 0.625rem;
  overflow: hidden;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .c-cv__banner-inner {
    padding-block: clamp(7.5rem, -12.83rem + 21.11vw, 12.5rem) clamp(9.688rem, 0.793rem + 9.23vw, 11.875rem);
    border-radius: 1.25rem;
  }
}
.c-cv__banner-inner .sub-title {
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--yellow);
}
@media screen and (min-width: 768px) {
  .c-cv__banner-inner .sub-title {
    font-size: 1.0625rem;
  }
}
.c-cv__banner-inner .title {
  font-size: 1.125rem;
  font-weight: 500;
  color: #fff;
  margin-top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .c-cv__banner-inner .title {
    font-size: 2.5rem;
  }
}
.c-cv__banner-inner .link-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .c-cv__banner-inner .link-wrap {
    flex-direction: unset;
    gap: 0.8125rem;
    margin-top: 2.5rem;
  }
}
.c-cv__banner-inner .p-front-button {
  border: solid 0.0625rem #fff;
  padding-inline: 1.5625rem 3.4375rem;
  min-width: 15.75rem;
}
@media screen and (min-width: 768px) {
  .c-cv__banner-inner .p-front-button {
    min-width: 22.0625rem;
  }
}
.c-cv__banner-inner .p-front-button::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background-color: #fff;
  opacity: 0;
  transition: 0.3s;
}
.c-cv__banner-inner .p-front-button:hover::after {
  opacity: 1;
}
.c-cv__banner-inner .p-front-button .text {
  color: #fff;
  position: relative;
  z-index: 1;
  transition: 0.3s;
}
.c-cv__banner-inner .p-front-button .icon-link {
  width: 0.625rem;
  height: 0.625rem;
  background-image: url("../images/icons/icon-link-wht.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  right: 2.1875rem;
  transform: translateY(-50%);
  z-index: 1;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-cv__banner-inner .p-front-button .icon-link {
    width: 1rem;
    height: 1rem;
  }
}
.c-cv__banner-inner .simulator-button {
  display: block;
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 1;
  width: 57.6%;
  max-width: 15rem;
  height: auto;
  box-shadow: 0 1.125rem 1.5rem rgba(0, 0, 0, 0.16);
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-cv__banner-inner .simulator-button {
    width: clamp(19.375rem, 0.062rem + 20.05vw, 24.125rem);
    max-width: unset;
  }
}
.c-cv__banner-inner .simulator-button:hover {
  transform: scale(1.05);
}
.c-cv__banner-inner .simulator-button__inner {
  position: relative;
}

.c-cv__banner:first-child .c-cv__banner-inner {
  background-image: url("../images/front/partners-bg-02.webp");
}
.c-cv__banner:first-child .c-cv__banner-inner .p-front-button {
  background: -webkit-linear-gradient(270deg, #003D66, #0F3147);
}
.c-cv__banner:first-child .c-cv__banner-inner .p-front-button:hover {
  border: solid 0.0625rem var(--main-c);
}
.c-cv__banner:first-child .c-cv__banner-inner .p-front-button:hover .text {
  background: #0F3147;
  background: linear-gradient(to right, #003D66 0%, #0F3147 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.c-cv__banner:first-child .c-cv__banner-inner .p-front-button:hover .icon-link {
  background-image: url("../images/icons/icon-link-blu.png");
}
@media screen and (min-width: 768px) {
  .c-cv__banner:first-child .c-cv__banner-inner .simulator-button {
    height: clamp(6.063rem, -0.545rem + 6.86vw, 7.688rem);
  }
}

.c-cv__banner:last-child .c-cv__banner-inner {
  background-image: url("../images/front/commercer-bg-02.webp");
}
.c-cv__banner:last-child .c-cv__banner-inner .p-front-button {
  background: -webkit-linear-gradient(270deg, #ED7A49, #FE2C55);
}
.c-cv__banner:last-child .c-cv__banner-inner .p-front-button:hover {
  border: solid 0.0625rem #F74A50;
}
.c-cv__banner:last-child .c-cv__banner-inner .p-front-button:hover .text {
  background: #EA3776;
  background: linear-gradient(to right, #ED7A49 0%, #FE2C55 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.c-cv__banner:last-child .c-cv__banner-inner .p-front-button:hover .icon-link {
  background-image: url("../images/icons/icon-link-red.png");
}
@media screen and (min-width: 768px) {
  .c-cv__banner:last-child .c-cv__banner-inner .simulator-button {
    height: clamp(5.375rem, 0.038rem + 5.54vw, 6.688rem);
  }
}

.c-feature {
  background-color: #fff;
  position: relative;
  padding-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .c-feature {
    padding-top: 13.5625rem;
  }
}
.c-feature::before {
  content: "";
  display: inline-block;
  aspect-ratio: 1646/205;
  width: 100%;
  height: auto;
  background-color: rgba(175, 181, 197, 0.27);
  border-radius: 50%;
  filter: blur(1.25rem);
  position: absolute;
  bottom: 1.875rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .c-feature::before {
    width: 85%;
    filter: blur(1.875rem);
    bottom: 7.5rem;
  }
}
.c-feature .c-title {
  text-align: center;
}
.c-feature .c-loop-text {
  margin-top: -1.25rem;
}
@media screen and (min-width: 768px) {
  .c-feature .c-loop-text {
    margin-top: -3.4375rem;
  }
}

.c-feature__list {
  display: flex;
  flex-direction: column;
  border: solid 0.0625rem var(--lightblue);
  margin-top: 1.875rem;
  counter-reset: listnum;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .c-feature__list {
    flex-direction: unset;
    margin-top: 4.375rem;
  }
}

.c-feature__item {
  padding: 2.5rem clamp(1.25rem, -4.729rem + 25.51vw, 7.5rem) 3.75rem;
  background-color: #fff;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-feature__item {
    padding: 5rem clamp(4.063rem, -9.914rem + 14.51vw, 7.5rem) 7.125rem;
    width: 33.3333333333%;
  }
}
.c-feature__item .number {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Wix Madefor Display", "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-size: 1rem;
  color: var(--main-c);
}
@media screen and (min-width: 768px) {
  .c-feature__item .number {
    font-size: 1.125rem;
  }
}
.c-feature__item .number::after {
  content: counter(listnum, decimal-leading-zero);
  counter-increment: listnum;
  background-color: var(--main-c);
  color: #fff;
  border-radius: 1.875rem;
  padding-block: 0.375rem;
  padding-inline: 1.4375rem;
  font-size: 1.125rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .c-feature__item .number::after {
    font-size: 1.625rem;
  }
}
.c-feature__item .title {
  font-weight: bold;
  text-align: center;
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .c-feature__item .title {
    margin-top: 2.8125rem;
  }
}
.c-feature__item .text {
  font-weight: 500;
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .c-feature__item .text {
    margin-top: 2.8125rem;
  }
}
.c-feature__item .c-button-anime {
  margin-top: 2.5rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .c-feature__item .c-button-anime {
    margin-top: 1.875rem;
  }
}

.c-feature__item:not(:last-child) {
  border-bottom: solid 0.0625rem var(--lightblue);
}
@media screen and (min-width: 768px) {
  .c-feature__item:not(:last-child) {
    border-bottom: none;
    border-right: solid 0.0625rem var(--lightblue);
  }
}

.c-flex {
  display: flex;
}

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

.c-flex--reverse {
  justify-content: reverse;
}

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

.c-flex--gap-sm {
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-flex--gap-sm {
    gap: 1.25rem;
  }
}

.c-flex__col1 {
  width: calc(8.3333333333% * 1);
}

[class*=gap] .c-flex__col1 {
  width: calc(8.3333333333% * 1 - 0.625rem);
}
@media screen and (min-width: 768px) {
  [class*=gap] .c-flex__col1 {
    width: calc(8.3333333333% * 1 - 1.25rem);
  }
}

.c-flex__col2 {
  width: calc(8.3333333333% * 2);
}

[class*=gap] .c-flex__col2 {
  width: calc(8.3333333333% * 2 - 0.625rem);
}
@media screen and (min-width: 768px) {
  [class*=gap] .c-flex__col2 {
    width: calc(8.3333333333% * 2 - 1.25rem);
  }
}

.c-flex__col3 {
  width: calc(8.3333333333% * 3);
}

[class*=gap] .c-flex__col3 {
  width: calc(8.3333333333% * 3 - 0.625rem);
}
@media screen and (min-width: 768px) {
  [class*=gap] .c-flex__col3 {
    width: calc(8.3333333333% * 3 - 1.25rem);
  }
}

.c-flex__col4 {
  width: calc(8.3333333333% * 4);
}

[class*=gap] .c-flex__col4 {
  width: calc(8.3333333333% * 4 - 0.625rem);
}
@media screen and (min-width: 768px) {
  [class*=gap] .c-flex__col4 {
    width: calc(8.3333333333% * 4 - 1.25rem);
  }
}

.c-flex__col5 {
  width: calc(8.3333333333% * 5);
}

[class*=gap] .c-flex__col5 {
  width: calc(8.3333333333% * 5 - 0.625rem);
}
@media screen and (min-width: 768px) {
  [class*=gap] .c-flex__col5 {
    width: calc(8.3333333333% * 5 - 1.25rem);
  }
}

.c-flex__col6 {
  width: calc(8.3333333333% * 6);
}

[class*=gap] .c-flex__col6 {
  width: calc(8.3333333333% * 6 - 0.625rem);
}
@media screen and (min-width: 768px) {
  [class*=gap] .c-flex__col6 {
    width: calc(8.3333333333% * 6 - 1.25rem);
  }
}

.c-flex__col7 {
  width: calc(8.3333333333% * 7);
}

[class*=gap] .c-flex__col7 {
  width: calc(8.3333333333% * 7 - 0.625rem);
}
@media screen and (min-width: 768px) {
  [class*=gap] .c-flex__col7 {
    width: calc(8.3333333333% * 7 - 1.25rem);
  }
}

.c-flex__col8 {
  width: calc(8.3333333333% * 8);
}

[class*=gap] .c-flex__col8 {
  width: calc(8.3333333333% * 8 - 0.625rem);
}
@media screen and (min-width: 768px) {
  [class*=gap] .c-flex__col8 {
    width: calc(8.3333333333% * 8 - 1.25rem);
  }
}

.c-flex__col9 {
  width: calc(8.3333333333% * 9);
}

[class*=gap] .c-flex__col9 {
  width: calc(8.3333333333% * 9 - 0.625rem);
}
@media screen and (min-width: 768px) {
  [class*=gap] .c-flex__col9 {
    width: calc(8.3333333333% * 9 - 1.25rem);
  }
}

.c-flex__col10 {
  width: calc(8.3333333333% * 10);
}

[class*=gap] .c-flex__col10 {
  width: calc(8.3333333333% * 10 - 0.625rem);
}
@media screen and (min-width: 768px) {
  [class*=gap] .c-flex__col10 {
    width: calc(8.3333333333% * 10 - 1.25rem);
  }
}

.c-flex__col11 {
  width: calc(8.3333333333% * 11);
}

[class*=gap] .c-flex__col11 {
  width: calc(8.3333333333% * 11 - 0.625rem);
}
@media screen and (min-width: 768px) {
  [class*=gap] .c-flex__col11 {
    width: calc(8.3333333333% * 11 - 1.25rem);
  }
}

.c-flex__col12 {
  width: calc(8.3333333333% * 12);
}

[class*=gap] .c-flex__col12 {
  width: calc(8.3333333333% * 12 - 0.625rem);
}
@media screen and (min-width: 768px) {
  [class*=gap] .c-flex__col12 {
    width: calc(8.3333333333% * 12 - 1.25rem);
  }
}

@media screen and (min-width: 640px) {
  .c-flex__col-1_tab {
    width: calc(8.3333333333% * 1);
  }
  .c-flex__col-2_tab {
    width: calc(8.3333333333% * 2);
  }
  .c-flex__col-3_tab {
    width: calc(8.3333333333% * 3);
  }
  .c-flex__col-4_tab {
    width: calc(8.3333333333% * 4);
  }
  .c-flex__col-5_tab {
    width: calc(8.3333333333% * 5);
  }
  .c-flex__col-6_tab {
    width: calc(8.3333333333% * 6);
  }
  .c-flex__col-7_tab {
    width: calc(8.3333333333% * 7);
  }
  .c-flex__col-8_tab {
    width: calc(8.3333333333% * 8);
  }
  .c-flex__col-9_tab {
    width: calc(8.3333333333% * 9);
  }
  .c-flex__col-10_tab {
    width: calc(8.3333333333% * 10);
  }
  .c-flex__col-11_tab {
    width: calc(8.3333333333% * 11);
  }
  .c-flex__col-12_tab {
    width: calc(8.3333333333% * 12);
  }
}
@media screen and (min-width: 1024px) {
  .c-flex__col-1_pc {
    width: calc(8.3333333333% * 1);
  }
  .c-flex__col-2_pc {
    width: calc(8.3333333333% * 2);
  }
  .c-flex__col-3_pc {
    width: calc(8.3333333333% * 3);
  }
  .c-flex__col-4_pc {
    width: calc(8.3333333333% * 4);
  }
  .c-flex__col-5_pc {
    width: calc(8.3333333333% * 5);
  }
  .c-flex__col-6_pc {
    width: calc(8.3333333333% * 6);
  }
  .c-flex__col-7_pc {
    width: calc(8.3333333333% * 7);
  }
  .c-flex__col-8_pc {
    width: calc(8.3333333333% * 8);
  }
  .c-flex__col-9_pc {
    width: calc(8.3333333333% * 9);
  }
  .c-flex__col-10_pc {
    width: calc(8.3333333333% * 10);
  }
  .c-flex__col-11_pc {
    width: calc(8.3333333333% * 11);
  }
  .c-flex__col-12_pc {
    width: calc(8.3333333333% * 12);
  }
}
.c-flow__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-inline: 1.875rem;
  counter-reset: listnum;
}
@media screen and (min-width: 768px) {
  .c-flow__list {
    gap: 2rem;
    margin-top: 2.5rem;
  }
}

.c-flow__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-radius: 0.3125rem;
  background-color: #F9FBFE;
  color: var(--main-c);
  font-weight: bold;
  padding: 1.25rem;
  box-shadow: 0 0.5rem 1.875rem rgba(119, 127, 167, 0.15);
}
@media screen and (min-width: 768px) {
  .c-flow__item {
    gap: 1.25rem;
  }
}
.c-flow__item .number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background-color: #fff;
  border-radius: 50%;
  border: solid 0.0625rem #ECEEF1;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-flow__item .number {
    width: 2.875rem;
    height: 2.875rem;
  }
}
.c-flow__item .number::after {
  content: counter(listnum);
  counter-increment: listnum;
}
.c-flow__item .c-text {
  flex: 1;
  margin-top: 0.125rem;
}
@media screen and (min-width: 768px) {
  .c-flow__item .c-text {
    margin-top: 0.5rem;
  }
}

.c-flow__item:not(:last-child) {
  position: relative;
}
.c-flow__item:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 4.0625rem solid transparent;
  border-left: 4.0625rem solid transparent;
  border-top: 1.25rem solid var(--lightgrey);
  border-bottom: 0;
  position: absolute;
  bottom: -1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .c-flow__item:not(:last-child)::after {
    border-right: 7.8125rem solid transparent;
    border-left: 7.8125rem solid transparent;
    border-top: 2.5rem solid var(--lightgrey);
    bottom: -2.5rem;
  }
}

.c-flow__item:last-child {
  color: var(--pink);
}

.c-grid {
  display: grid;
}
.c-grid img {
  aspect-ratio: 4/3;
}

.c-grid__child {
  width: 100%;
  margin-top: 7vw;
}
@media screen and (min-width: 768px) {
  .c-grid__child {
    margin-top: 3.75rem;
  }
}

.c-grid--col1-1 {
  grid-template-columns: 1fr;
}

.c-grid--col1-2 {
  grid-template-columns: 1fr 1fr;
}
@media screen and (min-width: 768px) {
  .c-grid--col1-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.c-grid--col1-3 {
  grid-template-columns: 1fr 1fr;
}
@media screen and (min-width: 768px) {
  .c-grid--col1-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.c-grid--col1-4 {
  grid-template-columns: 1fr 1fr;
}
@media screen and (min-width: 768px) {
  .c-grid--col1-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.c-grid--col1-5 {
  grid-template-columns: 1fr 1fr;
}
@media screen and (min-width: 768px) {
  .c-grid--col1-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}

.c-grid--col2-1 {
  grid-template-columns: 1fr 1fr;
}
@media screen and (min-width: 768px) {
  .c-grid--col2-1 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.c-grid--col2-2 {
  grid-template-columns: 1fr 1fr;
}
@media screen and (min-width: 768px) {
  .c-grid--col2-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.c-grid--col2-3 {
  grid-template-columns: 1fr 1fr;
}
@media screen and (min-width: 768px) {
  .c-grid--col2-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.c-grid--col2-4 {
  grid-template-columns: 1fr 1fr;
}
@media screen and (min-width: 768px) {
  .c-grid--col2-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.c-grid--col2-5 {
  grid-template-columns: 1fr 1fr;
}
@media screen and (min-width: 768px) {
  .c-grid--col2-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}

.c-grid--col3-1 {
  grid-template-columns: 1fr 1fr 1fr;
}
@media screen and (min-width: 768px) {
  .c-grid--col3-1 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.c-grid--col3-2 {
  grid-template-columns: 1fr 1fr 1fr;
}
@media screen and (min-width: 768px) {
  .c-grid--col3-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.c-grid--col3-3 {
  grid-template-columns: 1fr 1fr 1fr;
}
@media screen and (min-width: 768px) {
  .c-grid--col3-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.c-grid--col3-4 {
  grid-template-columns: 1fr 1fr 1fr;
}
@media screen and (min-width: 768px) {
  .c-grid--col3-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.c-grid--col3-5 {
  grid-template-columns: 1fr 1fr 1fr;
}
@media screen and (min-width: 768px) {
  .c-grid--col3-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}

.c-grid--col3-6 {
  grid-template-columns: 1fr 1fr 1fr;
}
@media screen and (min-width: 768px) {
  .c-grid--col3-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}

.c-grid--gap-sm {
  grid-gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-grid--gap-sm {
    grid-gap: 1.25rem;
  }
}

.c-grid--gap-lg {
  grid-gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-grid--gap-lg {
    grid-gap: 1.875rem;
  }
}

.c-grid--col1-3,
.c-grid--col1-5 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.c-grid--col1-3 div,
.c-grid--col1-5 div {
  width: calc(50% - 0.3125rem);
}
@media screen and (min-width: 768px) {
  .c-grid--col1-3,
  .c-grid--col1-5 {
    flex-wrap: nowrap;
  }
  .c-grid--col1-3 div,
  .c-grid--col1-5 div {
    width: 100%;
  }
}

.c-card-img-grid.c-grid--col1-2, .c-card-img-grid.c-grid--col1-3 {
  display: grid;
  grid-template-columns: 1fr;
}
.c-card-img-grid.c-grid--col1-2 div, .c-card-img-grid.c-grid--col1-3 div {
  width: 100%;
}
.c-card-img-grid.c-grid--col1-5 div {
  width: 100%;
}
.c-card-img-grid.c-grid--col1-5 .c-grid__child {
  width: calc(50% - 0.5rem);
}
.c-card-img-grid.c-grid--col1-4 .c-button--sub, .c-card-img-grid.c-grid--col1-5 .c-button--sub {
  min-width: 7.5rem;
}
@media screen and (min-width: 768px) {
  .c-card-img-grid.c-grid--col1-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-card-img-grid.c-grid--col1-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-card-img-grid.c-grid--col1-4 .c-button--sub {
    min-width: 5rem;
  }
  .c-card-img-grid.c-grid--col1-5 .c-grid__child {
    width: 100%;
  }
  .c-card-img-grid.c-grid--col1-5 .c-button--sub {
    min-width: 5rem;
  }
}
@media screen and (min-width: 1000px) {
  .c-card-img-grid.c-grid--col1-4 .c-button--sub {
    min-width: 8.875rem;
  }
}
@media screen and (min-width: 1265px) {
  .c-card-img-grid.c-grid--col1-5 .c-button--sub {
    min-width: 8.875rem;
  }
}

.c-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-header {
    padding-top: 1.875rem;
    padding-inline: 2.8125rem 1.875rem;
  }
}

.c-header__logo {
  width: 9.625rem;
  height: 2.3125rem;
  position: relative;
  z-index: 1000;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-header__logo {
    width: 15.6875rem;
    height: 3.8125rem;
  }
}
.c-header__logo:hover {
  opacity: 0.6;
}
@media screen and (min-width: 768px) {
  .c-header__logo.is-active {
    width: 22.3125rem;
    height: 5.4375rem;
    margin-top: 2.375rem;
  }
}
.c-header__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-header__menu-wrap {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  font-weight: 600;
}

.c-header__front-menu {
  display: none;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-header__front-menu {
    display: flex;
  }
}

.front-menu__list {
  display: flex;
  align-items: center;
  gap: 1.625rem;
  padding: 0.9375rem 1.5625rem;
  border-radius: 0.4375rem;
  border: solid 0.0625rem #DADEEB;
  position: relative;
}
.front-menu__list::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(1.875rem) brightness(1.15);
  backdrop-filter: blur(1.875rem) brightness(1.15);
  border-radius: 0.4375rem;
  z-index: -1;
}

.front-menu__item {
  position: relative;
}

a.front-menu__link {
  transition: 0.3s;
}
a.front-menu__link:hover {
  color: var(--pink);
}

p.front-menu__link {
  cursor: url("../images/common/a-cursor.png") 20 18, auto;
}

.front-menu__item.-haschild.is-open {
  cursor: url("../images/common/a-cursor.png") 20 18, auto;
}
.front-menu__item.-haschild.is-open .front-menu__sub-list-wrap {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.front-menu__sub-list-wrap {
  padding-top: 3.125rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s;
}

.front-menu__sub-list {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
  padding-block: 1.25rem;
  padding-inline: 1.25rem 1.875rem;
  width: fit-content;
  border-radius: 0.4375rem;
  border: solid 0.0625rem #DADEEB;
  position: relative;
}
.front-menu__sub-list::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(1.875rem) brightness(1.15);
  backdrop-filter: blur(1.875rem) brightness(1.15);
  border-radius: 0.4375rem;
  z-index: -1;
}

.front-menu__sub-item {
  white-space: nowrap;
}

.front-menu__sub-link {
  font-weight: 500;
  padding-left: 1.25rem;
  position: relative;
  transition: 0.3s;
}
.front-menu__sub-link:hover {
  color: var(--pink);
}
.front-menu__sub-link:hover::before {
  background-color: var(--pink);
}
.front-menu__sub-link::before {
  content: "";
  display: inline-block;
  width: 0.625rem;
  height: 0.0625rem;
  background-color: var(--lightblue);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: 0.3s;
}

.c-header__contact {
  background-color: var(--pink);
  border-radius: 1.25rem;
  color: #fff;
  padding: 0.3125rem 0.9375rem;
  position: relative;
  z-index: 1000;
}
.c-header__contact.u-sp {
  width: fit-content;
  margin-top: 2.5rem;
}

.c-header__nav {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--lightgrey);
  width: 100%;
  transition: 0.3s;
  padding-block: 6.25rem 1.875rem;
  height: 100svh;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow-y: scroll;
}
@media screen and (min-width: 768px) {
  .c-header__nav {
    padding-block: 10.9375rem 3.125rem;
  }
}
.c-header__nav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.c-header__nav-home {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
}
.c-header__nav-home .link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 2.1875rem;
  background-color: #fff;
  border-radius: 1.875rem;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-header__nav-home .link {
    width: 5.625rem;
    height: 3.0625rem;
  }
}
.c-header__nav-home .link:hover {
  background-color: var(--black);
}
.c-header__nav-home .link:hover .icon {
  background-image: url("../images/icons/icon-home-wht.png");
}
.c-header__nav-home .icon {
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  background-image: url("../images/icons/icon-home-blk.png");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-header__nav-home .icon {
    width: 1.375rem;
    height: 1.375rem;
  }
}
.c-header__nav-home .c-header__nav-link {
  display: flex;
  align-items: flex-end;
  gap: 0.625rem;
}
.c-header__nav-home .c-header__nav-link .small {
  margin-bottom: 0.25rem;
}

.c-header__nav-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.875rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .c-header__nav-menu {
    flex-direction: unset;
    gap: 0;
    margin-top: 3.125rem;
  }
}

.c-header__nav-list {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .c-header__nav-list {
    gap: 2.8125rem;
  }
}

.c-header__nav-link {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-header__nav-link {
    font-size: 2.625rem;
  }
}
.c-header__nav-link .small {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: 0.625rem;
  color: var(--darkgrey);
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-header__nav-link .small {
    font-size: 0.875rem;
  }
}

a.c-header__nav-link:hover, a.c-header__nav-link:hover .small {
  color: var(--pink);
}

.c-header__nav-sub-list {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-top: 0.875rem;
}

.c-header__nav-sub-item {
  font-weight: 500;
}

.c-header__nav-sub-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 1.25rem;
  position: relative;
  transition: 0.3s;
}
.c-header__nav-sub-link:hover {
  color: var(--pink);
}
.c-header__nav-sub-link:hover::before {
  background-color: var(--pink);
}
.c-header__nav-sub-link:hover .c-arrow {
  opacity: 1;
}
.c-header__nav-sub-link::before {
  content: "";
  display: inline-block;
  width: 0.625rem;
  height: 0.25rem;
  background-color: var(--lightblue);
  border-radius: 0.125rem;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: 0.3s;
}
.c-header__nav-sub-link .c-arrow {
  position: relative;
  bottom: unset;
  right: unset;
  width: 1.5rem;
  height: 0.875rem;
  opacity: 0;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-header__nav-sub-link .c-arrow {
    width: 1.75rem;
    height: 1.0625rem;
  }
}
.c-header__nav-sub-link .c-arrow::after {
  width: 0.375rem;
  height: 0.375rem;
}
@media screen and (min-width: 768px) {
  .c-header__nav-sub-link .c-arrow::after {
    width: 0.5rem;
    height: 0.5rem;
  }
}

.c-header__hamburger {
  display: flex;
  align-items: center;
  gap: 0.4375rem;
  position: relative;
  z-index: 1000;
  cursor: pointer;
}
.c-header__hamburger.is-active .hamburger {
  display: block;
}
.c-header__hamburger.is-active .icon {
  display: none;
}
.c-header__hamburger.is-active .line {
  display: block;
  width: 1.0625rem;
  height: 0.0625rem;
  background-color: #fff;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-header__hamburger.is-active .line {
    width: 1.25rem;
  }
}
.c-header__hamburger.is-active .line.-first {
  transform: rotate(35deg) translate(1.25rem, 0.625rem);
}
@media screen and (min-width: 768px) {
  .c-header__hamburger.is-active .line.-first {
    transform: rotate(35deg) translate(1.3125rem, 0.625rem);
  }
}
.c-header__hamburger.is-active .line.-second {
  transform: rotate(-35deg) translate(-0.125rem, 1.3125rem);
}
@media screen and (min-width: 768px) {
  .c-header__hamburger.is-active .line.-second {
    transform: rotate(-35deg) translate(-0.125rem, 1.375rem);
  }
}
.c-header__hamburger.is-active .text::after {
  content: "CLOSE";
}
.c-header__hamburger .hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--black);
  width: 2.625rem;
  height: 2.625rem;
  border: solid 0.125rem #fff;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .c-header__hamburger .hamburger {
    width: 2.9375rem;
    height: 2.9375rem;
  }
}
.c-header__hamburger .icon {
  display: block;
  width: 1.0625rem;
  height: 0.125rem;
}
@media screen and (min-width: 768px) {
  .c-header__hamburger .icon {
    width: 1.1875rem;
    height: 0.1875rem;
  }
}
.c-header__hamburger .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-header__hamburger .text {
  position: relative;
}
.c-header__hamburger .text::after {
  content: "MENU";
  font-size: 0.875rem;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-header__hamburger .text::after {
    font-size: 1rem;
  }
}

.c-header__nav-bottom {
  margin-top: 2.8125rem;
}
.c-header__nav-bottom .title {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-header__nav-bottom .title {
    text-align: left;
  }
}

.c-header__nav-bottom-contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-header__nav-bottom-contents {
    flex-direction: unset;
    align-items: flex-end;
    gap: 0;
    margin-top: 0;
  }
}
.c-header__nav-bottom-contents .contact-button {
  margin-bottom: 0.75rem;
}

.banner-area {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  gap: 0.625rem;
  max-width: 39.75rem;
}
@media screen and (min-width: 768px) {
  .banner-area {
    justify-content: unset;
  }
}
.banner-area .link {
  max-width: 18.625rem;
  position: relative;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .banner-area .link {
    max-width: 19.5625rem;
  }
}
.banner-area .link:hover {
  transform: scale(0.95);
}

.menu__bottom.-header {
  flex-direction: column-reverse;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .menu__bottom.-header {
    flex-direction: unset;
    margin-top: 2.5rem;
  }
}

.c-header__nav__text-model {
  position: absolute;
  inset: 0;
}

.c-header__nav__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.c-image {
  margin: 0 auto;
  display: block;
  aspect-ratio: 4/3;
  width: 100%;
}
@media screen and (min-width: 640px) {
  .c-image {
    aspect-ratio: unset;
  }
}

.c-image--full {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}
@media screen and (min-width: 640px) {
  .c-image--full {
    aspect-ratio: unset;
  }
}

.c-image--text {
  display: inline-block;
  margin-top: 0.625rem;
}
@media screen and (min-width: 640px) {
  .c-image--text {
    margin-top: 1.25rem;
  }
}

.c-image-col {
  display: flex;
  flex-wrap: wrap;
}

.c-image-col__2-2 {
  width: 50%;
}
@media screen and (min-width: 768px) {
  .c-image-col__2-2 {
    width: calc(100% / 2);
  }
}

.c-image-col__2-3 {
  width: 50%;
}
@media screen and (min-width: 768px) {
  .c-image-col__2-3 {
    width: calc(100% / 3);
  }
}

.c-image-col__2-4 {
  width: 50%;
}
@media screen and (min-width: 768px) {
  .c-image-col__2-4 {
    width: calc(100% / 4);
  }
}

.c-image-col__2-5 {
  width: 50%;
}
@media screen and (min-width: 768px) {
  .c-image-col__2-5 {
    width: calc(100% / 5);
  }
}

.c-interview {
  display: flex;
  align-items: center;
}
.c-interview + .c-interview {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .c-interview + .c-interview {
    margin-top: 2rem;
  }
}
.c-interview .c-interview__text {
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .c-interview .c-interview__text {
    font-size: 0.9375rem;
  }
}

.c-interview__avatar {
  width: 14%;
}

.c-interview__img {
  border-radius: 50%;
}

.c-interview__balloon {
  width: 86%;
  position: relative;
  background: #fff;
  padding: 1rem;
  margin: 0 0 0 1.25rem;
  text-align: justify;
  border: 0.0625rem solid var(--main-c);
  color: #000;
  border-radius: 0.625rem;
}

.c-interview__balloon:after,
.c-interview__balloon:before {
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  right: 100%;
  top: 50%;
}

.c-interview__balloon:after {
  border-color: transparent #fff transparent transparent;
  border-top-width: 0.375rem;
  border-bottom-width: 0.375rem;
  border-left-width: 0.6875rem;
  border-right-width: 0.6875rem;
  margin-top: -0.375rem;
}

.c-interview__balloon:before {
  border-color: transparent var(--main-c) transparent transparent;
  border-top-width: 0.4375rem;
  border-bottom-width: 0.4375rem;
  border-left-width: 0.75rem;
  border-right-width: 0.75rem;
  margin: -0.4375rem 0.0625rem 0 0;
}

.c-interview--reverse {
  flex-direction: row-reverse;
}
.c-interview--reverse .c-interview__balloon {
  margin: 0 1.25rem 0 0;
}
.c-interview--reverse .c-interview__balloon:after,
.c-interview--reverse .c-interview__balloon:before {
  left: 100%;
}
.c-interview--reverse .c-interview__balloon:after {
  border-color: transparent transparent transparent #ffffff;
}
.c-interview--reverse .c-interview__balloon:before {
  border-color: transparent transparent transparent var(--main-c);
  border-top-width: 0.4375rem;
  border-bottom-width: 0.4375rem;
  border-left-width: 0.75rem;
  border-right-width: 0.75rem;
  margin: -0.4375rem 0 0 0.0625rem;
}

.c-interview-visual {
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-interview-visual {
    margin-top: 5rem;
  }
}

.c-interview-visual__inner {
  width: 95%;
  max-width: 75rem;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-interview-visual__inner {
    display: grid;
    grid-template-columns: 45% 55%;
  }
}

@media screen and (min-width: 768px) {
  .c-interview-visual__title-wrap {
    width: 110%;
    align-self: flex-end;
  }
}

.c-interview-visual__sub-title {
  font-size: 4.2666666667vw;
  font-family: "Noto Serif JP", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  position: relative;
  display: inline-block;
}
.c-interview-visual__sub-title::after {
  content: "";
  display: inline-block;
  width: 3.125rem;
  height: 0.0625rem;
  background-color: var(--black);
  position: absolute;
  top: calc(50% - 0.0625rem);
  left: 100%;
}
@media screen and (min-width: 768px) {
  .c-interview-visual__sub-title {
    font-size: 1.875vw;
  }
  .c-interview-visual__sub-title::after {
    width: 5.3125rem;
    left: calc(100% + 1.25rem);
  }
}
@media screen and (min-width: 1281px) {
  .c-interview-visual__sub-title {
    font-size: 2.25rem;
  }
}

.c-interview-visual__title {
  margin-top: 0.625rem;
  font-size: 6.4vw;
  font-family: "Noto Serif JP", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .c-interview-visual__title {
    font-size: 2.1875vw;
  }
}
@media screen and (min-width: 1281px) {
  .c-interview-visual__title {
    font-size: 2.625rem;
  }
}

.c-interview-visual__image-wrap {
  display: block;
  margin: 0.625rem -2.5% 0 0;
}
@media screen and (min-width: 768px) {
  .c-interview-visual__image-wrap {
    margin: 0;
    grid-column-start: 2;
    grid-row-start: 1;
    grid-row-end: 3;
  }
}

.c-interview-visual__image {
  width: 100%;
  filter: drop-shadow(0px 0.1875rem 0.1875rem rgba(0, 0, 0, 0.1));
}
@media screen and (min-width: 768px) {
  .c-interview-visual__image {
    margin-top: -5rem;
    margin-bottom: 5rem;
  }
}

.c-interview-visual__cont {
  padding: 1.25rem 0;
}
@media screen and (min-width: 768px) {
  .c-interview-visual__cont {
    width: 110%;
    padding: 0;
  }
}

.c-interview-visual__catch {
  font-size: 4.8vw;
  font-family: "Noto Serif JP", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
@media screen and (min-width: 768px) {
  .c-interview-visual__catch {
    font-size: 1.25vw;
  }
}
@media screen and (min-width: 1281px) {
  .c-interview-visual__catch {
    font-size: 1.5rem;
  }
}

.c-interview-visual__text {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-interview-visual__text {
    font-size: 0.8333333333vw;
  }
}
@media screen and (min-width: 1281px) {
  .c-interview-visual__text {
    font-size: 1rem;
  }
}

.c-interview-visual__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}

.c-interview-visual__bg__image-wrap {
  display: block;
  width: 100%;
  height: 60%;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .c-interview-visual__bg__image-wrap {
    height: 100%;
  }
}

.c-interview-visual__bg__image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  opacity: 0.2;
}

.c-lead {
  font-weight: bold;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-lead {
    font-size: 2rem;
  }
}

.c-link {
  padding-right: 5rem;
  font-size: 3.7333333333vw;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  position: relative;
}
.c-link::after {
  content: "";
  display: inline-block;
  width: 3.75rem;
  height: 0.0625rem;
  background-color: var(--black);
  position: absolute;
  top: calc(3.7333333333vw / 1.75 / 2 + 0.0625rem);
  right: 0;
}
@media screen and (min-width: 768px) {
  .c-link {
    font-size: 0.875rem;
  }
  .c-link::after {
    top: calc(0.875rem / 1.75 / 2 + 0.0625rem);
  }
}

.c-list-box + .c-list-box {
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-list-box {
    display: flex;
    flex-wrap: wrap;
  }
  .c-list-box + .c-list-box {
    margin-top: 0;
  }
  .c-list-box + .c-list-box .c-list-box__title {
    border-top: 0.0625rem solid #fff;
  }
  .c-list-box:not(:last-of-type) .c-list-box__cont {
    border-bottom: 0.0625rem solid #fff;
  }
}

.c-list-box__title,
.c-list-box__cont {
  padding: 0.3em 1em;
  background-color: var(--white);
}
@media screen and (min-width: 768px) {
  .c-list-box__title,
  .c-list-box__cont {
    padding: 1.25rem;
  }
}

.c-list-box__title {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--main-c);
  color: white;
}
@media screen and (min-width: 768px) {
  .c-list-box__title {
    width: 26%;
  }
}

.c-list-box__img {
  width: 3em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-list-box__text {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .c-list-box__text {
    font-size: 1rem;
  }
}

.c-list-box__cont {
  text-align: justify;
  display: flex;
  align-items: center;
  border: 0.0625rem solid var(--base-c);
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .c-list-box__cont {
    width: 74%;
    font-size: 1rem;
  }
}

.c-list-box__img + .c-list-box__text {
  margin-left: 0.625rem;
}

.c-list-define {
  overflow: hidden;
}
.c-list-define + .c-list-define {
  margin-top: 0.9375rem;
}

.c-list-define__title {
  min-width: 9.375rem;
  display: inline-block;
  padding: 0.5rem 1em;
  font-size: 3.7333333333vw;
  text-align: center;
  position: relative;
  z-index: 1;
  color: var(--white);
}
.c-list-define__title::before {
  content: "";
  display: block;
  width: 200%;
  height: 100%;
  background-color: var(--main-c);
  position: absolute;
  top: 0;
  left: -100%;
  transform: skewX(30deg);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .c-list-define__title {
    padding: 0.625rem 1.5em;
    font-size: 0.875rem;
  }
}

.c-list-define__cont {
  width: 100%;
  padding: 0.5em 1em;
  border-top: 0.0625rem solid var(--border-c);
}
@media screen and (min-width: 768px) {
  .c-list-define__cont {
    padding: 1em 2em;
  }
}

.c-list-image {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .c-list-image {
    flex-direction: row;
    gap: 0.9375rem;
  }
}

@media screen and (min-width: 768px) {
  .c-list-image__img-wrap {
    width: 25%;
  }
}

.c-list-image__img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .c-list-image__body {
    width: calc(75% + 0.9375rem);
  }
}

.c-list-image__button {
  margin-top: 0.9375rem;
}

@media screen and (min-width: 768px) {
  .c-list-image--reverse {
    flex-direction: row-reverse;
  }
}

@media screen and (min-width: 768px) {
  .c-list-image--col2 .c-list-image__img-wrap {
    width: 35%;
  }
}
@media screen and (min-width: 768px) {
  .c-list-image--col2 .c-list-image__body {
    width: 65%;
  }
}

.c-loop-text {
  display: flex;
  flex: 1;
  overflow: hidden;
}

.c-loop-text__track {
  display: flex;
  align-items: center;
  animation: loop-ticker 60s linear infinite;
}

.c-loop-text__text {
  display: flex;
  font-size: 5rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .c-loop-text__text {
    font-size: 14.75rem;
  }
}
.c-loop-text__text .text-normal,
.c-loop-text__text .text-stroke {
  margin-right: 2.25rem;
}
@media screen and (min-width: 768px) {
  .c-loop-text__text .text-normal,
  .c-loop-text__text .text-stroke {
    margin-right: 5.5rem;
  }
}
.c-loop-text__text .text-normal {
  color: #F5F7FB;
}
.c-loop-text__text .text-stroke {
  color: transparent;
  -webkit-text-stroke-width: 0.125rem;
  -webkit-text-stroke-color: #F5F7FB;
}
@media screen and (min-width: 768px) {
  .c-loop-text__text .text-stroke {
    -webkit-text-stroke-width: 0.25rem;
  }
}

@keyframes loop-ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.c-main-visual {
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-main-visual {
    min-height: 50vw;
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 5rem;
  }
}

.c-main-visual__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: var(--bg-c);
}

.c-main-visual__bg__img-wrap {
  display: block;
  padding-top: 80%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-main-visual__bg__img-wrap {
    padding-top: 0;
    height: 50%;
  }
}

.c-main-visual__bg__img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  opacity: 0.2;
}

.c-main-visual__img {
  width: 95%;
  position: absolute;
  top: 12%;
  left: 0;
}
@media screen and (min-width: 768px) {
  .c-main-visual__img {
    width: 90%;
    top: 12%;
    left: 50%;
    transform: translateX(-50%);
  }
}

.c-main-visual__sub-title {
  font-size: 2.6666666667vw;
  font-weight: bold;
  text-align: center;
  margin-top: 2.5%;
}
@media screen and (min-width: 768px) {
  .c-main-visual__sub-title {
    width: 100%;
    font-size: 0.8125rem;
  }
}

.c-main-visual__cont {
  width: 100%;
  padding: 1.875rem 0;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .c-main-visual__cont {
    padding: 0;
  }
}

.c-main-visual__title-wrap {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-main-visual__title-wrap {
    width: auto;
    margin: 10% 0 0 10%;
  }
}

.c-main-visual__title {
  padding: 0 0.625rem;
  writing-mode: vertical-rl;
}
@media screen and (min-width: 768px) {
  .c-main-visual__title {
    padding: 0;
  }
}

.c-main-visual__title__text {
  padding: 0.3125rem;
  font-size: 6.9333333333vw;
  font-family: "Noto Serif JP", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 400;
  color: var(--white);
  background-color: var(--black);
}
@media screen and (min-width: 768px) {
  .c-main-visual__title__text {
    font-size: 3.125rem;
  }
}

.c-main-visual__catch-wrap {
  width: 95%;
  margin: 1.875rem 0 0 auto;
  padding: 1.875rem;
  background-color: var(--white);
  filter: drop-shadow(0px 0.1875rem 0.1875rem rgba(0, 0, 0, 0.1));
}
@media screen and (min-width: 768px) {
  .c-main-visual__catch-wrap {
    position: absolute;
    right: 0;
    bottom: 10%;
    width: 60%;
    padding: 3.125rem;
    margin: auto;
  }
}

@media screen and (min-width: 768px) {
  .c-main-visual__catch-inner {
    max-width: 37.5rem;
  }
}

.c-main-visual__lead {
  font-size: 4.8vw;
  font-family: "Noto Serif JP", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
@media screen and (min-width: 768px) {
  .c-main-visual__lead {
    font-size: 1.75rem;
  }
}

.c-mv {
  background-color: var(--lightgrey);
  padding-block: clamp(9.375rem, 6.386rem + 12.76vw, 12.5rem) clamp(7.5rem, 4.511rem + 12.76vw, 10.625rem);
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-mv {
    padding-block: clamp(15.625rem, 9.272rem + 6.6vw, 17.188rem) 10.6875rem;
  }
}
.c-mv::before {
  content: "";
  display: inline-block;
  background-image: radial-gradient(rgb(253, 253, 253) 20%, rgb(246, 247, 249) 35%, rgb(240, 241, 244) 50%, rgb(237, 239, 243));
  transform: rotate(145deg);
  width: 100%;
  height: 100%;
  position: absolute;
  top: -20vw;
  right: -24vw;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .c-mv::before {
    top: 8vw;
    right: -26vw;
  }
}
.c-mv::after {
  content: "";
  display: inline-block;
  aspect-ratio: 1/1;
  width: 91%;
  max-width: 28.125rem;
  height: auto;
  background-color: #E7E9EF;
  border-radius: 50%;
  position: absolute;
  bottom: -1.625rem;
  right: -5.625rem;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .c-mv::after {
    width: 35%;
    max-width: 41.25rem;
    bottom: calc(clamp(0rem, -25.412rem + 26.39vw, 6.25rem) * -1);
    right: clamp(0rem, -45.742rem + 47.49vw, 11.25rem);
  }
}

.c-mv__contents {
  position: relative;
  z-index: 5;
}
.c-mv__contents .c-breadcrumb {
  margin-top: 2.125rem;
}
@media screen and (min-width: 768px) {
  .c-mv__contents .c-breadcrumb {
    margin-top: 4.0625rem;
  }
}

.c-mv__title .c-title__main,
.c-mv__title .c-title__sub {
  animation: fadeIn 1s ease-in-out forwards;
  opacity: 0;
  transform: translateY(-100%);
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.c-mv__title .c-title__sub {
  animation-delay: 0.5s;
}
.c-mv__title .c-title__main {
  animation-delay: 0.8s;
}
@media screen and (min-width: 768px) {
  .c-mv__title .c-title__main {
    font-size: 5.625rem;
  }
}

.c-mv__frame {
  display: block;
  width: 100%;
  height: auto;
  position: absolute;
  bottom: -0.125rem;
  left: 0;
  z-index: 1;
}

.c-mv__text-model,
.c-mv__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.c-mv__text-model {
  height: 46.875rem;
}
@media screen and (min-width: 768px) {
  .c-mv__text-model {
    height: 57.5rem;
  }
}

.c-mv-business {
  padding-block: 9.375rem;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-mv-business {
    padding-block: clamp(17.5rem, 4.794rem + 13.19vw, 20.625rem) 15.9375rem;
  }
}
.c-mv-business .c-title__sub {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .c-mv-business .c-title__sub {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .c-mv-business .c-title__main {
    margin-top: 0.625rem;
  }
}
.c-mv-business .c-breadcrumb {
  margin-top: 1.25rem;
}
.c-mv-business .c-breadcrumb_link {
  color: var(--lightblue);
}
.c-mv-business .c-breadcrumb_item + .c-breadcrumb_item:before {
  background-color: var(--lightblue);
}
.c-mv-business .c-loop-text {
  opacity: 0.15;
  filter: brightness(2);
  position: absolute;
  bottom: 2.8125rem;
  left: 0;
}
@media screen and (min-width: 768px) {
  .c-mv-business .c-loop-text {
    bottom: 8.4375rem;
  }
}

.c-mv-business__head {
  color: #fff;
}

.c-mv-business__catch {
  width: fit-content;
  min-width: 21.0625rem;
  color: #fff;
  margin-top: 8.375rem;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .c-mv-business__catch {
    margin-top: -1.25rem;
  }
}
.c-mv-business__catch .main-catch {
  font-size: 1.5rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .c-mv-business__catch .main-catch {
    font-size: 2.625rem;
  }
}
.c-mv-business__catch .text {
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-mv-business__catch .text {
    font-size: 1.5rem;
  }
}

.c-mv-business__bg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .c-mv-business__bg {
    aspect-ratio: 1920/1300;
    height: unset;
  }
}
@media screen and (min-width: 1281px) {
  .c-mv-business__bg {
    aspect-ratio: unset;
    height: 100%;
  }
}
.c-mv-business__bg::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: var(--darkgrey);
  opacity: 0.75;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
}
.c-mv-business__bg .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-media {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-media {
    flex-direction: row;
    gap: 1.875rem;
  }
}
.c-media .c-button {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .c-media .c-button {
    font-size: 1rem;
  }
}

.c-media--reverse .c-media__wrap--bg::before {
  left: auto;
  right: 0;
}
@media screen and (min-width: 768px) {
  .c-media--reverse {
    flex-direction: row-reverse;
  }
  .c-media--reverse .c-media__wrap--bg::before {
    left: 15vw;
    right: auto;
  }
  .c-media--reverse .c-media__cont--float {
    margin: 1.875rem -3.75rem 0 0;
  }
}

.c-media__wrap {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-media__wrap {
    width: 50%;
  }
}

.c-media__video-wrap {
  padding-top: 56.25%;
  position: relative;
}

.c-media--bg .c-media__cont {
  padding: 3.125rem 0 0 0;
}
@media screen and (min-width: 768px) {
  .c-media--bg .c-media__cont {
    padding: 4.375rem 0;
  }
}

.c-media__wrap--slide .c-image--full {
  height: 72vw;
}
@media screen and (min-width: 768px) {
  .c-media__wrap--slide .c-image--full {
    height: 25.75rem;
  }
}

.c-media__wrap--bg {
  position: relative;
  padding: 0;
}
.c-media__wrap--bg::before {
  content: "";
  display: inline-block;
  height: 100%;
  position: absolute;
  background-color: var(--bg-c);
  top: 0;
  left: 0;
  width: 60%;
}
@media screen and (min-width: 768px) {
  .c-media__wrap--bg::before {
    left: auto;
    right: 15vw;
    width: 35vw;
  }
}

.c-media__inner {
  position: relative;
  z-index: 3;
  max-width: 100%;
  padding: 3.125rem 0 0 0;
}
@media screen and (min-width: 768px) {
  .c-media__inner {
    padding: 4.375rem 0;
  }
}

.c-media__video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  left: 0%;
}

.c-media__cont {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-media__cont {
    width: 50%;
  }
}

.c-media__cont--float {
  width: 95%;
  margin: -1.875rem auto 0;
  padding: 1.25rem 0.9375rem;
  background-color: var(--white);
  position: relative;
  z-index: 2;
  filter: drop-shadow(0px 0.1875rem 0.1875rem rgba(0, 0, 0, 0.1));
}
@media screen and (min-width: 768px) {
  .c-media__cont--float {
    width: calc(50% + 1.875rem);
    margin: 1.875rem 0 0 -3.75rem;
    padding: 1.875rem;
  }
}

.c-media__list-title {
  padding-left: 1.5em;
  font-size: 1rem;
  font-weight: 600;
  position: relative;
}
.c-media__list-title::before {
  content: "✓";
  width: 1.2em;
  height: 1.2em;
  display: block;
  line-height: 1.2em;
  text-align: center;
  color: var(--white);
  border-radius: 50%;
  background-color: var(--main-c);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.c-media__list-text {
  font-size: 1rem;
}

.c-media__button-area {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-media__button-area {
    text-align: left;
  }
}

.c-media__title {
  color: var(--main-c);
}
@media screen and (min-width: 768px) {
  .c-media__title {
    font-size: 2rem;
  }
}
.c-media__title + .c-media__sub-title {
  margin-top: 0.4375rem;
}
.c-media__title + .c-media__text {
  margin-top: 0.75rem;
}
.c-media__title + .c-media__list {
  margin-top: 0.3125rem;
}
.c-media__title + .c-media__button-area {
  margin-top: 0.3125rem;
}

.c-media__sub-title + .c-media__text {
  margin-top: 0.75rem;
}
.c-media__sub-title + .c-media__list {
  margin-top: 0.625rem;
}
.c-media__sub-title + .c-media__button-area {
  margin-top: 0.625rem;
}

.c-media__text {
  line-height: 2;
}
.c-media__text + .c-media__list {
  margin-top: 0.625rem;
}
.c-media__text + .c-media__button-area {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-media__text + .c-media__list {
    margin-top: 1.25rem;
  }
  .c-media__text + .c-media__button-area {
    margin-top: 1.25rem;
  }
}

.c-text.c-media__text {
  font-size: 1rem;
}

.c-media__list {
  line-height: 2;
}
.c-media__list + .c-media__list {
  margin-top: 0.625rem;
}
.c-media__list + .c-media__button-area {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-media__list + .c-media__button-area {
    margin-top: 1.25rem;
  }
}

.c-media__button + .c-media__button {
  margin-left: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .c-media__button + .c-media__button {
    margin-left: 0.625rem;
  }
}

.c-media-full {
  width: 100%;
  text-align: center;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-media-full {
    min-height: 25vw;
    text-align: left;
    position: relative;
    display: flex;
    align-items: center;
  }
}

.c-media-full__image {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-media-full__image {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media screen and (min-width: 768px) {
  .c-media-full__cover {
    width: 50%;
    height: 100%;
    background-color: var(--white);
    position: absolute;
    top: 0;
  }
  .c-media-full__cover.-left {
    left: 0;
  }
  .c-media-full__cover.-right {
    right: 0;
  }
}

.c-media-full__wrap {
  width: 95%;
  margin: 0 auto;
  padding: 1.875rem 0.625rem;
  background-color: var(--white);
}
@media screen and (min-width: 768px) {
  .c-media-full__wrap {
    width: 50%;
    height: 100%;
    padding: 1.875rem 0.9375rem;
    margin: 0 auto 0 0;
    background-color: transparent;
    position: relative;
    z-index: 1;
  }
  .c-media-full__wrap.-left {
    margin: 0 auto 0 0;
  }
  .c-media-full__wrap.-right {
    margin: 0 0 0 auto;
  }
}

@media screen and (min-width: 768px) {
  .c-media-full__inner {
    max-width: calc(75rem / 2);
    width: 95%;
    margin-left: auto;
  }
}

.c-media-full__title {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .c-media-full__title {
    font-size: 2.2rem;
  }
}

.c-media-full__text {
  font-size: 0.875rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .c-media-full__text {
    font-size: 1rem;
  }
}

.c-media-full__button {
  margin-top: 0.9375rem;
}

.c-media-full__title + .c-media-full__text {
  margin-top: 0.625rem;
}

.c-media-full.-alfa {
  margin-bottom: 3%;
  position: relative;
  min-height: 30vw;
  text-align: left;
  overflow: unset;
}
@media screen and (min-width: 768px) {
  .c-media-full.-alfa {
    min-height: 25vw;
  }
}
.c-media-full.-alfa .c-media-full__cover {
  content: "";
  display: block;
  background-color: var(--main-c);
  width: 75%;
  height: 40vw;
  z-index: 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-media-full.-alfa .c-media-full__cover {
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    left: 0;
  }
}
.c-media-full.-alfa .c-media-full__image {
  width: 75%;
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(5%, 10%);
  box-shadow: 0.625rem 0.625rem 0.625rem 0px rgba(0, 0, 0, 0.14);
}
@media screen and (min-width: 768px) {
  .c-media-full.-alfa .c-media-full__image {
    width: 50%;
  }
}
.c-media-full.-alfa .c-media-full__wrap {
  margin: 0 0 0 auto;
  background-color: transparent;
  position: relative;
  z-index: 1;
}
.c-media-full.-alfa .c-media-full__inner {
  margin: 0 auto 0 15%;
}

.c-modal {
  overflow-y: scroll;
  padding-block: 3.125rem;
  background-color: rgba(255, 255, 255, 0.9);
  width: 100%;
  height: 100svh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s;
}
.c-modal.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.c-modal__content {
  margin: auto;
  position: relative;
}
.c-modal__content.-embed .c-modal__slider-wrapper {
  height: fit-content;
}
.c-modal__content.-embed .c-modal__slider-navigation {
  margin-inline: auto;
}
.c-modal__content.-embed .tiktok-embed {
  width: auto;
}
.c-modal__content.-embed iframe {
  margin-inline: auto;
  border-radius: 0.625rem;
}

.c-modal__slider {
  width: clamp(18.75rem, 2.009rem + 71.43vw, 36.25rem);
}
@media screen and (min-width: 768px) {
  .c-modal__slider {
    width: 68.4375rem;
  }
}

.c-modal__slider-item {
  overflow: hidden;
}

.c-modal__slider-item-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-modal__slider-item-inner {
    flex-direction: unset;
    gap: 5.625rem;
  }
}

.c-modal__slider-item-image {
  aspect-ratio: 478/653;
  width: 100%;
  max-width: 36.25rem;
  height: auto;
  border-radius: 0.625rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-modal__slider-item-image {
    width: 44%;
    max-width: 29.875rem;
    border-radius: 1.25rem;
  }
}
.c-modal__slider-item-image .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-modal__slider-item-text {
  width: 100%;
  flex: 1;
}
.c-modal__slider-item-text .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .c-modal__slider-item-text .head {
    padding-top: 4.375rem;
  }
}
.c-modal__slider-item-text .name {
  font-family: "Wix Madefor Display", "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
}
.c-modal__slider-item-text .text-bg {
  font-size: 5rem;
  font-weight: 600;
  line-height: 1;
  color: var(--lightgrey);
  white-space: nowrap;
  position: absolute;
  top: 0;
  left: 1.875rem;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .c-modal__slider-item-text .text-bg {
    font-size: 8rem;
  }
}
.c-modal__slider-item-text .link {
  transition: 0.3s;
}
.c-modal__slider-item-text .link:hover {
  opacity: 0.6;
}
.c-modal__slider-item-text .icon {
  width: 1.625rem;
  height: 1.625rem;
}
@media screen and (min-width: 768px) {
  .c-modal__slider-item-text .icon {
    width: 2.3125rem;
    height: 2.3125rem;
  }
}
.c-modal__slider-item-text .text {
  height: auto;
  margin-top: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .c-modal__slider-item-text .text {
    height: 25rem;
    overflow-y: scroll;
    margin-top: 2.25rem;
    font-size: 1.125rem;
  }
}
.c-modal__slider-item-text .text::-webkit-scrollbar {
  width: 0.3125rem;
}
.c-modal__slider-item-text .text::-webkit-scrollbar-thumb {
  background: var(--lightgrey);
  border-radius: 0.1875rem;
}

.c-modal__slider-navigation {
  display: flex;
  justify-content: flex-end;
  gap: 0.5625rem;
  width: 44%;
  max-width: 29.875rem;
  margin-top: 0.625rem;
  margin-left: auto;
}

.c-modal-prev,
.c-modal-next {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--lightgrey);
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: url("../images/common/a-cursor.png") 20 18, auto;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-modal-prev,
  .c-modal-next {
    width: 5rem;
    height: 5rem;
  }
}
.c-modal-prev:hover,
.c-modal-next:hover {
  background-color: var(--black);
}
.c-modal-prev:hover::after,
.c-modal-next:hover::after {
  border-bottom: solid 0.125rem #fff;
  border-left: solid 0.125rem #fff;
}
@media screen and (min-width: 768px) {
  .c-modal-prev:hover::after,
  .c-modal-next:hover::after {
    border-bottom: solid 0.1875rem #fff;
    border-left: solid 0.1875rem #fff;
  }
}
.c-modal-prev::after,
.c-modal-next::after {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-bottom: solid 0.125rem var(--black);
  border-left: solid 0.125rem var(--black);
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-modal-prev::after,
  .c-modal-next::after {
    width: 0.75rem;
    height: 0.75rem;
    border-bottom: solid 0.1875rem var(--black);
    border-left: solid 0.1875rem var(--black);
  }
}

.c-modal-prev::after {
  transform: translateX(0.125rem) rotate(45deg);
}
@media screen and (min-width: 768px) {
  .c-modal-prev::after {
    transform: translateX(0.1875rem) rotate(45deg);
  }
}

.c-modal-next::after {
  transform: translateX(-0.125rem) rotate(-135deg);
}
@media screen and (min-width: 768px) {
  .c-modal-next::after {
    transform: translateX(-0.1875rem) rotate(-135deg);
  }
}

.c-modal__close-btn {
  display: flex;
  align-items: center;
  gap: 0.5625rem;
  font-weight: 600;
  margin-top: 1.25rem;
  margin-inline: auto;
  cursor: url("../images/common/a-cursor.png") 20 18, auto;
  transition: 0.3s;
  color: var(--black);
}
@media screen and (min-width: 768px) {
  .c-modal__close-btn {
    margin-top: 0.4375rem;
  }
}
.c-modal__close-btn:hover {
  opacity: 0.6;
}
.c-modal__close-btn .cross {
  display: block;
  width: 1.875rem;
  height: 1.875rem;
  background-color: var(--black);
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .c-modal__close-btn .cross {
    width: 2.8125rem;
    height: 2.8125rem;
  }
}
.c-modal__close-btn .cross::before, .c-modal__close-btn .cross::after {
  content: "";
  display: inline-block;
  width: 0.875rem;
  height: 0.0625rem;
  border-radius: 0.0625rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .c-modal__close-btn .cross::before, .c-modal__close-btn .cross::after {
    width: 1.25rem;
  }
}
.c-modal__close-btn .cross::before {
  transform: translate(0.4375rem, 0.125rem) rotate(30deg);
}
@media screen and (min-width: 768px) {
  .c-modal__close-btn .cross::before {
    transform: translate(0.6875rem, 0.4375rem) rotate(30deg);
  }
}
.c-modal__close-btn .cross::after {
  transform: translate(-0.4375rem, 0.125rem) rotate(-30deg);
}
@media screen and (min-width: 768px) {
  .c-modal__close-btn .cross::after {
    transform: translate(-0.5625rem, 0.4375rem) rotate(-30deg);
  }
}

.c-overview {
  margin-top: -2.1875rem;
}
@media screen and (min-width: 768px) {
  .c-overview {
    background-color: #fff;
    clip-path: ellipse(90% 100% at 50% 100%);
    min-height: 44.8125rem;
    margin-top: -8.75rem;
  }
}
.c-overview .c-title {
  background-color: #fff;
  padding-block: clamp(3.75rem, 2.554rem + 5.1vw, 5rem) clamp(1.25rem, 0.652rem + 2.55vw, 1.875rem);
  position: relative;
  overflow: hidden;
  clip-path: ellipse(110% 100% at 50% 100%);
}
@media screen and (min-width: 768px) {
  .c-overview .c-title {
    background-color: unset;
    padding-block: 13.75rem 24.6875rem;
    clip-path: unset;
  }
}
.c-overview .c-title::after {
  content: "";
  display: inline-block;
  aspect-ratio: 1/1;
  width: 50%;
  height: auto;
  background-color: var(--lightgrey);
  border-radius: 50%;
  position: absolute;
  top: calc(clamp(2.5rem, -7.186rem + 42.33vw, 12.625rem) * -1);
  left: calc(clamp(2.5rem, -1.087rem + 15.31vw, 6.25rem) * -1);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .c-overview .c-title::after {
    width: clamp(46.875rem, -10.303rem + 59.37vw, 60.938rem);
    top: calc(clamp(6.875rem, -31.243rem + 39.58vw, 16.25rem) * -1);
    left: -10.9375rem;
  }
}
@media screen and (min-width: 768px) {
  .c-overview .c-title__wrap {
    margin-left: 6.25rem;
  }
}

.c-overview__body {
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .c-overview__body {
    background-color: unset;
    margin-top: -25rem;
  }
}

.c-overview__body-wrap {
  max-width: 49.6875rem;
  margin-left: auto;
}
.c-overview__body-wrap .lead {
  font-size: 1.5rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .c-overview__body-wrap .lead {
    font-size: 2.625rem;
  }
}
@media screen and (max-width: 767px) {
  .c-overview__body-wrap .lead br {
    display: none;
  }
}
.c-overview__body-wrap .text {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .c-overview__body-wrap .text {
    font-size: 1.125rem;
    margin-top: 3.125rem;
  }
}

.c-point {
  display: flex;
}

.c-point__num {
  width: 15%;
  padding: 0.625rem;
  font-size: 6.4vw;
  border-right: 0.125rem solid var(--main-c);
}
@media screen and (min-width: 768px) {
  .c-point__num {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3.5rem;
  }
}

.c-point__cont {
  width: 85%;
  padding: 0.625rem 0 0.625rem 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-point__cont {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: baseline;
  }
}

.c-point + .c-point {
  margin-top: 0.9375rem;
}

.c-point__button {
  margin-top: 0.9375rem;
}

.c-post-content {
  text-decoration: none;
  overflow: hidden;
  transition: 0.3s;
  background-color: var(--white);
  display: block;
}
.c-post-content:hover .c-post-content__image img {
  transform: scale(1.08);
}
.c-post-content .c-post-content__image {
  border-radius: 0.3125rem;
  aspect-ratio: 450/280;
  overflow: hidden;
  transition: 0.3s;
}
.c-post-content .c-post-content__image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.c-post-content .c-post-content__body {
  padding-block: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .c-post-content .c-post-content__body {
    padding-block: 1.5rem;
    padding-inline: 0.25rem;
  }
}
.c-post-content .c-post-content__body .upper {
  align-items: center;
  justify-content: space-between;
}
.c-post-content .c-post-content__body .time {
  font-size: 0.75rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .c-post-content .c-post-content__body .time {
    font-size: 1rem;
  }
}
.c-post-content .c-post-content__body .title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-post-content .c-post-content__body .title {
    font-size: 1rem;
  }
}
.c-post-content .c-post-content__body .c-badge:not(:first-child) {
  margin-left: 0.375rem;
}
@media screen and (min-width: 768px) {
  .c-post-content .c-post-content__body .c-badge:not(:first-child) {
    margin-left: 0.625rem;
  }
}

.c-profile__tab-group {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .c-profile__tab-group {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-gap: 0.625rem;
  }
}

.c-profile__tab {
  width: 100%;
  padding: 0 0.3125rem 1.25rem;
  text-align: center;
  position: relative;
}
.c-profile__tab::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 0.1875rem;
  background-color: var(--main-c);
  position: absolute;
  bottom: 0;
  left: 0;
}
.c-profile__tab::after {
  content: "";
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  border-top: 0.1875rem solid var(--main-c);
  border-right: 0.1875rem solid var(--main-c);
  background-color: var(--white);
  position: absolute;
  bottom: -0.25rem;
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
}
.c-profile__tab::after, .c-profile__tab::before {
  opacity: 0;
}
.c-profile__tab.is-active::after, .c-profile__tab.is-active::before {
  opacity: 1;
}

.c-profile__icon-wrap {
  margin-bottom: 0.625rem;
  padding-top: 100%;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}

.c-profile__icon {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}

.c-profile__name {
  font-size: 0.625rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .c-profile__name {
    font-size: 0.75rem;
  }
}

.c-profile__job {
  font-size: 0.75rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .c-profile__job {
    font-size: 0.875rem;
  }
}

.c-profile__panel-group {
  width: 100%;
  margin: 0.9375rem 0;
}

.c-profile__panel {
  display: none;
  width: 100%;
  font-size: 0.875rem;
  opacity: 0;
}
.c-profile__panel.is-show {
  display: block;
  animation: fadein 0.3s forwards;
}
@media screen and (min-width: 768px) {
  .c-profile__panel {
    font-size: 1rem;
    text-align: center;
  }
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.c-qa {
  padding: 1em 0.5em;
  border-top: 0.0625rem solid var(--border-c);
  background-color: var(--white);
}
@media screen and (min-width: 768px) {
  .c-qa {
    padding: 1.25rem;
  }
}

.c-qa a {
  color: #008fe3;
}

.l-inner .c-qa:last-of-type {
  border-bottom: 0.0625rem solid var(--border-c);
}

.c-qa__title {
  width: 100%;
  padding: 0 calc(1.5em + 0.3125rem) 0 calc(1.5em + 0.625rem);
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .c-qa__title {
    padding: 0 calc(1.5em + 0.625rem) 0 calc(1.5em + 0.625rem);
  }
}

.c-qa__cont {
  position: relative;
}

.c-qa__cont p {
  margin-top: 0.625rem;
  padding: 0 calc(1.5em + 0.3125rem) 0 calc(1.5em + 0.625rem);
}
@media screen and (min-width: 768px) {
  .c-qa__cont p {
    padding: 0 0 0 calc((1.5em + 0.625rem) * 2);
  }
}

.c-qa__icon {
  width: 1.5em;
  height: 1.5em;
  margin-right: 0.3125rem;
  display: inline-block;
  border: 0.125rem solid;
  border-radius: 50%;
  background-color: var(--white);
  box-sizing: content-box;
  position: absolute;
  top: 0;
  left: 0;
}
.c-qa__icon::before {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.c-qa__icon--q {
  color: var(--main-c);
  border-color: var(--main-c);
}
.c-qa__icon--q::before {
  content: "Ｑ";
}

.c-qa__icon--a {
  color: var(--blue);
  border-color: var(--blue);
}
.c-qa__icon--a::before {
  content: "Ａ";
}
@media screen and (min-width: 768px) {
  .c-qa__icon--a {
    left: calc(1.5em + 0.625rem);
  }
}

.c-qa__tgl {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  box-sizing: content-box;
  position: absolute;
  top: 0;
  right: 0;
  transition: 0.3s;
}
.c-qa__tgl::before, .c-qa__tgl::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 0.125rem;
  background-color: var(--main-c);
  position: absolute;
  top: 50%;
  left: 50%;
}
.c-qa__tgl::before {
  transform: translate(-50%, -50%);
}
.c-qa__tgl::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* オープン時にアニメーションを設定 */
.c-qa[open] .c-qa__tgl {
  transform: rotate(45deg);
}
.c-qa[open] .c-qa__cont {
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  0% {
    opacity: 0; /* 透明 */
    transform: translateY(-0.3125rem); /* 上から表示 */
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.c-related {
  background-color: #fff;
}
.c-related .c-title {
  text-align: center;
}
.c-related .c-related__container {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .c-related .c-related__container {
    margin-top: 2.25rem;
  }
}

.c-related__container {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .c-related__container {
    flex-direction: unset;
  }
}

.c-related__image {
  width: 100%;
  aspect-ratio: 960/930;
}
@media screen and (min-width: 768px) {
  .c-related__image {
    width: 50%;
  }
}
.c-related__image .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-related__contents {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1.875rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-related__contents {
    width: 50%;
    padding: unset;
    padding-left: 9.375rem;
  }
}

.c-related__contents-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-related__contents-inner {
    gap: 2.0625rem;
    max-width: 34.375rem;
  }
}
.c-related__contents-inner .logo {
  width: auto;
  height: 1.875rem;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .c-related__contents-inner .logo {
    height: 4.375rem;
  }
}
.c-related__contents-inner .lead {
  font-size: 1rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .c-related__contents-inner .lead {
    font-size: 1.5rem;
  }
}
.c-related__contents-inner .c-button-anime {
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .c-related__contents-inner .c-button-anime {
    margin-inline: unset;
  }
}

.c-regional-revitalization {
  background-color: #fff;
}

.c-regional-revitalization__wrapper {
  border-radius: 2.5rem 2.5rem 0 0;
  overflow: hidden;
  padding-block: 3.75rem 3.125rem;
  background-color: var(--lightgrey);
}
@media screen and (min-width: 768px) {
  .c-regional-revitalization__wrapper {
    border-radius: 5rem 5rem 0 0;
    padding-block: 8.125rem 7.5rem;
  }
}

.c-regional-revitalization__title {
  font-size: 1.75rem;
  font-weight: bold;
  text-align: center;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .c-regional-revitalization__title {
    font-size: 2.625rem;
    margin-top: 4.8125rem;
  }
}

.c-regional-revitalization__description {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .c-regional-revitalization__description {
    flex-direction: unset;
    gap: 3.1875rem;
    margin-top: 3.125rem;
  }
}

.c-regional-revitalization__image {
  flex: 1;
}
.c-regional-revitalization__image .image {
  width: 100%;
}

.c-regional-revitalization__text {
  max-width: 40.9375rem;
}
@media screen and (min-width: 768px) {
  .c-regional-revitalization__text {
    margin-top: 4rem;
  }
}
.c-regional-revitalization__text .text {
  font-size: 0.875rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .c-regional-revitalization__text .text {
    font-size: 1.125rem;
  }
}
.c-regional-revitalization__text .c-button-anime {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .c-regional-revitalization__text .c-button-anime {
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) {
  .c-regional-revitalization__text .c-button-anime {
    margin-top: 3.125rem;
  }
}
.c-regional-revitalization__text .c-button {
  background-color: #fff;
}

.c-regional-revitalization__data {
  margin-top: 3.125rem;
}
.c-regional-revitalization__data .title {
  text-align: center;
}

.c-regional-revitalization__data-list {
  display: flex;
  flex-direction: column;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .c-regional-revitalization__data-list {
    flex-direction: unset;
    margin-top: 3.125rem;
  }
}

.c-regional-revitalization__data-item {
  flex: 1;
  padding: 1.25rem;
  text-align: center;
  border-bottom: solid 0.0625rem var(--darkgrey);
  font-size: 1rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .c-regional-revitalization__data-item {
    padding: 0.625rem 1.25rem;
    border-bottom: none;
    border-right: solid 0.0625rem var(--darkgrey);
    font-size: 1.5rem;
  }
}
.c-regional-revitalization__data-item:first-child {
  border-top: solid 0.0625rem var(--darkgrey);
}
@media screen and (min-width: 768px) {
  .c-regional-revitalization__data-item:first-child {
    border-top: none;
    border-left: solid 0.0625rem var(--darkgrey);
  }
}
.c-regional-revitalization__data-item .data {
  margin-top: 0.625rem;
}
.c-regional-revitalization__data-item .num {
  font-size: 2.625rem;
  font-weight: bold;
  line-height: 1;
  color: var(--navy);
  margin-inline: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .c-regional-revitalization__data-item .num {
    font-size: 4.5rem;
  }
}

/*スクロールダウン全体の場所*/
.c-scrolldown {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}
@media screen and (min-width: 768px) {
  .c-scrolldown {
    bottom: 5.625rem;
  }
}

.c-scrolldown__parts {
  position: relative;
  padding-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-scrolldown__parts {
    padding-top: 1.875rem;
  }
}
.c-scrolldown__parts::before {
  content: "";
  display: inline-block;
  width: 0.0625rem;
  height: 3.75rem;
  background-color: var(--black);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .c-scrolldown__parts::before {
    height: 6.25rem;
  }
}

/*Scrollテキストの描写*/
.c-scrolldown span {
  display: block;
  width: 5.625rem;
  height: 5.625rem;
  background-image: url("../images/common/scroll-text.png");
  background-size: cover;
  position: relative;
  animation: rotateAnime 12s linear infinite;
}
@media screen and (min-width: 768px) {
  .c-scrolldown span {
    width: 9.0625rem;
    height: 9.0625rem;
  }
}

@keyframes rotateAnime {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* 丸の描写 */
.c-scrolldown span::after {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--black);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .c-scrolldown span::after {
    width: 0.8125rem;
    height: 0.8125rem;
  }
}

.c-slider {
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-slider {
    max-width: 80%;
  }
}

.c-slider__container {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-slider__container {
    overflow: visible;
  }
}

.c-slider__slide {
  width: 90%;
  margin: 0 auto;
  transition: transform 0.6s;
}
@media screen and (min-width: 768px) {
  .c-slider__slide {
    transform: scale(0.7);
  }
}

.c-slider__caption {
  padding: 0.625rem 0.9375rem;
}

.swiper-slide-active .c-slider__slide {
  transform: scale(1);
}

.swiper-slide-prev .c-slider__slide,
.swiper-slide-next .c-slider__slide {
  opacity: 0.5;
}
.swiper-slide-prev .c-slider__caption,
.swiper-slide-next .c-slider__caption {
  opacity: 0;
}

@media screen and (min-width: 768px) {
  .swiper-slide-prev .c-slider__slide {
    transform: scale(0.7) translateX(25%);
  }
}

@media screen and (min-width: 768px) {
  .swiper-slide-next .c-slider__slide {
    transform: scale(0.7) translateX(-25%);
  }
}

.c-slider__title + .c-slider__text {
  margin-top: 0.3125rem;
}

.c-slider-loop {
  background-color: #fff;
  overflow: hidden;
}

.c-slider-loop__track {
  display: flex;
  width: max-content;
  animation: img-loop 40s linear infinite;
}

.c-slider-loop__item {
  width: auto;
  margin-right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-slider-loop__item {
    margin-right: 2.5rem;
  }
}

.c-slider-loop__item img {
  height: 8.75rem;
  object-fit: cover;
  border-radius: 0.625rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-slider-loop__item img {
    height: 23.375rem;
  }
}

.c-slider-loop__item:nth-child(even) img {
  width: 11.6875rem;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .c-slider-loop__item:nth-child(even) img {
    width: 31.125rem;
    margin-bottom: 5.25rem;
  }
}

.c-slider-loop__item:nth-child(odd) img {
  width: 7.0625rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .c-slider-loop__item:nth-child(odd) img {
    width: 18.875rem;
    margin-top: 5.25rem;
  }
}

@keyframes img-loop {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.c-slider-col {
  width: 100%;
}

.c-slider-col__container {
  position: relative;
}

.c-slider-col__slide {
  width: 95%;
  margin: 0 auto;
}

.c-slider-col__caption {
  padding: 0.625rem 0.9375rem;
}

.c-slider-col__img {
  height: 52vw;
}
@media screen and (min-width: 640px) {
  .c-slider-col__img {
    height: 12vw;
  }
}

.l-inner .c-slider-col__img {
  height: 42vw;
}
@media screen and (min-width: 640px) {
  .l-inner .c-slider-col__img {
    height: 10vw;
  }
}
@media screen and (min-width: 1024px) {
  .l-inner .c-slider-col__img {
    height: 8.5625rem;
  }
}

.c-slider-col__button {
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 0.1875rem;
  background-color: var(--base-c);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
}

.c-slider-col__button__arrow {
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.c-slider-col__button--prev {
  left: 0;
}
.c-slider-col__button--prev .c-slider-col__button__arrow {
  border-bottom: 0.0625rem solid var(--main-c);
  border-left: 0.0625rem solid var(--main-c);
  left: 50%;
}

.c-slider-col__button--next {
  right: 0;
}
.c-slider-col__button--next .c-slider-col__button__arrow {
  border-top: 0.0625rem solid var(--main-c);
  border-right: 0.0625rem solid var(--main-c);
  left: calc(50% - 0.375rem);
}

.c-slider-col__title {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .c-slider-col__title {
    font-size: 1.2rem;
  }
}

.c-slider-col__title + .c-slider-col__text {
  font-size: 0.875rem;
  margin-top: 0.3125rem;
}

.c-spacer1 {
  padding-top: 1vw;
}
@media screen and (min-width: 768px) {
  .c-spacer1 {
    padding-top: 1rem;
  }
}

.c-spacer2 {
  padding-top: 2vw;
}
@media screen and (min-width: 768px) {
  .c-spacer2 {
    padding-top: 2rem;
  }
}

.c-spacer3 {
  padding-top: 3vw;
}
@media screen and (min-width: 768px) {
  .c-spacer3 {
    padding-top: 3rem;
  }
}

.c-spacer4 {
  padding-top: 4vw;
}
@media screen and (min-width: 768px) {
  .c-spacer4 {
    padding-top: 4rem;
  }
}

.c-spacer5 {
  padding-top: 5vw;
}
@media screen and (min-width: 768px) {
  .c-spacer5 {
    padding-top: 5rem;
  }
}

.c-spacer6 {
  padding-top: 6vw;
}
@media screen and (min-width: 768px) {
  .c-spacer6 {
    padding-top: 6rem;
  }
}

.c-spacer7 {
  padding-top: 7vw;
}
@media screen and (min-width: 768px) {
  .c-spacer7 {
    padding-top: 7rem;
  }
}

.c-spacer8 {
  padding-top: 8vw;
}
@media screen and (min-width: 768px) {
  .c-spacer8 {
    padding-top: 8rem;
  }
}

.c-spacer9 {
  padding-top: 9vw;
}
@media screen and (min-width: 768px) {
  .c-spacer9 {
    padding-top: 9rem;
  }
}

.c-spacer10 {
  padding-top: 10vw;
}
@media screen and (min-width: 768px) {
  .c-spacer10 {
    padding-top: 10rem;
  }
}

.c-step {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .c-step {
    justify-content: center;
    margin-top: -1.875rem;
  }
}

.c-step__item {
  width: 100%;
  margin: 1.5625rem 0 1.875rem;
  padding: 1.25rem 1.875rem;
  background-color: var(--white);
  position: relative;
  filter: drop-shadow(0px 0.1875rem 0.1875rem rgba(0, 0, 0, 0.1));
}
.c-step__item:not(:last-of-type)::before {
  content: "";
  display: inline-block;
  border-top: 0.125rem solid var(--main-c);
  border-right: 0.125rem solid var(--main-c);
  transform: rotate(135deg) translate(-50%, -50%);
  position: absolute;
  bottom: -1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  left: calc(50% - 1.5rem);
}
@media screen and (min-width: 768px) {
  .c-step__item:not(:last-of-type)::before {
    width: 0.9375rem;
    height: 0.9375rem;
    left: calc(50% - 1.1875rem);
  }
}
@media screen and (min-width: 768px) {
  .c-step__item {
    width: calc(20% - 1.875rem);
    margin: 4.6875rem 1.875rem 0 0;
    padding: 3.125rem 1.25rem 1.25rem;
  }
  .c-step__item:not(:last-of-type)::before {
    transform: rotate(45deg) translate(-50%, 0);
    bottom: calc(50% - 0.625rem);
    left: calc(100% + 0.46875rem);
  }
}

.c-step__step {
  margin-top: -2.8125rem;
  font-size: 3.2vw;
  line-height: 1;
  text-align: center;
  color: var(--main-c);
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .c-step__step {
    margin-top: -5.3125rem;
    font-size: 1rem;
  }
}

.c-step__step__num {
  font-size: 8vw;
}
@media screen and (min-width: 768px) {
  .c-step__step__num {
    font-size: 2.625rem;
  }
}

.c-step__title {
  margin-top: 0.3125rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-step__title {
    margin-top: 0.625rem;
  }
}

.c-step__text {
  text-align: justify;
}

.c-tag {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  line-height: 1;
  font-size: 0.75rem;
  font-weight: bold;
  color: var(--main-c);
}
@media screen and (min-width: 768px) {
  .c-tag {
    gap: 0.4375rem;
  }
}

.c-tag-color {
  display: block;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .c-tag-color {
    width: 0.5625rem;
    height: 0.5625rem;
  }
}

.c-tab-area [data-tab-label] {
  display: inline-block;
  padding: 0.5rem 1.875rem;
}
.c-tab-area [data-tab-panel] {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  overflow: auto;
}
.c-tab-area [data-tab=tab1]:checked ~ nav ~ [data-tab-panel=tab1],
.c-tab-area [data-tab=tab2]:checked ~ nav ~ [data-tab-panel=tab2],
.c-tab-area [data-tab=tab3]:checked ~ nav ~ [data-tab-panel=tab3] {
  height: 12em;
}
.c-tab-area [data-tab=tab1]:checked ~ nav ~ [data-tab-panel=tab1] .link,
.c-tab-area [data-tab=tab2]:checked ~ nav ~ [data-tab-panel=tab2] .link,
.c-tab-area [data-tab=tab3]:checked ~ nav ~ [data-tab-panel=tab3] .link {
  animation: linkSlideIn 0.8s forwards;
}
.c-tab-area [data-tab=tab1]:checked ~ nav ~ [data-tab-panel=tab1] .link:nth-child(0),
.c-tab-area [data-tab=tab2]:checked ~ nav ~ [data-tab-panel=tab2] .link:nth-child(0),
.c-tab-area [data-tab=tab3]:checked ~ nav ~ [data-tab-panel=tab3] .link:nth-child(0) {
  animation-delay: calc(0 * 0.15s);
}
.c-tab-area [data-tab=tab1]:checked ~ nav ~ [data-tab-panel=tab1] .link:nth-child(1),
.c-tab-area [data-tab=tab2]:checked ~ nav ~ [data-tab-panel=tab2] .link:nth-child(1),
.c-tab-area [data-tab=tab3]:checked ~ nav ~ [data-tab-panel=tab3] .link:nth-child(1) {
  animation-delay: calc(1 * 0.15s);
}
.c-tab-area [data-tab=tab1]:checked ~ nav ~ [data-tab-panel=tab1] .link:nth-child(2),
.c-tab-area [data-tab=tab2]:checked ~ nav ~ [data-tab-panel=tab2] .link:nth-child(2),
.c-tab-area [data-tab=tab3]:checked ~ nav ~ [data-tab-panel=tab3] .link:nth-child(2) {
  animation-delay: calc(2 * 0.15s);
}
.c-tab-area [data-tab=tab1]:checked ~ nav ~ [data-tab-panel=tab1] .link:nth-child(3),
.c-tab-area [data-tab=tab2]:checked ~ nav ~ [data-tab-panel=tab2] .link:nth-child(3),
.c-tab-area [data-tab=tab3]:checked ~ nav ~ [data-tab-panel=tab3] .link:nth-child(3) {
  animation-delay: calc(3 * 0.15s);
}
.c-tab-area [data-tab=tab1]:checked ~ nav ~ [data-tab-panel=tab1] .link:nth-child(4),
.c-tab-area [data-tab=tab2]:checked ~ nav ~ [data-tab-panel=tab2] .link:nth-child(4),
.c-tab-area [data-tab=tab3]:checked ~ nav ~ [data-tab-panel=tab3] .link:nth-child(4) {
  animation-delay: calc(4 * 0.15s);
}
.c-tab-area .link {
  text-decoration: none;
  width: fit-content;
  transform: translateX(5rem);
  opacity: 0;
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.c-tab-area .link::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 0.125rem;
  background: #000;
  bottom: -0.25rem;
  transform: scale(0, 1);
  transition: transform 0.3s;
  transform-origin: left top;
}
.c-tab-area .link:hover::after {
  transform: scale(1, 1);
}
.c-tab-area .link .time {
  color: var(--darkgrey);
  font-size: 0.875rem;
}
.c-tab-area .link .title {
  margin-top: 0.3125rem;
  font-size: clamp(1rem, 0.8974rem + 0.5128vw, 1.25rem);
}

@keyframes linkSlideIn {
  0% {
    transform: translateX(5rem);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.c-table {
  overflow-x: auto;
}
.c-table.-scrollable:before, .c-table.-scrollable:after {
  display: block;
  position: absolute;
  text-align: center;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.6s;
  opacity: 1;
}
.c-table.-scrollable:before {
  content: "SWIPE";
  color: var(--white);
  line-height: 9rem;
  height: 6rem;
  width: 6rem;
  border-radius: 100%;
  background-color: var(--main-c);
  filter: opacity(0.8);
}
.c-table.-scrollable:after {
  content: "";
  height: 3rem;
  width: 3rem;
  background-image: url("../images/icons/index-finger.svg");
  background-repeat: no-repeat;
  background-position: top;
  background-size: 2rem;
  animation: fingerSwipe 2s linear infinite;
}
@keyframes fingerSwipe {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(0.9375rem);
  }
  80% {
    transform: translateX(-0.9375rem);
  }
  100% {
    transform: translateX(0);
  }
}
.c-table.-scrolled:before, .c-table.-scrolled:after {
  opacity: 0;
}

.c-table__container {
  border-collapse: collapse;
  width: 100%;
  min-width: 50rem;
  table-layout: fixed;
  background-color: var(--white);
}

.c-table__title-vl,
.c-table__title-hl,
.c-table__cont {
  padding: 0.5em 1em;
  border: 0.0625rem solid var(--border-c);
  vertical-align: middle;
}

.c-table__title-vl {
  background-color: var(--main-c);
  color: white;
}

.c-table__cont {
  background-color: var(--color);
}
@media screen and (min-width: 768px) {
  .c-table__cont {
    min-width: 16em;
  }
}

.c-table-col2 {
  border-collapse: collapse;
  width: 100%;
}

.c-table-col2__row {
  display: grid;
  grid-template-columns: 6.25rem minmax(0, 1fr);
  padding: 1.875rem 0;
  border-top: 0.0625rem solid var(--lightblue);
}
@media screen and (min-width: 768px) {
  .c-table-col2__row {
    grid-template-columns: 12.5rem minmax(0, 1fr);
  }
}
.c-table-col2__row:last-child {
  border-bottom: 0.0625rem solid var(--lightblue);
}

.c-table-col2__title,
.c-table-col2__cont {
  width: 100%;
}

.c-table-col2__title {
  font-size: 0.875rem;
  font-weight: 500;
  padding-right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-table-col2__title {
    width: auto;
    font-size: 1rem;
  }
}

.c-text {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .c-text {
    font-size: 1rem;
  }
}
.c-text.-sm {
  font-size: 1.8666666667vw;
}
@media screen and (min-width: 768px) {
  .c-text.-sm {
    font-size: 0.625rem;
  }
}
.c-text.-md {
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .c-text.-md {
    font-size: 1.125rem;
  }
}
.c-text.-lg {
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .c-text.-lg {
    font-size: 1.5625rem;
  }
}
.c-text.-big {
  font-size: 6.9333333333vw;
}
@media screen and (min-width: 768px) {
  .c-text.-big {
    font-size: 1.75rem;
  }
}

.c-text-box {
  padding: 0.9375rem 1.25rem;
  background-color: var(--white);
  border: 0.0625rem solid var(--border-c);
}
@media screen and (min-width: 768px) {
  .c-text-box {
    padding: 1.875rem;
  }
}

.c-text-box__title + .c-text-box__lead {
  margin-top: 0.625rem;
}
.c-text-box__title + .c-text-box__text {
  margin-top: 0.625rem;
}
.c-text-box__title + .c-text-box__button {
  margin-top: 0.9375rem;
}

.c-text-box__lead + .c-text-box__text {
  margin-top: 0.625rem;
}
.c-text-box__lead + .c-text-box__button {
  margin-top: 0.9375rem;
}

.c-text-box__text + .c-text-box__button {
  margin-top: 0.9375rem;
}

.c-particles {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.c-particles__grain {
  position: absolute;
  left: 0;
  top: 0;
  width: 0.375rem;
  height: 0.375rem;
  pointer-events: none;
  transform-origin: center center;
  will-change: transform, opacity, filter;
  opacity: 0;
  border-radius: 50%;
  background: currentColor;
}

@keyframes burst-move {
  0% {
    transform: translate(0, 0) scale(0);
    opacity: 1;
  }
  10% {
    transform: translate(calc(var(--dx) * 0.5), calc(var(--dy) * 0.5)) scale(1) rotate(var(--rot));
    opacity: 1;
  }
  60% {
    transform: translate(calc(var(--dx) * 1.1), calc(var(--dy) * 1.1)) scale(0.6) rotate(calc(var(--rot) + 300deg));
    opacity: 0.8;
  }
  100% {
    transform: translate(calc(var(--dx) * 1.3), calc(var(--dy) * 1.3)) scale(0.1) rotate(calc(var(--rot) + 300deg));
    opacity: 0.8;
  }
}
[data-particles-flow] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/**
 * カウントアップアニメーション用スタイル
 * 
 * 使用方法:
 * <span class="c-countup" data-countup="1000">0</span>
 */
.c-countup {
  display: inline-block;
  font-weight: bold;
  transition: all 0.3s ease;
}
.c-countup[data-countup-animated=false] {
  opacity: 0.7;
}
.c-countup[data-countup-animated=true] {
  opacity: 1;
}

.c-countup-slot {
  display: inline-block;
  font-family: monospace;
  font-weight: bold;
}
.c-countup-slot__digit {
  display: inline-block;
  overflow: hidden;
  height: 1em;
  line-height: 1em;
  vertical-align: top;
  position: relative;
}
.c-countup-slot__inner {
  transition: transform 0.1s ease-out;
  will-change: transform;
}
.c-countup-slot__number {
  display: block;
  height: 1em;
  line-height: 1em;
  text-align: center;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

.c-pulse {
  position: absolute;
  display: block;
  width: 1.875rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-image: linear-gradient(180deg, #ED7A49, #F5564F 43%, #F6534F 55%, #FE2C55);
}
.c-pulse.-navy {
  background-image: linear-gradient(180deg, #165092, #165092 43%, #165092 55%, #165092);
}
.c-pulse.-navy::before, .c-pulse.-navy::after {
  background-image: linear-gradient(180deg, #165092, #165092 43%, #165092 55%, #165092);
}
.c-pulse::before, .c-pulse::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1/1;
  background-image: linear-gradient(180deg, #ED7A49, #F5564F 43%, #F6534F 55%, #FE2C55);
  border-radius: 50%;
}
.c-pulse::before {
  animation: ripple-sp 1500ms linear infinite;
}
@media screen and (min-width: 768px) {
  .c-pulse::before {
    animation: ripple-pc 1500ms linear infinite;
  }
}
.c-pulse::after {
  animation: ripple-sp 1500ms linear 600ms infinite;
}
@media screen and (min-width: 768px) {
  .c-pulse::after {
    animation: ripple-pc 1500ms linear 600ms infinite;
  }
}
@keyframes ripple-sp {
  0% {
    scale: 1;
    opacity: 1;
  }
  100% {
    scale: 4;
    opacity: 0;
  }
}
@keyframes ripple-pc {
  0% {
    scale: 1;
    opacity: 1;
  }
  100% {
    scale: 6;
    opacity: 0;
  }
}

.c-visual-with-sign {
  position: relative;
}

.c-visual-with-sign__image {
  width: 95%;
  border-radius: 0 1.25rem 1.25rem 0;
  aspect-ratio: 332/170;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-visual-with-sign__image {
    aspect-ratio: 332/115;
    border-radius: 0 5rem 5rem 0;
    width: 87%;
  }
}
.c-visual-with-sign__image .image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.c-visual-with-sign__sign {
  mix-blend-mode: multiply;
  position: absolute;
  max-width: 35%;
  transform: translate(0, 39%);
  bottom: 0;
  right: 10%;
}
@media screen and (min-width: 768px) {
  .c-visual-with-sign__sign {
    right: 18%;
  }
}

.c-visual-with-sign__text {
  position: absolute;
  width: 9.375rem;
  bottom: -3rem;
  left: 5%;
  background-color: var(--white);
  text-align: center;
  padding: 1.25rem 0.625rem 0.125rem;
  border-radius: 1.25rem 1.25rem 0 0;
}
@media screen and (min-width: 768px) {
  .c-visual-with-sign__text {
    bottom: 0;
    left: 13.5%;
    padding: 2.5rem 1.25rem 0.3125rem;
    border-radius: 5rem 5rem 0 0;
    width: 26.0625rem;
  }
}

.c-visual-with-sign__text-sub {
  font-weight: 500;
  color: var(--navy);
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .c-visual-with-sign__text-sub {
    font-size: 1.125rem;
  }
}

.c-visual-with-sign__text-en {
  color: var(--darkgrey);
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .c-visual-with-sign__text-en {
    font-size: 1.125rem;
  }
}

.c-visual-with-sign__text-main {
  color: var(--navy);
  font-weight: 500;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-visual-with-sign__text-main {
    font-size: 2.25rem;
  }
}

.c-message__container {
  display: grid;
}
@media screen and (min-width: 768px) {
  .c-message__container {
    grid-template-columns: minmax(0, 1fr) 30%;
    gap: 1.875rem;
  }
}

.c-message__text-main {
  font-size: 1.125rem;
  line-height: 1.72;
}
@media screen and (min-width: 768px) {
  .c-message__text-main {
    font-size: 2rem;
  }
}

.c-message__text-sub {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.83;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .c-message__text-sub {
    font-size: 1.125rem;
    margin-top: 3.75rem;
  }
}

.c-message__image {
  aspect-ratio: 125/156;
  border-radius: 1.25rem;
  max-width: 31.25rem;
  margin-top: 2.5rem;
  overflow: hidden;
}
.c-message__image .image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.c-history {
  position: relative;
  padding: 2rem 0 4rem;
}
@media screen and (min-width: 768px) {
  .c-history {
    padding: 8rem 0 12rem;
  }
}

.c-history__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.c-history__bg:before {
  content: "";
  display: inline-block;
  aspect-ratio: 445/412;
  width: 13.375rem;
  height: auto;
  background-image: url("../images/common/deco-dot-gray.webp");
  background-size: cover;
  position: absolute;
  top: -1rem;
  right: -20%;
}
@media screen and (min-width: 768px) {
  .c-history__bg:before {
    width: 27.8125rem;
    top: 5%;
    right: 0;
  }
}

.c-history__container {
  position: relative;
  display: grid;
  grid-template-columns: 7.5rem minmax(0, 1fr);
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-history__container {
    grid-template-columns: 5.125rem 33.75rem minmax(0, 1fr);
    gap: 2.5rem;
  }
}

.c-history__year-nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-history__year-nav {
    position: sticky;
    top: 20%;
    height: fit-content;
    display: block;
  }
}

.c-history__year-nav-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.c-history__year-nav-list:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0.0625rem;
  height: 90%;
  background-color: var(--lightblue);
}

.c-history__year-nav-button {
  position: relative;
  background-color: var(--lightgrey);
  border-radius: 999px;
  padding: 0.3125rem 1.25rem;
  transition: 0.3s;
}
.c-history__year-nav-button.is-current {
  background-color: var(--black);
  color: var(--white);
}

.c-history__year-head {
  position: sticky;
  overflow: hidden;
  height: 12.375rem;
  top: 15%;
  padding: 20% 0;
}
@media screen and (min-width: 768px) {
  .c-history__year-head {
    height: 45.375rem;
    max-height: 90vh;
    top: 10%;
    padding: 18% 0;
    margin-top: -2rem;
  }
}
.c-history__year-head:before, .c-history__year-head:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.9375rem;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .c-history__year-head:before, .c-history__year-head:after {
    height: 8.5rem;
  }
}
.c-history__year-head:before {
  top: 0;
  background: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, white 40%, white 100%);
}
.c-history__year-head:after {
  bottom: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 40%, white 100%);
}

.c-history__year-head-list {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  height: 100%;
  overflow: auto;
  pointer-events: none;
}
.c-history__year-head-list::-webkit-scrollbar {
  display: none;
}

.c-history__year-head-item {
  font-weight: 600;
  color: var(--lightgrey);
  line-height: 1;
  transition: 0.3s;
  font-size: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .c-history__year-head-item {
    font-size: 12.75rem;
  }
}
.c-history__year-head-item.is-current {
  color: var(--black);
}
.c-history__year-head-item.is-current .company-name {
  opacity: 1;
}
.c-history__year-head-item .company-name {
  width: 95%;
  margin-inline: auto;
  background-color: var(--white);
  color: #003d66;
  border: 0.0625rem solid var(--lightblue);
  border-radius: 999px;
  text-align: center;
  font-weight: 500;
  font-size: 0.4375rem;
  padding-block: 0.375rem;
  opacity: 0.2;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-history__year-head-item .company-name {
    padding-block: 1rem;
    font-size: 1.5rem;
    border-width: 0.1875rem;
  }
}
.c-history__year-head-item .company-name + .company-name {
  margin-top: 0.7rem;
}

@media screen and (min-width: 768px) {
  .c-history__year-body {
    margin-top: 5rem;
    padding-left: 20%;
  }
}

.c-history__year-body-item .year {
  color: var(--lightblue);
  font-weight: 600;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .c-history__year-body-item .year {
    font-size: 2.4375rem;
  }
}
.c-history__year-body-item + .c-history__year-body-item {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .c-history__year-body-item + .c-history__year-body-item {
    margin-top: 2rem;
  }
}

.c-history__year-body-item-content-title {
  position: relative;
  font-weight: bold;
  line-height: 1.4;
  padding-left: 1.25em;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .c-history__year-body-item-content-title {
    font-size: 2rem;
  }
}
.c-history__year-body-item-content-title:before {
  content: "";
  position: absolute;
  left: 0;
  background-image: url("../images/icons/icon-history-title.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  top: 0.3em;
  width: 0.9375rem;
  height: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-history__year-body-item-content-title:before {
    top: 0.45em;
    width: 1.125rem;
    height: 1.125rem;
  }
}

.c-history__year-body-item-content + .c-history__year-body-item-content {
  margin-top: 1rem;
}

.c-history__year-body-item-content-wrapper {
  margin-top: 0.5rem;
  padding-left: 1.5em;
}
@media screen and (min-width: 768px) {
  .c-history__year-body-item-content-wrapper {
    padding-left: 2.5em;
  }
}

.c-history__year-body-item-content-text {
  font-weight: 500;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .c-history__year-body-item-content-text {
    font-size: 1.125rem;
  }
}

.c-history__year-body-item-content-image {
  margin-top: 1rem;
}

.c-recruit-banner {
  position: relative;
  padding-top: 4.375rem;
}
@media screen and (min-width: 768px) {
  .c-recruit-banner {
    padding-top: 6.25rem;
  }
}
.c-recruit-banner .c-title {
  padding: 0;
}
.c-recruit-banner .c-title__main {
  font-size: 3rem;
  line-height: 1;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .c-recruit-banner .c-title__main {
    font-size: 8.4375rem;
  }
}
.c-recruit-banner .c-loop-text {
  margin-top: -1.875rem;
}
.c-recruit-banner .c-loop-text__text {
  line-height: 0.8;
}
@media screen and (min-width: 768px) {
  .c-recruit-banner .c-loop-text__text {
    line-height: 0.78;
  }
}

.c-recruit-banner__link {
  position: relative;
  z-index: 1;
  display: block;
  background-image: url("../images/front/recruit-bg-sp.webp");
  background-size: cover;
  background-position: center;
  padding-block: 3.3125rem 3.75rem;
}
@media screen and (min-width: 768px) {
  .c-recruit-banner__link {
    background-image: url("../images/front/recruit-bg-pc.webp");
    padding-block: 14.6875rem;
  }
}

.c-recruit-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  padding-block: 0.9375rem 0.3125rem;
  max-width: 28.125rem;
}
@media screen and (min-width: 768px) {
  .c-recruit-banner__inner {
    gap: 1.875rem;
    max-width: unset;
  }
}

.c-recruit-banner__bubble {
  width: 4.6875rem;
  height: 2rem;
  position: absolute;
  top: 1.25rem;
  right: clamp(0rem, -3.468rem + 14.8vw, 3.625rem);
}
@media screen and (min-width: 768px) {
  .c-recruit-banner__bubble {
    width: 9.4375rem;
    height: 4.0625rem;
    top: 0;
    right: 4.875rem;
  }
}

.c-recruit-banner__lead {
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-recruit-banner__lead {
    font-size: 2rem;
    text-align: left;
  }
}

.c-recruit-banner__text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .c-recruit-banner__text {
    font-size: 1.125rem;
    text-align: center;
  }
}

.c-numbers-item {
  position: relative;
  display: grid;
  grid-template-rows: auto 12.5rem minmax(0, 1fr);
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .c-numbers-item {
    grid-template-rows: 1.875rem 21.875rem minmax(0, 1fr);
    gap: 2rem;
  }
}
.c-numbers-item .title {
  position: relative;
  font-weight: bold;
  text-align: center;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .c-numbers-item .title {
    font-size: 1.5rem;
  }
}
.c-numbers-item .content {
  position: relative;
  display: grid;
  place-content: center;
}
.c-numbers-item .info {
  position: relative;
  width: fit-content;
  height: fit-content;
  margin-inline: auto;
}
.c-numbers-item .image {
  margin: auto;
}
.c-numbers-item .number {
  position: relative;
  font-family: "Wix Madefor Display", "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-weight: 500;
  line-height: 1;
}
.c-numbers-item .value {
  position: relative;
  font-weight: bold;
}
.c-numbers-item .label-bubble {
  position: relative;
  display: inline-block;
  border-radius: 1.4375rem;
  background-color: var(--black);
  text-align: center;
  line-height: 1.4;
  font-weight: 500;
  color: #fff;
  z-index: 1;
}
.c-numbers-item .label-bubble::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0.0625rem;
  border-style: solid;
  border-color: var(--black) transparent transparent;
  transform: skew(70deg);
  transform-origin: top;
}
.c-numbers-item .annotation {
  position: relative;
  font-weight: 500;
  color: #8d909b;
}
.c-numbers-item .description {
  position: relative;
  font-weight: 500;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .c-numbers-item .description {
    font-size: 1.125rem;
  }
}

.c-numbers-item.-monthly-sales .info {
  position: relative;
  z-index: 1;
  transform: translate(-40%, -22%);
}
@media screen and (min-width: 768px) {
  .c-numbers-item.-monthly-sales .info {
    transform: translate(-40%, -32%);
  }
}
.c-numbers-item.-monthly-sales .label {
  display: block;
  text-align: center;
  min-width: 7.3125rem;
  padding: 0 1.25rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--pink);
  border: solid 0.0625rem var(--pink);
  border-radius: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .c-numbers-item.-monthly-sales .label {
    font-size: 1.625rem;
    width: 13.6875rem;
    padding: 0.3125rem 1.25rem;
  }
}
.c-numbers-item.-monthly-sales .annotation {
  font-size: 0.5rem;
  text-align: right;
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .c-numbers-item.-monthly-sales .annotation {
    font-size: clamp(0.625rem, -0.391rem + 1.06vw, 0.875rem);
    margin-top: 0.8125rem;
  }
}
.c-numbers-item.-monthly-sales .number {
  font-size: 2.0625rem;
  margin-top: -0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-numbers-item.-monthly-sales .number {
    font-size: 4rem;
    margin-top: -2.5rem;
  }
}
.c-numbers-item.-monthly-sales .value {
  font-size: 4.9375rem;
}
@media screen and (min-width: 768px) {
  .c-numbers-item.-monthly-sales .value {
    font-size: 9.4375rem;
  }
}
.c-numbers-item.-monthly-sales .image {
  position: absolute;
  inset: 0;
  width: 17.25rem;
}
@media screen and (min-width: 768px) {
  .c-numbers-item.-monthly-sales .image {
    width: 32.375rem;
  }
}

@media screen and (max-width: 767px) {
  .c-numbers-item.-views {
    grid-template-rows: auto 9.375rem minmax(0, 1fr);
  }
}
.c-numbers-item.-views .info {
  position: relative;
  margin-top: 1.5625rem;
}
.c-numbers-item.-views .number {
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-numbers-item.-views .number {
    font-size: 2.8125rem;
  }
}
.c-numbers-item.-views .value {
  font-size: 3.25rem;
}
@media screen and (min-width: 768px) {
  .c-numbers-item.-views .value {
    font-size: 7.0625rem;
  }
}
.c-numbers-item.-views .annotation {
  text-align: right;
  font-size: 0.5rem;
}
@media screen and (min-width: 768px) {
  .c-numbers-item.-views .annotation {
    font-size: clamp(0.625rem, -0.646rem + 1.32vw, 0.938rem);
  }
}
.c-numbers-item.-views .c-pulse.-top {
  top: -40%;
  left: -15%;
}
.c-numbers-item.-views .c-pulse.-right {
  width: 1.25rem;
  top: 0;
  right: -2%;
}
.c-numbers-item.-views .c-pulse.-bottom {
  width: 1.125rem;
  bottom: -5%;
  left: 34%;
}

@media screen and (max-width: 767px) {
  .c-numbers-item.-items {
    grid-template-rows: auto 7.5rem minmax(0, 1fr);
  }
}
.c-numbers-item.-items .info {
  margin-left: auto;
}
.c-numbers-item.-items .number {
  font-size: 1rem;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .c-numbers-item.-items .number {
    font-size: 2.8125rem;
  }
}
.c-numbers-item.-items .value {
  font-size: 3.25rem;
}
@media screen and (min-width: 768px) {
  .c-numbers-item.-items .value {
    font-size: 8.5rem;
  }
}
.c-numbers-item.-items .annotation {
  font-size: 0.5rem;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .c-numbers-item.-items .annotation {
    font-size: clamp(0.625rem, -0.137rem + 0.79vw, 0.813rem);
  }
}
.c-numbers-item.-items .accent {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(10%, -30%);
  width: 3.75rem;
  height: 3.75rem;
}
@media screen and (min-width: 768px) {
  .c-numbers-item.-items .accent {
    transform: translate(-20%, -20%);
    width: 9.8125rem;
    height: 9.8125rem;
  }
}

.c-numbers-item.-government .achievements {
  padding-top: 0.4375rem;
  padding-right: 0.625rem;
  width: fit-content;
  position: absolute;
  top: 1.375rem;
  right: 0;
}
@media screen and (min-width: 768px) {
  .c-numbers-item.-government .achievements {
    padding-top: 1.125rem;
    padding-right: 1rem;
    top: 0.375rem;
  }
}
.c-numbers-item.-government .achievements-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.625rem;
  height: 1.625rem;
  background-color: var(--black);
  border-radius: 50%;
  border: solid 0.125rem #fff;
  font-size: 1.0625rem;
  font-weight: bold;
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .c-numbers-item.-government .achievements-link {
    width: clamp(2.5rem, 0.721rem + 1.85vw, 2.938rem);
    height: clamp(2.5rem, 0.721rem + 1.85vw, 2.938rem);
    font-size: clamp(1.75rem, 0.734rem + 1.06vw, 2rem);
  }
}
.c-numbers-item.-government .achievements-text {
  background-color: rgba(255, 255, 255, 0.62);
  border: solid 0.0625rem rgba(78, 210, 155, 0.62);
  border-radius: 1rem;
  width: fit-content;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  color: #4fb98d;
  padding: 0.5625rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .c-numbers-item.-government .achievements-text {
    font-size: clamp(1.5rem, -0.533rem + 2.11vw, 2rem);
    padding: 0.75rem 1.875rem;
  }
}
.c-numbers-item.-government .number {
  font-size: 1.9375rem;
  text-align: center;
  margin-top: 0.125rem;
}
@media screen and (min-width: 768px) {
  .c-numbers-item.-government .number {
    font-size: clamp(3.375rem, -0.183rem + 3.69vw, 4.25rem);
    text-align: left;
    margin-top: -0.3125rem;
  }
}
.c-numbers-item.-government .value {
  font-size: 4.5rem;
}
@media screen and (min-width: 768px) {
  .c-numbers-item.-government .value {
    font-size: 11.5rem;
  }
}
.c-numbers-item.-government .image {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 66%;
}
@media screen and (min-width: 768px) {
  .c-numbers-item.-government .image {
    aspect-ratio: 477/517;
    width: 20.5625rem;
    height: auto;
  }
}

.c-numbers-item.-time .label-bubble {
  font-size: 0.9375rem;
  padding: 0.1875rem 1.375rem;
  margin-bottom: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .c-numbers-item.-time .label-bubble {
    font-size: 2.0625rem;
    padding: 0.1875rem 2.875rem;
  }
}
.c-numbers-item.-time .label-bubble::after {
  left: 45%;
  border-width: 0.375rem 0.875rem 0 0;
  translate: calc(-50% - 0.0625rem) 100%;
}
@media screen and (min-width: 768px) {
  .c-numbers-item.-time .label-bubble::after {
    border-width: 0.6875rem 1.5rem 0 0;
  }
}
.c-numbers-item.-time .word {
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-numbers-item.-time .word {
    font-size: 2.75rem;
  }
}
.c-numbers-item.-time .info {
  position: relative;
  z-index: 1;
  transform: translate(-15%, -10%);
}
.c-numbers-item.-time .number {
  font-size: 1.9375rem;
  margin-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-numbers-item.-time .number {
    font-size: 4.125rem;
    margin-left: 2.75rem;
  }
}
.c-numbers-item.-time .value {
  font-size: 4.5rem;
}
@media screen and (min-width: 768px) {
  .c-numbers-item.-time .value {
    font-size: 9.75rem;
  }
}
.c-numbers-item.-time .dash {
  font-size: 2.0625rem;
}
@media screen and (min-width: 768px) {
  .c-numbers-item.-time .dash {
    font-size: 4.4375rem;
  }
}
.c-numbers-item.-time .image {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
  transform: translate(10%, -63%);
  width: 8.4375rem;
  height: 8.4375rem;
}
@media screen and (min-width: 768px) {
  .c-numbers-item.-time .image {
    transform: translate(10%, 5%);
    width: 18.125rem;
    height: 18.125rem;
  }
}

@media screen and (max-width: 767px) {
  .c-numbers-item.-sales-quantity {
    grid-template-rows: auto 9.375rem minmax(0, 1fr);
  }
}
.c-numbers-item.-sales-quantity .info {
  text-align: center;
  margin: 0 auto;
}
.c-numbers-item.-sales-quantity .label-bubble {
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
  padding: 0.0625rem 0.75rem;
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  transform: translateX(-60%);
}
@media screen and (min-width: 768px) {
  .c-numbers-item.-sales-quantity .label-bubble {
    font-size: clamp(1.25rem, -0.783rem + 2.11vw, 1.75rem);
    padding: 0.125rem 1.1875rem;
    top: 8%;
    transform: translateX(-50%);
  }
}
.c-numbers-item.-sales-quantity .label-bubble::after {
  left: 60%;
  border-width: 0.3125rem 0.75rem 0 0;
  translate: calc(-50% - 0.0625rem) 100%;
}
@media screen and (min-width: 768px) {
  .c-numbers-item.-sales-quantity .label-bubble::after {
    left: 55%;
    border-width: 0.5rem 1.125rem 0 0;
  }
}
.c-numbers-item.-sales-quantity .small {
  font-size: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .c-numbers-item.-sales-quantity .small {
    font-size: clamp(1rem, -0.525rem + 1.58vw, 1.375rem);
  }
}
.c-numbers-item.-sales-quantity .number {
  font-size: 2rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .c-numbers-item.-sales-quantity .number {
    font-size: 2.8125rem;
    margin-top: clamp(2.5rem, -1.312rem + 3.96vw, 3.438rem);
  }
}
.c-numbers-item.-sales-quantity .value {
  font-size: 4rem;
}
@media screen and (min-width: 768px) {
  .c-numbers-item.-sales-quantity .value {
    font-size: 8.5rem;
  }
}
.c-numbers-item.-sales-quantity .text {
  font-size: 1.8125rem;
  color: var(--pink);
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .c-numbers-item.-sales-quantity .text {
    font-size: clamp(2.25rem, -2.578rem + 5.01vw, 3.438rem);
  }
}

@media screen and (max-width: 767px) {
  .c-numbers-item.-total-views {
    grid-template-rows: auto 9.375rem minmax(0, 1fr);
  }
}
.c-numbers-item.-total-views .info {
  position: relative;
  margin-top: 2.5rem;
}
.c-numbers-item.-total-views .number {
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-numbers-item.-total-views .number {
    font-size: 2.8125rem;
    margin-top: clamp(2.5rem, -1.312rem + 3.96vw, 3.438rem);
  }
}
.c-numbers-item.-total-views .value {
  font-size: 3.25rem;
}
@media screen and (min-width: 768px) {
  .c-numbers-item.-total-views .value {
    font-size: 7.0625rem;
  }
}
.c-numbers-item.-total-views .annotation {
  font-size: 0.5rem;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .c-numbers-item.-total-views .annotation {
    font-size: clamp(0.625rem, -0.137rem + 0.79vw, 0.813rem);
  }
}
.c-numbers-item.-total-views .c-pulse.-top {
  top: -30%;
  right: -5%;
}
@media screen and (min-width: 768px) {
  .c-numbers-item.-total-views .c-pulse.-top {
    top: 10%;
    right: 5%;
  }
}
.c-numbers-item.-total-views .c-pulse.-left {
  width: 1.25rem;
  bottom: 25%;
  left: -15%;
}
@media screen and (min-width: 768px) {
  .c-numbers-item.-total-views .c-pulse.-left {
    left: -10%;
  }
}
.c-numbers-item.-total-views .c-pulse.-bottom {
  width: 1.125rem;
  bottom: -15%;
  right: 38%;
}
@media screen and (min-width: 768px) {
  .c-numbers-item.-total-views .c-pulse.-bottom {
    bottom: -5%;
  }
}

@media screen and (max-width: 767px) {
  .c-numbers-item.-products-quantity {
    grid-template-rows: auto 6.25rem minmax(0, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .c-numbers-item.-products-quantity .info-wrap {
    position: relative;
    margin-block: auto;
  }
}
@media screen and (min-width: 768px) {
  .c-numbers-item.-products-quantity .info {
    margin-top: 3.75rem;
  }
}
.c-numbers-item.-products-quantity .number {
  position: relative;
  z-index: 1;
  font-size: 1.5rem;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .c-numbers-item.-products-quantity .number {
    font-size: 2.8125rem;
    margin-top: 8.125rem;
  }
}
.c-numbers-item.-products-quantity .value {
  font-size: 3rem;
}
@media screen and (min-width: 768px) {
  .c-numbers-item.-products-quantity .value {
    font-size: 7.0625rem;
  }
}
.c-numbers-item.-products-quantity .image {
  position: absolute;
  top: 14%;
  left: 60%;
  width: 7.375rem;
  height: 7.6875rem;
}
@media screen and (min-width: 768px) {
  .c-numbers-item.-products-quantity .image {
    top: 0;
    left: unset;
    right: 0;
    margin: auto;
    width: 14.75rem;
    height: 15.3125rem;
  }
}
.c-numbers-item.-products-quantity .annotation {
  position: relative;
  z-index: 1;
  font-size: 0.5rem;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .c-numbers-item.-products-quantity .annotation {
    font-size: clamp(0.625rem, -0.137rem + 0.79vw, 0.813rem);
  }
}
.c-numbers-item.-products-quantity .accent {
  position: absolute;
  top: 1.875rem;
  left: clamp(1.25rem, -6.523rem + 33.16vw, 9.375rem);
  width: 3.75rem;
  height: 3.75rem;
}
@media screen and (min-width: 768px) {
  .c-numbers-item.-products-quantity .accent {
    top: 0;
    left: 0;
    width: 7.375rem;
    height: 7.375rem;
  }
}

.c-live-map {
  overflow: hidden;
  background-color: var(--white);
  max-width: 120rem;
  margin-inline: auto;
  padding-block: 3.75rem;
}
@media screen and (min-width: 768px) {
  .c-live-map {
    padding-block: 8.75rem 1.25rem;
  }
}
.c-live-map .c-title__main {
  line-height: 1;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .c-live-map .c-title__main {
    line-height: 1.4;
    margin-top: 0;
  }
}
.c-live-map .c-lead {
  margin-top: 1.25rem;
  font-weight: bold;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .c-live-map .c-lead {
    font-size: 2rem;
  }
}
.c-live-map .c-text {
  margin-top: 1.25rem;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-live-map .c-text {
    margin-top: 3.125rem;
    padding-inline: 0;
  }
}

.c-live-map__container {
  display: grid;
  grid-template-columns: 1fr;
  padding-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .c-live-map__container {
    grid-template-columns: repeat(2, 1fr);
    padding-top: 8.75rem;
  }
}

.c-live-map__map {
  position: relative;
  width: 80%;
  margin-inline: auto;
}

.c-live-map__map-overlay {
  position: absolute;
  top: 10%;
  left: 6%;
  width: 50%;
  max-width: 9.5rem;
}
@media screen and (min-width: 768px) {
  .c-live-map__map-overlay {
    max-width: 23.25rem;
  }
}

.c-live-map__overlay-image {
  position: absolute;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.c-live-map__overlay-image.is-current, .c-live-map__overlay-image.is-pined {
  opacity: 1;
}

.c-live-map__map-balloon {
  position: absolute;
  top: 15rem;
  left: 10rem;
  pointer-events: none;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .c-live-map__map-balloon {
    top: 60%;
    left: 75%;
  }
}

.c-live-map__balloon-content {
  opacity: 0;
  height: 0;
  transition: opacity 0.3s;
  background-color: var(--white);
  border-radius: 0.625rem;
  filter: drop-shadow(0 0.5rem 1.875rem rgba(119, 127, 167, 0.08));
  width: 10.25rem;
}
@media screen and (min-width: 768px) {
  .c-live-map__balloon-content {
    border-radius: 1.25rem;
    width: 19.625rem;
  }
}
.c-live-map__balloon-content.is-current, .c-live-map__balloon-content.is-pined {
  height: auto;
  opacity: 1;
  transition: 0s;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .c-live-map__balloon-content.is-current, .c-live-map__balloon-content.is-pined {
    padding: 1.5rem;
  }
}
.c-live-map__balloon-content .location {
  position: relative;
  font-weight: bold;
  padding-left: 1.5em;
}
.c-live-map__balloon-content .location:before {
  content: "";
  position: absolute;
  top: 0.25rem;
  left: 0;
  width: 0.75rem;
  height: 1.125rem;
  background-image: url("../images/icons/icon-location2.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .c-live-map__balloon-content .location:before {
    width: 1.0625rem;
    height: 1.4375rem;
  }
}
.c-live-map__balloon-content .title {
  font-weight: 500;
  font-size: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-live-map__balloon-content .title {
    font-size: 1.125rem;
  }
}
.c-live-map__balloon-content .text {
  font-weight: bold;
  color: var(--pink);
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .c-live-map__balloon-content .text {
    font-size: 1.5rem;
  }
}
.c-live-map__balloon-content .date {
  font-family: "Wix Madefor Display", "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-weight: 600;
  color: var(--darkgrey);
  margin-top: 0.25rem;
}

.c-live-map__prefectures[data-map-display=true] path {
  fill: var(--blue);
}
.c-live-map__prefectures[data-map-display=true]:hover {
  cursor: url("../images/common/a-cursor.png") 20 18, auto;
}
.c-live-map__prefectures[data-map-display=false] {
  pointer-events: none;
}

.c-live-map__content {
  background-color: #f9fbfe;
  padding-inline: 5%;
  padding-block: 3.75rem 5%;
}
@media screen and (min-width: 768px) {
  .c-live-map__content {
    padding-left: 15%;
    padding-block: 7.5rem 0;
  }
}

.c-live-map__content-detail {
  max-width: 34.25rem;
  opacity: 0;
  height: 0;
}
.c-live-map__content-detail.is-current, .c-live-map__content-detail.is-pined {
  opacity: 1;
  height: auto;
  transition: opacity 0.3s;
}
.c-live-map__content-detail .date {
  font-weight: 600;
  color: var(--darkgrey);
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .c-live-map__content-detail .date {
    font-size: 1.125rem;
  }
}
.c-live-map__content-detail .location {
  position: relative;
  margin-top: 0.5rem;
  font-weight: bold;
  padding-left: 1.5em;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .c-live-map__content-detail .location {
    font-size: 1.5rem;
  }
}
.c-live-map__content-detail .location:before {
  content: "";
  position: absolute;
  top: 0.25rem;
  left: 0;
  width: 1.25rem;
  height: 1.75rem;
  background-image: url("../images/icons/icon-location2.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .c-live-map__content-detail .location:before {
    width: 1.5625rem;
    height: 2.1875rem;
  }
}
.c-live-map__content-detail .title,
.c-live-map__content-detail .text {
  font-weight: bold;
  line-height: 1.4;
  margin-top: 1rem;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .c-live-map__content-detail .title,
  .c-live-map__content-detail .text {
    margin-top: 1.5rem;
    font-size: 2rem;
  }
}
.c-live-map__content-detail .comment-title {
  position: relative;
  padding-left: 1.8em;
  font-weight: 500;
  margin-top: 1.5rem;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .c-live-map__content-detail .comment-title {
    margin-top: 2.5rem;
    font-size: 1.125rem;
  }
}
.c-live-map__content-detail .comment-title:before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 1.0625rem;
  height: 0.9375rem;
  background-image: url("../images/icons/icon-comment-balloon.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .c-live-map__content-detail .comment-title:before {
    width: 1.4375rem;
    height: 1.25rem;
  }
}
.c-live-map__content-detail .comment-text {
  background-color: var(--white);
  border-radius: 0.625rem;
  padding: 1.25rem;
  margin-top: 0.5rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .c-live-map__content-detail .comment-text {
    border-radius: 1.25rem;
  }
}
.c-live-map__content-detail .link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
}
.c-live-map__content-detail .link:after {
  content: "";
  width: 2.75rem;
  height: 1.6875rem;
  background-image: url("../images/icons/icon-outer-link.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.c-live-map__cv {
  position: relative;
  width: 90%;
  max-width: 51.875rem;
  margin-inline: auto;
  border-radius: 1.25rem;
  overflow: hidden;
  padding: 2rem;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-live-map__cv {
    margin-top: 3.125rem;
  }
}

.c-live-map__cv-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-live-map__cv-bg .image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.c-live-map__cv-bg:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background-color: #858d9e;
  mix-blend-mode: multiply;
}

.c-live-map__cv-inner {
  position: relative;
  text-align: center;
}
.c-live-map__cv-inner .sub-title {
  font-weight: 600;
  color: var(--lightgreen);
  font-size: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-live-map__cv-inner .sub-title {
    font-size: 0.875rem;
  }
}
.c-live-map__cv-inner .title {
  color: var(--white);
  font-weight: 500;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .c-live-map__cv-inner .title {
    font-size: 1.75rem;
  }
}
.c-live-map__cv-inner .button {
  position: relative;
  display: grid;
  place-content: center;
  color: var(--white);
  font-weight: 600;
  background: linear-gradient(180deg, #4ed29b 0%, #3f98af 100%);
  border: 0.0625rem solid var(--white);
  border-radius: 999px;
  transition: 0.3s;
  height: 2.75rem;
  width: 90%;
  max-width: 20.9375rem;
  margin-inline: auto;
  margin-top: 1rem;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .c-live-map__cv-inner .button {
    height: 4rem;
    margin-top: 1.5rem;
    font-size: 0.875rem;
  }
}
.c-live-map__cv-inner .button:after {
  content: "";
  width: 0.5625rem;
  height: 0.5625rem;
  border-radius: 50%;
  background-color: var(--white);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 7.5%;
  margin: auto;
  transition: 0.3s;
}
.c-live-map__cv-inner .button:hover {
  color: var(--lightgreen);
  background: var(--white);
}
.c-live-map__cv-inner .button:hover:after {
  background-color: var(--lightgreen);
}

.c-live-archive {
  background-color: var(--white);
  padding-block: 3.125rem;
}
.c-live-archive .c-button-anime {
  margin-inline: auto;
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .c-live-archive .c-button-anime {
    margin-top: 3.125rem;
  }
}

.c-live-archive__title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: "Wix Madefor Display", "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .c-live-archive__title {
    font-size: 2.5rem;
  }
}
.c-live-archive__title:before {
  content: "#";
  display: grid;
  place-content: center;
  background-color: var(--black);
  border-radius: 0.3125rem;
  color: var(--white);
  width: 2.375rem;
  height: 2.375rem;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .c-live-archive__title:before {
    width: 2.6875rem;
    height: 2.6875rem;
    font-size: 1.9375rem;
  }
}

.c-live-archive__body {
  position: relative;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .c-live-archive__body {
    margin-top: 3rem;
  }
}

.c-live-archive__icon {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-live-archive__icon {
    display: block;
    position: absolute;
    z-index: 2;
    animation: icon-floating 2s ease-in-out infinite alternate-reverse;
  }
}
.c-live-archive__icon.-sale {
  left: 5%;
  top: 35%;
}
.c-live-archive__icon.-happening {
  left: 35%;
  top: 7%;
  animation-duration: 1.8s;
}
.c-live-archive__icon.-laugh {
  right: 12%;
  top: 13%;
  animation-duration: 2.2s;
}
@keyframes icon-floating {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(2rem);
  }
}

.c-live-archive__slider {
  padding-bottom: 3.125rem;
  padding-inline: 5%;
}

.c-live-archive__list {
  transition-timing-function: linear;
}

.c-live-archive__item {
  width: 30%;
  max-width: 16.875rem;
  aspect-ratio: 135/271;
  border-radius: 0.625rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-live-archive__item {
    border-radius: 1.25rem;
  }
}
.c-live-archive__item:hover {
  cursor: url("../images/common/a-cursor.png") 20 18, auto;
}
.c-live-archive__item .link {
  display: block;
  width: 100%;
  height: 100%;
}
.c-live-archive__item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.c-live-archive__slider-nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-live-archive__slider-nav {
    width: fit-content;
    height: fit-content;
    display: flex;
    gap: 0.625rem;
    position: absolute;
    right: 15%;
    bottom: 7%;
  }
}

.c-live-archive__slider-nav-button {
  position: relative;
  left: unset;
  right: unset;
  top: unset;
  margin-top: unset;
  background-color: var(--lightgrey);
  border-radius: 50%;
  filter: drop-shadow(0 0.5rem 1.875rem rgba(119, 127, 167, 0.08));
  transition: 0.3s;
  width: 5rem;
  height: 5rem;
  display: grid;
  place-content: center;
}
.c-live-archive__slider-nav-button::after {
  content: "";
  content: "";
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  border-top: 0.1875rem solid var(--black);
  border-right: 0.1875rem solid var(--black);
  position: absolute;
  top: 50%;
  left: 50%;
}
.c-live-archive__slider-nav-button.-prev:after {
  transform: translate(-50%, -50%) rotate(-135deg);
}
.c-live-archive__slider-nav-button.-next:after {
  transform: translate(-50%, -50%) rotate(45deg);
}
.c-live-archive__slider-nav-button:hover {
  background-color: var(--black);
}
.c-live-archive__slider-nav-button:hover:after {
  border-color: var(--white);
}

/*--------個別ページ　接頭辞「p-」--------------*/
.banner-fixed,
.p-front-simulator,
.c-cv,
.footer-menu__sub,
.c-related {
  display: none;
}

.c-header__nav-bottom-contents-inner {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-header__nav-bottom-contents-inner {
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

.p-front-about-numbers-wrapper {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-front-about-numbers-wrapper {
    margin-top: 7.5rem;
  }
}

/*=============================
共通
=============================*/
.p-front .l-header {
  transform: translateY(-100%);
  transition: transform 0.5s ease-in-out;
}
.p-front .l-header.is-animated {
  transform: translateY(0);
}
.p-front .l-editor-wrapper {
  margin-top: 0;
}
.p-front .p-front-content {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}
.p-front .p-front-content.is-animated {
  opacity: 1;
  visibility: visible;
}

.p-front-title .title-h6 {
  position: relative;
  font-weight: 500;
}
.p-front-title .title-h6::after {
  content: "";
  display: inline-block;
  width: 0.25rem;
  height: 0.25rem;
  background: -webkit-linear-gradient(270deg, #ED7A49, #FE2C55);
  border-radius: 50%;
  margin-left: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-front-title .title-h6::after {
    width: 0.375rem;
    height: 0.375rem;
    margin-left: 0.5rem;
  }
}
.p-front-title .title-h2 {
  font-size: 2.375rem;
}
@media screen and (min-width: 768px) {
  .p-front-title .title-h2 {
    font-size: 5.625rem;
  }
}

.p-front-button {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  border-radius: 2.5rem;
  padding: 1rem 1.0625rem;
  width: fit-content;
  min-width: 14.6875rem;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-front-button {
    font-size: 1.125rem;
    padding: 1.5625rem 2.8125rem;
    min-width: 22.0625rem;
  }
}

.p-front-button-anime {
  width: fit-content;
  position: relative;
}
.p-front-button-anime:hover .blinking {
  opacity: 1;
}
.p-front-button-anime .p-front-button {
  background-color: var(--lightgrey);
  color: var(--black);
  box-shadow: 0 0.5rem 1.875rem rgba(119, 127, 167, 0.08);
  position: relative;
  transition: 0.3s;
}
.p-front-button-anime .p-front-button:hover {
  background-color: var(--black);
  color: #fff;
}
.p-front-button-anime .p-front-button:hover::after {
  background-color: #fff;
}
.p-front-button-anime .p-front-button::after {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--black);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 2.0625rem;
  transform: translateY(-50%);
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-front-button-anime .p-front-button::after {
    width: 0.75rem;
    height: 0.75rem;
  }
}
.p-front-button-anime .blinking {
  display: block;
  width: 6.625rem;
  height: 6.625rem;
  background-color: #b4b5ba;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: -1.25rem;
  transform: translateY(-50%);
  opacity: 0;
  transition: 0.3s;
}
.p-front-button-anime .blinking::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background-color: #cbcdd1;
  border-radius: 50%;
  box-sizing: border-box;
  pointer-events: none;
  animation: pulsate 1s linear infinite;
}
@keyframes pulsate {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.p-front-bg__circle {
  position: relative;
}
.p-front-bg__circle::before {
  content: "";
  display: inline-block;
  width: 114%;
  height: auto;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.contact-button {
  display: flex;
  align-items: center;
  gap: 0.4375rem;
  background-color: #fff;
  color: var(--pink);
  border: solid 0.0625rem var(--pink);
  border-radius: 2.5rem;
  padding-block: 0.5rem;
  padding-inline: 0.625rem 1.375rem;
  font-size: 0.625rem;
  font-weight: 600;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .contact-button {
    font-size: 0.8125rem;
  }
}
.contact-button:hover {
  background-color: var(--pink);
  color: #fff;
}
.contact-button:hover .icon {
  background-image: url("../images/icons/icon-mic-wht.png");
}
.contact-button .icon {
  display: block;
  width: 1.6875rem;
  height: 1.6875rem;
  background-image: url("../images/icons/icon-mic-pnk.png");
  background-size: cover;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .contact-button .icon {
    width: 2.1875rem;
    height: 2.1875rem;
  }
}

.menu__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2.5rem;
  font-size: 0.75rem;
}
.menu__bottom .copyright {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .menu__bottom .copyright {
    margin-top: 0;
  }
}

.site-policy {
  display: flex;
  gap: 1.25rem;
  font-size: 0.625rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .site-policy {
    font-size: 0.75rem;
  }
}
.site-policy .link {
  text-decoration: underline;
  transition: 0.3s;
}
.site-policy .link:hover {
  opacity: 0.6;
}

/*=============================
ループテキスト
=============================*/
.p-front-loop-text {
  width: 100%;
  overflow: hidden;
}

.p-front-loop-text__inner {
  display: flex;
}
.p-front-loop-text__inner .loop-text {
  display: flex;
  font-size: 5rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-front-loop-text__inner .loop-text {
    font-size: 14.75rem;
  }
}
.p-front-loop-text__inner .loop-text:nth-child(odd) {
  animation: loop-text 100s -50s linear infinite;
}
.p-front-loop-text__inner .loop-text:nth-child(even) {
  animation: loop-text2 100s linear infinite;
}
.p-front-loop-text__inner .text-normal,
.p-front-loop-text__inner .text-stroke {
  margin-right: 2.25rem;
}
@media screen and (min-width: 768px) {
  .p-front-loop-text__inner .text-normal,
  .p-front-loop-text__inner .text-stroke {
    margin-right: 5.5rem;
  }
}
.p-front-loop-text__inner .text-normal {
  color: #f5f7fb;
}
.p-front-loop-text__inner .text-stroke {
  -webkit-text-stroke-width: 0.125rem;
  -webkit-text-stroke-color: #f5f7fb;
}
@media screen and (min-width: 768px) {
  .p-front-loop-text__inner .text-stroke {
    -webkit-text-stroke-width: 0.25rem;
  }
}

@keyframes loop-text {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop-text2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.p-front-loop-text.-main-bg .text-stroke {
  color: var(--lightgrey);
}

.p-front-loop-text.-white-bg .text-stroke {
  color: #fff;
}

/*=============================
オープニング
=============================*/
.p-front-opening {
  position: fixed;
  z-index: 10;
  height: 100vh;
  width: 100%;
  display: none;
  gap: 1.875rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--white);
}
@media screen and (min-width: 768px) {
  .p-front-opening {
    gap: 3.75rem;
  }
}
.p-front-opening.js-show {
  display: flex;
}

.p-front-opening__title {
  position: relative;
  font-size: 1.5rem;
  font-weight: 900;
  width: fit-content;
  margin-inline: auto;
  animation: opening-title 3s linear;
}
@media screen and (min-width: 768px) {
  .p-front-opening__title {
    font-size: 2.3125rem;
  }
}
.p-front-opening__title:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  margin: auto;
  animation: opening-title-gradient 3s linear;
}
@keyframes opening-title {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes opening-title-gradient {
  from {
    background: radial-gradient(transparent, #ffffff 1%);
  }
  to {
    background: radial-gradient(transparent, #ffffff 100%);
  }
}

.p-front-opening__progress {
  font-family: "Wix Madefor Display", "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  text-align: center;
  transition: 0.3s;
}

.p-front-opening__progress-text {
  font-size: 0.9375rem;
}

.p-front-opening__progress-percent {
  position: relative;
  width: 2.1875rem;
  margin-top: 0.5rem;
  margin-inline: auto;
}
.p-front-opening__progress-percent .value {
  font-weight: bold;
  font-size: 1.4375rem;
  line-height: 1;
}
.p-front-opening__progress-percent .unit {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate(100%, 10%);
  font-size: 0.6875rem;
}

/*=============================
メインビジュアル
=============================*/
.p-front-mv {
  padding-block: 3.75rem clamp(7.5rem, 5.407rem + 8.93vw, 9.688rem);
  background-color: var(--lightgrey);
  position: relative;
  overflow: hidden;
  height: 46.875rem;
}
@media screen and (min-width: 768px) {
  .p-front-mv {
    padding-block: 5.9375rem clamp(16.25rem, 1.003rem + 15.83vw, 20rem);
    height: 57.5rem;
  }
}
.p-front-mv::before {
  content: "";
  display: inline-block;
  transform: rotate(145deg);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 5vw;
  right: -34vw;
  z-index: 0;
  background-image: radial-gradient(rgb(253, 253, 253) 20%, rgb(246, 247, 249) 35%, rgb(240, 241, 244) 50%, rgb(237, 239, 243));
}
.p-front-mv::after {
  content: "";
  display: inline-block;
  aspect-ratio: 1/1;
  width: 91%;
  max-width: 41.25rem;
  height: auto;
  background-color: #e7e9ef;
  border-radius: 50%;
  position: absolute;
  top: 5rem;
  right: -5.9375rem;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-front-mv::after {
    width: 35%;
    top: 12%;
    right: unset;
    left: 3%;
  }
}
.p-front-mv::after::after {
  content: "";
  display: inline-block;
  aspect-ratio: 1/1;
  width: 91%;
  max-width: 41.25rem;
  height: auto;
  background-color: #e7e9ef;
  border-radius: 50%;
  position: absolute;
  top: 5rem;
  right: -5.9375rem;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-front-mv::after::after {
    width: 35%;
    top: 12%;
    right: unset;
    left: 3%;
  }
}

.p-front-mv__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-inline: auto;
  max-width: clamp(83.125rem, -0.735rem + 87.07vw, 87.5rem);
}

.p-front-mv__head {
  margin-top: clamp(5rem, 1.114rem + 16.58vw, 9.063rem);
  margin-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-front-mv__head {
    margin-top: 12.5rem;
    margin-inline: 0;
  }
}

.p-front-mv__title {
  font-size: clamp(2.25rem, 0.815rem + 6.12vw, 3.75rem);
  font-weight: 800;
}
@media screen and (min-width: 768px) {
  .p-front-mv__title {
    font-size: clamp(3.75rem, 0.446rem + 3.43vw, 4.563rem);
  }
}

.p-front-mv__text {
  font-size: clamp(0.875rem, 0.277rem + 2.55vw, 1.5rem);
  font-weight: 600;
  line-height: 1.4;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-front-mv__text {
    font-size: clamp(1.75rem, 0.734rem + 1.06vw, 2rem);
    margin-top: 1.875rem;
  }
}

.p-front-hot-news {
  display: none;
  width: 39.375rem;
  position: absolute;
  bottom: 6.875rem;
  z-index: 4;
  padding-top: 1.125rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-front-hot-news {
    display: block;
  }
}
.p-front-hot-news::after {
  content: "";
  display: inline-block;
  width: 7.6875rem;
  height: 1.875rem;
  background-image: url("../images/front/hot-news.png");
  background-size: cover;
  position: absolute;
  top: 0;
  left: 9.375rem;
}
.p-front-hot-news .c-arrow {
  width: 2.75rem;
  height: 1.6875rem;
  position: relative;
  bottom: unset;
  right: unset;
}

.p-front-hot-news__link {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  padding-block: 0.625rem;
  padding-inline: 1.25rem 1.75rem;
  background-color: #fff;
  border: solid 0.125rem var(--lightgrey);
  border-radius: 0 6.25rem 6.25rem 0;
  transition: 0.3s;
}
.p-front-hot-news__link:hover {
  opacity: 0.6;
}

.p-front-hot-news__image {
  width: 7rem;
  height: 4.75rem;
  margin-right: 0.9375rem;
  border: solid 0.0625rem var(--lightblue);
}
.p-front-hot-news__image .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-front-hot-news__loop {
  display: flex;
  flex: 1;
  overflow: hidden;
}

.p-front-hot-news__track {
  display: flex;
  align-items: center;
  animation: ticker 20s linear infinite;
}

.p-front-hot-news__title {
  font-size: 1.125rem;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  margin-right: 0.875rem;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.p-front-mv__text-model {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.p-front-mv__carousel {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.p-front-mv__carousel:before {
  content: "";
  position: absolute;
  bottom: 11%;
  right: -5%;
  aspect-ratio: 40/19;
  width: 80%;
  background-color: #afb5c5;
  opacity: 0.6;
  filter: blur(30px);
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .p-front-mv__carousel:before {
    width: 50%;
    bottom: 10%;
    right: -5%;
  }
}
.p-front-mv__carousel canvas {
  position: relative;
}

.p-front-mv__pointer {
  position: fixed;
  pointer-events: none;
  z-index: 1000;
  opacity: 0;
  transform: translate(-50%, -50%);
}

.p-front-mv__pointer-content {
  position: absolute;
  left: 50%;
  transform: translateX(-70%) translateY(-70%);
  width: 0px;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  pointer-events: none;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.625rem;
  transition: width 0.3s ease-in-out;
}

.p-front-mv__pointer-content-circle {
  display: grid;
  place-content: center;
  width: 2.9375rem;
  height: 2.9375rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s 0.3s ease-in-out;
}
.p-front-mv__pointer-content-circle:before {
  content: "";
  height: 1.25rem;
  width: 0.9375rem;
  border-radius: 0.3125rem;
  background-image: url("../images/icons/icon-right-arrow-white.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transform: translateX(15%);
}

.p-front-mv__pointer-content-text {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s 0.3s ease-in-out;
  line-height: 1.2;
}

/*=============================
事業内容
=============================*/
.p-front-business__inner {
  margin-top: calc(clamp(1.563rem, -0.53rem + 8.93vw, 3.75rem) * -1);
  position: relative;
  z-index: 3;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-front-business__inner {
    margin-top: -8.75rem;
  }
}
.p-front-business__inner .p-front-bg__circle {
  padding-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-front-business__inner .p-front-bg__circle {
    padding-top: 8.75rem;
  }
}
.p-front-business__inner .p-front-bg__circle::before {
  aspect-ratio: 2180/520;
  background-color: #fff;
}

.p-front-business__head {
  width: 91%;
  max-width: 81.25rem;
  margin-top: 5.3125rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-front-business__head {
    margin-top: 0;
  }
}

.p-front-business__btn-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.1875rem;
  row-gap: 0.375rem;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-front-business__btn-list {
    column-gap: 0.4375rem;
    row-gap: 0.6875rem;
    max-width: 61.25rem;
    margin: 0 auto;
  }
}

.p-front-business__btn-item {
  width: calc((100% - 0.1875rem) / 2);
  background-color: #fff;
  box-shadow: 0 0.125rem 0.1875rem rgba(103, 105, 116, 0.2);
  border: solid 0.125rem var(--lightblue);
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  cursor: url("../images/common/a-cursor.png") 20 18, auto;
}
@media screen and (min-width: 600px) {
  .p-front-business__btn-item {
    width: calc((100% - 0.375rem) / 3);
  }
}
@media screen and (min-width: 768px) {
  .p-front-business__btn-item {
    width: calc((100% - 1.3125rem) / 3);
    border-radius: 1.25rem;
  }
}
.p-front-business__btn-item:hover .icon-main {
  opacity: 0;
}
.p-front-business__btn-item:hover .icon-active {
  opacity: 1;
}
.p-front-business__btn-item:hover .title {
  color: #fff;
}
.p-front-business__btn-item:hover .button-bg {
  opacity: 1;
}
.p-front-business__btn-item.-inactive, .p-front-business__btn-item.-inactive.is-active {
  background-color: var(--lightgrey);
  color: var(--darkgrey);
  pointer-events: none;
  cursor: not-allowed;
}
.p-front-business__btn-item.-inactive .icon-main, .p-front-business__btn-item.-inactive.is-active .icon-main {
  opacity: 1;
}
.p-front-business__btn-item.-inactive .icon-active, .p-front-business__btn-item.-inactive.is-active .icon-active {
  opacity: 0;
}
.p-front-business__btn-item.-inactive .title, .p-front-business__btn-item.-inactive.is-active .title {
  color: var(--darkgrey);
}
.p-front-business__btn-item.-inactive .button-bg, .p-front-business__btn-item.-inactive.is-active .button-bg {
  opacity: 0;
}
.p-front-business__btn-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  position: relative;
  z-index: 1;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-front-business__btn-item .icon {
    width: 2.75rem;
    height: 2.75rem;
  }
}
.p-front-business__btn-item .icon-active {
  opacity: 0;
  transition: 0.3s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-front-business__btn-item .logo {
  position: relative;
  z-index: 1;
  height: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-front-business__btn-item .logo {
    height: 1.375rem;
  }
}
.p-front-business__btn-item .title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}
.p-front-business__btn-item .title {
  font-size: 0.75rem;
  font-weight: bold;
  line-height: 1;
  position: relative;
  z-index: 1;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-front-business__btn-item .title {
    font-size: 1.125rem;
  }
}
.p-front-business__btn-item .button-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 0.3s;
}
.p-front-business__btn-item .button-bg .color-filter {
  width: 100%;
  height: 100%;
  opacity: 70%;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s;
}
.p-front-business__btn-item .button-bg .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.p-front-business__btn-link {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  padding: 0.9375rem 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-front-business__btn-link {
    gap: 0.625rem;
    padding: 1.25rem 1.875rem;
  }
}

.js-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 7.25rem;
  height: 7.25rem;
  border-radius: 50%;
  pointer-events: none;
  /* カーソルとして機能させるためクリックを無効化 */
  transform: translate(-50%, -50%);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.js-cursor.is-active {
  opacity: 1;
  /* アクティブ時だけ表示 */
}

.p-front-business__container {
  margin-top: 1.6875rem;
  overflow: unset;
}
@media screen and (min-width: 768px) {
  .p-front-business__container {
    margin-top: 2.1875rem;
  }
}
.p-front-business__container.swiper-android .swiper-slide {
  transform: scale(0.9);
}
@media screen and (max-width: 767px) {
  .p-front-business__container.swiper-android .swiper-slide-active {
    transform: scale(1);
  }
}

@media screen and (max-width: 767px) {
  .p-front-business__list {
    align-items: center;
  }
}

.p-front-business__item {
  width: 90%;
  max-width: 100.625rem;
  height: auto;
  position: relative;
  overflow: unset !important;
}
@media screen and (max-width: 767px) {
  .p-front-business__item {
    width: 80%;
    transition: transform 0.3s;
    transform: scale(0.9);
  }
}
@media screen and (max-width: 767px) {
  .p-front-business__item.swiper-slide-active {
    transform: scale(1);
  }
}
@media screen and (min-width: 768px) {
  .p-front-business__item.swiper-slide-active {
    padding-inline: clamp(2.813rem, -25.141rem + 29.02vw, 9.688rem);
  }
}
.p-front-business__item.-inactive .p-front-business__link {
  pointer-events: none;
}
.p-front-business__item.-inactive .p-front-business__coming-soon {
  opacity: 1;
  visibility: visible;
  will-change: opacity, visibility;
  -webkit-backface-visibility: hidden;
}

.p-front-business__link {
  display: block;
  position: relative;
}
.p-front-business__link:hover {
  cursor: none;
}
.p-front-business__link:hover .c-arrow {
  width: 1.8125rem;
  height: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-front-business__link:hover .c-arrow {
    width: 2.75rem;
    height: 1.6875rem;
  }
}
.p-front-business__link:hover .c-arrow::after {
  opacity: 1;
}
.p-front-business__link .c-arrow {
  width: 0.5rem;
  height: 0.5rem;
  bottom: 0.875rem;
  right: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-front-business__link .c-arrow {
    width: 0.75rem;
    height: 0.75rem;
    bottom: 1.4375rem;
  }
}
.p-front-business__link .c-arrow::after {
  background-image: url("../images/icons/icon-arrow-blk.png");
  opacity: 0;
}

.p-front-business__item-inner {
  position: relative;
  z-index: 0;
  padding-block: 1.5625rem 0.625rem;
  padding-inline: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-front-business__item-inner {
    padding-block: 3.125rem 3.4375rem;
    padding-inline: 10.3125rem 3.125rem;
  }
}

.p-front-business__contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .p-front-business__contents {
    flex-direction: unset;
    align-items: unset;
  }
}

.p-front-business__image {
  aspect-ratio: 310/625;
  max-width: 19.375rem;
  width: 58%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-front-business__image {
    width: 35%;
  }
}

.p-front-business__overview {
  max-width: 38.25rem;
  margin-top: calc(clamp(9.188rem, 3.029rem + 26.28vw, 15.625rem) * -1);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-front-business__overview {
    margin-top: unset;
    width: 57%;
  }
}

.p-front-business__overview-head {
  height: 7.5rem;
  display: flex;
  align-items: center;
  border-radius: 0.625rem 0.625rem 0 0;
  overflow: hidden;
  padding: 0.625rem 0.9375rem;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(0.625rem) brightness(1.8);
  backdrop-filter: blur(0.625rem) brightness(1.8);
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-front-business__overview-head {
    height: 15.625rem;
    padding: 1.25rem 3.75rem;
  }
}
.p-front-business__overview-head .title {
  font-size: 1rem;
  font-weight: bold;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-front-business__overview-head .title {
    font-size: 2rem;
    margin-top: 1.25rem;
  }
}
.p-front-business__overview-head .color-text {
  display: block;
  font-size: 1.6875rem;
  font-weight: 600;
  line-height: 1.1;
}
@media screen and (min-width: 768px) {
  .p-front-business__overview-head .color-text {
    font-size: 3.125rem;
  }
}
.p-front-business__overview-head .text-jp {
  display: inline-block;
  margin-top: 0.3125rem;
}

.p-front-business__overview-bottom {
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(1.875rem) brightness(0.69);
  backdrop-filter: blur(1.875rem) brightness(0.69);
  border-radius: 0 0 0.625rem 0.625rem;
  overflow: hidden;
  padding-block: 1.25rem 1.875rem;
  padding-inline: 0.9375rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-front-business__overview-bottom {
    padding-block: 4.375rem 5.875rem;
    padding-inline: 2.125rem;
  }
}
.p-front-business__overview-bottom .introduction {
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--pink);
}
@media screen and (min-width: 768px) {
  .p-front-business__overview-bottom .introduction {
    font-size: 1rem;
  }
}
.p-front-business__overview-bottom .text {
  font-size: 0.75rem;
  color: #fff;
  width: 100%;
  height: 8.4375rem;
  padding-right: 0.625rem;
  margin-top: 0.9375rem;
  margin-left: auto;
  overflow-y: scroll;
}
@media screen and (min-width: 768px) {
  .p-front-business__overview-bottom .text {
    font-size: 1rem;
    width: 23.625rem;
    height: 10.3125rem;
    margin-top: 1.9375rem;
  }
}
.p-front-business__overview-bottom .text::-webkit-scrollbar {
  width: 0.3125rem;
}
.p-front-business__overview-bottom .text::-webkit-scrollbar-thumb {
  background: var(--lightgrey);
  border-radius: 0.1875rem;
}

.p-front-business__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.p-front-business__bg::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: #b0b0b0;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.p-front-business__bg .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-front-business__pagination {
  text-align: center;
  margin-top: 0.625rem;
}
.p-front-business__pagination .swiper-pagination-bullet {
  width: 0.3125rem;
  height: 0.3125rem;
  background: #d4d4d4;
  opacity: 1;
  margin: 0 0.25rem !important;
}
@media screen and (min-width: 768px) {
  .p-front-business__pagination .swiper-pagination-bullet {
    width: 0.5625rem;
    height: 0.5625rem;
    margin: 0 0.4375rem !important;
  }
}
.p-front-business__pagination .swiper-pagination-bullet-active {
  background: var(--black);
}

.p-front-business__pagination-extra {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Wix Madefor Display", "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  position: absolute;
  top: -1.625rem;
  right: 1.25rem;
  z-index: 1;
  width: 5.875rem;
  height: 5.875rem;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .p-front-business__pagination-extra {
    font-size: 3.25rem;
    top: -3.75rem;
    right: clamp(3.438rem, -42.305rem + 47.49vw, 14.688rem);
    width: 12.5rem;
    height: 12.5rem;
  }
}
.p-front-business__pagination-extra .current {
  position: relative;
  padding-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-front-business__pagination-extra .current {
    padding-bottom: 0.75rem;
  }
}
.p-front-business__pagination-extra .current::after {
  content: "";
  display: inline-block;
  width: 1.125rem;
  height: 0.0625rem;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
}
@media screen and (min-width: 768px) {
  .p-front-business__pagination-extra .current::after {
    width: 2.375rem;
  }
}
.p-front-business__pagination-extra .total {
  color: #fff;
  padding-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-front-business__pagination-extra .total {
    padding-top: 0.75rem;
  }
}
.p-front-business__pagination-extra .progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.p-front-business__pagination-extra .progress-bar .progress-ring {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.p-front-business__pagination-extra .progress-bar .progress-ring-bg {
  stroke-linecap: round;
}
.p-front-business__pagination-extra .progress-bar .progress-ring-circle {
  stroke-linecap: round;
  shape-rendering: geometricPrecision;
}

.p-front-business__cursor {
  position: fixed;
  width: 7.25rem;
  height: 7.25rem;
  border-radius: 50%;
  z-index: 3;
  transition: transform 0.5s;
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
}
.p-front-business__cursor:before, .p-front-business__cursor:after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--black);
  height: 1rem;
  width: 0.6875rem;
}
.p-front-business__cursor:before {
  transform: translateX(-100%);
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}
.p-front-business__cursor:after {
  transform: translateX(100%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.p-front-business__coming-soon {
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.p-front-business__coming-soon:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #000;
  opacity: 0.65;
}
.p-front-business__coming-soon .text-image {
  width: 56%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .p-front-business__coming-soon .text-image {
    width: 33.3125rem;
  }
}

.p-front-logo {
  margin-top: 1.875rem;
  padding-block: 1.5625rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-front-logo {
    margin-top: 6.25rem;
  }
}

.p-front-logo__container {
  width: 100%;
}
.p-front-logo__container.-bottom {
  margin-top: 1.25rem;
}

.p-front-logo__list {
  transition-timing-function: linear;
}
.p-front-logo__list.css-slider {
  display: flex;
  gap: 0.625rem;
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-front-logo__list.css-slider {
    gap: 0.9375rem;
  }
}
@keyframes slide-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes slide-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.p-front-logo__list.css-slider:not(.-reverse) {
  animation: slide-left 8s linear infinite;
}
@media screen and (min-width: 768px) {
  .p-front-logo__list.css-slider:not(.-reverse) {
    animation: slide-left 15s linear infinite;
  }
}
.p-front-logo__list.css-slider.-reverse {
  animation: slide-right 8s linear infinite;
}
@media screen and (min-width: 768px) {
  .p-front-logo__list.css-slider.-reverse {
    animation: slide-right 15s linear infinite;
  }
}

.p-front-logo__item {
  border-radius: 0.3125rem;
  overflow: hidden;
  box-shadow: 0 0.1875rem 0.625rem rgba(120, 126, 156, 0.15);
  background-color: #fff;
  height: 3.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 8rem;
  padding: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-front-logo__item {
    height: 5.75rem;
    width: 13.1875rem;
    padding: 1rem;
  }
}
.p-front-logo__item img {
  max-height: 100%;
}

/*=============================
簡単シミュレーション
=============================*/
.p-front-simulator {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-front-simulator {
    margin-top: 7.8125rem;
  }
}
.p-front-simulator .p-front-title {
  text-align: center;
}

.p-front-simulator__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-top: 2.625rem;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-front-simulator__head {
    padding-top: 0;
  }
}
.p-front-simulator__head .title-bg {
  font-size: 3.8125rem;
  font-weight: 600;
  line-height: 1;
  color: var(--lightgrey);
  position: absolute;
  top: 0;
  left: 0.625rem;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-front-simulator__head .title-bg {
    font-size: clamp(6.688rem, 1.351rem + 5.54vw, 8rem);
    left: 4.2%;
  }
}

.p-front-simulator__accent {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-front-simulator__accent {
    gap: 1.125rem;
  }
}
.p-front-simulator__accent .text {
  background-color: var(--black);
  color: #fff;
  border-radius: 2.1875rem;
  font-size: 1.125rem;
  font-weight: bold;
  padding-block: 0.1875rem;
  padding-inline: 1.875rem 1.6875rem;
}
@media screen and (min-width: 768px) {
  .p-front-simulator__accent .text {
    font-size: 2rem;
    padding-block: 0;
    padding-inline: 4.0625rem 2.5625rem;
  }
}

.p-front-simulator__text {
  font-size: 0.875rem;
  font-weight: bold;
  margin-top: 1.375rem;
}
@media screen and (min-width: 768px) {
  .p-front-simulator__text {
    font-size: 1.75rem;
  }
}

.p-front-simulator__body {
  display: flex;
  flex-direction: column;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-front-simulator__body {
    flex-direction: unset;
    gap: 0.25rem;
    margin-top: 2.8125rem;
  }
}

.p-front-simulator__banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: clamp(1.75rem, 0.435rem + 5.61vw, 3.125rem);
  padding-inline: 2.5rem;
  overflow: hidden;
  flex: 1;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .p-front-simulator__banner {
    padding-block: 6.5625rem;
    padding-inline: 1.25rem;
    border-radius: 1.25rem;
  }
}
.p-front-simulator__banner .title {
  color: #fff;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-front-simulator__banner .title {
    font-size: 2rem;
  }
}
.p-front-simulator__banner .sub-title {
  font-size: 0.625rem;
  font-weight: 600;
  color: #ffd664;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-front-simulator__banner .sub-title {
    font-size: 1.25rem;
    margin-top: 1.5rem;
  }
}
.p-front-simulator__banner .simulator-button {
  display: flex;
  width: 100%;
  max-width: 21.875rem;
  height: auto;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-front-simulator__banner .simulator-button {
    width: 32.5rem;
    max-width: unset;
    margin-top: 1.875rem;
  }
}
.p-front-simulator__banner .simulator-button:hover {
  transform: scale(1.05);
}
.p-front-simulator__banner .simulator-button__inner {
  position: relative;
}

.p-front-simulator__banner:first-child {
  background-image: url("../images/front/partners-bg-01.webp");
}

.p-front-simulator__banner:last-child {
  background-image: url("../images/front/commercer-bg-01.webp");
}
.p-front-simulator__banner:last-child .banner {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-front-simulator__banner:last-child .banner {
    margin-top: 1.1875rem;
  }
}

/*=============================
About us & Numbers
=============================*/
.p-front-about-numbers-wrapper {
  position: relative;
  background: linear-gradient(90deg, #ffffff 0%, #edeff3 30%, #edeff3 100%);
  background: -webkit-linear-gradient(90deg, #ffffff 0%, #edeff3 30%, #edeff3 100%);
}

.p-front-about-numbers__text-model {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  height: 46.875rem;
}
@media screen and (min-width: 768px) {
  .p-front-about-numbers__text-model {
    height: 57.5rem;
  }
}
.p-front-about-numbers__text-model.is-visible {
  opacity: 1;
}

/*=============================
About us
=============================*/
.p-front-about {
  padding-top: 6.25rem;
  position: relative;
  margin-top: -46.875rem;
}
@media screen and (min-width: 768px) {
  .p-front-about {
    margin-top: -57.5rem;
    padding-top: 18.75rem;
  }
  .p-front-about::before {
    content: "";
    display: inline-block;
    aspect-ratio: 445/412;
    width: 27.8125rem;
    height: auto;
    background-image: url("../images/front/deco-dot.webp");
    background-size: cover;
    position: absolute;
    top: 21%;
    right: 0;
  }
}
.p-front-about .p-front-title {
  width: 90%;
  max-width: 75rem;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
.p-front-about .p-front-button-anime {
  margin-top: 2.8125rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-front-about .p-front-button-anime {
    margin-top: 7.5rem;
  }
}
.p-front-about .p-front-button {
  background-color: #fff;
}
.p-front-about .p-front-loop-text {
  position: absolute;
  top: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .p-front-about .p-front-loop-text {
    top: 11.25rem;
  }
}

.p-front-about__catch {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  position: relative;
  margin-top: 2rem;
  margin-inline: auto;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-front-about__catch {
    font-size: 4.3125rem;
    position: absolute;
    top: 0;
    left: calc(50% - 4.375rem);
    transform: translateX(-50%);
    margin: unset;
  }
}
.p-front-about__catch .multiply {
  display: inline-block;
  width: 1.125rem;
  height: 1rem;
  margin-inline: 0.625rem;
  margin-bottom: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-front-about__catch .multiply {
    width: 2.3125rem;
    height: 2.0625rem;
    margin-inline: 0.9375rem;
  }
}
.p-front-about__catch .accent {
  padding-inline: 1.25rem 0.9375rem;
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-front-about__catch .accent {
    padding-inline: 3.125rem 2.375rem;
  }
}
.p-front-about__catch .accent::before, .p-front-about__catch .accent::after {
  content: "";
  display: inline-block;
  width: 1.9375rem;
  height: 1.5625rem;
  background-image: url("../images/front/double-quotation-wht.webp");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top;
  position: absolute;
  top: 0.5rem;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-front-about__catch .accent::before, .p-front-about__catch .accent::after {
    width: 3.875rem;
    height: 3.125rem;
  }
}
.p-front-about__catch .accent::before {
  left: 0;
}
.p-front-about__catch .accent::after {
  transform: rotate(180deg);
  right: 0;
}

.p-front-about__contents {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-front-about__contents {
    flex-direction: unset;
    gap: 6.875rem;
    margin-top: 3rem;
    padding-top: 6.6875rem;
  }
}

.p-front-about__slider {
  display: flex;
  width: 95%;
  border-radius: 0 18.75rem 18.75rem 0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-front-about__slider {
    width: 45%;
  }
}

.p-front-about__slider-container {
  flex: 1;
}

.p-front-about__text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2.05;
  margin-top: 2rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-front-about__text {
    font-size: clamp(1.25rem, 0.234rem + 1.06vw, 1.5rem);
    margin-top: 10rem;
    margin-inline: unset;
  }
}

.p-front-button-anime {
  position: relative;
  z-index: 3;
}

/*=============================
Sホールディングスの実績紹介
=============================*/
.p-front-numbers {
  overflow: hidden;
  padding-top: 6.25rem;
  padding-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-front-numbers {
    padding-top: 12.5rem;
  }
}
.p-front-numbers .p-front-button-anime {
  margin-top: 2.875rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-front-numbers .p-front-button-anime {
    margin-top: 4.625rem;
  }
}

.p-front-numbers__inner {
  position: relative;
  z-index: 3;
  padding-bottom: 3.125rem;
  max-width: 120rem;
  margin-inline: auto;
}

.p-front-numbers__title-bg {
  font-size: 5rem;
  font-weight: 600;
  line-height: 1;
  color: var(--navy);
  filter: blur(0.1875rem);
  opacity: 0.09;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .p-front-numbers__title-bg {
    font-size: 16.4375rem;
    filter: blur(0.4375rem);
  }
}

.p-front-numbers__title {
  font-size: 0.875rem;
  font-weight: bold;
  text-align: center;
  padding-top: 0.9375rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__title {
    font-size: 2rem;
    padding-top: 1.25rem;
  }
}
.p-front-numbers__title .big {
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__title .big {
    font-size: 2.625rem;
  }
}

.p-front-numbers__contents {
  width: clamp(21.25rem, 9.292rem + 51.02vw, 33.75rem);
  margin: 0 auto;
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__contents {
    width: 91%;
    max-width: 108.75rem;
    margin-top: 8.75rem;
  }
}

.p-front-numbers__item {
  width: fit-content;
  position: relative;
}
.p-front-numbers__item .title {
  font-weight: bold;
  text-align: center;
}
.p-front-numbers__item .info {
  width: fit-content;
}
.p-front-numbers__item .number {
  font-family: "Wix Madefor Display", "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-weight: 500;
  line-height: 1;
}
.p-front-numbers__item .value {
  font-weight: bold;
}
.p-front-numbers__item .label-bubble {
  position: relative;
  display: inline-block;
  border-radius: 1.4375rem;
  background-color: var(--black);
  text-align: center;
  line-height: 1.4;
  font-weight: 500;
  color: #fff;
}
.p-front-numbers__item .label-bubble::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0.0625rem;
  border-style: solid;
  border-color: var(--black) transparent transparent;
  transform: skew(70deg);
  transform-origin: top;
}
.p-front-numbers__item .annotation {
  font-weight: 500;
  color: #8d909b;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item svg {
    width: 100%;
    height: 100%;
  }
}

.p-front-numbers__item.-monthly-sales {
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-monthly-sales {
    margin-right: unset;
    margin-left: 27vw;
  }
}
.p-front-numbers__item.-monthly-sales .title {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-monthly-sales .title {
    font-size: clamp(1.875rem, -0.158rem + 2.11vw, 2.375rem);
  }
}
.p-front-numbers__item.-monthly-sales .info {
  position: relative;
  margin-left: 1.5625rem;
  margin-top: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-monthly-sales .info {
    margin-left: clamp(3.75rem, 1.209rem + 2.64vw, 4.375rem);
    margin-top: 2.25rem;
  }
}
.p-front-numbers__item.-monthly-sales .label {
  display: block;
  text-align: center;
  min-width: 7.3125rem;
  padding: 0 1.25rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--pink);
  border: solid 0.0625rem var(--pink);
  border-radius: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-monthly-sales .label {
    font-size: clamp(1.5rem, -0.533rem + 2.11vw, 2rem);
    min-width: clamp(12.5rem, -4.272rem + 17.41vw, 16.625rem);
    padding: clamp(0rem, -1.016rem + 1.06vw, 0.25rem) 1.25rem;
  }
}
.p-front-numbers__item.-monthly-sales .annotation {
  font-size: 0.5rem;
  text-align: right;
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-monthly-sales .annotation {
    font-size: clamp(0.625rem, -0.391rem + 1.06vw, 0.875rem);
    margin-top: 0.8125rem;
  }
}
.p-front-numbers__item.-monthly-sales .number {
  font-size: 2.0625rem;
  margin-top: -0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-monthly-sales .number {
    font-size: clamp(3.125rem, -3.99rem + 7.39vw, 4.875rem);
    margin-top: -2.5rem;
  }
}
.p-front-numbers__item.-monthly-sales .value {
  font-size: 4.9375rem;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-monthly-sales .value {
    font-size: clamp(9rem, -1.165rem + 10.55vw, 11.5rem);
  }
}
.p-front-numbers__item.-monthly-sales .image {
  width: 17.25rem;
  margin-top: -12.5rem;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-monthly-sales .image {
    width: 33vw;
    max-width: 39.375rem;
    margin-top: calc(clamp(11.25rem, -0.186rem + 11.87vw, 14.063rem) * -1);
  }
}

.p-front-numbers__item.-views {
  padding-block: 1.875rem;
  padding-inline: 3.75rem 1.25rem;
  margin-left: auto;
  margin-top: -6.25rem;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-views {
    margin-top: calc(clamp(10.625rem, 3.001rem + 7.92vw, 12.5rem) * -1);
    padding-block: 3.4375rem;
    padding-inline: 8.125rem 4.5rem;
  }
}
.p-front-numbers__item.-views .title {
  font-size: 1rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-views .title {
    font-size: clamp(1.875rem, -0.158rem + 2.11vw, 2.375rem);
  }
}
.p-front-numbers__item.-views .info {
  position: relative;
  margin-top: 1.5625rem;
}
.p-front-numbers__item.-views .number {
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-views .number {
    font-size: clamp(2.25rem, -0.037rem + 2.37vw, 2.813rem);
  }
}
.p-front-numbers__item.-views .value {
  font-size: 3.25rem;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-views .value {
    font-size: clamp(5.625rem, -0.728rem + 6.6vw, 7.188rem);
  }
}
.p-front-numbers__item.-views .annotation {
  font-size: 0.5rem;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-views .annotation {
    font-size: clamp(0.625rem, -0.646rem + 1.32vw, 0.938rem);
  }
}
.p-front-numbers__item.-views .c-pulse.-top {
  top: -21%;
  left: -14%;
}
.p-front-numbers__item.-views .c-pulse.-right {
  width: 1.25rem;
  top: 0;
  right: -2%;
}
.p-front-numbers__item.-views .c-pulse.-bottom {
  width: 1.125rem;
  bottom: -5%;
  left: 34%;
}

.p-front-numbers__item.-items {
  margin-top: -1.875rem;
  padding-top: 1.875rem;
  padding-left: 2.6875rem;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-items {
    margin-top: -12.5rem;
    padding-top: 3.125rem;
    padding-left: clamp(5rem, -0.082rem + 5.28vw, 6.25rem);
  }
}
.p-front-numbers__item.-items .title {
  font-size: 1rem;
  text-align: left;
  margin-left: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-items .title {
    font-size: clamp(1.75rem, 0.225rem + 1.58vw, 2.125rem);
  }
}
.p-front-numbers__item.-items .info {
  margin-left: auto;
}
.p-front-numbers__item.-items .number {
  font-size: 1rem;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-items .number {
    font-size: clamp(1.75rem, 0.225rem + 1.58vw, 2.125rem);
  }
}
.p-front-numbers__item.-items .value {
  font-size: 3.25rem;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-items .value {
    font-size: clamp(4.75rem, -2.365rem + 7.39vw, 6.5rem);
  }
}
.p-front-numbers__item.-items .annotation {
  font-size: 0.5rem;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-items .annotation {
    font-size: clamp(0.625rem, -0.137rem + 0.79vw, 0.813rem);
  }
}

.p-front-numbers__item.-government {
  padding-block: 6.375rem 4.0625rem;
  padding-inline: 3.125rem 2.625rem;
  margin-top: 1.5625rem;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-government {
    padding-block: clamp(8.75rem, 1.126rem + 7.92vw, 10.625rem) clamp(6.25rem, -1.374rem + 7.92vw, 8.125rem);
    padding-inline: 2.625rem 3.625rem;
    margin-top: calc(clamp(11.563rem, -3.685rem + 15.83vw, 15.313rem) * -1);
    margin-left: 18vw;
  }
}
.p-front-numbers__item.-government .achievements {
  padding-top: 0.4375rem;
  padding-right: 0.625rem;
  width: fit-content;
  position: absolute;
  top: 1.375rem;
  right: 0;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-government .achievements {
    padding-top: 1.125rem;
    padding-right: 1rem;
    top: 0.375rem;
  }
}
.p-front-numbers__item.-government .achievements-link {
  width: 1.625rem;
  height: 1.625rem;
  background-color: var(--black);
  border-radius: 50%;
  border: solid 0.125rem #fff;
  position: absolute;
  top: 0;
  right: 0;
  box-shadow: 0 0.4375rem 1.25rem rgba(0, 0, 0, 0.23);
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-government .achievements-link {
    width: clamp(2.5rem, 0.721rem + 1.85vw, 2.938rem);
    height: clamp(2.5rem, 0.721rem + 1.85vw, 2.938rem);
  }
}
.p-front-numbers__item.-government .achievements-link .plus {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: 0.5rem;
  height: 0.125rem;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-government .achievements-link .plus {
    width: clamp(0.875rem, -0.141rem + 1.06vw, 1.125rem);
    height: 0.25rem;
  }
}
.p-front-numbers__item.-government .achievements-link .plus::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
}
.p-front-numbers__item.-government .achievements-text {
  background-color: rgba(255, 255, 255, 0.62);
  border: solid 0.0625rem rgba(78, 210, 155, 0.62);
  border-radius: 1rem;
  width: fit-content;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  color: #4fb98d;
  padding: 0.5625rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-government .achievements-text {
    font-size: clamp(1.5rem, -0.533rem + 2.11vw, 2rem);
    padding: 0.75rem 1.875rem;
  }
}
.p-front-numbers__item.-government .title {
  margin-top: 0.3125rem;
  font-size: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-government .title {
    margin-top: unset;
    font-size: clamp(1.5rem, -0.533rem + 2.11vw, 2rem);
  }
}
.p-front-numbers__item.-government .number {
  font-size: 1.9375rem;
  text-align: center;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-government .number {
    font-size: clamp(3.375rem, -0.183rem + 3.69vw, 4.25rem);
    text-align: left;
    margin-top: -0.3125rem;
  }
}
.p-front-numbers__item.-government .value {
  font-size: 4.5rem;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-government .value {
    font-size: clamp(7.75rem, -7.497rem + 15.83vw, 11.5rem);
  }
}
.p-front-numbers__item.-government .image {
  position: absolute;
  top: -7.5rem;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
  width: 76%;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-government .image {
    aspect-ratio: 477/517;
    width: clamp(22.5rem, -7.232rem + 30.87vw, 29.813rem);
    height: clamp(24.375rem, -7.899rem + 33.51vw, 32.313rem);
    top: 0;
    right: unset;
    margin: unset;
  }
}

.p-front-numbers__item.-time {
  padding-right: 4.375rem;
  padding-bottom: 2.375rem;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-time {
    padding-right: clamp(3.125rem, -15.934rem + 19.79vw, 7.813rem);
    padding-bottom: clamp(3.75rem, -2.603rem + 6.6vw, 5.313rem);
    margin-top: calc(clamp(24.375rem, -11.202rem + 36.94vw, 33.125rem) * -1);
    margin-left: 52vw;
  }
}
.p-front-numbers__item.-time .label-bubble {
  font-size: 0.9375rem;
  padding: 0.1875rem 1.375rem;
  margin-bottom: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-time .label-bubble {
    font-size: clamp(1.75rem, -0.029rem + 1.85vw, 2.188rem);
    padding: 0.1875rem 2.875rem;
  }
}
.p-front-numbers__item.-time .label-bubble::after {
  left: 45%;
  border-width: 0.375rem 0.875rem 0 0;
  translate: calc(-50% - 0.0625rem) 100%;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-time .label-bubble::after {
    border-width: 0.6875rem 1.5rem 0 0;
  }
}
.p-front-numbers__item.-time .word {
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-time .word {
    font-size: clamp(2.125rem, -0.924rem + 3.17vw, 2.875rem);
  }
}
.p-front-numbers__item.-time .title {
  font-size: 1rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-time .title {
    font-size: clamp(1.75rem, -0.283rem + 2.11vw, 2.25rem);
    text-align: center;
    padding-left: 0.9375rem;
  }
}
.p-front-numbers__item.-time .info {
  margin-top: 0.875rem;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-time .info {
    margin-top: 1.875rem;
  }
}
.p-front-numbers__item.-time .number {
  white-space: nowrap;
  font-size: 1.9375rem;
  margin-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-time .number {
    font-size: clamp(3rem, -2.082rem + 5.28vw, 4.25rem);
    margin-left: 2.75rem;
  }
}
.p-front-numbers__item.-time .value {
  font-size: 4.5rem;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-time .value {
    font-size: clamp(6.875rem, -5.831rem + 13.19vw, 10rem);
  }
}
.p-front-numbers__item.-time .dash {
  font-size: 2.0625rem;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-time .dash {
    font-size: clamp(3.25rem, -2.087rem + 5.54vw, 4.563rem);
  }
}
.p-front-numbers__item.-time .image {
  width: 8.4375rem;
  height: 8.4375rem;
  position: absolute;
  bottom: 4.5rem;
  right: 0;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-time .image {
    bottom: 0;
    width: clamp(12.5rem, -11.642rem + 25.07vw, 18.438rem);
    height: clamp(12.5rem, -11.642rem + 25.07vw, 18.438rem);
  }
}

.p-front-numbers__item.-sales-quantity {
  padding-left: 2.8125rem;
  margin-top: 1.5625rem;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-sales-quantity {
    padding-left: clamp(3.438rem, -2.407rem + 6.07vw, 4.875rem);
    margin-top: 3.125rem;
    margin-left: 45.1vw;
  }
}
.p-front-numbers__item.-sales-quantity .title {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-sales-quantity .title {
    font-size: clamp(1.5rem, -0.533rem + 2.11vw, 2rem);
  }
}
.p-front-numbers__item.-sales-quantity .info {
  text-align: center;
  margin: 0 auto;
}
.p-front-numbers__item.-sales-quantity .label-bubble {
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
  padding: 0.0625rem 0.75rem;
  position: absolute;
  top: 2.5rem;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-sales-quantity .label-bubble {
    font-size: clamp(1.25rem, -0.783rem + 2.11vw, 1.75rem);
    padding: 0.125rem 1.1875rem;
    top: 24%;
  }
}
.p-front-numbers__item.-sales-quantity .label-bubble::after {
  left: 60%;
  border-width: 0.3125rem 0.75rem 0 0;
  translate: calc(-50% - 0.0625rem) 100%;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-sales-quantity .label-bubble::after {
    left: 55%;
    border-width: 0.5rem 1.125rem 0 0;
  }
}
.p-front-numbers__item.-sales-quantity .small {
  font-size: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-sales-quantity .small {
    font-size: clamp(1rem, -0.525rem + 1.58vw, 1.375rem);
  }
}
.p-front-numbers__item.-sales-quantity .number {
  font-size: 1.5rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-sales-quantity .number {
    font-size: clamp(2rem, -1.558rem + 3.69vw, 2.875rem);
    margin-top: clamp(2.5rem, -1.312rem + 3.96vw, 3.438rem);
  }
}
.p-front-numbers__item.-sales-quantity .value {
  font-size: 4rem;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-sales-quantity .value {
    font-size: clamp(5rem, -4.911rem + 10.29vw, 7.438rem);
  }
}
.p-front-numbers__item.-sales-quantity .text {
  font-size: 1.8125rem;
  color: var(--pink);
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-sales-quantity .text {
    font-size: clamp(2.25rem, -2.578rem + 5.01vw, 3.438rem);
  }
}

.p-front-numbers__item.-total-views {
  padding-block: 1.875rem;
  padding-left: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-total-views {
    padding-block: 3.4375rem;
    padding-left: clamp(1.875rem, -10.831rem + 13.19vw, 5rem);
    margin-top: -9.375rem;
  }
}
.p-front-numbers__item.-total-views .title {
  font-size: 1rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-total-views .title {
    font-size: clamp(1.875rem, -0.158rem + 2.11vw, 2.375rem);
  }
}
.p-front-numbers__item.-total-views .info {
  position: relative;
  margin-top: 1.5625rem;
}
.p-front-numbers__item.-total-views .number {
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-total-views .number {
    font-size: clamp(2.25rem, -0.037rem + 2.37vw, 2.813rem);
  }
}
.p-front-numbers__item.-total-views .value {
  font-size: 3.25rem;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-total-views .value {
    font-size: clamp(5.625rem, -0.22rem + 6.07vw, 7.063rem);
  }
}
.p-front-numbers__item.-total-views .annotation {
  font-size: 0.5rem;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-total-views .annotation {
    font-size: clamp(0.625rem, -0.646rem + 1.32vw, 0.938rem);
  }
}
.p-front-numbers__item.-total-views .c-pulse.-top {
  top: -21%;
  right: 5%;
}
.p-front-numbers__item.-total-views .c-pulse.-left {
  width: 1.25rem;
  top: 30%;
  left: -10%;
}
.p-front-numbers__item.-total-views .c-pulse.-bottom {
  width: 1.125rem;
  bottom: -5%;
  right: 38%;
}

.p-front-numbers__item.-products-quantity {
  position: relative;
  margin-top: 3.75rem;
  margin-right: 2.1875rem;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-products-quantity {
    margin-top: -4.375rem;
    margin-right: unset;
    margin-left: 49vw;
  }
}
.p-front-numbers__item.-products-quantity .title {
  position: relative;
  z-index: 1;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-products-quantity .title {
    font-size: clamp(1.875rem, -0.158rem + 2.11vw, 2.375rem);
    padding-right: 3.125rem;
  }
}
.p-front-numbers__item.-products-quantity .accent {
  width: 3.75rem;
  height: 3.75rem;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-products-quantity .accent {
    width: clamp(6.125rem, 1.043rem + 5.28vw, 7.375rem);
    height: clamp(6.125rem, 1.043rem + 5.28vw, 7.375rem);
    left: clamp(0rem, -5.082rem + 5.28vw, 1.25rem);
  }
}
.p-front-numbers__item.-products-quantity .info {
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 0 auto;
}
.p-front-numbers__item.-products-quantity .image {
  position: absolute;
  top: 0;
  right: 0;
  width: 8.8125rem;
  height: 9.1875rem;
  transform: translate(24%, -68%);
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-products-quantity .image {
    width: clamp(11.25rem, -2.981rem + 14.78vw, 14.75rem);
    height: clamp(11.875rem, -2.102rem + 14.51vw, 15.313rem);
    transform: translate(20%, -10%);
  }
}
.p-front-numbers__item.-products-quantity .number {
  font-size: 1.25rem;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-products-quantity .number {
    font-size: clamp(2.25rem, -0.037rem + 2.37vw, 2.813rem);
    margin-top: clamp(2.5rem, -1.312rem + 3.96vw, 3.438rem);
  }
}
.p-front-numbers__item.-products-quantity .value {
  font-size: 3.625rem;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-products-quantity .value {
    font-size: clamp(6.25rem, -2.39rem + 8.97vw, 8.375rem);
  }
}
.p-front-numbers__item.-products-quantity .annotation {
  text-align: right;
  font-size: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-front-numbers__item.-products-quantity .annotation {
    font-size: clamp(0.625rem, -0.646rem + 1.32vw, 0.938rem);
  }
}

/*=============================
取り扱い商品
=============================*/
.p-front-lineup {
  padding-block: 3.125rem 3.75rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-front-lineup {
    padding-block: 11.0625rem 6.5625rem;
  }
}
.p-front-lineup .p-front-title {
  text-align: center;
}
.p-front-lineup .p-front-button {
  padding-block: 0.9375rem 1rem;
  padding-inline: 2.8125rem;
  margin-top: 1.375rem;
  margin-inline: auto;
  background-color: var(--black);
  border: solid 0.0625rem #fff;
  color: #fff;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-front-lineup .p-front-button {
    padding-block: 1.5rem;
    margin-top: 2.6875rem;
  }
}
.p-front-lineup .p-front-button:hover {
  background-color: #fff;
  color: var(--black);
}
.p-front-lineup .p-front-button:hover .icon-link {
  background-image: url("../images/icons/icon-link-blk.png");
}
.p-front-lineup .icon-link {
  width: 0.625rem;
  height: 0.625rem;
  background-image: url("../images/icons/icon-link-wht.png");
  background-size: 100%;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 2.1875rem;
  transform: translateY(-50%);
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-front-lineup .icon-link {
    width: 1rem;
    height: 1rem;
  }
}
.p-front-lineup .shadow {
  aspect-ratio: 1646/205;
  width: 100%;
  height: auto;
  background-color: rgba(175, 181, 197, 0.5);
  border-radius: 50%;
  filter: blur(1.875rem);
  position: absolute;
  bottom: 6.875rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-front-lineup .shadow {
    width: 80%;
    bottom: 10.25rem;
  }
}

.p-front-lineup__catch {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  background: #ea3776;
  background: linear-gradient(to right, #ea3776 0%, #ed7a49 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-front-lineup__catch {
    font-size: 2.625rem;
    margin-top: 1.875rem;
  }
}

.p-front-lineup__contents {
  margin-top: 1.875rem;
  padding-bottom: 1.25rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-front-lineup__contents {
    margin-top: 4.375rem;
    padding-bottom: 2.375rem;
  }
}

.p-front-lineup__container {
  overflow: hidden;
  width: 100%;
}
.p-front-lineup__container.-lower {
  margin-top: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-front-lineup__container.-lower {
    margin-top: 2.25rem;
  }
}

.p-front-lineup__list {
  transition-timing-function: linear;
}
.p-front-lineup__list.css-slider {
  display: flex;
  gap: 1.25rem;
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-front-lineup__list.css-slider {
    gap: 1.875rem;
  }
}
@keyframes slide-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes slide-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.p-front-lineup__list.css-slider:not(.-reverse) {
  animation: slide-left 10s linear infinite;
}
@media screen and (min-width: 768px) {
  .p-front-lineup__list.css-slider:not(.-reverse) {
    animation: slide-left 20s linear infinite;
  }
}
.p-front-lineup__list.css-slider.-reverse {
  animation: slide-right 10s linear infinite;
}
@media screen and (min-width: 768px) {
  .p-front-lineup__list.css-slider.-reverse {
    animation: slide-right 20s linear infinite;
  }
}

.p-front-lineup__item {
  border-radius: 8.125rem;
  overflow: hidden;
  flex-shrink: 0;
  min-width: 11.75rem;
}
@media screen and (min-width: 768px) {
  .p-front-lineup__item {
    width: clamp(22.5rem, -8.503rem + 32.19vw, 30.125rem);
  }
}

.p-front-lineup__link {
  display: flex;
  align-items: stretch;
  gap: 0.75rem;
  background-color: #fff;
  padding: 0.6875rem 0.75rem;
  position: relative;
  transition: 0.3s;
  cursor: url("../images/common/cursor-default.svg"), auto;
}
@media screen and (min-width: 768px) {
  .p-front-lineup__link {
    gap: 2.0625rem;
    padding: 1.9375rem 2.125rem;
  }
}
.p-front-lineup__link:hover {
  color: #fff;
}
.p-front-lineup__link:hover .sub-title {
  color: #fff;
}
.p-front-lineup__link:hover .more {
  opacity: 1;
}
.p-front-lineup__link:hover .hover-bg {
  opacity: 1;
}
.p-front-lineup__link .hover-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.3s;
}

.p-front-lineup__image {
  width: 4.6875rem;
  height: 4.6875rem;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-front-lineup__image {
    width: clamp(7.5rem, -10.034rem + 18.21vw, 11.813rem);
    height: clamp(7.5rem, -10.034rem + 18.21vw, 11.813rem);
  }
}
.p-front-lineup__image .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-front-lineup__category {
  flex: 1;
  position: relative;
  z-index: 1;
}
.p-front-lineup__category .sub-title {
  margin-top: 0.625rem;
  line-height: 1;
  font-size: 0.5rem;
  font-weight: 600;
  color: var(--darkgrey);
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-front-lineup__category .sub-title {
    margin-top: clamp(0.625rem, -1.916rem + 2.64vw, 1.25rem);
    font-size: clamp(0.875rem, 0.367rem + 0.53vw, 1rem);
  }
}
.p-front-lineup__category .title {
  font-size: 0.625rem;
  font-weight: bold;
  margin-top: 0.8125rem;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-front-lineup__category .title {
    margin-top: clamp(1.25rem, -3.832rem + 5.28vw, 2.5rem);
    font-size: clamp(1.125rem, -0.4rem + 1.58vw, 1.5rem);
  }
}
.p-front-lineup__category .more {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  font-size: 0.5rem;
  font-weight: 600;
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-front-lineup__category .more {
    gap: 0.625rem;
    font-size: clamp(1rem, 0.492rem + 0.53vw, 1.125rem);
  }
}
.p-front-lineup__category .c-arrow {
  width: 1rem;
  height: 0.625rem;
  position: relative;
  bottom: unset;
  right: unset;
  transform: unset;
}
@media screen and (min-width: 768px) {
  .p-front-lineup__category .c-arrow {
    width: 2.5625rem;
    height: 1.5625rem;
  }
}
.p-front-lineup__category .c-arrow::after {
  width: 0.3125rem;
  height: 0.3125rem;
  transform: translate(0.0625rem, 0.0625rem) rotate(45deg);
}
@media screen and (min-width: 768px) {
  .p-front-lineup__category .c-arrow::after {
    width: 0.8125rem;
    height: 0.8125rem;
    transform: rotate(45deg);
  }
}

/*=============================
コンバージョンエリア
=============================*/
.p-front-cv {
  margin-top: -8.4375rem;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-front-cv {
    margin-top: -14.375rem;
  }
}
.p-front-cv .p-front-bg__circle {
  padding-top: 8.4375rem;
}
@media screen and (min-width: 768px) {
  .p-front-cv .p-front-bg__circle {
    padding-top: 14.375rem;
  }
}
.p-front-cv .p-front-bg__circle::before {
  aspect-ratio: 990/690;
  min-width: 61.875rem;
  background-color: var(--lightgrey);
}
@media screen and (min-width: 768px) {
  .p-front-cv .p-front-bg__circle::before {
    aspect-ratio: 2180/820;
  }
}
.p-front-cv .c-cv {
  padding: 0;
  background-color: transparent;
}

.p-front-cv__contents {
  padding-inline: 0.625rem;
  padding-bottom: 5.5rem;
  background: linear-gradient(90deg, #ffffff 0%, #edeff3 20%, #edeff3 100%);
  background: -webkit-linear-gradient(90deg, #ffffff 0%, #edeff3 20%, #edeff3 100%);
}
@media screen and (min-width: 768px) {
  .p-front-cv__contents {
    padding-inline: unset;
    padding-bottom: 15.625rem;
    background: linear-gradient(90deg, #ffffff 0%, #edeff3 50%, #edeff3 100%);
    background: -webkit-linear-gradient(90deg, #ffffff 0%, #edeff3 50%, #edeff3 100%);
  }
}

.p-front-cv__lower {
  display: flex;
  flex-direction: column;
  gap: 0.4375rem;
  width: 100%;
  max-width: 104.375rem;
  margin-top: 0.4375rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-front-cv__lower {
    flex-direction: unset;
    gap: 0.75rem;
    width: 90%;
    margin-top: 2.625rem;
  }
}

.p-front-cv__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  background-position: center;
  background-size: cover;
  padding-block: 1.375rem 1.5625rem;
  border-radius: 0.625rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-front-cv__contact {
    padding-block: 2.625rem 2.1875rem;
    border-radius: 1.25rem;
  }
}
.p-front-cv__contact .sub-title {
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--lightgreen);
}
@media screen and (min-width: 768px) {
  .p-front-cv__contact .sub-title {
    font-size: 0.875rem;
  }
}
.p-front-cv__contact .title {
  font-size: 1.125rem;
  font-weight: 500;
  color: #fff;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-front-cv__contact .title {
    font-size: 1.75rem;
  }
}
.p-front-cv__contact .cv-button {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  border: solid 0.0625rem #fff;
  border-radius: 2.5rem;
  padding-block: 0.9375rem 1rem;
  padding-inline: 0.9375rem 2.1875rem;
  margin-top: 0.875rem;
  width: fit-content;
  min-width: 15.75rem;
  background: -webkit-linear-gradient(270deg, #4ED29B, #3F98AF);
  overflow: hidden;
  position: relative;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-front-cv__contact .cv-button {
    font-size: 0.875rem;
    min-width: 21.0625rem;
    padding: 1.1875rem 2.5rem;
    margin-top: 1.625rem;
  }
}
.p-front-cv__contact .cv-button::before {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 1.375rem;
  transform: translateY(-50%);
  z-index: 1;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-front-cv__contact .cv-button::before {
    width: 0.5625rem;
    height: 0.5625rem;
    right: 1.625rem;
  }
}
.p-front-cv__contact .cv-button::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background-color: #fff;
  opacity: 0;
  transition: 0.3s;
}
.p-front-cv__contact .cv-button:hover {
  border: solid 0.0625rem var(--lightgreen);
}
.p-front-cv__contact .cv-button:hover::before {
  background-color: var(--lightgreen);
}
.p-front-cv__contact .cv-button:hover::after {
  opacity: 1;
}
.p-front-cv__contact .cv-button:hover .text {
  color: var(--lightgreen);
}
.p-front-cv__contact .cv-button .text {
  color: #fff;
  position: relative;
  z-index: 1;
  transition: 0.3s;
}

.p-front-cv__contact:first-child {
  background-image: url("../images/front/cv-government-bg.webp");
}

.p-front-cv__contact:last-child {
  background-image: url("../images/front/cv-media-bg.webp");
}
@media screen and (min-width: 768px) {
  .p-front-cv__contact:last-child .cv-button {
    padding-inline: 2.5rem 3.5625rem;
  }
}

/*=============================
コラム
=============================*/
.p-front-column {
  margin-top: 6.25rem;
}
@media screen and (min-width: 768px) {
  .p-front-column {
    margin-top: 10.625rem;
  }
}
.p-front-column .p-front-button-anime {
  margin: 2.125rem auto 0;
}
@media screen and (min-width: 768px) {
  .p-front-column .p-front-button-anime {
    margin: 1.25rem auto 0;
  }
}

.p-front-column__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: 90%;
  max-width: 87.5rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-front-column__head {
    flex-direction: unset;
    align-items: center;
  }
}

.p-front-column__particles {
  position: relative;
  z-index: 3;
}

.p-front-column__sub-title {
  display: inline-block;
  margin-top: -0.5rem;
}
@media screen and (min-width: 768px) {
  .p-front-column__sub-title {
    margin-top: -0.75rem;
  }
}
.p-front-column__sub-title .text {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1;
  padding-top: 0.9375rem;
  padding-inline: 1.125rem 1.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-front-column__sub-title .text {
    font-size: 2rem;
    padding-top: 1.3125rem;
    padding-inline: 1.5625rem 2.3125rem;
  }
}
.p-front-column__sub-title .text::before, .p-front-column__sub-title .text::after {
  content: "";
  display: inline-block;
  width: 2.75rem;
  height: 2.1875rem;
  background-image: url("../images/front/double-quotation-gry.webp");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top;
  position: absolute;
  top: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-front-column__sub-title .text::before, .p-front-column__sub-title .text::after {
    width: 3.875rem;
    height: 3.125rem;
  }
}
.p-front-column__sub-title .text::before {
  left: 0;
}
.p-front-column__sub-title .text::after {
  transform: rotate(180deg);
  right: 0;
}
.p-front-column__sub-title .dot {
  background-image: radial-gradient(circle at center, var(--orange) 20%, transparent 20%);
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1em 0.3em;
  padding-top: 0.1em;
}
.p-front-column__sub-title .square {
  display: inline-block;
  background-color: var(--black);
  border-radius: 0.3125rem;
  font-size: 1.375rem;
  color: #fff;
  padding: 0.125rem 0.1875rem 0.3125rem;
  margin-left: 0.0625rem;
}
@media screen and (min-width: 768px) {
  .p-front-column__sub-title .square {
    font-size: 2rem;
    padding: 0.375rem 0.4375rem 0.5rem;
  }
}
.p-front-column__sub-title .square:first-child {
  margin-left: 0.5rem;
}

.p-front-column__explanation {
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 1rem;
  padding-inline: 0.625rem;
  margin-top: 1.4375rem;
}
@media screen and (min-width: 768px) {
  .p-front-column__explanation {
    font-size: 1.125rem;
    padding-inline: 0 6.25rem;
    margin-top: 0;
  }
}
.p-front-column__explanation .accent {
  font-size: 1.125rem;
  color: var(--orange);
}
@media screen and (min-width: 768px) {
  .p-front-column__explanation .accent {
    font-size: 1.5rem;
  }
}

.p-front-column__contents {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-front-column__contents {
    margin-top: 3.875rem;
    padding-inline: 0.625rem;
  }
}
@media screen and (min-width: 1541px) {
  .p-front-column__contents {
    padding-inline: 0.625rem;
  }
}

.p-front-column__container {
  width: 100%;
  overflow: hidden;
}

.p-front-column__item {
  padding-inline: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-front-column__item {
    padding-inline: 0.75rem;
  }
}

.p-front-column__controls {
  position: relative;
  margin-top: 1.25rem;
  margin-inline: 2.5rem;
  width: calc(100% - 5rem);
}
@media screen and (min-width: 768px) {
  .p-front-column__controls {
    width: 90%;
    margin-top: 1rem;
    margin-inline: auto;
  }
}

.p-front-column__slider-pagination {
  width: calc(100% - 6.875rem) !important;
  max-width: 42.75rem;
  position: absolute;
  top: 50% !important;
  left: 0 !important;
  transform: translateY(-50%);
  z-index: 0;
  background: var(--lightgrey);
  border-radius: 0.625rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-front-column__slider-pagination {
    width: 100%;
    left: 50% !important;
    transform: translate(-50%, -50%);
  }
}
.p-front-column__slider-pagination .swiper-pagination-progressbar-fill {
  height: 0.3125rem;
  background: var(--orange);
  border-radius: 0.625rem;
  overflow: hidden;
}

.p-front-column__slider-nav {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  width: fit-content;
  position: relative;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .p-front-column__slider-nav {
    gap: 0.5625rem;
  }
}

.p-front-column__slider-prev,
.p-front-column__slider-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.875rem;
  height: 2.875rem;
  background-color: var(--lightgrey);
  border-radius: 50%;
  position: relative;
  cursor: url("../images/common/a-cursor.png") 20 18, auto;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-front-column__slider-prev,
  .p-front-column__slider-next {
    width: 5rem;
    height: 5rem;
  }
}
.p-front-column__slider-prev:hover,
.p-front-column__slider-next:hover {
  background-color: var(--black);
}
.p-front-column__slider-prev:hover .c-arrow-v::before, .p-front-column__slider-prev:hover .c-arrow-v::after,
.p-front-column__slider-next:hover .c-arrow-v::before,
.p-front-column__slider-next:hover .c-arrow-v::after {
  background-color: #fff;
}
.p-front-column__slider-prev .c-arrow-v,
.p-front-column__slider-next .c-arrow-v {
  margin: 0;
  width: 0.875rem;
  height: 0.5rem;
}
.p-front-column__slider-prev .c-arrow-v::before, .p-front-column__slider-prev .c-arrow-v::after,
.p-front-column__slider-next .c-arrow-v::before,
.p-front-column__slider-next .c-arrow-v::after {
  width: 0.125rem;
  height: 0.4375rem;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-front-column__slider-prev .c-arrow-v::before, .p-front-column__slider-prev .c-arrow-v::after,
  .p-front-column__slider-next .c-arrow-v::before,
  .p-front-column__slider-next .c-arrow-v::after {
    width: 0.1875rem;
    height: 0.625rem;
  }
}

.p-front-column__slider-prev .c-arrow-v {
  transform: rotate(90deg);
}

.p-front-column__slider-next .c-arrow-v {
  transform: rotate(-90deg);
}

/*=============================
ニュース
=============================*/
.p-front-news .p-front-title {
  text-align: center;
}
.p-front-news .p-front-button-anime {
  margin-top: 1.25rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-front-news .p-front-button-anime {
    margin-top: 4.0625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-front-news__inner {
    width: 90%;
    max-width: 75rem;
    margin: 0 auto;
  }
}

.p-front-news__contents {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3.75rem;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-front-news__contents {
    gap: 4.6875rem;
    margin-top: 4.0625rem;
  }
}

.p-front-news__archive {
  width: calc(100% - 1.25rem);
  margin-left: 1.25rem;
  flex: 1;
}
@media screen and (min-width: 768px) {
  .p-front-news__archive {
    width: 100%;
    margin-left: unset;
  }
}
.p-front-news__archive:first-child .p-front-button-anime {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-front-news__archive:first-child .p-front-button-anime {
    margin-top: 3.375rem;
  }
}
.p-front-news__archive .archive-title__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3.3125rem;
}
.p-front-news__archive .archive-title {
  position: relative;
  padding-right: 0.9375rem;
  padding-bottom: 0.1875rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-front-news__archive .archive-title {
    padding-right: 1.375rem;
    padding-bottom: 0.3125rem;
  }
}
.p-front-news__archive .archive-title::before {
  content: "";
  display: inline-block;
  width: calc(100% - 0.3125rem);
  height: 0.125rem;
  background-color: var(--black);
  position: absolute;
  bottom: 0.25rem;
  left: 0;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-front-news__archive .archive-title::before {
    width: calc(100% - 0.5rem);
    height: 0.1875rem;
    bottom: 0.4375rem;
  }
}
.p-front-news__archive .archive-title::after {
  content: "";
  display: inline-block;
  width: 0.625rem;
  height: 0.625rem;
  background-color: var(--lightblue);
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .p-front-news__archive .archive-title::after {
    width: 1.0625rem;
    height: 1.0625rem;
  }
}
.p-front-news__archive .contact-button {
  gap: 0.4375rem;
  font-size: 0.625rem;
  padding-block: 0.5rem;
  padding-inline: 0.625rem 1rem;
  margin-right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-front-news__archive .contact-button {
    gap: 0.6875rem;
    font-size: 1rem;
    padding-block: 0.6875rem;
    padding-inline: 0.875rem 1.6875rem;
    margin-right: 0;
  }
}
.p-front-news__archive .contact-button .icon {
  width: 1.6875rem;
  height: 1.6875rem;
}
@media screen and (min-width: 768px) {
  .p-front-news__archive .contact-button .icon {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.p-front-news__archive .contact-button.none {
  display: none;
}
.p-front-news__archive .contact-button.block {
  display: flex;
}

.p-front-news__archive-conatiner {
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-front-news__archive-conatiner {
    margin-top: 1.5625rem;
  }
}
.p-front-news__archive-conatiner .tab-area {
  border-bottom: solid 0.0625rem var(--lightblue);
}
.p-front-news__archive-conatiner .tab-list {
  display: flex;
  cursor: pointer;
  width: 100%;
  overflow-y: hidden;
  overflow-x: auto;
  position: relative;
  bottom: -0.0625rem;
}
.p-front-news__archive-conatiner .tab-list::-webkit-scrollbar {
  display: none;
}
.p-front-news__archive-conatiner .tab-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  min-width: 9.0625rem;
  color: var(--darkgrey);
  padding-top: 0.4375rem;
  margin-bottom: 0.0625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-front-news__archive-conatiner .tab-item {
    min-width: 12.8125rem;
    padding-top: 0.625rem;
  }
}
.p-front-news__archive-conatiner .tab-item.is-active {
  color: var(--navy);
  border-bottom: none;
  padding-top: 0 !important;
}
.p-front-news__archive-conatiner .tab-item.is-active .tab {
  background-color: #fff;
  border: solid 0.0625rem var(--lightblue);
  border-bottom: none;
  border-radius: 0.625rem 0.625rem 0 0;
  padding-block: 0.75rem 0.375rem;
  position: relative;
  bottom: -0.0625rem;
}
@media screen and (min-width: 768px) {
  .p-front-news__archive-conatiner .tab-item.is-active .tab {
    padding-block: 1.125rem 0.625rem;
  }
}
.p-front-news__archive-conatiner .tab-item:not(:last-child) {
  padding-right: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .p-front-news__archive-conatiner .tab-item:not(:last-child) {
    padding-right: 0.3125rem;
  }
}
.p-front-news__archive-conatiner .tab {
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--lightgrey);
  font-size: 0.75rem;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  padding-block: 0.375rem;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-front-news__archive-conatiner .tab {
    font-size: 1rem;
    padding-block: 0.5625rem;
  }
}
.p-front-news__archive-conatiner .panel-list {
  margin-right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-front-news__archive-conatiner .panel-list {
    margin: 0 auto;
  }
}
.p-front-news__archive-conatiner .panel-item {
  display: none;
  width: 100%;
  margin: 0 auto;
}
.p-front-news__archive-conatiner .panel-item.is-active {
  display: block;
}
.p-front-news__archive-conatiner .panel-link {
  gap: 1.25rem;
  padding-block: 1.875rem;
  padding-inline: 1.375rem 0.9375rem;
  border-bottom: solid 0.0625rem var(--lightblue);
  background-color: #fff;
  position: relative;
  transition: 0.3s;
}
.p-front-news__archive-conatiner .panel-link .data {
  flex: 1;
}
.p-front-news__archive-conatiner .panel-link .taxonomy {
  flex-wrap: wrap;
}
.p-front-news__archive-conatiner .panel-link .title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.p-front-news__archive-conatiner .panel-link.-sp {
  display: block;
  padding-inline: 0.5rem 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-front-news__archive-conatiner .panel-link.-sp {
    display: none;
  }
}
.p-front-news__archive-conatiner .panel-link.-sp:hover .c-arrow {
  width: 1.8125rem;
  height: 1.125rem;
}
.p-front-news__archive-conatiner .panel-link.-sp .upper {
  display: flex;
  gap: 1rem;
}
.p-front-news__archive-conatiner .panel-link.-sp .image {
  width: 5.3125rem;
  height: 3.3125rem;
}
.p-front-news__archive-conatiner .panel-link.-sp .date {
  display: flex;
  gap: 0.1875rem;
  width: 100%;
  margin-top: 0;
}
.p-front-news__archive-conatiner .panel-link.-sp .year {
  font-size: 0.625rem;
}
.p-front-news__archive-conatiner .panel-link.-sp .day {
  font-size: 1rem;
}
.p-front-news__archive-conatiner .panel-link.-sp .taxonomy {
  gap: 0.625rem;
  margin-top: 0.3125rem;
}
.p-front-news__archive-conatiner .panel-link.-sp .c-badge {
  font-size: 0.75rem;
}
.p-front-news__archive-conatiner .panel-link.-sp .title {
  margin-top: 0.5625rem;
}
.p-front-news__archive-conatiner .panel-link.-sp .c-arrow {
  width: 0.5rem;
  height: 0.5rem;
  bottom: 0.375rem;
  right: 0.25rem;
}
.p-front-news__archive-conatiner .panel-link.-sp .c-arrow::after {
  width: 0.5625rem;
  height: 0.5625rem;
}
.p-front-news__archive-conatiner .panel-link.-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-front-news__archive-conatiner .panel-link.-pc {
    display: flex;
  }
}
.p-front-news__archive-conatiner .date {
  font-family: "Wix Madefor Display", "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  width: 4.375rem;
  margin-top: 0.4375rem;
  transition: 0.3s;
}
.p-front-news__archive-conatiner .year {
  font-size: 0.875rem;
  font-weight: 600;
}
.p-front-news__archive-conatiner .day {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}
.p-front-news__archive-conatiner .image {
  aspect-ratio: 196/122;
  width: 24%;
  height: auto;
  max-width: 12.25rem;
  border: solid 0.1875rem var(--lightgrey);
  border-radius: 0.3125rem;
  overflow: hidden;
}
.p-front-news__archive-conatiner .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.p-front-news__archive-conatiner .detail {
  flex: 1;
  padding-left: 0.625rem;
}
.p-front-news__archive-conatiner .taxonomy {
  display: flex;
  align-items: center;
  gap: 1.125rem;
}
.p-front-news__archive-conatiner .title {
  font-weight: 500;
  margin-top: 1.25rem;
  transition: 0.3s;
}
.p-front-news__archive-conatiner .c-arrow {
  width: 0.75rem;
  height: 0.75rem;
  bottom: 1.4375rem;
  right: 0.9375rem;
}
.p-front-news__archive-conatiner .c-arrow::after {
  opacity: 0;
}

.panel-item.-media.is-active {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.9375rem;
  row-gap: 1.875rem;
  padding-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .panel-item.-media.is-active {
    column-gap: 1.25rem;
    row-gap: 3.75rem;
    padding-top: 2.375rem;
  }
}
.panel-item.-media.is-active .panel-link {
  width: 100%;
  padding: 0;
  border-bottom: none;
}
@media screen and (min-width: 650px) {
  .panel-item.-media.is-active .panel-link {
    width: calc((100% - 0.9375rem) / 2);
  }
}
@media screen and (min-width: 768px) {
  .panel-item.-media.is-active .panel-link {
    width: calc((100% - 2.5rem) / 3);
  }
}
.panel-item.-media.is-active .panel-link:hover .title {
  color: #196fd3;
}
.panel-item.-media.is-active .panel-link:hover .image img {
  transform: scale(1.15);
}
.panel-item.-media.is-active .image {
  aspect-ratio: 386/240;
  width: 100%;
  max-width: 100%;
}
.panel-item.-media.is-active .detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 0.625rem;
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .panel-item.-media.is-active .detail {
    margin-top: 1.25rem;
  }
}
.panel-item.-media.is-active .date {
  margin-top: 0;
  font-weight: 600;
  width: auto;
  padding-right: 0.125rem;
}
.panel-item.-media.is-active .title {
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .panel-item.-media.is-active .title {
    margin-top: 0.75rem;
  }
}

.panel-item.-information.is-active .panel-link:hover {
  background-color: #eef6fe;
}
.panel-item.-information.is-active .panel-link:hover .date,
.panel-item.-information.is-active .panel-link:hover .title {
  color: #196fd3;
}
.panel-item.-information.is-active .panel-link:hover .image img {
  transform: scale(1.15);
}
.panel-item.-information.is-active .panel-link:hover .c-badge {
  background-color: #fff;
}
.panel-item.-information.is-active .panel-link:hover .c-arrow {
  width: 2.75rem;
  height: 1.6875rem;
}
.panel-item.-information.is-active .panel-link:hover .c-arrow::after {
  opacity: 1;
}

/*=============================
採用情報
=============================*/
.p-front-recruit {
  padding-bottom: 3.75rem;
  margin-top: 4.375rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-front-recruit {
    padding-bottom: 8.75rem;
    margin-top: 9.0625rem;
  }
}
.p-front-recruit .p-front-title {
  text-align: center;
}
.p-front-recruit .title-h2 {
  font-size: 3rem;
  line-height: 1;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-front-recruit .title-h2 {
    font-size: 8.4375rem;
  }
}
.p-front-recruit .p-front-loop-text {
  position: absolute;
  bottom: -0.625rem;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-front-recruit .p-front-loop-text {
    bottom: -1.75rem;
  }
}

.p-front-recruit__link {
  display: block;
  background-image: url("../images/front/recruit-bg-sp.webp");
  background-size: cover;
  background-position: center;
  padding-block: 3.3125rem 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-front-recruit__link {
    background-image: url("../images/front/recruit-bg-pc.webp");
    padding-block: 14.6875rem;
  }
}

.p-front-recruit__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  padding-block: 0.9375rem 0.3125rem;
  max-width: 28.125rem;
}
@media screen and (min-width: 768px) {
  .p-front-recruit__inner {
    gap: 1.875rem;
    max-width: 75rem;
  }
}

.p-front-recruit__bubble {
  width: 4.6875rem;
  height: 2rem;
  position: absolute;
  top: 1.25rem;
  right: clamp(0rem, -3.468rem + 14.8vw, 3.625rem);
}
@media screen and (min-width: 768px) {
  .p-front-recruit__bubble {
    width: 9.4375rem;
    height: 4.0625rem;
    top: 0;
    right: 4.875rem;
  }
}

.p-front-recruit__lead {
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-front-recruit__lead {
    font-size: 2rem;
    text-align: left;
  }
}

.p-front-recruit__text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-front-recruit__text {
    font-size: 1.125rem;
    text-align: center;
  }
}

/*----------------------------------

About us

----------------------------------*/
/*=============================
vision
=============================*/
.p-about-vision {
  padding-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-about-vision {
    padding-top: 6.5625rem;
  }
}

.p-about-vision__head {
  text-align: center;
}

.p-about-vision__title .c-title__sub {
  font-size: 1.125rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-about-vision__title .c-title__sub {
    font-size: 1.5rem;
  }
}
.p-about-vision__title .c-title__main {
  font-size: 2.25rem;
  font-weight: 800;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-about-vision__title .c-title__main {
    font-size: 4.3125rem;
    margin-top: 1.25rem;
  }
}

.p-about-vision__lead {
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-about-vision__lead {
    font-size: 2rem;
    margin-top: 1.875rem;
  }
}

.p-about-vision__contents {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 2.0625rem;
  width: 90%;
  max-width: 101.625rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-about-vision__contents {
    flex-direction: unset;
    align-items: unset;
    gap: 6.25rem;
    width: 97%;
  }
}

.p-about-vision__text {
  width: fit-content;
  font-weight: 500;
  flex: 1;
}
@media screen and (min-width: 768px) {
  .p-about-vision__text {
    width: 100%;
    padding-left: clamp(3.438rem, -7.998rem + 11.87vw, 6.25rem);
  }
}
.p-about-vision__text p + p {
  margin-top: 1.25rem !important;
}
@media screen and (min-width: 768px) {
  .p-about-vision__text p + p {
    margin-top: 3rem !important;
  }
}
.p-about-vision__text [style*="font-size: 2.625rem"] {
  font-size: 1.125rem !important;
}
@media screen and (min-width: 768px) {
  .p-about-vision__text [style*="font-size: 2.625rem"] {
    font-size: 2.625rem !important;
  }
}

.p-about-vision__image {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-about-vision__image {
    width: clamp(40.313rem, 19.983rem + 21.11vw, 45.313rem);
  }
}
.p-about-vision__image .image {
  width: 100%;
}

/*=============================
philosophy
=============================*/
.p-about-philosophy {
  background-color: #F9FBFE;
  padding-block: 3.75rem 2.1875rem;
  margin-top: 3.5625rem;
}
@media screen and (min-width: 768px) {
  .p-about-philosophy {
    padding-block: 9.8125rem 8.125rem;
    margin-top: 7.8125rem;
  }
}

.p-about-philosophy__inner {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-about-philosophy__inner {
    flex-direction: unset;
    gap: 5.5vw;
  }
}

.p-about-philosophy__head {
  width: 100%;
  padding-block: 0 3.125rem;
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-about-philosophy__head {
    width: clamp(32.313rem, -13.43rem + 47.49vw, 43.563rem);
    padding-block: 5.375rem 12.1875rem;
    align-self: flex-start;
    position: sticky;
    top: 0;
  }
}
.p-about-philosophy__head::before {
  content: "";
  display: inline-block;
  width: 22.25rem;
  height: 73%;
  max-height: 20.5rem;
  background-color: var(--lightgrey);
  border-radius: 0 12.5rem 12.5rem 0;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-about-philosophy__head::before {
    width: clamp(24.063rem, -21.68rem + 47.49vw, 35.313rem);
    height: 68%;
  }
}

.p-about-philosophy__head-inner {
  max-width: 90%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-about-philosophy__head-inner {
    max-width: 27.5rem;
    margin-inline: unset;
    margin-left: auto;
  }
}

.p-about-philosophy__text {
  width: 94%;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2;
  color: var(--darkgrey);
  margin-top: 1.25rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-about-philosophy__text {
    width: unset;
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-inline: unset;
  }
}

.p-about-philosophy__body {
  flex: 1;
}

.p-about-philosophy__list {
  max-width: 53.5rem;
  counter-reset: listnum;
  padding-inline: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-about-philosophy__list {
    padding-inline: 0;
  }
}

.p-about-philosophy__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  padding-bottom: 1.5625rem;
  border-bottom: solid 0.0625rem var(--lightblue);
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-about-philosophy__item {
    flex-direction: unset;
    align-items: unset;
    gap: 3.625rem;
    padding-left: 1.875rem;
    padding-bottom: 4.25rem;
  }
}
.p-about-philosophy__item::after {
  content: "";
  display: inline-block;
  width: 1.875rem;
  height: 0.25rem;
  background-color: var(--lightblue);
  border-radius: 0.125rem;
  position: absolute;
  bottom: -0.125rem;
  left: 0;
}
.p-about-philosophy__item:not(:last-child) {
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-about-philosophy__item:not(:last-child) {
    margin-bottom: 5rem;
  }
}
.p-about-philosophy__item .number {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.875rem;
  color: var(--main-c);
}
@media screen and (min-width: 768px) {
  .p-about-philosophy__item .number {
    font-size: 1.125rem;
  }
}
.p-about-philosophy__item .num-wrap {
  font-size: 1.25rem;
  line-height: 1;
  margin-top: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .p-about-philosophy__item .num-wrap {
    font-size: 1.625rem;
  }
}
.p-about-philosophy__item .num {
  display: inline-block;
  margin-inline: 0.75rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-about-philosophy__item .num {
    margin-inline: 1.1875rem;
  }
}
.p-about-philosophy__item .num::after {
  content: counter(listnum, decimal-leading-zero);
  counter-increment: listnum;
  width: 2.5rem;
  display: inline-block;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-about-philosophy__item .detail {
    margin-top: 1.25rem;
  }
}
.p-about-philosophy__item .title {
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-about-philosophy__item .title {
    font-size: 1.75rem;
  }
}
.p-about-philosophy__item .text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-about-philosophy__item .text {
    font-size: 1.125rem;
    margin-top: 1.875rem;
  }
}

/*=============================
action
=============================*/
@font-face {
  font-family: "HandwritingErnie";
  src: url("../fonts/AdobeHandwriting-Ernie.ttf") format("truetype");
}
.p-about-action {
  margin-top: 4.0625rem;
}
@media screen and (min-width: 768px) {
  .p-about-action {
    margin-top: 8.125rem;
  }
}

.p-about-action__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .p-about-action__head {
    flex-direction: unset;
    align-items: flex-end;
  }
}

.p-about-action__lead {
  width: 100%;
  flex: 1;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  margin-top: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-about-action__lead {
    width: unset;
    font-size: 1.75rem;
    margin-top: 0;
    margin-bottom: 0.625rem;
  }
}

.p-about-action__list {
  counter-reset: listnum;
  margin-top: 2.5rem;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-about-action__list {
    margin-top: 3.125rem;
    padding-inline: 0;
  }
}

.p-about-action__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.0625rem;
  border-bottom: solid 0.0625rem var(--lightblue);
  padding-block: 3.75rem 1.875rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-about-action__item {
    flex-direction: unset;
    align-items: flex-start;
    gap: 2.75rem;
    padding-block: 8.75rem 3.4375rem;
    padding-left: 8.125rem;
  }
}
.p-about-action__item:first-child {
  border-top: solid 0.0625rem var(--lightblue);
}
.p-about-action__item::before {
  content: counter(listnum, decimal-leading-zero);
  counter-increment: listnum;
  font-family: "Wix Madefor Display", "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-size: 1.125rem;
  line-height: 1;
  color: var(--darkgrey);
  position: absolute;
  top: 1.875rem;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-about-action__item::before {
    font-size: 1.625rem;
    top: 2.5rem;
    left: 2.8125rem;
  }
}
.p-about-action__item .title {
  width: 100%;
  font-size: 2.25rem;
  line-height: 1;
  text-align: center;
  color: var(--main-c);
}
@media screen and (min-width: 768px) {
  .p-about-action__item .title {
    width: 20.9375rem;
    font-size: 2.75rem;
  }
}
.p-about-action__item .catch {
  width: 100%;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-about-action__item .catch {
    width: 23.75rem;
    font-size: 1.5rem;
    text-align: left;
  }
}
.p-about-action__item .text {
  flex: 1;
  font-weight: 500;
  line-height: 1.9;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-about-action__item .text {
    margin-top: 0.625rem;
  }
}
.p-about-action__item .item-bg {
  font-family: "HandwritingErnie", "Noto Serif JP", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 2.625rem;
  color: var(--lightgrey);
  position: absolute;
  top: 2.8125rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-about-action__item .item-bg {
    font-size: 8.625rem;
    top: 3.75rem;
    left: 4.0625rem;
    transform: unset;
  }
}

/*=============================
motto
=============================*/
.p-about-motto {
  margin-top: 4.0625rem;
}
@media screen and (min-width: 768px) {
  .p-about-motto {
    margin-top: 8.125rem;
  }
}

.p-about-motto__head {
  text-align: center;
}

.p-about-motto__text {
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-about-motto__text {
    font-size: 1.75rem;
    margin-top: 1.25rem;
  }
}

.p-about-motto__image {
  display: block;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-about-motto__image {
    margin-top: 3.125rem;
  }
}
.p-about-motto__image .image {
  margin-inline: auto;
}

/*=============================
concept
=============================*/
.p-about-concept {
  margin-top: 3.75rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-about-concept {
    margin-top: 15.875rem;
  }
}

.p-about-concept__inner {
  width: 71%;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-about-concept__inner {
    width: clamp(56.25rem, -19.987rem + 79.16vw, 75rem);
  }
}

.p-about-concept__text {
  margin-top: 1.4375rem;
  padding-top: 1.375rem;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-about-concept__text {
    min-height: 31.5625rem;
    margin-top: 3.125rem;
    padding-top: 2.5rem;
  }
}
.p-about-concept__text .text {
  width: clamp(14.25rem, 12.337rem + 8.16vw, 16.25rem);
  font-family: "Wix Madefor Display", "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-about-concept__text .text {
    width: clamp(38.75rem, 26.044rem + 13.19vw, 41.875rem);
  }
}

.p-about-concept__logo {
  margin-top: 2rem;
  margin-inline: auto;
  width: 61%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-about-concept__logo {
    margin-top: 7.5rem;
    width: 34.875rem;
    height: 8.4375rem;
  }
}
.p-about-concept__logo .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-about-concept__bg {
  width: 100%;
  margin-top: 5.625rem;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-about-concept__bg {
    margin-top: 9.6875rem;
  }
}

.p-about-concept__slider::after {
  content: "";
  display: inline-block;
  aspect-ratio: 351/205;
  width: clamp(21.938rem, 13.029rem + 38.01vw, 31.25rem);
  height: auto;
  background-image: url("../images/common/concept-tunnel-sp.webp");
  background-size: cover;
  position: absolute;
  top: -0.0625rem;
  left: 0;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-about-concept__slider::after {
    aspect-ratio: 1291/505;
    width: clamp(75.5rem, 54.408rem + 21.9vw, 80.688rem);
    background-image: url("../images/common/concept-tunnel.webp");
    left: 0;
  }
}

.p-about-concept__slider-wrapper {
  transition-timing-function: linear;
}

.p-about-concept__slider-item {
  width: clamp(10.063rem, 5.997rem + 17.35vw, 14.313rem);
  height: clamp(12.688rem, 7.486rem + 22.19vw, 18.125rem);
  margin-right: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-about-concept__slider-item {
    width: clamp(28.313rem, 20.181rem + 8.44vw, 30.313rem);
    height: clamp(29.375rem, 20.989rem + 8.71vw, 31.438rem);
  }
}
.p-about-concept__slider-item .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*=============================
link
=============================*/
.p-about-link {
  background-color: var(--lightgrey);
  margin-top: 4rem;
  padding-block: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-about-link {
    margin-top: 10.3125rem;
    padding-block: 5.6875rem 5.9375rem;
  }
}

.p-about-link__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-about-link__list {
    column-gap: 3.25rem;
    row-gap: 1.25rem;
  }
}

.p-about-link__item .c-button {
  background-color: #fff;
  padding: 1.0625rem 2.375rem;
  min-width: 14.6875rem;
  line-height: 1.65;
}
@media screen and (min-width: 768px) {
  .p-about-link__item .c-button {
    padding: 1.125rem 3rem;
    min-width: 20.4375rem;
  }
}
.p-about-link__item .c-button:hover {
  background-color: var(--black);
  color: #fff;
}
.p-about-link__item .c-button:hover::after {
  background-color: #fff;
}
.p-about-link__item .c-button::after {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--black);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 1.375rem;
  transform: translateY(-50%);
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-about-link__item .c-button::after {
    width: 0.625rem;
    height: 0.625rem;
    right: 1.625rem;
  }
}

/*----------------------------------

Recruit

----------------------------------*/
/*=============================
アンカーリンク
=============================*/
.p-recruit-button {
  padding-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-button {
    padding-top: 5.625rem;
  }
}

/*=============================
採用情報リスト
=============================*/
.p-recruit-info__list {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-info__list {
    margin-top: 2.875rem;
  }
}

.p-recruit-info__item {
  padding-block: 2.5rem 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-info__item {
    padding-block: 4.625rem 7.3125rem;
  }
}
.p-recruit-info__item .c-table-col2 {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-info__item .c-table-col2 {
    margin-top: 2.9375rem;
  }
}
.p-recruit-info__item .p-front-button-anime {
  margin-top: 3.75rem;
}

.p-recruit-info__item:nth-child(even) {
  background-color: var(--lightgrey);
}
.p-recruit-info__item:nth-child(even) .p-front-button {
  background-color: #fff;
}
.p-recruit-info__item:nth-child(even) .p-front-button:hover {
  background-color: var(--black);
}

.p-recruit-info__item-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 85%;
  max-width: 62.5rem;
  margin: 0 auto;
}

/*=============================
選考フロー
=============================*/
.p-recruit-flow {
  padding-block: 3.75rem 5rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-flow {
    padding-block: 7rem 10.5rem;
  }
}
.p-recruit-flow .c-title {
  text-align: center;
}
.p-recruit-flow .p-front-button-anime {
  margin-top: 3.125rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-recruit-flow .p-front-button-anime {
    margin-top: 3.75rem;
  }
}

.p-recruit-flow__inner {
  width: 100%;
  max-width: 51.25rem;
  margin: 0 auto;
}

/*=============================
採用コンタクト
=============================*/
.p-recruit .p-front-recruit {
  margin-top: 0;
}

/*----------------------------------

育成スクール事業

----------------------------------*/
/*=============================
curriculum
=============================*/
.p-school-curriculum {
  background-color: #fff;
}
.p-school-curriculum .c-title {
  text-align: center;
}

.p-school-curriculum__lead {
  font-size: 1.5rem;
  font-weight: 800;
  text-align: center;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-school-curriculum__lead {
    font-size: 2.625rem;
    margin-top: 3.75rem;
  }
}

.p-school-curriculum__annotation {
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
  color: var(--darkgrey);
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-school-curriculum__annotation {
    font-size: 0.875rem;
    margin-top: 1.25rem;
  }
}

.p-school-curriculum__text {
  font-weight: 500;
  text-align: center;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-school-curriculum__text {
    margin-top: 1.75rem;
  }
}

.p-school-curriculum__contents {
  position: relative;
  margin-top: 2.5rem;
  min-height: 44.4375rem;
}
@media screen and (min-width: 768px) {
  .p-school-curriculum__contents {
    padding-block: 4.5625rem 3.75rem;
    margin-top: 4.0625rem;
  }
}

.p-school-curriculum__image {
  background-image: url("../images/common/curriculum-bg.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 45%;
  max-width: 22rem;
  height: auto;
  padding: clamp(0.313rem, 0.014rem + 1.28vw, 0.625rem) clamp(0.5rem, 0.081rem + 1.79vw, 0.938rem);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-school-curriculum__image {
    width: 26%;
    padding: 0.625rem 1.25rem;
    margin-inline: unset;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.p-school-curriculum__slider {
  height: 100%;
  border-radius: clamp(0.938rem, 0.041rem + 3.83vw, 1.875rem);
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-school-curriculum__slider {
    border-radius: 1.875rem;
  }
}

.p-school-curriculum__slider-item .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-school-curriculum__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 1.25rem;
  counter-reset: listnum;
}
@media screen and (min-width: 768px) {
  .p-school-curriculum__list {
    gap: 1.6875rem;
    margin-top: 0;
    padding-inline: 4.6875rem;
  }
}

.p-school-curriculum__item {
  width: 100%;
  background-color: var(--lightgrey);
  border-radius: 1.25rem;
  padding-block: 2rem 2.75rem;
  padding-inline: 1.25rem;
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-school-curriculum__item {
    width: 30rem;
    padding-block: 3.3125rem 3.125rem;
  }
}
.p-school-curriculum__item::after {
  content: counter(listnum);
  counter-increment: listnum;
  width: 7.75rem;
  font-family: "Wix Madefor Display", "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-size: 11.5rem;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  color: #fff;
  position: absolute;
  bottom: 0.9375rem;
  right: 0.3125rem;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-school-curriculum__item::after {
    bottom: 1.25rem;
    right: 1.75rem;
  }
}
@media screen and (min-width: 768px) {
  .p-school-curriculum__item:nth-child(odd) {
    padding-inline: 2.1875rem 3.375rem;
  }
}
@media screen and (min-width: 768px) {
  .p-school-curriculum__item:nth-child(even) {
    padding-inline: 3.375rem 2.1875rem;
  }
}
.p-school-curriculum__item .title {
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-school-curriculum__item .title {
    font-size: 1.5rem;
  }
}
.p-school-curriculum__item .lead {
  font-size: 1rem;
  font-weight: bold;
  margin-top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-school-curriculum__item .lead {
    font-size: 1.25rem;
    margin-top: 0.625rem;
  }
}
.p-school-curriculum__item .text {
  font-weight: 500;
  text-align: justify;
  margin-top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-school-curriculum__item .text {
    margin-top: 0.9375rem;
  }
}

/*=============================
instructors
=============================*/
.p-school-instructors {
  background-color: #fff;
  padding-block: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-school-instructors {
    padding-block: 8.125rem;
  }
}
.p-school-instructors .c-title {
  text-align: center;
}

.p-school-instructors__list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1.25rem;
  row-gap: 1.875rem;
  margin-top: 1.25rem;
  margin-inline: auto;
  width: 90%;
}
@media screen and (min-width: 768px) {
  .p-school-instructors__list {
    column-gap: 2.25rem;
    row-gap: 3.75rem;
    margin-top: 2.5rem;
    margin-inline: unset;
    width: 100%;
    padding-inline: 4.6875rem;
  }
}

.p-school-instructors__item {
  width: 100%;
  cursor: url("../images/common/a-cursor.png"), auto;
}
@media screen and (min-width: 500px) {
  .p-school-instructors__item {
    width: calc((100% - 1.25rem) / 2);
  }
}
@media screen and (min-width: 768px) {
  .p-school-instructors__item {
    width: calc((100% - 4.5rem) / 3);
  }
}
.p-school-instructors__item:hover .image img {
  transform: scale(1.08);
}
.p-school-instructors__item .image {
  aspect-ratio: 324/443;
  width: 100%;
  height: auto;
  border-radius: 0.3125rem;
  overflow: hidden;
}
.p-school-instructors__item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.p-school-instructors__item .position {
  font-weight: 500;
  line-height: 1.3;
  color: var(--darkgrey);
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-school-instructors__item .position {
    margin-top: 1.875rem;
  }
}
.p-school-instructors__item .title-wrap {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 0.4375rem;
}
.p-school-instructors__item .tiktok {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.4375rem;
  height: 1.4375rem;
  transition: 0.3s;
}
.p-school-instructors__item .tiktok:hover {
  opacity: 0.6;
}
.p-school-instructors__item .tiktok .icon-tiktok {
  object-fit: cover;
  width: auto;
  height: 100%;
}
.p-school-instructors__item .name-en {
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 0.1875rem;
}

/*=============================
career
=============================*/
.p-school-career {
  background-color: #fff;
}
.p-school-career .c-title__main {
  line-height: 1.2;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-school-career .c-title__main {
    line-height: unset;
    margin-top: 0;
  }
}
.p-school-career .c-button {
  margin-top: 2.5rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-school-career .c-button {
    margin-top: 4.375rem;
  }
}

.p-school-career__inner {
  background-color: var(--lightgrey);
  border-radius: 2.5rem 2.5rem 0 0;
  padding-block: 3.75rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-school-career__inner {
    border-radius: 5rem 5rem 0 0;
    padding-block: 8.125rem 2.8125rem;
  }
}

.p-school-career__upper {
  display: flex;
  flex-direction: column;
  align-items: self-start;
  gap: 1.25rem;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-school-career__upper {
    flex-direction: unset;
    gap: 3.125rem;
    margin-top: 5rem;
  }
}

.p-school-career__upper-image {
  aspect-ratio: 969/511;
  width: 95%;
  max-width: 60.5625rem;
  height: auto;
  border-radius: 0 18.75rem 18.75rem 0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-school-career__upper-image {
    width: 50.5%;
  }
}
.p-school-career__upper-image .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-school-career__upper-text {
  width: 100%;
  max-width: 40rem;
  padding-top: 2.5rem;
  padding-inline: 1.25rem;
  margin-inline: auto;
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-school-career__upper-text {
    width: 34%;
    padding-top: 5.625rem;
    padding-inline: 1.25rem 0;
    margin-inline: unset;
  }
}
.p-school-career__upper-text .title-en {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0.9375rem;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-school-career__upper-text .title-en {
    font-size: 6.4375rem;
    left: 0;
  }
}
.p-school-career__upper-text .text {
  font-weight: 500;
  line-height: 2;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-school-career__upper-text .text {
    margin-top: 2.5rem;
  }
}

.p-school-career__lower {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-school-career__lower {
    margin-top: 5.3125rem;
  }
}

.p-school-career__lower-title {
  text-align: center;
}

.p-school-career__lower-list {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  margin-top: 1.875rem;
  margin-inline: auto;
  counter-reset: listnum;
  width: 21.25rem;
}
@media screen and (min-width: 768px) {
  .p-school-career__lower-list {
    flex-direction: row-reverse;
    gap: 1.25rem;
    padding-inline: 4.6875rem;
    margin-top: 4.375rem;
    margin-inline: unset;
    width: unset;
  }
}

.p-school-career__lower-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-school-career__lower-item {
    width: calc((100% - 2.5rem) / 3);
  }
}
.p-school-career__lower-item .icon {
  display: block;
  width: 2.6875rem;
  height: 1.75rem;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .p-school-career__lower-item .icon {
    width: 3.25rem;
    height: 2.125rem;
  }
}
.p-school-career__lower-item .title {
  font-size: 1.125rem;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-school-career__lower-item .title {
    font-size: 1.5rem;
  }
}
.p-school-career__lower-item .supplement {
  font-size: 0.875rem;
  font-weight: bold;
  color: var(--darkgrey);
}
@media screen and (min-width: 768px) {
  .p-school-career__lower-item .supplement {
    font-size: 1rem;
  }
}
.p-school-career__lower-item .image {
  aspect-ratio: 298/452;
  width: 90%;
  max-width: 22.25rem;
  height: auto;
  border-radius: 1.25rem;
  overflow: hidden;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-school-career__lower-item .image {
    aspect-ratio: 356/717;
    width: 100%;
    margin-top: 1.25rem;
    box-shadow: 0 0.75rem 3.75rem rgba(1, 36, 45, 0.27);
  }
}
.p-school-career__lower-item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.p-school-career__lower-item .description {
  margin-top: -15.25rem;
  padding-top: 4.375rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-school-career__lower-item .description {
    margin-top: -17.5rem;
    padding-top: 5.625rem;
  }
}
.p-school-career__lower-item .description .rank {
  font-size: 2.875rem;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-school-career__lower-item .description .rank {
    font-size: 4.0625rem;
  }
}
.p-school-career__lower-item .description .num::after {
  content: counter(listnum);
  counter-increment: listnum;
  font-size: 5rem;
}
@media screen and (min-width: 768px) {
  .p-school-career__lower-item .description .num::after {
    font-size: 6.5625rem;
  }
}
.p-school-career__lower-item .description-inner {
  background-color: #fff;
  border-radius: 1.25rem;
  padding: 1.875rem 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-school-career__lower-item .description-inner {
    padding: 2.5rem 2.125rem;
  }
}
.p-school-career__lower-item .description-title {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .p-school-career__lower-item .description-title {
    font-size: 1.5rem;
  }
}
.p-school-career__lower-item .description-text {
  font-weight: 500;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-school-career__lower-item .description-text {
    margin-top: 1.25rem;
  }
}

.p-school-career__lower-item:first-child .icon {
  background-image: url("../images/icons/crown-01.png");
}

@media screen and (min-width: 768px) {
  .p-school-career__lower-item:nth-child(2) {
    margin-top: 3.75rem;
  }
}
.p-school-career__lower-item:nth-child(2) .icon {
  background-image: url("../images/icons/crown-02.png");
}

@media screen and (min-width: 768px) {
  .p-school-career__lower-item:last-child {
    margin-top: 10rem;
  }
}
.p-school-career__lower-item:last-child .icon {
  background-image: url("../images/icons/crown-03.png");
}

/*=============================
画像スライダー
=============================*/
.p-school .c-slider-loop {
  background-color: var(--lightgrey);
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-school .c-slider-loop {
    padding-bottom: 7.5rem;
  }
}

/*----------------------------------

ブランド事業

----------------------------------*/
/*=============================
brand list
=============================*/
.p-brand-list {
  background-color: var(--lightgrey);
  padding-block: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-brand-list {
    padding-block: 8.125rem 7.5rem;
  }
}
.p-brand-list .c-title {
  text-align: center;
}

.p-brand-list__list {
  display: flex;
  row-gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-brand-list__list {
    row-gap: 4.0625rem;
  }
}
.p-brand-list__list .title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.25rem;
}
.p-brand-list__list .title {
  font-weight: bold;
}
.p-brand-list__list .link {
  display: flex;
  gap: 0.1875rem;
  height: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-brand-list__list .link {
    height: 1.5625rem;
  }
}
.p-brand-list__list .c-arrow {
  background-color: var(--black);
  position: relative;
  bottom: unset;
  right: unset;
  width: 1.875rem;
  height: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-brand-list__list .c-arrow {
    width: 2.1875rem;
    height: 1.375rem;
  }
}
.p-brand-list__list .c-arrow::after {
  width: 0.6875rem;
  height: 0.6875rem;
  background-image: url("../images/icons/icon-arrow-wht.png");
}
.p-brand-list__list .logo {
  height: 100%;
}
.p-brand-list__list .text {
  font-weight: 500;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-brand-list__list .text {
    margin-top: 1.25rem;
  }
}
.p-brand-list__list .link-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.3125rem;
  row-gap: 0.625rem;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-brand-list__list .link-list {
    margin-top: 1.875rem;
  }
}
.p-brand-list__list .c-button {
  display: inline-block;
  font-size: 0.75rem;
  min-width: unset;
  padding-block: 0.625rem;
  padding-inline: 1.25rem 2.1875rem;
}
@media screen and (min-width: 768px) {
  .p-brand-list__list .c-button {
    padding-block: 0.75rem;
    padding-inline: 2.125rem 3.125rem;
  }
}
.p-brand-list__list .c-button::after {
  width: 0.375rem;
  height: 0.375rem;
  right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-brand-list__list .c-button::after {
    width: 0.5rem;
    height: 0.5rem;
    right: 2.125rem;
  }
}

.p-brand-list__3col {
  flex-wrap: wrap;
  column-gap: 1.25rem;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-brand-list__3col {
    margin-top: 3.125rem;
  }
}

.p-brand-list__3col-item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-brand-list__3col-item {
    width: calc((100% - 2.5rem) / 3);
  }
}

.p-brand-list__3col-image {
  aspect-ratio: 454/208;
  width: 100%;
  height: auto;
}
.p-brand-list__3col-image .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-brand-list__3col-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  padding: 1.25rem;
  height: 5.3125rem;
}
@media screen and (min-width: 768px) {
  .p-brand-list__3col-logo {
    height: 7.1875rem;
  }
}
.p-brand-list__3col-logo .brand-logo {
  max-height: 100%;
}

.p-brand-list__1col {
  flex-direction: column;
  width: 100%;
  max-width: 75rem;
  margin-top: 3.75rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-brand-list__1col {
    width: 90%;
    margin-top: 7.5rem;
  }
}

.p-brand-list__1col-item {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-brand-list__1col-item {
    flex-direction: unset;
    gap: 2.9375rem;
  }
}

.p-brand-list__1col-image {
  aspect-ratio: 454/323;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-brand-list__1col-image {
    width: 38%;
    max-width: 28.375rem;
  }
}
.p-brand-list__1col-image .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-brand-list__1col-body {
  flex: 1;
}
.p-brand-list__1col-body .title-wrap {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .p-brand-list__1col-body .title-wrap {
    margin-top: 1.5625rem;
  }
}
.p-brand-list__1col-body .lead {
  font-size: 1rem;
  font-weight: bold;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-brand-list__1col-body .lead {
    font-size: 1.5rem;
    margin-top: 1rem;
  }
}

.p-news button:focus,
.p-news_cat button:focus {
  opacity: 1;
}
.p-news .l-archive__inner,
.p-news_cat .l-archive__inner {
  width: 100%;
  padding-left: 1.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-news .l-archive__inner,
  .p-news_cat .l-archive__inner {
    width: 90%;
    max-width: 87.5rem;
    margin: 0 auto;
    padding-left: 0;
  }
}
.p-news .l-archive__container,
.p-news_cat .l-archive__container {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-news .l-archive__container,
  .p-news_cat .l-archive__container {
    width: calc(100% - 6.25rem);
  }
}
.p-news .l-archive__switch,
.p-news_cat .l-archive__switch {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 3.125rem;
  width: 95%;
}
@media screen and (min-width: 768px) {
  .p-news .l-archive__switch,
  .p-news_cat .l-archive__switch {
    margin-top: 5rem;
    width: 100%;
  }
}
.p-news .l-archive__switch .archive-title,
.p-news_cat .l-archive__switch .archive-title {
  order: 2;
  font-size: 1rem;
  font-weight: 600;
  color: var(--darkgrey);
  height: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-news .l-archive__switch .archive-title,
  .p-news_cat .l-archive__switch .archive-title {
    font-size: 2rem;
    height: 2.375rem;
  }
}
.p-news .l-archive__switch .archive-title::before,
.p-news_cat .l-archive__switch .archive-title::before {
  background-color: var(--darkgrey);
}
.p-news .l-archive__switch .archive-title.is-active,
.p-news_cat .l-archive__switch .archive-title.is-active {
  order: 1;
  font-size: 1.75rem;
  color: var(--black);
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-news .l-archive__switch .archive-title.is-active,
  .p-news_cat .l-archive__switch .archive-title.is-active {
    font-size: 2.6875rem;
  }
}
.p-news .l-archive__switch .archive-title.is-active::before,
.p-news_cat .l-archive__switch .archive-title.is-active::before {
  background-color: var(--black);
}

.l-archive-news__container {
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .l-archive-news__container {
    margin-top: 2.75rem;
  }
}
.l-archive-news__container .tab-area {
  border-bottom: solid 0.0625rem var(--lightblue);
}
.l-archive-news__container .tab-list {
  display: flex;
  cursor: pointer;
  width: 100%;
  overflow-y: hidden;
  overflow-x: auto;
  position: relative;
  bottom: -0.0625rem;
}
.l-archive-news__container .tab-list::-webkit-scrollbar {
  display: none;
}
.l-archive-news__container .tab-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  min-width: 9.0625rem;
  color: var(--darkgrey);
  padding-top: 0.4375rem;
  margin-bottom: 0.0625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-archive-news__container .tab-item {
    min-width: 12.8125rem;
    padding-top: 0.625rem;
  }
}
.l-archive-news__container .tab-item.is-active {
  color: var(--navy);
  border-bottom: none;
  padding-top: 0 !important;
}
.l-archive-news__container .tab-item.is-active .tab {
  background-color: #fff;
  border: solid 0.0625rem var(--lightblue);
  border-bottom: none;
  border-radius: 0.625rem 0.625rem 0 0;
  padding-block: 0.75rem 0.375rem;
  position: relative;
  bottom: -0.0625rem;
}
@media screen and (min-width: 768px) {
  .l-archive-news__container .tab-item.is-active .tab {
    padding-block: 1.125rem 0.625rem;
  }
}
.l-archive-news__container .tab-item:not(:last-child) {
  padding-right: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .l-archive-news__container .tab-item:not(:last-child) {
    padding-right: 0.3125rem;
  }
}
.l-archive-news__container .tab {
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--lightgrey);
  font-size: 0.75rem;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  padding-block: 0.375rem;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .l-archive-news__container .tab {
    font-size: 1rem;
    padding-block: 0.5625rem;
  }
}
.l-archive-news__container .panel-list {
  margin-right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .l-archive-news__container .panel-list {
    margin: 0 auto;
  }
}
.l-archive-news__container .panel-item {
  display: block;
  width: 100%;
  margin: 0 auto;
}
.l-archive-news__container .panel-link {
  display: flex;
  gap: 1.25rem;
  padding-block: 1.875rem;
  padding-inline: 1.375rem 0.9375rem;
  border-bottom: solid 0.0625rem var(--lightblue);
  background-color: #fff;
  position: relative;
  transition: 0.3s;
}
.l-archive-news__container .panel-link:hover {
  background-color: #eef6fe;
}
.l-archive-news__container .panel-link:hover .date,
.l-archive-news__container .panel-link:hover .title {
  color: #196fd3;
}
.l-archive-news__container .panel-link:hover .image img {
  transform: scale(1.15);
}
.l-archive-news__container .panel-link:hover .c-badge {
  background-color: #fff;
}
.l-archive-news__container .panel-link:hover .c-arrow {
  width: 2.75rem;
  height: 1.6875rem;
}
.l-archive-news__container .panel-link:hover .c-arrow::after {
  opacity: 1;
}
.l-archive-news__container .panel-link.-sp {
  display: block;
  padding-inline: 0.5rem 1.125rem;
}
@media screen and (min-width: 768px) {
  .l-archive-news__container .panel-link.-sp {
    display: none;
  }
}
.l-archive-news__container .panel-link.-sp:hover .c-arrow {
  width: 1.8125rem;
  height: 1.125rem;
}
.l-archive-news__container .panel-link.-sp .upper {
  display: flex;
  gap: 1rem;
}
.l-archive-news__container .panel-link.-sp .image {
  width: 5.3125rem;
  height: 3.3125rem;
}
.l-archive-news__container .panel-link.-sp .date {
  display: flex;
  gap: 0.1875rem;
  width: 100%;
  margin-top: 0;
}
.l-archive-news__container .panel-link.-sp .year {
  font-size: 0.625rem;
}
.l-archive-news__container .panel-link.-sp .day {
  font-size: 1rem;
}
.l-archive-news__container .panel-link.-sp .taxonomy {
  gap: 0.625rem;
  margin-top: 0.3125rem;
}
.l-archive-news__container .panel-link.-sp .c-badge {
  font-size: 0.75rem;
}
.l-archive-news__container .panel-link.-sp .title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  margin-top: 0.5625rem;
}
.l-archive-news__container .panel-link.-sp .c-arrow {
  width: 0.5rem;
  height: 0.5rem;
  bottom: 0.375rem;
  right: 0.25rem;
}
.l-archive-news__container .panel-link.-sp .c-arrow::after {
  width: 0.5625rem;
  height: 0.5625rem;
}
.l-archive-news__container .panel-link.-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-archive-news__container .panel-link.-pc {
    display: flex;
  }
}
.l-archive-news__container .data {
  flex: 1;
}
.l-archive-news__container .date {
  font-family: "Wix Madefor Display", "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  width: 4.375rem;
  margin-top: 0.4375rem;
  transition: 0.3s;
}
.l-archive-news__container .year {
  font-size: 0.875rem;
  font-weight: 600;
}
.l-archive-news__container .day {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}
.l-archive-news__container .image {
  aspect-ratio: 196/122;
  width: 24%;
  height: auto;
  max-width: 12.25rem;
  border: solid 0.1875rem var(--lightgrey);
  border-radius: 0.3125rem;
  overflow: hidden;
}
.l-archive-news__container .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.l-archive-news__container .detail {
  flex: 1;
  padding-left: 0.625rem;
}
.l-archive-news__container .taxonomy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.125rem;
}
.l-archive-news__container .title {
  font-weight: 500;
  margin-top: 1.25rem;
  transition: 0.3s;
}
.l-archive-news__container .c-arrow {
  width: 0.75rem;
  height: 0.75rem;
  bottom: 1.4375rem;
  right: 0.9375rem;
}
.l-archive-news__container .c-arrow::after {
  opacity: 0;
}

.p-column .l-archive__inner,
.p-column_cat .l-archive__inner {
  margin-top: 3.125rem !important;
}
@media screen and (min-width: 768px) {
  .p-column .l-archive__inner,
  .p-column_cat .l-archive__inner {
    margin-top: 5.625rem !important;
  }
}
.p-column .l-archive__list,
.p-column_cat .l-archive__list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1.5rem;
  row-gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-column .l-archive__list,
  .p-column_cat .l-archive__list {
    row-gap: 4.1875rem;
  }
}
.p-column .l-archive__item,
.p-column_cat .l-archive__item {
  width: 100%;
}
@media screen and (min-width: 600px) {
  .p-column .l-archive__item,
  .p-column_cat .l-archive__item {
    width: calc((100% - 1.5rem) / 2);
  }
}
@media screen and (min-width: 768px) {
  .p-column .l-archive__item,
  .p-column_cat .l-archive__item {
    width: calc((100% - 3rem) / 3);
  }
}

.p-documentation pre {
  padding: 1em;
  border: solid 0.0625rem var(--darkgrey);
  background: #25292f;
  overflow-x: auto;
}
.p-documentation code {
  color: var(--white);
  font-size: 0.9em;
  line-height: 1.5;
}
.p-documentation .c-text {
  line-height: 1.4;
}
.p-documentation .c-title-h5 {
  color: var(--black);
}
.p-documentation .c-title-h3__sub {
  font-size: 0.7em;
}
.p-documentation p {
  font-size: 1.25rem;
}

.p-documentation-container {
  max-width: 82.5rem;
  width: 90%;
  margin: 0 auto;
}

.p-documentation-sidebar {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-documentation-sidebar {
    position: sticky;
    top: 5.9375rem;
    height: calc(100vh - 5.9375rem);
    padding: 2rem 1rem 0;
    width: 25%;
    border-right: 0.0625rem solid var(--lightgrey);
  }
}
.p-documentation-sidebar .title:not(:first-child) {
  border-top: solid 0.0625rem var(--lightgrey);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}
.p-documentation-sidebar ul li {
  margin-top: 1rem;
}
.p-documentation-sidebar ul li button {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.p-documentation-sidebar ul li button::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 0.125rem;
  background: var(--main-c);
  bottom: -0.25rem;
  transform: scale(0, 1);
  transition: transform 0.3s;
  transform-origin: center top;
}
.p-documentation-sidebar ul li button:hover::after {
  transform: scale(1, 1);
}
.p-documentation-sidebar ul li button.is-active {
  color: var(--main-c);
}

.p-documentation-content {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-documentation-content {
    width: 75%;
  }
}

.p-documentation-page {
  display: none;
  padding: 2rem 0;
}
.p-documentation-page.is-active {
  display: block;
}

.p-documentation-list {
  margin-top: 1rem;
  padding-left: 1.5rem;
}
.p-documentation-list li {
  margin-top: 0.5rem;
}
.p-documentation-list dl > * {
  margin-top: 1rem;
  line-height: 1.5;
}

ol.p-documentation-list li {
  list-style: auto;
}

ul.p-documentation-list li {
  list-style: circle;
}

.p-documentation-stack {
  margin-top: calc(-header-height-pc + 2rem);
  padding-top: 5.9375rem;
}
.p-documentation-stack > * {
  margin-top: 1rem;
}

.p-documentation-navigation .nav-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(6.25rem, 1fr));
}
.p-documentation-navigation .nav-item {
  text-align: center;
  padding: 1rem 0;
}
.p-documentation-navigation .nav-item:not(:last-child) {
  border-right: solid 0.0625rem var(--black);
}
.p-documentation-navigation .link {
  text-decoration: none;
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.p-documentation-navigation .link::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 0.125rem;
  background: #000;
  bottom: -0.25rem;
  transform: scale(0, 1);
  transition: transform 0.3s;
  transform-origin: right top;
}
.p-documentation-navigation .link:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

.p-documentation-demo {
  border: solid 0.0625rem var(--lightgrey);
  border-radius: 0.3125rem;
  padding: 2rem;
}

.p-documentation-page.-sass p {
  line-height: 1.5;
}
.p-documentation-page.-sass .aspect-ratio--demo-block {
  width: 50%;
}
.p-documentation-page.-sass .aspect-ratio {
  position: relative;
}
.p-documentation-page.-sass .aspect-ratio::before {
  content: "";
  float: left;
  padding-top: 56.25%;
}
.p-documentation-page.-sass .aspect-ratio::after {
  content: "";
  display: block;
  clear: both;
}
.p-documentation-page.-sass .aspect-ratio > :first-child {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  object-fit: cover;
}
.p-documentation-page.-sass .centering--parent {
  width: 50%;
  border: solid 0.0625rem var(--black);
  height: 15.625rem;
  position: relative;
}
.p-documentation-page.-sass .centering--child {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: dotted 0.125rem var(--black);
  padding: 0.5em;
}
.p-documentation-page.-sass .triangle--demo-block {
  border: solid 0.0625rem var(--black);
  padding: 3rem;
  width: 30%;
}
.p-documentation-page.-sass .triangle {
  width: fit-content;
  color: var(--white);
  padding: 1rem 2rem;
  background-color: var(--main-c);
  position: relative;
  margin: 0 auto;
}
.p-documentation-page.-sass .triangle.-upward:before {
  content: "";
  display: inline-block;
  position: absolute;
  border-style: solid;
  height: 0;
  width: 0;
  border-color: transparent transparent var(--main-c) transparent;
  border-width: 0 0.625rem 0.9375rem 0.625rem;
  bottom: 100%;
  left: calc(50% - 0.625rem);
}
.p-documentation-page.-sass .triangle.-rightward:before {
  content: "";
  display: inline-block;
  position: absolute;
  border-style: solid;
  height: 0;
  width: 0;
  border-color: transparent transparent transparent var(--main-c);
  border-width: 0.625rem 0 0.625rem 0.9375rem;
  left: 100%;
  top: calc(50% - 0.625rem);
}
.p-documentation-page.-sass .triangle.-downward:before {
  content: "";
  display: inline-block;
  position: absolute;
  border-style: solid;
  height: 0;
  width: 0;
  border-color: var(--main-c) transparent transparent transparent;
  border-width: 0.9375rem 0.625rem 0 0.625rem;
  top: 100%;
  left: calc(50% - 0.625rem);
}
.p-documentation-page.-sass .triangle.-leftward:before {
  content: "";
  display: inline-block;
  position: absolute;
  border-style: solid;
  height: 0;
  width: 0;
  border-color: transparent var(--main-c) transparent transparent;
  border-width: 0.625rem 0.9375rem 0.625rem 0;
  right: 100%;
  top: calc(50% - 0.625rem);
}
.p-documentation-page.-sass .underline--demo-block {
  display: inline-block;
  padding: 2rem 3rem;
  border: solid 0.0625rem var(--black);
}
.p-documentation-page.-sass .underline--fade-top {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.p-documentation-page.-sass .underline--fade-top::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 0.125rem;
  background: #000;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  bottom: 0.125rem;
}
.p-documentation-page.-sass .underline--fade-top:hover::after {
  bottom: -0.25rem;
  opacity: 1;
  visibility: visible;
}
.p-documentation-page.-sass .underline--fade-bottom {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.p-documentation-page.-sass .underline--fade-bottom::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 0.125rem;
  background: #000;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  bottom: -0.5rem;
}
.p-documentation-page.-sass .underline--fade-bottom:hover::after {
  bottom: -0.25rem;
  opacity: 1;
  visibility: visible;
}
.p-documentation-page.-sass .underline--left-to-right {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.p-documentation-page.-sass .underline--left-to-right::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 0.125rem;
  background: #000;
  bottom: -0.25rem;
  transform: scale(0, 1);
  transition: transform 0.3s;
  transform-origin: left top;
}
.p-documentation-page.-sass .underline--left-to-right:hover::after {
  transform: scale(1, 1);
}
.p-documentation-page.-sass .underline--right-to-left {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.p-documentation-page.-sass .underline--right-to-left::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 0.125rem;
  background: #000;
  bottom: -0.25rem;
  transform: scale(0, 1);
  transition: transform 0.3s;
  transform-origin: right top;
}
.p-documentation-page.-sass .underline--right-to-left:hover::after {
  transform: scale(1, 1);
}
.p-documentation-page.-sass .underline--left-in-right {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.p-documentation-page.-sass .underline--left-in-right::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 0.125rem;
  background: #000;
  bottom: -0.25rem;
  transform: scale(0, 1);
  transition: transform 0.3s;
  transform-origin: right top;
}
.p-documentation-page.-sass .underline--left-in-right:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}
.p-documentation-page.-sass .underline--right-in-left {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.p-documentation-page.-sass .underline--right-in-left::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 0.125rem;
  background: #000;
  bottom: -0.25rem;
  transform: scale(0, 1);
  transition: transform 0.3s;
  transform-origin: left top;
}
.p-documentation-page.-sass .underline--right-in-left:hover::after {
  transform-origin: right top;
  transform: scale(1, 1);
}
.p-documentation-page.-sass .underline--center {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.p-documentation-page.-sass .underline--center::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 0.125rem;
  background: #000;
  bottom: -0.25rem;
  transform: scale(0, 1);
  transition: transform 0.3s;
  transform-origin: center top;
}
.p-documentation-page.-sass .underline--center:hover::after {
  transform: scale(1, 1);
}
.p-documentation-page.-sass .line-clamp--demo-block {
  display: inline-block;
  border: solid 0.0625rem var(--black);
  width: 50%;
  padding: 1rem;
}
.p-documentation-page.-sass .line-clamp--default {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.p-documentation-page.-sass .line-clamp--four {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.p-contact input[type=submit],
.p-contact input[type=button] {
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  box-sizing: border-box;
  cursor: pointer;
}
.p-contact input[type=submit]::-webkit-search-decoration,
.p-contact input[type=button]::-webkit-search-decoration {
  display: none;
}
.p-contact input[type=submit]::focus,
.p-contact input[type=button]::focus {
  outline-offset: -0.125rem;
}
.p-contact .c-button-anime {
  margin-inline: auto;
}
.p-contact .error-message {
  color: #e74c3c;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: block;
}
.p-contact input.error,
.p-contact textarea.error {
  border-color: #e74c3c !important;
  box-shadow: 0 0 0 1px #e74c3c;
}
.p-contact input.error:focus,
.p-contact textarea.error:focus {
  outline: 2px solid #e74c3c;
  outline-offset: 2px;
}
.p-contact input.error[type=radio],
.p-contact input.error[type=checkbox] {
  box-shadow: none;
}

.p-contact__head {
  padding-block: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-contact__head {
    padding-block: 5rem;
  }
}

.p-contact__head-container {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .p-contact__head-container {
    grid-template-columns: 50% minmax(0, 1fr);
    gap: 7%;
  }
}

.p-contact__head-item {
  font-weight: bold;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  line-height: 1;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-contact__head-item {
    font-size: 2.625rem;
  }
}
.p-contact__head-item:before {
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  background: linear-gradient(to right, #ed7a49, #fe2c55);
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .p-contact__head-item:before {
    width: 0.9375rem;
    height: 0.9375rem;
  }
}
.p-contact__head-item + .p-contact__head-item {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-contact__head-item + .p-contact__head-item {
    margin-top: 2rem;
  }
}

.p-contact__head-text {
  padding-top: 5%;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-contact__head-text {
    padding-top: 10%;
  }
}
.p-contact__head-text .text {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-contact__head-text .text {
    font-size: 1.125rem;
    line-height: 1.83;
  }
}
.p-contact__head-text .annotation {
  position: relative;
  color: var(--darkgrey);
  margin-top: 1rem;
  padding-left: 1.5rem;
  line-height: 1.7;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-contact__head-text .annotation {
    margin-top: 1.5rem;
    font-size: 0.875rem;
  }
}
.p-contact__head-text .annotation:before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0.05rem;
}

.p-contact__form .formSend {
  display: none;
  text-align: center;
}
.p-contact__form.sent .formInput {
  display: none;
}
.p-contact__form.sent .formSend {
  display: block;
}
.p-contact__form .form-title {
  text-align: center;
  font-weight: normal;
  font-size: 2em;
}
.p-contact__form .form-text {
  text-align: center;
}
.p-contact__form .form-content {
  margin-top: 1rem;
}
.p-contact__form .form-input-area dt {
  padding-top: 0.8rem;
}
.p-contact__form .form-item {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-contact__form .form-item {
    grid-template-columns: 12em auto;
  }
}
.p-contact__form .form-item input,
.p-contact__form .form-item textarea {
  font-size: 1rem;
  padding: 1rem 1.125rem;
  width: 100%;
  border-radius: 0.3125rem;
  border: 0.0625rem solid var(--lightblue);
}
.p-contact__form .form-item input[type=checkbox] {
  width: 1.125rem;
  height: 1.125rem;
  margin: 0;
  margin-top: 0.1875rem;
  padding: 0;
  border: none;
}
@media screen and (min-width: 768px) {
  .p-contact__form .form-item input[type=checkbox] {
    width: 1.5625rem;
    height: 1.5625rem;
  }
}
.p-contact__form .form-item .size-zip {
  max-width: 10em;
}
.p-contact__form .form-item + .form-item {
  border-top: 0.0625rem solid var(--border-c);
  padding-top: 1em;
  margin-top: 1.5em;
}
@media screen and (min-width: 768px) {
  .p-contact__form .form-item + .form-item {
    border: none;
    padding-top: 0;
  }
}
.p-contact__form .label {
  font-weight: 500;
}
.p-contact__form .label.-caution:after {
  content: "必須";
  background-color: var(--navy);
  color: var(--white);
  font-size: 0.75rem;
  line-height: 1;
  padding: 0.1875rem 0.375rem;
  margin-left: 0.3125rem;
  border-radius: 0.25rem;
}
.p-contact__form .name-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-contact__form .name-wrap {
    gap: 2rem;
  }
}
.p-contact__form .radio-button {
  padding-top: 0.8rem;
}
.p-contact__form .radio-button .wpcf7-radio {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.p-contact__form .radio-button .wpcf7-list-item {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  margin: 0;
}
.p-contact__form .radio-button input {
  width: 0.8125rem;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .p-contact__form .radio-button input {
    width: clamp(0.625rem, 0.5rem + 0.26vw, 0.813rem);
  }
}
.p-contact__form .form-policy dt {
  padding-top: 0;
}
.p-contact__form .privacy-policy .wpcf7-list-item {
  margin: 0;
}
.p-contact__form .privacy-policy label {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
}
.p-contact__form .privacy-policy a {
  text-decoration: underline;
}
.p-contact__form .form-submit {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-contact__form .form-submit {
    margin-top: 3.5rem;
  }
}
.p-contact__form .wpcf7-submit {
  display: block;
  margin-top: 2em;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--black);
  color: var(--white);
  border: 0.0625rem solid var(--black);
  font-size: 1.25rem;
  width: 90%;
  max-width: 20em;
  border-radius: 2rem;
  transition: 0.3s;
  padding: 0.5em;
}
@media screen and (min-width: 768px) {
  .p-contact__form .wpcf7-submit {
    padding: 0.8em;
  }
}
.p-contact__form .wpcf7-submit:hover {
  background-color: var(--white);
  color: var(--black);
}
.p-contact__form .wpcf7-response-output,
.p-contact__form .wpcf7-not-valid-tip {
  display: none;
}

.p-contact__form-nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  overflow: auto;
  gap: 0.5rem;
}

.p-contact__form-tab {
  position: relative;
  background-color: var(--lightgrey);
  color: var(--darkgrey);
  padding: 0.625rem;
  height: 3.4375rem;
  font-weight: bold;
  border-bottom: 0.0625rem solid var(--lightblue);
  min-width: 8.75rem;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-contact__form-tab {
    height: fit-content;
    font-size: 0.9375rem;
  }
}
.p-contact__form-tab.is-active {
  background-color: var(--white);
  color: var(--navy);
  border-radius: 0.625rem 0.625rem 0 0;
  padding: 0.9375rem;
  border: 0.0625rem solid var(--lightblue);
  border-bottom: none;
  opacity: 1;
  height: fit-content;
}
.p-contact__form-tab.is-active:not(:last-child):before {
  transform: translate(100%, 0);
}
.p-contact__form-tab:not(:last-child):before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0.625rem;
  height: 0.0625rem;
  background-color: var(--lightblue);
  transform: translate(100%, 1px);
}

.p-contact__form-panel {
  opacity: 0;
  height: 0;
  transition: none;
  display: none;
  max-width: 55.5625rem;
  margin-inline: auto;
  padding-block: 1.25rem 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-contact__form-panel {
    padding-block: 2.5rem 6.25rem;
  }
}
.p-contact__form-panel.is-active {
  opacity: 1;
  height: auto;
  transition: 0.3s;
  display: block;
}
.p-contact__form-panel .main-form {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-contact__form-panel .main-form {
    margin-top: 3rem;
  }
}

.p-contact__flow {
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .p-contact__flow {
    margin-bottom: 5rem;
  }
}

.p-contact__flow-list {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 90%;
  max-width: 26rem;
  margin-inline: auto;
}
.p-contact__flow-list:before, .p-contact__flow-list:after {
  content: "";
  height: 0.0625rem;
  position: absolute;
  top: 1.53125rem;
  left: 0;
}
.p-contact__flow-list:before {
  right: 0;
  margin: auto;
  width: 90%;
  background-color: var(--lightgrey);
}
.p-contact__flow-list:after {
  width: 50%;
  background-color: var(--black);
}
.p-contact__flow-list.is-confirm:after {
  width: 90%;
}

.p-contact__flow-item {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: 3.0625rem auto;
  align-items: center;
  text-align: center;
  font-weight: 500;
  gap: 0.3125rem;
  color: var(--darkgrey);
}
.p-contact__flow-item .point {
  position: relative;
  width: 3.0625rem;
  height: 3.0625rem;
  background-color: var(--lightgrey);
  border-radius: 50%;
  margin-inline: auto;
  filter: drop-shadow(0, 0.5rem, 1.875rem, rgba(119, 127, 167, 0.08));
}
.p-contact__flow-item .point:before {
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  background-color: var(--lightblue);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-contact__flow-item.is-active {
  font-weight: bold;
  color: var(--black);
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-contact__flow-item.is-active {
    font-size: 0.9375rem;
  }
}
.p-contact__flow-item.is-active .point {
  background-color: var(--black);
}
.p-contact__flow-item.is-active .point:before {
  background-color: var(--lightblue);
}

.p-contact__submit {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 2rem;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-contact__submit {
    flex-direction: unset;
    margin-top: 4rem;
    gap: 2rem;
  }
}

@media screen and (min-width: 768px) {
  .p-contact__thanks {
    margin-top: 3rem;
  }
}

.p-contact__thanks-head-icon {
  margin-inline: auto;
  width: 3.75rem;
  height: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-contact__thanks-head-icon {
    width: 6.8125rem;
    height: 6.8125rem;
  }
}
.p-contact__thanks-head-icon .image {
  object-fit: contain;
  width: 100%;
  height: 100%;
  margin-inline: auto;
}

.p-contact__thanks-head-text {
  font-weight: 500;
  text-align: center;
  color: #3f99af;
  font-size: 1.5rem;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-contact__thanks-head-text {
    font-size: 2rem;
    margin-top: 1.5rem;
  }
}

.p-contact__thanks-body {
  margin-top: 2rem;
  margin-inline: auto;
  max-width: 62.5rem;
}
@media screen and (min-width: 768px) {
  .p-contact__thanks-body {
    margin-top: 5rem;
  }
}

.p-contact__thanks-body-text {
  font-weight: 500;
  font-size: 0.875rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-contact__thanks-body-text {
    font-size: 1.125rem;
    line-height: 1.83;
    text-align: center;
  }
}

.p-about-the-ceo .c-title {
  padding-block: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-about-the-ceo .c-title {
    padding-block: 3.75rem;
  }
}
.p-about-the-ceo .c-message {
  padding-block: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-about-the-ceo .c-message {
    padding-block: 7.5rem;
  }
}

/*------------------------------
  出版書籍
------------------------------*/
.p-about-the-ceo__publication {
  background-color: var(--lightgrey);
  padding-block: 1.875rem 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-about-the-ceo__publication {
    padding-block: 3.75rem 8.75rem;
  }
}

.p-about-the-ceo__publication-item {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "image" "title" "text" "site";
  border-top: 0.0625rem solid var(--lightblue);
  column-gap: 1.5625rem;
  row-gap: 1.875rem;
  padding-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-about-the-ceo__publication-item {
    grid-template-columns: 30% minmax(0, 1fr);
    grid-template-areas: "image title" "image text" "image site";
    column-gap: 7.5rem;
    row-gap: 0.625rem;
    padding-top: 2.5rem;
  }
}
.p-about-the-ceo__publication-item + .p-about-the-ceo__publication-item {
  margin-top: 3.75rem;
}

.p-about-the-ceo__publication-item-image {
  grid-area: image;
  width: 65%;
  margin-inline: auto;
  height: fit-content;
  box-shadow: 0 0.1875rem 0.625rem rgba(120, 126, 156, 0.16);
}
@media screen and (min-width: 768px) {
  .p-about-the-ceo__publication-item-image {
    width: 100%;
  }
}
.p-about-the-ceo__publication-item-image .image {
  width: 100%;
}

.p-about-the-ceo__publication-item-title {
  grid-area: title;
  font-weight: bold;
  line-height: 1.72;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-about-the-ceo__publication-item-title {
    font-size: 2rem;
  }
}

.p-about-the-ceo__publication-item-text {
  grid-area: text;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-about-the-ceo__publication-item-text {
    line-height: 1.875;
    margin-top: 1.875rem;
  }
}

.p-about-the-ceo__publication-sale-site {
  grid-area: site;
}
@media screen and (min-width: 768px) {
  .p-about-the-ceo__publication-sale-site {
    margin-top: 3.125rem;
  }
}
.p-about-the-ceo__publication-sale-site .title {
  position: relative;
  color: #003d66;
  font-weight: bold;
  padding-left: 1rem;
}
.p-about-the-ceo__publication-sale-site .title:before {
  content: "";
  width: 0.9375rem;
  height: 0.75rem;
  background-image: url("../images/icons/icon-right-arrow-navy.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0.55rem;
  left: 0;
}
.p-about-the-ceo__publication-sale-site .sale-site-list {
  max-width: 38.875rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.625rem;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-about-the-ceo__publication-sale-site .sale-site-list {
    gap: 1.25rem;
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-company-information .c-title {
  padding-block: 3.75rem;
}
.p-company-information .c-recruit-banner .c-title {
  padding-block: 0;
}
.p-company-information .c-recruit-banner:before {
  content: "";
  width: 100%;
  height: 50%;
  background-color: var(--lightgrey);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

/*------------------------------
  ナビゲーション
------------------------------*/
.p-company-information__nav {
  padding: 2rem 0;
}
@media screen and (min-width: 768px) {
  .p-company-information__nav {
    padding: 4rem 0;
  }
}

.p-company-information__nav-list {
  max-width: 67.5rem;
  margin-inline: auto;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 768px) {
  .p-company-information__nav-list {
    gap: 2rem;
    grid-template-columns: repeat(4, 1fr);
  }
}

.p-company-information__nav-link {
  position: relative;
  display: block;
  border-bottom: 0.0625rem solid var(--lightblue);
  font-weight: 500;
  padding: 1rem 0;
  transition: 0.3s;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-company-information__nav-link {
    font-size: 1.125rem;
  }
}
.p-company-information__nav-link .arrow {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: grid;
  place-content: center;
  width: 2rem;
  height: 2rem;
  background-color: var(--lightgrey);
  filter: drop-shadow(0 0.5rem 1.875rem rgba(119, 127, 167, 0.08));
  border-radius: 50%;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-company-information__nav-link .arrow {
    width: 3.0625rem;
    height: 3.0625rem;
  }
}
.p-company-information__nav-link .arrow:before {
  content: "";
  border-right: 0.0625rem solid var(--black);
  border-bottom: 0.0625rem solid var(--black);
  width: 0.375rem;
  height: 0.375rem;
  transform: rotate(45deg);
}
@media screen and (min-width: 768px) {
  .p-company-information__nav-link .arrow:before {
    width: 0.5rem;
    height: 0.5rem;
  }
}
.p-company-information__nav-link:hover {
  border-color: var(--black);
}
.p-company-information__nav-link:hover .arrow {
  background-color: var(--black);
}
.p-company-information__nav-link:hover .arrow:before {
  border-color: var(--white);
}

/*------------------------------
  会社概要
------------------------------*/
.p-company-information__overview {
  overflow: hidden;
}
.p-company-information__overview .l-inner {
  max-width: 62.9375rem;
}

.p-company-information__overview-item {
  display: grid;
  grid-template-columns: 6.25rem minmax(0, 1fr);
  font-weight: 500;
  border-top: 0.0625rem solid var(--lightblue);
  padding: 1.25rem 0;
}
@media screen and (min-width: 768px) {
  .p-company-information__overview-item {
    grid-template-columns: 12.5rem minmax(0, 1fr);
    padding: 1.875rem 0;
  }
}
.p-company-information__overview-item:last-child {
  border-bottom: 0.0625rem solid var(--lightblue);
}
.p-company-information__overview-item .map-link {
  position: relative;
  display: grid;
  place-content: center;
  border-radius: 999px;
  background-color: var(--lightgrey);
  height: 2.6875rem;
  width: 9.4375rem;
  font-family: "Wix Madefor Display", "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 1.5rem;
}
.p-company-information__overview-item .map-link:after {
  content: "";
  width: 0.9375rem;
  height: 1.1875rem;
  background-image: url("../images/icons/icon-location.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5%;
  margin: auto;
}
.p-company-information__overview-item .map-embed {
  margin-top: 2.5rem;
}
.p-company-information__overview-item .map-embed iframe {
  width: 100%;
  max-height: 22.5rem;
}

.p-company-information__overview-catch {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-company-information__overview-catch {
    margin-top: 4rem;
  }
}
.p-company-information__overview-catch .image {
  margin-inline: auto;
}

.p-company-information__overview-gallery {
  overflow: hidden;
  display: flex;
  flex-flow: column nowrap;
  gap: 0.5rem;
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .p-company-information__overview-gallery {
    gap: 1rem;
    flex-flow: row nowrap;
    margin-top: 12rem;
    height: 49.375rem;
  }
}

.p-company-information__overview-gallery-main {
  position: relative;
  overflow: hidden;
  width: 100%;
  flex-grow: 1;
  border-radius: 0.3125rem;
}
.p-company-information__overview-gallery-main .swiper-slide {
  aspect-ratio: 162/79;
}
.p-company-information__overview-gallery-main .image-wrapper {
  width: 100%;
  height: 100%;
}
.p-company-information__overview-gallery-main .image-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.p-company-information__overview-gallery-thumbs {
  overflow: hidden;
  width: 100%;
  height: 2.625rem;
}
@media screen and (min-width: 768px) {
  .p-company-information__overview-gallery-thumbs {
    width: 17.5%;
    height: 100%;
  }
}
.p-company-information__overview-gallery-thumbs .swiper-wrapper {
  flex-direction: row;
}
@media screen and (min-width: 768px) {
  .p-company-information__overview-gallery-thumbs .swiper-wrapper {
    flex-direction: column;
  }
}
.p-company-information__overview-gallery-thumbs .swiper-slide {
  position: relative;
  flex-flow: row nowrap;
}
@media screen and (min-width: 768px) {
  .p-company-information__overview-gallery-thumbs .swiper-slide {
    flex-flow: column nowrap;
  }
}
.p-company-information__overview-gallery-thumbs .image-wrapper {
  width: 100%;
  height: 100%;
}
.p-company-information__overview-gallery-thumbs .image-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.p-company-information__overview-gallery-thumbs .progress-bar-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
}
.p-company-information__overview-gallery-thumbs .progress-bar {
  /* CSS変数 --path-length を使う（JSで設定） */
  stroke-dasharray: var(--path-length, 300);
  stroke-dashoffset: var(--path-length, 300);
}
.p-company-information__overview-gallery-thumbs .swiper-slide-thumb-active .progress-bar-container {
  opacity: 1;
}
.p-company-information__overview-gallery-thumbs .swiper-slide-thumb-active .progress-bar {
  animation: line-animation 8s linear forwards;
}
@keyframes line-animation {
  from {
    stroke-dashoffset: var(--path-length);
  }
  to {
    stroke-dashoffset: 0;
  }
}

/*------------------------------
  役員紹介
------------------------------*/
.p-company-information__executive {
  overflow: hidden;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-company-information__executive {
    margin-top: 8rem;
  }
}

.p-company-information__executive-team-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}
@media screen and (min-width: 500px) {
  .p-company-information__executive-team-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .p-company-information__executive-team-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.p-company-information__executive-team-item .image-container {
  position: relative;
}
.p-company-information__executive-team-item .image-container:hover .image-wrapper.-front {
  animation: front-image-anime 1s linear forwards;
}
.p-company-information__executive-team-item .image-container:hover .image-wrapper.-back {
  animation: back-image-anime 1s linear forwards;
}
@keyframes front-image-anime {
  0% {
    opacity: 1;
    z-index: 2;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
    z-index: 1;
  }
}
@keyframes back-image-anime {
  0% {
    transform: rotate(0deg);
    z-index: 1;
  }
  50% {
    transform: rotate(15deg);
  }
  100% {
    transform: rotate(0deg);
    z-index: 2;
  }
}
.p-company-information__executive-team-item .image-wrapper {
  overflow: hidden;
  border-radius: 0.3125rem;
  aspect-ratio: 162/221;
  transition: 0.5s;
  transform-origin: bottom;
}
.p-company-information__executive-team-item .image-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.p-company-information__executive-team-item .image-wrapper.-front {
  position: relative;
  z-index: 2;
}
.p-company-information__executive-team-item .image-wrapper.-back {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.p-company-information__executive-team-item .position {
  color: var(--darkgrey);
  font-weight: 500;
  margin-top: 1rem;
}
.p-company-information__executive-team-item .name {
  font-weight: 600;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-company-information__executive-team-item .name {
    font-size: 1.5rem;
  }
}
.p-company-information__executive-team-item .name-en {
  font-weight: 600;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-company-information__executive-team-item .name-en {
    font-size: 0.875rem;
  }
}

/*------------------------------
  提携先企業
------------------------------*/
.p-company-information__business-partners {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-company-information__business-partners {
    margin-top: 8rem;
  }
}

.p-company-information__business-partners-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-company-information__business-partners-list {
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    gap: 3.125rem 4.375rem;
  }
}

.p-company-information__business-partners-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .p-company-information__business-partners-item {
    height: 4.625rem;
  }
}
.p-company-information__business-partners-item img {
  max-height: 90%;
}

/*------------------------------
  沿革
------------------------------*/
.p-company-information__history {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-company-information__history {
    margin-top: 6.25rem;
  }
}

/*------------------------------
  企業の取り組み
------------------------------*/
.p-company-information__csr {
  overflow: hidden;
  background-color: var(--lightgrey);
  padding: 2.5rem 0;
}
@media screen and (min-width: 768px) {
  .p-company-information__csr {
    padding: 5rem 0;
  }
}

.p-company-information__csr-container {
  position: relative;
}
.p-company-information__csr-container:before {
  content: "";
  width: 21.6875rem;
  height: 23.9375rem;
  background-image: url("../images/common/japan-map.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: -3%;
}
@media screen and (min-width: 768px) {
  .p-company-information__csr-container:before {
    right: -6%;
    width: 43.375rem;
    height: 47.875rem;
  }
}
.p-company-information__csr-container .c-button-anime {
  margin-inline: auto;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-company-information__csr-container .c-button-anime {
    margin-top: 4rem;
  }
}

.p-company-information__csr-contents {
  position: relative;
}

.p-company-information__csr-title {
  text-align: center;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-company-information__csr-title {
    line-height: 2.25;
    font-size: 2rem;
  }
}

.p-company-information__csr-text {
  font-weight: 500;
  max-width: 56.25rem;
  margin-inline: auto;
  margin-top: 2rem;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-company-information__csr-text {
    line-height: 1.83;
    font-size: 1.125rem;
  }
}

.p-company-information__csr-lead {
  font-weight: bold;
  text-align: center;
  margin-top: 2rem;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-company-information__csr-lead {
    margin-top: 4rem;
    font-size: 1.5rem;
  }
}

.p-company-information__csr-list {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (min-width: 768px) {
  .p-company-information__csr-list {
    margin-top: 3rem;
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-company-information__csr-item {
  text-align: center;
  width: 100%;
  border-top: 0.0625rem solid var(--darkgrey);
  padding: 1.25rem 0;
}
@media screen and (min-width: 768px) {
  .p-company-information__csr-item {
    border-top: none;
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-company-information__csr-item:last-child {
    border-bottom: 0.0625rem solid var(--darkgrey);
  }
}
@media screen and (min-width: 768px) {
  .p-company-information__csr-item:not(:last-child) {
    border-right: 0.0625rem solid var(--darkgrey);
  }
}
.p-company-information__csr-item .value {
  margin-top: 0.625rem;
}
.p-company-information__csr-item .text {
  font-weight: bold;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-company-information__csr-item .text {
    font-size: 1.5rem;
  }
}
.p-company-information__csr-item .num {
  color: var(--main-c);
  line-height: 1;
  font-weight: bold;
  font-size: 2.625rem;
}
@media screen and (min-width: 768px) {
  .p-company-information__csr-item .num {
    font-size: 4.5rem;
  }
}
.p-company-information__csr-item .unit {
  font-weight: bold;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-company-information__csr-item .unit {
    font-size: 1.5rem;
  }
}

.p-company-information__csr-collaboration {
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .p-company-information__csr-collaboration {
    margin-top: 10rem;
  }
}

.p-company-information__csr-collaboration-title {
  text-align: center;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-company-information__csr-collaboration-title {
    font-size: 2rem;
  }
}

.p-company-information__csr-collaboration-image {
  margin-inline: auto;
  width: fit-content;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-company-information__csr-collaboration-image {
    margin-top: 3rem;
  }
}

.p-company-information__csr-collaboration-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-company-information__csr-collaboration-list {
    margin-top: 4rem;
  }
}

.p-company-information__csr-collaboration-item {
  width: calc((100% - 2rem) / 3);
}

.p-company-information__csr-collaboration-text {
  text-align: center;
  font-weight: 500;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-company-information__csr-collaboration-text {
    margin-top: 4rem;
  }
}

.p-company-information__csr-collaboration-message {
  display: grid;
  border-top: 0.0625rem solid var(--lightblue);
  padding-top: 2rem;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-company-information__csr-collaboration-message {
    grid-template-columns: 40% minmax(0, 1fr);
    padding-top: 4rem;
    margin-top: 4rem;
  }
}

.p-company-information__csr-collaboration-message-image {
  margin-inline: auto;
  width: 50%;
}
@media screen and (min-width: 768px) {
  .p-company-information__csr-collaboration-message-image {
    width: 80%;
    max-width: 15.3125rem;
  }
}

.p-company-information__csr-collaboration-message-text {
  padding-top: 1rem;
}
.p-company-information__csr-collaboration-message-text .text {
  font-weight: 500;
  line-height: 1.875;
  max-width: 42.6875rem;
}
.p-company-information__csr-collaboration-message-text .position {
  font-weight: 500;
  margin-top: 1rem;
  color: var(--darkgrey);
}
.p-company-information__csr-collaboration-message-text .name {
  font-weight: 800;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-company-information__csr-collaboration-message-text .name {
    font-size: 1.5rem;
  }
}

.p-number__heading {
  position: relative;
  overflow: hidden;
  padding-block: 3.75rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-number__heading {
    padding-block: 7.5rem 1.25rem;
  }
}
.p-number__heading .c-loop-text {
  position: absolute;
  inset: 0;
  margin: auto;
}

.p-number__heading-title {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-number__heading-title {
    gap: 3rem;
  }
}
.p-number__heading-title .title {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-number__heading-title .text {
    text-align: center;
  }
}

.p-number__contents {
  overflow: hidden;
  padding: 2rem 0 4rem;
}
@media screen and (min-width: 768px) {
  .p-number__contents {
    padding: 4rem 0 8rem;
  }
}

.p-number__contents-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-number__contents-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-number__contents-item {
  background-color: var(--white);
  border: 0.0625rem solid var(--lightblue);
  border-radius: 0.625rem;
  padding: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-number__contents-item {
    border-radius: 1.25rem;
    padding: 3rem;
    height: 41.0625rem;
  }
}
.p-number__contents-item .c-numbers-item .title {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-number__contents-item .c-numbers-item .title {
    font-size: 1.5rem;
  }
}
.p-number__contents-item svg {
  width: 100%;
  height: 100%;
}

.p-tiktok .c-overview {
  clip-path: unset;
}
.p-tiktok .c-overview .c-title {
  overflow: unset;
  clip-path: unset;
}
.p-tiktok .c-overview .c-title:after {
  z-index: 0;
}
.p-tiktok .c-overview .c-title__wrap {
  position: relative;
  z-index: 1;
}

.p-tiktok__head {
  position: relative;
  z-index: 2;
  background-color: var(--white);
  clip-path: ellipse(100% 100% at 50% 100%);
  padding-block: 3.75rem 0;
  margin-top: -2.5rem;
}
@media screen and (min-width: 768px) {
  .p-tiktok__head {
    clip-path: ellipse(65% 100% at 50% 100%);
    padding-block: 9.375rem 5rem;
    margin-top: -7.5rem;
  }
}

.p-tiktok__head-title {
  text-align: center;
  font-weight: bold;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-tiktok__head-title {
    font-size: 2.625rem;
  }
}
.p-tiktok__head-title span {
  display: inline-block;
  margin-inline: 0.625rem;
  font-size: 1.48em;
  background: linear-gradient(to right, #ed7a49, #ea3776);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.p-tiktok-commercer {
  background-color: var(--white);
  padding-block: 5rem 7.5rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-tiktok-commercer {
    padding-block: 7.5rem 9.375rem;
  }
}

.p-tiktok-commercer__list {
  display: grid;
  margin-top: 3rem;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-tiktok-commercer__list {
    margin-top: 5rem;
    grid-template-columns: repeat(4, 1fr);
  }
}

.p-tiktok-commercer__item {
  width: 100%;
  transition: 0.3s;
}
.p-tiktok-commercer__item:hover {
  cursor: url("../images/common/a-cursor.png") 20 18, auto;
  transform: translateY(-10%);
}
.p-tiktok-commercer__item:hover .image-wrapper:after {
  opacity: 1;
}
.p-tiktok-commercer__item .image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-tiktok-commercer__item .image-wrapper {
    border-radius: 1.25rem;
  }
}
.p-tiktok-commercer__item .image-wrapper:after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: 0.3s;
}
.p-tiktok-commercer__item .name-en {
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-weight: 600;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-tiktok-commercer__item .name-en {
    font-size: 1.5rem;
  }
}
.p-tiktok-commercer__item .title-wrap {
  position: relative;
  text-align: center;
  margin-top: 1rem;
}
.p-tiktok-commercer__item .name {
  font-family: "Wix Madefor Display", "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-tiktok-commercer__item .name {
    font-size: 1.75rem;
  }
}
.p-tiktok-commercer__item .tiktok {
  position: absolute;
  top: 0;
  right: 0;
  width: 1.875rem;
  height: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-tiktok-commercer__item .tiktok {
    width: 2.3125rem;
    height: 2.3125rem;
  }
}

.p-tiktok-commercer__more-container {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-tiktok-commercer__more-container {
    margin-top: 5rem;
  }
}

.p-tiktok-commercer__more-title {
  text-align: center;
  font-weight: bold;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-tiktok-commercer__more-title {
    font-size: 2.25rem;
  }
}

.p-tiktok-commercer__more-list {
  display: grid;
  gap: 1.5625rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-tiktok-commercer__more-list {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 2.5rem;
  }
}

.p-tiktok-commercer__more-item {
  position: relative;
}
.p-tiktok-commercer__more-item .image-wrapper {
  overflow: hidden;
  aspect-ratio: 5/4;
  border-radius: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-tiktok-commercer__more-item .image-wrapper {
    border-radius: 1.25rem;
  }
}
.p-tiktok-commercer__more-item .image-wrapper .image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.p-tiktok-commercer__more-item .title-wrap {
  position: relative;
  margin-top: 1rem;
  text-align: center;
}
.p-tiktok-commercer__more-item .name {
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-tiktok-commercer__more-item .name {
    font-size: 1.75rem;
  }
}
.p-tiktok-commercer__more-item .tiktok {
  position: absolute;
  top: 0;
  right: 0;
  width: 1.875rem;
  height: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-tiktok-commercer__more-item .tiktok {
    width: 2.3125rem;
    height: 2.3125rem;
  }
}

.p-local-revival .c-slider-loop {
  padding-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-local-revival .c-slider-loop {
    padding-top: 12.5rem;
  }
}

.p-privacy-policy_contents {
  padding-block: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-privacy-policy_contents {
    padding-block: 7.5rem;
  }
}
.p-privacy-policy_contents .l-inner {
  max-width: 62.5rem;
}

.p-privacy-policy_list-item + .p-privacy-policy_list-item {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-privacy-policy_list-item + .p-privacy-policy_list-item {
    margin-top: 4rem;
  }
}
.p-privacy-policy_list-item .title {
  font-weight: bold;
  border-bottom: 0.0625rem solid var(--lightgrey);
  padding-bottom: 0.5rem;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-privacy-policy_list-item .title {
    font-size: 1.5rem;
  }
}
.p-privacy-policy_list-item .text {
  font-weight: 500;
  margin-top: 1rem;
  line-height: 1.875;
}
@media screen and (min-width: 768px) {
  .p-privacy-policy_list-item .text {
    margin-top: 2rem;
  }
}

.p-legal-notice_contents {
  padding-block: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-legal-notice_contents {
    padding-block: 7.5rem;
  }
}
.p-legal-notice_contents .l-inner {
  max-width: 62.5rem;
}

.p-legal-notice_contents-lead {
  text-align: center;
  font-weight: bold;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-legal-notice_contents-lead {
    font-size: 1.5rem;
  }
}

.p-legal-notice_list {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-legal-notice_list {
    margin-top: 4rem;
  }
}

.p-legal-notice_list-item {
  border-top: 0.0625rem solid var(--lightgrey);
  padding-block: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-legal-notice_list-item {
    padding-block: 2.1875rem;
  }
}
.p-legal-notice_list-item:last-child {
  border-bottom: 0.0625rem solid var(--lightgrey);
}

.p-legal-notice_list-item-content {
  font-weight: 500;
  display: grid;
  grid-template-columns: 25% minmax(0, 1fr);
  gap: 5%;
}
@media screen and (min-width: 768px) {
  .p-legal-notice_list-item-content {
    grid-template-columns: 15% minmax(0, 1fr);
  }
}

/*---------ヘルパークラス　接頭辞「u-」-------------*/
.u-sp {
  display: block !important;
}
@media screen and (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}

.u-pc {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .u-pc {
    display: block !important;
  }
}

.u-hide {
  visibility: hidden !important;
  opacity: 0 !important;
}

.u-show {
  visibility: visible !important;
  opacity: 1 !important;
}

.u-hidden {
  overflow: hidden !important;
}

.u-d-inline {
  display: inline-block !important;
}

.u-mt-xs {
  margin-top: 0.3125rem !important;
}

.u-mt-s {
  margin-top: 0.625rem !important;
}

.u-mt-m {
  margin-top: 1.25rem !important;
}

.u-mt-l {
  margin-top: 1.875rem !important;
}

.u-mt-xl {
  margin-top: 1.875rem !important;
}

.u-mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

@media screen and (min-width: 768px) {
  .u-mt-xs {
    margin-top: 0.625rem !important;
  }
  .u-mt-s {
    margin-top: 1.25rem !important;
  }
  .u-mt-m {
    margin-top: 1.875rem !important;
  }
  .u-mt-l {
    margin-top: 3.75rem !important;
  }
  .u-mt-xl {
    margin-top: 5rem !important;
  }
}
.u-bg {
  background-color: var(--base-c);
}

.u-spacer1 {
  padding-top: 1vw;
}
@media screen and (min-width: 768px) {
  .u-spacer1 {
    padding-top: 1rem;
  }
}

.u-spacer2 {
  padding-top: 2vw;
}
@media screen and (min-width: 768px) {
  .u-spacer2 {
    padding-top: 2rem;
  }
}

.u-spacer3 {
  padding-top: 3vw;
}
@media screen and (min-width: 768px) {
  .u-spacer3 {
    padding-top: 3rem;
  }
}

.u-spacer4 {
  padding-top: 4vw;
}
@media screen and (min-width: 768px) {
  .u-spacer4 {
    padding-top: 4rem;
  }
}

.u-spacer5 {
  padding-top: 5vw;
}
@media screen and (min-width: 768px) {
  .u-spacer5 {
    padding-top: 5rem;
  }
}

.u-spacer6 {
  padding-top: 6vw;
}
@media screen and (min-width: 768px) {
  .u-spacer6 {
    padding-top: 6rem;
  }
}

.u-spacer7 {
  padding-top: 7vw;
}
@media screen and (min-width: 768px) {
  .u-spacer7 {
    padding-top: 7rem;
  }
}

.u-spacer8 {
  padding-top: 8vw;
}
@media screen and (min-width: 768px) {
  .u-spacer8 {
    padding-top: 8rem;
  }
}

.u-spacer9 {
  padding-top: 9vw;
}
@media screen and (min-width: 768px) {
  .u-spacer9 {
    padding-top: 9rem;
  }
}

.u-spacer10 {
  padding-top: 10vw;
}
@media screen and (min-width: 768px) {
  .u-spacer10 {
    padding-top: 10rem;
  }
}

.u-tac {
  text-align: center !important;
}

.u-tal {
  text-align: left !important;
}

.u-tar {
  text-align: right !important;
}

.u-taj {
  text-align: justify !important;
}

.u-f-bold {
  font-weight: bold !important;
}

.u-f-en {
  font-family: "Wix Madefor Display", "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
}

.u-c-main {
  color: var(--main-c);
}

.u-c-white {
  color: var(--white);
}

.u-c-black {
  color: var(--black);
}

.u-c-grad {
  background: #EA3776;
  background: linear-gradient(to right, #EA3776 0%, #ED7A49 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.u-t-deco {
  position: relative;
  padding-right: 0.9375rem;
  padding-bottom: 0.1875rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .u-t-deco {
    padding-right: 1.375rem;
    padding-bottom: 0.3125rem;
  }
}
.u-t-deco::before {
  content: "";
  display: inline-block;
  width: calc(100% - 0.3125rem);
  height: 0.125rem;
  background-color: var(--black);
  position: absolute;
  bottom: 0.25rem;
  left: 0;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .u-t-deco::before {
    width: calc(100% - 0.5rem);
    height: 0.1875rem;
    bottom: 0.4375rem;
  }
}
.u-t-deco::after {
  content: "";
  display: inline-block;
  width: 0.625rem;
  height: 0.625rem;
  background-color: var(--lightblue);
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .u-t-deco::after {
    width: 1.0625rem;
    height: 1.0625rem;
  }
}/*# sourceMappingURL=style.css.map */