@charset "UTF-8";
/*-----------ベース -----------*/
@font-face {
  font-family: "TsunagiGothic";
  src: url("../fonts/TsunagiGothic.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
:root {
  --yellow: #ffef00;
  --lightyellow: #f9f2bb;
  --blue: #0092f1;
  --navy: #285FD6;
  --lightblue: #e9f0f7;
  --green: #35B597;
  --lightgreen: #dcedd0;
  --red: #fc0000;
  --orange: #e83b18;
  --white: #fff;
  --offwhite: #f9f9f9;
  --black: #20283A;
  --grey: #D6D6D6;
  --darkgrey: #848c8f;
  --lightgrey: #F3F6FA;
  --ivory: #f5f1eb;
  --main-c: var(--navy);
  --base-c: var(--green);
  --accent-c: var(--green);
  --bg-c: var(--white);
  --sub-bg-c: var(--lightgrey);
  --border-c: var(--grey);
}

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

.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-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%);
}

*,
*::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;
  text-decoration: none;
}

/* 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: 375px) {
  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 {
  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;
  color: var(--black);
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1rem;
  }
}

main {
  overflow: hidden;
}

a {
  color: inherit;
  cursor: pointer;
}

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;
}

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

h1 {
  font-size: clamp(3.125rem, 2.527rem + 2.55vw, 3.75rem);
}
@media screen and (min-width: 768px) {
  h1 {
    font-size: 5rem;
  }
}

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

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: 1.125rem;
}
@media screen and (min-width: 768px) {
  h5 {
    font-size: 1.5rem;
  }
}

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

/*-----------レイアウト　接頭辞「l-」-----------*/
.l-archive__head {
  background-color: var(--sub-bg-c);
}

.l-archive__select-wrap {
  background-color: #fff;
  border-radius: 2.5rem 2.5rem 0 0;
  padding-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .l-archive__select-wrap {
    border-radius: 3.75rem 3.75rem 0 0;
    padding-top: 5.3125rem;
  }
}

.l-archive__select-inner {
  width: calc(89% - 1.25rem);
  max-width: 75rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-archive__select-inner {
    width: 90%;
  }
}

.l-archive__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.l-archive__select-subdivision .select-title {
  font-size: 1rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .l-archive__select-subdivision .select-title {
    font-size: 1.125rem;
  }
}

.l-archive__select {
  padding: 0.625rem;
  margin-top: 0.625rem;
  margin-left: -0.625rem;
  background-color: rgba(245, 245, 251, 0.61);
  border-radius: 3.125rem;
  position: relative;
  width: fit-content;
}
.l-archive__select::after {
  content: "";
  display: inline-block;
  width: 0.5625rem;
  height: 0.5625rem;
  border-top: solid 0.125rem #76808F;
  border-right: solid 0.125rem #76808F;
  position: absolute;
  right: 2.5rem;
  top: 48%;
  transform: translateY(-50%) rotate(135deg);
}
.l-archive__select select {
  background-color: #fff;
  color: var(--main-c);
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  text-align-last: center;
  border: none;
  border-radius: 3.125rem;
  padding-block: 1.0625rem;
  box-shadow: 0 0.125rem 0 rgba(13, 62, 135, 0.16);
  outline: none;
  appearance: none;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .l-archive__select select {
    font-size: 1.125rem;
    padding-block: 1.25rem;
  }
}
.l-archive__select.-category select {
  min-width: 18.25rem;
}
.l-archive__select.-year select {
  min-width: 10.625rem;
}

.l-archive__container {
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .l-archive__container {
    padding-bottom: 8.125rem;
  }
}

.l-archive__image {
  border: solid 0.0625rem var(--border-c);
  border-radius: 0.625rem;
  overflow: hidden;
}
.l-archive__image .image {
  transition: 0.3s;
}

.l-archive__body-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .l-archive__body-inner {
    margin-top: 1.25rem;
  }
}

.l-archive__pagenation {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-top: 5rem;
}
.l-archive__pagenation .link,
.l-archive__pagenation .item.dots {
  width: 2.375rem;
  height: 2.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
}
.l-archive__pagenation .link:hover,
.l-archive__pagenation .item.dots:hover {
  opacity: 0.6;
}
.l-archive__pagenation .link {
  font-family: "General Sans", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .l-archive__pagenation .link {
    font-size: 1.25rem;
  }
}
.l-archive__pagenation .item.dots:hover {
  opacity: 1;
}
.l-archive__pagenation .link.is-active {
  background-color: var(--main-c);
  color: #fff;
}
.l-archive__pagenation .link.prev,
.l-archive__pagenation .link.next {
  background-color: #fff;
  border: solid 0.0625rem #E9E9E9;
}
.l-archive__pagenation .link.prev .arrow,
.l-archive__pagenation .link.next .arrow {
  width: 0.875rem;
  height: 0.875rem;
  background-image: url("../images/icons/arrow.svg");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.l-archive__pagenation .link.prev {
  transform: rotate(180deg);
  margin-right: 0.75rem;
}
.l-archive__pagenation .link.next {
  margin-left: 0.75rem;
}

.p-topics .l-archive__list,
.p-topics_cat .l-archive__list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1.5rem;
  row-gap: 2.5rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-topics .l-archive__list,
  .p-topics_cat .l-archive__list {
    column-gap: 3rem;
    row-gap: 5rem;
    margin-top: 3.125rem;
  }
}
.p-topics .l-archive__item,
.p-topics_cat .l-archive__item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-topics .l-archive__item,
  .p-topics_cat .l-archive__item {
    width: calc((100% - 6rem) / 3);
  }
}
.p-topics .l-archive__link,
.p-topics_cat .l-archive__link {
  transition: 0.3s;
}
.p-topics .l-archive__link:hover .l-archive__image .image,
.p-topics_cat .l-archive__link:hover .l-archive__image .image {
  transform: scale(1.05);
}
.p-topics .l-archive__link:hover .arrow,
.p-topics_cat .l-archive__link:hover .arrow {
  margin-inline: auto 0.1875rem;
}
.p-topics .l-archive__link .date,
.p-topics_cat .l-archive__link .date {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-topics .l-archive__link .date,
  .p-topics_cat .l-archive__link .date {
    font-size: 1.125rem;
  }
}
.p-topics .l-archive__link .title,
.p-topics_cat .l-archive__link .title {
  font-weight: 500;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-topics .l-archive__link .title,
  .p-topics_cat .l-archive__link .title {
    margin-top: 1rem;
  }
}
.p-topics .l-archive__link .arrow,
.p-topics_cat .l-archive__link .arrow {
  display: block;
  width: 1.25rem;
  height: 0.5rem;
  background-image: url("../images/icons/arrow.svg");
  background-size: cover;
  margin-top: 0.625rem;
  margin-inline: auto 0.625rem;
  transition: 0.3s;
}

.p-news .l-archive__link,
.p-front .l-archive__link {
  position: relative;
  overflow: hidden;
  z-index: 0;
  display: block;
  transition: 0.3s;
}
.p-news .l-archive__link::before,
.p-front .l-archive__link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(219, 238, 255) 0%, rgb(255, 255, 255) 100%);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size 0.4s ease;
  z-index: -1;
}
.p-news .l-archive__link:hover::before,
.p-front .l-archive__link:hover::before {
  background-size: 100% 100%;
}
.p-news .l-archive__link .head-wrap,
.p-front .l-archive__link .head-wrap {
  padding-block: 1.5625rem;
  position: relative;
  border-bottom: solid 0.0625rem #DCE2EB;
}
@media screen and (min-width: 768px) {
  .p-news .l-archive__link .head-wrap,
  .p-front .l-archive__link .head-wrap {
    padding-block: 3.375rem 3.875rem;
  }
}
.p-news .l-archive__link .head,
.p-front .l-archive__link .head {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  row-gap: 0.3125rem;
  column-gap: 0.625rem;
  width: 87%;
}
@media screen and (min-width: 768px) {
  .p-news .l-archive__link .head,
  .p-front .l-archive__link .head {
    column-gap: 1.875rem;
    width: 85%;
  }
}
.p-news .l-archive__link .date,
.p-front .l-archive__link .date {
  font-size: 0.875rem;
  width: 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-news .l-archive__link .date,
  .p-front .l-archive__link .date {
    font-size: 1.125rem;
    width: 5.625rem;
  }
}
.p-news .l-archive__link .category,
.p-front .l-archive__link .category {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3125rem;
  width: fit-content;
}
.p-news .l-archive__link .title,
.p-front .l-archive__link .title {
  font-weight: 500;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-news .l-archive__link .title,
  .p-front .l-archive__link .title {
    margin-top: 1.25rem;
  }
}
.p-news .l-archive__link .arrow,
.p-front .l-archive__link .arrow {
  width: 1.25rem;
  height: 0.5rem;
  position: absolute;
  top: 2.375rem;
  right: 1.25rem;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .p-news .l-archive__link .arrow,
  .p-front .l-archive__link .arrow {
    top: 50%;
    right: 5.3125rem;
  }
}

.p-news .l-archive__list {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-news .l-archive__list {
    margin-top: 3.75rem;
  }
}
.p-news .head-wrap {
  width: 89%;
  max-width: 75rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-news .head-wrap {
    padding-inline: 1.875rem;
  }
}
.p-news .l-archive__item:first-child .head-wrap {
  border-top: solid 0.0625rem #DCE2EB;
}
.p-news .arrow {
  display: block;
  aspect-ratio: 20/8;
  background-image: url(../images/icons/arrow.svg);
  background-size: cover;
}

@media screen and (min-width: 768px) {
  .p-front .l-archive__link {
    padding-left: 7rem;
  }
}
.p-front .head-wrap {
  width: calc(100% - 2.5rem);
  margin-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-front .head-wrap {
    width: 50.875rem;
    margin-inline: 0;
    padding-inline: 1.25rem;
  }
}

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

.l-article__head-inner {
  padding-block: 7.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-article__head-inner {
    padding-block: 15.625rem;
  }
}

.l-article__head-image {
  position: absolute;
  top: 50%;
  right: -1.25rem;
  transform: translateY(-50%);
  aspect-ratio: 598/324;
  width: clamp(18.75rem, 12.771rem + 25.51vw, 25rem);
  height: auto;
}
@media screen and (min-width: 768px) {
  .l-article__head-image {
    width: 37.375rem;
  }
}

.l-article__inner {
  width: 89%;
  max-width: 62.5rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-article__inner {
    width: 100%;
  }
}

.l-article__container {
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .l-article__container {
    padding-bottom: 8.125rem;
  }
}

.l-article__title-wrap {
  background-color: #fff;
  position: relative;
  border-radius: 2.5rem 2.5rem 0 0;
  margin-top: -5.625rem;
  padding-block: 1.875rem;
}
@media screen and (min-width: 768px) {
  .l-article__title-wrap {
    border-radius: 3.75rem 3.75rem 0 0;
    margin-top: -12.5rem;
    padding-block: 5.5rem 3.4375rem;
  }
}

.l-article__title {
  font-weight: bold;
}

.l-article__sub {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .l-article__sub {
    margin-top: 1.25rem;
  }
}
.l-article__sub .category {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3125rem;
}

.l-article__date {
  font-size: 0.875rem;
  color: #76808F;
}
@media screen and (min-width: 768px) {
  .l-article__date {
    font-size: 1.125rem;
  }
}

.l-article__content {
  border-top: solid 0.0625rem #DCE2EB;
  border-bottom: solid 0.0625rem #DCE2EB;
  padding-block: 2.5rem;
}
@media screen and (min-width: 768px) {
  .l-article__content {
    padding-block: 4.75rem 6.25rem;
  }
}

.l-article__pagenation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3.75rem;
}
.l-article__pagenation .link {
  display: flex;
  align-items: center;
  transition: 0.3s;
}
.l-article__pagenation .link:hover {
  opacity: 0.6;
}
.l-article__pagenation .item.-prev,
.l-article__pagenation .item.-next {
  width: 4.875rem;
}
@media screen and (min-width: 768px) {
  .l-article__pagenation .item.-prev,
  .l-article__pagenation .item.-next {
    width: 6rem;
  }
}
.l-article__pagenation .item.-prev .link,
.l-article__pagenation .item.-next .link {
  gap: 0.5rem;
  color: #76808F;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .l-article__pagenation .item.-prev .link,
  .l-article__pagenation .item.-next .link {
    gap: 0.75rem;
  }
}
.l-article__pagenation .arrow {
  display: block;
  width: 0.875rem;
  height: 0.875rem;
  background-image: url("../images/icons/arrow.svg");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .l-article__pagenation .arrow {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.l-article__pagenation .item.-prev .arrow {
  transform: rotate(180deg);
}
.l-article__pagenation .item.-return .link {
  font-weight: bold;
  justify-content: center;
  gap: 0.3125rem;
  border: solid 0.0625rem var(--main-c);
  border-radius: 3.125rem;
  width: 8.125rem;
  padding: 0.625rem;
}
@media screen and (min-width: 768px) {
  .l-article__pagenation .item.-return .link {
    width: 16.25rem;
    padding: 1.125rem;
  }
}
.l-article__pagenation .item.-return .icon {
  width: 0.875rem;
  height: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .l-article__pagenation .item.-return .icon {
    width: 1.25rem;
    height: 1.125rem;
  }
}

.p-requirements .l-article-h2 {
  background-color: var(--sub-bg-c);
}
.p-requirements .l-article-h2__inner {
  padding-block: 7.5rem 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-requirements .l-article-h2__inner {
    padding-block: 15.625rem 9.375rem;
  }
}
.p-requirements .l-article-h2__contents {
  position: relative;
  z-index: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-requirements .l-article-h2__contents {
    width: 50%;
  }
}
.p-requirements .c-title-h2__main {
  margin-top: 2.5rem;
}
.p-requirements .l-article-h2__image {
  width: clamp(12.5rem, 6.521rem + 25.51vw, 18.75rem);
  position: absolute;
  top: 1.875rem;
  left: clamp(8.75rem, 6.956rem + 7.65vw, 10.625rem);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-requirements .l-article-h2__image {
    width: 29.5rem;
    top: 0.625rem;
    right: 0;
    left: unset;
  }
}
.p-requirements .l-article__wrapper {
  background-color: var(--sub-bg-c);
}
.p-requirements .l-article__container {
  background-color: #fff;
  border-radius: 2.5rem 2.5rem 0 0;
  padding-block: 1.875rem 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-requirements .l-article__container {
    border-radius: 3.75rem 3.75rem 0 0;
    padding-block: 8.125rem;
  }
}
.p-requirements .l-article__main {
  max-width: 75rem;
  margin: 0 auto;
}
.p-requirements .l-article-recruit__position {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.625rem;
  border-bottom: solid 0.0625rem #D6D6D6;
  padding-bottom: 1.25rem;
  margin-bottom: 2.5rem;
  margin-inline: auto;
  width: 89%;
}
.p-requirements .c-button.-recruit {
  width: 7.25rem;
  font-size: 0.875rem;
  font-family: "General Sans", sans-serif;
  padding-block: 0.5625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-requirements .c-button.-recruit {
    width: 12.5rem;
    font-size: 1rem;
    padding-block: 0.75rem;
  }
}
.p-requirements .c-button.-recruit:hover .arrow {
  background-image: url("../images/icons/arrow.svg");
}
.p-requirements .c-button.-recruit .arrow {
  display: block;
  width: 0.875rem;
  height: 0.875rem;
  position: absolute;
  top: 50%;
  right: 0.625rem;
  transform: translateY(-50%);
  background-image: url("../images/icons/arrow-wht.svg");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .p-requirements .c-button.-recruit .arrow {
    width: 1.25rem;
    height: 1.25rem;
    right: 1.25rem;
  }
}
.p-requirements .l-article-recruit__title {
  display: flex;
  align-items: center;
  gap: 0.4375rem;
  background-color: var(--sub-bg-c);
  border-radius: 0.625rem;
  padding: 1.25rem;
  margin-inline: auto;
  width: 89%;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-requirements .l-article-recruit__title {
    padding: 1.875rem 2rem;
    font-size: 1.25rem;
  }
}
.p-requirements .l-article-recruit__title .icon {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  background-image: url("../images/icons/icon-arrow-blu.svg");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .p-requirements .l-article-recruit__title .icon {
    width: 1.5625rem;
    height: 1.5625rem;
  }
}
.p-requirements .l-article-recruit__title:not(:first-child) {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-requirements .l-article-recruit__title:not(:first-child) {
    margin-top: 4.375rem;
  }
}
.p-requirements .c-table-col2 {
  width: 89%;
  max-width: 62.5rem;
  margin: 0 auto;
}
.p-requirements .c-table-col2__row:first-child .c-table-col2__title::before,
.p-requirements .c-table-col2__row:first-child .c-table-col2__title::after,
.p-requirements .c-table-col2__row:first-child .c-table-col2__cont::before {
  display: none;
}
.p-requirements .l-article-recruit__list {
  display: flex;
  flex-direction: column;
  gap: 2.8125rem;
  width: 89%;
  max-width: 62.5rem;
  margin: 0 auto;
  padding-block: 2.5rem;
  counter-reset: listnum;
}
@media screen and (min-width: 768px) {
  .p-requirements .l-article-recruit__list {
    gap: 4rem;
    padding-block: 4.5rem;
  }
}
.p-requirements .l-article-recruit__item {
  background-color: #fff;
  border-radius: 0.625rem;
  box-shadow: 0 0 3.75rem rgba(87, 107, 136, 0.16);
  padding: 1.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-requirements .l-article-recruit__item {
    padding: 1.875rem 2.375rem;
  }
}
.p-requirements .l-article-recruit__item .title {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  font-size: 1rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .p-requirements .l-article-recruit__item .title {
    font-size: 1.25rem;
  }
}
.p-requirements .l-article-recruit__item .title::before {
  content: "STEP." counter(listnum, decimal-leading-zero);
  counter-increment: listnum;
  color: var(--main-c);
  font-family: "General Sans", sans-serif;
  font-weight: 500;
}
.p-requirements .l-article-recruit__item .text {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-requirements .l-article-recruit__item .text {
    margin-top: 1.25rem;
  }
}
.p-requirements .l-article-recruit__item:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 1.25rem;
  background-image: url("../images/icons/icon-flow.svg");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -1.9375rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .p-requirements .l-article-recruit__item:not(:last-child)::after {
    width: 3.0625rem;
    height: 1.9375rem;
    bottom: -2.625rem;
  }
}
.p-requirements .c-conversion__inner {
  width: 100%;
  margin-top: 2.875rem;
}

.l-wrapper {
  overflow: hidden;
}

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

.l-inner-xs {
  width: 90%;
  max-width: 56.25rem;
  margin: 0 auto;
}

.l-inner-sm {
  width: 90%;
  max-width: 62.5rem;
  margin: 0 auto;
}

.l-inner-lg {
  width: 89%;
  max-width: 87.5rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-inner-lg {
    width: 91%;
  }
}

.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;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: fixed;
  top: 0;
  right: 0;
  transition: opacity 0.6s;
}
.l-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media screen and (min-width: 1280px) {
  .l-overlay {
    top: 0;
  }
}

.l-footer {
  width: 100%;
  overflow: hidden;
}

.footer-contact {
  background: #004DE8;
  background: linear-gradient(0deg, rgb(0, 77, 232) 0%, rgb(35, 181, 219) 100%);
  background: -webkit-linear-gradient(0deg, rgb(0, 77, 232) 0%, rgb(35, 181, 219) 100%);
  color: #fff;
  padding-block: 1.875rem 3.75rem;
}
@media screen and (min-width: 768px) {
  .footer-contact {
    padding-block: 4.0625rem 5rem;
  }
}

.footer-contact__inner {
  position: relative;
  z-index: 0;
}

.footer-contact__title-bg {
  font-size: 5.125rem;
  white-space: nowrap;
  line-height: 1;
  opacity: 0.15;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .footer-contact__title-bg {
    font-size: 10.875rem;
    left: 0;
    transform: translateX(0);
  }
}

.footer-contact__contents {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 75rem;
  margin: 0 auto;
  padding-top: 2.375rem;
}
@media screen and (min-width: 768px) {
  .footer-contact__contents {
    flex-direction: unset;
    padding-top: 5rem;
  }
}

.footer-contact__title {
  width: 20.9375rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .footer-contact__title {
    width: unset;
    margin: unset;
  }
}
.footer-contact__title .title {
  font-size: 2.25rem;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .footer-contact__title .title {
    font-size: 2.875rem;
    line-height: 1.6;
  }
}

.footer-contact__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9375rem;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .footer-contact__list {
    flex-direction: unset;
    align-items: unset;
    margin-top: 2rem;
  }
}

.footer-contact__item {
  transition: 0.3s;
}
.footer-contact__item .title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  margin-bottom: 0.3125rem;
}
.footer-contact__item .icon {
  width: 1.125rem;
  height: 0.5rem;
}
.footer-contact__item .contact-button,
.footer-contact__item .icon-contact {
  transition: 0.3s;
}

.footer-contact__item:first-child .contact-button {
  border: solid 0.25rem #89ACDB;
  color: var(--main-c);
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .footer-contact__item:first-child .contact-button {
    font-size: 1.25rem;
  }
}
.footer-contact__item:first-child .contact-button:hover {
  background-color: var(--main-c);
  border: solid 0.25rem #fff;
  color: #fff;
}
.footer-contact__item:first-child .contact-button:hover .icon-contact {
  background-image: url("../images/icons/icon-mail-wht.webp");
}
.footer-contact__item:first-child .icon-contact {
  background-image: url("../images/icons/icon-mail-blu.webp");
}

.contact-button {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background-color: #fff;
  border-radius: 0.625rem;
  padding: 1rem 1.625rem;
  width: 20.9375rem;
  font-size: 1.25rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .contact-button {
    justify-content: center;
    padding: 2.5rem 1.875rem;
    width: fit-content;
    max-width: unset;
    min-width: 35rem;
  }
}

.icon-contact {
  display: inline-block;
  width: 2.9375rem;
  height: 2.9375rem;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .icon-contact {
    width: 3.4375rem;
    height: 3.4375rem;
  }
}

.footer-pagetop {
  background-color: var(--sub-bg-c);
  padding-block: 1.5rem 1.375rem;
}
@media screen and (min-width: 768px) {
  .footer-pagetop {
    padding-block: 4.375rem 3.75rem;
  }
}

.pagetop {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  margin: 0 auto;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .pagetop {
    gap: 1.25rem;
  }
}
.pagetop:hover .arrow {
  transform: translateY(-0.3125rem) rotate(-90deg);
}
@media screen and (min-width: 768px) {
  .pagetop:hover .arrow {
    transform: translateY(-0.5rem) rotate(-90deg);
  }
}
.pagetop:hover .icon {
  animation: rotate-handle 0.5s linear;
}
.pagetop .arrow {
  display: block;
  aspect-ratio: 20/8;
  background-image: url("../images/icons/arrow.svg");
  background-size: cover;
  width: 0.9375rem;
  transform: rotate(-90deg);
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .pagetop .arrow {
    width: 1.25rem;
  }
}
.pagetop .icon {
  display: inline;
  width: 0.6875rem;
  height: 0.6875rem;
  margin-inline: 0.125rem;
}
@media screen and (min-width: 768px) {
  .pagetop .icon {
    width: 0.8125rem;
    height: 0.8125rem;
  }
}

@keyframes rotate-handle {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.footer-menu {
  position: relative;
  padding-block: 3.25rem 8.125rem;
}
@media screen and (min-width: 768px) {
  .footer-menu {
    padding-block: 4.625rem 4rem;
  }
}
.footer-menu a {
  transition: 0.3s;
}
.footer-menu a:hover {
  opacity: 0.6;
}

.footer-menu__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: unset;
  width: 90%;
  max-width: 22.1875rem;
}
@media screen and (min-width: 768px) {
  .footer-menu__inner {
    flex-direction: unset;
    max-width: 75rem;
  }
}

.footer-menu__head .company {
  color: #1A1819;
  font-size: 1.25rem;
  font-weight: bold;
  margin-top: 0.625rem;
}
.footer-menu__head .address {
  color: #4F4F4F;
  font-size: 0.875rem;
  margin-top: 0.3125rem;
}

.footer-menu__link {
  display: block;
  width: 15rem;
  margin-top: 2rem;
  position: absolute;
  left: 50%;
  bottom: 1.875rem;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .footer-menu__link {
    position: relative;
    left: unset;
    bottom: unset;
    transform: unset;
  }
}

.footer-menu__logo {
  display: block;
  width: 20.9375rem;
}
@media screen and (min-width: 768px) {
  .footer-menu__logo {
    width: 25.625rem;
  }
}
.footer-menu__logo .logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-menu__body {
  display: flex;
  flex-direction: column;
}

.footer-menu__body-upper {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1.5625rem;
  row-gap: 0.9375rem;
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .footer-menu__body-upper {
    justify-content: flex-end;
    gap: 4.0625rem;
    margin-top: 0;
  }
}
.footer-menu__body-upper .upper-list {
  display: flex;
  gap: 1.5625rem;
  color: #4F4F4F;
}
@media screen and (min-width: 768px) {
  .footer-menu__body-upper .upper-list {
    flex-direction: column;
    gap: 0.625rem;
  }
}
.footer-menu__body-upper .upper-link {
  font-size: 0.875rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .footer-menu__body-upper .upper-link {
    font-size: 0.9375rem;
  }
}
.footer-menu__body-upper .upper-link.haschild {
  display: flex;
  align-items: center;
  gap: 0.4375rem;
}
.footer-menu__body-upper .icon-arrow {
  display: inline-block;
  width: 1.0625rem;
  height: 1.0625rem;
  background-image: url("../images/icons/icon-menu-gry.svg");
  background-size: cover;
}
.footer-menu__body-upper .upper-sub-list {
  margin-top: 0.125rem;
}
.footer-menu__body-upper .upper-sub-item {
  line-height: 1.2;
}
.footer-menu__body-upper .upper-sub-link {
  font-size: 0.875rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .footer-menu__body-upper .upper-sub-link {
    font-size: 0.8125rem;
  }
}
.footer-menu__body-upper .upper-button-list {
  display: flex;
  gap: 0.625rem;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .footer-menu__body-upper .upper-button-list {
    flex-direction: column;
    margin-top: 0;
  }
}
.footer-menu__body-upper .footer-button {
  display: inline-block;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  border-radius: 5em;
  transition: 0.3s;
}
.footer-menu__body-upper .footer-button.-recruit {
  color: var(--main-c);
  border: solid 0.0625rem var(--main-c);
}
.footer-menu__body-upper .footer-button.-recruit:hover {
  background-color: var(--main-c);
  color: #fff;
  opacity: 1;
}
.footer-menu__body-upper .footer-button.-contact {
  color: var(--base-c);
  border: solid 0.0625rem var(--base-c);
}
.footer-menu__body-upper .footer-button.-contact:hover {
  background-color: var(--base-c);
  color: #fff;
  opacity: 1;
}
.footer-menu__body-upper .c-button--sm {
  min-width: 9.8125rem;
  padding: 0.6875rem;
  font-size: 0.9375rem !important;
}

.footer-menu__body-lower {
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .footer-menu__body-lower {
    margin-top: 4.6875rem;
  }
}
.footer-menu__body-lower .lower-list {
  display: flex;
  justify-content: flex-start;
  gap: 1.25rem;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .footer-menu__body-lower .lower-list {
    justify-content: flex-end;
    gap: 1.875rem;
    font-size: 0.8125rem;
  }
}
.footer-menu__body-lower .icon-arrow {
  display: block;
  width: 1.0625rem;
  height: 1.0625rem;
  background-image: url("../images/icons/icon-menu-gry.svg");
  background-size: cover;
}

.copyright {
  background-color: #76808F;
  text-align: center;
  color: #fff;
  padding-block: 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .copyright {
    padding-block: 2.3125rem;
    font-size: 0.875rem;
  }
}

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

/*********************************************
 * サイドバーのレイアウト
 *
 * 接頭詞『.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: 9.875rem;
  }
}
.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;
  text-align: left;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-title-bg {
    min-height: 15.625rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 120rem;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 1440px) {
  .c-title-bg {
    min-height: 24.375rem;
  }
}
@media screen and (min-width: 1921px) {
  .c-title-bg {
    max-width: 120rem;
    margin: 0 auto;
  }
}

.c-title-bg--black::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  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 {
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .c-title-bg__inner {
    flex-direction: unset;
  }
}

.c-title-bg__image {
  aspect-ratio: 375/160;
  min-height: 10rem;
}
@media screen and (min-width: 768px) {
  .c-title-bg__image {
    max-width: 59.375rem;
    width: 70%;
    aspect-ratio: unset;
    min-height: unset;
  }
}
@media screen and (min-width: 1440px) {
  .c-title-bg__image {
    max-width: 72rem;
    width: 78%;
  }
}
.c-title-bg__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-title-bg__content {
  padding: 1.25rem;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .c-title-bg__content {
    padding: 1.25rem 0;
    margin-left: -15rem;
    width: 40.625rem;
  }
}
@media screen and (min-width: 1440px) {
  .c-title-bg__content {
    margin-left: -10.9375rem;
    width: 41.875rem;
  }
}

.c-title-bg__text {
  width: 100%;
  letter-spacing: 0.1rem;
  font-weight: bold;
}
.c-title-bg__text + * {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .c-title-bg__text {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1440px) {
  .c-title-bg__text {
    font-size: 2.5rem;
  }
}

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

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

@media screen and (min-width: 768px) {
  .c-title-bg--reverse.c-title-bg {
    justify-content: flex-end;
  }
}
@media screen and (min-width: 768px) {
  .c-title-bg--reverse .c-title-bg__inner {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 768px) {
  .c-title-bg--reverse .c-title-bg__content {
    margin-left: unset;
    margin-right: -15rem;
  }
}
@media screen and (min-width: 1440px) {
  .c-title-bg--reverse .c-title-bg__content {
    margin-right: -10.9375rem;
  }
}

.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: 1280px) {
  .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(--blue);
  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(--blue);
  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(--blue);
  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-cont {
  margin-bottom: 0.625rem;
  font-size: 1.25rem;
  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-career {
  overflow: hidden;
}

.c-title-career__wrapper {
  height: 100%;
  margin: 0 auto;
  background-color: #3486E3;
  color: #fff;
  padding-bottom: 1.4375rem;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-title-career__wrapper {
    height: 60.625rem;
    padding-bottom: 0;
  }
}
.c-title-career__wrapper::before {
  content: "";
  display: inline-block;
  animation: rotate-career 40s infinite linear;
  aspect-ratio: 1/1;
  width: clamp(21.563rem, 12.295rem + 39.54vw, 31.25rem);
  height: auto;
  background-image: url("../images/common/career-bg.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: calc(clamp(6.25rem, 3.261rem + 12.76vw, 9.375rem) * -1);
  left: -5.625rem;
}
@keyframes rotate-career {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@media screen and (min-width: 768px) {
  .c-title-career__wrapper::before {
    animation: rotate-career 32s infinite linear;
  }
}
@media screen and (min-width: 768px) {
  .c-title-career__wrapper::before {
    width: 100%;
    max-width: 51.875rem;
    top: -16.25rem;
    left: -15rem;
  }
}
@media screen and (min-width: 1541px) {
  .c-title-career__wrapper::before {
    max-width: clamp(51.875rem, 23.922rem + 29.02vw, 58.75rem);
  }
}

.c-title-career__inner {
  display: flex;
  flex-direction: column;
  width: 90%;
  max-width: 87.5rem;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-title-career__inner {
    flex-direction: unset;
    justify-content: flex-end;
    height: 100%;
  }
}

.c-title-career__contents {
  width: 100%;
  padding-block: 7.5rem 2.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-title-career__contents {
    width: 100%;
    padding-block: 15.625rem 1.875rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
}

.c-title-career__title {
  display: flex;
  align-items: flex-end;
  gap: 1.25rem;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-title-career__title {
    margin-top: 1.875rem;
  }
}
.c-title-career__title .title-h2 {
  line-height: 1;
  font-size: 2.25rem;
}
@media screen and (min-width: 768px) {
  .c-title-career__title .title-h2 {
    font-size: 3rem;
  }
}
.c-title-career__title .title-h6 {
  font-size: 0.875rem;
  font-weight: 500;
}

.c-title-career__catch {
  font-family: "TsunagiGothic", "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-size: clamp(1.75rem, 1.033rem + 3.06vw, 2.5rem);
  font-weight: 500;
  line-height: 1.3;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .c-title-career__catch {
    font-size: 4.25rem;
    margin-top: 3.125rem;
  }
}

.c-title-career__text {
  margin-top: 1.25rem;
  font-size: 1rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .c-title-career__text {
    margin-top: 2.25rem;
    font-size: 1.75rem;
  }
}

.c-title-career__image {
  width: 100%;
  height: clamp(25rem, 4.074rem + 89.29vw, 46.875rem);
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .c-title-career__image {
    width: 35.9375rem;
    height: unset;
  }
}
.c-title-career__image .swiper-wrapper {
  transition-timing-function: linear;
}
.c-title-career__image .swiper-slide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
}

.c-title-career__container {
  height: calc((100% - 12px) / 2);
  width: 100%;
  position: absolute !important;
}
@media screen and (min-width: 768px) {
  .c-title-career__container {
    height: 100%;
    width: calc((100% - 1.25rem) / 2);
  }
}
.c-title-career__container.-first {
  top: 0;
}
@media screen and (min-width: 768px) {
  .c-title-career__container.-first {
    right: calc((100% - 1.25rem) / 2 + 1.25rem);
  }
}
.c-title-career__container.-second {
  right: 0;
  bottom: 0;
  transform: scaleX(-1);
}
@media screen and (min-width: 768px) {
  .c-title-career__container.-second {
    bottom: unset;
    top: 0;
    transform: scaleY(-1);
  }
}
.c-title-career__container.-second .swiper-slide {
  transform: scaleX(-1);
}
@media screen and (min-width: 768px) {
  .c-title-career__container.-second .swiper-slide {
    transform: scaleY(-1);
  }
}

.c-title-career__list {
  width: 100%;
}

.c-title-career .c-title__anchor {
  margin-top: -3.75rem;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .c-title-career .c-title__anchor {
    margin-top: -10.5rem;
  }
}

.c-title-h1 {
  background-color: var(--sub-bg-c);
}

.c-title-h1__inner {
  padding-block: 7.5rem 3.75rem;
}
@media screen and (min-width: 768px) {
  .c-title-h1__inner {
    padding-block: 15.625rem 6.25rem;
  }
}

.c-title-h1__contents {
  position: relative;
  z-index: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-title-h1__contents {
    width: 50%;
  }
}

.c-title-h1__title {
  line-height: 1.45;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .c-title-h1__title {
    margin-top: 3.75rem;
  }
}

.c-title-h1__sub-title {
  margin-top: 0.625rem;
}

.c-title-h1__image {
  width: clamp(12.5rem, 6.521rem + 25.51vw, 18.75rem);
  position: absolute;
  top: 1.875rem;
  left: clamp(8.75rem, 6.956rem + 7.65vw, 10.625rem);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .c-title-h1__image {
    width: 29.5rem;
    top: 0.625rem;
    right: 0;
    left: unset;
  }
}

.c-title__anchor {
  background-color: #fff;
  border-radius: 2.5rem 2.5rem 0 0;
  padding-block: 1.875rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-title__anchor {
    border-radius: 3.75rem 3.75rem 0 0;
    padding-block: 2.75rem 1.25rem;
  }
}

.c-title-h2__sub {
  display: flex;
  align-items: center;
  gap: 0.4375rem;
  font-size: 0.875rem;
  line-height: 1.2;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .c-title-h2__sub {
    font-size: 1.25rem;
  }
}

.c-title-h2__sub .icon {
  content: "";
  display: inline-block;
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  background-image: url("../images/icons/icon-arrow-blu.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  margin-top: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .c-title-h2__sub .icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.c-color-pattern--base.c-title-h2 .icon {
  background-image: url("../images/icons/icon-arrow-grn.svg");
}

.c-title-h2.u-tac .c-title-h2__sub {
  justify-content: center;
}

.c-title-h3__main {
  font-weight: 500;
}

.c-title-h3__sub {
  color: var(--main-c);
  margin-top: 0.3125rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .c-title-h3__sub {
    margin-top: 0.5rem;
  }
}

.c-color-pattern--base.c-title-h3 .c-title-h3__sub {
  color: var(--base-c);
}

.c-title-h4__main {
  font-weight: 500;
}

.c-title-h5__main {
  font-weight: 500;
}

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

.c-title-h6 {
  width: 90%;
  max-width: 75rem;
  margin: 0 auto;
  position: relative;
  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 {
  padding-left: 1rem;
  width: fit-content;
  font-size: 1rem;
  font-weight: 500;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-title-h6__main {
    font-size: 1.125rem;
  }
}
.c-title-h6__main::before {
  content: "";
  display: inline-block;
  width: 0.4375rem;
  height: 0.4375rem;
  background-color: var(--main-c);
  position: absolute;
  top: 0.65em;
  left: 0;
  border-radius: 0.625rem;
}

.c-color-pattern--base .c-title-h6__main::before {
  background-color: var(--base-c);
}

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

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

.c-title-lead__main {
  line-height: 1.3;
}

.c-title-lead__lead {
  margin-top: 1.25rem;
  line-height: 1.6;
}

.c-title-eng {
  max-width: 96.25rem;
  margin: 0 auto;
}

.c-title-eng__main {
  color: #ECF1FA;
  font-size: clamp(2.25rem, -0.022rem + 9.69vw, 4.625rem);
  font-weight: 300;
  text-align: center;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .c-title-eng__main {
    font-size: 9.6875rem;
  }
}

.c-video__caption {
  padding: 0.9375rem 0.625rem;
  border-top: 0.125rem solid var(--blue);
  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 {
  /* 配置位置 右 */
  /* 配置位置 左 */
  /* 配置位置 中央 */
}
.c-wysiwyg ul li {
  list-style-type: none;
  padding-left: 1.75rem;
  position: relative;
}
.c-wysiwyg ul li::before {
  content: "";
  width: 1.3125rem;
  height: 1.3125rem;
  display: block;
  border-radius: 50%;
  background-color: #E5E8F8;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.c-wysiwyg ul li::after {
  content: "";
  width: 0.4375rem;
  height: 0.4375rem;
  display: block;
  border-radius: 50%;
  background-color: var(--main-c);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  margin: 0 0.4375rem;
  box-shadow: 0 0.125rem 0 rgba(13, 62, 135, 0.16);
}
.c-wysiwyg ol li {
  list-style-type: decimal;
}
.c-wysiwyg .aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.c-wysiwyg a {
  text-decoration: underline;
  color: var(--main-c);
}
.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: 4rem"] {
  font-size: 2rem !important;
}
@media screen and (min-width: 768px) {
  .c-wysiwyg [style*="font-size: 4rem"] {
    font-size: 4rem !important;
  }
}

.c-accordion-location {
  position: relative;
}

.c-accordion-location__wrapper {
  position: relative;
}
.c-accordion-location__wrapper:not(:first-child) {
  margin-top: 1.25rem;
}

.c-accordion-location__details {
  background-color: var(--sub-bg-c);
  border-radius: 0.625rem;
  box-shadow: inset 0 0.0625rem 0.25rem rgba(6, 20, 45, 0.16);
  overflow: hidden;
}
.c-accordion-location__details + .c-accordion-location__details {
  margin-top: 1.25rem;
}

.c-accordion-location__details.is-open .c-accordion-location__tgl::after {
  transform: translate(-50%, -50%) rotate(0);
}

.c-accordion-location__title {
  width: 100%;
  position: relative;
  cursor: pointer;
  padding-block: 1.25rem;
  padding-inline: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .c-accordion-location__title {
    padding-block: 1.25rem;
    padding-inline: 1.875rem 1.75rem;
  }
}

.c-accordion-location__title-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.c-accordion-location__title-wrap .title {
  font-size: 1rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .c-accordion-location__title-wrap .title {
    font-size: 1.5rem;
  }
}
.c-accordion-location__title-wrap .sub-title {
  font-size: 0.875rem;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .c-accordion-location__title-wrap .sub-title {
    font-size: 1.125rem;
  }
}

.c-accordion-location__cont {
  border-top: solid 0.0625rem #DCE2EB;
  overflow: hidden;
  height: 0;
  transition: height 0.3s ease;
}

.c-accordion-location__cont-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.875rem;
  padding-block: 1.5625rem;
  padding-inline: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .c-accordion-location__cont-inner {
    flex-direction: unset;
    gap: 5.625rem;
    padding-block: 1.875rem 2.3125rem;
    padding-inline: 4.6875rem 1.75rem;
  }
}

.c-accordion-location__image {
  aspect-ratio: 262/175;
  width: 100%;
  overflow: hidden;
  border-radius: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-accordion-location__image {
    width: 16.375rem;
  }
}
.c-accordion-location__image .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-accordion-location__text {
  font-size: 0.875rem;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-accordion-location__text {
    font-size: 1.25rem;
    margin-top: 1.5625rem;
  }
}

.c-accordion-location__button {
  display: block;
  background-color: #fff;
  border: solid 0.0625rem var(--main-c);
  border-radius: 1.5625rem;
  width: 11rem;
  color: var(--main-c);
  text-align: center;
  font-weight: 500;
  padding: 0.3125rem 0.375rem 0.4375rem;
  position: relative;
  margin-top: 0.75rem;
  transition: 0.3s;
}
.c-accordion-location__button:hover {
  background-color: var(--main-c);
  color: #fff;
}
.c-accordion-location__button:hover .icon {
  background-image: url("../images/icons/icon-map-wht.webp");
}
.c-accordion-location__button .icon {
  display: block;
  background-image: url("../images/icons/icon-map-blu.webp");
  background-size: cover;
  width: 0.75rem;
  height: 1rem;
  position: absolute;
  top: 50%;
  right: 0.875rem;
  transform: translateY(-50%);
  transition: 0.3s;
}

.c-accordion-location__map {
  aspect-ratio: 567/377;
  width: 100%;
  border-radius: 0.625rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-accordion-location__map {
    width: 52%;
    max-width: 35.4375rem;
    border-radius: 1.25rem;
  }
}
.c-accordion-location__map .map {
  width: 100%;
  height: 100%;
}

.c-accordion-location__tgl {
  display: inline-block;
  background-color: #fff;
  border-radius: 50%;
  border: solid 0.0625rem #E9E9E9;
  width: 1.875rem;
  height: 1.875rem;
  box-sizing: border-box;
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-accordion-location__tgl {
    width: 2.75rem;
    height: 2.75rem;
    top: 1.0625rem;
    right: 1.75rem;
  }
}
.c-accordion-location__tgl::before, .c-accordion-location__tgl::after {
  content: "";
  display: inline-block;
  width: 0.625rem;
  height: 0.125rem;
  background-color: var(--main-c);
  position: absolute;
  top: 50%;
  left: 50%;
  transition: 0.3s;
}
.c-accordion-location__tgl::before {
  transform: translate(-50%, -50%);
}
.c-accordion-location__tgl::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.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: block;
  border: solid 0.0625rem var(--main-c);
  background-color: #fff;
  border-radius: 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  width: fit-content;
  min-width: 6.25rem;
  line-height: 1;
  padding: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .c-badge {
    min-width: 6.875rem;
  }
}

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

.c-banner__item {
  aspect-ratio: 335/150;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-banner__item {
    aspect-ratio: 720/260;
    max-width: 45rem;
  }
}

.c-banner__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
  color: #fff;
  letter-spacing: 0.1em;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  padding: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-banner__wrap {
    gap: 0.625rem;
  }
}
.c-banner__wrap::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

a.c-banner__wrap:hover .c-banner__img,
a.c-banner__wrap:active .c-banner__img {
  transform: scale(1.08);
}

.c-banner__title {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 80%;
  line-height: 1.2em;
  font-size: clamp(1.25rem, 0.772rem + 2.04vw, 1.75rem);
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .c-banner__title {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 1440px) {
  .c-banner__title {
    font-size: 2rem;
  }
}

.c-banner__sub-title {
  position: relative;
  z-index: 1;
  font-size: clamp(1rem, 0.88rem + 0.51vw, 1.125rem);
}
@media screen and (min-width: 768px) {
  .c-banner__sub-title {
    font-size: 1rem;
  }
}

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

@media screen and (min-width: 768px) {
  .c-banner.col-2 .c-banner__item {
    aspect-ratio: 598/260;
    max-width: 37.375rem;
  }
}

@media screen and (min-width: 768px) {
  .c-banner.col-3 .c-banner__item {
    aspect-ratio: 396/260;
    max-width: 24.75rem;
  }
}

.c-breadcrumb {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  list-style: none;
  font-size: 0.75rem;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .c-breadcrumb {
    font-size: 0.875rem;
  }
}

.c-breadcrumb_list {
  display: block;
  position: relative;
}
.c-breadcrumb_list a {
  color: #99A7BC;
}

.c-breadcrumb_list:not(:first-child) {
  padding-left: 2.6875rem;
}
.c-breadcrumb_list:not(:first-child)::before {
  content: "";
  display: inline-block;
  width: 2.1875rem;
  height: 0.0625rem;
  background-color: #99A7BC;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.c-breadcrumb_link {
  color: inherit;
  text-decoration: none;
  color: var(--main-c);
  font-family: "General Sans", "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
}

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  border-radius: 5em;
  transition: 0.3s;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .c-button {
    font-size: 1.25rem;
  }
}

.c-button--sm {
  width: calc((100% - 0.625rem) / 2);
  padding: 0.75rem;
  font-size: 0.875rem !important;
}
@media screen and (min-width: 768px) {
  .c-button--sm {
    width: auto;
    min-width: 16.375rem;
    padding: 1rem;
    font-size: 1rem !important;
  }
}

.c-button--sm.c-parts-button {
  width: calc((100% - 0.625rem) / 2 + 1.25rem);
}
@media screen and (min-width: 768px) {
  .c-button--sm.c-parts-button {
    width: auto;
    min-width: 17.625rem;
  }
}

.c-button--lg {
  width: 100%;
  padding: 0.75rem 3.125rem;
  position: relative;
  font-size: 1rem !important;
}
@media screen and (min-width: 768px) {
  .c-button--lg {
    width: auto;
    min-width: 21.5625rem;
    padding: 1.4375rem 3.75rem;
    font-size: 1.125rem !important;
  }
}
.c-button--lg .arrow {
  content: "";
  display: inline-block;
  width: 1.375rem;
  height: 1.375rem;
  background-image: url("../images/icons/arrow-wht.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  right: 1.25rem;
  transform: translateY(-50%);
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-button--lg .arrow {
    right: 1.875rem;
  }
}
.c-button--lg:hover.c-color-pattern--main .arrow {
  background-image: url("../images/icons/arrow.svg");
}
.c-button--lg:hover.c-color-pattern--base .arrow {
  background-image: url("../images/icons/arrow-grn.svg");
}

.c-button--lg.c-parts-button {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.61);
}
@media screen and (min-width: 768px) {
  .c-button--lg.c-parts-button {
    width: auto;
    min-width: 22.8125rem;
  }
}
.c-button--lg.c-parts-button:hover .arrow {
  background-image: url("../images/icons/arrow-wht.svg");
}
.c-button--lg.c-parts-button .text {
  line-height: 1.5;
  padding: 0.875rem 3.125rem;
}
@media screen and (min-width: 768px) {
  .c-button--lg.c-parts-button .text {
    padding: 1.5625rem 3.75rem;
  }
}
.c-button--lg.c-parts-button .arrow {
  background-image: url("../images/icons/arrow.svg");
  margin-right: 0.625rem;
}

.c-button--sub {
  min-width: 10rem;
  padding: 0.9375rem 2em;
  font-size: 0.875rem !important;
}
@media screen and (min-width: 768px) {
  .c-button--sub {
    min-width: 12.5rem;
    padding: 1.25rem 3.75rem;
    font-size: 1rem !important;
  }
}

.c-button__sub-text {
  margin-top: 0.3125rem;
  display: block;
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .c-button__sub-text {
    font-size: 0.625rem;
  }
}

.c-color-pattern--main.c-button {
  border: 0.125rem solid var(--main-c);
  background-color: var(--main-c);
}
.c-color-pattern--main.c-button:hover, .c-color-pattern--main.c-button:active {
  color: var(--main-c);
  background-color: #fff;
}
.c-color-pattern--main.c-button:hover:after, .c-color-pattern--main.c-button:active:after {
  border-color: var(--main-c);
}

.c-color-pattern--base.c-button {
  border: 0.125rem solid var(--base-c);
  background-color: var(--base-c);
}
.c-color-pattern--base.c-button:hover, .c-color-pattern--base.c-button:active {
  color: var(--base-c);
  background-color: #fff;
}
.c-color-pattern--base.c-button:hover:after, .c-color-pattern--base.c-button:active:after {
  border-color: var(--base-c);
}

.c-button.-recruit {
  border: solid 0.0625rem var(--main-c);
  background-color: var(--main-c);
  margin: 0;
  font-weight: 500;
}
.c-button.-recruit:hover {
  background-color: #fff;
  color: var(--main-c);
}

.c-button.-contact {
  border: solid 0.0625rem var(--base-c);
  background-color: var(--base-c);
  margin: 0;
  font-weight: 500;
}
.c-button.-contact:hover {
  background-color: #fff;
  color: var(--base-c);
}

.c-button-anchor__title {
  font-size: 1rem;
  font-weight: 600;
  padding-left: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-button-anchor__title {
    font-size: 1.125rem;
  }
}

.c-button-anchor__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-button-anchor__list {
    gap: 0.75rem;
  }
}

.c-button-anchor {
  display: block;
  width: fit-content;
  min-width: 10.125rem;
  border: solid 0.625rem #F5F5FB;
  border-radius: 2.8125rem;
  color: var(--main-c);
  font-size: 0.75rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .c-button-anchor {
    min-width: 13.125rem;
    font-size: 0.875rem;
  }
}
.c-button-anchor:hover {
  color: #fff;
}
.c-button-anchor:hover .text {
  background-color: var(--main-c);
}
.c-button-anchor .text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 2.1875rem;
  padding: 0.625rem 1.25rem;
  box-shadow: 0 0.125rem 0 rgba(13, 62, 135, 0.16);
  position: relative;
  transition: 0.3s;
}

.c-button-anchor.-anchor {
  min-width: 10.125rem;
}
@media screen and (min-width: 768px) {
  .c-button-anchor.-anchor {
    min-width: 14.375rem;
  }
}

.c-main-button {
  display: block;
  width: fit-content;
  min-width: 14rem;
  background-color: rgba(255, 255, 255, 0.61);
  border-radius: 2.8125rem;
  padding: 0.625rem;
  color: var(--main-c);
  font-size: 0.75rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .c-main-button {
    min-width: 20.375rem;
    font-size: 1.125rem;
  }
}
.c-main-button:hover .text {
  transform: scale(0.95);
}
.c-main-button .text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 2.1875rem;
  padding: 0.8125rem;
  box-shadow: 0 0.125rem 0 rgba(13, 62, 135, 0.16);
  position: relative;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-main-button .text {
    padding: 1.25rem;
  }
}
.c-main-button .arrow {
  width: 0.8125rem;
  height: 0.3125rem;
  position: absolute;
  top: 50%;
  right: 1.125rem;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .c-main-button .arrow {
    width: 1.25rem;
    height: 0.5rem;
    right: 1.6875rem;
  }
}

.c-parts-button {
  display: block;
  width: fit-content;
  min-width: 10rem;
  background-color: #F9F9F9;
  border-radius: 18.75rem;
  padding: 0.625rem;
  color: var(--main-c);
  font-size: 0.875rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .c-parts-button {
    font-size: 1rem;
    min-width: 14.375rem;
  }
}
.c-parts-button:hover {
  color: #fff;
}
.c-parts-button:hover .text {
  background-color: var(--main-c);
}
.c-parts-button .text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 18.75rem;
  padding: 0.75rem;
  box-shadow: 0 0.125rem 0 rgba(13, 62, 135, 0.16);
  position: relative;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-parts-button .text {
    padding: 1rem;
  }
}

.c-card__wrapper .l-inner {
  max-width: 56.25rem;
}
.c-card__wrapper .l-inner--full {
  width: 90%;
  max-width: 75rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-card__wrapper .l-inner--full {
    width: 100%;
  }
}
.c-card__wrapper .c-grid {
  grid-gap: 1rem;
}
@media screen and (min-width: 768px) {
  .c-card__wrapper .c-grid {
    grid-gap: 1.875rem;
  }
}
.c-card__wrapper .c-grid__child {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  grid-gap: 0;
  border: solid 0.0625rem var(--border-c);
  border-radius: 0.625rem;
  overflow: hidden;
}
.c-card__wrapper .c-card {
  filter: none;
}

.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;
  padding: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .c-card {
    padding: 2.25rem 2.5rem;
  }
}

.c-card__head {
  width: 100%;
  display: table;
  border-top-right-radius: 0.3125rem;
  border-top-left-radius: 0.3125rem;
}

.c-card__head__text {
  display: table-cell;
  vertical-align: middle;
  font-size: 1.125rem;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .c-card__head__text {
    font-size: 1.5rem;
  }
}

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

.c-card__lead {
  font-weight: 500 !important;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .c-card__lead {
    font-size: 1.125rem;
  }
}

.c-card__lead + .c-card__text {
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .c-card__lead + .c-card__text {
    margin-top: 0.9375rem;
  }
}

.c-card__wrapper.c-color-pattern--main .c-card__head {
  color: var(--main-c);
}

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

.c-card-img__wrap {
  width: 100%;
  aspect-ratio: 370/250;
  position: relative;
}

.c-card-img__image {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.c-card-img__body .c-card-img__text {
  font-size: 1rem;
  flex-grow: 1;
}
.c-card-img__body .c-parts-button {
  margin-top: 1.25rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .c-card-img__body .c-parts-button {
    margin-top: 0.625rem;
  }
}

.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 {
  font-weight: 500;
  line-height: 1.4;
}
.c-card-img__title + .c-card-img__text {
  margin-top: 0.625rem;
}

.c-card-img--frame {
  border: solid 0.0625rem var(--border-c);
}

.c-card-icon__wrapper {
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-card-icon__wrapper {
    width: 91%;
    padding-inline: 0;
  }
}

.c-card-icon {
  grid-gap: 0.9375rem;
  padding-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-card-icon {
    grid-gap: 2.5rem;
  }
}
.c-card-icon .c-grid__child {
  position: relative;
}
.c-card-icon .c-card-img {
  background-color: transparent;
}
.c-card-icon .c-card-img__title + .c-card-img__text {
  margin-top: 0.625rem;
}
.c-card-icon .c-card-img__text {
  font-size: 0.875rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .c-card-icon .c-card-img__text {
    font-size: 1rem;
  }
}

.c-card-icon__link {
  display: block;
  background-color: var(--sub-bg-c);
  border-radius: 0.625rem;
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
.c-card-icon__link:hover {
  background-color: #fff;
  color: var(--main-c);
  box-shadow: 0 0 1.875rem rgba(87, 107, 136, 0.16);
}
.c-card-icon__link.is-disabled:hover {
  background-color: var(--sub-bg-c);
  color: unset;
  box-shadow: none;
}
.c-card-icon__link.is-disabled .c-card-img__body::before {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-card-icon__link.is-disabled .c-card-img__body {
    padding-inline: 2.625rem;
  }
}

.c-card-img--icon {
  display: flex;
  flex-direction: column;
}
.c-card-img--icon .c-card-img__wrap {
  border: solid 0.1875rem #E9E9E9;
  border-radius: 50%;
  overflow: hidden;
  width: 2.9375rem;
  height: 2.9375rem;
}
@media screen and (min-width: 768px) {
  .c-card-img--icon .c-card-img__wrap {
    width: 4.1875rem;
    height: 4.1875rem;
  }
}
.c-card-img--icon .c-card-img__wrap + .c-card-img__title {
  margin-top: 0.625rem;
}
.c-card-img--icon .c-card-img__wrap + .c-card-img__text {
  margin-top: 0.625rem;
}

.c-card-img--icon .c-card-img__body {
  padding: 1.5625rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-card-img--icon .c-card-img__body {
    padding-block: 1.875rem 2.625rem;
    padding-inline: 2.625rem 5.625rem;
  }
}
.c-card-img--icon .c-card-img__body::before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 0.5rem;
  background-image: url("../images/icons/arrow.svg");
  background-size: cover;
  position: absolute;
  top: 2.8125rem;
  right: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .c-card-img--icon .c-card-img__body::before {
    width: 1.6875rem;
    height: 0.6875rem;
    top: 50%;
    right: 1.875rem;
    transform: translateY(-50%);
  }
}

.c-card-img-grid .c-grid__child {
  border-radius: 0.625rem;
  overflow: hidden;
  background-color: #fff;
  margin-top: 0;
}
.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%;
}
@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-card-img__body {
    padding: 1.5625rem;
  }
}

.c-card-img.u-taj .c-parts-button {
  margin-inline: 0 auto;
}

.c-card-img--icon.u-tal .c-card-img__body {
  align-items: flex-start;
}

.c-card-img--icon.u-tac .c-card-img__body {
  align-items: center;
}

.c-card-img--icon.u-tar .c-card-img__body {
  align-items: flex-end;
}

.c-color-pattern--main.c-card-img__title {
  color: var(--main-c);
}

.c-chart {
  max-width: 63.75rem;
  margin: 0 auto;
}

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

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

.c-chart__point {
  width: 100%;
  height: 1.875rem;
  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: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background-color: rgba(229, 232, 248, 0.6);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .c-chart__round {
    width: 1.875rem;
    height: 1.875rem;
  }
}
.c-chart__round::after {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--main-c);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0.125rem 0 rgba(13, 62, 135, 0.16);
}
@media screen and (min-width: 768px) {
  .c-chart__round::after {
    width: 0.6875rem;
    height: 0.6875rem;
  }
}

.c-chart__border {
  width: 0.0625rem;
  height: calc(100% + 0.625rem);
  background-color: #E1E1E1;
  position: absolute;
  top: 1.5625rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
.c-chart__year {
  grid-row-start: 1;
  grid-row-end: 2;
  text-align: left;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1;
  margin-left: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .c-chart__year {
    grid-column-start: 2;
    grid-column-end: 3;
    text-align: center;
    font-size: 2.9375rem;
    margin-left: 0;
  }
}
.c-chart__year .small {
  font-size: 1.125rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .c-chart__year .small {
    font-size: 1.5rem;
  }
}

.c-chart__cont {
  grid-row-start: 2;
  grid-row-end: 3;
  padding-bottom: 1.25rem;
  margin-top: 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;
    margin-top: 0.25rem;
    padding-bottom: 2.5rem;
  }
}

.c-chart__cont-item {
  display: flex;
  gap: 1.25rem;
  padding-block: 1.875rem;
}
@media screen and (min-width: 768px) {
  .c-chart__cont-item {
    gap: 3.5625rem;
    padding-inline: 2.125rem 0.625rem;
  }
}
.c-chart__cont-item:first-child {
  padding-block: 0 1.875rem;
}
@media screen and (min-width: 768px) {
  .c-chart__cont-item:first-child {
    padding-block: 0.375rem 1.875rem;
  }
}
.c-chart__cont-item + .c-chart__cont-item {
  border-top: solid 0.0625rem var(--border-c);
}

.c-chart__month {
  width: 2.5rem;
  font-size: 1.25rem;
  text-align: center;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .c-chart__month {
    font-size: 1.5rem;
  }
}
.c-chart__month .small {
  font-size: 1rem;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
}
@media screen and (min-width: 768px) {
  .c-chart__month .small {
    font-size: 1.125rem;
  }
}

.c-chart__detail {
  flex: 1;
}

.c-chart__title {
  line-height: 1.5;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .c-chart__title {
    font-size: 1.25rem;
  }
}

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

.c-chart__image-list {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-chart__image-list {
    margin-top: 1.875rem;
    gap: 1.625rem;
  }
}

@media screen and (min-width: 768px) {
  .c-chart__image-item {
    max-width: 27rem;
  }
}

.c-chart__image {
  border-radius: 0.625rem;
}

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

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

.c-color-pattern--base .c-chart__round {
  background-color: var(--base-c);
}
.c-color-pattern--base .c-chart__year-sub-title {
  color: var(--base-c);
}

.c-conversion__inner {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-conversion__inner {
    width: 90%;
    max-width: 75rem;
  }
}

.c-conversion {
  background-color: var(--sub-bg-c);
}
@media screen and (min-width: 768px) {
  .c-conversion {
    border-radius: 0.625rem;
    overflow: hidden;
  }
}

.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-en {
  opacity: 0.3;
}
.c-conversion--image .c-conversion__title,
.c-conversion--image .c-conversion__text {
  color: var(--white);
}

.c-conversion__container {
  padding: 2.1875rem 0;
  width: 86.7%;
  max-width: 62.5rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .c-conversion__container {
    width: 84%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4.375rem 0 3.125rem;
  }
}

.c-conversion__title-en {
  font-size: 5.625rem;
  font-weight: 300;
  line-height: 1;
  color: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .c-conversion__title-en {
    font-size: 10.875rem;
  }
}

.c-conversion__title {
  font-size: 1.25rem;
  text-align: center;
  font-weight: bold;
  color: var(--main-c);
  margin-bottom: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .c-conversion__title {
    font-size: 2rem;
  }
}

.c-conversion__text {
  margin-top: 0.625rem;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .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.625rem;
}
@media screen and (min-width: 768px) {
  .c-conversion__btn-area {
    margin-top: 3.125rem;
    flex-wrap: nowrap;
    gap: 1.25rem;
  }
}

.c-conversion .c-parts-button {
  min-width: 20.375rem;
  font-size: 1.125rem;
}
.c-conversion .c-parts-button:hover .arrow {
  background-image: url("../images/icons/arrow-wht.svg");
}
.c-conversion .c-parts-button .text {
  position: relative;
  padding: 0.6875rem 3.125rem;
}
@media screen and (min-width: 768px) {
  .c-conversion .c-parts-button .text {
    padding: 1.1875rem 3.75rem;
  }
}
.c-conversion .c-parts-button .arrow {
  content: "";
  display: inline-block;
  width: 1.375rem;
  height: 1.375rem;
  background-image: url("../images/icons/arrow.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  right: 1.25rem;
  transform: translateY(-50%);
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-conversion .c-parts-button .arrow {
    right: 1.875rem;
  }
}

.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-xs {
  gap: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .c-flex--gap-xs {
    gap: 1.25rem;
  }
}

.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-image {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 0.9375rem;
  row-gap: 1.6875rem;
  counter-reset: listnum;
}

.c-flow-image__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #EEF6FB;
  border-radius: 0.625rem;
  padding-block: 2.75rem 1.875rem;
  padding-inline: 1.5625rem;
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-flow-image__item {
    padding-block: 2.75rem 5rem;
    padding-inline: 2.5rem;
  }
}
.c-flow-image__item::after {
  content: counter(listnum, decimal-leading-zero);
  counter-increment: listnum;
  color: var(--main-c);
  font-size: 0.875rem;
  font-weight: 500;
  font-family: "General Sans", sans-serif;
  background-color: #fff;
  border: solid 0.125rem #E9E9E9;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  position: absolute;
  top: 1.375rem;
  left: 1.5625rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .c-flow-image__item::after {
    font-size: 1.0625rem;
    width: 3.125rem;
    height: 3.125rem;
    left: 1.6875rem;
  }
}
.c-flow-image__item:not(:last-of-type)::before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  background-image: url("../images/icons/arrow.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  bottom: -1.25rem;
  left: 50%;
  transform: rotate(90deg) translateY(50%);
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .c-flow-image__item:not(:last-of-type)::before {
    width: 1.8125rem;
    height: 1.8125rem;
    bottom: unset;
    left: unset;
    top: 50%;
    right: -1.8125rem;
    transform: rotate(0) translateY(-50%);
  }
}
.c-flow-image__item:nth-child(even) {
  background-color: var(--sub-bg-c);
}

.c-flow-image__image {
  aspect-ratio: 1/1;
  width: 7.5rem;
  height: auto;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-flow-image__image {
    width: 8.875rem;
  }
}
.c-flow-image__image .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-flow-image__title {
  font-size: 1.125rem;
  font-weight: bold;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-flow-image__title {
    font-size: 1.4375rem;
    margin-top: 1.25rem;
  }
}

.c-flow-image__lead {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-flow-image__lead {
    font-size: 1.25rem;
    margin-top: 1.125rem;
  }
}
.c-flow-image__lead + .c-flow-image__text {
  margin-top: 0.3125rem;
}

.c-flow-image__text {
  margin-top: 1.125rem;
}

@media screen and (min-width: 768px) {
  .c-col2 .c-flow-image__item {
    width: calc((100% - 0.9375rem) / 2);
  }
}

@media screen and (min-width: 768px) {
  .c-col3 .c-flow-image__item {
    width: calc((100% - 1.875rem) / 3);
  }
}

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

.c-grid__child {
  width: 100%;
}

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

.c-grid--col1-2 {
  grid-template-columns: 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;
}
@media screen and (min-width: 768px) {
  .c-grid--col1-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.c-grid--col1-4 {
  grid-template-columns: 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;
}
@media screen and (min-width: 768px) {
  .c-grid--col1-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}

.c-grid--col2-1 {
  grid-template-columns: 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;
}
@media screen and (min-width: 768px) {
  .c-grid--col2-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.c-grid--col2-3 {
  grid-template-columns: 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;
}
@media screen and (min-width: 768px) {
  .c-grid--col2-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.c-grid--col2-5 {
  grid-template-columns: 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;
}
@media screen and (min-width: 768px) {
  .c-grid--col3-1 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.c-grid--col3-2 {
  grid-template-columns: 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;
}
@media screen and (min-width: 768px) {
  .c-grid--col3-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.c-grid--col3-4 {
  grid-template-columns: 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;
}
@media screen and (min-width: 768px) {
  .c-grid--col3-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}

.c-grid--col3-6 {
  grid-template-columns: 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-md {
  grid-gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-grid--gap-md {
    grid-gap: 1.875rem;
  }
}

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

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

.c-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.9375rem;
  margin-inline: 0.9375rem;
  padding-block: 0.75rem;
  padding-inline: 0.9375rem;
  border-radius: 0.3125rem;
  background-color: #fff;
  box-shadow: 0 0.1875rem 1.875rem rgba(24, 106, 177, 0.16);
}
@media screen and (min-width: 768px) {
  .c-header {
    margin-top: 1.25rem;
    margin-inline: 3.125rem;
    padding-block: 1.25rem 0.625rem;
    padding-inline: 1.875rem;
    border-radius: 0.625rem;
  }
}
.c-header.is-transparent {
  background: transparent !important;
}

.c-header__logo {
  width: 11.625rem;
  z-index: 2;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-header__logo {
    width: 17.25rem;
  }
}
.c-header__logo:hover {
  opacity: 0.6;
}
.c-header__logo .company {
  color: #1A1819;
  font-size: 0.75rem;
  line-height: 1.2;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .c-header__logo .company {
    font-size: 1.25rem;
    line-height: 1.4;
  }
}

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

.c-header__link {
  width: clamp(5rem, 2.608rem + 10.2vw, 7.5rem);
  transition: 0.3s;
}
.c-header__link:hover {
  opacity: 0.6;
}
@media screen and (min-width: 768px) {
  .c-header__link {
    max-width: 13rem;
    width: 100%;
  }
}

.c-header__content {
  display: flex;
  align-items: center;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .c-header__content {
    gap: 2.5rem;
    margin-left: unset;
  }
}

.c-header__nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: scroll;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  height: calc(100svh - 1.875rem);
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .c-header__nav {
    position: relative;
    top: auto;
    left: auto;
    background-color: transparent;
    border-radius: none;
    width: auto;
    height: unset;
    overflow: unset;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
.c-header__nav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.c-header__nav-area {
  display: flex;
  flex-direction: column;
  padding-block: 6.875rem 2.5rem;
  width: 73%;
  max-width: 21.5625rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-header__nav-area {
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 0.625rem;
    background-color: transparent;
    border-radius: 0;
    padding-block: 0;
    width: unset;
    max-width: unset;
    margin: unset;
  }
}

.c-header__nav-wrapper {
  width: 16.5625rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-header__nav-wrapper {
    width: unset;
    margin: unset;
  }
}

.main-nav__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-nav__wrap.is-active .open-btn::before {
  transform: translate(-50%, -50%);
}

.c-header__nav-list {
  display: flex;
  flex-wrap: wrap;
  font-weight: bold;
  column-gap: 2.75rem;
  row-gap: 2.25rem;
}
@media screen and (min-width: 768px) {
  .c-header__nav-list {
    flex-wrap: unset;
    gap: 1.75rem;
  }
}

.c-header__nav-item {
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-header__nav-item {
    padding-bottom: 0.625rem;
  }
}
@media screen and (min-width: 768px) {
  .c-header__nav-item:hover .c-header__sub-list {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
.c-header__nav-item:nth-child(odd) {
  width: 7.875rem;
}
@media screen and (min-width: 768px) {
  .c-header__nav-item:nth-child(odd) {
    width: unset;
  }
}
.c-header__nav-item.is-open .c-header__sub-list {
  display: block;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.c-header__nav-ttl {
  text-align: left;
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--main-c);
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-header__nav-ttl {
    text-align: center;
    font-size: 1rem;
  }
}
.c-header__nav-ttl .sub-title {
  display: block;
  color: #99A7BC;
  font-weight: 400;
  font-size: 0.75rem;
  margin-bottom: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .c-header__nav-ttl .sub-title {
    font-size: 0.625rem;
  }
}
.c-header__nav-ttl .haschild {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
}
.c-header__nav-ttl .icon-arrow {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-header__nav-ttl .icon-arrow {
    display: block;
    width: 1.0625rem;
    height: 1.0625rem;
    background-image: url("../images/icons/icon-menu-blu.svg");
    background-size: cover;
  }
}

a.c-header__nav-ttl:hover {
  opacity: 0.6;
}

p.c-header__nav-ttl {
  cursor: default;
}

.c-header__utility-nav {
  margin: 2.1875rem auto 0;
}
@media screen and (min-width: 768px) {
  .c-header__utility-nav {
    width: auto;
    margin: unset;
  }
}

.utility-nav-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.9375rem;
  row-gap: 0.625rem;
  margin-bottom: 1.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #636465;
}
@media screen and (min-width: 768px) {
  .utility-nav-list {
    justify-content: flex-end;
    flex-wrap: unset;
    gap: 0.9375rem;
    margin-bottom: 0;
  }
}

.utility-nav-link {
  transition: 0.3s;
}
.utility-nav-link:hover {
  opacity: 0.6;
}

.c-header-utility-button {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4375rem;
}
.c-header-utility-button .c-button {
  width: 16.25rem;
  font-size: 1.125rem;
  padding: 0.875rem 2.5rem;
}
@media screen and (min-width: 768px) {
  .c-header-utility-button .c-button {
    width: 12.5rem;
    font-size: 1rem;
    padding: 0.8125rem 2.5rem;
  }
}

.c-header__sub-list {
  display: block;
  width: max-content;
  padding-block: 0.875rem;
  padding-inline: 1.4375rem;
  border-radius: 0.3125rem;
  position: absolute;
  top: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  transition: visibility 0.3s, opacity 0.3s;
  z-index: 10;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  background-color: #fff;
  box-shadow: 0 0 1.25rem rgba(87, 107, 136, 0.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .c-header__sub-list {
    padding-block: 1.375rem 1.75rem;
    padding-inline: 1.875rem;
    top: 100%;
  }
}

.c-header__sub-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .c-header__sub-item:not(:first-child) {
    margin-top: 0.375rem;
  }
}

.c-header__sub-ttl {
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 0.3125rem;
  color: var(--black);
  transition: 0.3s;
}
.c-header__sub-ttl:hover {
  color: var(--main-c);
}

.c-header__hamburger {
  display: flex;
  flex-direction: column;
  gap: 0.1875rem;
  justify-content: center;
  align-items: center;
  width: 4.5625rem;
  height: 2rem;
  cursor: pointer;
  position: absolute;
  top: 0.75rem;
  right: 0.9375rem;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .c-header__hamburger {
    display: none;
  }
}
.c-header__hamburger:before {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  background-color: #0064FF;
  border-radius: 1rem;
}
.c-header__hamburger.is-active:before {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
}
.c-header__hamburger span {
  display: block;
  width: 1rem;
  height: 0.0625rem;
  background: #fff;
  transition: 0.3s;
  z-index: 1;
}
.c-header__hamburger.is-active span {
  width: 1.125rem;
}
.c-header__hamburger.is-active span:first-child {
  transform: rotate(20deg) translate3D(0.125rem, 0.1875rem, 0);
}
.c-header__hamburger.is-active span:last-child {
  transform: rotate(-20deg) translate3D(0.125rem, -0.25rem, 0);
}
.c-header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

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

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

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

.c-image-col__inner.l-inner--full {
  width: 90%;
  max-width: 100%;
  margin: 0 auto;
}
.c-image-col__inner.l-inner--full .c-grid {
  grid-gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-image-col__inner.l-inner--full .c-grid {
    grid-gap: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .c-image-col__inner.l-inner--full {
    width: 100%;
    padding: 0 1.25rem;
  }
}

.c-image-col__inner img {
  border-radius: 0.625rem;
}
.c-image-col__inner .c-grid--col1-1 img {
  aspect-ratio: unset;
  width: 100%;
}

.c-image-cont {
  padding: 0 1.25rem;
}
.c-image-cont img {
  border-radius: 0.625rem;
  width: 100%;
}

.c-image-cont__text {
  font-size: 1rem;
  font-weight: 400;
  width: 100%;
  max-width: 56.25rem;
  margin: 0.625rem auto 0;
}
@media screen and (min-width: 768px) {
  .c-image-cont__text {
    font-size: 1.25rem;
    margin: 1rem auto 0;
  }
}

.c-image-cont--sm {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-image-cont--sm {
    max-width: 48.75rem;
    width: 72%;
  }
}

.c-image-cont--md {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-image-cont--md {
    max-width: 62.5rem;
    width: 82%;
  }
}

.c-image-cont--lg {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-image-cont--lg {
    max-width: 75rem;
  }
}

.c-image-cont--nomal picture {
  width: fit-content;
  display: block;
  margin: 0 auto;
}

.c-image-cont__image,
.c-image-full__image {
  border-radius: 0.625rem;
  overflow: hidden;
}

.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-image-col__image {
  border-radius: 0.625rem;
  overflow: hidden;
}

.c-interview {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1.25rem;
  border: 0.0625rem solid var(--border-c);
  border-radius: 0.625rem;
  padding: 1.875rem 1.5625rem 1.5625rem;
}
@media screen and (min-width: 768px) {
  .c-interview {
    flex-direction: unset;
    gap: 4rem;
    padding-block: 3.75rem;
    padding-inline: 4rem 5rem;
  }
}
.c-interview + .c-interview {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-interview + .c-interview {
    margin-top: 2rem;
  }
}

.c-interview__inner {
  max-width: 66.25rem;
  margin: 0 auto;
}

.c-interview__avatar {
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1/1;
  width: 6.25rem;
  height: auto;
}
@media screen and (min-width: 768px) {
  .c-interview__avatar {
    width: 8.125rem;
  }
}

.c-interview__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-interview__title {
  font-size: 1.125rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .c-interview__title {
    font-size: 1.25rem;
  }
}
.c-interview__title + .c-interview__text {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-interview__title + .c-interview__text {
    margin-top: 1.25rem;
  }
}

.c-interview__balloon {
  flex: 1;
  position: relative;
  background: #fff;
  text-align: justify;
}

.c-interview--reverse {
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .c-interview--reverse {
    flex-direction: row-reverse;
    padding-inline: 5rem 4rem;
  }
}

.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: 1280px) {
  .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: 1280px) {
  .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: 1280px) {
  .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: 1280px) {
  .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-size: 1rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .c-lead {
    font-size: 1.125rem;
  }
}

.c-line {
  width: 100%;
  height: 0.125rem;
  background-color: var(--border-c);
}

.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(--blue);
  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(--blue);
  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.9375rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .c-list-image {
    flex-direction: row;
    gap: 1.875rem;
  }
}

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

.c-list-image__img {
  width: 100%;
  object-fit: cover;
  border-radius: 0.625rem;
}

.c-list-image__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .c-list-image__body {
    width: calc(75% + 0.9375rem);
  }
}

.c-list-image__title {
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .c-list-image__title {
    font-size: 1.5rem;
  }
}
.c-list-image__title + .c-list-image__lead {
  margin-top: 0.625rem;
}
.c-list-image__title + .c-list-image__text {
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-list-image__title + .c-list-image__text {
    margin-top: 1.25rem;
  }
}

.c-list-image__lead {
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .c-list-image__lead {
    font-size: 1.125rem;
  }
}
.c-list-image__lead + .c-list-image__text {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-list-image__lead + .c-list-image__text {
    margin-top: 0.9375rem;
  }
}

.c-list-image__button {
  margin-top: 1.25rem;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .c-list-image__button {
    margin-top: 1.875rem;
  }
}

@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: 37%;
  }
}
.c-list-image--col2 .c-list-image__img {
  aspect-ratio: 1/1 !important;
}
@media screen and (min-width: 768px) {
  .c-list-image--col2 .c-list-image__body {
    width: 65%;
  }
}
.c-list-image--col2.c-grid--gap-lg {
  grid-gap: 1.875rem 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-list-image--col2.c-grid--gap-lg {
    grid-gap: 2.5rem;
  }
}

.c-list-image--col2 {
  grid-template-columns: repeat(2, 1fr);
}

.c-list-image .c-parts-button {
  margin-top: 1.875rem;
}

.c-list-image.c-color-pattern--main .c-list-image__title {
  color: var(--main-c);
}

.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-map {
  aspect-ratio: 4/3;
}
@media screen and (min-width: 768px) {
  .c-map {
    aspect-ratio: 1920/520;
  }
}

.c-map-wrap {
  width: 100%;
  height: 100%;
}

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

.c-media-slider__inner {
  border-radius: 0.625rem;
  overflow: hidden;
}

.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--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--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 .c-media__wrap {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-media.-video .c-media__wrap {
    width: 62%;
    max-width: 38.75rem;
  }
}
.c-media.-video .c-media__cont {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-media.-video .c-media__cont {
    flex: 1;
  }
}

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

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

.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.75rem;
  font-size: 1rem;
  font-weight: 500;
  position: relative;
}
.c-media__list-title::before {
  content: "";
  width: 1.3125rem;
  height: 1.3125rem;
  display: block;
  border-radius: 50%;
  background-color: #E5E8F8;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.c-media__list-title::after {
  content: "";
  width: 0.4375rem;
  height: 0.4375rem;
  display: block;
  border-radius: 50%;
  background-color: var(--main-c);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  margin: 0 0.4375rem;
  box-shadow: 0 0.125rem 0 rgba(13, 62, 135, 0.16);
}

.c-media__list-text {
  font-size: 1rem;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .c-media__list-text {
    margin-top: 0.625rem;
  }
}

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

.c-media__title {
  font-weight: bold;
}
.c-media__title + .c-media__sub-title {
  margin-top: 0.4375rem;
}
.c-media__title + .c-media__text {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-media__title + .c-media__text {
    margin-top: 1.5rem;
  }
}
.c-media__title + .c-media__list {
  margin-top: 0.3125rem;
}

.c-media__sub-title {
  font-weight: 500;
}
.c-media__sub-title + .c-media__text {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-media__sub-title + .c-media__text {
    margin-top: 1.5rem;
  }
}
.c-media__sub-title + .c-media__list {
  margin-top: 0.625rem;
}

.c-media__text {
  line-height: 2;
}
.c-media__text + .c-media__list {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-media__text + .c-media__list {
    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__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__button-area {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 1.25rem;
}

@media screen and (min-width: 768px) {
  .l-inner--md .c-media__wrap--slide {
    max-width: 48.75rem;
    width: 73%;
  }
}

@media screen and (min-width: 768px) {
  .l-inner--md .c-media__wrap--slide .c-image--full {
    height: 100%;
    aspect-ratio: 780/512;
  }
}

.c-color-pattern--main .c-media__title {
  color: var(--main-c);
}

.c-media-full {
  width: 100%;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .c-media-full {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: clamp(2.5rem, -7.665rem + 10.55vw, 5rem);
  }
}
@media screen and (min-width: 1921px) {
  .c-media-full {
    max-width: 120rem;
    margin: 0 auto;
  }
}
.c-media-full .c-media__wrap {
  max-width: 65rem;
  width: 100%;
  aspect-ratio: 1040/520;
  border-radius: 0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-media-full .c-media__wrap {
    width: 58%;
    border-radius: 0 0.625rem 0.625rem 0;
  }
}
@media screen and (min-width: 1440px) {
  .c-media-full .c-media__wrap {
    width: 60%;
  }
}
.c-media-full .c-media__cont {
  max-width: 100%;
  padding: 0 1.25rem;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-media-full .c-media__cont {
    max-width: 28.125rem;
    padding: 0;
    margin-top: 0;
    margin-right: auto;
  }
}
@media screen and (min-width: 1440px) {
  .c-media-full .c-media__cont {
    max-width: 33.75rem;
  }
}
@media screen and (min-width: 768px) {
  .c-media-full.c-media--reverse .c-media__wrap {
    border-radius: 0.625rem 0 0 0.625rem;
  }
}
@media screen and (min-width: 768px) {
  .c-media-full.c-media--reverse .c-media__cont {
    margin-right: unset;
    margin-left: auto;
  }
}
.c-media-full .c-media__button-area {
  text-align: left;
}

.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(--blue);
  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-point {
  display: flex;
}

.c-point__num {
  width: 15%;
  padding: 0.625rem;
  font-size: 6.4vw;
  border-right: 0.125rem solid var(--blue);
}
@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;
}

.count-num {
  counter-reset: listnum;
}

@media screen and (min-width: 768px) {
  .c-point-text__grid {
    row-gap: 7.5rem;
  }
}

.c-point-text {
  display: flex;
  flex-direction: column;
  line-height: 1.5;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .c-point-text {
    flex-direction: row;
    gap: 1.875rem;
  }
}
.c-point-text .c-title + .c-text {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-point-text .c-title + .c-text {
    margin-top: 0.9375rem;
  }
}
.c-point-text .c-lead + .c-text {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-point-text .c-lead + .c-text {
    margin-top: 0.9375rem;
  }
}

@media screen and (min-width: 768px) {
  .c-point-text__head {
    max-width: 27.5rem;
  }
}

.c-point-text__img-wrap {
  border-radius: 0.625rem;
  overflow: hidden;
}
.c-point-text__img-wrap img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.c-point-text__img {
  aspect-ratio: 440/290 !important;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-point-text__img {
    max-width: 27.5rem;
  }
}

.c-point-text__body {
  position: relative;
  padding-block: 3.125rem 1.5625rem;
}
@media screen and (min-width: 768px) {
  .c-point-text__body {
    flex: 1;
    padding: 3.75rem 0 0 2.8125rem;
  }
}
.c-point-text__body::before {
  content: counter(listnum, decimal-leading-zero);
  counter-increment: listnum;
  font-size: 5.625rem;
  font-weight: 300;
  font-family: "General Sans", sans-serif;
  color: #ECF1FA;
  line-height: 1;
  position: absolute;
  top: 0.3125rem;
  left: 0;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .c-point-text__body::before {
    font-size: 8.125rem;
    top: -0.625rem;
  }
}
.c-point-text__body .c-parts-button {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .c-point-text__body .c-parts-button {
    margin-top: 2.5rem;
  }
}

.c-point-text__body-text {
  position: relative;
}

.c-point-text__title {
  position: relative;
}
.c-point-text__title + .c-point-text__lead {
  margin-top: 0.3125rem;
}
.c-point-text__title + .c-point-text__text {
  margin-top: 0.9375rem;
}

.c-point-text__lead {
  font-weight: 400;
  line-height: 1.75;
}
.c-point-text__lead + .c-point-text__text {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-point-text__lead + .c-point-text__text {
    margin-top: 0.9375rem;
  }
}

.c-point-text__text {
  font-size: 1rem;
  line-height: 1.75;
}

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

.c-point-text-beside {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-point-text-beside {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}
.c-point-text-beside img {
  aspect-ratio: 373/280;
}
.c-point-text-beside .c-point-text__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-inline: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .c-point-text-beside .c-point-text__body {
    padding-block: 3.75rem 1.875rem;
    padding-inline: 2.5rem;
  }
}
.c-point-text-beside .c-point-text__body::before {
  left: 0.9375rem;
}
.c-point-text-beside .c-point-text__title {
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-point-text-beside .c-point-text__title {
    font-size: 1.5rem;
  }
}
.c-point-text-beside .c-point-text {
  flex-direction: column;
  border-radius: 0.625rem;
  overflow: hidden;
  gap: 0;
}
.c-point-text-beside .c-parts-button {
  margin-inline: auto;
}

.c-post-content {
  text-decoration: none;
  box-shadow: 0 0 0.625rem #ccc;
  border-radius: 0.3125rem;
  overflow: hidden;
  transition: 0.3s;
  background-color: var(--white);
  display: block;
}
.c-post-content:hover .head {
  transform: scale(0.95);
}
.c-post-content:hover .head img {
  transform: scale(1.2);
}
.c-post-content .head {
  overflow: hidden;
  position: relative;
  transition: 0.3s;
}
.c-post-content .head::before {
  content: "";
  float: left;
  padding-top: 65%;
}
.c-post-content .head::after {
  content: "";
  display: block;
  clear: both;
}
.c-post-content .head > :first-child {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  object-fit: cover;
}
.c-post-content .head img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.c-post-content .body {
  padding: 5%;
}
.c-post-content .body .title {
  font-size: clamp(1rem, 0.7949rem + 1.0256vw, 1.5rem);
}
.c-post-content .body .c-badge:not(:first-child) {
  margin-left: 0.5rem;
}

.c-price__tabs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.125rem;
}
@media screen and (min-width: 768px) {
  .c-price__tabs {
    padding-inline: 1.25rem;
  }
}

.c-price__tab-button {
  display: block;
  background-color: var(--sub-bg-c);
  border-radius: 0.3125rem;
  color: #76808F;
  font-size: 0.75rem;
  font-weight: 500;
  width: calc((100% - 24px) / 4);
  padding-block: 0.625rem;
  position: relative;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-price__tab-button {
    font-size: 1.125rem;
  }
}
.c-price__tab-button.active {
  background-color: var(--main-c);
  color: #fff;
}
.c-price__tab-button.active::before {
  background-image: url("../images/block/block-arrow-blu.webp");
}
.c-price__tab-button::before {
  content: "";
  display: inline-block;
  aspect-ratio: 15/7;
  width: 0.9375rem;
  height: 0.4375rem;
  background-image: url("../images/block/block-arrow.webp");
  background-size: cover;
  position: absolute;
  bottom: -0.3125rem;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s;
}

.c-price__title {
  background-color: #CEE3FF;
  border-radius: 0.625rem;
  font-size: 1rem;
  font-weight: bold;
  padding: 0.625rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-price__title {
    font-size: 1.25rem;
    padding: 0.625rem 1.875rem;
  }
}

.c-price__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.c-price__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5625rem;
  padding-block: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .c-price__container {
    flex-direction: unset;
    gap: 3.3125rem;
    padding-block: 2.5rem;
    padding-left: 3.75rem;
  }
}

.c-price__image {
  aspect-ratio: 275/178;
  width: 90%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .c-price__image {
    width: 17.1875rem;
  }
}
.c-price__image .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-price__contents {
  width: 100%;
  flex: 1;
}
@media screen and (min-width: 768px) {
  .c-price__contents {
    width: auto;
  }
}

.c-price__model {
  display: flex;
  width: fit-content;
}

.c-price__model-title {
  background-color: var(--base-c);
  color: #fff;
  border-radius: 0.625rem 0 0 0.625rem;
  padding: 0.5rem 1.125rem;
  font-weight: bold;
  width: 4.875rem;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .c-price__model-title {
    width: 5.25rem;
  }
}

.c-price__model-text {
  background-color: #F3FAF9;
  border-radius: 0 0.625rem 0.625rem 0;
  padding-inline: 1.25rem;
  padding-block: 0.5rem;
  font-weight: bold;
  flex: 1;
}
@media screen and (min-width: 768px) {
  .c-price__model-text {
    padding-inline: 1.625rem 1.875rem;
  }
}

.c-price__table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto auto auto auto auto;
  margin-top: 0.875rem;
  text-align: center;
  letter-spacing: 0.05em;
  border-left: solid 0.0625rem #EFEFEF;
  border-top: solid 0.0625rem #EFEFEF;
}
.c-price__table .cell1 {
  grid-area: 1/1/2/3;
}
.c-price__table .cell3 {
  grid-area: 2/1/3/2;
}
.c-price__table .cell4 {
  grid-area: 2/2/3/3;
}
.c-price__table .cell7 {
  grid-area: 3/1/4/2;
}
.c-price__table .cell8 {
  grid-area: 3/2/4/3;
}
.c-price__table .cell2 {
  grid-area: 4/1/5/3;
}
.c-price__table .cell5 {
  grid-area: 5/1/6/2;
}
.c-price__table .cell6 {
  grid-area: 5/2/6/3;
}
.c-price__table .cell9 {
  grid-area: 6/1/7/2;
}
.c-price__table .cell10 {
  grid-area: 6/2/7/3;
}
@media screen and (min-width: 768px) {
  .c-price__table {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto auto;
  }
  .c-price__table .cell1 {
    grid-area: 1/1/2/3;
  }
  .c-price__table .cell2 {
    grid-area: 1/3/2/5;
  }
  .c-price__table .cell3 {
    grid-area: 2/1/3/2;
  }
  .c-price__table .cell4 {
    grid-area: 2/2/3/3;
  }
  .c-price__table .cell5 {
    grid-area: 2/3/3/4;
  }
  .c-price__table .cell6 {
    grid-area: 2/4/3/5;
  }
  .c-price__table .cell7 {
    grid-area: 3/1/4/2;
  }
  .c-price__table .cell8 {
    grid-area: 3/2/4/3;
  }
  .c-price__table .cell9 {
    grid-area: 3/3/4/4;
  }
  .c-price__table .cell10 {
    grid-area: 3/4/4/5;
  }
}

.c-price__table > div {
  border: solid 0.0625rem #EFEFEF;
  border-left: none;
  border-top: none;
}

.c-price__table-top {
  background-color: var(--sub-bg-c);
  font-size: 1rem;
  font-weight: bold;
  padding-block: 1.1875rem;
}
@media screen and (min-width: 768px) {
  .c-price__table-top {
    font-size: 1.125rem;
  }
}

.c-price__table-middle {
  background-color: #E3E9F3;
  font-weight: 500;
  padding-block: 0.1875rem;
}
.c-price__table-middle.cell3, .c-price__table-middle.cell5 {
  color: var(--black);
}
.c-price__table-middle.cell4, .c-price__table-middle.cell6 {
  color: #76808F;
}

.c-price__table-bottom {
  background-color: #fff;
  font-weight: bold;
  font-family: "General Sans", "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  padding-block: 0.625rem;
}
.c-price__table-bottom.cell7, .c-price__table-bottom.cell9 {
  color: var(--black);
}
.c-price__table-bottom.cell8, .c-price__table-bottom.cell10 {
  color: #76808F;
}

.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(--blue);
  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(--blue);
  border-right: 0.1875rem solid var(--blue);
  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 {
  background-color: var(--bg-c);
  border-top: solid 0.0625rem var(--border-c);
}
.c-qa:last-child {
  border-bottom: solid 0.0625rem var(--border-c);
}

.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%;
  position: relative;
  cursor: pointer;
  padding-block: 1.25rem;
  padding-inline: 3.75rem 4.375rem;
  font-weight: 500;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .c-qa__title {
    font-size: 1.5rem;
    padding-inline: 4.375rem 6.25rem;
  }
}

.c-qa__cont {
  position: relative;
  padding-block: 0 2.5rem;
  padding-inline: 3.75rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-qa__cont {
    padding-block: 0.625rem 2.5rem;
    padding-inline: 4.375rem 6.25rem;
  }
}
.c-qa__cont .a-title {
  font-size: 1rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .c-qa__cont .a-title {
    font-size: 1.5rem;
  }
}

.c-qa__cont p + p {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-qa__cont p + p {
    margin-top: 1.875rem;
  }
}

.c-qa__icon {
  display: inline-block;
  box-sizing: content-box;
  position: absolute;
  left: 1.25rem;
  font-family: "General Sans", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1;
  width: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .c-qa__icon {
    left: 1.25rem;
  }
}

.c-qa__icon--q {
  top: 1.125rem;
  color: var(--main-c);
}
@media screen and (min-width: 768px) {
  .c-qa__icon--q {
    top: 1.375rem;
  }
}

.c-qa__icon--a {
  color: #DF2B50;
}

.c-qa__tgl {
  display: inline-block;
  background-color: #fff;
  border-radius: 50%;
  border: solid 0.1875rem #E9E9E9;
  width: 1.875rem;
  height: 1.875rem;
  box-sizing: border-box;
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-qa__tgl {
    width: 2.75rem;
    height: 2.75rem;
    top: 1.0625rem;
    right: 1.75rem;
  }
}
.c-qa__tgl::before, .c-qa__tgl::after {
  content: "";
  display: inline-block;
  width: 0.625rem;
  height: 0.125rem;
  background-color: var(--main-c);
  position: absolute;
  top: 50%;
  left: 50%;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-qa__tgl::before, .c-qa__tgl::after {
    width: 0.9375rem;
    height: 0.1875rem;
  }
}
.c-qa__tgl::before {
  transform: translate(-50%, -50%);
}
.c-qa__tgl::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* オープン時にアニメーションを設定 */
.c-qa[open] .c-qa__tgl {
  top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-qa[open] .c-qa__tgl {
    top: 3.125rem;
  }
}
.c-qa[open] .c-qa__tgl::after {
  transform: translate(-50%, -50%) rotate(0);
}
@media screen and (min-width: 768px) {
  .c-qa[open] .c-qa__icon--q {
    top: 3.25rem;
  }
}
@media screen and (min-width: 768px) {
  .c-qa[open] .c-qa__icon--a {
    top: 1.125rem;
  }
}
@media screen and (min-width: 768px) {
  .c-qa[open] .c-qa__title {
    padding-top: 3.125rem;
  }
}
.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-scrolldown {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-scrolldown {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
    position: absolute;
    top: 50%;
    right: 2%;
    transform: translateY(-100%);
  }
}

/*Scrollテキストの描写*/
.c-scrolldown span {
  display: block;
  font-family: "General Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  line-height: 1;
  padding-right: 0.125rem;
}

.c-scrolldown::before {
  content: "";
  display: inline-block;
  background-image: url("../images/front/scroll.svg");
  background-size: cover;
  width: 1rem;
  height: 1.875rem;
}

.c-scrolldown::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -5.625rem;
  left: -0.0625rem;
  right: 0;
  background-color: #fff;
  height: 5rem;
  width: 0.0625rem;
  margin: auto;
  z-index: 2;
  animation: pathmove 2s infinite;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
[data-slider] .l-inner {
  width: 100%;
}
@media screen and (min-width: 768px) {
  [data-slider] .l-inner {
    width: 90%;
  }
}

.c-slider {
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-slider {
    max-width: 74%;
  }
}
.c-slider .swiper-pagination {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-slider .swiper-pagination {
    display: block;
    bottom: unset;
    top: 25.625rem;
  }
}
.c-slider .swiper-slide-next .c-slider__caption,
.c-slider .swiper-slide-prev .c-slider__caption {
  display: none;
}
.c-slider .swiper-slide-next {
  transform: translateX(-5.3125rem);
  opacity: 0.5;
}
@media screen and (min-width: 768px) {
  .c-slider .swiper-slide-next {
    transform: translateX(-8.75rem);
  }
}
.c-slider .swiper-slide-prev {
  transform: translateX(5.3125rem);
  opacity: 0.5;
}
@media screen and (min-width: 768px) {
  .c-slider .swiper-slide-prev {
    transform: translateX(8.75rem);
  }
}

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

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

.c-slider__img {
  aspect-ratio: 16/9;
  border-radius: 0.625rem;
  overflow: hidden;
}

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

.c-slider__title {
  margin-top: 1.25rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .c-slider__title {
    margin-top: 1.875rem;
  }
}
.c-slider__title + .c-slider__text {
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-slider__title + .c-slider__text {
    margin-top: 1.25rem;
  }
}

.c-slider__button--prev,
.c-slider__button--next {
  width: 1.5625rem;
  height: 1.5625rem;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0.125rem 0 rgba(13, 62, 135, 0.16);
  position: absolute;
  top: 24vw;
  transform: translateY(-50%);
  z-index: 4;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-slider__button--prev,
  .c-slider__button--next {
    width: 4.375rem;
    height: 4.375rem;
    top: 14.0625rem;
  }
}
.c-slider__button--prev:hover,
.c-slider__button--next:hover {
  opacity: 0.6;
}

.c-slider__button--prev {
  left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-slider__button--prev {
    left: -3.125rem;
  }
}
.c-slider__button--prev .c-slider__button__arrow {
  transform: rotate(180deg) translateY(50%);
  left: calc(50% - 0.3125rem);
}
@media screen and (min-width: 768px) {
  .c-slider__button--prev .c-slider__button__arrow {
    left: calc(50% - 0.625rem);
  }
}

.c-slider__button--next {
  right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-slider__button--next {
    right: -3.125rem;
  }
}
.c-slider__button--next .c-slider__button__arrow {
  left: calc(50% - 0.3125rem);
}
@media screen and (min-width: 768px) {
  .c-slider__button--next .c-slider__button__arrow {
    left: calc(50% - 0.625rem);
  }
}

.c-slider__button__arrow {
  width: 0.625rem;
  height: 0.625rem;
  background-image: url("../images/icons/arrow.svg");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .c-slider__button__arrow {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.swiper-pagination-bullet {
  width: 0.625rem;
  height: 0.625rem;
  background: #fff;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--main-c);
}

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

.c-slider-loop__container {
  height: 41.5vw;
}
@media screen and (min-width: 768px) {
  .c-slider-loop__container {
    height: 21.5vw;
  }
}

.c-slider-loop__list {
  transition-timing-function: linear;
}

.c-slider-loop__image {
  border-radius: 0.625rem;
  overflow: hidden;
  height: 100%;
}
.c-slider-loop__image .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-slider-loop__deco {
  width: clamp(6.25rem, -0.925rem + 30.61vw, 13.75rem);
  position: absolute;
  bottom: -0.0625rem;
  right: clamp(1.25rem, 0.652rem + 2.55vw, 1.875rem);
  z-index: 1;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.16));
}
@media screen and (min-width: 768px) {
  .c-slider-loop__deco {
    width: clamp(13.938rem, -6.392rem + 21.11vw, 18.938rem);
    right: 3.75rem;
  }
}

.c-slider-col {
  width: 100%;
  position: relative;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-slider-col {
    padding-inline: 0;
  }
}

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

.c-slider-col__slide {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-slider-col__slide {
    width: 97%;
  }
}

.c-slider-col__img {
  height: 52vw;
  aspect-ratio: 16/9;
  border-radius: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-slider-col__img {
    height: 21.5vw;
  }
}

.c-slider-col__title {
  margin-top: 1.25rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .c-slider-col__title {
    margin-top: 1.875rem;
  }
}

.c-slider-col__title + .c-slider-col__text {
  font-size: 1rem;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-slider-col__title + .c-slider-col__text {
    margin-top: 1.25rem;
  }
}

.c-slider-col__button.c-slider__button--prev,
.c-slider-col__button.c-slider__button--next {
  top: 26vw;
}
@media screen and (min-width: 768px) {
  .c-slider-col__button.c-slider__button--prev,
  .c-slider-col__button.c-slider__button--next {
    top: 5.40625rem;
  }
}
@media screen and (min-width: 1440px) {
  .c-slider-col__button.c-slider__button--prev,
  .c-slider-col__button.c-slider__button--next {
    top: 7.1875rem;
  }
}

.c-slider-col__button.c-slider__button--prev {
  left: 1.25rem;
}
@media screen and (min-width: 1440px) {
  .c-slider-col__button.c-slider__button--prev {
    left: 1rem;
  }
}

.c-slider-col__button.c-slider__button--next {
  right: 1.25rem;
}
@media screen and (min-width: 1440px) {
  .c-slider-col__button.c-slider__button--next {
    right: 1rem;
  }
}

.c-slider-col__deco {
  display: block;
  aspect-ratio: 303/140;
  width: clamp(6.25rem, -0.925rem + 30.61vw, 13.75rem);
  height: auto;
  position: absolute;
  top: clamp(9.375rem, 0.526rem + 37.76vw, 18.625rem);
  right: clamp(1.25rem, 0.652rem + 2.55vw, 1.875rem);
  z-index: 1;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-slider-col__deco {
    width: clamp(13.938rem, -6.392rem + 21.11vw, 18.938rem);
    top: calc(21.5vw - clamp(6.375rem, -2.773rem + 9.5vw, 8.625rem));
    right: 3.5625rem;
  }
}
.c-slider-col__deco .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: drop-shadow(0 0.1875rem 0.625rem rgba(0, 0, 0, 0.16));
}

.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-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  counter-reset: listnum;
}
@media screen and (min-width: 768px) {
  .c-flow {
    justify-content: center;
    column-gap: 2.5rem;
    row-gap: 2rem;
  }
}

.c-flow__item {
  width: 100%;
  padding: 2.5rem 1.5rem 2.1875rem;
  background-color: var(--white);
  border: solid 0.0625rem var(--border-c);
  border-radius: 0.625rem;
  position: relative;
  margin-top: 1.75rem;
}
@media screen and (min-width: 768px) {
  .c-flow__item {
    padding: 3rem 2.5rem 2.5rem;
  }
}
.c-flow__item::after {
  content: counter(listnum, decimal-leading-zero);
  counter-increment: listnum;
  color: var(--main-c);
  font-family: "General Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  background-color: #fff;
  border: solid 0.125rem #E9E9E9;
  border-radius: 50%;
  width: 3.5625rem;
  height: 3.5625rem;
  position: absolute;
  top: -1.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-flow__item:not(:last-of-type)::before {
  content: "";
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--sub-bg-c);
  background-image: url("../images/icons/arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30%;
  border-radius: 50%;
  position: absolute;
  bottom: -1.25rem;
  right: 50%;
  transform: rotate(90deg) translateY(-50%);
}
@media screen and (min-width: 768px) {
  .c-flow__item:not(:last-of-type)::before {
    width: 3.375rem;
    height: 3.375rem;
    background-size: unset;
    transform: rotate(0) translateY(0);
    bottom: unset;
    top: 50%;
    right: -1.6875rem;
  }
}

.c-flow__title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-flow__title-wrap {
    margin-bottom: 0.9375rem;
  }
}

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

.c-flow__sub-title {
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .c-flow__sub-title {
    font-size: 1.25rem;
  }
}

.c-flow__text {
  text-align: justify;
  line-height: 2;
}

@media screen and (min-width: 768px) {
  .c-col2 .c-flow__item {
    width: calc((100% - 2.5rem) / 2);
  }
}

@media screen and (min-width: 768px) {
  .c-col3 .c-flow__item {
    width: calc((100% - 5rem) / 3);
  }
}

.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;
  position: relative;
}
.c-table.-scrollable:before {
  content: "SWIPE";
  color: var(--white);
  line-height: 6rem;
  height: 6rem;
  width: 6rem;
  border-radius: 100%;
  background-color: var(--main-c);
  filter: opacity(0.8);
  display: block;
  position: absolute;
  text-align: center;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.6s;
  opacity: 1;
}
.c-table.-scrolled:before {
  opacity: 0;
}

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

.c-table__title-hl,
.c-table__cont {
  vertical-align: middle;
  font-weight: 400 !important;
}

.c-table__title-vl {
  background-color: var(--sub-bg-c);
  color: var(--black);
  padding: 1.25rem;
  font-size: 1rem;
  font-weight: 400 !important;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .c-table__title-vl {
    padding-block: 1.75rem;
    padding-inline: 2.25rem;
    font-size: 1.25rem;
  }
}

.c-table__title-vl:not(:last-child) {
  border-right: solid 0.0625rem var(--border-c);
}

.c-table__title-hl,
.c-table__cont {
  padding: 1.25rem;
  font-size: 0.875rem;
  text-align: unset;
}
@media screen and (min-width: 768px) {
  .c-table__title-hl,
  .c-table__cont {
    padding-block: 1.875rem;
    padding-inline: 2.25rem;
    font-size: 1rem;
  }
}

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

.c-table__body .c-table__row,
.c-table__body .c-table__row:last-child {
  border-bottom: solid 0.0625rem var(--border-c);
}

.c-table-inner.l-inner {
  width: 100%;
  max-width: 56.25rem;
  padding-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-table-inner.l-inner {
    padding-left: 0;
  }
}

.c-table-inner.l-inner--full {
  max-width: 75rem;
  margin: 0 auto;
  padding-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-table-inner.l-inner--full {
    padding-left: 0;
  }
}

.c-table-price__table {
  width: 100%;
  max-width: 56.25rem;
  margin: 0 auto;
  border: solid 0.0625rem #EFEFEF;
  border-bottom: none;
}

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

.c-table-price__table-row {
  flex: 1;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.c-table-price__table-row .table-item-title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  width: 100%;
  background-color: var(--sub-bg-c);
  vertical-align: middle;
  padding: 1.25rem;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  border-right: solid 0.0625rem #EFEFEF;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .c-table-price__table-row .table-item-title {
    padding: 1.875rem 1.25rem;
    font-size: 1.125rem;
  }
}

.c-table-price__table-row .table-item-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fff;
  padding-block: 1.25rem 1.875rem;
  padding-inline: 1.25rem;
  border-bottom: solid 0.0625rem #EFEFEF;
  border-right: solid 0.0625rem #EFEFEF;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-table-price__table-row .table-item-text {
    padding-block: 1.5625rem 2.5rem;
  }
}
.c-table-price__table-row .table-item-text .upper {
  font-size: 1.5rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .c-table-price__table-row .table-item-text .upper {
    font-size: 2rem;
  }
}

.c-table-price__table-row:last-child .table-item-text {
  border-right: none;
}

.c-table-title__title .title {
  background-color: #CEE3FF;
  color: var(--main-c);
  width: 100%;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.05em;
  padding-block: 1.1875rem;
  border: solid 0.0625rem #EFEFEF;
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .c-table-title__title .title {
    font-size: 1.125rem;
  }
}

.c-table-title__table-wrap {
  overflow-x: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-table-title__table-wrap {
    overflow-x: unset;
  }
}
.c-table-title__table-wrap.-scrollable:before {
  content: "SWIPE";
  color: var(--white);
  line-height: 3.75rem;
  height: 3.75rem;
  width: 3.75rem;
  border-radius: 100%;
  background-color: var(--main-c);
  filter: opacity(0.8);
  display: block;
  position: absolute;
  font-size: 0.75rem;
  text-align: center;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.6s;
  opacity: 1;
}
.c-table-title__table-wrap.-scrolled:before {
  opacity: 0;
}

.c-table-title__table {
  width: 56.25rem;
}
@media screen and (min-width: 768px) {
  .c-table-title__table {
    width: 100%;
  }
}

.c-table-title__table-row {
  display: flex;
}

.c-table-title__table-row:not(:first-child) .table-item-title,
.c-table-title__table-row:not(:first-child) .table-item-text {
  border-top: none;
}

.c-table-title__table-row .table-item-title {
  background-color: var(--sub-bg-c);
  padding-block: 1.375rem;
  padding-inline: 2.25rem 1.25rem;
  width: 14.375rem;
  display: flex;
  align-items: center;
  border: solid 0.0625rem #EFEFEF;
}
@media screen and (min-width: 768px) {
  .c-table-title__table-row .table-item-title {
    width: 22.375rem;
  }
}

.c-table-title__table-row .table-item-text {
  background-color: #fff;
  display: flex;
  align-items: center;
  padding: 1.375rem 1.25rem;
  line-height: 2;
  flex: 1;
  border: solid 0.0625rem #EFEFEF;
  border-left: none;
}
.c-table-title__table-row .table-item-text.-price {
  flex: unset;
  justify-content: center;
  width: 21.875rem;
}
@media screen and (min-width: 768px) {
  .c-table-title__table-row .table-item-text.-price {
    width: 30rem;
  }
}
.c-table-title__table-row .table-item-text .inner {
  width: fit-content;
  text-align: left;
}
.c-table-title__table-row .table-item-text .day {
  display: block;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
}
.c-table-title__table-row .table-item-text .no-tax,
.c-table-title__table-row .table-item-text .tax {
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
.c-table-title__table-row .table-item-text .no-tax {
  color: #76808F;
}
.c-table-title__table-row .table-item-text .tax {
  color: var(--black);
}
.c-table-title__table-row .table-item-text .small {
  font-size: 0.75rem;
}

.c-table-title.c-color-pattern--base .c-table-title__title .title {
  background-color: #CEF5E8;
  color: var(--base-c);
}
.c-table-title.c-color-pattern--base .c-table-title__table-row .table-item-title {
  background-color: #F3FAF4;
}
.c-table-title.c-color-pattern--base .c-table-title__table-wrap.-scrollable:before {
  background-color: var(--base-c);
}

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

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

.c-table-col2__title,
.c-table-col2__cont {
  width: 100%;
  vertical-align: middle;
  text-align: left;
}

.c-table-col2__title {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  padding-block: 0.9375rem 0.3125rem;
}
@media screen and (min-width: 768px) {
  .c-table-col2__title {
    font-size: 1rem;
    width: 13.125rem;
    padding-block: 2.1875rem;
    padding-right: 1.25rem;
  }
}
.c-table-col2__title::after {
  content: "";
  display: inline-block;
  background-color: var(--main-c);
  width: 1.125rem;
  height: 0.1875rem;
  position: absolute;
  top: 0;
  left: 0;
}
.c-table-col2__title::before {
  content: "";
  display: inline-block;
  background-color: var(--border-c);
  width: calc(100% - 1.5625rem);
  height: 0.0625rem;
  position: absolute;
  top: 0.0625rem;
  right: 0;
}

.c-table-col2__cont {
  position: relative;
  padding-block: 0 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-table-col2__cont {
    padding-block: 2.1875rem;
    padding-left: 1.25rem;
    flex: 1;
  }
  .c-table-col2__cont::before {
    content: "";
    display: inline-block;
    background-color: var(--border-c);
    width: 100%;
    height: 0.0625rem;
    position: absolute;
    top: 0.0625rem;
    right: 0;
  }
}
.c-table-col2__cont.is-empty {
  padding-bottom: 0.3125rem;
}

.c-table-col2__image {
  border-radius: 0.625rem;
  overflow: hidden;
  max-width: 37.9375rem;
  margin-top: 2.5rem !important;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .c-table-col2__image {
    margin-top: 4.375rem !important;
  }
}
.c-table-col2__image .image {
  width: 100%;
}

.c-table-col2 .logo-size {
  max-width: 11.875rem;
}
@media screen and (min-width: 768px) {
  .c-table-col2 .logo-size {
    width: 25%;
  }
}

.c-text {
  line-height: 2;
  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-bg {
  display: flex;
  justify-content: center;
  padding: 1.5625rem 1.25rem;
  background-color: var(--sub-bg-c);
  border-radius: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-text-bg {
    padding: 2.625rem 2.3125rem;
  }
}

.c-text-bg__text {
  width: 100%;
}

.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-topics {
  background-color: var(--sub-bg-c);
  border-radius: 2.5rem;
  padding-block: 3.125rem 3.75rem;
}
@media screen and (min-width: 768px) {
  .c-topics {
    border-radius: 3.75rem;
    padding-block: 5.625rem 6.125rem;
  }
}

.c-topics__list {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .c-topics__list {
    flex-direction: unset;
    gap: 3rem;
    margin-top: 3.75rem;
  }
}

.c-topics .c-main-button {
  margin: 2.5rem auto 0;
}

/*--------個別ページ　接頭辞「p-」--------------*/
.p-front .l-editor-wrapper {
  margin-top: 0;
}
.p-front .arrow {
  display: block;
  aspect-ratio: 20/8;
  background-image: url("../images/icons/arrow.svg");
  background-size: cover;
}

.p-front-title {
  display: flex;
  flex-direction: column;
}
.p-front-title .title-h2 {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.45;
}
@media screen and (min-width: 768px) {
  .p-front-title .title-h2 {
    font-size: 3.5rem;
  }
}
.p-front-title .title-h6 {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-front-title .title-h6 {
    font-size: 1.25rem;
  }
}

/*=============================
メインビジュアル
=============================*/
.p-front-mv {
  width: 100%;
  position: relative;
  padding-block: 8.75rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-front-mv {
    padding-block: 7.75rem 0;
  }
}

.p-front-mv__circle-sm,
.p-front-mv__circle-lg {
  position: absolute;
  z-index: 0;
  aspect-ratio: 1/1;
  max-width: unset;
}

.p-front-mv__circle-sm {
  animation: wobbling_x01 6s ease-in-out infinite alternate, wobbling_y01 6s ease-in-out infinite alternate;
  width: clamp(18.75rem, 6.792rem + 51.02vw, 31.25rem);
  top: 13.75rem;
  left: -6.875rem;
}
@keyframes wobbling_x01 {
  0% {
    margin-left: 3rem;
    scale: 0.9;
  }
  100% {
    margin-left: -2rem;
    scale: 1.1;
  }
}
@keyframes wobbling_y01 {
  0% {
    margin-top: clamp(8rem, -17.231rem + 107.65vw, 34.375rem);
    scale: 0.9;
  }
  100% {
    margin-top: clamp(0rem, -15.306rem + 65.31vw, 16rem);
    scale: 1.1;
  }
}
@media screen and (min-width: 768px) {
  .p-front-mv__circle-sm {
    animation: wobbling_x01 4s ease-in-out infinite alternate, wobbling_y01 4s ease-in-out infinite alternate;
  }
  @keyframes wobbling_x01 {
    0% {
      margin-left: 7.5rem;
    }
    100% {
      margin-left: -3rem;
    }
  }
  @keyframes wobbling_y01 {
    0% {
      margin-top: unset;
      margin-bottom: -3rem;
    }
    100% {
      margin-top: unset;
      margin-bottom: 12rem;
    }
  }
}
@media screen and (min-width: 1541px) {
  @keyframes wobbling_x01 {
    0% {
      margin-left: clamp(7.5rem, -27.061rem + 35.88vw, 16rem);
    }
    100% {
      margin-left: -3rem;
    }
  }
  @keyframes wobbling_y01 {
    0% {
      margin-bottom: -3rem;
    }
    100% {
      margin-bottom: 12rem;
    }
  }
}
@media screen and (min-width: 768px) {
  .p-front-mv__circle-sm {
    width: 51.875rem;
    left: -12.5rem;
    top: unset;
    bottom: -12.5rem;
  }
}

.p-front-mv__circle-lg {
  animation: wobbling_x02 5s ease-in-out infinite alternate, wobbling_y02 6s ease-in-out infinite alternate;
  width: clamp(23.75rem, 1.628rem + 94.39vw, 46.875rem);
  top: -3.125rem;
  right: -6.25rem;
}
@keyframes wobbling_x02 {
  0% {
    margin-right: 2rem;
    scale: 1;
  }
  100% {
    margin-right: -7rem;
    scale: 1.2;
  }
}
@keyframes wobbling_y02 {
  0% {
    margin-top: -3rem;
    scale: 1;
  }
  100% {
    margin-top: 6rem;
    scale: 1.2;
  }
}
@media screen and (min-width: 768px) {
  .p-front-mv__circle-lg {
    animation: wobbling_x02 3s ease-in-out infinite alternate, wobbling_y02 4s ease-in-out infinite alternate;
  }
  @keyframes wobbling_x02 {
    0% {
      margin-right: 7.5rem;
      scale: 1;
    }
    100% {
      margin-right: -5rem;
      scale: 1.4;
    }
  }
  @keyframes wobbling_y02 {
    0% {
      margin-top: 0;
      scale: 1;
    }
    100% {
      margin-top: 23.75rem;
      scale: 1.4;
    }
  }
}
@media screen and (min-width: 1541px) {
  @keyframes wobbling_x02 {
    0% {
      margin-right: clamp(7.5rem, -27.061rem + 35.88vw, 16rem);
    }
    100% {
      margin-right: -5rem;
    }
  }
  @keyframes wobbling_y02 {
    0% {
      margin-top: 0;
    }
    100% {
      margin-top: clamp(23.75rem, -1.662rem + 26.39vw, 30rem);
    }
  }
}
@media screen and (min-width: 768px) {
  .p-front-mv__circle-lg {
    width: 67.1875rem;
    right: -12.5rem;
    top: -12.5rem;
  }
}

.p-front-mv__inner {
  padding-inline: 1.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-front-mv__inner {
    padding-inline: 1.875rem;
  }
}

.p-front-mv__catch {
  max-width: 62.0625rem;
  position: relative;
  left: 0;
  top: 0;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-front-mv__catch {
    margin-top: 5.8125rem;
    padding-top: 5.9375rem;
    padding-left: 2.1875rem;
    position: absolute;
    left: 1.875rem;
  }
}
@media screen and (min-width: 1541px) {
  .p-front-mv__catch {
    margin-top: clamp(5.813rem, -6.131rem + 12.4vw, 8.75rem);
  }
}
.p-front-mv__catch .main-catch {
  font-family: "TsunagiGothic", "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-size: clamp(1.813rem, -0.041rem + 7.91vw, 3.75rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 768px) {
  .p-front-mv__catch .main-catch {
    font-size: clamp(3.75rem, 0.446rem + 3.43vw, 4.563rem);
    letter-spacing: unset;
  }
}
.p-front-mv__catch .sub-cath {
  font-size: clamp(1rem, 0.163rem + 3.57vw, 1.875rem);
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-front-mv__catch .sub-cath {
    font-size: 1.5rem;
  }
}

.p-front-mv__logo {
  position: absolute;
  top: 6.25rem;
  left: 21%;
  z-index: -1;
  width: clamp(14.5rem, -0.328rem + 63.27vw, 30rem);
}
@media screen and (min-width: 768px) {
  .p-front-mv__logo {
    top: 14.625rem;
    width: clamp(36.25rem, 9.821rem + 27.44vw, 42.75rem);
    left: 1.875rem;
  }
}
@media screen and (min-width: 1541px) {
  .p-front-mv__logo {
    top: clamp(14.625rem, 5.477rem + 9.5vw, 16.875rem);
  }
}

.p-front-mv__slider-container {
  position: relative;
  overflow: hidden;
  max-width: 58.75rem;
  width: 100%;
  margin-left: auto;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-front-mv__slider-container {
    width: clamp(46.25rem, -7.116rem + 55.41vw, 59.375rem);
  }
}

/*=============================
Philosophy
=============================*/
.p-front-philosophy {
  position: relative;
  border-radius: 1.875rem;
  overflow: hidden;
  color: #fff;
  padding-block: 3rem;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .p-front-philosophy {
    border-radius: 3.75rem;
    padding-block: 9.0625rem 7.5rem;
  }
}

.p-front-philosophy__contents {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 2.125rem;
}
@media screen and (min-width: 768px) {
  .p-front-philosophy__contents {
    flex-direction: unset;
    margin-top: 2.8125rem;
  }
}

.p-front-philosophy__head {
  flex: 1;
}

.p-front-philosophy__catch {
  font-size: clamp(1.438rem, 1.139rem + 1.28vw, 1.75rem);
  font-weight: bold;
  line-height: 1.6;
  font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .p-front-philosophy__catch {
    font-size: 2.875rem;
    font-feature-settings: unset;
  }
}
.p-front-philosophy__catch .deco-text {
  display: inline-block;
  padding: 0.125rem 0.375rem 0.25rem;
  border: solid 0.0625rem #fff;
  line-height: 1;
  font-size: clamp(1.938rem, 1.519rem + 1.79vw, 2.375rem);
  position: relative;
  margin-inline: 0.125rem;
}
@media screen and (min-width: 768px) {
  .p-front-philosophy__catch .deco-text {
    padding: 0.3125rem 1rem 0.625rem;
    margin-inline: 0.75rem 0.375rem;
    font-size: 3.75rem;
  }
}
@media screen and (min-width: 768px) {
  .p-front-philosophy__catch .deco-text:first-child {
    margin-inline: 0 0.375rem;
  }
}
.p-front-philosophy__catch .deco-text::before, .p-front-philosophy__catch .deco-text::after {
  content: "";
  display: inline-block;
  width: 0.25rem;
  height: calc(100% + 0.25rem);
  background-image: url("../images/front/deco-text-sp.webp");
  background-size: cover;
  position: absolute;
  top: -0.125rem;
}
@media screen and (min-width: 768px) {
  .p-front-philosophy__catch .deco-text::before, .p-front-philosophy__catch .deco-text::after {
    background-image: url("../images/front/deco-text.webp");
    width: 0.375rem;
    height: calc(100% + 0.5rem);
    top: -0.25rem;
  }
}
.p-front-philosophy__catch .deco-text::before {
  left: -0.125rem;
}
@media screen and (min-width: 768px) {
  .p-front-philosophy__catch .deco-text::before {
    left: -0.25rem;
  }
}
.p-front-philosophy__catch .deco-text::after {
  right: -0.125rem;
}
@media screen and (min-width: 768px) {
  .p-front-philosophy__catch .deco-text::after {
    right: -0.25rem;
  }
}

.p-front-philosophy__catch-en {
  font-size: clamp(0.688rem, 0.508rem + 0.77vw, 0.875rem);
  line-height: 1.4;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-front-philosophy__catch-en {
    font-size: 1.5rem;
    margin-top: 1.875rem;
  }
}

.p-front-philosophy__body {
  width: 100%;
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-front-philosophy__body {
    width: 40%;
    max-width: 33.75rem;
    margin-top: 0;
  }
}

.p-front-philosophy__text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-front-philosophy__text {
    font-size: 1.5rem;
  }
}

.p-front-philosophy__text-bottom {
  margin-top: 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-front-philosophy__text-bottom {
    margin-top: 3.125rem;
    font-size: 1.5rem;
  }
}
.p-front-philosophy__text-bottom .list {
  line-height: 1.45;
  margin-top: 0.3125rem;
  counter-reset: listnum;
}
.p-front-philosophy__text-bottom .item {
  padding-left: 1.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-front-philosophy__text-bottom .item {
    padding-left: 1.875rem;
  }
}
.p-front-philosophy__text-bottom .item::before {
  content: counter(listnum) ".";
  counter-increment: listnum;
  position: absolute;
  left: 0;
}

.p-front-philosophy__bg {
  background-image: url("../images/front/philosophy-bg.webp");
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.p-front-philosophy__bg::after {
  content: "";
  display: inline-block;
  background: #004DE8;
  background: linear-gradient(0deg, rgb(0, 77, 232) 0%, rgb(35, 181, 219) 100%);
  background: -webkit-linear-gradient(0deg, rgb(0, 77, 232) 0%, rgb(35, 181, 219) 100%);
  width: 100%;
  height: 100%;
  opacity: 0.83;
  position: absolute;
  top: 0;
  left: 0;
}
.p-front-philosophy__bg .video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/*=============================
Vision
=============================*/
.p-front-vision {
  position: relative;
  padding-block: 2.5rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-front-vision {
    padding-block: 4.75rem 6.25rem;
  }
}

.p-front-vision__circle-lg {
  animation: wobbling_x03 5s ease-in-out infinite alternate, wobbling_y03 7s ease-in-out infinite alternate;
  position: absolute;
  aspect-ratio: 1/1;
  z-index: -1;
  width: clamp(28.75rem, 6.03rem + 96.94vw, 52.5rem);
  max-width: unset;
  right: -12.5rem;
  bottom: -8.75rem;
}
@keyframes wobbling_x03 {
  0% {
    margin-right: 8rem;
    scale: 1;
  }
  100% {
    margin-right: -3rem;
    scale: 1.2;
  }
}
@keyframes wobbling_y03 {
  0% {
    margin-bottom: -6rem;
    scale: 1;
  }
  100% {
    margin-bottom: 12rem;
    scale: 1.2;
  }
}
@media screen and (min-width: 768px) {
  .p-front-vision__circle-lg {
    animation: wobbling_x03 3s ease-in-out infinite alternate, wobbling_y03 5s ease-in-out infinite alternate;
  }
  @keyframes wobbling_x03 {
    0% {
      margin-right: 14rem;
      scale: 1;
    }
    100% {
      margin-right: -5rem;
      scale: 1.2;
    }
  }
  @keyframes wobbling_y03 {
    0% {
      margin-bottom: -3rem;
      scale: 1;
    }
    100% {
      margin-bottom: 20rem;
      scale: 1.2;
    }
  }
}
@media screen and (min-width: 768px) {
  .p-front-vision__circle-lg {
    width: 72.375rem;
    bottom: -25rem;
  }
}

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

.p-front-vision__inner {
  position: relative;
  max-width: 96.25rem;
  margin: 0 auto;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-front-vision__inner {
    padding-inline: 0;
  }
}

.p-front-vision__contents-wrap {
  max-width: 75rem;
  margin: 0 auto;
  padding-top: 2.375rem;
}
@media screen and (min-width: 768px) {
  .p-front-vision__contents-wrap {
    padding-block: 5rem 6.875rem;
  }
}

.p-front-vision__contents {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-front-vision__contents {
    width: 54.0625rem;
  }
}

.p-front-vision__lead {
  font-size: 1.25rem;
  font-weight: bold;
  margin-top: 1.125rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-front-vision__lead {
    font-size: 2.25rem;
    margin-top: 3.4375rem;
  }
}

.p-front-vision__text {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 1.5625rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-front-vision__text {
    font-size: 1.5rem;
    margin-top: 3.125rem;
  }
}

.p-front-vision__image {
  position: relative;
  width: clamp(20.938rem, 14.062rem + 29.34vw, 28.125rem);
  margin-top: 1.25rem;
  margin-inline: auto;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-front-vision__image {
    position: absolute;
    top: 3.75rem;
    right: 4.375rem;
    width: 33.125rem;
    margin-top: 0;
    margin-inline: unset;
  }
}

.p-front-vision__deco {
  animation: floating-y 1.4s ease-in-out infinite alternate-reverse;
  position: absolute;
  bottom: clamp(8.125rem, 5.434rem + 11.48vw, 10.938rem);
  left: 56%;
  width: clamp(11.438rem, 8.029rem + 14.54vw, 15rem);
}
@keyframes floating-y {
  0% {
    transform: translateY(-0.625rem);
  }
  100% {
    transform: translateY(0.625rem);
  }
}
@media screen and (min-width: 768px) {
  @keyframes floating-y {
    0% {
      transform: translateY(0rem);
    }
    100% {
      transform: translateY(1.25rem);
    }
  }
}
@media screen and (min-width: 768px) {
  .p-front-vision__deco {
    position: absolute;
    bottom: unset;
    top: 0;
    left: unset;
    right: -3.125rem;
    width: 18.75rem;
  }
}

.p-front-vision__arrow {
  width: 12.5rem;
  position: absolute;
  top: 0;
  left: 1.25rem;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-front-vision__arrow {
    width: 21.25rem;
    left: 0;
  }
}

/*=============================
ループタイトル
=============================*/
.p-front-loop-title {
  width: 100%;
  overflow: hidden;
}

.p-front-loop-title__inner {
  display: flex;
  width: max-content;
  animation: frontloopTitle 30s linear infinite;
}

@keyframes frontloopTitle {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.p-front-loop-title__band {
  display: flex;
  align-items: center;
  gap: 2.1875rem;
  flex-shrink: 0;
  width: 55.9375rem;
  margin-right: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .p-front-loop-title__band {
    gap: 3.125rem;
    width: 116.875rem;
  }
}

.p-front-loop-title__title {
  font-size: 5.125rem;
  font-weight: 300;
  white-space: nowrap;
  line-height: 1;
  color: #ECF1FA;
}
@media screen and (min-width: 768px) {
  .p-front-loop-title__title {
    font-size: 10.875rem;
  }
}

.p-front-loop-title__image {
  aspect-ratio: 262/175;
  width: 7.875rem;
  border-radius: 0.3125rem;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-front-loop-title__image {
    width: 16.375rem;
    border-radius: 0.625rem;
  }
}

/*=============================
Service
=============================*/
.p-front-service {
  margin-top: 2.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-front-service {
    margin-top: 6.875rem;
  }
}
@media screen and (min-width: 768px) {
  .p-front-service .p-front-title {
    padding-left: 4.375rem;
  }
}
@media screen and (min-width: 768px) {
  .p-front-service + .p-front-career {
    padding-top: 5.625rem;
  }
}

.p-front-service__circle-sm {
  animation: wobbling_x04 4s ease-in-out infinite alternate, wobbling_y04 4s ease-in-out infinite alternate;
  display: none;
  width: 56.25rem;
  left: -15.625rem;
  top: -12.5rem;
  position: absolute;
  aspect-ratio: 1/1;
  z-index: -1;
}
@keyframes wobbling_x04 {
  0% {
    margin-left: -4rem;
    scale: 1;
  }
  100% {
    margin-left: 5rem;
    scale: 1.2;
  }
}
@keyframes wobbling_y04 {
  0% {
    margin-top: -3rem;
    scale: 1;
  }
  100% {
    margin-top: 8rem;
    scale: 1.2;
  }
}
@media screen and (min-width: 768px) {
  @keyframes wobbling_x04 {
    0% {
      margin-left: -3rem;
      scale: 1;
    }
    100% {
      margin-left: 14rem;
      scale: 1.2;
    }
  }
  @keyframes wobbling_y04 {
    0% {
      margin-top: -3rem;
      scale: 1;
    }
    100% {
      margin-top: 18rem;
      scale: 1.2;
    }
  }
}
@media screen and (min-width: 768px) {
  .p-front-service__circle-sm {
    display: block;
  }
}

.p-front-service__inner {
  max-width: 91.875rem;
  margin: 0 auto;
}

.p-front-service__list {
  display: flex;
  flex-direction: column;
  gap: 0.1875rem;
  margin-top: 1.75rem;
  counter-reset: listnum;
}
@media screen and (min-width: 768px) {
  .p-front-service__list {
    flex-direction: unset;
    gap: 0;
    margin-top: 2.5rem;
    margin-inline: 2.125rem;
  }
}

.p-front-service__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  background-color: #EEF5FB;
  padding: 2.5rem 1.5625rem;
  border-radius: 0.625rem;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-front-service__item {
    padding-block: 3.75rem 5.625rem;
    padding-inline: 2.25rem;
  }
}
@media screen and (min-width: 768px) {
  .p-front-service__item:nth-child(even) {
    background-color: #fff;
    box-shadow: 0 0 3.75rem rgba(87, 107, 136, 0.16);
  }
}
.p-front-service__item .number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.6875rem;
  height: 2.6875rem;
  background-color: #fff;
  border: solid 0.1875rem #E9E9E9;
  border-radius: 50%;
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-front-service__item .number {
    width: 3.75rem;
    height: 3.75rem;
    top: 1.875rem;
    left: 1.875rem;
  }
}
.p-front-service__item .number::before {
  content: counter(listnum, decimal-leading-zero);
  counter-increment: listnum;
  color: var(--main-c);
  font-family: "General Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-front-service__item .number::before {
    font-size: 1.0625rem;
  }
}
.p-front-service__item .title {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-front-service__item .title {
    margin-top: 1.125rem;
  }
}
.p-front-service__item .lead {
  font-size: 1rem;
  margin-top: 0.9375rem;
  font-weight: bold;
  line-height: 1.5;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-front-service__item .lead {
    font-size: 1.25rem;
    margin-top: 1.25rem;
    width: 88%;
  }
}
.p-front-service__item .text {
  margin-top: 0.75rem;
  width: 100%;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-front-service__item .text {
    margin-top: 1rem;
    width: 93%;
  }
}
@media screen and (min-width: 768px) {
  .p-front-service__item:first-child {
    margin-bottom: 7.5rem;
  }
}
@media screen and (min-width: 768px) {
  .p-front-service__item:nth-child(2) {
    z-index: -1;
    margin-top: 3.75rem;
    margin-bottom: 3.75rem;
  }
}
@media screen and (min-width: 768px) {
  .p-front-service__item:last-child {
    z-index: -2;
    margin-top: 7.5rem;
  }
}

.p-front-service__image {
  aspect-ratio: 1/1;
  width: clamp(7.625rem, -0.028rem + 32.65vw, 15.625rem);
}
@media screen and (min-width: 768px) {
  .p-front-service__image {
    width: 12rem;
  }
}

/*=============================
News
=============================*/
.p-front-news {
  width: 100%;
  position: relative;
  left: 50%;
  transform: translate(-50%);
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-front-news {
    width: 120rem;
    margin-top: 1.25rem;
  }
}
@media screen and (min-width: 1921px) {
  .p-front-news {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .p-front-news .c-main-button {
    margin-top: 3.125rem;
    margin-left: -0.625rem;
  }
}

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

.p-front-news__head {
  background-color: #EEF5FB;
  border-radius: 1.875rem 1.875rem 0 0;
  width: 100%;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-front-news__head {
    border-radius: 0 0.625rem 0 0;
    width: 39.625rem;
    padding-inline: 0;
  }
}
@media screen and (min-width: 1921px) {
  .p-front-news__head {
    width: 37%;
  }
}

.p-front-news__head-inner {
  display: flex;
  align-items: flex-end;
  width: 100%;
  gap: 0.9375rem;
  padding-block: 3rem 1.625rem;
}
@media screen and (min-width: 768px) {
  .p-front-news__head-inner {
    flex-direction: column;
    align-items: unset;
    gap: 0;
    margin-top: 4.6875rem;
    margin-inline: auto 3.125rem;
    padding-block: 0;
    width: 20rem;
  }
}

.p-front-news__contents {
  flex: 1;
}
@media screen and (min-width: 768px) {
  .p-front-news__contents {
    padding-block: 4.6875rem 5.3125rem;
  }
}

/*=============================
Career
=============================*/
.p-front-career {
  margin-top: 3.625rem;
  padding-inline: 0.75rem;
  padding-bottom: 3.75rem;
  position: relative;
  overflow: hidden;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-front-career {
    width: 120rem;
    margin-top: 0;
    padding-inline: 0;
    padding-bottom: 5.625rem;
    position: relative;
    left: 50%;
    transform: translate(-50%);
  }
  .p-front-career::before {
    content: "";
    display: inline-block;
    width: 39.625rem;
    height: 100%;
    background-color: #EEF5FB;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
}
@media screen and (min-width: 1921px) {
  .p-front-career {
    width: 100%;
  }
}
.p-front-career .p-front-title {
  flex-direction: unset;
  align-items: flex-end;
  gap: 1.25rem;
}
.p-front-career .title-h2 {
  line-height: 1;
}
.p-front-career .c-main-button {
  margin-top: 1.875rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-front-career .c-main-button {
    margin-top: 3.125rem;
    margin-left: -0.625rem;
  }
}

.p-front-career__wrapper {
  height: 100%;
  max-width: 108.75rem;
  margin: 0 auto;
  background-color: #3486E3;
  border-radius: 1.25rem;
  padding-bottom: 1.4375rem;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 3.125rem rgba(6, 20, 45, 0.24), inset 0 0 3.125rem rgba(6, 20, 45, 0.24);
}
@media screen and (min-width: 768px) {
  .p-front-career__wrapper {
    width: clamp(87.5rem, 1.098rem + 89.71vw, 108.75rem);
    height: 45rem;
    border-radius: 1.875rem;
    padding-bottom: 0;
  }
}
.p-front-career__wrapper::before {
  content: "";
  display: inline-block;
  animation: rotate-career 40s infinite linear;
  aspect-ratio: 1/1;
  width: clamp(21.563rem, 12.295rem + 39.54vw, 31.25rem);
  height: auto;
  background-image: url("../images/common/career-bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: -8.75rem;
  left: -5.625rem;
}
@keyframes rotate-career {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@media screen and (min-width: 768px) {
  .p-front-career__wrapper::before {
    animation: rotate-career 32s infinite linear;
  }
}
@media screen and (min-width: 768px) {
  .p-front-career__wrapper::before {
    width: 100%;
    max-width: 43.125rem;
    top: -2.1875rem;
    left: -10.9375rem;
  }
}

.p-front-career__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 90%;
  max-width: 96.25rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-front-career__inner {
    flex-direction: unset;
  }
}
.p-front-career__inner::before, .p-front-career__inner::after {
  content: "";
  display: inline-block;
  position: absolute;
  z-index: 2;
}
.p-front-career__inner::before {
  aspect-ratio: 226/123;
  width: clamp(7.125rem, 3.777rem + 14.29vw, 10.625rem);
  background-image: url("../images/front/deco-mirror.webp");
  background-size: cover;
  background-repeat: no-repeat;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  filter: drop-shadow(0 0.1875rem 0.3125rem rgba(0, 0, 0, 0.16));
}
@media screen and (min-width: 768px) {
  .p-front-career__inner::before {
    width: 14.125rem;
  }
}
.p-front-career__inner::after {
  aspect-ratio: 274/127;
  width: clamp(8.938rem, 5.529rem + 14.54vw, 12.5rem);
  background-image: url("../images/front/deco-handle.webp");
  background-size: cover;
  background-repeat: no-repeat;
  bottom: -0.0625rem;
  left: 50%;
  transform: translateX(-50%);
  filter: drop-shadow(0 0.1875rem 0.625rem rgba(0, 0, 0, 0.16));
}
@media screen and (min-width: 768px) {
  .p-front-career__inner::after {
    width: clamp(6.25rem, -1rem + 15.1vw, 17.125rem);
    left: unset;
    transform: unset;
    right: clamp(5rem, -1.25rem + 13.02vw, 14.375rem);
  }
}

.p-front-career__contents {
  width: 100%;
  padding-block: clamp(4.375rem, 2.581rem + 7.65vw, 6.25rem) 1.875rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-front-career__contents {
    width: 45.625rem;
    padding-block: 7.8125rem 5.9375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-front-career__contents-wrap {
    padding-left: clamp(5rem, -16.6rem + 22.43vw, 10.313rem);
  }
}

.p-front-career__lead {
  line-height: 1.3;
  font-family: "TsunagiGothic", "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-front-career__lead {
    font-size: 2.875rem;
    margin-top: 2.25rem;
  }
}

.p-front-career__text {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-front-career__text {
    margin-top: 1.5rem;
  }
}

.p-front-career__image {
  width: 100%;
  height: clamp(25rem, 4.074rem + 89.29vw, 46.875rem);
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-front-career__image {
    width: clamp(36.25rem, -4.41rem + 42.22vw, 46.25rem);
    height: unset;
  }
}
.p-front-career__image .swiper-wrapper {
  transition-timing-function: linear;
}
.p-front-career__image .swiper-slide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
}

.p-front-career__container {
  height: calc((100% - 12px) / 2);
  width: 100%;
  position: absolute !important;
}
@media screen and (min-width: 768px) {
  .p-front-career__container {
    height: 100%;
    width: clamp(17.188rem, -2.634rem + 20.58vw, 22.063rem);
  }
}
.p-front-career__container.-first {
  top: 0;
}
@media screen and (min-width: 768px) {
  .p-front-career__container.-first {
    right: clamp(18.438rem, -3.925rem + 23.22vw, 23.938rem);
  }
}
.p-front-career__container.-second {
  right: 0;
  bottom: 0;
  transform: scaleX(-1);
}
@media screen and (min-width: 768px) {
  .p-front-career__container.-second {
    bottom: unset;
    top: 0;
    transform: scaleY(-1);
  }
}
.p-front-career__container.-second .swiper-slide {
  transform: scaleX(-1);
}
@media screen and (min-width: 768px) {
  .p-front-career__container.-second .swiper-slide {
    transform: scaleY(-1);
  }
}

.p-front-career__list {
  width: 100%;
}

.p-contact .l-wrapper {
  background-color: var(--sub-bg-c);
}
.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 textarea {
  resize: vertical;
}
.p-contact select {
  appearance: none;
}
.p-contact .wpcf7-response-output {
  display: none;
}
.p-contact .wpcf7-list-item {
  margin: 0;
}
.p-contact .u-br {
  display: block !important;
}
@media screen and (min-width: 600px) {
  .p-contact .u-br {
    display: none !important;
  }
}

.p-contact__form {
  border-radius: 2.5rem 2.5rem 0 0;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-contact__form {
    border-radius: 3.75rem 3.75rem 0 0;
  }
}
.p-contact__form .main-form {
  max-width: 62.5rem;
  margin: 0 auto;
  padding-block: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-contact__form .main-form {
    padding-block: 5.3125rem 8.125rem;
  }
}
.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-content {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-contact__form .form-content {
    margin-top: 1rem;
  }
}
.p-contact__form .form-item {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 0.875rem;
}
.p-contact__form .form-item + .form-item {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-contact__form .form-item + .form-item {
    margin-top: 2rem;
  }
}
.p-contact__form .label {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-contact__form .label {
    font-size: 1.25rem;
  }
}
.p-contact__form .label.-caution:after {
  content: "*";
  color: var(--base-c);
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-contact__form .label.-caution:after {
    font-size: 1.25rem;
    margin-left: 0.3125rem;
  }
}
.p-contact__form .select {
  position: relative;
}
.p-contact__form .select::after {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-bottom: solid 0.0625rem #85796A;
  border-right: solid 0.0625rem #85796A;
  position: absolute;
  top: 1.1875rem;
  right: 1.25rem;
  transform: rotate(45deg);
}
@media screen and (min-width: 768px) {
  .p-contact__form .select::after {
    width: 0.6875rem;
    height: 0.6875rem;
    top: 1.5rem;
    right: 1.875rem;
  }
}
.p-contact__form select,
.p-contact__form input,
.p-contact__form textarea {
  width: 100%;
  font-size: 0.875rem;
  background-color: #FBF9F9;
  border: solid 0.0625rem #ECEEF1;
  border-radius: 0.3125rem;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .p-contact__form select,
  .p-contact__form input,
  .p-contact__form textarea {
    font-size: 1.125rem;
    padding: 1.375rem 1.875rem;
  }
}
.p-contact__form select:focus,
.p-contact__form input:focus,
.p-contact__form textarea:focus {
  outline: none;
  border: solid 0.125rem var(--black);
}
.p-contact__form input:-webkit-autofill {
  box-shadow: 0 0 0 62.5rem #FBF9F9 inset;
}
.p-contact__form input::placeholder,
.p-contact__form textarea::placeholder {
  color: #76808F;
  font-weight: 500;
}
.p-contact__form input::-ms-input-placeholder,
.p-contact__form textarea::-ms-input-placeholder {
  color: #76808F;
  font-weight: 500;
}
.p-contact__form .form-policy .wpcf7-list-item label {
  display: flex;
  align-items: flex-start;
  gap: 0.8125rem;
}
.p-contact__form .form-policy .wpcf7-list-item-label {
  font-size: 1rem;
  flex: 1;
}
@media screen and (min-width: 768px) {
  .p-contact__form .form-policy .wpcf7-list-item-label {
    font-size: 1.25rem;
  }
}
.p-contact__form .form-policy .wpcf7-list-item-label a {
  text-decoration: underline;
}
.p-contact__form input[type=checkbox] {
  width: 1.25rem !important;
  height: 1.25rem;
  border: solid 0.0625rem #E9E9E9;
  box-shadow: inset 0 0 0.1875rem rgba(0, 0, 0, 0.16);
  background-color: #fff;
  padding: 0;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-contact__form input[type=checkbox] {
    width: 1.875rem !important;
    height: 1.875rem;
  }
}
.p-contact__form input[type=checkbox]:checked:before {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(50deg);
  width: 0.375rem;
  height: 0.75rem;
  border-right: solid 0.125rem var(--main-c);
  border-bottom: solid 0.125rem var(--main-c);
  content: "";
}
@media screen and (min-width: 768px) {
  .p-contact__form input[type=checkbox]:checked:before {
    width: 0.5rem;
    height: 1rem;
    border-right: solid 0.1875rem var(--main-c);
    border-bottom: solid 0.1875rem var(--main-c);
  }
}
.p-contact__form .c-parts-button {
  color: #76808F;
  font-weight: 500;
  margin-top: 2.5rem;
  margin-inline: auto;
  max-width: 22.8125rem;
}
@media screen and (min-width: 768px) {
  .p-contact__form .c-parts-button {
    margin-top: 3.4375rem;
  }
}
.p-contact__form .c-parts-button:hover {
  color: #fff;
}
.p-contact__form .c-parts-button:disabled {
  cursor: not-allowed;
}
.p-contact__form .c-parts-button:disabled:hover {
  color: #76808F;
}
.p-contact__form .c-parts-button:disabled:hover .text {
  background-color: #fff;
}
.p-contact__form .c-parts-button:disabled:hover .arrow {
  background-image: url(../images/icons/arrow.svg);
}
.p-contact__form .caution {
  color: var(--base-c);
}

.p-contact__head {
  text-align: center;
}
.p-contact__head .title {
  font-weight: 500;
}
.p-contact__head .text {
  font-size: 1rem;
  margin-top: 1.25rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-contact__head .text {
    font-size: 1.125rem;
    margin-top: 1.875rem;
  }
}

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

.p-contact__flow-list {
  display: flex;
  justify-content: space-between;
  width: 75%;
  max-width: 21.875rem;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-contact__flow-list {
    width: 39.375rem;
    max-width: unset;
  }
}
.p-contact__flow-list::after {
  content: "";
  display: inline-block;
  width: calc(100% - 1.5625rem);
  height: 0.3125rem;
  background-color: #F3F6FA;
  position: absolute;
  bottom: 0.625rem;
  left: 0.6875rem;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-contact__flow-list::after {
    width: calc(100% - 1.875rem);
    height: 0.5rem;
    bottom: 0.875rem;
    left: 1rem;
  }
}

.p-contact__flow-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  color: #76808F;
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-contact__flow-item {
    gap: 1.25rem;
    font-size: 1.125rem;
  }
}
.p-contact__flow-item .point {
  display: block;
  width: 1.5625rem;
  height: 1.5625rem;
  border-radius: 50%;
  background-color: rgba(214, 214, 214, 0.61);
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-contact__flow-item .point {
    width: 2.1875rem;
    height: 2.1875rem;
  }
}
.p-contact__flow-item .point::after {
  content: "";
  display: inline-block;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background-color: #99A7BC;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0.125rem 0 rgba(13, 62, 135, 0.16);
}
@media screen and (min-width: 768px) {
  .p-contact__flow-item .point::after {
    width: 0.9375rem;
    height: 0.9375rem;
  }
}

.p-contact__flow-item.is-active {
  color: var(--main-c);
}
.p-contact__flow-item.is-active .point {
  background-color: rgba(194, 218, 255, 0.61);
}
.p-contact__flow-item.is-active .point::after {
  background-color: var(--main-c);
}

.p-contact__body {
  font-weight: 500;
  width: 90%;
  max-width: 56.25rem;
  margin-top: 3.75rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-contact__body {
    margin-top: 7.5rem;
  }
}

.p-contact__message .required {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--base-c);
}
@media screen and (min-width: 768px) {
  .p-contact__message .required {
    font-size: 1.5rem;
  }
}

.p-contact__body.-confirm {
  max-width: 62.5rem;
  background-color: var(--sub-bg-c);
  border-radius: 0.625rem;
  padding-block: 2.5rem 3.75rem;
  padding-inline: 1.875rem;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-contact__body.-confirm {
    margin-top: 7.5rem;
    padding-block: 4.375rem 5rem;
    padding-inline: 3.125rem;
  }
}
.p-contact__body.-confirm .form-content {
  margin-top: 0;
}
.p-contact__body.-confirm .form-item {
  row-gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-contact__body.-confirm .form-item {
    row-gap: 2.25rem;
  }
}
.p-contact__body.-confirm .form-item span {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-contact__body.-confirm .form-item span {
    font-size: 1.125rem;
  }
}
.p-contact__body.-confirm .form-item:not(:first-child) {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-contact__body.-confirm .form-item:not(:first-child) {
    margin-top: 3.375rem;
  }
}
.p-contact__body.-confirm .privacy-policy.agree {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-contact__body.-confirm .privacy-policy.agree {
    font-size: 1.125rem;
  }
}
.p-contact__body.-confirm .privacy-policy.agree .checkbox {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  padding: 0;
  position: relative;
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-contact__body.-confirm .privacy-policy.agree .checkbox {
    width: 1.875rem;
    height: 1.875rem;
    margin-top: 0;
  }
}
.p-contact__body.-confirm .privacy-policy.agree .checkbox::before {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(50deg);
  width: 0.375rem;
  height: 0.75rem;
  border-right: solid 0.125rem var(--main-c);
  border-bottom: solid 0.125rem var(--main-c);
  content: "";
}
@media screen and (min-width: 768px) {
  .p-contact__body.-confirm .privacy-policy.agree .checkbox::before {
    width: 0.5rem;
    height: 1rem;
    border-right: solid 0.1875rem var(--main-c);
    border-bottom: solid 0.1875rem var(--main-c);
  }
}
.p-contact__body.-confirm .privacy-policy.agree .text {
  flex: 1;
}

.p-contact__submit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: solid 0.0625rem #DCE2EB;
}
@media screen and (min-width: 768px) {
  .p-contact__submit {
    justify-content: space-between;
    margin-top: 5.3125rem;
    padding-top: 3.3125rem;
  }
}
.p-contact__submit .c-parts-button {
  margin: 0;
}
.p-contact__submit .c-parts-button .arrow {
  right: unset;
  left: 1.25rem;
  transform: rotate(180deg) translateY(50%);
}
@media screen and (min-width: 768px) {
  .p-contact__submit .c-parts-button .arrow {
    left: 1.875rem;
  }
}
.p-contact__submit .form-submit {
  width: 100%;
  max-width: 21.5625rem;
}

.p-thanks .l-wrapper {
  background-color: var(--sub-bg-c);
}
.p-thanks .main-form {
  padding-block: 3.75rem 5rem;
  width: 90%;
}
@media screen and (min-width: 768px) {
  .p-thanks .main-form {
    padding-block: 5.3125rem 13.125rem;
  }
}
.p-thanks .p-contact__body {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-thanks .p-contact__body {
    margin-top: 7.5rem;
  }
}
.p-thanks .thanks-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-thanks .thanks-text {
    gap: 1.5625rem;
  }
}
.p-thanks .thanks-text .image {
  width: 5rem;
}
@media screen and (min-width: 768px) {
  .p-thanks .thanks-text .image {
    width: 7.5rem;
  }
}
.p-thanks .thanks-text .title {
  font-weight: 500;
}
.p-thanks .thanks-text .text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-thanks .thanks-text .text {
    font-size: 1.125rem;
  }
}
.p-thanks .u-br {
  display: block !important;
}
@media screen and (min-width: 600px) {
  .p-thanks .u-br {
    display: none !important;
  }
}

/*---------ヘルパークラス　接頭辞「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(--bg-c);
}

.u-shadow-inside {
  position: relative;
}
.u-shadow-inside::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  box-shadow: inset -0.375rem 0 1.875rem rgba(0, 0, 0, 0.16);
}

.u-vam {
  align-items: center;
}

.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-c-main {
  color: var(--main-c);
}

.u-c-base {
  color: var(--base-c);
}

.u-c-white {
  color: var(--white);
}

.u-c-black {
  color: var(--black);
}

.u-c-grad {
  background: #004DE8;
  background: linear-gradient(0deg, rgb(0, 77, 232) 0%, rgb(35, 181, 219) 100%);
  background: -webkit-linear-gradient(0deg, rgb(0, 77, 232) 0%, rgb(35, 181, 219) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-en {
  font-family: "General Sans", sans-serif;
}

.u-text-16 {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .u-text-16 {
    font-size: 1rem;
  }
}

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

.u-text-20 {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .u-text-20 {
    font-size: 1.25rem;
  }
}

.u-text-28 {
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .u-text-28 {
    font-size: 1.75rem;
  }
}

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

.u-text-75 {
  font-size: 2.25rem;
}
@media screen and (min-width: 768px) {
  .u-text-75 {
    font-size: 4.6875rem;
  }
}

.u-weight-400 {
  font-weight: 400;
}/*# sourceMappingURL=style.css.map */