@charset "UTF-8";
/*-----------ベース -----------*/
:root {
  --primary: #283747;
  --secondary: #939ba3;
  --brand: #e5a93c;
  --surface: #ffffff;
  --background: #f7f9fa;
  --border: #e7e8eb;
  --primary-80: rgba(40, 55, 71, 0.8);
  --primary-08: rgba(40, 55, 71, 0.08);
  --ink-on-dark: #eef1f4;
  --yellow: #ffef00;
  --lightyellow: #f9f2bb;
  --blue: #0000ff;
  --navy: #053e62;
  --lightblue: #ebebff;
  --lightgreen: #dcedd0;
  --red: #fc0000;
  --orange: #e83b18;
  --white: #fff;
  --offwhite: #f9f9f9;
  --black: #222222;
  --grey: #d6d6d6;
  --darkgrey: #848c8f;
  --lightgrey: #f7f7f7;
  --ivory: #f5f1eb;
  --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: none;
}

[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(--brand);
  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%);
}

@keyframes mv-animation {
  0% {
    transform: translateY(20%);
    filter: blur(1rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    filter: none;
    opacity: 1;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

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

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

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

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

del {
  text-decoration: line-through;
}

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

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

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

input,
select {
  vertical-align: middle;
}

i {
  font-style: normal;
}

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

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

html {
  text-underline-position: under;
}
@media (max-width: 374px) {
  html {
    font-size: 4.2780748663vw;
  }
}
@media (min-width: 375px) and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1440px) {
  html {
    font-size: 1.1111111111vw;
  }
}
@media (min-width: 1441px) {
  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.8;
  width: 100%;
  overflow-x: hidden;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  color: var(--primary);
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1rem;
  }
}

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;
}
button:focus {
  opacity: 0.6;
}

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

h1 {
  font-size: clamp(2rem, 1.5752rem + 1.8123vw, 3.75rem);
}

h2 {
  font-size: clamp(1.75rem, 1.5073rem + 1.0356vw, 2.75rem);
}

h3 {
  font-size: clamp(1.5rem, 1.318rem + 0.7767vw, 2.25rem);
}

h4 {
  font-size: clamp(1.375rem, 1.2233rem + 0.6472vw, 2rem);
}

h5 {
  font-size: clamp(1.25rem, 1.1893rem + 0.2589vw, 1.5rem);
}

h6 {
  font-size: clamp(1rem, 0.9697rem + 0.1294vw, 1.125rem);
}

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

.l-archive__inner {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  position: relative;
  padding: 0 5%;
}
@media screen and (min-width: 768px) {
  .l-archive__inner {
    padding: 0 0 0 10%;
  }
}

.l-archive__container {
  display: flex;
  justify-content: center;
  flex-direction: column-reverse;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .l-archive__container {
    justify-content: space-between;
    flex-direction: row;
    gap: 0;
  }
}

.l-archive__main {
  width: 100%;
}

.l-archive__item {
  width: calc(100% - 5.5vw);
  margin-top: 1.25rem;
  padding-bottom: 1.25rem;
  transition: 0.5s;
}
@media screen and (min-width: 768px) {
  .l-archive__item {
    margin-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.l-archive__item:not(:last-child) {
  border-bottom: solid 0.0625rem var(--grey);
}
.l-archive__item:nth-of-type(3n+1) .head {
  position: relative;
}
.l-archive__item:nth-of-type(3n+1) .head:before, .l-archive__item:nth-of-type(3n+1) .head:after {
  content: "";
  position: absolute;
  transform: rotate(-35deg);
  width: 3.125rem;
  height: 0.9375rem;
  background-color: var(--secondary);
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .l-archive__item:nth-of-type(3n+1) .head:before, .l-archive__item:nth-of-type(3n+1) .head:after {
    width: 4.375rem;
    height: 1.5625rem;
  }
}
.l-archive__item:nth-of-type(3n+1) .head:before {
  top: -0.3125rem;
  left: -1.125rem;
  border-bottom: 0.0625rem solid var(--grey);
}
@media screen and (min-width: 768px) {
  .l-archive__item:nth-of-type(3n+1) .head:before {
    top: -0.625rem;
    left: -1.5625rem;
  }
}
.l-archive__item:nth-of-type(3n+1) .head:after {
  bottom: -0.3125rem;
  right: -1.125rem;
  border-top: 0.0625rem solid var(--grey);
}
@media screen and (min-width: 768px) {
  .l-archive__item:nth-of-type(3n+1) .head:after {
    bottom: -0.625rem;
    right: -1.5625rem;
  }
}
.l-archive__item:nth-of-type(3n+2) .head {
  box-shadow: 0.75rem 0.75rem 0.3125rem var(--darkgrey);
  transition: 0.3s;
}
.l-archive__item:nth-of-type(3n+2) .head:hover {
  box-shadow: 0.0625rem 0.0625rem 0.0625rem var(--darkgrey);
  transform: translate3d(0.75rem, 0.75rem, 0);
}
.l-archive__item:nth-of-type(3n) .head {
  position: relative;
}
.l-archive__item:nth-of-type(3n) .head:before, .l-archive__item:nth-of-type(3n) .head:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  z-index: 1;
  transition: 0.3s;
}
.l-archive__item:nth-of-type(3n) .head:before {
  top: -0.3125rem;
  right: -0.3125rem;
  border-width: 0 1.875rem 1.875rem 0;
  border-color: transparent var(--brand) transparent transparent;
}
@media screen and (min-width: 768px) {
  .l-archive__item:nth-of-type(3n) .head:before {
    border-width: 0 2.5rem 2.5rem 0;
  }
}
.l-archive__item:nth-of-type(3n) .head:after {
  bottom: -0.3125rem;
  left: -0.3125rem;
  border-width: 1.875rem 0 0 1.875rem;
  border-color: transparent transparent transparent var(--brand);
}
@media screen and (min-width: 768px) {
  .l-archive__item:nth-of-type(3n) .head:after {
    border-width: 2.5rem 0 0 2.5rem;
  }
}
.l-archive__item:nth-of-type(3n) .head:hover:before {
  top: 0;
  right: 0;
}
.l-archive__item:nth-of-type(3n) .head:hover:after {
  bottom: 0;
  left: 0;
}
.l-archive__item {
  transform: translateY(100%);
  opacity: 0;
}
.l-archive__item.-view {
  transform: translateY(0);
  opacity: 1;
}
.l-archive__item .link {
  text-decoration: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
}
@media screen and (min-width: 768px) {
  .l-archive__item .link {
    grid-template-columns: 21.875rem 1fr;
  }
}
.l-archive__item .link:hover .more:after {
  transform: scale(1, 1);
}
.l-archive__item .link:hover .image-wrapp img {
  transform: scale(1.1);
}
.l-archive__item .head {
  height: fit-content;
}
.l-archive__item .head .image-wrapp {
  overflow: hidden;
  position: relative;
}
.l-archive__item .head .image-wrapp::before {
  content: "";
  float: left;
  padding-top: 56.25%;
}
.l-archive__item .head .image-wrapp::after {
  content: "";
  display: block;
  clear: both;
}
.l-archive__item .head .image-wrapp > :first-child {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  object-fit: cover;
}
.l-archive__item .head .image-wrapp img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
.l-archive__item .body {
  padding: 0.5rem 2rem 1.5rem;
  position: relative;
}
.l-archive__item .body .data {
  line-height: 1.7;
  color: var(--darkgrey);
}
.l-archive__item .body .title {
  font-size: clamp(1rem, 0.8rem + 1vw, 2rem);
  margin-top: 1rem;
}
.l-archive__item .body .term {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 1.2rem;
}
.l-archive__item .body .term:before {
  content: "";
  display: inline-block;
  background-color: var(--darkgrey);
  width: 1rem;
  height: 0.0625rem;
}
.l-archive__item .more {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .l-archive__item .more {
    right: 2rem;
    bottom: 1rem;
  }
}
.l-archive__item .more:after {
  position: absolute;
  bottom: -0.3125rem;
  left: 0;
  content: "";
  width: 100%;
  height: 0.125rem;
  background: var(--brand);
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform 0.3s;
}

.l-archive__pagenation {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1rem 0;
  border-top: solid 0.0625rem var(--brand);
}

.l-archive__category {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  width: calc(100% - 5.5vw);
  gap: 1rem;
}
.l-archive__category .link {
  text-decoration: none;
  border: solid 0.0625rem var(--brand);
  border-radius: 0.3125rem;
  color: var(--brand);
  padding: 0.625rem;
  transition: 0.3s;
}
.l-archive__category .link:hover {
  background-color: var(--white);
  color: var(--brand);
}
.l-archive__category .link.is-active {
  background-color: var(--brand);
  color: var(--white);
}

.l-article__wrapper {
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .l-article__wrapper {
    margin-top: 5rem;
  }
}
.l-article__wrapper {
  padding: 1rem 0;
}

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

.l-article__inner--full {
  max-width: 120rem;
  padding: 0 5%;
}
@media screen and (min-width: 768px) {
  .l-article__inner--full {
    padding: 0 0 0 10%;
  }
}

.l-article__container {
  display: grid;
  grid-template-areas: "sidebar" "main";
  row-gap: 2rem;
}
@media screen and (min-width: 768px) {
  .l-article__container {
    grid-template-areas: "main sidebar";
    grid-template-columns: 70% 28%;
    column-gap: 2rem;
    row-gap: 0;
  }
}

.l-article__main {
  grid-area: main;
}

.l-article__archive-title, .l-article__single-title {
  border-bottom: solid 0.125rem var(--brand);
  padding: 0.5rem 0;
  font-size: clamp(1.125rem, 0.766rem + 1.7949vw, 2rem);
}

.l-article__content:before, .l-article__content:after {
  content: "";
  display: block;
  clear: both;
}

.l-article__item .link {
  text-decoration: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
}
@media screen and (min-width: 768px) {
  .l-article__item .link {
    grid-template-columns: 16.25rem 1fr;
  }
}
.l-article__item .link:hover .more:after {
  transform: scale(1, 1);
}
.l-article__item .image {
  position: relative;
}
.l-article__item .image::before {
  content: "";
  float: left;
  padding-top: 75%;
}
.l-article__item .image::after {
  content: "";
  display: block;
  clear: both;
}
.l-article__item .image > :first-child {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  object-fit: cover;
}
.l-article__item .body {
  padding: 0.5rem 1rem 1.5rem;
  position: relative;
}
.l-article__item .body .data {
  line-height: 1.7;
}
.l-article__item .body .title {
  font-size: clamp(1rem, 0.9487rem + 0.2564vw, 1.125rem);
}
.l-article__item .body .description {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.l-article__item .more {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .l-article__item .more {
    right: 2rem;
    bottom: 1rem;
  }
}
.l-article__item .more:after {
  position: absolute;
  bottom: -0.3125rem;
  left: 0;
  content: "";
  width: 100%;
  height: 0.125rem;
  background: var(--brand);
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform 0.3s;
}

.l-article__pagenation {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1rem 0;
  border-top: solid 0.125rem var(--brand);
}

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

.l-article__toc-content {
  position: sticky;
  top: 4rem;
}
@media screen and (min-width: 768px) {
  .l-article__toc-content {
    top: 5rem;
  }
}
.l-article__toc-content .toc-heading {
  font-size: clamp(1rem, 0.8974rem + 0.5128vw, 1.25rem);
}
.l-article__toc-content .toc-index .link {
  display: block;
  width: 100%;
  padding: 0.3125rem 0.625rem;
  text-decoration: none;
  font-size: clamp(0.875rem, 0.7724rem + 0.5128vw, 1.125rem);
}
@media screen and (min-width: 768px) {
  .l-article__toc-content .toc-index .link {
    color: var(--grey);
  }
  .l-article__toc-content .toc-index .link.is-active {
    color: #333333;
    background-color: #f3f3f3;
  }
}

.l-editor-wrapper {
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .l-editor-wrapper {
    margin-top: 5rem;
  }
}

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

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

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

.l-inner--full {
  width: 100%;
  max-width: 120rem;
}

.l-basic-wrapper {
  background-color: #f7f9fa;
}

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

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

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

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

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

.l-footer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 0;
}
@media screen and (min-width: 768px) {
  .l-footer {
    padding: 8rem 0;
  }
}
.l-footer .l-inner {
  max-width: 90rem;
}

.l-footer__logo {
  margin-inline: auto;
  width: 6.25rem;
}
@media screen and (min-width: 768px) {
  .l-footer__logo {
    margin-inline: unset;
    width: 8.5rem;
  }
}

.l-footer__dyd {
  width: fit-content;
  margin-inline: auto;
}

.l-footer__nav-container {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-footer__nav-container {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2.5rem;
  }
}

.l-footer__nav-list {
  display: flex;
  flex-wrap: wrap;
}

.l-footer__nav-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .l-footer__nav-item {
    min-width: 15rem;
  }
}

.l-footer__nav-ttl {
  display: block;
  text-decoration: none;
  font-weight: 500;
}

.l-footer__nav-sub-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.l-footer__nav-sub-ttl {
  text-decoration: none;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .l-footer__nav-sub-ttl {
    font-size: 0.875rem;
  }
}
.l-footer__nav-sub-ttl.-list {
  position: relative;
  padding-left: 1rem;
  font-size: 0.625rem;
}
@media screen and (min-width: 768px) {
  .l-footer__nav-sub-ttl.-list {
    font-size: 0.75rem;
  }
}
.l-footer__nav-sub-ttl.-list:before {
  content: "";
  display: block;
  width: 0.625rem;
  height: 0.0625rem;
  background-color: var(--primary);
  position: absolute;
  top: 0.5rem;
  left: 0;
}

.l-footer__outer-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media screen and (min-width: 768px) {
  .l-footer__outer-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6rem;
  }
}

.l-footer__outer-item {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.l-footer__outer-ttl {
  font-weight: 500;
}

.l-footer__outer-link {
  display: inline-block;
  width: fit-content;
}

.l-footer__outer-sub-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.l-footer__info-container {
  display: flex;
  flex-direction: column-reverse;
  gap: 2rem;
  margin-top: 1.5rem;
  color: var(--secondary);
  max-width: 80%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-footer__info-container {
    gap: unset;
    margin-top: 3rem;
    flex-direction: row;
    justify-content: space-between;
    max-width: unset;
  }
}

.l-footer__copyright {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .l-footer__copyright {
    text-align: unset;
    font-size: 0.875rem;
  }
}

.l-footer__info-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 2rem;
  row-gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .l-footer__info-list {
    gap: 2rem;
    justify-content: unset;
  }
}

.l-footer__info-link {
  text-decoration: none;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .l-footer__info-link {
    font-size: 0.875rem;
  }
}

.l-footer__info-ttl {
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
}

.l-footer__info-sub-list {
  display: flex;
  gap: 1rem;
}

.l-footer__top-link {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  width: fit-content;
  margin-top: 2rem;
  margin-left: auto;
  font-size: 0.875rem;
}
.l-footer__top-link:before {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  background-image: url(../images/icons/page-top.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4rem;
}
@media screen and (min-width: 768px) {
  .l-header {
    height: 5rem;
  }
}
.l-header {
  transition: 0.5s ease-in-out;
}
.l-header.-scrolled {
  background-color: rgba(147, 155, 163, 0.8);
  backdrop-filter: blur(1rem);
}
.l-header.-unpinned {
  transform: translateY(-100%);
}

/*********************************************
 * サイドバーのレイアウト
 *
 * 接頭詞『.l-sidebar』
 *********************************************/
.l-sidebar {
  grid-area: sidebar;
  min-width: 12.5rem;
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-sidebar {
    position: sticky;
    height: fit-content;
    top: 2rem;
    padding-bottom: 5rem;
    transition: top 0.5s ease-in-out;
  }
  .l-sidebar.-shift {
    top: 7rem;
  }
}
.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(--brand);
  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(--brand);
  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(--brand);
  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(--primary);
  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__wrapper {
  position: relative;
}
.c-title-bg__wrapper .c-title-bg-loop {
  position: absolute;
  bottom: 0;
  height: 100%;
  width: 100%;
  padding: 0;
}
.c-title-bg__wrapper .c-title-bg-loop__loop {
  bottom: 0;
  top: auto;
}
.c-title-bg__wrapper .c-title-bg-loop__loop .title {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 8.75rem;
  font-style: normal;
  font-weight: 100;
  line-height: 1.1;
  letter-spacing: 0.7rem;
}

.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: 21.875rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}
@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: stretch;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .c-title-bg__inner {
    flex-direction: row-reverse;
  }
}

.c-title-bg__image {
  aspect-ratio: 375/200;
  min-height: 12.5rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-title-bg__image {
    aspect-ratio: unset;
    max-width: clamp(57rem, 11.875rem + 50.1vw, 72rem);
    min-height: unset;
  }
}
.c-title-bg__image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, #fff 0%, #fff 20%, rgba(255, 255, 255, 0.95) 38%, rgba(255, 255, 255, 0.7) 55%, rgba(255, 255, 255, 0.35) 75%, transparent 100%);
}
.c-title-bg__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 0;
  filter: blur(6px);
  transform: scale(1.05);
}

.c-title-bg__content {
  padding-bottom: 2.8125rem;
  margin-top: -2.5rem;
  position: relative;
  z-index: 1;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-title-bg__content {
    padding-block: 3.875rem 5.8125rem;
    padding-inline: 0;
    margin-top: 0;
    margin-left: unset;
    margin-right: -10.5rem;
    width: 37.5rem;
  }
}

.c-title-bg__title {
  color: #e5a93c;
  font-family: "Montserrat", sans-serif;
  font-size: 3.75rem;
  font-style: normal;
  font-weight: 100;
  line-height: 1.8;
  letter-spacing: 0.3rem;
}

.c-title-bg__sub-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.12rem;
}
@media screen and (min-width: 768px) {
  .c-title-bg__sub-title {
    font-size: 1.5rem;
  }
}

.c-title-bg__text {
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08rem;
  margin-top: 2.375rem;
}
@media screen and (min-width: 768px) {
  .c-title-bg__text {
    font-size: 1rem;
  }
}
.c-title-bg__text {
  /* & + * {
    margin-top: rem(38);
  } */
}

@media screen and (min-width: 768px) {
  .c-title-bg--whole.c-title-bg {
    justify-content: flex-end;
  }
}
@media screen and (min-width: 768px) {
  .c-title-bg--whole .c-title-bg__inner {
    position: relative;
    width: 100%;
  }
}
.c-title-bg--whole .c-title-bg__image {
  max-width: none;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.c-title-bg--whole .c-title-bg__image::before {
  content: none;
}
.c-title-bg--whole .c-title-bg__content-wrapper {
  max-width: 75rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .c-title-bg--whole .c-title-bg__content {
    margin-left: auto;
    margin-right: 0;
    width: 50%;
  }
}

.c-title-bg-double {
  width: 100%;
  min-height: 25rem;
  display: flex;
  flex-direction: column;
  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;
    flex-direction: unset;
    align-items: stretch;
  }
}

.c-title-bg-double__container {
  position: relative;
  overflow: hidden;
  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__container::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.3s;
}

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

.c-title-bg-double__inner {
  width: 90%;
  margin: 0 auto;
  padding: 3.125rem 0;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .c-title-bg-double__inner {
    width: 73.3%;
    max-width: 37.5rem;
    text-align: left;
    padding-block: 4.875rem;
  }
}
.c-title-bg-double__inner .c-link {
  margin-top: 1.75rem;
}
.c-title-bg-double__inner .c-link-text {
  text-align: right;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.07rem;
}
.c-title-bg-double__inner .c-link-arrow {
  width: 3.125rem;
  height: 2.375rem;
  border-radius: 50%;
  border: 0.0625rem solid #fff;
  position: relative;
  background: transparent;
}
.c-title-bg-double__inner .c-link-arrow::after {
  content: none;
}
.c-title-bg-double__inner .c-link-arrow::before {
  content: "→";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.c-title-bg-double__title {
  font-family: "Montserrat", sans-serif;
  font-size: 2.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.22rem;
}
.c-title-bg-double__title + * {
  margin-top: 1rem;
}

.c-title-bg-double__sub-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.12rem;
}
@media screen and (min-width: 768px) {
  .c-title-bg-double__sub-title {
    font-size: 1.5rem;
  }
}
.c-title-bg-double__sub-title {
  /* & + * {
    margin-top: 1rem;
  } */
}

.c-title-bg-double__text {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08rem;
  text-align: left;
  margin-top: 2.5rem;
  /* & + * {
    margin-top: rem(40);
  } */
}

.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(--brand);
  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(--brand);
  mix-blend-mode: multiply;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  z-index: 0;
}

.c-title-bg-double:not(.c-title-bg-double--reverse) .c-title-bg-double__container:first-of-type::before {
  filter: blur(3px);
  transform: scale(1.05);
}

.c-title-bg-double--reverse .c-title-bg-double__container:last-of-type::before {
  filter: blur(6px);
  transform: scale(1.05);
}

.c-title-bg-double__cover.u-c-white .c-link {
  color: var(--white);
}

.c-title-bg-double__cover.u-c-brand .c-link {
  color: var(--brand);
}

.c-title-bg-double__cover.u-c-black .c-link {
  color: var(--primary);
}

.c-title-bg-loop__wrapper {
  position: relative;
}

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

.c-title-bg-loop__loop {
  animation: loopTitle 30s linear infinite;
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 0;
  display: flex;
  transform: translate(-50%, 0%);
  white-space: nowrap;
  transition: all 0.3s;
}
.c-title-bg-loop__loop .title {
  margin-right: 1.5ch;
  line-height: 1.8;
  white-space: nowrap;
  font-weight: 100;
  font-size: 3.75rem;
  opacity: 0.1;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.7rem;
}
@media screen and (min-width: 768px) {
  .c-title-bg-loop__loop .title {
    font-size: 8.75rem;
  }
}
.c-title-bg-loop__loop .title.-color {
  color: #c3edfc;
}
.c-title-bg-loop__loop .title.-white {
  color: var(--white);
}

.c-title-bg-loop__title {
  color: #e5a93c;
  font-family: "Montserrat", sans-serif;
  font-size: 3.75rem;
  font-weight: 100;
  line-height: 1.8;
  letter-spacing: 0.3rem;
}

.c-title-bg-loop__sub-title {
  color: #283747;
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.12rem;
}
@media screen and (min-width: 768px) {
  .c-title-bg-loop__sub-title {
    font-size: 1.5rem;
  }
}

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

@keyframes loopTitle {
  from {
    transform: translate(-40%, 0%);
  }
  to {
    transform: translate(-60%, 0%);
  }
}
.c-title-bg-loop__bg {
  max-width: 100rem;
  margin-inline: auto;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.c-title-bg-loop__bg img {
  width: 100%;
  height: auto;
}

.c-title-cont {
  margin-bottom: 0.625rem;
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-title-cont {
    margin-bottom: 1.5625rem;
    font-size: 2rem;
  }
}

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

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

.c-title-h1 {
  display: flex;
  align-items: center;
  position: relative;
}

.c-title-h1__container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0;
}
@media screen and (min-width: 768px) {
  .c-title-h1__container {
    gap: 4rem;
  }
}

@media screen and (min-width: 768px) {
  .c-title-h1__container--row {
    flex-direction: row;
    align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .c-title-h1__container--column {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}

.c-title-h1--center {
  text-align: center;
}
.c-title-h1--center .c-title-h1__container {
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .c-title-h1--center .c-title-h1__container--column {
    align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .c-title-h1__container--wrap {
    flex-wrap: wrap;
    align-items: center;
    column-gap: 1rem;
  }
}

.c-title-h1__main,
.c-title-h1__sub {
  font-family: "Montserrat", sans-serif;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.c-title-h1__main {
  color: #e5a93c;
  font-size: 3.75rem;
  font-weight: 100;
  letter-spacing: 0.3rem;
}

.c-title-h1__sub {
  color: #283747;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.12rem;
}

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

.c-title-h1--full {
  line-height: 1;
  letter-spacing: 0.2rem;
  position: relative;
  padding: 2.375rem 0;
}
@media screen and (min-width: 768px) {
  .c-title-h1--full {
    padding: clamp(5.625rem, -5.28rem + 12.11vw, 9.25rem) 0;
  }
}

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

.c-title-h1--full__main {
  font-size: clamp(2.5rem, 1.304rem + 5.1vw, 3.75rem);
  line-height: 1;
  letter-spacing: 0.3125rem;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .c-title-h1--full__main {
    font-size: 6.25rem;
  }
}

.c-title-h1--full__sub {
  margin-top: 1.25rem;
  font-size: clamp(1.25rem, 1.011rem + 1.02vw, 1.5rem);
  letter-spacing: 0;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .c-title-h1--full__sub {
    margin-top: 2.5rem;
    font-size: 1.5rem;
  }
}

.c-title-h1-full {
  position: relative;
  line-height: 1;
  letter-spacing: 0.05rem;
}
.c-title-h1-full .l-inner {
  z-index: 1;
}

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

.c-title-h1-full__container {
  padding-block: 6.25rem 3.125rem;
}
@media screen and (min-width: 768px) {
  .c-title-h1-full__container {
    padding-block: 9.6875rem 5.625rem;
  }
}

/* 
.c-title-h1-full__image-wrapper {
  display: flex;
  align-items: center;
  justify-content: end;
  margin-top: 4rem;
  margin-left: auto;
  aspect-ratio: 2 / 1;
  width: rem(329);
  height: rem(220);
  @include mq {
    margin-top: unset;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: rem(829);
    height: rem(458);
  }

  .around-text {
    position: absolute;
  }
} */
.c-title-h1-full__illust {
  max-width: 24.5%;
  position: absolute;
  bottom: 0;
  right: 2rem;
}
@media screen and (min-width: 768px) {
  .c-title-h1-full__illust {
    right: 22rem;
    bottom: 1.5rem;
    max-width: 8%;
  }
}
@media screen and (min-width: 1440px) {
  .c-title-h1-full__illust {
    bottom: 0;
    max-width: 12%;
  }
}

.c-title-h1-full__bg-box {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-title-h1-full__bg-box .box {
  position: absolute;
}
.c-title-h1-full__bg-box .box:nth-child(1) {
  top: 0;
  right: 3rem;
  transform: rotate(-19deg) translate(0, -37%);
  width: 16.625rem;
  height: 11.6875rem;
}
@media screen and (min-width: 768px) {
  .c-title-h1-full__bg-box .box:nth-child(1) {
    right: 15rem;
    transform: rotate(-19deg) translate(-38%, -55%);
    width: 54.25rem;
    height: 38.125rem;
  }
}
.c-title-h1-full__bg-box .box:nth-child(2) {
  top: 0;
  right: 0;
  transform: rotate(17deg) translate(40%, -10%);
  width: 16.625rem;
  height: 19.0625rem;
}
@media screen and (min-width: 768px) {
  .c-title-h1-full__bg-box .box:nth-child(2) {
    right: 5rem;
    transform: rotate(17deg) translate(-7%, -20%);
    width: 54.25rem;
    height: 62.1875rem;
  }
}

.c-title-h1-full_breadcrumb {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 1rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.c-title-h1-full_breadcrumb__item {
  letter-spacing: 0.05em;
}
.c-title-h1-full_breadcrumb__item:not(:last-child):after {
  content: "";
  display: inline-block;
  margin-left: 0.375rem;
  width: 0.375rem;
  height: 0.375rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg) translate(-30%, -30%);
}

.c-title-h1-full_breadcrumb__link {
  text-decoration: none;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.25;
  letter-spacing: 0.05rem;
}

.c-title-h1-full_breadcrumb__text {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.25;
  letter-spacing: 0.8px;
  opacity: 0.25;
}

.c-title-h1-full__main {
  color: #e5a93c;
  font-family: "Montserrat", sans-serif;
  font-size: 5rem;
  font-style: normal;
  font-weight: 100;
  line-height: 1.8;
  letter-spacing: -0.2rem;
  animation: mv-animation 1s ease-out forwards;
}
@media screen and (min-width: 768px) {
  .c-title-h1-full__main {
    font-size: 6rem;
    letter-spacing: 0.3rem;
  }
}
.c-title-h1-full__main small {
  font-size: 0.6em;
}

.c-title-h1-full__sub {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.12rem;
  animation: mv-animation 1s ease-out forwards;
}
@media screen and (min-width: 768px) {
  .c-title-h1-full__sub {
    font-size: 1.5rem;
  }
}

.c-title-h1-full__navigation-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2rem;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .c-title-h1-full__navigation-list {
    margin-top: 2.625rem;
    gap: 2.5rem;
  }
}

/* .c-title-h1-full__navigation-item {
  position: relative;
  &:not(:last-child) {
    &:after {
      content: "";
      display: inline-block;
      width: 1px;
      height: rem(32);
      background-color: #cfcfcf;
      position: absolute;
      top: 0;
      bottom: 0;
      right: -0.5rem;
      margin: auto;
      @include mq {
        right: -0.9rem;
      }
    }
  }
} */
.c-title-h1-full__navigation-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: 0.3s;
  color: #fff;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05rem;
}
.c-title-h1-full__navigation-link .arrow {
  display: grid;
  place-content: center;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 100%;
  border: 0.0625rem solid #fff;
}
.c-title-h1-full__navigation-link .arrow:before {
  content: "";
  width: 0.3125rem;
  height: 0.3125rem;
  border-right: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
  transform: rotate(45deg) translate(-10%, -20%);
}
.c-title-h1-full__navigation-link:hover {
  color: var(--main-c);
}

.c-title-h2 {
  color: #283747;
  font-family: "Montserrat", sans-serif;
  line-height: 1.8;
}

.c-title-h2__main {
  font-size: 2.75rem;
  font-weight: 400;
  letter-spacing: 0.22rem;
}

.c-title-h2__sub {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.12rem;
  margin-top: 0.5rem;
}

.c-title-h3 {
  color: #283747;
  font-family: "Montserrat", sans-serif;
}

.c-title-h3__main {
  font-weight: 500;
  line-height: 1.8;
  font-size: 2.25rem;
  letter-spacing: 0.18rem;
}

.c-title-h3__sub {
  font-weight: 500;
  line-height: 1.8;
  font-size: 1.125rem;
  letter-spacing: 0.09rem;
  margin-top: 0.5rem;
  color: #283747 !important;
}

.c-title-h4 {
  display: flex;
}
.c-title-h4.u-tal {
  justify-content: flex-start;
}
.c-title-h4.u-tac {
  justify-content: center;
}
.c-title-h4.u-tar {
  justify-content: flex-end;
}

.c-title-h4__main {
  position: relative;
  padding-left: 1rem;
  color: #283747;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.16rem;
}
@media screen and (min-width: 768px) {
  .c-title-h4__main {
    padding-left: 1.6875rem;
  }
}
.c-title-h4__main:before {
  content: "";
  position: absolute;
  top: 0.8em;
  left: 0;
  width: 0.3125rem;
  height: 0.3125rem;
  background-color: var(--brand);
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .c-title-h4__main:before {
    width: 0.4375rem;
    height: 0.4375rem;
  }
}

.c-title-h5.u-tal .c-title-h5__main::after {
  left: 0;
}
.c-title-h5.u-tac .c-title-h5__main::after {
  left: 50%;
  transform: translateX(-50%);
}
.c-title-h5.u-tar .c-title-h5__main::after {
  right: 0;
}

.c-title-h5__main {
  position: relative;
  padding-bottom: 1rem;
  color: #283747;
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.12rem;
}
.c-title-h5__main::after {
  content: "";
  display: inline-block;
  width: 1.875rem;
  height: 0.0625rem;
  background-color: var(--brand);
  position: absolute;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .c-title-h5__main::after {
    width: 3.75rem;
  }
}

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

.c-title-h6__main {
  display: grid;
  grid-template-columns: 1.25rem minmax(0, 1fr);
  gap: 0.625rem;
  align-items: flex-start;
  width: fit-content;
  color: #283747;
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.035625rem;
}
@media screen and (min-width: 768px) {
  .c-title-h6__main {
    grid-template-columns: 2.5rem minmax(0, 1fr);
    gap: 1.375rem;
    letter-spacing: 0.09rem;
  }
}
.c-title-h6__main::before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 0.0625rem;
  background-color: var(--brand);
  margin-top: 0.9em;
}
@media screen and (min-width: 768px) {
  .c-title-h6__main::before {
    width: 2.5rem;
    margin-top: 0.8em;
  }
}

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

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

.c-videoThumb {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}

.c-videoThumb__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/9 !important;
}

.c-videoThumb__icon {
  width: 12%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  aspect-ratio: unset;
}

/* ===== モーダル ===== */
.c-video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  /* 閉じている状態 */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

/* 既存CSSUIが付けるクラス */
.c-video-modal.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.c-video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.c-video-modal__dialog {
  position: relative;
  width: 90%;
  max-width: 75rem;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .c-video-modal__dialog {
    width: 60%;
  }
}

.c-video-modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  line-height: 1;
  color: #fff;
  position: absolute;
  top: -1.5625rem;
  right: 0;
  cursor: pointer;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .c-video-modal__close {
    font-size: 1.25rem;
    top: 0;
    right: -1.5625rem;
  }
}

.c-video-modal__body {
  aspect-ratio: 16/9;
}

.c-video-modal__video {
  width: 100%;
  height: 100%;
  display: block;
}

.c-wysiwyg ul, .c-wysiwyg ol {
  padding-left: 1rem;
  margin-left: 1rem;
  margin-bottom: 2rem;
}
.c-wysiwyg ul li {
  list-style-type: disc;
}
.c-wysiwyg ol li {
  list-style-type: decimal;
}
.c-wysiwyg .aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.c-wysiwyg table {
  border-collapse: separate;
  border-spacing: 0.125rem;
}
.c-wysiwyg table, .c-wysiwyg thead, .c-wysiwyg tbody, .c-wysiwyg tr, .c-wysiwyg th, .c-wysiwyg td {
  border: solid 0.0625rem var(--brand);
}
.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 { /* 配置位置 右 */ }
.c-wysiwyg img.alignleft {
  display: block;
  margin: 0 auto 0 0;
}
.c-wysiwyg { /* 配置位置 左 */ }
.c-wysiwyg img.aligncenter {
  display: block;
  margin: 0 auto;
}
.c-wysiwyg { /* 配置位置 中央 */ }

.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 {
  background-color: var(--brand);
  color: var(--white);
  border-radius: 0.3125rem;
  padding: 0.3125rem;
  font-size: clamp(0.625rem, 0.5224rem + 0.5128vw, 0.875rem);
}

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

.c-banner__item {
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
}

.c-banner__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 11.75rem;
}
@media screen and (min-width: 768px) {
  .c-banner__wrap {
    min-height: 16.25rem;
  }
}
.c-banner__wrap::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.c-banner__wrap:hover .c-banner__img, .c-banner__wrap:active .c-banner__img {
  transform: scale(1.2);
}
.c-banner__wrap .c-banner__num {
  position: absolute;
  bottom: 0;
  right: 0;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Montserrat", sans-serif;
  font-size: 2.25rem;
  font-weight: 500;
  z-index: 1;
  line-height: 1;
  padding-right: 1.3125rem;
  padding-bottom: 1.0625rem;
}

.c-banner__title {
  display: flex;
  flex-direction: column;
  /* gap: rem(5); */
  color: var(--white);
  z-index: 1;
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0.09rem;
  /* font-size: rem(24);
  font-weight: 500; */
  font-size: 1.125rem;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-banner__title {
    /* gap: rem(10);
     font-size: rem(32); */
  }
}

.c-banner__sub-title {
  /*   font-size: rem(16);
  font-weight: 400;

  @include mq {
    font-size: rem(18);
  } */
}

.c-banner .c-banner__img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  transition: 0.8s;
  filter: blur(4px);
}

.c-banner--col1 .c-banner__item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-banner--col1 .c-banner__item {
    max-width: 45rem;
  }
}

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

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

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.625rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: var(--brand);
  transition: 0.3s;
  font-size: 0.875rem;
}
.c-button:hover, .c-button:active {
  color: var(--brand);
  background-color: #fff;
}
.c-button:hover .icon-wrap .icon.-left.-hover,
.c-button:hover .icon-wrap .icon.-right.-hover, .c-button:active .icon-wrap .icon.-left.-hover,
.c-button:active .icon-wrap .icon.-right.-hover {
  opacity: 1;
}
.c-button:hover:after, .c-button:active:after {
  border-color: var(--brand) !important;
}

.c-button--sm {
  min-width: 10rem;
  font-size: 0.875rem;
  padding: 0.6875rem 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-button--sm {
    min-width: 15.625rem;
    padding: 1.25rem;
  }
}

.c-button--lg {
  width: 100%;
  font-size: 0.875rem;
  padding: 1.0625rem;
  border-radius: 6.25rem;
  border: 0.0625rem solid #e7e8eb;
  max-width: 15.625rem;
}

.c-button--sub {
  justify-content: center !important;
  font-size: 0.875rem;
  min-width: 10rem;
  padding-block: 0.6875rem;
  padding-inline: 1.875rem;
}
@media screen and (min-width: 768px) {
  .c-button--sub {
    min-width: 15.625rem;
    padding-block: 1.125rem;
    padding-inline: 3.125rem;
  }
}
.c-button--sub:hover, .c-button--sub:active {
  color: var(--brand);
  background-color: #fff;
}
.c-button--sub:hover:after, .c-button--sub:active:after {
  border-color: var(--brand);
}
.c-button--sub {
  position: relative;
}
.c-button--sub:after {
  content: "";
  height: 0.625rem;
  width: 0.625rem;
  display: inline-block;
  border-top: solid 0.125rem var(--white);
  border-right: solid 0.125rem var(--white);
  transform: rotate(45deg);
  position: absolute;
  right: 1.5rem;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.3s;
}
.c-button--sub::after {
  right: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-button--sub::after {
    right: 1.5rem;
  }
}

.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-button--main {
  background: #939ba3;
  color: #fff;
  border-color: #e7e8eb;
}
.c-button--main:hover {
  background: #fff;
  color: #939ba3;
  border-color: #939ba3;
}
.c-button--main:hover .icon-wrap {
  border: 0.0625rem solid #939ba3 !important;
}
.c-button--main:hover {
  /* &:after {
    border-color: var(--brand);
  } */
}
.c-button--main .icon-wrap {
  border: 0.0625rem solid #fff !important;
}

/*大、 白 */
.c-button--lg.c-button--white {
  background: transparent;
  color: #939ba3;
}
.c-button--lg.c-button--white:hover {
  background: #939ba3;
  color: #fff;
}
.c-button--lg.c-button--white:hover .icon-wrap {
  border: 0.0625rem solid #fff;
}

.c-button--lg {
  gap: 3.125rem;
  justify-content: flex-end;
}
.c-button--lg .icon-wrap {
  width: 2.25rem;
  height: 1.6875rem;
  border: 0.0625rem solid #939ba3;
  border-radius: 100%;
}
.c-button--lg .icon-wrap .icon {
  width: 0.4375rem;
  height: 0.4375rem;
}

.c-button--sm.c-button--white {
  background: transparent;
  color: #939ba3;
}
.c-button--sm.c-button--white:hover .button-link-title {
  text-decoration: underline;
}
.c-button--sm.c-button--white:hover .icon-wrap {
  background: #939ba3;
}

.c-button--sm {
  background: transparent !important;
  min-width: auto;
  gap: 1rem;
}
.c-button--sm .icon-wrap {
  width: 3.125rem;
  height: 2.375rem;
  border: 0.0625rem solid #939ba3;
  border-radius: 100%;
}
.c-button--sm .icon-wrap .icon {
  width: 0.625rem;
  height: 0.5625rem;
}

/* カスタム（カラーピッカー） */
.c-button--custom {
  background: var(--btn-custom, var(--brand));
  color: #fff;
  border-color: var(--btn-custom, var(--brand));
}
.c-button--custom:after {
  border-color: #fff !important;
}
.c-button--custom:hover {
  background: #fff;
  color: var(--btn-custom, var(--brand));
  border-color: var(--btn-custom, var(--brand));
}
.c-button--custom:hover:after {
  border-color: var(--btn-custom, var(--brand)) !important;
}

.c-button .icon-wrap {
  position: relative;
}
.c-button .icon-wrap .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
  height: 100%;
  object-fit: contain;
}
.c-button .icon-wrap .icon.-left.-hover,
.c-button .icon-wrap .icon.-right.-hover {
  opacity: 0;
  visibility: visible;
}

.c-button.-anchor {
  width: auto;
  padding: 0.6875rem 2.1875rem;
  font-size: 0.875rem !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3rem;
}
@media screen and (min-width: 768px) {
  .c-button.-anchor {
    padding: 1.0625rem 2rem;
  }
}
.c-button.-anchor {
  /* @include right_arrow; */
  /* &::after {
    top: rem(-5);
    right: rem(15);
    transform: rotate(135deg);

    @include mq {
      right: rem(20);
    }
  } */
}

.c-button.-anchor.c-button--white {
  background: transparent;
  border: 0.0625rem solid #e7e8eb;
  color: #283747;
}
.c-button.-anchor.c-button--white:hover {
  background: #939ba3;
  color: #fff;
}

.c-button--animation {
  display: inline-block;
  position: relative;
  padding: 0.9375rem 1.875rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  color: transparent;
  font-size: 0.875rem;
  width: auto;
  transition: 1.2s;
  border-radius: calc(1em + 0.78125rem);
  overflow: hidden;
}
.c-button--animation:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: calc(1em + 1.5625rem);
  height: calc(1em + 1.875rem);
  margin: auto;
  background-color: var(--primary);
  border-radius: calc(1em + 0.9375rem);
  transition: 1s;
  z-index: -1;
}
.c-button--animation .bg1,
.c-button--animation .bg2 {
  content: "";
  position: absolute;
  width: 150%;
  height: 200%;
  transition: 0.8s;
  z-index: -1;
  transform: translate(0, 0) rotate(-10deg);
}
.c-button--animation .bg1 {
  top: -50%;
  left: -25%;
  background-color: var(--primary);
  opacity: 0;
}
.c-button--animation .bg2 {
  top: 150%;
  left: -25%;
  background-color: var(--white);
}
.c-button--animation.-view {
  color: var(--white);
}
.c-button--animation.-view:before {
  width: 100%;
}
.c-button--animation.-view .bg1 {
  opacity: 1;
  transition-delay: 1s;
}
.c-button--animation:hover .bg1,
.c-button--animation:hover .bg2 {
  transform: translate(0, -100%) rotate(10deg);
}
.c-button--animation:hover .text {
  opacity: 0;
  transform: translate(0, -200%);
}
.c-button--animation:hover .btn-arrow {
  top: 50%;
  transition-delay: 0.3s;
  transform: translateY(-50%);
}
.c-button--animation .text {
  display: block;
  transition: 0.3s;
}
.c-button--animation .btn-arrow {
  content: "";
  display: block;
  height: 1em;
  background-image: url("../images/icons/right-arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 200%;
  left: 0;
  right: 0;
  margin: auto;
  transition: 0.3s;
  z-index: 2;
}

.c-card {
  justify-content: center;
}

@media screen and (min-width: 576px) {
  .c-card__item {
    width: calc((100% - 1rem) / 2) !important;
  }
}
@media screen and (min-width: 768px) {
  .c-card__item {
    width: calc((100% - 6rem) / 4) !important;
  }
}

.c-card__item-inner {
  width: 100%;
  height: 100%;
  text-align: justify;
}

.c-card__body {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 0 0 0.5rem 0.5rem;
  border: 0.0625rem solid #e7e8eb;
  background: #fff;
}

.c-card__title-bg {
  padding: 1.875rem 2.1875rem 1.25rem;
}

.c-card__content {
  padding: 1.875rem 2.1875rem 2.3125rem;
  border-top: 0.0625rem solid #e7e8eb;
}

.c-card__lead {
  font-weight: 500;
}

.c-card__title {
  text-align: center;
  color: #283747 !important;
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.09rem;
}
.c-card__title + .c-card__lead {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-card__title + .c-card__lead {
    margin-top: 1.25rem;
  }
}
.c-card__title + .c-card__text {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-card__title + .c-card__text {
    margin-top: 1rem;
  }
}

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

.c-card--gray {
  background-color: #e7e8eb;
}

.c-card--color {
  background-color: #f9f0c6;
}

.c-card-img {
  gap: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .c-card-img {
    gap: 2rem;
  }
}
.c-card-img.c-flex--col1-2 .c-flex__item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-card-img.c-flex--col1-2 .c-flex__item {
    width: calc((100% - 2rem) / 2);
  }
}
.c-card-img.c-flex--col1-3 .c-flex__item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-card-img.c-flex--col1-3 .c-flex__item {
    width: calc((100% - 4rem) / 3);
  }
}
.c-card-img.c-flex--col2-4 .c-flex__item {
  width: calc((100% - 0.4375rem) / 2);
}
@media screen and (min-width: 768px) {
  .c-card-img.c-flex--col2-4 .c-flex__item {
    width: calc((100% - 6rem) / 4);
  }
}
.c-card-img .c-frame {
  border-top: none;
}

.c-card-img__item-inner {
  width: 100%;
  height: 100%;
}

.c-card-img__body .c-link {
  margin-top: 1.5rem;
}
.c-card-img__body .c-link:hover {
  text-decoration: none;
}
.c-card-img__body .c-link:hover .c-link-text::after {
  opacity: 1;
}
.c-card-img__body .c-link:hover .c-link-arrow {
  background: #939ba3;
}
.c-card-img__body .c-link:hover .c-link-arrow::before {
  color: #fff;
}
.c-card-img__body .c-link-text {
  position: relative;
  display: inline-block;
  text-align: right;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.07rem;
  color: #939ba3;
  transition: color 0.2s ease;
}
.c-card-img__body .c-link-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.125rem;
  width: 100%;
  height: 0.0625rem;
  background: currentColor;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.c-card-img__body .c-link-arrow {
  width: 3.125rem;
  height: 2.375rem;
  border-radius: 50%;
  border: 0.0625rem solid #939ba3;
  position: relative;
  background: transparent;
  transition: background-color 0.2s ease;
}
.c-card-img__body .c-link-arrow::after {
  content: none;
}
.c-card-img__body .c-link-arrow::before {
  content: "→";
  position: absolute;
  color: #939ba3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: color 0.2s ease;
}

.c-card-img__image {
  aspect-ratio: 4/3;
  object-fit: cover;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.c-card-img__body {
  padding: 1.25rem 1.5625rem 1.875rem;
  border-radius: 0 0 1rem 1rem;
}
@media screen and (min-width: 768px) {
  .c-card-img__body {
    padding-inline: 2.8125rem;
  }
}
.c-card-img__body .c-title-sub {
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .c-card-img__body .c-title-sub {
    font-size: 1.5rem;
  }
}
.c-card-img__body .c-card-img__text {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .c-card-img__body .c-card-img__text {
    font-size: 1rem;
  }
}

.c-card-img__title {
  color: #283747;
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.08rem;
}
.c-card-img__title + .c-card-img__lead {
  margin-top: 0.3125rem;
}
.c-card-img__title + .c-card-img__text {
  margin-top: 0.9375rem;
}
.c-card-img__title + .c-card-img__button {
  margin-top: 0.3125rem;
}

.c-card-img__lead {
  color: #e5a93c;
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.09rem;
}
.c-card-img__lead + .c-card-img__text {
  margin-top: 0.9375rem;
}
.c-card-img__lead + .c-card-img__button {
  margin-top: 0.3125rem;
}

.c-card-img__text {
  color: #283747;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08rem;
}
@media screen and (min-width: 768px) {
  .c-card-img__text {
    letter-spacing: 0.053125rem;
  }
}
.c-card-img__text + .c-card-img__button {
  margin-top: 1.25rem;
}

.c-card-img__bg {
  background-color: var(--white);
}
.c-card-img__bg .c-card-img__body {
  padding-block: 1.25rem;
  padding-inline: 1.875rem;
}
@media screen and (min-width: 768px) {
  .c-card-img__bg .c-card-img__body {
    padding-block: 1.25rem 1.875rem;
    padding-inline: 2.8125rem;
  }
}
.c-card-img__bg .c-link {
  margin-right: -0.625rem;
}

.c-card-img__body.c-frame {
  padding-block: 1.25rem;
  padding-inline: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .c-card-img__body.c-frame {
    padding-block: 1.25rem 1.875rem;
    padding-inline: 2.8125rem;
  }
}
.c-card-img__body.c-frame .c-link {
  margin-right: -0.625rem;
}

@media screen and (min-width: 768px) {
  .c-flex--col1-3 .c-card-img__body {
    padding-inline: 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .c-flex--col1-3 .c-card-img__bg .c-card-img__body,
  .c-flex--col1-3 .c-card-img__body.c-frame {
    padding-block: 1.25rem 1.875rem;
    padding-inline: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .c-flex--col2-4 .c-card-img__body {
    padding-inline: 2.1875rem;
  }
}
.c-flex--col2-4 .c-card-img__bg .c-card-img__body,
.c-flex--col2-4 .c-card-img__body.c-frame {
  padding: 1.25rem 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-flex--col2-4 .c-card-img__bg .c-card-img__body,
  .c-flex--col2-4 .c-card-img__body.c-frame {
    padding-block: 1.25rem 1.875rem;
    padding-inline: 2.1875rem;
  }
}
@media screen and (min-width: 768px) {
  .c-flex--col2-4 .c-card-img__bg .c-card-img__body .c-link,
  .c-flex--col2-4 .c-card-img__body.c-frame .c-link {
    margin-right: -0.625rem;
  }
}
.c-flex--col2-4 .c-card-img__title + .c-card-img__text,
.c-flex--col2-4 .c-card-img__lead + .c-card-img__text {
  margin-top: 0.9375rem;
}
.c-flex--col2-4 .c-link {
  margin-right: 0 !important;
}
@media screen and (min-width: 768px) {
  .c-flex--col2-4 .c-link {
    margin-right: -0.625rem !important;
  }
}

.c-card-icon.c-card-img {
  row-gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-card-icon.c-card-img {
    gap: 2rem;
  }
}
.c-card-icon.c-card-img .c-frame {
  border-top: solid 0.0625rem var(--border);
}

.c-card-icon__item {
  display: flex;
}
.c-card-icon__item .c-card-img__sub-title {
  color: #939ba3;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.08rem;
}
.c-card-icon__item .c-card-img__sub-title + .c-card-img__title {
  margin-top: 0.3125rem;
}
.c-card-icon__item .c-card-img__title {
  color: #283747;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.12rem;
}
.c-card-icon__item .c-card-img__title + .c-card-img__lead {
  margin-top: 1rem;
}
.c-card-icon__item .c-card-img__title + .c-card-img__text {
  margin-top: 1.5rem;
}
.c-card-icon__item .c-card-img__lead {
  font-family: "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  color: #939ba3;
  font-size: 0.75rem;
  text-align: left;
}
.c-card-icon__item .c-card-img__text {
  font-family: "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  text-align: left;
}
.c-card-icon__item .c-card-img__text + .c-card-img__lead {
  margin-top: 1rem;
}

.c-card-icon__item-inner {
  position: relative;
  padding-top: 18.6666666667vw;
  flex-grow: 1;
  display: flex;
}
@media screen and (min-width: 768px) {
  .c-card-icon__item-inner {
    padding-top: 4.375rem;
  }
}
.c-card-icon__item-inner .c-card-img__wrap {
  margin: 0 auto -17.5%;
  padding-top: 0;
  border-radius: 50%;
  position: absolute;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
  width: 32vw;
  height: 32vw;
  top: 0;
}
@media screen and (min-width: 768px) {
  .c-card-icon__item-inner .c-card-img__wrap {
    width: 8.75rem;
    height: 8.75rem;
  }
}
.c-card-icon__item-inner .c-card-img__image {
  border-radius: 50%;
  aspect-ratio: 1/1;
}
.c-card-icon__item-inner .c-card-img__body {
  padding: 17.3333333333vw 1.25rem 1.5rem;
  flex-grow: 1;
}
@media screen and (min-width: 768px) {
  .c-card-icon__item-inner .c-card-img__body {
    padding: 5.875rem 2.1875rem 5.625rem !important;
  }
}
@media screen and (min-width: 768px) {
  .c-card-icon__item-inner .c-link {
    position: absolute;
    bottom: 1.5625rem;
    right: 1.5625rem;
  }
}

.c-card-icon .c-card-img__body.c-frame .c-link,
.c-card-icon .c-card-img__bg .c-card-img__body .c-link {
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .c-card-icon .c-card-img__body.c-frame .c-link,
  .c-card-icon .c-card-img__bg .c-card-img__body .c-link {
    margin-right: -0.625rem;
  }
}

.c-card-icon.c-flex--col1-3 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-card-icon.c-flex--col1-3 {
    max-width: 55.75rem;
    margin: 0 auto;
  }
}
.c-card-icon.c-flex--col1-3 .c-flex__item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-card-icon.c-flex--col1-3 .c-flex__item {
    max-width: 17.25rem;
  }
}
.c-card-icon.c-flex--col2-4 .c-card-icon__item-inner {
  padding-top: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .c-card-icon.c-flex--col2-4 .c-card-icon__item-inner {
    padding-top: 4.375rem;
  }
}
.c-card-icon.c-flex--col2-4 .c-card-img__wrap {
  width: 26.6666666667vw;
  height: 26.6666666667vw;
}
@media screen and (min-width: 768px) {
  .c-card-icon.c-flex--col2-4 .c-card-img__wrap {
    width: 8.75rem;
    height: 8.75rem;
  }
}
.c-card-icon.c-flex--col2-4 .c-card-img__body {
  padding-block: 16vw 4.375rem;
}
@media screen and (min-width: 768px) {
  .c-card-icon.c-flex--col2-4 .c-card-img__body {
    padding: 5.875rem 2.1875rem 5.625rem !important;
  }
}
.c-card-icon.c-flex--col2-4 .c-link {
  position: absolute;
  bottom: 1.25rem;
  right: 1.125rem;
}
@media screen and (min-width: 768px) {
  .c-card-icon.c-flex--col2-4 .c-link {
    right: 1.5625rem;
  }
}

.c-card-text {
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .c-card-text {
    gap: 1.125rem;
  }
}
.c-card-text.c-flex--col1-2 .c-flex__item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-card-text.c-flex--col1-2 .c-flex__item {
    width: calc((100% - 1.125rem) / 2);
  }
}
.c-card-text.c-flex--col1-3 .c-flex__item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-card-text.c-flex--col1-3 .c-flex__item {
    width: calc((100% - 2.25rem) / 3);
  }
}
.c-card-text.c-flex--col2-4 .c-flex__item {
  min-width: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-card-text.c-flex--col2-4 .c-flex__item {
    width: calc((100% - 3.375rem) / 4);
  }
}
.c-card-text .c-frame {
  border: 0.0625rem solid #e7e8eb;
}

.c-card-text__item-inner {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  overflow: hidden;
}

.c-card-text__body {
  padding: 1.5625rem 1.5625rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 16.875rem;
  min-width: 0;
}
@media screen and (min-width: 768px) {
  .c-card-text__body {
    padding: 2.5rem;
  }
}
.c-card-text__body .c-title-sub {
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .c-card-text__body .c-title-sub {
    font-size: 1.5rem;
  }
}
.c-card-text__body .c-card-text__head {
  max-width: 6.5625rem;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .c-card-text__body .c-card-text__head {
    max-width: 10rem;
  }
}
.c-card-text__body .c-card-text__image {
  aspect-ratio: 1;
  object-fit: cover;
  height: auto;
  width: 100%;
}
.c-card-text__body .c-card-text__text {
  font-size: 1rem;
  color: #939ba3;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .c-card-text__body .c-card-text__text {
    font-size: 1rem;
    margin-bottom: 2.0625rem;
  }
}

.c-card-text__body-up {
  display: flex;
  justify-content: space-between;
  gap: 1.5625rem;
  min-width: 0;
}
@media screen and (min-width: 768px) {
  .c-card-text__body-up {
    gap: 1.0625rem;
  }
}
.c-card-text__body-up .text-box {
  min-width: 0;
  width: 100%;
  padding-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-card-text__body-up .text-box {
    padding-top: 1.25rem;
  }
}

.c-card-text__body-under {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  width: 100%;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-card-text__body-under {
    gap: 1.25rem;
  }
}

.c-card-text__text-lg {
  color: #e5a93c;
  font-family: "Montserrat", sans-serif;
  font-size: 4rem;
  font-weight: 100;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .c-card-text__text-lg {
    font-size: 6rem;
  }
}

.c-card-text__text-sm {
  color: #283747;
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1rem;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .c-card-text__text-sm {
    font-size: 1.5rem;
  }
}

.c-card-text__title {
  color: #283747;
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.1rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}
@media screen and (min-width: 768px) {
  .c-card-text__title {
    font-size: 1.5rem;
    letter-spacing: 0.12rem;
  }
}
.c-card-text__title + .c-card-text__text {
  margin-top: 0.5rem;
}

.c-card-text__text {
  color: #283747;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.c-card-img__bg {
  background-color: var(--white);
}

@media screen and (min-width: 768px) {
  .c-flex--col1-3 .c-card-text__body {
    padding-inline: 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .c-flex--col1-3 .c-card-img__bg .c-card-text__body {
    margin-bottom: 0.75rem;
  }
}
@media screen and (min-width: 768px) {
  .c-flex--col1-3 .c-card-text__body .c-card-text__head {
    max-width: 6.25rem;
  }
}
@media screen and (min-width: 768px) {
  .c-flex--col1-3 .c-card-text__text-lg {
    font-size: 4.5rem;
  }
}

.c-card-text.c-flex--col2-4 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media screen and (min-width: 768px) {
  .c-card-text.c-flex--col2-4 {
    display: flex;
  }
}
.c-card-text.c-flex--col2-4 .c-flex__item {
  min-width: 0;
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-card-text.c-flex--col2-4 .c-flex__item {
    width: calc((100% - 3.375rem) / 4);
  }
}
.c-card-text.c-flex--col2-4 .c-card-text__body {
  min-width: 0;
}
@media screen and (min-width: 768px) {
  .c-card-text.c-flex--col2-4 .c-card-text__body {
    padding-inline: 2.1875rem;
  }
}
.c-card-text.c-flex--col2-4 .c-card-img__bg .c-card-text__body,
.c-card-text.c-flex--col2-4 .c-card-text__body.c-frame {
  padding: 2.5rem 1.25rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-card-text.c-flex--col2-4 .c-card-img__bg .c-card-text__body,
  .c-card-text.c-flex--col2-4 .c-card-text__body.c-frame {
    padding: 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .c-card-text.c-flex--col2-4 .c-card-img__bg .c-card-text__body {
    margin-bottom: 0.5625rem;
  }
}
.c-card-text.c-flex--col2-4 .c-card-text__body-up {
  min-width: 0;
}
.c-card-text.c-flex--col2-4 .text-box {
  min-width: 0;
  width: 100%;
}
.c-card-text.c-flex--col2-4 .c-card-text__body-under {
  gap: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .c-card-text.c-flex--col2-4 .c-card-text__body-under {
    gap: 0.625rem;
  }
}
.c-card-text.c-flex--col2-4 .c-card-text__text-lg {
  font-size: 3rem;
}
@media screen and (min-width: 768px) {
  .c-card-text.c-flex--col2-4 .c-card-text__text-lg {
    font-size: 4.5rem;
  }
}
@media screen and (min-width: 768px) {
  .c-card-text.c-flex--col2-4 .c-card-text__text-sm {
    font-size: 1.25rem;
  }
}

.c-chart__item {
  display: grid;
  grid-template-columns: 0.75rem 1fr;
  grid-template-rows: auto auto;
}
@media screen and (min-width: 768px) {
  .c-chart__item {
    grid-template-columns: 14.5% auto 84.5%;
    grid-template-rows: 1fr;
  }
}
.c-chart__item:last-of-type .c-chart__border {
  height: calc(100% - 1.875rem);
}
.c-chart__item:first-child .c-chart__cont {
  padding-top: 0.4375rem;
}
.c-chart__item:last-child .c-chart__cont {
  padding-bottom: 0;
}

.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: 2;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 2;
  }
}

.c-chart__point {
  width: 0.75rem;
  height: 0.75rem;
  margin-top: 0.625rem;
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  .c-chart__point {
    margin-top: 1.125rem;
    position: relative;
    left: unset;
    transform: unset;
  }
}

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

.c-chart__border {
  width: 0.125rem;
  height: 100%;
  position: absolute;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  background-image: radial-gradient(circle, #939ba3, transparent 0.0625rem);
  background-size: 0.125rem 0.375rem;
  background-repeat: repeat-y;
  background-position: center top;
}
@media screen and (min-width: 768px) {
  .c-chart__border {
    top: 1.875rem;
  }
}

.c-chart__year {
  grid-row-start: 1;
  grid-row-end: 2;
  display: flex;
  align-items: flex-end;
  font-weight: 500;
  line-height: 1;
  color: #939ba3;
  padding-left: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-chart__year {
    grid-column-start: 1;
    grid-column-end: 2;
    align-items: flex-start;
    padding-left: 0;
    justify-content: end;
  }
}

.c-chart__year-title {
  margin-right: 0.9375rem;
  font-size: 1.75rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .c-chart__year-title {
    margin-right: auto;
    font-size: 2.5rem;
    letter-spacing: 0.2rem;
  }
}

.c-chart__year-sub-title {
  font-size: 1.25rem;
  color: #939ba3;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  letter-spacing: 0.12rem;
  margin-top: 0.375rem;
  margin-left: 4.8125rem;
}
@media screen and (min-width: 768px) {
  .c-chart__year-sub-title {
    font-size: 1.5rem;
    margin-top: 0.625rem;
    width: 4rem;
    text-align: center;
    margin-left: 0;
  }
}

.c-chart__year-title + .c-chart__year-sub-title {
  margin-top: 0;
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .c-chart__year-title + .c-chart__year-sub-title {
    margin-top: 0.625rem;
  }
}

.c-chart__cont {
  grid-row-start: 2;
  grid-row-end: 3;
  padding-block: 2.5rem;
  padding-left: 0.9375rem;
}
@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;
    padding-block: 0.625rem 1.25rem;
    padding-left: 3.375rem;
  }
}

.c-chart__title {
  line-height: 1.5;
  color: #283747;
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.09rem;
}
.c-chart__title + .c-chart__text {
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .c-chart__title + .c-chart__text {
    margin-top: 0.9375rem;
  }
}

.c-chart__image-list {
  margin-top: 0.9375rem;
  display: flex;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: minmax(0, 19.25rem);
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-chart__image-list {
    margin-top: 1.875rem;
    gap: 1.125rem;
  }
}

.c-chart__image-list.col-2 {
  grid-template-columns: repeat(2, minmax(0, 19.25rem));
}

.c-chart__image-list.col-3 {
  grid-template-columns: repeat(2, minmax(0, 19.25rem));
}
@media screen and (min-width: 768px) {
  .c-chart__image-list.col-3 {
    grid-template-columns: repeat(3, minmax(0, 19.25rem));
  }
}

.c-chart__image-item {
  border-radius: 0.5rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-chart__image-item {
    border-radius: 1rem;
  }
}

.c-conversion {
  background-color: #fff;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
}
.c-conversion .c-title-bg-loop {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: visible;
  pointer-events: none;
}
.c-conversion .c-title-bg-loop__loop {
  position: absolute;
  left: 50%;
  top: auto;
  bottom: 0;
  z-index: 1;
  display: flex;
  transform: translate(-50%, 0);
  white-space: nowrap;
}
.c-conversion .c-title-bg-loop__loop .title {
  margin-right: 1.5ch;
  line-height: 1;
}

.c-conversion__bg-image {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  filter: blur(4px);
  transform: scale(1.05);
}

.c-conversion__bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

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

.c-conversion__title {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.18rem;
}
.c-conversion__title--black {
  color: #283747;
}
.c-conversion__title--white {
  color: #fff;
}

.c-conversion__text {
  font-size: 1.125rem;
  margin-top: 0.5rem;
  color: #e5a93c;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.09rem;
}

.c-conversion__btn-area {
  margin-top: 0.9375rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem;
  max-width: 37.25rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .c-conversion__btn-area {
    margin-top: 3rem;
    flex-wrap: nowrap;
    gap: 1rem;
  }
}

.c-conversion__button {
  width: 100%;
  border-radius: 6.25rem;
  border: 0.0625rem solid #e7e8eb;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .c-conversion__button {
    padding: 1.3125rem;
  }
}
.c-conversion__button::after {
  content: none;
}
.c-conversion__button--gray {
  background: transparent;
  color: #939ba3;
}
.c-conversion__button--gray:hover {
  background: #939ba3 !important;
  color: #fff;
}
.c-conversion__button--gray:hover .c-link-arrow {
  background: #939ba3 !important;
  border-color: #fff;
}
.c-conversion__button--gray:hover .c-link-arrow::before {
  color: #fff;
}
.c-conversion__button--gray .c-link-arrow {
  border-color: #939ba3;
}
.c-conversion__button--gray .c-link-arrow::before {
  color: #939ba3;
}
.c-conversion__button--transparent {
  background: transparent;
  border: 0.0625rem solid rgba(231, 232, 235, 0.7);
  color: #fff;
}
.c-conversion__button--transparent:hover {
  background: rgba(74, 81, 90, 0.9) !important;
  color: #fff;
}
.c-conversion__button--transparent:hover .c-link-arrow {
  background: rgba(74, 81, 90, 0.9) !important;
}
.c-conversion__button--transparent .c-link-arrow {
  border-color: #fff;
}
.c-conversion__button--transparent .c-link-arrow::before {
  color: #fff;
}
.c-conversion__button.c-link {
  margin-top: 0;
  justify-content: end !important;
  gap: 3.875rem;
  width: 18.125rem;
  min-width: auto;
  margin-inline: auto;
}
.c-conversion__button.c-link:hover {
  text-decoration: none;
}
.c-conversion__button.c-link .c-link-arrow {
  width: 3.125rem;
  height: 2.375rem;
  border-radius: 50%;
  position: relative;
  background: transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.c-conversion__button.c-link .c-link-arrow::after {
  content: none;
}
.c-conversion__button.c-link .c-link-arrow::before {
  content: "→";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: color 0.2s ease;
}

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

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

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

.c-flex--gap-lg {
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .c-flex--gap-lg {
    gap: 2rem;
  }
}

.c-flex--col1-1 .c-flex__item {
  width: 100%;
}

.c-flex--col1-2.c-flex--gap-sm .c-flex__item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-flex--col1-2.c-flex--gap-sm .c-flex__item {
    width: calc((100% - 1.25rem) / 2);
  }
}
.c-flex--col1-2.c-flex--gap-lg .c-flex__item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-flex--col1-2.c-flex--gap-lg .c-flex__item {
    width: calc((100% - 2rem) / 2);
  }
}

.c-flex--col1-3.c-flex--gap-sm .c-flex__item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-flex--col1-3.c-flex--gap-sm .c-flex__item {
    width: calc((100% - 2.5rem) / 3);
  }
}
.c-flex--col1-3.c-flex--gap-lg .c-flex__item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-flex--col1-3.c-flex--gap-lg .c-flex__item {
    width: calc((100% - 4rem) / 3);
  }
}

.c-flex--col1-4.c-flex--gap-sm .c-flex__item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-flex--col1-4.c-flex--gap-sm .c-flex__item {
    width: calc((100% - 3.75rem) / 4);
  }
}
.c-flex--col1-4.c-flex--gap-lg .c-flex__item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-flex--col1-4.c-flex--gap-lg .c-flex__item {
    width: calc((100% - 6rem) / 4);
  }
}

.c-flex--col2-4.c-flex--gap-sm .c-flex__item {
  width: calc((100% - 0.625rem) / 2);
}
@media screen and (min-width: 768px) {
  .c-flex--col2-4.c-flex--gap-sm .c-flex__item {
    width: calc((100% - 3.75rem) / 4);
  }
}
.c-flex--col2-4.c-flex--gap-lg .c-flex__item {
  width: calc((100% - 1rem) / 2);
}
@media screen and (min-width: 768px) {
  .c-flex--col2-4.c-flex--gap-lg .c-flex__item {
    width: calc((100% - 6rem) / 4);
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 0 4%;
}

.c-header__logo {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-decoration: none;
  z-index: 1;
}
.c-header__logo-image {
  width: 8.5rem;
  height: 2.0625rem;
}
.c-header__logo-text {
  flex-shrink: 0;
  color: var(--surface);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.3;
  font-size: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-header__logo-text {
    font-size: 1rem;
  }
}

.c-header__nav {
  grid-area: nav;
  position: absolute;
  top: 0%;
  left: 100%;
  background-image: url(../images/front/mv-sp.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100dvh;
  transition: 0.3s;
  padding: 6rem 5% 0;
}
@media screen and (min-width: 768px) {
  .c-header__nav {
    position: relative;
    top: unset;
    left: unset;
    background-image: none;
    width: auto;
    height: 100%;
    padding: unset;
  }
}
.c-header__nav:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--primary);
  opacity: 0.8;
  backdrop-filter: blur(6.25rem);
}
@media screen and (min-width: 768px) {
  .c-header__nav:before {
    display: none;
  }
}
.c-header__nav.is-open {
  left: 0;
}
.c-header__nav-list {
  display: flex;
}
@media screen and (max-width: 767px) {
  .c-header__nav-list {
    flex-direction: column;
    gap: 2rem;
    max-height: calc(100dvh - 4rem);
    overflow-y: auto;
    padding-bottom: 8rem;
  }
}
@media screen and (min-width: 768px) {
  .c-header__nav-list {
    flex-direction: row;
    justify-content: flex-end;
    height: 100%;
  }
}

.c-header__nav-item {
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-header__nav-item:hover .c-header__sub-list {
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (max-width: 767px) {
  .c-header__nav-item.-hasChild .c-header__nav-ttl {
    cursor: pointer;
    gap: 0.1em;
    width: 100%;
  }
  .c-header__nav-item.-hasChild .c-header__nav-ttl:after {
    transition: transform 0.3s;
  }
  .c-header__nav-item.-hasChild.is-open .c-header__nav-ttl:after {
    transform: rotate(135deg) translate(-50%, -80%) skew(5deg, 5deg);
  }
  .c-header__nav-item.-hasChild .c-header__sub-list {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.3s, opacity 0.3s, visibility 0.3s, margin-top 0.3s;
  }
  .c-header__nav-item.-hasChild.is-open .c-header__sub-list {
    max-height: 31.25rem;
    opacity: 1;
    visibility: visible;
    margin-top: 1.5rem;
  }
}
.c-header__nav-item.-hasChild .c-header__nav-ttl:after {
  content: "";
  display: inline-block;
  height: 0.45em;
  width: 0.45em;
  border-bottom: 0.125rem solid var(--surface);
  border-left: 0.125rem solid var(--surface);
  transform: rotate(-45deg) translate(100%, 80%) skew(5deg, 5deg);
}

.c-header__nav-ttl {
  display: flex;
  align-items: center;
  text-align: center;
  font-size: clamp(0.875rem, 0.7724rem + 0.5128vw, 1.125rem);
  font-weight: 500;
  border: none;
  text-decoration: none;
  color: var(--surface);
}
@media screen and (min-width: 768px) {
  .c-header__nav-ttl {
    height: 100%;
    justify-content: center;
    padding: 0 1.25rem;
    font-size: 1.0416666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .c-header__nav-ttl {
    min-width: 6.25rem;
    font-size: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .c-header__nav-ttl.-btn {
    background-color: rgba(40, 55, 71, 0.25);
    backdrop-filter: blur(1rem);
    min-width: 8.3333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .c-header__nav-ttl.-btn {
    min-width: 10rem;
  }
}
@media screen and (min-width: 768px) {
  .c-header__nav-ttl.-btn2 {
    background-color: rgba(40, 55, 71, 0.5);
    backdrop-filter: blur(1rem);
    min-width: 8.3333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .c-header__nav-ttl.-btn2 {
    min-width: 10rem;
  }
}

.c-header__sub-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-header__sub-list {
    gap: 0.625rem;
    width: max-content;
    padding: 1.25rem 0.9375rem;
    border-radius: 1rem;
    border: 0.0625rem solid var(--border);
    background-color: var(--surface);
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translateX(-50%);
    transition: visibility 0.3s, opacity 0.3s;
    z-index: 10;
    text-align: center;
    filter: drop-shadow(0px 0.1875rem 0.1875rem rgba(0, 0, 0, 0.1));
  }
}

@media screen and (min-width: 768px) {
  .c-header__sub-item {
    padding-inline: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .c-header__sub-item:not(:first-child) {
    padding-top: 0.625rem;
    border-top: 0.0625rem solid var(--border);
  }
}
.c-header__sub-item:last-child {
  margin-bottom: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-header__sub-item:last-child {
    margin-bottom: 0;
  }
}

.c-header__sub-ttl {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  color: var(--surface);
}
@media screen and (min-width: 768px) {
  .c-header__sub-ttl {
    display: inline-block;
    color: var(--primary);
  }
}
@media screen and (max-width: 767px) {
  .c-header__sub-ttl.-list {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
  }
  .c-header__sub-ttl.-list:before {
    content: "";
    width: 0.625rem;
    height: 0.0625rem;
    background-color: var(--surface);
  }
}
.c-header__sub-ttl.-isCurrent {
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
}

.c-header__info-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 3rem;
  row-gap: 1.5rem;
}

.c-header__info-ttl {
  color: var(--surface);
  text-decoration: none;
  font-size: 0.75rem;
}

.c-header__info-dyd {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--surface);
  margin-top: 1.5rem;
}

.c-header__hamburger {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  width: 6rem;
  height: 100%;
  padding: 1.25rem 1.5rem;
  position: relative;
  cursor: pointer;
  z-index: 1;
}
@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: var(--primary);
}
.c-header__hamburger span {
  display: block;
  width: 100%;
  height: 0.125rem;
  background: var(--surface);
  transition: 0.3s;
  z-index: 1;
}
.c-header__hamburger span:nth-child(2) {
  width: 50%;
  margin-left: auto;
}
.c-header__hamburger.is-active span:first-child {
  transform: rotate(25deg) translate3D(0.4375rem, 0.4375rem, 0);
}
.c-header__hamburger.is-active span:last-child {
  transform: rotate(-25deg) translate3D(0.4375rem, -0.5rem, 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%;
}

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

.c-image--text {
  display: inline-block;
  margin-top: 0.625rem;
  /* color: var(--primary); */
  color: #283747;
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08rem;
}
@media screen and (min-width: 768px) {
  .c-image--text {
    margin-top: 1rem;
    font-size: 1rem;
  }
}

.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%;
  margin: 0.625rem auto 0;
  color: #283747;
  font-family: "Montserrat", sans-serif;
  line-height: 1.8;
  letter-spacing: 0.08rem;
}
@media screen and (min-width: 768px) {
  .c-image-cont__text {
    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--normal picture {
  width: fit-content;
  display: block;
  margin: 0 auto;
}

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

.c-image-col__inner .c-image--text {
  line-height: 1.6;
  letter-spacing: 0.0625rem;
}
@media screen and (min-width: 768px) {
  .c-image-col__inner .c-image--text {
    line-height: 1.8;
  }
}

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

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

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

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

.c-interview {
  display: flex;
  max-width: 56.25rem;
  margin-inline: auto;
}
.c-interview + .c-interview {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .c-interview + .c-interview {
    margin-top: 2rem;
  }
}

.c-interview__avatar {
  width: 3.75rem;
}
@media screen and (min-width: 768px) {
  .c-interview__avatar {
    width: 12.5rem;
  }
}

.c-interview__img {
  border-radius: 50%;
  aspect-ratio: 1/1;
  width: 100%;
  object-fit: cover;
}

.c-interview__tag {
  color: #939ba3;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.08rem;
}

.c-interview__title {
  margin-top: 0.3125rem;
  color: #283747;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.16rem;
}
.c-interview__title + .c-interview__lead {
  margin-top: 0.3125rem;
}
.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__lead {
  font-family: "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.09rem;
}
.c-interview__lead + .c-interview__text {
  margin-top: 1.5rem;
}

.c-interview__balloon {
  width: 100%;
  max-width: 39.0625rem;
  position: relative;
  background: inherit;
  /*   padding: rem(20); */
  margin-left: 1.25rem;
  text-align: justify;
  /* border: rem(1) solid var(--border);
  border-radius: rem(16); */
  flex: 1;
}
@media screen and (min-width: 768px) {
  .c-interview__balloon {
    width: auto;
    /*  padding: rem(40); */
    margin-left: 4.6875rem;
  }
}

/* .c-interview__balloon::before,
.c-interview__balloon::after {
  @include ba;
  position: absolute;
  top: rem(35);
  left: 0;
  border-style: solid;

  @include mq {
    top: rem(70);
  }
} */
.c-interview__balloon::before {
  border-width: 0 14px 14px 0;
  border-color: transparent var(--border) transparent transparent;
  translate: -100% -50%;
}
@media screen and (min-width: 768px) {
  .c-interview__balloon::before {
    border-width: 0 1.25rem 1.25rem 0;
  }
}

.c-interview__balloon::after {
  border-width: 0 11.6px 11.6px 0;
  border-color: transparent #ffffff transparent transparent;
  translate: -100% calc(-50% - 0.2px);
}
@media screen and (min-width: 768px) {
  .c-interview__balloon::after {
    border-width: 0 1.125rem 1.125rem 0;
    left: 1px;
  }
}
@media screen and (min-width: 811px) {
  .c-interview__balloon::after {
    left: 0;
  }
}

.c-interview--reverse {
  flex-direction: row-reverse;
}
.c-interview--reverse .c-interview__balloon {
  margin-left: 0;
  margin-right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-interview--reverse .c-interview__balloon {
    margin-left: 0;
    margin-right: 4.6875rem;
  }
}
.c-interview--reverse .c-interview__balloon::before,
.c-interview--reverse .c-interview__balloon::after {
  left: unset;
  right: 0;
}
.c-interview--reverse .c-interview__balloon::before {
  border-width: 0 0 14px 14px;
  border-color: transparent transparent transparent var(--border);
  translate: 100% -50%;
}
@media screen and (min-width: 768px) {
  .c-interview--reverse .c-interview__balloon::before {
    border-width: 0 0 1.25rem 1.25rem;
  }
}
.c-interview--reverse .c-interview__balloon::after {
  border-width: 0 0 11.6px 11.6px;
  border-color: transparent transparent transparent #ffffff;
  translate: 100% calc(-50% - 0.2px);
}
@media screen and (min-width: 768px) {
  .c-interview--reverse .c-interview__balloon::after {
    border-width: 0 0 1.125rem 1.125rem;
    left: unset;
    right: 1px;
  }
}
@media screen and (min-width: 811px) {
  .c-interview--reverse .c-interview__balloon::after {
    left: unset;
    right: 0;
  }
}

.c-link {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  width: fit-content;
  margin-top: 1.25rem;
  margin-left: auto;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-link {
    margin-top: 2rem;
  }
}
.c-link:hover {
  text-decoration: underline;
}
.c-link:hover .c-link-arrow {
  background-color: #fff;
}
.c-link:hover .c-link-arrow::after {
  border-color: var(--brand);
}

.c-link-arrow {
  width: 2rem;
  height: 2rem;
  background-color: var(--brand);
  border: solid 0.0625rem var(--brand);
  border-radius: 50%;
  position: relative;
  transition: background-color 0.3s;
}
.c-link-arrow::after {
  content: "";
  display: inline-block;
  width: 0.4375rem;
  height: 0.4375rem;
  border-top: solid 0.125rem #fff;
  border-right: solid 0.125rem #fff;
  position: absolute;
  top: 50%;
  left: 0.6875rem;
  transform: translateY(-50%) rotate(45deg);
  transition: boder-color 0.3s;
}

.c-arrow-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  width: fit-content;
  font-weight: 500;
  color: var(--secondary);
  transition: 0.3s;
}
.c-arrow-link:hover .c-arrow-link__arrow {
  background-color: var(--secondary);
}
.c-arrow-link:hover .c-arrow-link__arrow:before {
  filter: invert(99%) sepia(2%) saturate(1629%) hue-rotate(179deg) brightness(98%) contrast(87%);
}
.c-arrow-link.-back .c-arrow-link__arrow:before {
  transform: translate(-50%, -50%) rotate(180deg);
}
.c-arrow-link.-button {
  border-radius: 999px;
  text-decoration: none;
  border: 0.0625rem solid var(--border);
  background-color: var(--white);
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--primary);
  justify-content: space-between;
  padding: 1.25rem 1.25rem 1.25rem 2.5rem;
}
@media screen and (min-width: 768px) {
  .c-arrow-link.-button {
    padding: 1.25rem 1.25rem 1.25rem 3.125rem;
  }
}

.c-arrow-link__arrow {
  position: relative;
  display: block;
  width: 3.125rem;
  height: 2.375rem;
  border: 0.0625rem solid var(--secondary);
  border-radius: 100%;
  transition: 0.3s;
  flex-shrink: 0;
}
.c-arrow-link__arrow:before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background-image: url("../images/icons/right-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: invert(69%) sepia(22%) saturate(130%) hue-rotate(169deg) brightness(86%) contrast(86%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}

.c-list-box__wrapper {
  border-radius: 1rem;
  overflow: hidden;
}

.c-list-box {
  font-family: "Montserrat", sans-serif;
}
.c-list-box + .c-list-box {
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-list-box {
    display: flex;
    flex-wrap: wrap;
    border-bottom: solid 0.0625rem var(--border);
  }
  .c-list-box:last-child {
    border-bottom: none;
  }
  .c-list-box + .c-list-box {
    margin-top: 0;
  }
}

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

.c-list-box__title {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .c-list-box__title {
    gap: 1.5rem;
    width: 40%;
  }
}

.c-list-box__img {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  object-position: center;
}
@media screen and (min-width: 768px) {
  .c-list-box__img {
    width: 6.25rem;
    height: 6.25rem;
  }
}

.c-list-box__text {
  flex: 1;
  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;
  font-size: 0.875rem;
  border-bottom: solid 0.0625rem var(--border);
  padding-top: 0;
}
@media screen and (min-width: 768px) {
  .c-list-box__cont {
    width: 60%;
    font-size: 1rem;
    padding: 1.875rem 1.875rem 1.875rem 0;
    border-bottom: none;
  }
}

.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;
    align-items: flex-start;
    column-gap: 2.5rem;
  }
}
.c-list-image .c-link {
  margin-top: 1.875rem;
}
.c-list-image .c-link:hover {
  text-decoration: none;
}
.c-list-image .c-link:hover .c-link-text::after {
  opacity: 1;
}
.c-list-image .c-link:hover .c-link-arrow {
  background: #939ba3;
}
.c-list-image .c-link:hover .c-link-arrow::before {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .c-list-image .c-link {
    position: relative;
  }
}
.c-list-image .c-link-text {
  position: relative;
  display: inline-block;
  text-align: right;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.07rem;
  color: #939ba3;
  transition: color 0.2s ease;
}
.c-list-image .c-link-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.125rem;
  width: 100%;
  height: 0.0625rem;
  background: currentColor;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.c-list-image .c-link-arrow {
  width: 3.125rem;
  height: 2.375rem;
  border-radius: 50%;
  border: 0.0625rem solid #939ba3;
  position: relative;
  background: transparent;
  transition: background-color 0.2s ease;
}
.c-list-image .c-link-arrow::after {
  content: none;
}
.c-list-image .c-link-arrow::before {
  content: "→";
  position: absolute;
  color: #939ba3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: color 0.2s ease;
}

.c-list-image__img-wrap {
  border-radius: 1rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-list-image__img-wrap {
    width: 42%;
    max-width: 31.25rem;
  }
}

.c-list-image .c-list-image__img {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (min-width: 768px) {
  .c-list-image__body {
    flex: 1;
  }
}

.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.3125rem;
}
.c-list-image__title + .c-list-image__text {
  margin-top: 0.9375rem;
}

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

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

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

.c-list-image-col__wrapper {
  column-gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-list-image-col__wrapper {
    gap: 3.75rem;
  }
}
.c-list-image-col__wrapper .c-list-image {
  position: relative;
  padding-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .c-list-image-col__wrapper .c-list-image {
    padding-bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  .c-list-image--col2.c-list-image {
    column-gap: 1.875rem;
  }
}
.c-list-image--col2 .c-list-image__img-wrap {
  border-radius: 1rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-list-image--col2 .c-list-image__img-wrap {
    width: 39%;
    max-width: 13.75rem;
  }
}
.c-list-image--col2 .c-list-image__img {
  aspect-ratio: 1/1;
}
.c-list-image--col2 .c-list-image__title {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .c-list-image--col2 .c-list-image__title {
    font-size: 1.5rem;
  }
}
.c-list-image--col2 .c-list-image__title + .c-list-image__text {
  margin-top: 0.3125rem;
}
.c-list-image--col2 .c-list-image__lead {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .c-list-image--col2 .c-list-image__lead {
    font-size: 1.125rem !important;
  }
}
.c-list-image--col2 .c-list-image__lead + .c-list-image__text {
  margin-top: 0.9375rem;
}
.c-list-image--col2 .c-link {
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-list-image--col2 .c-link {
    margin-top: 1.875rem;
  }
}

/* ==========================================================================
  c-media
　└共通（共通レイアウト、メディアパーツ／media-parts）
　└画像テキストセット - 左右／media
　└画像テキストセット - 左右（飾りあり）／media-bg
　└動画テキストセット - 左右／media-video
========================================================================== */
.c-media {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-media {
    flex-direction: row;
    gap: 4.375rem;
  }
}
.c-media .c-button {
  border-radius: 6.25rem;
  border: 0.0625rem solid #e7e8eb;
  background: #f7f9fa;
  padding: 1rem 1.0625rem;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  width: 15.625rem;
}
.c-media .c-button:hover {
  text-decoration: none;
  border: 0.0625rem solid #e7e8eb;
  background: #939ba3;
}
.c-media .c-button:hover::after {
  content: none;
}
.c-media .c-button:hover .c-link-text {
  color: #fff;
}
.c-media .c-button:hover .c-link-arrow {
  background: #939ba3;
  border: 0.0625rem solid #fff;
}
.c-media .c-button:hover .c-link-arrow::before {
  color: #fff;
}
.c-media .c-button .c-link-text {
  position: relative;
  display: inline-block;
  text-align: right;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.07rem;
  color: #939ba3;
  transition: color 0.2s ease;
  padding-right: 3.125rem;
  margin-left: auto;
}
.c-media .c-button .c-link-arrow {
  width: 2.1875rem;
  height: 1.6875rem;
  border-radius: 50%;
  border: 0.0625rem solid #939ba3;
  position: relative;
  background: transparent;
  transition: background-color 0.2s ease;
}
.c-media .c-button .c-link-arrow::after {
  content: none;
}
.c-media .c-button .c-link-arrow::before {
  content: "→";
  position: absolute;
  color: #939ba3;
  font-size: 0.625rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: color 0.2s ease;
}

.c-media__button::after {
  content: none;
}

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

.l-inner--lg .c-media__wrap {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-inner--lg .c-media__wrap {
    width: 54%;
    max-width: 45rem;
  }
}

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

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

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

.c-media .swiper-pagination-bullet {
  background: var(--grey) !important;
  opacity: 1 !important;
}

.c-media .swiper-pagination-bullet-active {
  background: var(--brand) !important;
}

.c-media__title {
  color: #283747;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.16rem;
}
@media screen and (min-width: 768px) {
  .c-media__title {
    font-size: 2rem;
  }
}
.c-media__title + .c-media__sub-title {
  margin-top: 0.3125rem;
}
.c-media__title + .c-media__text {
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .c-media__title + .c-media__text {
    margin-top: 2.5rem;
  }
}
.c-media__title + .c-media__button-area {
  margin-top: 1.875rem;
}

.c-media__sub-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.12rem;
}
@media screen and (min-width: 768px) {
  .c-media__sub-title {
    font-size: 1.5rem;
  }
}
.c-media__sub-title + .c-media__text {
  margin-top: 2.5rem;
}
.c-media__sub-title + .c-media__button-area {
  margin-top: 1.875rem;
}

.c-media__text {
  color: #283747;
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08rem;
}
@media screen and (min-width: 768px) {
  .c-media__text {
    font-size: 1rem;
  }
}
.c-media__text + .c-media__button-area {
  margin-top: 1.875rem;
}

.c-text.c-media__text {
  font-size: 1rem;
}
.c-text.c-media__text strong {
  letter-spacing: 0.014375rem;
}
@media screen and (min-width: 768px) {
  .c-text.c-media__text {
    letter-spacing: 0.0625rem;
  }
}

.c-media__button-area {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 1.0625rem;
  row-gap: 0.3125rem;
  text-align: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .c-media__button-area {
    column-gap: 1rem;
    row-gap: 0.625rem;
    text-align: left;
    justify-content: inherit;
  }
}

@media screen and (min-width: 768px) {
  .c-media__outer .l-inner--lg {
    width: 100%;
  }
}

.c-media-bg {
  position: relative;
  overflow: hidden;
}
.c-media-bg::before {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-media-bg::before {
    content: "";
    display: inline-block;
    position: absolute;
    /* background-color: var(--background); */
    /* background: var(--background) center center / cover no-repeat; */
    border-radius: 62.5rem 0 0 62.5rem;
    border: 0.0625rem solid #e7e8eb;
    background: #fff;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    opacity: 1;
  }
}
@media screen and (min-width: 768px) {
  .c-media-bg .l-inner--lg {
    width: 100%;
  }
}
.c-media-bg .c-media {
  align-items: center;
}
.c-media-bg .c-media .c-button .c-link-text {
  color: #283747;
  transition: color 0.2s ease;
}
.c-media-bg .c-media .c-button:hover .c-link-text {
  color: #fff;
}
.c-media-bg {
  /* .c-link-arrow {
    border: rem(1) solid #283747 !important;

    &::before {
      color: #283747 !important;
    }
  } */
}

.c-media-bg__inner {
  position: relative;
  z-index: 3;
  max-width: 100%;
}

.c-media-bg .c-media__cont {
  flex: unset;
  padding: 0;
  padding-bottom: 2.5rem;
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .c-media-bg .c-media__cont {
    width: 50%;
    max-width: 35rem;
    padding: 6.1875rem 0;
  }
}
.c-media-bg .c-media__cont::before {
  content: "";
  display: inline-block;
  position: absolute;
  background-color: var(--background);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: calc(100% + 2.5rem);
  opacity: 0.2;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .c-media-bg .c-media__cont::before {
    display: none;
  }
}

.c-media-bg.c-media--reverse::before {
  right: unset;
  left: 0;
}
@media screen and (min-width: 768px) {
  .c-media-bg.c-media--reverse::before {
    border-radius: 0 62.5rem 62.5rem 0;
  }
}
@media screen and (min-width: 768px) {
  .c-media-bg.c-media--reverse .c-media {
    flex-direction: row-reverse;
  }
}

@media screen and (min-width: 768px) {
  .c-media-video .l-inner--lg {
    width: 100%;
  }
}

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

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

@media screen and (min-width: 768px) {
  .c-media-full .c-media__wrap {
    width: 53%;
    max-width: 62.8125rem;
  }
}
.c-media-full .c-media__cont {
  flex: unset;
  padding: 0 1.125rem;
}
@media screen and (min-width: 768px) {
  .c-media-full .c-media__cont {
    width: 39%;
    max-width: 35rem;
    padding: 0;
  }
}

.c-media-full__image .c-image {
  aspect-ratio: 16/9;
  object-fit: cover;
}

.c-media-full.-alpha .c-media {
  gap: 0;
}
.c-media-full.-alpha .c-media__cont {
  position: relative;
  margin-top: -1.25rem;
}
@media screen and (min-width: 768px) {
  .c-media-full.-alpha .c-media__cont {
    width: 100%;
    max-width: 43.75rem;
    margin-top: 5rem;
    margin-left: -4.375rem;
  }
}
.c-media-full.-alpha .c-media__cont-inner {
  background-color: var(--white);
  padding: 1.875rem;
  border: solid 0.0625rem #e7e8eb;
  border-radius: 1rem;
}
@media screen and (min-width: 768px) {
  .c-media-full.-alpha .c-media__cont-inner {
    padding: 5rem;
  }
}
@media screen and (min-width: 768px) {
  .c-media-full.-alpha .c-media.c-media--reverse .c-media__cont {
    margin-right: -4.375rem;
  }
}
.c-media-full.-alpha .c-button--sub {
  background: #fff;
}

.c-modal-vertical {
  margin: 0 auto;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-modal-vertical {
    padding-inline: 0;
  }
}
.c-modal-vertical .c-card-img__image {
  aspect-ratio: 16/9;
  padding-inline: 0;
}
.c-modal-vertical .c-card-img__title {
  color: #283747;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.16rem;
}
.c-modal-vertical .c-card-img__lead + .c-card-img__text {
  margin-top: 2.5rem;
}
.c-modal-vertical .c-card-img__body {
  padding-block: 1.25rem 0;
  padding-inline: 0;
}

.c-modal-vertical.c-flex--col1-1 {
  padding-inline: 0;
}
.c-modal-vertical.c-flex--col1-1 .c-card-img__item-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .c-modal-vertical.c-flex--col1-1 .c-card-img__item-inner {
    flex-direction: unset;
    gap: 4.375rem;
  }
}
.c-modal-vertical.c-flex--col1-1 .c-card-img__head {
  width: 100%;
  height: auto;
  border-radius: 0 1rem 1rem 0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-modal-vertical.c-flex--col1-1 .c-card-img__head {
    width: 52.35%;
  }
}
.c-modal-vertical.c-flex--col1-1 .c-card-img__body {
  flex: 1;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-modal-vertical.c-flex--col1-1 .c-card-img__body {
    padding-inline: 0;
  }
}
@media screen and (min-width: 768px) {
  .c-modal-vertical.c-flex--col1-1 .c-card-img__body-inner {
    max-width: 35rem;
  }
}
.c-modal-vertical.c-flex--col1-1 .c-card-img__lead {
  font-size: 1.25rem;
  color: #e5a93c;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.12rem;
}
@media screen and (min-width: 768px) {
  .c-modal-vertical.c-flex--col1-1 .c-card-img__lead {
    font-size: 1.5rem;
  }
}

.c-modal-vertical.c-flex--col1-2 {
  max-width: 84.375rem;
}
.c-modal-vertical.c-flex--col1-2 .c-card-img__head {
  border-radius: 0.625rem;
  overflow: hidden;
}
.c-modal-vertical.c-flex--col1-2 .c-card-img__lead + .c-card-img__text {
  margin-top: 0.9375rem;
}
.c-modal-vertical.c-flex--col1-2 .c-modal__button {
  margin-inline: auto;
}

.c-modal-vertical.c-flex--col1-3 {
  max-width: 75rem;
}
.c-modal-vertical.c-flex--col1-3 .c-card-img__head {
  border-radius: 0.625rem;
  overflow: hidden;
}
.c-modal-vertical.c-flex--col1-3 .c-card-img__lead + .c-card-img__text {
  margin-top: 0.9375rem;
}
.c-modal-vertical.c-flex--col1-3 .c-modal__button {
  margin-inline: auto;
}

.c-modal-horizontal .c-card-img__item-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .c-modal-horizontal .c-card-img__item-inner {
    flex-direction: unset;
  }
}
.c-modal-horizontal .c-card-img__title {
  color: #283747;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.16rem;
}
.c-modal-horizontal .c-card-img__lead {
  font-size: 1.25rem;
  color: #e5a93c;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.12rem;
}
@media screen and (min-width: 768px) {
  .c-modal-horizontal .c-card-img__lead {
    font-size: 1.5rem;
  }
}
.c-modal-horizontal .c-card-img__lead + .c-card-img__text {
  margin-top: 2.5rem;
}
.c-modal-horizontal .c-card-img__head {
  border-radius: 0.625rem;
  overflow: hidden;
}
.c-modal-horizontal .c-card-img__body {
  padding-block: 1.25rem 0;
  padding-inline: 0;
  flex: 1;
  padding-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-modal-horizontal .c-card-img__body {
    padding: 0;
  }
}

.c-modal-horizontal.c-flex--col1-1.c-card-img {
  gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .c-modal-horizontal.c-flex--col1-1.c-card-img {
    gap: 4rem;
  }
}
@media screen and (min-width: 768px) {
  .c-modal-horizontal.c-flex--col1-1 .c-card-img__item-inner {
    gap: 4.375rem;
  }
}
.c-modal-horizontal.c-flex--col1-1 .c-card-img__head {
  border-radius: 0 1rem 1rem 0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-modal-horizontal.c-flex--col1-1 .c-card-img__head {
    width: 48%;
    max-width: 36rem;
  }
}
.c-modal-horizontal.c-flex--col1-1 .c-card-img__image {
  aspect-ratio: 16/9;
}

.c-modal-horizontal.c-flex--col1-2.c-card-img {
  gap: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .c-modal-horizontal.c-flex--col1-2.c-card-img {
    gap: 4rem;
  }
}
.c-modal-horizontal.c-flex--col1-2 .c-flex__item {
  width: calc((100% - 0.4375rem) / 2);
}
@media screen and (min-width: 768px) {
  .c-modal-horizontal.c-flex--col1-2 .c-flex__item {
    width: calc((100% - 4rem) / 2);
  }
}
@media screen and (min-width: 768px) {
  .c-modal-horizontal.c-flex--col1-2 .c-card-img__item-inner {
    gap: 1.875rem;
  }
}
.c-modal-horizontal.c-flex--col1-2 .c-card-img__head {
  border-radius: 0.5rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-modal-horizontal.c-flex--col1-2 .c-card-img__head {
    width: 42%;
    max-width: 15rem;
  }
}
.c-modal-horizontal.c-flex--col1-2 .c-card-img__image {
  aspect-ratio: 1/1;
}
.c-modal-horizontal.c-flex--col1-2 .c-card-img__text {
  margin-top: 0.9375rem;
}
.c-modal-horizontal.c-flex--col1-2 .c-button--sub {
  width: auto;
  min-width: 10rem;
  padding-block: 0.6875rem;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-modal-horizontal.c-flex--col1-2 .c-button--sub {
    min-width: 15.625rem;
    padding-block: 1.375rem;
    padding-inline: 3.125rem;
  }
}
.c-modal-horizontal.c-flex--col1-2 .c-modal__button {
  margin-inline: auto;
}

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

.c-modal {
  overflow-y: auto;
}
@media screen and (min-width: 768px) {
  .c-modal {
    overflow-y: unset;
  }
}

.c-modal__backdrop {
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.6);
}

.c-modal__dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  width: 90%;
  max-width: 56.25rem;
  height: 90dvh;
  max-height: 50.9375rem;
  padding: 1.25rem;
  padding-bottom: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 768px) {
  .c-modal__dialog {
    height: 85dvh;
    padding: 2.5rem 2.5rem 3.6875rem;
  }
}

.c-modal__close {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(31%, -31%);
  background: rgba(74, 81, 90, 0.7);
  border: 0.0625rem solid rgba(255, 255, 255, 0.4);
  border-radius: 100%;
  width: 3.125rem;
  height: 3.125rem;
}
.c-modal__close .close-text {
  font-size: 0.9375rem;
  font-weight: 100;
  line-height: 1;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.c-modal__body {
  height: 100%;
}

.c-modal__body-image {
  width: 100%;
  height: 28%;
  border-radius: 0.5rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-modal__body-image {
    height: 35%;
  }
}
.c-modal__body-image .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-modal__body-lower {
  overflow-y: auto;
  height: calc(72% - 1.25rem);
  margin-top: 1.25rem;
  padding-right: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-modal__body-lower {
    height: calc(65% - 3.125rem);
    margin-top: 2.4375rem;
    margin-right: 1.75rem;
    padding-left: 1.875rem;
    padding-right: 3.75rem;
  }
}
.c-modal__body-lower .c-card-img__title {
  color: #283747;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.16rem;
}
.c-modal__body-lower .c-card-img__lead {
  color: #e5a93c;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.12rem;
}
@media screen and (min-width: 768px) {
  .c-modal__body-lower .c-card-img__lead {
    font-size: 1.5rem;
  }
}
.c-modal__body-lower::-webkit-scrollbar {
  width: 0.25rem;
}
.c-modal__body-lower::-webkit-scrollbar-track {
  background: #ebebff;
}
.c-modal__body-lower::-webkit-scrollbar-thumb {
  background: var(--brand);
}
.c-modal__body-lower .text {
  margin-top: 0.625rem;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .c-modal__body-lower .text {
    margin-top: 2.5rem;
    font-size: 1rem;
  }
}

.c-modal__button {
  margin-top: 1.25rem;
  border-radius: 6.25rem;
  border: 0.0625rem solid #e7e8eb;
  background: inherit;
  color: #939ba3;
  text-align: center;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.07rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .c-modal__button {
    margin-top: 1.875rem;
  }
}
.c-modal__button::after {
  display: none;
}
.c-modal__button:hover {
  background: #939ba3;
  color: #ffffff;
}
.c-modal__button:hover .icon path {
  fill: var(--brand);
}
.c-modal__button .icon {
  position: absolute;
  top: 50%;
  right: 0.625rem;
  transform: translateY(-50%);
  width: 0.875rem;
  height: 0.75rem;
}
@media screen and (min-width: 768px) {
  .c-modal__button .icon {
    right: 1.5625rem;
  }
}
.c-modal__button .icon img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease;
}
.c-modal__button .icon .icon-default {
  opacity: 1;
}
.c-modal__button .icon .icon-hover {
  opacity: 0;
}
.c-modal__button .c-link:hover .icon .icon-default {
  opacity: 0;
}
.c-modal__button .c-link:hover .icon .icon-hover {
  opacity: 1;
}
.c-modal__button {
  /* .icon path {
    fill: #fff;
    transition: fill 0.3s ease;
  } */
}

.c-point-image__item {
  position: relative;
  padding-top: 0.625rem;
  flex-grow: 1;
  display: flex;
}
.c-point-image__item .c-card-img {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 1rem;
  overflow: hidden;
  border: 0.0625rem solid #e7e8eb;
}

.c-point-image__point {
  border-radius: 100%;
  position: absolute;
  top: -12%;
  left: 50%;
  background-color: #fff;
  transform: translateX(-50%);
  padding: 0.625rem 2.8125rem 4.1875rem 2.875rem;
}

.c-point-image__num {
  font-weight: 400;
  font-size: 1.5rem;
  font-family: "Montserrat", sans-serif;
  line-height: 1.8;
  color: #939ba3;
}

.c-point-image .c-card-img__body {
  background-color: #fff;
  padding-block: 1.25rem;
  padding-inline: 1.875rem;
  flex-grow: 1;
  position: relative;
  border-radius: 0;
}
@media screen and (min-width: 768px) {
  .c-point-image .c-card-img__body {
    padding-inline: 2.5rem 1.875rem;
  }
}
@media screen and (min-width: 768px) {
  .c-point-image .c-card-img__body .c-card-img__content {
    padding-right: 0.625rem;
  }
}
.c-point-image .c-card-img__body .c-card-img__title {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.12rem;
  position: relative;
  z-index: 1;
}
.c-point-image .c-card-img__body .c-card-img__text {
  position: relative;
  text-align: left;
  letter-spacing: 0.0625rem;
}

.c-point-image .c-link {
  margin-top: 1.25rem;
  margin-left: auto;
  margin-right: -0.625rem !important;
}
@media screen and (min-width: 768px) {
  .c-point-image .c-link {
    margin-right: 0;
    margin-top: 1.5rem;
  }
}

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

.c-point__num {
  max-width: 9.375rem;
  font-size: clamp(2.5rem, 1.005rem + 6.38vw, 4.063rem);
  color: #e7e8eb !important;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .c-point__num {
    font-size: 5rem;
  }
}

.c-point__cont {
  flex: 1;
}
@media screen and (min-width: 768px) {
  .c-point__cont {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: baseline;
  }
}
.c-point__cont .c-point__title {
  color: #283747;
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  line-height: 1.8;
  letter-spacing: 0.12rem;
}
.c-point__cont .c-point__lead {
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
  line-height: 1.8;
  letter-spacing: 0.09rem;
}

.c-point__text {
  width: 100%;
}

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

.c-point__title + .c-point__lead {
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .c-point__title + .c-point__lead {
    margin-top: 0.3125rem;
  }
}
.c-point__title + .c-point__text {
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .c-point__title + .c-point__text {
    margin-top: 0.9375rem;
  }
}

.c-point__lead + .c-point__text {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-point__lead + .c-point__text {
    margin-top: 0.9375rem;
  }
}

.c-point .c-link {
  margin-top: 1.375rem;
}
@media screen and (min-width: 768px) {
  .c-point .c-link {
    margin-top: 1.875rem;
  }
}
.c-point .c-link:hover {
  text-decoration: none;
}
.c-point .c-link:hover .c-link-text::after {
  opacity: 1;
}
.c-point .c-link:hover .c-link-arrow {
  background: #939ba3;
}
.c-point .c-link:hover .c-link-arrow::before {
  color: #fff;
}
.c-point .c-link-text {
  position: relative;
  display: inline-block;
  text-align: right;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.07rem;
  color: #939ba3;
  transition: color 0.2s ease;
}
.c-point .c-link-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.125rem;
  width: 100%;
  height: 0.0625rem;
  background: currentColor;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.c-point .c-link-arrow {
  width: 3.125rem;
  height: 2.375rem;
  border-radius: 50%;
  border: 0.0625rem solid #939ba3;
  position: relative;
  background: transparent;
  transition: background-color 0.2s ease;
}
.c-point .c-link-arrow::after {
  content: none;
}
.c-point .c-link-arrow::before {
  content: "→";
  position: absolute;
  color: #939ba3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: color 0.2s ease;
}

.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;
}
.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 {
  transition: 0.3s;
}
.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-profile {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-profile {
    width: 90%;
    max-width: 75rem;
    margin: 0 auto;
  }
}
.c-profile button:focus {
  opacity: 1;
}

.c-profile__rail {
  position: relative;
}

@media screen and (min-width: 768px) {
  .c-profile__list {
    justify-content: center;
    gap: 1.5625rem;
  }
}

.c-profile__item {
  width: 45%;
  padding-inline: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .c-profile__item {
    width: 13.75rem;
    padding-inline: 0;
  }
  .c-profile__item:hover .c-profile__thumb {
    opacity: 0.6;
  }
}
.c-profile__item.swiper-slide-prev .c-profile__thumb, .c-profile__item.swiper-slide-next .c-profile__thumb {
  opacity: 0.3;
}

.c-profile__thumb {
  border-radius: 0.5rem;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  transition: 0.3s;
}
.c-profile__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-profile__meta {
  text-align: left;
}

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

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

.c-profile__bubble {
  width: 100%;
  padding-top: 1.5rem;
  padding-inline: 1.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-profile__bubble {
    padding-top: 1.875rem;
    padding-inline: 3.125rem;
  }
}
.c-profile__bubble::before, .c-profile__bubble::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 67%;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .c-profile__bubble::before, .c-profile__bubble::after {
    left: var(--bubble-arrow-left, 50%);
  }
}
.c-profile__bubble::before {
  top: 1.5625rem;
  border-style: solid;
  border-width: 0 13px 13px 0;
  border-color: transparent transparent var(--border);
  translate: 0 -100%;
}
@media screen and (min-width: 768px) {
  .c-profile__bubble::before {
    top: 1.9375rem;
    border-width: 0 1.25rem 1.25rem 0;
  }
}
.c-profile__bubble::after {
  top: 1.5625rem;
  border-style: solid;
  border-width: 0 11.6px 11.6px 0;
  border-color: transparent transparent #fff;
  translate: 1px -100%;
}
@media screen and (min-width: 768px) {
  .c-profile__bubble::after {
    top: 18px;
    border-width: 0 1.1875rem 1.1875rem 0;
  }
}
@media screen and (min-width: 811px) {
  .c-profile__bubble::after {
    top: 2rem;
  }
}

.c-profile__bubble-inner {
  width: 100%;
  font-size: 0.875rem;
  background-color: #fff;
  padding: 1.25rem;
  border-radius: 1rem;
  border: solid 0.0625rem var(--border);
}
@media screen and (min-width: 768px) {
  .c-profile__bubble-inner {
    font-size: 1rem;
    text-align: center;
    padding: 3.125rem 6.25rem;
  }
}

.c-profile__nav {
  position: absolute;
  top: clamp(2.5rem, -2.881rem + 22.96vw, 8.125rem);
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .c-profile__nav {
    display: none;
  }
}
.c-profile__nav.is-prev {
  left: 0.25rem;
}
.c-profile__nav.is-prev .c-link-arrow::after {
  left: 0.75rem;
  transform: translateY(-50%) rotate(-135deg);
}
.c-profile__nav.is-next {
  right: 0.25rem;
}

.c-news {
  display: grid;
  grid-template-columns: 6.0625rem minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  grid-template-areas: "image info" "image title";
  column-gap: 1rem;
  row-gap: 0.3125rem;
  text-decoration: none;
  border-bottom: 0.0625rem solid var(--border);
  padding-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .c-news {
    grid-template-columns: 12.5rem minmax(0, 1fr) 3.125rem;
    grid-template-areas: "image info arrow" "image title arrow";
    column-gap: 2.5rem;
    padding-bottom: 3.5rem;
  }
}
.c-news:hover .c-news__arrow {
  background-color: var(--secondary);
}
.c-news:hover .c-news__arrow:before {
  filter: invert(99%) sepia(2%) saturate(1629%) hue-rotate(179deg) brightness(98%) contrast(87%);
}

.c-news__image {
  position: relative;
  grid-area: image;
  overflow: hidden;
  border: 0.0625rem solid var(--border);
  border-radius: 0.5rem;
  width: 6.0625rem;
  height: 3.9375rem;
}
@media screen and (min-width: 768px) {
  .c-news__image {
    width: 12.5rem;
    height: 8.125rem;
  }
}
.c-news__image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  aspect-ratio: 152/100;
}
@media screen and (min-width: 768px) {
  .c-news__image img {
    aspect-ratio: 260/170;
  }
}

.c-news__info {
  grid-area: info;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .c-news__info {
    gap: 1rem;
  }
}

.c-news__cat {
  display: inline-block;
  text-align: center;
  padding: 0.25rem 1rem;
  border: 0.0625rem solid var(--border);
  border-radius: 999px;
  background-color: var(--background);
  font-size: 0.75rem;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.08em;
  min-width: 7.1875rem;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .c-news__cat {
    min-width: 8.75rem;
    padding: 0.3125rem 1.8125rem;
    font-size: 0.875rem;
  }
}

.c-news__time {
  letter-spacing: 0.08em;
  color: var(--secondary);
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .c-news__time {
    font-size: 0.875rem;
  }
}

.c-news__title {
  grid-area: title;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.08em;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .c-news__title {
    font-size: 1.125rem;
  }
}

.c-news__arrow {
  grid-area: arrow;
  display: none;
}
@media screen and (min-width: 768px) {
  .c-news__arrow {
    position: relative;
    display: block;
    width: 3.125rem;
    height: 2.1875rem;
    border: 0.0625rem solid var(--secondary);
    border-radius: 100%;
    margin: auto;
    transition: 0.3s;
  }
}
.c-news__arrow:before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background-image: url("../images/icons/right-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: invert(69%) sepia(22%) saturate(130%) hue-rotate(169deg) brightness(86%) contrast(86%);
  transition: 0.3s;
}

.c-qa {
  border-radius: 1rem;
  border: 0.0625rem solid #e7e8eb;
  background: #fff;
  position: relative;
  padding: 1.25rem 1.25rem;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .c-qa {
    padding: 4.125rem 3.75rem;
  }
}

.c-qa-question {
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .c-qa-question {
    flex-direction: row;
  }
}

.c-qa a {
  color: var(--brand);
}

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

.c-qa__sub-title {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-qa__sub-title {
    flex-direction: row;
    margin-bottom: 0;
  }
}

.c-qa__sub-title-text {
  color: #283747;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08rem;
  border-radius: 6.25rem;
  border: 0.0625rem solid #e7e8eb;
  background: #f7f9fa;
  padding: 0.6875rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .c-qa__sub-title-text {
    font-size: 1rem;
  }
}

.c-qa__title,
.c-qa__cont {
  padding-left: 1.875rem;
}
@media screen and (min-width: 768px) {
  .c-qa__title,
  .c-qa__cont {
    padding-left: 2.5rem;
  }
}

.c-qa__title {
  width: 100%;
  position: relative;
}
.c-qa__title .title {
  font-size: 1rem;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}
@media screen and (min-width: 768px) {
  .c-qa__title .title {
    font-size: 1.5rem;
  }
}

.c-qa__cont {
  display: none;
  position: relative;
}
.c-qa__cont .text {
  margin-top: 1.25rem;
  letter-spacing: 0.08rem;
  font-family: "Montserrat", sans-serif;
}
@media screen and (min-width: 768px) {
  .c-qa__cont .text {
    margin-top: 2.5rem;
  }
}

.c-qa__icon {
  display: inline-block;
  box-sizing: content-box;
  position: absolute;
  font-family: "Montserrat", sans-serif;
  top: 0;
  left: 0;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  color: var(--brand);
}
@media screen and (min-width: 768px) {
  .c-qa__icon {
    font-size: 1.5rem;
  }
}

.c-qa__icon--q {
  margin-top: 0.1em;
  color: #283747;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.12rem;
}
@media screen and (min-width: 768px) {
  .c-qa__icon--q {
    margin-top: 0.3em;
  }
}

.c-qa__tgl {
  width: 4rem;
  height: 4rem;
  position: absolute;
  top: 0;
  right: 0;
  transition: 0.3s;
  border-radius: 0 1rem 0 1rem;
  border-left: 0.0625rem solid #e7e8eb;
  border-bottom: 0.0625rem solid #e7e8eb;
  background: #f7f9fa;
  backdrop-filter: blur(2px);
}
.c-qa__tgl::before, .c-qa__tgl::after {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 0.125rem;
  background-color: #939ba3;
  position: absolute;
  top: 50%;
  left: 50%;
}
.c-qa__tgl::before {
  transform: translate(-50%, -50%);
}
.c-qa__tgl::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* ==========================
  open
========================== */
.c-qa.is-open .c-qa__tgl::after {
  opacity: 0;
}
.c-qa.is-open .c-qa__cont {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-0.3125rem);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
/* ==========================
  Small
========================== */
@media screen and (min-width: 768px) {
  .l-inner--sm .c-qa__title,
  .l-inner--sm .c-qa__cont {
    padding-inline: 2.5rem 6.25rem;
  }
}

/*スクロールダウン全体の場所*/
.c-scrolldown {
  position: absolute;
  right: 10%;
  bottom: 5%;
  height: 3.125rem;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .c-scrolldown {
    right: 5%;
    bottom: 10%;
  }
}

/*Scrollテキストの描写*/
.c-scrolldown span {
  /*描画位置*/
  position: absolute;
  left: -0.9375rem;
  top: 0;
  /*テキストの形状*/
  color: #eee;
  font-size: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transform: rotate(90deg);
}

/* 線の描写 */
.c-scrolldown::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: -1.875rem;
  /*線の形状*/
  width: 0.0625rem;
  height: 3.125rem;
  background: #eee;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: -1.875rem;
    opacity: 0;
  }
  30% {
    height: 3.125rem;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 1.875rem;
    opacity: 0;
  }
}
.c-slider__outer {
  position: relative;
}

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

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

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

.c-slider__item {
  padding-inline: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .c-slider__item {
    padding-inline: 0;
  }
}

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

.c-slider__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
}

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

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

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

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

.c-slider__title {
  color: #283747 !important;
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.12rem;
  padding-top: 1.25rem;
}
.c-slider__title + .c-slider__text {
  margin-top: 0.9375rem;
}

.c-slider__text {
  color: #283747;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08rem;
  margin-top: 1.5rem;
}

.c-slider__button {
  width: 2rem;
  height: 2rem;
  border: solid 0.0625rem #e7e8eb;
  border-radius: 50%;
  background-color: #939ba3;
  position: absolute;
  top: clamp(4.875rem, -1.821rem + 28.57vw, 11.875rem);
  z-index: 4;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-slider__button {
    top: 14.125rem;
  }
}
.c-slider__button:hover {
  background-color: var(--white);
}
.c-slider__button:hover .c-slider__button__arrow {
  border-color: var(--brand);
}

.c-slider__button__arrow {
  display: inline-block;
  width: 0.4375rem;
  height: 0.4375rem;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: 0.3s;
}

.c-slider__button--prev {
  left: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-slider__button--prev {
    left: 2.5rem;
  }
}
.c-slider__button--prev .c-slider__button__arrow {
  border-bottom: 0.125rem solid var(--white);
  border-left: 0.125rem solid var(--white);
  left: calc(50% + 0.0625rem);
}

.c-slider__button--next {
  right: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-slider__button--next {
    right: 2.5rem;
  }
}
.c-slider__button--next .c-slider__button__arrow {
  border-top: 0.125rem solid var(--white);
  border-right: 0.125rem solid var(--white);
  left: calc(50% - 0.0625rem);
}

.c-slide .c-slider__button--prev {
  left: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-slide .c-slider__button--prev {
    left: 0;
  }
}

.c-slide .c-slider__button--next {
  right: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-slide .c-slider__button--next {
    right: 0;
  }
}

.c-slider__pagination {
  position: relative;
  bottom: unset !important;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-slider__pagination {
    margin-top: 1.875rem;
  }
}
.c-slider__pagination .swiper-pagination-bullet {
  width: 0.5rem;
  height: 0.5rem;
  background: #d6d6d6;
  opacity: 1;
}
.c-slider__pagination .swiper-pagination-bullet-active {
  background: var(--brand);
}

.l-wrapper[data-slider-col] {
  overflow-x: visible;
}

.c-slider-col__wrapper {
  width: 100%;
  overflow-x: visible;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-slider-col__wrapper {
    display: flex;
    justify-content: center;
  }
}
.c-slider-col__wrapper .c-slider__button {
  top: clamp(4.875rem, -1.821rem + 28.57vw, 11.875rem);
}
@media screen and (min-width: 768px) {
  .c-slider-col__wrapper .c-slider__button {
    top: 6.5625rem;
  }
}
.c-slider-col__wrapper .c-slider__button--prev {
  left: 0.5rem;
}
@media screen and (min-width: 768px) {
  .c-slider-col__wrapper .c-slider__button--prev {
    left: 2.5rem;
  }
}
.c-slider-col__wrapper .c-slider__button--next {
  right: 0.5rem;
}
@media screen and (min-width: 768px) {
  .c-slider-col__wrapper .c-slider__button--next {
    right: 2.5rem;
  }
}

.c-slider-col {
  width: 100%;
  padding-inline: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-slider-col {
    width: 120rem;
    max-width: 120rem;
    padding-inline: 2.625rem;
    margin: 0 auto;
  }
}

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

.c-slider-col__item {
  padding-inline: 0.8125rem;
}

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

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

.c-slider-col__caption {
  padding-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-slider-col__caption {
    padding-top: 1.875rem;
  }
}

.c-slider-col__img {
  aspect-ratio: 16/9;
}

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

.c-slider-col--bg .c-slider-col__caption,
.c-slider-col--frame .c-slider-col__caption {
  background-color: var(--white);
  padding: 1.25rem 1.25rem 3.125rem;
}
@media screen and (min-width: 768px) {
  .c-slider-col--bg .c-slider-col__caption,
  .c-slider-col--frame .c-slider-col__caption {
    padding-block: 1.875rem 2.1875rem;
    padding-inline: 2.1875rem;
  }
}
.c-slider-col--bg .c-slider__pagination,
.c-slider-col--frame .c-slider__pagination {
  margin-top: 0;
  bottom: 2.5rem !important;
}
@media screen and (min-width: 768px) {
  .c-slider-col--bg .c-slider__pagination,
  .c-slider-col--frame .c-slider__pagination {
    margin-top: 1.875rem;
    bottom: unset !important;
  }
}

.c-slider-col--frame .c-slider-col__caption {
  border: solid 0.0625rem var(--grey);
  border-top: none;
}

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

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

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

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

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

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

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

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

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

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

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

.c-flow__item {
  background-color: var(--white);
  position: relative;
}
.c-flow__item:not(:last-of-type)::before {
  content: "";
  display: inline-block;
  border-style: solid;
  border-left: 0.625rem solid transparent;
  border-right: 0.625rem solid transparent;
  border-top: 0.625rem solid var(--brand);
  border-bottom: 0;
  position: absolute;
  bottom: -1.375rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .c-flow__item:not(:last-of-type)::before {
    border-top: 0.625rem solid transparent;
    border-bottom: 0.625rem solid transparent;
    border-left: 0.625rem solid #939ba3;
    border-right: 0;
    bottom: unset;
    left: unset;
    top: 50%;
    right: -1.375rem;
    transform: translateY(-50%);
  }
}

.c-flow.c-flex--col1-1 .c-flow__item:not(:last-of-type)::before {
  border-left: 0.625rem solid transparent;
  border-right: 0.625rem solid transparent;
  border-top: 0.625rem solid #939ba3;
  border-bottom: 0;
  bottom: -1.375rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .c-flow.c-flex--col1-1 .c-flow__item:not(:last-of-type)::before {
    top: unset;
    right: unset;
    bottom: -1.0625rem;
  }
}

.c-flow__step {
  font-size: 1.3125rem;
  line-height: 1;
  text-align: center;
  color: #283747;
  font-family: "Montserrat", sans-serif;
  position: relative;
  z-index: 1;
  padding-block: 0.8125rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.14rem;
}
@media screen and (min-width: 768px) {
  .c-flow__step {
    font-size: 1.75rem;
    padding-block: 1.25rem;
  }
}

.c-flow__item-image {
  aspect-ratio: 335/188;
}
.c-flow__item-image .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-flow__item-body {
  padding-block: 1.25rem 1.5625rem;
  padding-inline: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .c-flow__item-body {
    padding-block: 1.25rem 2.5rem;
    padding-inline: 2.5rem;
  }
}

.c-flow__title {
  color: #283747 !important;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.12rem;
}
.c-flow__title + .c-flow__text {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-flow__title + .c-flow__text {
    margin-top: 0.9375rem;
  }
}

.c-flow__text {
  color: #283747;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08rem;
}

@media screen and (min-width: 768px) {
  .c-flex--col1-4 .c-flow__item-body {
    padding-block: 1.25rem 2.1875rem;
    padding-inline: 2.1875rem;
  }
}

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

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

.c-table__container {
  border-collapse: collapse;
  width: 100%;
  min-width: 50rem;
  table-layout: fixed;
  background-color: var(--white);
  font-family: "Montserrat", sans-serif;
  border-radius: 0.9375rem;
  overflow: hidden;
}

.c-table__title-vl,
.c-table__title-hl,
.c-table__cont {
  padding: 1.25rem 0.9375rem;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .c-table__title-vl,
  .c-table__title-hl,
  .c-table__cont {
    padding: 1.75rem 2.1875rem;
  }
}

.c-table__title-vl {
  font-weight: 500;
  color: #283747 !important;
}
.c-table__title-vl:not(:last-child) {
  border-right: solid 0.0625rem var(--white);
}

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

.c-table__body .c-table__row:last-child .c-table__cont {
  border-bottom: none;
}

.c-table__head--gray {
  background-color: #e7e8eb;
}

.c-table__head--color {
  background-color: #f9f0c6;
}

.c-table-col2 {
  border-collapse: collapse;
  width: 100%;
  font-family: "Montserrat", sans-serif;
}

.c-table-col2__row {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .c-table-col2__row {
    flex-direction: row;
    align-items: stretch;
    border-bottom: solid 0.0625rem var(--border);
  }
}

.c-table-col2__title,
.c-table-col2__cont {
  padding-block: 0.9375rem;
  border-bottom: solid 0.0625rem var(--border);
  text-align: left;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .c-table-col2__title,
  .c-table-col2__cont {
    padding-block: 1.875rem;
    border-bottom: none;
    font-size: 1rem;
  }
}

.c-table-col2__title {
  position: relative;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .c-table-col2__title {
    width: 17.5rem;
    display: flex;
    align-items: center;
  }
}
.c-table-col2__title::after {
  content: "";
  display: inline-block;
  width: 5.625rem;
  height: 0.0625rem;
  background-color: var(--brand);
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .c-table-col2__title::after {
    width: 7.5rem;
  }
}

.c-table-col2__cont {
  border-top-color: transparent;
}
@media screen and (min-width: 768px) {
  .c-table-col2__cont {
    width: 57.5rem;
    padding-left: 1.25rem;
    border-top-color: var(--border);
  }
}

@media screen and (min-width: 768px) {
  .l-inner--sm .c-table-col2__title {
    width: 15.625rem;
  }
}
@media screen and (min-width: 768px) {
  .l-inner--sm .c-table-col2__title::after {
    width: 5.625rem;
  }
}

@media screen and (min-width: 768px) {
  .l-inner--sm .c-table-col2__cont {
    width: 40.625rem;
  }
}

.c-table-col2_line--gray::after {
  background-color: #939ba3;
}

.c-table-col2_line--color::after {
  background-color: #e5a93c;
}

.c-text {
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.019375rem;
}
@media screen and (min-width: 768px) {
  .c-text {
    font-size: 1rem;
    letter-spacing: 0.08rem;
  }
}
.c-text.-sm {
  font-size: 1.8666666667vw;
}
@media screen and (min-width: 768px) {
  .c-text.-sm {
    font-size: 0.625rem;
  }
}
.c-text.-md {
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .c-text.-md {
    font-size: 1.125rem;
  }
}
.c-text.-lg {
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .c-text.-lg {
    font-size: 1.5625rem;
  }
}
.c-text.-big {
  font-size: 6.9333333333vw;
}
@media screen and (min-width: 768px) {
  .c-text.-big {
    font-size: 1.75rem;
  }
}

.c-text-box {
  padding: 1.875rem;
  background-color: var(--white);
  border: 0.0625rem solid var(--border);
  border-radius: 0.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-text-box {
    padding-block: 3.75rem 1.875rem;
    padding-inline: 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .c-text-box .c-text-box__content {
    padding-inline: 6.875rem;
  }
}
.c-text-box .c-link {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-text-box .c-link {
    margin-top: 1.5rem;
  }
}
.c-text-box .c-link-text {
  color: #939ba3;
  text-align: right;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.07rem;
}
.c-text-box .c-link-arrow {
  width: 3.125rem;
  height: 2.375rem;
  border-radius: 50%;
  border: 0.0625rem solid #939ba3;
  position: relative;
  background: transparent;
}
.c-text-box .c-link-arrow::after {
  content: none;
}
.c-text-box .c-link-arrow::before {
  content: "→";
  color: #939ba3;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.c-text-box__title {
  color: #283747;
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.12rem;
}
.c-text-box__title + .c-text-box__lead {
  margin-top: 0.3125rem;
}
.c-text-box__title + .c-text-box__text {
  margin-top: 0.9375rem;
}

.c-text-box__lead {
  color: #e5a93c;
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.09rem;
}
.c-text-box__lead + .c-text-box__text {
  margin-top: 0.9375rem;
}

.c-text-box__text {
  color: #283747;
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08rem;
}
@media screen and (min-width: 768px) {
  .c-text-box__text {
    font-size: 1rem;
  }
}

.c-ap-hotel-inner {
  position: relative;
}

.list-ap-hotel-inner {
  width: 90%;
  max-width: 90rem;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .list-ap-hotel-inner .p-news-filter__list {
    gap: 1rem;
  }
}
.list-ap-hotel-inner .p-news-filter__content {
  margin-top: 0;
}
.list-ap-hotel-inner .p-news-filter__item {
  border-radius: 6.25rem;
  border: 0.0625rem solid #e7e8eb;
  background: #f7f9fa;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  width: calc((100% - 0.625rem) / 3);
}
@media screen and (min-width: 768px) {
  .list-ap-hotel-inner .p-news-filter__item {
    font-size: 1rem;
    width: 100%;
  }
}
.list-ap-hotel-inner .p-news-filter__item.is-active {
  background: #283747;
  margin-top: 0;
}
.list-ap-hotel-inner .p-news-filter__item.is-active .p-news-filter__link {
  color: #fff;
  padding-block: 1.0625rem;
}
.list-ap-hotel-inner .p-news-filter__link {
  color: #283747;
  display: flex;
  flex-direction: row;
  gap: 0.4375rem;
  padding: 1.0625rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .list-ap-hotel-inner .p-news-filter__link {
    gap: 0.625rem;
    font-weight: 500;
    padding-inline: 2.5625rem;
  }
}
.list-ap-hotel-inner .p-news-filter__link .link-icon {
  width: 1.3125rem;
}
.list-ap-hotel-inner .p-news-filter__link .link-icon img {
  width: 100%;
  height: auto;
}

.c-ap-hotel-list {
  display: flex;
  flex-direction: column;
  margin-top: 3rem;
  padding-bottom: 2.3125rem;
}
@media screen and (min-width: 768px) {
  .c-ap-hotel-list {
    flex-direction: row;
    row-gap: 2.5625rem;
    column-gap: 1.875rem;
    flex-wrap: wrap;
    margin-top: 5rem;
    padding-bottom: 7.5625rem;
  }
}

.c-ap-hotel-list__item {
  transition: background 0.3s ease;
  border-radius: 0.5rem;
  overflow: hidden;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-ap-hotel-list__item {
    width: calc((100% - 3.75rem) / 3);
  }
}
.c-ap-hotel-list__item:hover {
  background: rgba(255, 214, 0, 0.1);
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .c-ap-hotel-list__item:hover {
    margin-bottom: 0;
  }
}
.c-ap-hotel-list__item a {
  text-decoration: none;
}

.ap-hotel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.c-ap-hotel__img-wrapper {
  border-radius: 0.5rem;
  overflow: hidden;
  border: 0.1875rem solid #e7e8eb;
  position: relative;
}

.c-ap-hotel__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 103/58;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .c-ap-hotel__image img {
    aspect-ratio: 460/260;
  }
}

.c-ap-hotel__new {
  border-radius: 0.25rem;
  background: rgba(172, 94, 64, 0.5);
  overflow: hidden;
  padding: 0.375rem 0.625rem;
  color: #fff;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.07rem;
  position: absolute;
  right: 0.4375rem;
  bottom: 0.4375rem;
}

.c-ap-hotel__info {
  padding-inline: 1.3125rem;
  padding-bottom: 1.4375rem;
}
@media screen and (min-width: 768px) {
  .c-ap-hotel__info {
    padding-inline: 1.875rem;
    padding-bottom: 2.4375rem;
  }
}

.c-ap-hotel__title {
  color: var(--Primary, #283747);
  font-family: "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.09rem;
}
@media screen and (min-width: 768px) {
  .c-ap-hotel__title {
    font-size: 1.375rem;
    letter-spacing: 0.11rem;
  }
}

.c-ap-hotel__lead {
  color: #939ba3;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08rem;
  margin-top: 0.75rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-ap-hotel__lead {
    margin-top: 1rem;
    -webkit-line-clamp: 2;
  }
}

.c-ap-hotel__sm-wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .c-ap-hotel__sm-wrapper {
    margin-top: 1.5rem;
  }
}

.c-ap-hotel__location {
  color: #939ba3;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .c-ap-hotel__location {
    margin-top: 0.375rem;
  }
}

.c-ap-hotel__location-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  object-fit: contain;
}

.c-ap-hotel__location-text {
  display: inline-block;
}

.c-ap-hotel__cat {
  color: #283747;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06rem;
  border-radius: 6.25rem;
  border: 0.0625rem solid #e7e8eb;
  background: #fff;
  padding: 0.5625rem 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-ap-hotel__cat {
    font-size: 0.875rem;
    letter-spacing: 0.07rem;
    padding: 0.4375rem 1.875rem;
  }
}

.c-ap-hotel-single {
  position: relative;
  background-color: var(--background);
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .c-ap-hotel-single {
    padding-bottom: 10rem;
  }
}
.c-ap-hotel-single .p-news-single__thumbnail {
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .c-ap-hotel-single .p-news-single__thumbnail {
    margin-top: 1.5rem;
  }
}

.c-ap-hotel__content-wrapper {
  width: 90%;
  max-width: 75rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-ap-hotel__content-wrapper {
    width: 100%;
  }
}
.c-ap-hotel__content-wrapper .c-ap-hotel__subtitle {
  margin-top: 0.5rem;
}
.c-ap-hotel__content-wrapper .c-ap-hotel__location {
  padding-left: 1.75rem;
  position: relative;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .c-ap-hotel__content-wrapper .c-ap-hotel__location {
    margin-top: 3.125rem;
  }
}
.c-ap-hotel__content-wrapper .c-ap-hotel__location::before {
  content: "";
  background: url(../images/icons/maps-and-flags.svg) no-repeat center/contain;
  width: 1.25rem;
  height: 1.25rem;
  position: absolute;
  bottom: 0;
  left: 0;
}
.c-ap-hotel__content-wrapper .c-ap-hotel__location-text {
  color: #283747;
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1rem;
}
.c-ap-hotel__content-wrapper .p-news-single__thumbnail {
  max-width: none;
}

.c-ap-hotel__subtitle {
  color: #939ba3;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08rem;
}
@media screen and (min-width: 768px) {
  .c-ap-hotel__subtitle {
    font-size: 1.25rem;
    letter-spacing: 0.1rem;
  }
}

.c-ap-hotel-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .c-ap-hotel-gallery {
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    gap: 1.0625rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
  }
}

.c-ap-hotel-gallery__item {
  margin: 0;
  overflow: hidden;
  border-radius: 0.5rem;
}

.c-ap-hotel-gallery__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.c-ap-hotel__site-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.625rem;
}
@media screen and (min-width: 768px) {
  .c-ap-hotel__site-wrapper {
    justify-content: left;
    margin-top: 3.1875rem;
  }
}

.c-ap-hotel__site-lead {
  color: #939ba3;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.06rem;
  border-right: 0.0625rem solid #e7e8eb;
  padding-right: 1rem;
}
@media screen and (min-width: 768px) {
  .c-ap-hotel__site-lead {
    font-size: 0.875rem;
    padding-right: 1.5rem;
    letter-spacing: 0.07rem;
  }
}

.c-ap-hotel__site-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .c-ap-hotel__site-content {
    gap: 1.5rem;
    padding-left: 1.5rem;
  }
}

.c-ap-hotel__site {
  flex-shrink: 0;
}

.c-ap-hotel__site-link {
  display: block;
  transition: opacity 0.3s ease;
}
.c-ap-hotel__site-link:hover {
  opacity: 0.7;
}

.c-ap-hotel__desc {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .c-ap-hotel__desc {
    margin-top: 3rem;
  }
}

.c-ap-hotel__site-image {
  display: block;
  width: auto;
  object-fit: contain;
  max-height: 5rem;
  max-width: 5.6875rem;
}
@media screen and (min-width: 768px) {
  .c-ap-hotel__site-image {
    max-height: 6.25rem;
    max-width: 6.875rem;
  }
}

/*=============================
 Contact
=============================*/
.c-ap-hotel-contact {
  position: relative;
  overflow: hidden;
  padding-top: 5.75rem;
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-ap-hotel-contact {
    padding-top: 5rem;
    padding-bottom: 1.875rem;
  }
}

.c-ap-hotel-contact__container {
  z-index: 1;
  gap: 0.75rem;
  max-width: 30.625rem;
  width: 91%;
  margin-inline: auto;
  padding: 1.875rem 1.5625rem 1.8125rem;
  background-color: var(--surface);
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .c-ap-hotel-contact__container {
    gap: 1.25rem;
    padding: 2.21875rem 1.5625rem;
  }
}

.c-ap-hotel-contact__guide {
  font-family: "Montserrat", sans-serif;
  align-items: center;
  width: 64%;
  padding: 0.4375rem 0.625rem;
  background-color: #ac5e40;
  border-radius: 0.25rem;
  overflow: hidden;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.06rem;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-ap-hotel-contact__guide {
    width: 25rem;
    padding: 0.375rem 1.625rem;
  }
}
.c-ap-hotel-contact__guide:hover {
  opacity: 0.8;
}
.c-ap-hotel-contact__guide span {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: 10%;
  text-underline-position: from-font;
}

.c-ap-hotel-contact__head {
  text-align: center;
}

.c-ap-hotel-contact__title {
  margin: 0;
  color: #e5a93c;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 100;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .c-ap-hotel-contact__title {
    font-size: 3rem;
  }
}

.c-ap-hotel-contact__subtitle {
  margin-top: 0.3125rem;
  color: #283747;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08rem;
  width: fit-content;
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-ap-hotel-contact__subtitle {
    margin-top: 0.5625rem;
    gap: 0.25rem;
    font-size: 0.9375rem;
    letter-spacing: 0.075rem;
  }
}
.c-ap-hotel-contact__subtitle::before {
  content: "";
  position: absolute;
  top: 0;
  left: -1.25rem;
  display: block;
  width: 1rem;
  height: 1rem;
  background: url("../images/icons/paper-plane.svg") no-repeat center/contain;
  opacity: 0.5;
}

.c-ap-hotel-contact__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.3125rem;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .c-ap-hotel-contact__list {
    row-gap: 0.5rem;
    column-gap: 0.4375rem;
  }
}

.c-ap-hotel-contact__item {
  min-width: 0;
}

.c-ap-hotel-contact__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-block: 1.25rem;
  background: #f7f9fa;
  border: 0.0625rem solid #e7e8eb;
  border-radius: 0.5rem;
  color: #283747;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.06rem;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-ap-hotel-contact__link {
    padding: 1.21875rem 1.46875rem;
    font-size: 0.875rem;
  }
}
.c-ap-hotel-contact__link:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: var(--surface);
}

.c-ap-hotel-contact__sp-break {
  display: block;
}
@media screen and (min-width: 768px) {
  .c-ap-hotel-contact__sp-break {
    display: none;
  }
}

/*--------個別ページ　接頭辞「p-」--------------*/
.p-front .l-editor-wrapper {
  margin-top: 0;
}

.p-front-section {
  padding: 3rem 0 0;
}

.p-front-section__title {
  font-weight: 100;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0;
  line-height: 1;
  color: var(--brand);
  font-size: 4rem;
}
@media screen and (min-width: 768px) {
  .p-front-section__title {
    font-size: 6.25rem;
  }
}

.p-front-section__subtitle {
  margin-top: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.1em;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-front-section__subtitle {
    font-size: 1.75rem;
  }
}

.p-front-section__text {
  margin-top: 2rem;
  letter-spacing: 0.15em;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-front-section__text {
    margin-top: 3rem;
  }
}

.p-front-section__heading .en {
  position: relative;
  z-index: 1;
  font-family: "Montserrat", sans-serif, sans-serif;
  font-weight: 400;
  color: var(--secondary);
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-front-section__heading .en {
    font-size: 1rem;
  }
}
.p-front-section__heading .en::before {
  content: "";
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 100%;
  background-color: var(--border);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.p-front-section__heading .en + .ja {
  margin-top: 0.3125rem;
}
.p-front-section__heading .ja {
  text-decoration: underline;
  text-underline-offset: 0.1875rem;
  font-weight: 500;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-front-section__heading .ja {
    font-size: 1.5rem;
  }
}

/*=============================
メインビジュアル
=============================*/
.p-front-mv {
  width: 100%;
  position: relative;
  overflow: hidden;
  background-image: url("../images/front/mv-sp.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .p-front-mv {
    height: 67.5rem;
    background-image: url("../images/front/mv-pc.webp");
  }
}
@media screen and (max-width: 767px) {
  .p-front-mv {
    padding-top: 9.375rem;
    padding-bottom: 15.625rem;
  }
}
.p-front-mv:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.p-front-mv .l-inner {
  position: relative;
  height: 100%;
  max-width: 90rem;
}

@media screen and (min-width: 768px) {
  .p-front-mv__catch-container {
    position: absolute;
    bottom: 5%;
  }
}

@keyframes mv-animation {
  0% {
    transform: translateY(20%);
    filter: blur(1rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    filter: blur(0);
    opacity: 1;
  }
}
.p-front-mv__catch-title {
  color: var(--brand);
  font-family: "Montserrat", sans-serif;
  font-weight: 100;
  line-height: 1;
  letter-spacing: 0;
  animation: mv-animation 1s ease-out both;
  font-size: 5rem;
}
@media screen and (min-width: 768px) {
  .p-front-mv__catch-title {
    font-size: 8.75rem;
  }
}

.p-front-mv__catch-subtitle {
  color: var(--surface);
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.6;
  margin-top: 2rem;
  animation: mv-animation 1s ease-out both;
  animation-delay: 0.2s;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-front-mv__catch-subtitle {
    font-size: 2rem;
  }
}

.p-front-mv__catch-text-wrap {
  animation: mv-animation 1s ease-out both;
  animation-delay: 0.4s;
  will-change: transform, filter;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-front-mv__catch-text-wrap {
    margin-top: 2.5rem;
  }
}

.p-front-mv__catch-text {
  color: var(--surface);
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.075em;
  line-height: 1.8;
  font-weight: 400;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-front-mv__catch-text {
    font-size: 1rem;
    max-width: 37.8125rem;
  }
}

.p-front-mv__catch-why {
  max-width: 37.875rem;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-front-mv__catch-why {
    margin-top: 3.25rem;
  }
}

.p-front-mv__catch-why-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.625rem;
}
.p-front-mv__catch-why-head .c-arrow-link {
  color: var(--surface);
  animation: mv-animation 1s ease-out both;
  animation-delay: 0.6s;
}
.p-front-mv__catch-why-head .c-arrow-link__arrow {
  border-color: var(--surface);
}
.p-front-mv__catch-why-head .c-arrow-link__arrow:before {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(180deg) brightness(100%) contrast(100%);
}

.p-front-mv__catch-why-title {
  font-family: "Montserrat", sans-serif, sans-serif;
  font-weight: 200;
  color: var(--surface);
  font-size: 1.75rem;
  animation: mv-animation 1s ease-out both;
  animation-delay: 0.6s;
}
@media screen and (min-width: 768px) {
  .p-front-mv__catch-why-title {
    font-size: 2.25rem;
  }
}

.p-front-mv__catch-why-title small {
  font-size: 0.67em;
}

.p-front-mv__catch-why-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-front-mv__catch-why-list {
    flex-direction: row;
    margin-top: 1rem;
  }
}

.p-front-mv__catch-why-item {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  align-items: center;
  text-align: center;
  gap: 0.625rem;
  backdrop-filter: blur(1rem);
  color: var(--surface);
  border-radius: 0.375rem;
  padding: 2rem;
  animation: mv-animation 1s ease-out both;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-front-mv__catch-why-item {
    width: 12.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.9375rem;
    padding: 2.2rem 1rem;
  }
}
.p-front-mv__catch-why-item:nth-child(1) {
  animation-delay: 0.8s;
}
.p-front-mv__catch-why-item:nth-child(2) {
  animation-delay: 1s;
}
.p-front-mv__catch-why-item:nth-child(3) {
  animation-delay: 1.2s;
}

.p-front-mv__catch-why-image {
  width: fit-content;
  margin: auto;
}

.p-front-mv__fixed-news {
  width: 100%;
  max-width: 32.375rem;
  padding: 5ch;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--surface);
  z-index: 2;
  border-radius: 1rem 0 0 0;
  animation: mv-animation 1s ease-out both;
  animation-delay: 1.4s;
}
.p-front-mv__fixed-news .fixed-news__link {
  display: grid;
  grid-template-areas: "image cat date" "image title title";
  column-gap: 0.9375rem;
  text-decoration: none;
  transition: all 0.3s;
}
.p-front-mv__fixed-news .fixed-news__link:hover {
  opacity: 0.5;
}
@media screen and (min-width: 768px) {
  .p-front-mv__fixed-news .fixed-news__link {
    column-gap: 1.5625rem;
  }
}
.p-front-mv__fixed-news .fixed-news__image {
  grid-area: image;
  flex-shrink: 0;
  width: 6.0625rem;
  height: 3.9375rem;
  overflow: hidden;
  border-radius: 0.5rem;
  border: 0.0625rem solid var(--border);
}
@media screen and (min-width: 768px) {
  .p-front-mv__fixed-news .fixed-news__image {
    width: 9.0625rem;
    height: 5.9375rem;
  }
}
.p-front-mv__fixed-news .fixed-news__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-front-mv__fixed-news .fixed-news__cat {
  grid-area: cat;
  font-weight: bold;
  border: 0.0625rem solid var(--border);
  border-radius: 999px;
  width: fit-content;
  height: fit-content;
  white-space: nowrap;
  padding: 0 1.5em;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-front-mv__fixed-news .fixed-news__cat {
    font-size: 0.875rem;
  }
}
.p-front-mv__fixed-news .fixed-news__date {
  white-space: nowrap;
  grid-area: date;
  color: var(--secondary);
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-front-mv__fixed-news .fixed-news__date {
    font-size: 0.875rem;
  }
}
.p-front-mv__fixed-news .fixed-news__date:before {
  content: "🕐";
  margin-right: 0.3125rem;
}
.p-front-mv__fixed-news .fixed-news__title {
  grid-area: title;
  text-decoration: underline;
  font-weight: 500;
  line-height: 1.8;
}

/*=============================
Benefits
=============================*/
.p-front-benefits {
  padding: 3rem 0 14rem;
}
@media screen and (min-width: 768px) {
  .p-front-benefits {
    padding: 9rem 0 11rem;
  }
}

.p-front-benefits__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media screen and (min-width: 768px) {
  .p-front-benefits__container {
    grid-template-columns: 25.3125rem minmax(0, 1fr);
    gap: 5rem;
  }
}

.p-front-benefits__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-front-benefits__list {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 8rem;
  }
}

.p-front-benefits__link {
  display: block;
  text-decoration: none;
  position: relative;
  border: 0.0625rem solid var(--border);
  border-radius: 1rem;
  padding: 4rem 2rem;
  text-align: center;
  background-color: var(--surface);
  transition: 0.3s;
  overflow: hidden;
}
.p-front-benefits__link:hover {
  background-color: var(--secondary);
}
.p-front-benefits__link:hover .p-front-benefits__item-badge {
  background-color: var(--secondary);
  color: var(--border);
}
.p-front-benefits__link:hover .p-front-benefits__item-title {
  color: var(--border);
}
.p-front-benefits__link:hover .p-front-benefits__item-title span {
  color: var(--border);
}
.p-front-benefits__link:hover .p-front-benefits__item-lead {
  color: var(--border);
}
.p-front-benefits__link:hover .p-front-benefits__item-arrow {
  border-color: var(--border);
}
.p-front-benefits__link:hover .p-front-benefits__item-arrow:before {
  filter: invert(99%) sepia(2%) saturate(1629%) hue-rotate(179deg) brightness(98%) contrast(87%);
}

.p-front-benefits__item-badge {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--background);
  text-align: center;
  width: 9rem;
  border-radius: 1rem 0 1rem 0;
  border-right: 0.0625rem solid var(--border);
  border-bottom: 0.0625rem solid var(--border);
  padding: 0.5rem 0.3125rem;
  font-weight: 500;
  transition: 0.3s;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-front-benefits__item-badge {
    font-size: 0.875rem;
  }
}

.p-front-benefits__item-title {
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.075em;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-front-benefits__item-title {
    font-size: 1rem;
  }
}
.p-front-benefits__item-title span {
  font-size: 1.5em;
  color: var(--brand);
}

.p-front-benefits__item-lead {
  margin-top: 0.5rem;
  line-height: 1.8;
  letter-spacing: 0.075em;
}

.p-front-benefits__item-arrow {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 3.125rem;
  height: 2.375rem;
  border: 0.0625rem solid var(--secondary);
  border-radius: 100%;
}
.p-front-benefits__item-arrow:before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background-image: url("../images/icons/right-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: invert(69%) sepia(22%) saturate(130%) hue-rotate(169deg) brightness(86%) contrast(86%);
}

/*=============================
Portfolio
=============================*/
.p-front-portfolio {
  position: relative;
  background-color: var(--background);
  padding: 16rem 0 4rem;
}
@media screen and (min-width: 768px) {
  .p-front-portfolio {
    padding: 10rem 0 3rem;
  }
}

.p-front-portfolio__container {
  max-width: 45.5rem;
  margin-left: auto;
}

.p-front-portfolio__image {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: fit-content;
}
.p-front-portfolio__image.-type01 {
  width: 8.875rem;
  top: 0;
  transform: translate(2.5rem, -60%);
}
@media screen and (min-width: 768px) {
  .p-front-portfolio__image.-type01 {
    width: 16.25rem;
    transform: translate(-29.5rem, -30%);
  }
}
.p-front-portfolio__image.-type02 {
  width: 7.5rem;
  top: 0.625rem;
  transform: translate(-3.75rem, 0);
}
@media screen and (min-width: 768px) {
  .p-front-portfolio__image.-type02 {
    width: 14.1875rem;
    top: 11.25rem;
    transform: translate(-40.5rem, 0);
  }
}
.p-front-portfolio__image.-type03 {
  width: 6.25rem;
  top: 1.25rem;
  transform: translate(-6.875rem, 0);
}
@media screen and (min-width: 768px) {
  .p-front-portfolio__image.-type03 {
    width: 11.375rem;
    top: 12.25rem;
    transform: translate(-46.8125rem, 0);
  }
}

.p-front-portfolio__slider-container {
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .p-front-portfolio__slider-container {
    margin-top: 8rem;
  }
}

.p-front-portfolio__slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 109.875rem;
  margin-inline: auto;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-front-portfolio__slider-wrapper {
    width: 95%;
    margin-top: 2.5rem;
  }
}
.p-front-portfolio__slider-wrapper .swiper {
  position: relative;
  width: 100%;
  max-width: 105rem;
  margin-inline: auto;
  padding-inline: 5%;
}
@media screen and (min-width: 768px) {
  .p-front-portfolio__slider-wrapper .swiper {
    width: 95%;
    padding-inline: unset;
  }
}
.p-front-portfolio__slider-wrapper .swiper-wrapper {
  align-items: stretch;
}

.p-front-portfolio__slider-head {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: end;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-front-portfolio__slider-head {
    max-width: 45rem;
    margin-left: auto;
  }
}

.p-front-portfolio__slider-head-title {
  font-weight: 500;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-front-portfolio__slider-head-title {
    font-size: 1.5rem;
  }
}

.p-front-portfolio__slider-head-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--secondary);
  font-weight: 500;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-front-portfolio__slider-head-link {
    font-size: 1rem;
  }
}
.p-front-portfolio__slider-head-link .arrow {
  position: relative;
  display: block;
  width: 3.125rem;
  height: 2.375rem;
  border: 0.0625rem solid var(--secondary);
  border-radius: 100%;
}
.p-front-portfolio__slider-head-link .arrow:before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background-image: url("../images/icons/right-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: invert(69%) sepia(22%) saturate(130%) hue-rotate(169deg) brightness(86%) contrast(86%);
}

.p-front-portfolio__slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.p-front-portfolio__slider-nav-prev,
.p-front-portfolio__slider-nav-next {
  position: relative;
  background-color: var(--secondary);
  border-radius: 100%;
  width: 4rem;
  height: 4rem;
}
@media screen and (min-width: 768px) {
  .p-front-portfolio__slider-nav-prev,
  .p-front-portfolio__slider-nav-next {
    width: 7.5rem;
    height: 7.5rem;
  }
}
.p-front-portfolio__slider-nav-prev:before,
.p-front-portfolio__slider-nav-next:before {
  content: "";
  width: 0.75rem;
  height: 0.6875rem;
  background-image: url("../images/icons/right-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(196deg) brightness(103%) contrast(103%);
}

.p-front-portfolio__slider-nav-prev:before {
  left: 10%;
  transform: translate(0, -50%) rotate(180deg);
}

.p-front-portfolio__slider-nav-next {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-front-portfolio__slider-nav-next {
    display: block;
  }
}
.p-front-portfolio__slider-nav-next:before {
  right: 10%;
  transform: translate(0, -50%) rotate(0deg);
}

.p-front-portfolio__slider-item-link {
  display: flex;
  flex-direction: column;
  height: auto;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(1rem);
  border-radius: 1rem;
  text-decoration: none;
  transition: 0.3s;
  overflow: hidden;
  border: 0.0625rem solid var(--border);
}
.p-front-portfolio__slider-item-link:hover {
  background-color: var(--surface);
}
.p-front-portfolio__slider-item-link.swiper-slide-prev {
  transform: translateX(-10%);
}

.p-front-portfolio__slider-item {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  height: 100%;
}

.p-front-portfolio__slider-item__head-image {
  aspect-ratio: 20/11;
  width: 100%;
  overflow: hidden;
}
.p-front-portfolio__slider-item__head-image .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-front-portfolio__slider-item__body {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 2rem;
}

.p-front-portfolio__slider-item__body-new {
  position: absolute;
  top: 0;
  right: 5%;
  transform: translateY(-50%);
  background-color: rgba(172, 94, 64, 0.5);
  backdrop-filter: blur(1rem);
  color: var(--surface);
  border-radius: 0.25rem;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.075em;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-front-portfolio__slider-item__body-new {
    font-size: 0.875rem;
  }
}

.p-front-portfolio__slider-item__body-name {
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.075em;
  font-size: 1.125rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-front-portfolio__slider-item__body-name {
    font-size: 1.375rem;
  }
}

.p-front-portfolio__slider-item__body-description {
  margin-top: 1rem;
  line-height: 1.8;
  letter-spacing: 0.075em;
  color: var(--secondary);
  min-height: 5.4em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-front-portfolio__slider-item__body-description {
    font-size: 1rem;
  }
}

.p-front-portfolio__slider-item__body-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.625rem;
  margin-top: auto;
  padding-top: 1.5rem;
}

.p-front-portfolio__slider-item__body-location {
  font-family: "Montserrat", sans-serif;
  color: var(--secondary);
}

.p-front-portfolio__slider-item__body-category {
  border: 0.0625rem solid var(--border);
  border-radius: 999px;
  padding: 0.25rem 1rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-front-portfolio__slider-item__body-category {
    font-size: 0.875rem;
  }
}

.p-front-portfolio__development {
  position: relative;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-front-portfolio__development {
    margin-top: -2rem;
  }
}

.p-front-portfolio__development-image {
  position: sticky;
  top: 5rem;
  transform: translateX(-9rem);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-front-portfolio__development-image {
    top: 6rem;
    transform: unset;
    width: auto;
  }
}

.p-front-portfolio__development-container {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-front-portfolio__development-container {
    max-width: 45rem;
    margin-top: -21rem;
    margin-left: auto;
  }
}

.p-front-portfolio__development-title {
  font-weight: 500;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-front-portfolio__development-title {
    font-size: 1.5rem;
  }
}

.p-front-portfolio__development-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-front-portfolio__development-list {
    gap: 4.5rem;
    margin-top: 5.5rem;
  }
}

.p-front-portfolio__development-item-link {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "arrow" "title" "description";
  align-items: center;
  row-gap: 1.25rem;
  text-decoration: none;
  border-bottom: 0.0625rem solid var(--border);
  padding-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-front-portfolio__development-item-link {
    grid-template-columns: 3.125rem minmax(0, 1fr);
    grid-template-areas: "arrow title" "arrow description";
    column-gap: 2.875rem;
    padding-bottom: 2rem;
  }
}
.p-front-portfolio__development-item-link:hover .arrow {
  background-color: var(--secondary);
}
.p-front-portfolio__development-item-link:hover .arrow:before {
  filter: invert(99%) sepia(2%) saturate(1629%) hue-rotate(179deg) brightness(98%) contrast(87%);
}
.p-front-portfolio__development-item-link .arrow {
  position: relative;
  grid-area: arrow;
  width: 3.125rem;
  height: 2.375rem;
  border: 0.0625rem solid var(--secondary);
  border-radius: 100%;
  transition: 0.3s;
}
.p-front-portfolio__development-item-link .arrow:before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background-image: url("../images/icons/right-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: invert(69%) sepia(22%) saturate(130%) hue-rotate(169deg) brightness(86%) contrast(86%);
  transition: 0.3s;
}
.p-front-portfolio__development-item-link .title {
  grid-area: title;
  display: flex;
  align-items: flex-start;
  font-weight: 500;
  gap: 0.9375rem;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-front-portfolio__development-item-link .title {
    font-size: 1.5rem;
  }
}
.p-front-portfolio__development-item-link .title span {
  font-weight: 400;
}
.p-front-portfolio__development-item-link .description {
  grid-area: description;
  line-height: 1.8;
  letter-spacing: 0.075em;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-front-portfolio__development-item-link .description {
    font-size: 1rem;
  }
}

/*=============================
Company
=============================*/
.p-front-company {
  position: relative;
  padding: 1rem 0 5rem;
  background-color: var(--background);
}
@media screen and (min-width: 768px) {
  .p-front-company {
    padding: 8rem 0 10rem;
  }
}
.p-front-company .l-inner {
  max-width: 87.5rem;
}

.p-front-company__wrapper {
  position: relative;
  padding: 5rem 0 0;
}
@media screen and (min-width: 768px) {
  .p-front-company__wrapper {
    padding: 7.5rem 0;
  }
}

.p-front-company__bg {
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  border-radius: 0 1rem 1rem 0;
  height: 53%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-front-company__bg {
    bottom: 0;
    width: 50%;
    height: unset;
  }
}
.p-front-company__bg .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-front-company__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7rem;
}
@media screen and (min-width: 768px) {
  .p-front-company__container {
    align-items: center;
    grid-template-columns: 50% minmax(0, 1fr);
    gap: 3rem;
    padding-left: 5%;
  }
}
@media screen and (min-width: 1440px) {
  .p-front-company__container {
    padding-left: 6.875rem;
  }
}

.p-front-company__head {
  max-width: 25.5625rem;
}
.p-front-company__head .p-front-section__subtitle {
  color: var(--surface);
}
.p-front-company__head .p-front-section__text {
  color: var(--surface);
}
.p-front-company__head .c-arrow-link {
  margin-top: 2rem;
  color: var(--surface);
}
@media screen and (min-width: 768px) {
  .p-front-company__head .c-arrow-link {
    margin-top: 5rem;
  }
}
.p-front-company__head .c-arrow-link .c-arrow-link__arrow {
  border-color: var(--surface);
}
.p-front-company__head .c-arrow-link .c-arrow-link__arrow:before {
  filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(326deg) brightness(103%) contrast(104%);
}

.p-front-company__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1.5rem;
  row-gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-front-company__list {
    row-gap: 4.5rem;
  }
}

.p-front-company__item-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: 0.3s;
  border-bottom: 0.0625rem solid var(--border);
  padding-bottom: 1.5rem;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-front-company__item-link {
    font-size: 1.5rem;
    padding-bottom: 2rem;
  }
}
.p-front-company__item-link:hover .arrow {
  background-color: var(--secondary);
}
.p-front-company__item-link:hover .arrow:before {
  filter: invert(99%) sepia(2%) saturate(1629%) hue-rotate(179deg) brightness(98%) contrast(87%);
}
.p-front-company__item-link .arrow {
  position: relative;
  width: 2rem;
  height: 2rem;
  border: 0.0625rem solid var(--secondary);
  border-radius: 100%;
  transition: 0.3s;
}
.p-front-company__item-link .arrow:before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background-image: url("../images/icons/right-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: invert(69%) sepia(22%) saturate(130%) hue-rotate(169deg) brightness(86%) contrast(86%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}

/*=============================
Insights
=============================*/
.p-front-insights {
  position: relative;
  padding: 3rem 0 5rem;
}
@media screen and (min-width: 768px) {
  .p-front-insights {
    padding: 8.5rem 0 10rem;
  }
}
.p-front-insights:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 27.25rem;
  background-image: url("../images/front/insights-bg-sp.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .p-front-insights:before {
    background-image: url("../images/front/insights-bg-pc.svg");
  }
}

.p-front-insights__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media screen and (min-width: 768px) {
  .p-front-insights__container {
    grid-template-columns: 30% minmax(0, 1fr);
    gap: 10%;
  }
}

.p-front-insights__head .c-arrow-link {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-front-insights__head .c-arrow-link {
    margin-top: 4rem;
  }
}

@media screen and (min-width: 768px) {
  .p-front-insights__body {
    padding-top: 10rem;
  }
}

.p-front-insights__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow-anchor: none;
}

.p-front-insights__item {
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(1rem);
  border: 0.0625rem solid var(--border);
  transition: 0.3s;
  overflow-anchor: none;
}
@media screen and (min-width: 768px) {
  .p-front-insights__item {
    padding: 3.4375rem 6.875rem 3.4375rem 3.4375rem;
  }
}

.p-front-insights__item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-shrink: 0;
}

.p-front-insights__item-category {
  display: inline-block;
  padding: 0.375rem 1rem;
  border: 0.0625rem solid var(--border);
  border-radius: 999px;
  background-color: var(--background);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .p-front-insights__item-category {
    padding: 0.6875rem 1.8125rem;
    font-size: 0.875rem;
  }
}

.p-front-insights__item-toggle {
  flex-shrink: 0;
  position: absolute;
  top: 0;
  right: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0 1rem 0 1rem;
  background-color: var(--background);
  border-left: 0.0625rem solid var(--border);
  border-bottom: 0.0625rem solid var(--border);
  pointer-events: none;
  transition: background-color 0.3s;
}
@media screen and (min-width: 768px) {
  .p-front-insights__item-toggle {
    width: 4rem;
    height: 4rem;
  }
}
.p-front-insights__item-toggle::before, .p-front-insights__item-toggle::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.75rem;
  height: 0.125rem;
  background-color: var(--secondary);
  transform: translate(-50%, -50%);
  transition: transform 0.3s, opacity 0.3s;
}
.p-front-insights__item-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.is-open .p-front-insights__item-toggle::after {
  opacity: 0;
}

.p-front-insights__item-question {
  margin-top: 1rem;
  flex-shrink: 0;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: var(--primary);
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-front-insights__item-question {
    margin-top: 1.5rem;
    font-size: 1.25rem;
  }
}
.p-front-insights__item-question > :first-child::before {
  content: "Q.";
  margin-right: 0.25em;
  font-family: "Montserrat", sans-serif;
}
.p-front-insights__item-question u {
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.p-front-insights__item-answer {
  display: grid;
  grid-template-rows: 0fr;
  margin-top: 0;
  transition: grid-template-rows 0.4s ease, margin-top 0.4s ease;
}
.is-open .p-front-insights__item-answer {
  grid-template-rows: 1fr;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .is-open .p-front-insights__item-answer {
    margin-top: 1.5rem;
  }
}

.p-front-insights__item-answer-inner {
  overflow: hidden;
  min-height: 0;
  opacity: 0;
  line-height: 1.8;
  color: var(--primary-80);
  font-size: 0.875rem;
  transition: opacity 0.25s ease;
}
@media screen and (min-width: 768px) {
  .p-front-insights__item-answer-inner {
    font-size: 1rem;
  }
}
.p-front-insights__item-answer-inner > :first-child::before {
  content: "A.";
  margin-right: 0.25em;
  font-family: "Montserrat", sans-serif;
}
.is-open .p-front-insights__item-answer-inner {
  opacity: 1;
  transition: opacity 0.3s ease 0.1s;
}

/*=============================
News
=============================*/
.p-front-news {
  position: relative;
  background-color: var(--background);
  padding: 3rem 0 6rem;
}
@media screen and (min-width: 768px) {
  .p-front-news {
    padding: 10rem 0 6rem;
  }
}

.p-front-news__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media screen and (min-width: 768px) {
  .p-front-news__container {
    grid-template-columns: 30% minmax(0, 1fr);
    gap: 10%;
  }
}

.p-front-news__head .c-arrow-link {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-front-news__head .c-arrow-link {
    margin-top: 4rem;
  }
}

@media screen and (min-width: 768px) {
  .p-front-news__body {
    padding-top: 8rem;
  }
}

.p-front-news__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .p-front-news__list {
    gap: 3.5rem;
    min-height: 25rem;
  }
}

.p-front-news__image {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 28%;
  transform: translate(35vw, 60%);
}
@media screen and (min-width: 768px) {
  .p-front-news__image {
    width: 18.75rem;
    transform: translate(6rem, 50%);
  }
}
@media screen and (min-width: 1280px) {
  .p-front-news__image {
    width: 23.875rem;
  }
}

/*=============================
Contact
=============================*/
.p-front-contact {
  position: relative;
  background-color: var(--background);
  overflow: hidden;
  padding: 8rem 0 3rem;
}
@media screen and (min-width: 768px) {
  .p-front-contact {
    padding: 6rem 0 8.5rem;
  }
}
.p-front-contact:before {
  content: "";
  display: block;
  background-image: url("../images/front/contact-bg.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  mix-blend-mode: overlay;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(44%);
  width: 100%;
  height: 25rem;
}
@media screen and (min-width: 768px) {
  .p-front-contact:before {
    width: 100%;
    height: 63.375rem;
  }
}
.p-front-contact .l-inner {
  z-index: 1;
}
.p-front-contact .p-front-section__title {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-front-contact .p-front-section__title {
    font-size: 8rem;
  }
}
.p-front-contact .p-front-section__subtitle {
  text-align: center;
}
.p-front-contact .c-arrow-link.-button {
  width: 90%;
  margin-inline: auto;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-front-contact .c-arrow-link.-button {
    margin-top: 3rem;
    max-width: 22.5rem;
  }
}

.p-front-contact__text {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  line-height: 1.8;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-front-contact__text {
    margin-top: 2.5rem;
  }
}

.p-front-contact .c-arrow-link.-button {
  width: 90%;
  margin-inline: auto;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-front-contact .c-arrow-link.-button {
    margin-top: 3rem;
    max-width: 22.5rem;
  }
}

.p-front-contact__text {
  text-align: center;
  font-family: "Montserrat", sans-serif, sans-serif;
  line-height: 1.8;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-front-contact__text {
    margin-top: 2.5rem;
  }
}

.p-front-contact__list {
  margin-top: 2rem;
  max-width: 59.75rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-front-contact__list {
    margin-top: 3rem;
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-front-contact__item-link {
  position: relative;
  display: block;
  text-decoration: none;
  border: 0.0625rem solid var(--border);
  border-radius: 1rem;
  background-color: var(--surface);
  text-align: center;
  transition: 0.3s;
  padding: 3.5rem 2rem 2rem;
}
@media screen and (min-width: 768px) {
  .p-front-contact__item-link {
    padding: 4.5rem 2rem 3.3rem;
  }
}
.p-front-contact__item-link:hover {
  background-color: var(--secondary);
}
.p-front-contact__item-link:hover .p-front-contact__item-label {
  background-color: var(--secondary);
  color: var(--border);
}
.p-front-contact__item-link:hover .p-front-contact__item-title {
  color: var(--border);
}
.p-front-contact__item-link:hover .p-front-contact__item-title big {
  color: var(--border);
}
.p-front-contact__item-link:hover .p-front-contact__item-arrow {
  background-color: var(--secondary);
}
.p-front-contact__item-link:hover .p-front-contact__item-arrow:before {
  filter: invert(99%) sepia(2%) saturate(1629%) hue-rotate(179deg) brightness(98%) contrast(87%);
}

.p-front-contact__item-label {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--background);
  border-right: 0.0625rem solid var(--border);
  border-bottom: 0.0625rem solid var(--border);
  border-radius: 1rem 0 1rem 0;
  padding: 0.625rem 0.8125rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: 0.3s;
  text-align: center;
  line-height: 1.4;
  width: 12.5rem;
}
@media screen and (min-width: 768px) {
  .p-front-contact__item-label {
    padding: 0.8125rem 1rem;
    font-size: 0.875rem;
    width: 16.25rem;
  }
}

.p-front-contact__item-title {
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.08em;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-front-contact__item-title {
    font-size: 1rem;
  }
}
.p-front-contact__item-title big {
  font-size: 1.5em;
  color: var(--brand);
  transition: 0.3s;
}
.p-front-contact__item-title span {
  font-size: 1.25em;
}

.p-front-contact__item-arrow {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 3.125rem;
  height: 2.3125rem;
  border: 0.0625rem solid var(--border);
  border-radius: 100%;
  transition: 0.3s;
}
.p-front-contact__item-arrow:before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background-image: url("../images/icons/right-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: invert(69%) sepia(22%) saturate(130%) hue-rotate(169deg) brightness(86%) contrast(86%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.p-front-contact__download {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  width: 100%;
  max-width: 32.5rem;
  margin-inline: auto;
  background-color: #ac5e40;
  color: var(--surface);
  border-radius: 1rem;
  transition: 0.3s;
  padding: 1rem;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-front-contact__download {
    grid-template-columns: 8.625rem minmax(0, 1fr);
    gap: 3rem;
    margin-top: 15rem;
  }
}
.p-front-contact__download:hover {
  opacity: 0.8;
}

.p-front-contact__download-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  text-decoration: underline;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-front-contact__download-title {
    font-size: 1.125rem;
  }
}

.p-front-contact__download-text {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-front-contact__download-text {
    font-size: 1.5rem;
  }
}
.p-front-contact__download-text:after {
  content: "";
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  background-image: url("../images/icons/right-triangle.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/*=============================
News Archive
=============================*/
/*=============================
News list
=============================*/
.p-news-list__wrapper {
  padding-top: 3.25rem;
}
@media screen and (min-width: 424px) {
  .p-news-list__wrapper {
    padding-top: 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .p-news-list__wrapper {
    padding-top: 2.875rem;
  }
}

.p-news-list__item {
  transition: background 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-news-list__item:first-child .c-news {
    padding-top: 5rem;
  }
}
.p-news-list__item:hover {
  background: rgba(255, 214, 0, 0.1);
}
.p-news-list__item:hover .p-news-list .c-news__arrow {
  background: #283747;
  border: 0.0625rem solid #939ba3;
}
.p-news-list__item:hover .p-news-list .c-news__arrow::before {
  background-image: url("../images/icons/button-arrow_w.svg");
}

.p-news-list {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 0.0625rem solid #e7e8eb;
}
.p-news-list .c-news {
  display: flex;
  flex-direction: column;
  padding-block: 2rem 1.5rem;
  gap: 0;
}
@media screen and (min-width: 768px) {
  .p-news-list .c-news {
    display: grid;
    grid-template-columns: 6.25rem 16.25rem minmax(0, 1fr) 3.125rem;
    grid-template-rows: auto 1fr;
    grid-template-areas: "time image cat arrow" "time image title arrow";
    column-gap: 0.625rem;
    row-gap: 1rem;
    align-items: start;
    padding: 3rem 1rem 3rem 0.6875rem;
  }
}
.p-news-list .c-news__head {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .p-news-list .c-news__head {
    display: contents;
  }
}
.p-news-list .c-news__image {
  flex-shrink: 0;
  width: 46.7%;
  height: auto;
  border: 0.1875rem solid #e7e8eb;
}
@media screen and (min-width: 768px) {
  .p-news-list .c-news__image {
    grid-area: image;
    width: 100%;
  }
}
.p-news-list .c-news__info {
  display: flex;
  flex-direction: column;
  gap: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .p-news-list .c-news__info {
    display: contents;
  }
}
.p-news-list .c-news__time {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
  color: #283747;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08rem;
}
@media screen and (min-width: 768px) {
  .p-news-list .c-news__time {
    grid-area: time;
    font-size: 0.75rem;
    margin-right: 0.6875rem;
    margin-top: 1rem;
  }
}
.p-news-list .c-news__time .c-news__time-year {
  font-size: 1rem;
}
.p-news-list .c-news__time .c-news__time-date {
  font-size: 1.5rem;
  margin-top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-news-list .c-news__time .c-news__time-date {
    font-size: 1.75rem;
  }
}
.p-news-list .c-news__cat {
  width: fit-content;
  color: #283747;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06rem;
  padding: 0.5rem 0.9375rem;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .p-news-list .c-news__cat {
    grid-area: cat;
    font-size: 0.875rem;
    margin-left: 1.375rem;
  }
}
.p-news-list .c-news__title {
  margin-top: 1rem;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-news-list .c-news__title {
    grid-area: title;
    margin-left: 1.375rem;
    margin-top: 0;
    font-size: 1.125rem;
  }
}
.p-news-list .c-news__arrow {
  position: relative;
  display: block;
  align-self: flex-end;
  width: 3.125rem;
  height: 2.3125rem;
  border: 0.0625rem solid var(--secondary);
  border-radius: 100%;
  margin-top: 0.25rem;
  transition: background 0.3s ease, border 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-news-list .c-news__arrow {
    grid-area: arrow;
    height: 2.1875rem;
    margin-inline: auto;
    margin-top: auto;
    margin-bottom: 0;
  }
}

.list-text_prev {
  color: #939ba3;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 100;
  line-height: normal;
  text-align: center;
  margin-top: 1.5rem;
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .list-text_prev {
    font-size: 3rem;
    margin-top: 3rem;
    padding-bottom: 5rem;
    text-align: left;
  }
}

.p-news-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.1875rem;
  list-style: none;
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-news-pagination {
    padding-bottom: 10rem;
    gap: 1.25rem;
  }
}
.p-news-pagination .item {
  list-style: none;
}
.p-news-pagination .link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  border-radius: 999px;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--secondary);
  transition: 0.3s;
}
.p-news-pagination .link:hover, .p-news-pagination .link.is-active {
  background-color: #283747;
  border-color: #283747;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-news-pagination .link {
    font-size: 1rem;
  }
}
.p-news-pagination .prev {
  background: url(../images/icons/pagi-nation_prev.svg) no-repeat center/contain;
  width: 2.5rem;
  height: 2.5rem;
  transition: background 0.2s ease;
}
.p-news-pagination .prev:hover {
  background: url(../images/icons/pagi-nation_prev-b.svg) no-repeat center/contain;
}
.p-news-pagination .next {
  background: url(../images/icons/pagi-nation_next.svg) no-repeat center/contain;
  width: 2.5rem;
  height: 2.5rem;
}
.p-news-pagination .next:hover {
  background: url(../images/icons/pagi-nation_next-b.svg) no-repeat center/contain;
}

.p-news-empty {
  letter-spacing: 0.08em;
  line-height: 1.8;
  color: var(--secondary);
  font-size: 1.125rem;
  text-align: center;
  padding-block: 6.25rem;
}

.p-news-filter {
  width: 86.7%;
}
@media screen and (min-width: 768px) {
  .p-news-filter {
    width: 90%;
  }
}

.p-news-filter__title {
  color: #939ba3;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 100;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-news-filter__title {
    font-size: 3rem;
    text-align-last: left;
  }
}

.p-news-filter__content {
  position: relative;
  margin-top: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-news-filter__content {
    margin-top: 3.625rem;
  }
}

.p-news-filter__list {
  display: flex;
  flex-direction: row;
  gap: 0.3125rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-news-filter__list {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    justify-content: start;
    gap: 0.25rem;
    width: fit-content;
  }
}

.p-news-filter__item {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.07rem;
  border-radius: 0.5rem 0.5rem 0 0;
  overflow: hidden;
  background: #e7e8eb;
  border: 0.0625rem solid #e7e8eb;
  border-bottom: none;
  width: calc((100% - 0.9375rem) / 4);
  transform: translateY(0.0625rem);
}
@media screen and (min-width: 768px) {
  .p-news-filter__item {
    font-size: 0.875rem;
    border-radius: 0.25rem 0.25rem 0 0;
    width: 100%;
  }
}
.p-news-filter__item.is-active {
  background: #f7f9fa;
  margin-top: -0.5rem;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-news-filter__item.is-active {
    margin-top: -0.625rem;
  }
}
.p-news-filter__item.is-active .p-news-filter__link {
  padding-block: 0.875rem 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-news-filter__item.is-active .p-news-filter__link {
    padding-block: 1.5rem 0.875rem;
  }
}

.p-news-filter__link {
  color: #283747;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0.875rem 0.9375rem 0.8125rem 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-news-filter__link {
    padding: 1rem 2.5rem;
  }
}

/*=============================
News Single
=============================*/
.p-news-single {
  position: relative;
  background-color: var(--background);
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-news-single {
    padding-bottom: 10rem;
  }
}

.p-news-single__container {
  position: relative;
  z-index: 2;
  max-width: 56.25rem;
  margin: 0 auto;
}

.p-news-single__head {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-news-single__head {
    margin-bottom: 3rem;
  }
}

.p-front-news__item-cat {
  color: #283747;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.06rem;
  padding: 0.5rem 0.9375rem;
  border-radius: 6.25rem;
  border: 0.0625rem solid var(--Border, #e7e8eb);
  background: #fff;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .p-front-news__item-cat {
    font-size: 0.875rem;
    letter-spacing: 0.07rem;
  }
}

.p-news-single__title {
  margin-top: 1rem;
  color: #283747;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.12rem;
}
@media screen and (min-width: 768px) {
  .p-news-single__title {
    margin-top: 1.5rem;
    font-size: 2rem;
    letter-spacing: 0.16rem;
  }
}

.p-front-news__item-time {
  color: #939ba3;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.08rem;
  margin-top: 1.4375rem;
}
@media screen and (min-width: 768px) {
  .p-front-news__item-time {
    font-size: 1.25rem;
    letter-spacing: 0.1rem;
    margin-top: 1.5rem;
  }
}

.p-news-single__thumbnail {
  margin-top: 2rem;
  margin-inline: auto;
  width: 96%;
  overflow: hidden;
  border: 0.0625rem solid var(--border);
  border-radius: 0.5rem;
  max-width: 37.5rem;
}
@media screen and (min-width: 768px) {
  .p-news-single__thumbnail {
    width: 100%;
    margin-inline: 0;
  }
}
.p-news-single__thumbnail img {
  object-fit: cover;
  width: 100%;
  height: auto;
  aspect-ratio: 325/211;
}
@media screen and (min-width: 768px) {
  .p-news-single__thumbnail img {
    aspect-ratio: 600/390;
  }
}

.p-news-single__content {
  margin-top: 2rem;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-news-single__content {
    margin-top: 3rem;
  }
}

.p-news-single__nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  margin-top: 3.75rem;
  padding-top: 1.5rem;
  border-top: 0.0625rem solid var(--border);
}
@media screen and (min-width: 768px) {
  .p-news-single__nav {
    margin-top: 5rem;
    padding-top: 4rem;
  }
}

.p-news-single__nav-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  color: #283747;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 100;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-news-single__nav-link {
    font-size: 2.5rem;
  }
}
.p-news-single__nav-link.-prev {
  grid-column: 1;
  justify-self: start;
}
.p-news-single__nav-link.-prev:hover .arrow-prev {
  background: url(../images/icons/pagi-nation_prev-b.svg) no-repeat center/contain;
}
.p-news-single__nav-link.-list {
  grid-column: 2;
  justify-self: center;
  padding: 0.75rem 1rem 0.8125rem;
  border-radius: 6.25rem;
  border: 0.0625rem solid #e7e8eb;
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  transition: background 0.3s, border 0.3s;
}
.p-news-single__nav-link.-list:hover {
  background: #283747;
  border: 0.0625rem solid #283747;
}
.p-news-single__nav-link.-list:hover .p-news-single__nav-link-icon {
  background: url(../images/icons/list-w.svg) no-repeat center/contain;
}
.p-news-single__nav-link.-list:hover .p-news-single__nav-link-text {
  color: #fff;
}
.p-news-single__nav-link.-list .p-news-single__nav-link-icon {
  width: 1rem;
  height: 1rem;
  background: url(../images/icons/list-b.svg) no-repeat center/contain;
  transition: background 0.3s;
}
@media screen and (min-width: 768px) {
  .p-news-single__nav-link.-list .p-news-single__nav-link-icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.p-news-single__nav-link.-list .p-news-single__nav-link-text {
  color: #283747;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.06rem;
  transition: color 0.3s;
}
@media screen and (min-width: 768px) {
  .p-news-single__nav-link.-list .p-news-single__nav-link-text {
    font-size: 1rem;
    letter-spacing: 0.08rem;
  }
}
.p-news-single__nav-link.-next {
  grid-column: 3;
  justify-self: end;
}
.p-news-single__nav-link.-next:hover .arrow-next {
  background: url(../images/icons/pagi-nation_next-b.svg) no-repeat center/contain;
}
.p-news-single__nav-link .arrow-prev {
  background: url(../images/icons/pagi-nation_prev.svg) no-repeat center/contain;
  width: 2.5rem;
  height: 2.5rem;
  transition: background 0.3s ease;
}
.p-news-single__nav-link .arrow-next {
  background: url(../images/icons/pagi-nation_next.svg) no-repeat center/contain;
  width: 2.5rem;
  height: 2.5rem;
  transition: background 0.3s ease;
}

.p-documentation pre {
  padding: 1em;
  border: solid 0.0625rem var(--darkgrey);
  background: #25292f;
  overflow-x: auto;
}
.p-documentation code {
  color: var(--white);
  font-size: 0.9em;
  line-height: 1.5;
}
.p-documentation .c-text {
  line-height: 1.4;
}
.p-documentation .c-title-h5 {
  color: var(--primary);
}
.p-documentation .c-title-h3__sub {
  font-size: 0.7em;
}
.p-documentation p {
  font-size: 1.25rem;
}

.p-documentation-container {
  max-width: 82.5rem;
  width: 90%;
  margin: 0 auto;
}

.p-documentation-sidebar {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-documentation-sidebar {
    position: sticky;
    top: 5rem;
    height: calc(100vh - 5rem);
    padding: 2rem 1rem 0;
    width: 25%;
    border-right: 0.0625rem solid var(--lightgrey);
  }
}
.p-documentation-sidebar .title:not(:first-child) {
  border-top: solid 0.0625rem var(--lightgrey);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}
.p-documentation-sidebar ul li {
  margin-top: 1rem;
}
.p-documentation-sidebar ul li button {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.p-documentation-sidebar ul li button::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 0.125rem;
  background: var(--brand);
  bottom: -0.25rem;
  transform: scale(0, 1);
  transition: transform 0.3s;
  transform-origin: center top;
}
.p-documentation-sidebar ul li button:hover::after {
  transform: scale(1, 1);
}
.p-documentation-sidebar ul li button.is-active {
  color: var(--brand);
}

.p-documentation-content {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-documentation-content {
    width: 75%;
  }
}

.p-documentation-page {
  display: none;
  padding: 2rem 0;
}
.p-documentation-page.is-active {
  display: block;
}

.p-documentation-list {
  margin-top: 1rem;
  padding-left: 1.5rem;
}
.p-documentation-list li {
  margin-top: 0.5rem;
}
.p-documentation-list dl > * {
  margin-top: 1rem;
  line-height: 1.5;
}

ol.p-documentation-list li {
  list-style: auto;
}

ul.p-documentation-list li {
  list-style: circle;
}

.p-documentation-stack {
  margin-top: calc(-header-height-pc + 2rem);
  padding-top: 5rem;
}
.p-documentation-stack > * {
  margin-top: 1rem;
}

.p-documentation-navigation .nav-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(6.25rem, 1fr));
}
.p-documentation-navigation .nav-item {
  text-align: center;
  padding: 1rem 0;
}
.p-documentation-navigation .nav-item:not(:last-child) {
  border-right: solid 0.0625rem var(--primary);
}
.p-documentation-navigation .link {
  text-decoration: none;
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.p-documentation-navigation .link::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 0.125rem;
  background: #000;
  bottom: -0.25rem;
  transform: scale(0, 1);
  transition: transform 0.3s;
  transform-origin: right top;
}
.p-documentation-navigation .link:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

.p-documentation-demo {
  border: solid 0.0625rem var(--lightgrey);
  border-radius: 0.3125rem;
  padding: 2rem;
}

.p-documentation-page.-sass p {
  line-height: 1.5;
}
.p-documentation-page.-sass .aspect-ratio--demo-block {
  width: 50%;
}
.p-documentation-page.-sass .aspect-ratio {
  position: relative;
}
.p-documentation-page.-sass .aspect-ratio::before {
  content: "";
  float: left;
  padding-top: 56.25%;
}
.p-documentation-page.-sass .aspect-ratio::after {
  content: "";
  display: block;
  clear: both;
}
.p-documentation-page.-sass .aspect-ratio > :first-child {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  object-fit: cover;
}
.p-documentation-page.-sass .centering--parent {
  width: 50%;
  border: solid 0.0625rem var(--primary);
  height: 15.625rem;
  position: relative;
}
.p-documentation-page.-sass .centering--child {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: dotted 0.125rem var(--primary);
  padding: 0.5em;
}
.p-documentation-page.-sass .triangle--demo-block {
  border: solid 0.0625rem var(--primary);
  padding: 3rem;
  width: 30%;
}
.p-documentation-page.-sass .triangle {
  width: fit-content;
  color: var(--white);
  padding: 1rem 2rem;
  background-color: var(--brand);
  position: relative;
  margin: 0 auto;
}
.p-documentation-page.-sass .triangle.-upward:before {
  content: "";
  display: inline-block;
  position: absolute;
  border-style: solid;
  height: 0;
  width: 0;
  border-color: transparent transparent var(--brand) transparent;
  border-width: 0 0.625rem 0.9375rem 0.625rem;
  bottom: 100%;
  left: calc(50% - 0.625rem);
}
.p-documentation-page.-sass .triangle.-rightward:before {
  content: "";
  display: inline-block;
  position: absolute;
  border-style: solid;
  height: 0;
  width: 0;
  border-color: transparent transparent transparent var(--brand);
  border-width: 0.625rem 0 0.625rem 0.9375rem;
  left: 100%;
  top: calc(50% - 0.625rem);
}
.p-documentation-page.-sass .triangle.-downward:before {
  content: "";
  display: inline-block;
  position: absolute;
  border-style: solid;
  height: 0;
  width: 0;
  border-color: var(--brand) transparent transparent transparent;
  border-width: 0.9375rem 0.625rem 0 0.625rem;
  top: 100%;
  left: calc(50% - 0.625rem);
}
.p-documentation-page.-sass .triangle.-leftward:before {
  content: "";
  display: inline-block;
  position: absolute;
  border-style: solid;
  height: 0;
  width: 0;
  border-color: transparent var(--brand) transparent transparent;
  border-width: 0.625rem 0.9375rem 0.625rem 0;
  right: 100%;
  top: calc(50% - 0.625rem);
}
.p-documentation-page.-sass .underline--demo-block {
  display: inline-block;
  padding: 2rem 3rem;
  border: solid 0.0625rem var(--primary);
}
.p-documentation-page.-sass .underline--fade-top {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.p-documentation-page.-sass .underline--fade-top::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 0.125rem;
  background: #000;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  bottom: 0.125rem;
}
.p-documentation-page.-sass .underline--fade-top:hover::after {
  bottom: -0.25rem;
  opacity: 1;
  visibility: visible;
}
.p-documentation-page.-sass .underline--fade-bottom {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.p-documentation-page.-sass .underline--fade-bottom::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 0.125rem;
  background: #000;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  bottom: -0.5rem;
}
.p-documentation-page.-sass .underline--fade-bottom:hover::after {
  bottom: -0.25rem;
  opacity: 1;
  visibility: visible;
}
.p-documentation-page.-sass .underline--left-to-right {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.p-documentation-page.-sass .underline--left-to-right::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 0.125rem;
  background: #000;
  bottom: -0.25rem;
  transform: scale(0, 1);
  transition: transform 0.3s;
  transform-origin: left top;
}
.p-documentation-page.-sass .underline--left-to-right:hover::after {
  transform: scale(1, 1);
}
.p-documentation-page.-sass .underline--right-to-left {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.p-documentation-page.-sass .underline--right-to-left::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 0.125rem;
  background: #000;
  bottom: -0.25rem;
  transform: scale(0, 1);
  transition: transform 0.3s;
  transform-origin: right top;
}
.p-documentation-page.-sass .underline--right-to-left:hover::after {
  transform: scale(1, 1);
}
.p-documentation-page.-sass .underline--left-in-right {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.p-documentation-page.-sass .underline--left-in-right::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 0.125rem;
  background: #000;
  bottom: -0.25rem;
  transform: scale(0, 1);
  transition: transform 0.3s;
  transform-origin: right top;
}
.p-documentation-page.-sass .underline--left-in-right:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}
.p-documentation-page.-sass .underline--right-in-left {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.p-documentation-page.-sass .underline--right-in-left::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 0.125rem;
  background: #000;
  bottom: -0.25rem;
  transform: scale(0, 1);
  transition: transform 0.3s;
  transform-origin: left top;
}
.p-documentation-page.-sass .underline--right-in-left:hover::after {
  transform-origin: right top;
  transform: scale(1, 1);
}
.p-documentation-page.-sass .underline--center {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.p-documentation-page.-sass .underline--center::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 0.125rem;
  background: #000;
  bottom: -0.25rem;
  transform: scale(0, 1);
  transition: transform 0.3s;
  transform-origin: center top;
}
.p-documentation-page.-sass .underline--center:hover::after {
  transform: scale(1, 1);
}
.p-documentation-page.-sass .line-clamp--demo-block {
  display: inline-block;
  border: solid 0.0625rem var(--primary);
  width: 50%;
  padding: 1rem;
}
.p-documentation-page.-sass .line-clamp--default {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.p-documentation-page.-sass .line-clamp--four {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/*=============================
Contact
=============================*/
@media screen and (min-width: 768px) {
  .p-contact .c-title-h1-full__container {
    padding-bottom: 5rem;
  }
}

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

.p-contact__content {
  background-color: #f6f8fa;
}
@media screen and (min-width: 768px) {
  .p-contact__content {
    padding-bottom: 10rem;
  }
}

.p-contact__intro {
  width: 90%;
  max-width: 56.25rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-contact__intro {
    width: 100%;
  }
}

.p-contact__intro-text {
  color: #283747;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.055625rem;
}
@media screen and (min-width: 768px) {
  .p-contact__intro-text {
    font-size: 1rem;
    letter-spacing: 0.08rem;
  }
}

.p-contact__note {
  margin-top: 1.875rem;
  color: #939ba3;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.06rem;
}

/*=============================
Contact steps
=============================*/
.p-contact-step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  margin-top: 3rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-contact-step {
    width: 100%;
    margin-top: 4.375rem;
  }
}

.p-contact-step__item {
  flex-shrink: 0;
  color: #c6ccd1;
}

.p-contact-step__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.0625rem;
  height: 4.0625rem;
  border: 0.0625rem solid #dce1e5;
  border-radius: 50%;
  background-color: #f6f8fa;
  font-size: 0.6875rem;
  transition: border-color 0.3s ease, color 0.3s ease, background-color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-contact-step__circle {
    width: 4.6875rem;
    height: 4.6875rem;
    font-size: 1rem;
  }
}

.p-contact-step__item.is-active,
.p-contact-step__item.is-complete {
  color: #34404c;
}
.p-contact-step__item.is-active .p-contact-step__circle,
.p-contact-step__item.is-complete .p-contact-step__circle {
  border-color: #e5a93c;
  background-color: #fff;
}

.p-contact-step__line {
  width: 1.5rem;
  height: 0.0625rem;
  margin-inline: 0.625rem;
  background-color: #dce1e5;
  transition: background-color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-contact-step__line {
    width: 6.25rem;
    margin-inline: 0.875rem;
  }
}

.p-contact-step__item.is-active + .p-contact-step__line,
.p-contact-step__item.is-complete + .p-contact-step__line {
  background-color: #e5a93c;
}

/*=============================
Contact form wrapper
=============================*/
.p-contact__form-wrapper {
  max-width: 56.25rem;
  margin-top: 2rem;
  margin-inline: auto;
  padding: 3rem 1.5625rem 0;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-contact__form-wrapper {
    margin-top: 5rem;
    padding: 6.25rem 4.6875rem 4.9375rem;
    border: 0.0625rem solid #e7e8eb;
    border-radius: 1rem;
  }
}

.p-contact-form__input-view {
  padding-bottom: 3rem;
  border-bottom: 0.0625rem solid #e7e8eb;
}
@media screen and (min-width: 768px) {
  .p-contact-form__input-view {
    padding-bottom: 0;
    border-bottom: none;
  }
}

.p-contact-form__row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.p-contact-form__row + .p-contact-form__row {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-contact-form__row {
    display: grid;
    grid-template-columns: 10.625rem 1fr;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .p-contact-form__row + .p-contact-form__row {
    margin-top: 1.75rem;
  }
}

@media screen and (min-width: 768px) {
  .p-contact-form__head {
    padding-top: 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .p-contact-form__row--company-type .p-contact-form__head {
    padding-top: 0.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-contact-form__row--privacy .p-contact-form__head {
    padding-top: 0;
  }
}

.p-contact-form__label {
  display: flex;
  gap: 0.3125rem;
  color: #283747;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05rem;
}

.p-contact-form__label-note {
  display: block;
  margin-top: 0.25rem;
  color: #939ba3;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-size: 0.6875rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.034375rem;
}

.p-contact-form__required {
  margin-top: 0.25rem;
  color: #dc010b;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05rem;
}
.p-contact-form__required::before {
  content: "*";
}

.p-contact-form__body {
  min-width: 0;
}

/*=============================
貴社について
=============================*/
.p-contact-form__company-type .wpcf7-form-control {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.p-contact-form__company-type .wpcf7-list-item {
  margin: 0;
}
.p-contact-form__company-type label {
  display: block;
  cursor: pointer;
}
.p-contact-form__company-type input[type=checkbox] {
  position: absolute;
  width: 0.0625rem;
  height: 0.0625rem;
  opacity: 0;
  pointer-events: none;
}
.p-contact-form__company-type .wpcf7-list-item-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.5rem 1.125rem 0.5rem 2.5rem;
  border: 0.0625rem solid #e7e8eb;
  border-radius: 6.25rem;
  background-color: #fff;
  color: #283747;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.0375rem;
  transition: border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-contact-form__company-type .wpcf7-list-item-label {
    min-height: 2.75rem;
    padding: 0.625rem 1.375rem 0.625rem 2.875rem;
    font-size: 0.875rem;
    letter-spacing: 0.04375rem;
  }
}
.p-contact-form__company-type .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.8125rem;
  width: 1.125rem;
  height: 1.125rem;
  border: 0.0625rem solid #d9dee3;
  border-radius: 50%;
  background-color: #f7f9fa;
  transform: translateY(-50%);
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-contact-form__company-type .wpcf7-list-item-label::before {
    left: 1rem;
  }
}
.p-contact-form__company-type .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 1.125rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: transparent;
  transform: translateY(-50%);
  transition: background-color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-contact-form__company-type .wpcf7-list-item-label::after {
    left: 1.3125rem;
  }
}
.p-contact-form__company-type label:hover input[type=checkbox]:not(:checked) + .wpcf7-list-item-label {
  border-color: #dce1e5;
  background-color: #fff;
}
.p-contact-form__company-type input[type=checkbox]:checked + .wpcf7-list-item-label {
  border-color: #dce1e5;
  background-color: #f2f4f6;
  color: #939ba3;
}
.p-contact-form__company-type input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  border-color: #dce1e5;
  background-color: #fff;
}
.p-contact-form__company-type input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  background-color: #939ba3;
}
.p-contact-form__company-type input[type=checkbox]:focus-visible + .wpcf7-list-item-label {
  outline: 0.125rem solid #e5a93c;
  outline-offset: 0.125rem;
}
.p-contact-form__company-type.is-contact-error {
  padding: 0.5rem;
  border: 0.0625rem solid #db4a45;
  border-radius: 0.5rem;
  background-color: rgba(219, 74, 69, 0.04);
}

/*=============================
Name
=============================*/
.p-contact-form__name {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-contact-form__name {
    gap: 1.3125rem;
  }
}

.p-contact-form__name-item {
  min-width: 0;
}

/*=============================
Input
=============================*/
.p-contact-form__input,
.p-contact-form__textarea {
  width: 100%;
  border: 0.0625rem solid #dde2e6;
  border-radius: 0.25rem;
  background-color: #fff;
  color: #939ba3;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.p-contact-form__input::placeholder,
.p-contact-form__textarea::placeholder {
  color: #a7afb6;
}
.p-contact-form__input:focus,
.p-contact-form__textarea:focus {
  outline: none;
  border-color: #e5a93c;
  box-shadow: 0 0 0 0.1875rem rgba(245, 196, 0, 0.12);
}
.p-contact-form__input.is-contact-error,
.p-contact-form__textarea.is-contact-error {
  border-color: #db4a45;
  background-color: rgba(219, 74, 69, 0.04);
}

.p-contact-form__input {
  padding: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-contact-form__input {
    padding: 1.3125rem 1.5rem;
  }
}

.p-contact-form__textarea {
  min-height: 11.25rem;
  padding: 1.25rem;
  resize: vertical;
}

.p-contact-form__input:not(:placeholder-shown):not(:focus),
.p-contact-form__textarea:not(:placeholder-shown):not(:focus) {
  border-color: #d4e0f2;
  background-color: #eef4ff;
  color: #283747;
}

.p-contact-form__input:-webkit-autofill,
.p-contact-form__input:-webkit-autofill:hover,
.p-contact-form__input:-webkit-autofill:focus,
.p-contact-form__input:-webkit-autofill:active,
.p-contact-form__textarea:-webkit-autofill {
  border: 0.0625rem solid #d4e0f2;
  -webkit-text-fill-color: #283747;
  -webkit-box-shadow: 0 0 0 62.5rem #eef4ff inset;
  box-shadow: 0 0 0 62.5rem #eef4ff inset;
  transition: background-color 9999s ease-out;
}

/*=============================
Privacy acceptance
=============================*/
.p-contact-form__acceptance {
  font-size: 0.75rem;
  line-height: 1.8;
}
.p-contact-form__acceptance .wpcf7-list-item {
  margin: 0;
  color: #283747;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05rem;
}
.p-contact-form__acceptance label {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}
.p-contact-form__acceptance input[type=checkbox] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.p-contact-form__acceptance .wpcf7-list-item-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-left: 2.625rem;
}
.p-contact-form__acceptance .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.625rem;
  height: 1.625rem;
  border: 0.0625rem solid #e7e8eb;
  border-radius: 0.125rem;
  background-color: #fff;
  transform: translateY(-50%);
}
.p-contact-form__acceptance .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.4375rem;
  width: 0.75rem;
  height: 0.75rem;
  border: 0.0625rem solid #e7e8eb;
  border-radius: 50%;
  background-color: #f7f9fa;
  transform: translateY(-50%);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.p-contact-form__acceptance input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  border-color: #e7e8eb;
  background-color: #283747;
}
.p-contact-form__acceptance input[type=checkbox]:focus-visible + .wpcf7-list-item-label::before {
  outline: 0.125rem solid #e5a93c;
  outline-offset: 0.125rem;
}
.p-contact-form__acceptance a {
  color: #939ba3;
  text-decoration: underline;
  text-underline-offset: 0.125rem;
}

/*=============================
Error
=============================*/
.p-contact-form__error {
  margin-top: 0.375rem;
  color: #db4a45;
  font-family: "Montserrat", sans-serif;
  font-size: 0.6875rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.025rem;
}

.p-contact-form__button {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

/*=============================
Contact button
=============================*/
.c-contact-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 16.25rem;
  padding: 1.4375rem 3.75rem;
  border: 0;
  border-radius: 6.25rem;
  background-color: #939ba3;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-contact-button {
    max-width: 18.75rem;
    padding: 1.6875rem 3.75rem;
  }
}
.c-contact-button:hover {
  background-color: #263746;
}
.c-contact-button:focus {
  opacity: 1;
}
.c-contact-button:focus-visible {
  outline: 0.125rem solid #e5a93c;
  outline-offset: 0.1875rem;
}

.c-contact-button__arrow {
  position: absolute;
  top: 50%;
  right: 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.8125rem;
  height: 2rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.4);
  border-radius: 100%;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .c-contact-button__arrow {
    width: 3.3125rem;
    height: 2.375rem;
  }
}
.c-contact-button__arrow::before {
  content: "→";
  color: #fff;
  font-size: 0.75rem;
}

.c-contact-button--back {
  padding-inline: 1.875rem;
  border: 0.0625rem solid #9fa7af;
  background-color: #fff;
  color: #5f6973;
}
.c-contact-button--back:hover {
  border-color: #9fa7af;
  background-color: #5f6973;
  color: #fff;
}

.c-contact-button--submit {
  background-color: #939ba3;
  transition: background-color 0.3s ease;
}
.c-contact-button--submit:hover {
  background-color: #263746;
}

/*=============================
Confirm
=============================*/
.p-contact-confirm {
  margin: 0;
}

.p-contact-confirm__row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.p-contact-confirm__row + .p-contact-confirm__row {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-contact-confirm__row + .p-contact-confirm__row {
    margin-top: 5rem;
  }
}
@media screen and (min-width: 768px) {
  .p-contact-confirm__row {
    display: grid;
    grid-template-columns: 9.4375rem 1fr;
    gap: 2.5rem;
  }
}

.p-contact-confirm__term {
  color: #34404c;
  font-size: 1rem;
  font-weight: 500;
}

.p-contact-confirm__description {
  margin: 0;
  color: #939ba3;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  word-break: break-word;
  letter-spacing: 0.05rem;
}
.p-contact-confirm__description span + span {
  margin-left: 0.5rem;
}

.p-contact-confirm__description--message {
  white-space: pre-wrap;
}

.p-contact-form__confirm-buttons {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-contact-form__confirm-buttons {
    flex-direction: row;
    justify-content: center;
    margin-top: 5.1875rem;
  }
}
.p-contact-form__confirm-buttons .c-contact-button,
.p-contact-form__confirm-buttons .p-contact-form__submit {
  width: 100%;
  max-width: 18.75rem;
}
.p-contact-form__confirm-buttons .c-contact-button {
  width: 100%;
}
.p-contact-form__confirm-buttons .wpcf7-submit {
  width: 100%;
}

.p-contact-form__submit {
  position: relative;
}
.p-contact-form__submit .wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: calc(100% + 0.5rem);
  margin: 0;
  transform: translateY(-50%);
}

.p-contact-confirm__term--required {
  display: flex;
  align-items: flex-start;
  gap: 0.25rem;
}
.p-contact-confirm__term--required::after {
  content: "*必須";
  margin-top: 0.125rem;
  color: #dc010b;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05rem;
}

.p-contact-form__confirm-view {
  padding-bottom: 3.0625rem;
  border-bottom: 0.0625rem solid #e7e8eb;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .p-contact-form__confirm-view {
    padding-bottom: 0;
    border-bottom: 0;
    margin-bottom: 0;
  }
}

/*=============================
Confirm acceptance
=============================*/
.p-contact-confirm__acceptance {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.p-contact-confirm__acceptance-box {
  position: relative;
  flex-shrink: 0;
  width: 1.625rem;
  height: 1.625rem;
  border: 0.0625rem solid #e7e8eb;
  border-radius: 0.125rem;
  background-color: #fff;
}
.p-contact-confirm__acceptance-box::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.75rem;
  height: 0.75rem;
  border: 0.0625rem solid #e7e8eb;
  border-radius: 50%;
  background-color: #283747;
  transform: translate(-50%, -50%);
}

.p-contact-confirm__acceptance-text {
  color: #66717b;
  font-size: 0.8125rem;
  line-height: 1.8;
}

/*=============================
Complete
=============================*/
.p-contact-complete {
  padding-bottom: 3rem;
  border-bottom: 0.0625rem solid #e7e8eb;
  margin-bottom: 1rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-contact-complete {
    padding-bottom: 0;
    border-bottom: 0;
    margin-bottom: 0;
  }
}
.p-contact-complete .c-contact-button {
  padding-block: 0.8125rem;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .p-contact-complete .c-contact-button {
    padding-block: 1.25rem;
  }
}

.p-contact-complete__title {
  color: #283747;
  font-size: 1.25rem;
  font-weight: 500;
}

.p-contact-complete__button {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-contact-complete__button {
    margin-top: 3.75rem;
  }
}

.p-contact-complete__text {
  margin-top: 1.75rem;
  color: #283747;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.04375rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-contact-complete__text {
    margin-top: 2.6875rem;
    letter-spacing: 0.05rem;
  }
}
.p-contact-complete__text .small {
  margin-top: 1.875rem;
  color: #939ba3;
  font-size: 0.875rem;
  letter-spacing: 0.04375rem;
}

/*=============================
Contact Form 7
=============================*/
.wpcf7-not-valid-tip {
  margin-top: 0.375rem;
  color: #db4a45;
  font-family: "Montserrat", sans-serif;
  font-size: 0.6875rem;
}

.wpcf7-response-output {
  margin: 1.5rem 0 0 !important;
  padding: 0.875rem !important;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  line-height: 1.7;
}

[hidden] {
  display: none !important;
}

.p-lower-title {
  margin-top: -4rem;
  background: #f7f9fa;
}
@media screen and (min-width: 768px) {
  .p-lower-title {
    margin-top: -5rem;
  }
}
.p-lower-title .c-title-h1-full__image {
  height: auto;
}
.p-lower-title .c-title-h1-full__container {
  padding-block: 6.125rem 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-lower-title .c-title-h1-full__container {
    padding-block: 9.875rem 10rem;
  }
}
.p-lower-title .c-title-h1-full_breadcrumb {
  flex-wrap: wrap;
  column-gap: 1rem;
}
.p-lower-title .c-title-h1-full_breadcrumb__link {
  color: #283747;
}
.p-lower-title .c-title-h1-full_breadcrumb__item:not(:last-child):after {
  border-top: 1px solid #283747;
  border-right: 1px solid #283747;
}
.p-lower-title .c-title-h1-full_breadcrumb__text {
  color: #939ba3;
  opacity: 1;
  font-size: 1rem;
}
.p-lower-title .c-title-h1-full_breadcrumb__text-title {
  color: #939ba3;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.06rem;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-lower-title .c-title-h1-full_breadcrumb__text-title {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.05rem;
  }
}
.p-lower-title .c-title-h1-full__main {
  color: #e5a93c;
  font-size: 4rem;
  animation: mv-animation 1s ease-out forwards;
}
@media screen and (min-width: 768px) {
  .p-lower-title .c-title-h1-full__main {
    font-size: 6rem;
  }
}
.p-lower-title .c-title-h1-full__sub {
  color: #283747;
  animation: mv-animation 1s ease-out forwards;
}

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

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

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

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

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

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

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

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

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

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

.u-spacer10 {
  padding-top: 20vw;
}
@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-outfit {
  font-family: "Outfit", sans-serif !important;
}

.u-f-black {
  font-weight: 900 !important;
}

.u-f-bold {
  font-weight: bold !important;
}

.u-f-medium {
  font-weight: 500 !important;
}

.u-f-normal {
  font-weight: 400 !important;
}

.u-f-thin {
  font-weight: 300 !important;
}

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

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

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

.u-c-grad {
  background: -webkit-linear-gradient(0deg, #acb6e5, #86fde8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.u-underline {
  text-decoration: underline;
}

.sp-only {
  display: block;
}
@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

.pc-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-only {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */