@charset "UTF-8";
/*-----------ベース -----------*/
:root {
  --yellow: #ffef00;
  --lightyellow: #f9f2bb;
  --blue: #0092f1;
  --navy: #053e62;
  --lightblue: #e9f0f7;
  --lightgreen: #dcedd0;
  --red: #fc0000;
  --orange: #e83b18;
  --white: #fff;
  --offwhite: #f9f9f9;
  --black: #000;
  --grey: #d4dde2;
  --darkgrey: #848c8f;
  --lightgrey: #F4F4F1;
  --ivory: #f5f1eb;
  --green: #23613A;
  --darkyellow: #B7A263;
  --brown: #34260D;
  --lightbrown: #8E8473;
  --main-c: var(--green);
  --base-c: var(--offwhite);
  --accent-c: var(--darkyellow);
  --text-c: var(--brown);
  --text-sub-c: var(--lightbrown);
  --bg-c: var(--lightgrey);
  --border-c: var(--grey);
}

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

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

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

#splash {
  z-index: 8;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

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

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

del {
  text-decoration: line-through;
}

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

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

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

input,
select {
  vertical-align: middle;
}

i {
  font-style: normal;
}

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

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

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

body {
  font-family: "Zen Kaku Gothic Antique", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-weight: 500;
  line-height: 1.75;
  width: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  scrollbar-gutter: stable;
  font-feature-settings: "palt";
  color: var(--brown);
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1rem;
  }
}
body.is-fixed {
  overflow: hidden;
  padding-right: 0;
}

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 {
  font-weight: bold;
  line-height: 1.45;
}

h1 {
  font-size: 3.75rem;
}

h2 {
  font-size: 3.375rem;
}

h3 {
  font-size: 2.25rem;
}

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

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

h6 {
  font-size: 1.125rem;
}

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

.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;
  transform: translateY(100%);
  opacity: 0;
}
@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(--base-c);
  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(--main-c) 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(--main-c);
}
@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.-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(--main-c);
  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(--main-c);
}

.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(--main-c);
  border-radius: 0.3125rem;
  color: var(--main-c);
  padding: 0.625rem;
  transition: 0.3s;
}
.l-archive__category .link:hover {
  background-color: var(--white);
  color: var(--main-c);
}
.l-archive__category .link.is-active {
  background-color: var(--main-c);
  color: var(--white);
}

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

.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(--main-c);
  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(--main-c);
  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(--main-c);
}

.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: 4.5625rem;
}
@media screen and (min-width: 768px) {
  .l-article__toc-content {
    top: 8.125rem;
  }
}
.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: 4.5625rem;
}
@media screen and (min-width: 768px) {
  .l-editor-wrapper {
    margin-top: 8.125rem;
  }
}

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

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

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

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

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

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

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

.l-overlay {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  position: fixed;
  top: 0;
  right: -100%;
  transition: opacity 0.6s;
}
.l-overlay.is-open {
  right: 0;
  opacity: 1;
}

.l-footer {
  overflow: hidden;
  margin-top: -1.875rem;
}
@media screen and (min-width: 768px) {
  .l-footer {
    margin-top: -6.25rem;
  }
}

.footer-contact__wrapper {
  background-color: var(--bg-c);
  border-radius: 2.5rem 2.5rem 0 0;
  padding-block: 4.0625rem 3.75rem;
}
@media screen and (min-width: 768px) {
  .footer-contact__wrapper {
    border-radius: 5rem 5rem 0 0;
    padding-block: 9.375rem 5rem;
  }
}

.footer-contact__inner {
  width: 91%;
  max-width: 87.5rem;
  margin: 0 auto;
}

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

.footer-contact__head .explanation {
  font-size: 0.875rem;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .footer-contact__head .explanation {
    font-size: 1.5rem;
    line-height: 1.4;
  }
}

.footer-contact__list {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 1.25rem;
  padding-block: 0.5rem 0.625rem;
  padding-inline: 1.25rem;
  margin-top: 1.5625rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer-contact__list {
    flex-direction: unset;
    padding-block: 1.75rem;
    padding-inline: 2.5rem 3.75rem;
    margin-top: 0;
    width: fit-content;
  }
}

.footer-contact__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: 1.625rem 1.875rem;
  position: relative;
  flex-grow: 1;
}
@media screen and (min-width: 768px) {
  .footer-contact__item {
    padding-block: 1rem 1.25rem;
  }
}
.footer-contact__item .text {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .footer-contact__item .text {
    font-size: 1.25rem;
  }
}
.footer-contact__item .tel {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .footer-contact__item .tel {
    gap: 0.625rem;
    margin-top: 2.1875rem;
    font-size: 2.875rem;
    pointer-events: none;
  }
}
.footer-contact__item .icon {
  width: 1.6875rem;
  height: 1.8125rem;
}
@media screen and (min-width: 768px) {
  .footer-contact__item .icon {
    width: 2.375rem;
    height: 2.5rem;
  }
}
.footer-contact__item .time {
  color: var(--text-sub-c);
  margin-top: 0.3125rem;
  flex-grow: 1;
  line-height: 1.45;
}
.footer-contact__item .p-front-button {
  gap: 0.625rem;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .footer-contact__item .p-front-button {
    gap: 1rem;
    padding-block: 1.375rem;
    padding-inline: 3.75rem 1.25rem;
  }
}
.footer-contact__item .arrow-circle {
  border: solid 0.0625rem #fff;
}
.footer-contact__item .arrow {
  background-image: url("../images/icons/arrow-wht.png");
}

.footer-contact__item:first-child {
  padding-block: 1.625rem 2.625rem;
}
.footer-contact__item:first-child::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.75rem;
  background-image: radial-gradient(circle, #67AF6D 0.125rem, transparent 0.125rem);
  background-size: 0.75rem 0.75rem;
  background-repeat: repeat-x;
  background-position: left bottom;
}
@media screen and (min-width: 768px) {
  .footer-contact__item:first-child {
    padding-block: 1rem 1.25rem;
    padding-right: 2.5rem;
    margin-right: 2.5rem;
  }
  .footer-contact__item:first-child::after {
    bottom: unset;
    left: unset;
    top: 0;
    right: 0;
    width: 0.75rem;
    height: 100%;
    background-image: radial-gradient(circle, #67AF6D 0.125rem, transparent 0.125rem);
    background-size: 0.75rem 0.75rem;
    background-repeat: repeat-y;
    background-position: right bottom;
  }
}

.footer-menu {
  position: relative;
  padding-bottom: 1.125rem;
  background-color: var(--bg-c);
}
@media screen and (min-width: 768px) {
  .footer-menu {
    padding-bottom: 1.5rem;
  }
}

.footer-menu__contents {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .footer-menu__contents {
    flex-direction: unset;
    align-items: flex-start;
  }
}

.footer-menu__contents-head {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .footer-menu__contents-head {
    margin-top: 0;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.625rem;
  font-weight: bold;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .footer-logo {
    font-size: 1.125rem;
  }
}
.footer-logo:hover {
  opacity: 0.6;
}
.footer-logo .image {
  width: 13.4375rem;
}
@media screen and (min-width: 768px) {
  .footer-logo .image {
    width: 22.125rem;
  }
}

.footer-corp {
  background-color: #fff;
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  width: fit-content;
  border-radius: 3.125rem;
  margin-top: 1.25rem;
  margin-inline: auto;
  padding-block: 0.875rem;
  padding-inline: 1.125rem 0.875rem;
  font-size: 0.75rem;
  filter: drop-shadow(0 0.5rem 0.5rem rgba(0, 0, 0, 0.08));
}
@media screen and (min-width: 768px) {
  .footer-corp {
    margin-top: 3.125rem;
    margin-inline: unset;
    padding: 1.25rem;
    font-size: 1rem;
  }
}
.footer-corp:hover .arrow-circle {
  background-color: var(--main-c);
}
.footer-corp:hover .arrow {
  background-image: url("../images/icons/arrow-wht.png");
}
.footer-corp .image {
  width: 5.75rem;
}
@media screen and (min-width: 768px) {
  .footer-corp .image {
    width: 7.75rem;
  }
}
.footer-corp .arrow-circle {
  border: solid 0.0625rem var(--main-c);
  margin-left: 0.25rem;
}
.footer-corp .arrow {
  background-image: url("../images/icons/arrow-grn.png");
}

.footer-menu__contents-body {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer-menu__contents-body {
    width: unset;
  }
}

.footer-menu__list-wrap {
  display: flex;
  justify-content: space-between;
  max-width: 16.875rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .footer-menu__list-wrap {
    display: block;
    max-width: unset;
    margin: unset;
  }
}

.footer-menu__list {
  display: flex;
  flex-direction: column;
  column-gap: 1.25rem;
  row-gap: 0.8125rem;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .footer-menu__list {
    flex-direction: unset;
    justify-content: flex-end;
    flex-wrap: wrap;
    width: 33.125rem;
  }
  .footer-menu__list + .footer-menu__list {
    margin-top: 1.25rem;
  }
}

.footer-menu__link {
  display: inline-block;
  line-height: 1;
  padding-bottom: 0.8125rem;
  position: relative;
  transition: 0.3s;
}
.footer-menu__link::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0.125rem;
  border-radius: 0.125rem;
  background-color: var(--main-c);
  transition: width 0.3s ease;
}
.footer-menu__link:hover {
  color: var(--main-c);
}
.footer-menu__link:hover::after {
  width: 100%;
}

.footer-menu__link.-external {
  display: inline-flex;
  align-items: center;
  gap: 0.3125rem;
}
.footer-menu__link.-external:hover .icon {
  background-image: url("../images/icons/icon-link-grn.svg");
}
.footer-menu__link.-external .icon {
  width: 0.625rem;
  height: 0.625rem;
  background-image: url("../images/icons/icon-link-brn.svg");
  background-size: cover;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .footer-menu__link.-external .icon {
    width: 0.75rem;
    height: 0.75rem;
  }
}

.sns-list {
  justify-content: center;
  gap: 1.0625rem;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .sns-list {
    justify-content: flex-end;
    gap: 1.25rem;
    margin-top: 2.1875rem;
  }
}

.sns-item {
  padding-bottom: 0.5rem;
}

.sns-link {
  display: block;
  background-size: cover;
  width: 2.625rem;
  height: 2.625rem;
  transition: 0.3s;
  border-radius: 50%;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08);
}
@media screen and (min-width: 768px) {
  .sns-link {
    width: 3.625rem;
    height: 3.625rem;
  }
}

.sns-link.-x {
  background-image: url("../images/icons/icon-x.webp");
}
.sns-link.-x:hover {
  background-image: url("../images/icons/icon-x-on.webp");
}

.sns-link.-ig {
  background-image: url("../images/icons/icon-ig.webp");
}
.sns-link.-ig:hover {
  background-image: url("../images/icons/icon-ig-on.webp");
}

.sns-link.-fb {
  background-image: url("../images/icons/icon-fb.webp");
}
.sns-link.-fb:hover {
  background-image: url("../images/icons/icon-fb-on.webp");
}

.sns-list.-sp {
  display: flex;
}
@media screen and (min-width: 768px) {
  .sns-list.-sp {
    display: none;
  }
}

.sns-list.-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .sns-list.-pc {
    display: flex;
  }
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: clamp(11.063rem, 3.589rem + 31.89vw, 18.875rem);
  font-size: 0.75rem;
  color: #fff;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .footer-bottom {
    margin-top: 13.125rem;
    font-size: 0.875rem;
  }
}
.footer-bottom .policy {
  text-decoration: underline;
  transition: 0.3s;
}
.footer-bottom .policy:hover {
  opacity: 0.6;
}

.footer-deco {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .footer-deco {
    width: 120rem;
    height: 21.25rem;
  }
}
@media screen and (min-width: 1541px) {
  .footer-deco {
    height: unset;
  }
}
@media screen and (min-width: 1921px) {
  .footer-deco {
    width: 100%;
  }
}

.page-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1875rem;
  position: absolute;
  bottom: -1.625rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  width: clamp(7.375rem, 2.472rem + 20.92vw, 12.5rem);
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .page-top {
    left: 55%;
    transform: unset;
    width: 8.8125rem;
  }
}
@media screen and (min-width: 1541px) {
  .page-top {
    left: clamp(52.5rem, 4.217rem + 50.13vw, 64.375rem);
  }
}
@media screen and (min-width: 1921px) {
  .page-top {
    width: 7.5%;
    left: 54%;
  }
}
.page-top:hover {
  transform: translateX(-50%) translateY(-3.125rem);
}
@media screen and (min-width: 768px) {
  .page-top:hover {
    transform: translateY(-3.125rem);
  }
}
.page-top .arrow {
  display: block;
  width: 1.375rem;
  height: 1.375rem;
  background-image: url("../images/icons/arrow-top.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .page-top .arrow {
    width: 1.5625rem;
    height: 1.5625rem;
  }
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4.5625rem;
  transition: 0.5s ease-in-out;
}
@media screen and (min-width: 768px) {
  .l-header {
    height: 8.125rem;
  }
}
.l-header.-unpinned {
  transform: translateY(-100%);
}
@media screen and (min-width: 768px) {
  .l-header.-unpinned {
    transform: translateY(-8.3125rem);
  }
}
@media screen and (min-width: 768px) {
  .l-header.-scrolled {
    height: 6.125rem;
    background-color: rgba(255, 255, 255, 0.9);
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c-button {
  padding: 1.0625rem 2em;
  display: inline-block;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  color: #fff;
  border: 0.125rem solid var(--main-c);
  background-color: var(--main-c);
  border-radius: 5em;
  transition: 0.3s;
  font-size: 0.875rem;
  position: relative;
}
.c-button:hover, .c-button:active {
  color: var(--main-c);
  background-color: #fff;
}
.c-button:hover:after, .c-button:active:after {
  border-color: var(--main-c);
}
.c-button:after {
  content: "";
  height: 0.7em;
  width: 0.7em;
  display: inline-block;
  border-top: solid 0.1875rem var(--red);
  border-right: solid 0.1875rem var(--red);
  transform: rotate(45deg);
  position: absolute;
  right: 8%;
  top: 0;
  bottom: 0;
  margin: auto;
}
.c-button:after {
  border-color: #fff;
}

.c-button--sm, .c-button--sm-border {
  min-width: 9.75rem;
}

.c-button--lg, .c-button--lg-border {
  width: 18.75rem;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .c-button--lg, .c-button--lg-border {
    min-width: 18.75rem;
  }
}

.c-button--sm-border,
.c-button--lg-border {
  color: var(--main-c);
  background-color: #fff;
}
.c-button--sm-border:hover, .c-button--sm-border:active,
.c-button--lg-border:hover,
.c-button--lg-border:active {
  color: #fff;
  background-color: var(--main-c);
}
.c-button--sm-border:hover:after, .c-button--sm-border:active:after,
.c-button--lg-border:hover:after,
.c-button--lg-border:active:after {
  border-color: #fff;
}
.c-button--sm-border:after,
.c-button--lg-border:after {
  border-color: var(--main-c);
}

.c-button--sub {
  min-width: 8.875rem;
  padding: 0.75rem 2em;
}
.c-button--sub:hover, .c-button--sub:active {
  color: var(--white);
  background-color: var(--main-c);
  opacity: 0.6;
}

.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--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(--black);
  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(--black);
  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__wrapper .c-grid {
  grid-gap: 1rem;
}
.c-card__wrapper .c-grid__child {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  grid-gap: 0;
  margin-top: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c-flex {
  display: flex;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media screen and (min-width: 640px) {
  .c-flex__col-1_tab {
    width: calc(8.3333333333% * 1);
  }
  .c-flex__col-2_tab {
    width: calc(8.3333333333% * 2);
  }
  .c-flex__col-3_tab {
    width: calc(8.3333333333% * 3);
  }
  .c-flex__col-4_tab {
    width: calc(8.3333333333% * 4);
  }
  .c-flex__col-5_tab {
    width: calc(8.3333333333% * 5);
  }
  .c-flex__col-6_tab {
    width: calc(8.3333333333% * 6);
  }
  .c-flex__col-7_tab {
    width: calc(8.3333333333% * 7);
  }
  .c-flex__col-8_tab {
    width: calc(8.3333333333% * 8);
  }
  .c-flex__col-9_tab {
    width: calc(8.3333333333% * 9);
  }
  .c-flex__col-10_tab {
    width: calc(8.3333333333% * 10);
  }
  .c-flex__col-11_tab {
    width: calc(8.3333333333% * 11);
  }
  .c-flex__col-12_tab {
    width: calc(8.3333333333% * 12);
  }
}
@media screen and (min-width: 1024px) {
  .c-flex__col-1_pc {
    width: calc(8.3333333333% * 1);
  }
  .c-flex__col-2_pc {
    width: calc(8.3333333333% * 2);
  }
  .c-flex__col-3_pc {
    width: calc(8.3333333333% * 3);
  }
  .c-flex__col-4_pc {
    width: calc(8.3333333333% * 4);
  }
  .c-flex__col-5_pc {
    width: calc(8.3333333333% * 5);
  }
  .c-flex__col-6_pc {
    width: calc(8.3333333333% * 6);
  }
  .c-flex__col-7_pc {
    width: calc(8.3333333333% * 7);
  }
  .c-flex__col-8_pc {
    width: calc(8.3333333333% * 8);
  }
  .c-flex__col-9_pc {
    width: calc(8.3333333333% * 9);
  }
  .c-flex__col-10_pc {
    width: calc(8.3333333333% * 10);
  }
  .c-flex__col-11_pc {
    width: calc(8.3333333333% * 11);
  }
  .c-flex__col-12_pc {
    width: calc(8.3333333333% * 12);
  }
}
.c-grid {
  display: grid;
}
.c-grid img {
  aspect-ratio: 4/3;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (min-width: 768px) {
  .c-header {
    justify-content: center;
    align-items: center;
  }
}

.c-header__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  background-color: #fff;
  padding: 1.25rem 1rem 0.875rem;
  border-radius: 0 0 0.9375rem 0;
  height: 4.5625rem;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-header__logo {
    position: absolute;
    top: 0;
    left: 0;
    padding: 2.5rem 2.125rem 1.875rem;
    border-radius: 0 0 1.875rem 0;
    height: 8.3125rem;
  }
}
.c-header__logo:hover {
  opacity: 0.8;
}
.c-header__logo .logo {
  width: 8.8125rem;
}
@media screen and (min-width: 768px) {
  .c-header__logo .logo {
    width: 14.0625rem;
  }
}
.c-header__logo .site-title {
  font-size: 0.625rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .c-header__logo .site-title {
    margin-top: 0.25rem;
    font-size: 1rem;
  }
}

.c-header__hamburger,
.c-header__nav-close {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--brown);
  width: 5.375rem;
  height: 2.625rem;
  margin-right: 1.25rem;
  margin-bottom: 0.5rem;
  border-radius: 1.5625rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .c-header__hamburger,
  .c-header__nav-close {
    display: none;
  }
}
.c-header__hamburger .title,
.c-header__nav-close .title {
  font-size: 0.875rem;
  margin-top: 0.3125rem;
}

.c-header__nav {
  position: absolute;
  top: 0%;
  left: 100%;
  background-color: var(--bg-c);
  width: 100%;
  padding-block: 0 2.1875rem;
  padding-inline: 1.25rem;
  transition: 0.5s;
  overflow: auto;
}
.c-header__nav.is-open {
  left: 0;
  height: 100svh;
}
@media screen and (min-width: 768px) {
  .c-header__nav {
    position: relative;
    top: auto;
    left: auto;
    background-color: transparent;
    width: auto;
    padding: 0;
  }
}

.c-header__nav-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 4.5625rem;
}
@media screen and (min-width: 768px) {
  .c-header__nav-head {
    display: none;
  }
}

.c-header__nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: 1.875rem 0.625rem;
  height: 100%;
  transition: 0.3s;
}
.c-header__nav-logo:hover {
  opacity: 0.6;
}
.c-header__nav-logo .logo {
  width: 8.8125rem;
}
.c-header__nav-logo .site-title {
  font-size: 0.625rem;
  font-weight: bold;
}

.c-header__nav-close {
  margin-right: 0;
}
.c-header__nav-close .x-mark {
  display: inline-block;
  position: relative;
  width: 0.625rem;
  height: 0.625rem;
  margin-right: 0.1875rem;
}
.c-header__nav-close .x-mark::before,
.c-header__nav-close .x-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.0625rem;
  height: 0.8125rem;
  background: #fff;
}
.c-header__nav-close .x-mark::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.c-header__nav-close .x-mark::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.c-header__nav-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 2.625rem;
}
@media screen and (min-width: 768px) {
  .c-header__nav-list {
    flex-direction: unset;
    align-items: center;
    gap: 1.25rem;
    margin-top: 0;
  }
}

.c-header__nav-item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-header__nav-item {
    width: fit-content;
  }
}

.c-header__nav-item:nth-child(4):hover .title::after {
  background-image: url("../images/icons/icon-link-gld.svg");
}
.c-header__nav-item:nth-child(4) .title {
  padding-right: 0.9375rem;
  position: relative;
}
.c-header__nav-item:nth-child(4) .title::after {
  content: "";
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  background-image: url("../images/icons/icon-link-brn.svg");
  background-size: cover;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin-top: 0.0625rem;
  transition: 0.3s;
}

.c-header__nav-ttl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  position: relative;
  padding-bottom: 1.125rem;
  margin-bottom: 1.125rem;
  border-bottom: solid 0.0625rem #DFDED9;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-header__nav-ttl {
    display: block;
    width: fit-content;
    padding-block: 0.625rem;
    margin-bottom: 0;
    border-bottom: none;
  }
  .c-header__nav-ttl::after {
    content: "";
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0.125rem;
    border-radius: 0.125rem;
    background-color: #B7A263;
    transition: width 0.3s ease;
  }
  .c-header__nav-ttl:hover {
    color: #B7A263;
  }
  .c-header__nav-ttl:hover::after {
    width: 100%;
  }
}
.c-header__nav-ttl:hover {
  opacity: 0.6;
}
@media screen and (min-width: 768px) {
  .c-header__nav-ttl:hover {
    opacity: unset;
  }
}
.c-header__nav-ttl .arrow-circle {
  border: solid 0.0625rem var(--brown);
  width: 2.25rem;
  height: 1.5rem;
}
@media screen and (min-width: 768px) {
  .c-header__nav-ttl .arrow-circle {
    display: none;
  }
}
.c-header__nav-ttl .arrow-circle .arrow {
  width: 0.5rem;
  height: 0.4375rem;
  background-image: url("../images/icons/arrow-brn.png");
}

.entry-btn {
  align-items: center;
  gap: 0.625rem;
  background-color: var(--accent-c);
  color: #fff;
  transition: 0.3s;
}
.entry-btn.-sp {
  display: flex;
  border-radius: 2.1875rem;
  width: fit-content;
  margin: 0.75rem auto 0;
  padding-block: 1.25rem;
  padding-inline: 5rem;
  position: relative;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .entry-btn.-sp {
    display: none;
  }
}
.entry-btn.-sp .icon {
  position: absolute;
  right: 1.25rem;
}
.entry-btn.-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .entry-btn.-pc {
    display: flex;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    padding-block: 1rem;
    padding-inline: 3.125rem 1.875rem;
    border-radius: 1.875rem 0 0 1.875rem;
  }
}
.entry-btn:hover {
  opacity: 0.8;
}
.entry-btn .icon {
  width: 2.1875rem;
  height: 1.375rem;
}

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

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

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

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

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

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

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

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

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

.c-interview__avatar {
  width: 14%;
}

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

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

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

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

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

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

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

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

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

.c-interview-visual__sub-title {
  font-size: 4.2666666667vw;
  position: relative;
  display: inline-block;
}
.c-interview-visual__sub-title::after {
  content: "";
  display: inline-block;
  width: 3.125rem;
  height: 0.0625rem;
  background-color: var(--black);
  position: absolute;
  top: calc(50% - 0.0625rem);
  left: 100%;
}
@media screen and (min-width: 768px) {
  .c-interview-visual__sub-title {
    font-size: 1.875vw;
  }
  .c-interview-visual__sub-title::after {
    width: 5.3125rem;
    left: calc(100% + 1.25rem);
  }
}
@media screen and (min-width: 1280px) {
  .c-interview-visual__sub-title {
    font-size: 2.25rem;
  }
}

.c-interview-visual__title {
  margin-top: 0.625rem;
  font-size: 6.4vw;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .c-interview-visual__title {
    font-size: 2.1875vw;
  }
}
@media screen and (min-width: 1280px) {
  .c-interview-visual__title {
    font-size: 2.625rem;
  }
}

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

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

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

.c-interview-visual__catch {
  font-size: 4.8vw;
}
@media screen and (min-width: 768px) {
  .c-interview-visual__catch {
    font-size: 1.25vw;
  }
}
@media screen and (min-width: 1280px) {
  .c-interview-visual__catch {
    font-size: 1.5rem;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c-main-visual {
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-main-visual {
    min-height: 50vw;
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 5rem;
  }
}

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

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

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

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

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

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

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

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

.c-main-visual__title__text {
  padding: 0.3125rem;
  font-size: 6.9333333333vw;
  font-weight: 400;
  color: var(--white);
  background-color: var(--black);
}
@media screen and (min-width: 768px) {
  .c-main-visual__title__text {
    font-size: 3.125rem;
  }
}

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

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

.c-main-visual__lead {
  font-size: 4.8vw;
}
@media screen and (min-width: 768px) {
  .c-main-visual__lead {
    font-size: 1.75rem;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c-point {
  display: flex;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c-qa__cont {
  position: relative;
}

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

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

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

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

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

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

@keyframes fadeIn {
  0% {
    opacity: 0; /* 透明 */
    transform: translateY(-0.3125rem); /* 上から表示 */
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
/*スクロールダウン全体の場所*/
.c-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 {
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-slider {
    max-width: 80%;
  }
}

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

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

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

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

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

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

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

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

.c-slider-col {
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c-table-col2__row {
  display: flex;
  flex-direction: column;
}
.c-table-col2__row + .c-table-col2__row {
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-table-col2__row {
    display: inherit;
  }
  .c-table-col2__row + .c-table-col2__row {
    margin-top: 0;
  }
}

.c-table-col2__title,
.c-table-col2__cont {
  width: 100%;
  padding: 0.5em 1em;
  border: 0.0625rem solid var(--border-c);
  vertical-align: middle;
}

.c-table-col2__title {
  background-color: var(--main-c);
  color: var(--white);
}
@media screen and (min-width: 768px) {
  .c-table-col2__title {
    width: auto;
    white-space: nowrap;
  }
}

.c-table-col2__cont {
  border-top-color: transparent;
  background-color: var(--white);
}
@media screen and (min-width: 768px) {
  .c-table-col2__cont {
    border-top-color: var(--border-c);
  }
}

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

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

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

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

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

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

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

.p-front-inner {
  width: 91%;
  max-width: 87.5rem;
  margin: 0 auto;
}

.p-front-title .title-h6 {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  font-size: 0.75rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-front-title .title-h6 {
    gap: 0.75rem;
    font-size: 1.125rem;
  }
}
.p-front-title .title-h2 {
  font-size: clamp(2.25rem, 1.652rem + 2.55vw, 2.875rem);
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-front-title .title-h2 {
    font-size: 3.375rem;
  }
}
.p-front-title .image {
  width: 1.0625rem;
  height: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .p-front-title .image {
    margin-left: 0.3125rem;
    width: 1.5625rem;
    height: 1.5625rem;
  }
}

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

.arrow-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(1.688rem, 1.149rem + 2.3vw, 2.25rem);
  height: clamp(1.188rem, 0.889rem + 1.28vw, 1.5rem);
  border-radius: 50%;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .arrow-circle {
    width: 2.25rem;
    height: 1.5rem;
  }
}
.arrow-circle .arrow {
  display: block;
  width: clamp(0.375rem, 0.196rem + 0.77vw, 0.563rem);
  height: clamp(0.313rem, 0.193rem + 0.51vw, 0.438rem);
  background-repeat: no-repeat;
  background-size: cover;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .arrow-circle .arrow {
    width: 0.5625rem;
    height: 0.4375rem;
  }
}

.p-front-button {
  background-color: var(--main-c);
  display: flex;
  align-items: center;
  width: fit-content;
  padding-block: 0.9375rem;
  padding-inline: 2.9375rem 0.875rem;
  border: solid 0.0625rem var(--main-c);
  border-radius: 3.125rem;
  line-height: 1;
  color: #fff;
  font-size: 0.75rem;
  filter: drop-shadow(0 0.5rem 0.5rem rgba(0, 0, 0, 0.08));
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-front-button {
    padding-block: 1.375rem;
    padding-inline: 4.375rem 1.25rem;
    font-size: 1rem;
  }
}
.p-front-button:hover {
  background-color: #fff;
  color: var(--main-c);
  cursor: pointer;
}
.p-front-button:hover .arrow-circle {
  border: solid 0.0625rem var(--main-c);
}
.p-front-button:hover .arrow {
  background-image: url("../images/icons/arrow-grn.png");
}

/*=============================
アニメーション関連
=============================*/
.u-float-y {
  animation: float-y 1.6s ease-in-out infinite alternate-reverse;
}

@keyframes float-y {
  0% {
    transform: translateY(-0.5625rem);
  }
  100% {
    transform: translateY(0.5625rem);
  }
}
/*=============================
メインビジュアル
=============================*/
.p-front-mv {
  padding: 0.625rem 0.625rem 3.125rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-front-mv {
    padding: 1.25rem 1.25rem 3.375rem;
  }
}

.p-front-mv__slider-container {
  position: relative;
  border-radius: 1.875rem 1.875rem 0 0;
  overflow: hidden;
  z-index: 1;
}

.p-front-mv__item {
  position: relative;
}

.p-front-mv__textbox {
  width: 100%;
  padding: 0 0.625rem;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .p-front-mv__textbox {
    padding-left: clamp(4.375rem, -38.826rem + 44.85vw, 15rem);
    top: calc(50% - 1.875rem);
  }
}

.p-front-mv__title {
  font-size: clamp(1.75rem, 0.195rem + 6.63vw, 3.375rem);
  line-height: 1.45;
}
@media screen and (min-width: 768px) {
  .p-front-mv__title {
    font-size: 3.375rem;
  }
}

.p-front-mv__text {
  margin-top: 1.25rem;
  font-size: clamp(0.875rem, 0.277rem + 2.55vw, 1.5rem);
  line-height: 1.45;
}
@media screen and (min-width: 768px) {
  .p-front-mv__text {
    margin-top: 2.1875rem;
    font-size: 1.5rem;
  }
}

.p-front-mv__image {
  display: block;
  aspect-ratio: 350/580;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-front-mv__image {
    aspect-ratio: 1880/900;
  }
}
.p-front-mv__image .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-front-mv__slider-pagination {
  display: flex;
  justify-content: center;
  width: calc(100% - 1.25rem) !important;
  bottom: 1.25rem !important;
  left: 50% !important;
  transform: translateX(-50%);
  text-align: unset;
}
@media screen and (min-width: 768px) {
  .p-front-mv__slider-pagination {
    justify-content: unset;
    width: 100% !important;
    bottom: 2.5rem !important;
    padding-left: clamp(4.375rem, -38.826rem + 44.85vw, 15rem);
  }
}
.p-front-mv__slider-pagination .circle-pagination {
  position: relative;
  width: 17px;
  height: 17px;
  display: inline-block;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-front-mv__slider-pagination .circle-pagination {
    width: 20px;
    height: 20px;
  }
}
@media screen and (min-width: 1440px) {
  .p-front-mv__slider-pagination .circle-pagination {
    width: 30px;
    height: 30px;
  }
}
.p-front-mv__slider-pagination .circle-pagination__inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-front-mv__slider-pagination .circle-pagination__inner::after {
  content: "";
  width: 5px;
  height: 5px;
  background-color: #DFDED9;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .p-front-mv__slider-pagination .circle-pagination__inner::after {
    width: 7px;
    height: 7px;
  }
}
@media screen and (min-width: 1440px) {
  .p-front-mv__slider-pagination .circle-pagination__inner::after {
    width: 10px;
    height: 10px;
  }
}
.p-front-mv__slider-pagination .circle-pagination__inner svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 17px;
  height: 17px;
  transform: translate(-50%, -50%) rotate(-90deg);
}
@media screen and (min-width: 768px) {
  .p-front-mv__slider-pagination .circle-pagination__inner svg {
    width: 20px;
    height: 20px;
  }
}
@media screen and (min-width: 1440px) {
  .p-front-mv__slider-pagination .circle-pagination__inner svg {
    width: 30px;
    height: 30px;
  }
}
.p-front-mv__slider-pagination .circle-pagination__inner .circle-bg circle {
  display: none;
}
.p-front-mv__slider-pagination .circle-pagination__inner .circle-anime circle {
  stroke: var(--main-c);
  stroke-width: 1;
  fill: transparent;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
}
@media screen and (min-width: 768px) {
  .p-front-mv__slider-pagination .circle-pagination__inner .circle-anime circle {
    stroke-dasharray: 57;
    stroke-dashoffset: 57;
  }
}
@media screen and (min-width: 1440px) {
  .p-front-mv__slider-pagination .circle-pagination__inner .circle-anime circle {
    stroke-dasharray: 88;
    stroke-dashoffset: 88;
  }
}
.p-front-mv__slider-pagination .circle-pagination__inner .circle-anime circle.is-animating {
  animation: circleProgress var(--duration, 10.5s) linear forwards;
}
@keyframes circleProgress {
  to {
    stroke-dashoffset: 0;
  }
}
.p-front-mv__slider-pagination .circle-pagination.swiper-pagination-bullet-active .circle-pagination__inner::after {
  background-color: var(--main-c);
}
.p-front-mv__slider-pagination .swiper-pagination-bullet {
  background: transparent !important;
  opacity: 1 !important;
  margin: 0 !important;
}
.p-front-mv__slider-pagination .swiper-pagination-bullet-active {
  background: transparent !important;
}
.p-front-mv__slider-pagination .swiper-pagination-bullet-active .circle-bg circle {
  display: block;
  stroke: #DFDED9;
  stroke-width: 1;
  fill: transparent;
  stroke-dasharray: 48;
  stroke-dashoffset: 0;
}
@media screen and (min-width: 768px) {
  .p-front-mv__slider-pagination .swiper-pagination-bullet-active .circle-bg circle {
    stroke-dasharray: 57;
  }
}
@media screen and (min-width: 1440px) {
  .p-front-mv__slider-pagination .swiper-pagination-bullet-active .circle-bg circle {
    stroke-dasharray: 88;
  }
}

/*=============================
TOPICS
=============================*/
.p-front-topics {
  background-color: #fff;
  padding-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-front-topics {
    padding-bottom: 3.375rem;
  }
}
.p-front-topics .p-front-title {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-front-topics .p-front-title {
    text-align: left;
    margin-right: 2.5rem;
  }
}
.p-front-topics .title-h6 {
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-front-topics .title-h6 {
    justify-content: flex-start;
  }
}
.p-front-topics .arrow-circle {
  border: solid 0.0625rem var(--brown);
  position: absolute;
  bottom: 0.625rem;
  right: 0;
  width: 2rem;
  height: 1.3125rem;
}
@media screen and (min-width: 768px) {
  .p-front-topics .arrow-circle {
    bottom: 0.8125rem;
    width: 2.25rem;
    height: 1.5rem;
  }
}
.p-front-topics .arrow {
  background-image: url("../images/icons/arrow-brn.png");
}

.p-front-topics__inner {
  background-color: var(--bg-c);
  border-radius: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6875rem;
  padding-block: 1.875rem;
  padding-inline: 1.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-front-topics__inner {
    flex-direction: unset;
    gap: 2.5rem;
    padding-block: 1.875rem;
    padding-inline: 6.25rem 3.4375rem;
  }
}

.p-front-topics__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-front-topics__link {
    flex-direction: unset;
    gap: 2.5rem;
  }
}
.p-front-topics__link:hover .p-front-topics__image .image {
  transform: scale(1.05);
}
.p-front-topics__link:hover .p-front-topics__detail {
  opacity: 0.8;
}
.p-front-topics__link:hover .arrow-circle {
  opacity: 1;
  background-color: #fff;
  border: solid 0.0625rem #fff;
}

.p-front-topics__image {
  aspect-ratio: 420/240;
  width: 100%;
  border-radius: 0.3125rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-front-topics__image {
    width: 45%;
    aspect-ratio: unset;
    height: 100%;
    max-height: 15rem;
  }
}
.p-front-topics__image .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
  will-change: transform;
  backface-visibility: hidden;
  transform-origin: center center;
}

.p-front-topics__detail {
  flex: 1;
  width: 100%;
  padding-bottom: 1.9375rem;
  border-bottom: solid 0.0625rem #DFDED9;
  position: relative;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-front-topics__detail {
    padding-bottom: 2.1875rem;
    padding-right: 2.8125rem;
  }
}
.p-front-topics__detail .tag {
  background-color: var(--main-c);
  color: #fff;
  border-radius: 0.3125rem;
  font-size: 0.875rem;
  padding-block: 0.125rem;
  padding-inline: 0.5rem 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-front-topics__detail .tag {
    font-size: 1.125rem;
  }
}
.p-front-topics__detail .title {
  font-weight: 500;
  margin-top: 0.4375rem;
}
.p-front-topics__detail .text {
  color: var(--text-sub-c);
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-front-topics__detail .text {
    margin-top: 0.625rem;
  }
}

.p-front-topics__deco {
  position: absolute;
  top: -2.5rem;
  right: 0;
  width: clamp(5.688rem, 2.459rem + 13.78vw, 9.063rem);
  filter: drop-shadow(0.9375rem 1.25rem 0.1875rem rgba(0, 0, 0, 0.16));
}
@media screen and (min-width: 768px) {
  .p-front-topics__deco {
    top: -1.875rem;
    right: -1.875rem;
    width: 9.0625rem;
    filter: drop-shadow(1.0625rem 2.25rem 0.1875rem rgba(0, 0, 0, 0.16));
  }
}

/*=============================
RECRUITMENT TYPE SITE、ENTRY
=============================*/
.p-front-recruit {
  background-color: #327D64;
  color: #fff;
  padding-block: 4.125rem clamp(8.75rem, 0.977rem + 33.16vw, 16.875rem);
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-front-recruit {
    padding-block: 6.25rem 22.5rem;
  }
}
.p-front-recruit .title-h2 {
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .p-front-recruit .title-h2 {
    line-height: 1.45;
  }
}

.p-front-recruit__message {
  text-align: center;
  font-size: clamp(1.25rem, 0.533rem + 3.06vw, 2rem);
  margin-top: 1.5625rem;
  line-height: 1.45;
}
@media screen and (min-width: 768px) {
  .p-front-recruit__message {
    font-size: 2rem;
    margin-top: 1.875rem;
  }
}

.p-front-recruit__deco {
  display: block;
  margin-top: -3.125rem;
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .p-front-recruit__deco {
    width: 120rem;
  }
}
@media screen and (min-width: 1921px) {
  .p-front-recruit__deco {
    width: 100%;
  }
}
.p-front-recruit__deco .image {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-front-recruit__deco .image {
    width: auto;
  }
}

.p-front-entry {
  background-color: #887E5B;
  color: #fff;
  padding-block: 2.875rem 6.25rem;
}
@media screen and (min-width: 768px) {
  .p-front-entry {
    padding-block: 5rem 13.75rem;
  }
}
.p-front-entry .p-front-banner__list {
  margin-top: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .p-front-entry .p-front-banner__list {
    margin-top: 2.5rem;
  }
}
.p-front-entry .p-front-banner02 {
  padding-bottom: 0;
  border-bottom: none;
}

.p-front-entry__head {
  text-align: center;
  position: relative;
}
.p-front-entry__head .sub-title {
  font-size: 0.75rem;
}
.p-front-entry__head .title {
  font-weight: 500;
  line-height: 1.3;
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-front-entry__head .title {
    line-height: 1.45;
    margin-top: 0.3125rem;
  }
}
.p-front-entry__head .text {
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-front-entry__head .text {
    margin-top: 1.25rem;
  }
}
.p-front-entry__head .title-bg {
  font-size: 5.25rem;
  font-weight: bold;
  line-height: 1;
  color: rgba(255, 255, 255, 0.16);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-front-entry__head .title-bg {
    font-size: 9.125rem;
  }
}

.p-front-entry__head-inner {
  padding-top: 1.25rem;
}

.p-front-banner__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem 0.3125rem;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-front-banner__list {
    gap: 0.5rem;
  }
}

.p-front-banner__item {
  position: relative;
  border: solid 0.125rem var(--main-c);
  border-radius: 0.9375rem;
  overflow: hidden;
  width: calc((100% - 0.3125rem) / 2);
  filter: drop-shadow(0 0.1875rem 0.1875rem rgba(0, 0, 0, 0.16));
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-front-banner__item {
    border: solid 0.1875rem var(--main-c);
    width: calc((100% - 1.5rem) / 4);
  }
}
.p-front-banner__item:hover .p-front-banner__image .image {
  transform: scale(1.05);
}
.p-front-banner__item:hover .arrow-circle {
  background-color: #fff;
}
.p-front-banner__item:hover .arrow {
  background-image: url("../images/icons/arrow-grn.png");
}
.p-front-banner__item .arrow-circle {
  border: solid 0.0625rem #fff;
  position: absolute;
  bottom: clamp(0.625rem, 0.027rem + 2.55vw, 1.25rem);
  right: clamp(0.563rem, -0.095rem + 2.81vw, 1.25rem);
  width: clamp(1.313rem, 0.416rem + 3.83vw, 2.25rem);
  height: clamp(0.875rem, 0.277rem + 2.55vw, 1.5rem);
}
@media screen and (min-width: 768px) {
  .p-front-banner__item .arrow-circle {
    bottom: 1.0625rem;
    right: 1.0625rem;
    width: 2.25rem;
    height: 1.5rem;
  }
}
.p-front-banner__item .arrow {
  background-image: url("../images/icons/arrow-wht.png");
  width: clamp(0.313rem, 0.073rem + 1.02vw, 0.563rem);
  height: clamp(0.25rem, 0.071rem + 0.77vw, 0.438rem);
}
@media screen and (min-width: 768px) {
  .p-front-banner__item .arrow {
    width: 0.5625rem;
    height: 0.4375rem;
  }
}

.p-front-banner__image .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 338/215;
  transition: transform 0.2s ease;
  will-change: transform;
  backface-visibility: hidden;
  transform-origin: center center;
}

.p-front-banner__title {
  color: #fff;
  position: absolute;
  bottom: clamp(0.625rem, 0.027rem + 2.55vw, 1.25rem);
  left: clamp(0.5rem, -0.217rem + 3.06vw, 1.25rem);
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-front-banner__title {
    bottom: 1.5625rem;
    left: 1.25rem;
  }
}
.p-front-banner__title .title {
  font-weight: 500;
  font-size: clamp(1rem, 0.522rem + 2.04vw, 1.5rem);
}
@media screen and (min-width: 768px) {
  .p-front-banner__title .title {
    font-size: 1.5rem;
  }
}
.p-front-banner__title .text {
  font-size: clamp(0.563rem, 0.383rem + 0.77vw, 0.75rem);
}
@media screen and (min-width: 768px) {
  .p-front-banner__title .text {
    font-size: 1rem;
  }
}

.p-front-banner__deco .image {
  position: absolute;
  bottom: -0.0625rem;
  left: -0.0625rem;
  width: 63%;
}
@media screen and (min-width: 768px) {
  .p-front-banner__deco .image {
    width: 15.5rem;
  }
}

.p-front-banner__modal {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.4);
}
.p-front-banner__modal.is-open {
  display: block;
}

.p-front-banner__modal-wrap {
  position: relative;
  width: 90%;
  max-width: 56.25rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-front-banner__modal-wrap .modal-contents {
  background-color: #fff;
  border: solid 0.1875rem var(--main-c);
  border-radius: 1.875rem;
  overflow: hidden;
  padding: 2.5rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-front-banner__modal-wrap .modal-contents {
    padding: 3.75rem 4.375rem;
  }
}
.p-front-banner__modal-wrap .modal-title {
  color: var(--brown);
  text-align: center;
  font-weight: 500;
}
.p-front-banner__modal-wrap .modal-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.625rem;
  position: relative;
  z-index: 1;
  max-width: 31.25rem;
  margin-top: 1.875rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-front-banner__modal-wrap .modal-list {
    max-width: unset;
    margin-top: 2.5rem;
  }
}
.p-front-banner__modal-wrap .modal-item {
  background-color: var(--main-c);
  border-radius: 0.625rem;
  color: #fff;
  text-align: center;
  font-weight: 500;
  width: 100%;
  filter: drop-shadow(0 0.5rem 0.5rem rgba(0, 0, 0, 0.08));
}
@media screen and (min-width: 768px) {
  .p-front-banner__modal-wrap .modal-item {
    border-radius: 1.25rem;
    width: calc((100% - 0.625rem) / 2);
  }
}
.p-front-banner__modal-wrap .modal-link {
  display: block;
  font-size: 1rem;
  width: 100%;
  padding: 1.25rem;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-front-banner__modal-wrap .modal-link {
    font-size: 1.5rem;
    padding: 2.5rem;
  }
}
.p-front-banner__modal-wrap .modal-link:hover {
  opacity: 0.6;
}
.p-front-banner__modal-wrap .modal-deco {
  width: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 0 0 0 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-front-banner__modal-wrap .modal-deco {
    width: 30%;
  }
}

.p-front-banner02 {
  width: 100%;
  margin: 1.875rem auto 0;
  padding-bottom: 1.875rem;
  border-bottom: solid 0.1875rem var(--main-c);
}
@media screen and (min-width: 768px) {
  .p-front-banner02 {
    width: 90%;
    max-width: 52.5rem;
    margin: 2.1875rem auto 0;
    padding-bottom: 4rem;
  }
}

.p-front-banner02__link {
  display: block;
  width: 100%;
  margin: 0 auto;
  border-radius: 0.5625rem;
  overflow: hidden;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-front-banner02__link {
    width: 84%;
    max-width: 43.9375rem;
    border-radius: 0.9375rem;
  }
}
.p-front-banner02__link:hover {
  transform: scale(1.04);
}
.p-front-banner02__link .image {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-front-banner02__link .image {
    width: aut0;
  }
}

/*=============================
ルピシアムービー
=============================*/
.p-front-movie {
  margin-top: calc(clamp(1.5rem, -1.848rem + 14.29vw, 5rem) * -1);
}
@media screen and (min-width: 768px) {
  .p-front-movie {
    margin-top: -5.3125rem;
  }
}

.p-front-movie__wrapper {
  background-color: #fff;
  border-radius: 1.5rem 1.5rem 0 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-front-movie__wrapper {
    border-radius: 5rem 5rem 0 0;
  }
}

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

.p-front-movie__bg {
  width: 100%;
  background-image: url("../images/front/mainmovie_thumbnail_SP.webp");
  background-size: cover;
  background-position: center;
  color: #fff;
  aspect-ratio: 335/430;
  position: relative;
  margin-top: -5.625rem;
  transform: scale(0.8);
  border-radius: 20px;
}
.p-front-movie__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  filter: brightness(0.5);
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-front-movie__bg {
    background-image: url("../images/front/mainmovie_thumbnail.webp");
    aspect-ratio: 1400/780;
    margin-top: -10rem;
  }
}

.p-front-movie__deco {
  width: clamp(3.125rem, 0.136rem + 12.76vw, 6.25rem);
  position: absolute;
  top: -13%;
  left: 50%;
  transform: translateX(-50%);
  filter: drop-shadow(0 2.25rem 0.1875rem rgba(0, 0, 0, 0.16));
  animation: float-movie 1.6s ease-in-out infinite alternate-reverse;
}
@media screen and (min-width: 768px) {
  .p-front-movie__deco {
    width: 7.625rem;
    top: -8.4375rem;
  }
}

@keyframes float-movie {
  0% {
    transform: translateX(-50%) translateY(-0.5625rem);
  }
  100% {
    transform: translateX(-50%) translateY(0.5625rem);
  }
}
.p-front-movie__contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .p-front-movie__contents {
    top: calc(50% - 1.375rem);
  }
}
.p-front-movie__contents .sub-title {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: clamp(0.75rem, 0.63rem + 0.51vw, 0.875rem);
}
@media screen and (min-width: 768px) {
  .p-front-movie__contents .sub-title {
    font-size: 0.875rem;
  }
}
.p-front-movie__contents .tag {
  background-color: #fff;
  border: solid 0.0625rem var(--main-c);
  border-radius: 1.25rem;
  line-height: 1;
  padding: 0.1875rem 0.75rem 0.375rem;
  font-size: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .p-front-movie__contents .tag {
    padding: 0.0625rem 1.25rem 0.4375rem;
    font-size: 0.875rem;
  }
}
.p-front-movie__contents .title-h2 {
  font-size: clamp(2.25rem, 1.174rem + 4.59vw, 3.375rem);
  margin-top: clamp(0.625rem, 0.027rem + 2.55vw, 1.25rem);
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-front-movie__contents .title-h2 {
    font-size: 3.375rem;
    margin-top: 1.25rem;
  }
}
.p-front-movie__contents .text {
  line-height: 1.45;
  margin-top: 1.5625rem;
  font-size: clamp(1rem, 0.522rem + 2.04vw, 1.5rem);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-front-movie__contents .text {
    line-height: 1.75;
    margin-top: 0.625rem;
    font-size: 1.5rem;
  }
}
.p-front-movie__contents .text-l {
  font-size: clamp(1.5rem, 1.022rem + 2.04vw, 2rem);
}
@media screen and (min-width: 768px) {
  .p-front-movie__contents .text-l {
    font-size: 2rem;
  }
}
.p-front-movie__contents .p-front-button {
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: bold;
  margin-top: 1.25rem;
  padding-block: 0.875rem;
  padding-inline: 2.25rem 1.5625rem;
  filter: none;
}
@media screen and (min-width: 768px) {
  .p-front-movie__contents .p-front-button {
    gap: 0.5rem;
    font-size: 1.25rem;
    margin-top: 2.5rem;
    padding-block: 1.5rem;
    padding-inline: 3.125rem 2.25rem;
  }
}
.p-front-movie__contents .play-text {
  margin-top: 0.125rem;
}
.p-front-movie__contents .arrow-circle {
  border: solid 0.0625rem #fff;
}
.p-front-movie__contents .arrow {
  background-image: url("../images/icons/arrow-wht.png");
}

/*=============================
トップメッセージ
=============================*/
.p-front-message {
  background-color: #fff;
  padding-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-front-message {
    padding-top: 7.875rem;
  }
}
.p-front-message .p-front-title {
  position: relative;
  padding-top: clamp(1.625rem, 0.19rem + 6.12vw, 3.125rem);
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-front-message .p-front-title {
    padding-top: 3.125rem;
    padding-inline: 0;
  }
}
.p-front-message .title-h6 {
  justify-content: flex-start;
}
@media screen and (min-width: 768px) {
  .p-front-message .title-h6 {
    justify-content: center;
  }
}
.p-front-message .title-bg {
  font-size: clamp(2.938rem, 0.964rem + 8.42vw, 5rem);
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-sub-c);
  opacity: 0.16;
  line-height: 1;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-front-message .title-bg {
    font-size: 5rem;
    text-align: center;
  }
}

.p-front-message__list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: clamp(0.625rem, -0.571rem + 5.1vw, 1.875rem);
}
@media screen and (min-width: 768px) {
  .p-front-message__list {
    gap: 0;
    margin-top: 1.25rem;
  }
}

.p-front-message__item {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-front-message__item {
    padding-block: 4.375rem;
  }
  .p-front-message__item::before {
    content: "";
    display: inline-block;
    background-color: var(--bg-c);
    border-radius: 2.5rem 0 0 2.5rem;
    width: 34.5%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-front-message__item:nth-child(even)::before {
    border-radius: 0 2.5rem 2.5rem 0;
    right: unset;
    left: 0;
  }
}
.p-front-message__item:nth-child(even) .p-front-message__contents {
  flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .p-front-message__item:nth-child(even) .p-front-message__contents {
    flex-direction: row-reverse;
  }
}
.p-front-message__item:nth-child(even) .p-front-message__textbox {
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-front-message__item:nth-child(even) .p-front-message__textbox {
    padding-left: unset;
    padding-right: 6.25rem;
  }
}
.p-front-message__item:nth-child(even) .p-front-message__image::before {
  content: "";
  display: inline-block;
  border-radius: 0 2.5rem 2.5rem 0;
  right: unset;
  left: 0;
}

.p-front-message__contents {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 0.9375rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-front-message__contents {
    flex-direction: unset;
    gap: 4.375rem;
  }
}

.p-front-message__contents.p-front-inner {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-front-message__contents.p-front-inner {
    width: 91%;
  }
}

.p-front-message__textbox {
  padding-inline: 1.25rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-front-message__textbox {
    padding-left: 6.25rem;
    width: 38.75rem;
  }
}
.p-front-message__textbox .title-h4 {
  font-size: 1.25rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-front-message__textbox .title-h4 {
    font-size: 2rem;
  }
}
.p-front-message__textbox .text {
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-front-message__textbox .text {
    margin-top: 1.25rem;
  }
}
.p-front-message__textbox .name {
  margin-top: 0.9375rem;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-front-message__textbox .name {
    margin-top: 1.25rem;
    font-size: 2rem;
  }
}
.p-front-message__textbox .position {
  font-size: 1rem;
  margin-right: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-front-message__textbox .position {
    font-size: 1.125rem;
    margin-right: 0.625rem;
  }
}

.p-front-message__btn {
  display: flex;
  gap: 0.375rem;
  border-bottom: solid 0.0625rem var(--brown);
  padding-bottom: 0.3125rem;
  color: var(--brown);
  font-weight: 500;
  margin-top: 1rem;
  margin-left: auto;
  cursor: pointer;
}
.p-front-message__btn .arrow-circle {
  border: solid 0.0625rem var(--brown);
}
.p-front-message__btn .arrow {
  background-image: url("../images/icons/arrow-brn.png");
}
.p-front-message__btn:hover .arrow-circle {
  background-color: var(--brown);
}
.p-front-message__btn:hover .arrow {
  background-image: url("../images/icons/arrow-wht.png");
}

.p-front-message__image {
  flex: 1;
  position: relative;
  z-index: 0;
  padding: 7% 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-front-message__image {
    padding: 0;
  }
  .p-front-message__image::before {
    display: none;
  }
}
.p-front-message__image::before {
  content: "";
  display: inline-block;
  background-color: var(--bg-c);
  border-radius: 2.5rem 0 0 2.5rem;
  width: 73%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.p-front-message__modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background-color: rgba(120, 117, 102, 0.8);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.p-front-message__modal.is-active {
  opacity: 1;
  visibility: visible;
}

.p-front-message__modal-contents {
  background-color: #fff;
  border-radius: 0.625rem;
  padding: 0.9375rem;
  padding-bottom: 1.25rem;
  width: 90%;
  max-width: 56.25rem;
  height: 90%;
  max-height: 39.6875rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .p-front-message__modal-contents {
    width: 100%;
    max-height: 52.1875rem;
  }
}

.p-front-message__modal-image {
  height: 32%;
  max-height: 22rem;
}
@media screen and (min-width: 540px) {
  .p-front-message__modal-image {
    height: 38%;
  }
}
@media screen and (min-width: 768px) {
  .p-front-message__modal-image {
    height: 44%;
  }
}
.p-front-message__modal-image .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-front-message__modal-text {
  width: 100%;
  height: calc(68% - 5.625rem);
  max-height: 20rem;
  overflow-y: scroll;
  margin: 2.1875rem auto 0;
  padding-inline: 1rem;
}
@media screen and (min-width: 540px) {
  .p-front-message__modal-text {
    height: calc(62% - 5.625rem);
  }
}
@media screen and (min-width: 768px) {
  .p-front-message__modal-text {
    width: 50rem;
    height: calc(56% - 8.125rem);
    margin: 3.125rem auto 0;
    padding-inline: 5rem;
  }
}
.p-front-message__modal-text .title {
  font-weight: 500;
}
.p-front-message__modal-text .text {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-front-message__modal-text .text {
    margin-top: 1.875rem;
  }
}
.p-front-message__modal-text::-webkit-scrollbar {
  width: 0.3125rem;
}
.p-front-message__modal-text::-webkit-scrollbar-track {
  background: #DFDED9;
  border-radius: 0.1875rem;
}
.p-front-message__modal-text::-webkit-scrollbar-thumb {
  background: #B7A263;
  border-radius: 0.1875rem;
}

.p-front-message__modal-close {
  margin: 1.25rem auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  padding: 0.25rem 1.125rem;
  border: solid 0.0625rem var(--brown);
  border-radius: 50%;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-front-message__modal-close {
    margin: 2.1875rem auto 0;
    padding: 0.375rem 1.25rem;
  }
}
.p-front-message__modal-close .close-btn {
  font-size: 0.5rem;
  font-weight: bold;
  color: #000 !important;
}
@media screen and (min-width: 768px) {
  .p-front-message__modal-close .close-btn {
    font-size: 0.625rem;
  }
}
.p-front-message__modal-close .close-x {
  margin-top: 0.1875rem;
  position: relative;
  width: 0.625rem;
  height: 0.4375rem;
}
.p-front-message__modal-close .close-x::before, .p-front-message__modal-close .close-x::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 0.0625rem;
  background-color: var(--brown);
  position: absolute;
  top: 0;
  left: 0;
}
.p-front-message__modal-close .close-x::before {
  transform: rotate(34deg);
}
.p-front-message__modal-close .close-x::after {
  transform: rotate(-34deg);
}

/*=============================
JOB TYPE
=============================*/
.p-front-job {
  padding-block: 3.75rem 14.375rem;
  padding-inline: 1.25rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-front-job {
    padding-block: 11.25rem 25rem;
    padding-inline: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-front-job .p-front-title {
    width: 90%;
    max-width: 75rem;
    margin: 0 auto;
    position: relative;
  }
}

.p-front-job__body {
  margin-top: 1.25rem;
}

.p-front-job__cards {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-front-job__cards {
    flex-direction: unset;
    gap: 0;
    height: 38.75rem;
  }
}

.p-front-job__card-item {
  color: #fff;
  position: relative;
  width: 100%;
  transition: 0.5s;
  border-radius: 0.625rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-front-job__card-item {
    width: calc((100% - 45.625rem) / 6);
    border-radius: 0;
    clip-path: inset(0 -0.0625rem 0 -0.0625rem round 0.625rem);
  }
}

.p-front-job__card-item.is-active {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-front-job__card-item.is-active {
    width: 45.625rem;
  }
}
.p-front-job__card-item.is-active .p-front-job__card-front {
  display: none;
}
.p-front-job__card-item.is-active .p-front-job__card-content {
  max-height: 62.5rem;
}
@media screen and (min-width: 768px) {
  .p-front-job__card-item.is-active .p-front-job__card-content {
    max-height: unset;
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .p-front-job__card-item.is-active .p-front-job__card-content {
    opacity: 1;
  }
}

.p-front-job__card-front {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: bold;
  aspect-ratio: 335/95;
  padding-left: 3%;
}
@media screen and (min-width: 768px) {
  .p-front-job__card-front {
    flex-direction: column;
    gap: 0.875rem;
    margin-top: 7.8125rem;
    aspect-ratio: unset;
    padding-left: 0;
  }
}
.p-front-job__card-front .icon {
  width: 2.875rem;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-front-job__card-front .icon {
    width: 4.875rem;
    height: 4.25rem;
  }
}
.p-front-job__card-front .title {
  margin-right: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-front-job__card-front .title {
    margin-right: 0;
    writing-mode: vertical-rl;
    height: 10rem;
  }
}
.p-front-job__card-front .text-en {
  color: #B7A263;
  font-size: 0.75rem;
  margin-top: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .p-front-job__card-front .text-en {
    font-size: 0.875rem;
    margin-top: 0;
  }
}
.p-front-job__card-front .arrow {
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
}

.p-front-job__card-head {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  padding-top: 1.375rem;
  padding-inline: 1rem;
}
@media screen and (min-width: 768px) {
  .p-front-job__card-head {
    gap: 1.25rem;
    padding-left: 1.4375rem;
  }
}
.p-front-job__card-head .tag {
  font-size: 0.5rem;
  white-space: nowrap;
  border: solid 0.0625rem #fff;
  border-radius: 50%;
  padding: 0.5625rem 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-front-job__card-head .tag {
    font-size: 0.75rem;
    padding: 0.75rem 0.8125rem;
  }
}
.p-front-job__card-head .todo {
  font-size: 1rem;
  color: #B7A263;
}
@media screen and (min-width: 768px) {
  .p-front-job__card-head .todo {
    font-size: 1.5rem;
  }
}
.p-front-job__card-head .todo .u-br {
  display: block !important;
}
@media screen and (min-width: 390px) {
  .p-front-job__card-head .todo .u-br {
    display: none !important;
  }
}

.p-front-job__card-body {
  padding-block: 1.125rem 1.875rem;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-front-job__card-body {
    padding-block: 5.25rem 0;
    padding-inline: 4.6875rem 6.875rem;
  }
}
.p-front-job__card-body .icon {
  height: auto;
  width: 2.875rem;
}
@media screen and (min-width: 768px) {
  .p-front-job__card-body .icon {
    height: auto;
    width: 5.8125rem;
  }
}

.p-front-job__card-main-title {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-front-job__card-main-title {
    flex-direction: column;
    align-items: unset;
    gap: 0.625rem;
  }
}

.job-card__scrollbar {
  max-height: 16rem;
  overflow-y: auto;
  /* スクロールバー全体 */
  /* スクロールバーの軌道 */
  /* スクロールバーのつまみ */
}
@media screen and (min-width: 768px) {
  .job-card__scrollbar {
    max-height: 15rem;
  }
}
.job-card__scrollbar::-webkit-scrollbar {
  width: 8px;
}
@media screen and (min-width: 768px) {
  .job-card__scrollbar::-webkit-scrollbar {
    width: 6px;
  }
}
.job-card__scrollbar::-webkit-scrollbar-track {
  background: transparent;
}
.job-card__scrollbar::-webkit-scrollbar-thumb {
  background-color: #fff;
  border-radius: 3px;
}

.p-front-job__content1 + .p-front-job__content2 {
  margin-top: 1.375rem;
}

.p-front-job__card-lead {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-front-job__card-lead {
    font-size: 1.125rem;
  }
}

.p-front-job__card-text {
  margin-top: 0.6875rem;
  line-height: 1.7;
}

.p-front-job__card-link__items {
  margin-top: 1.6875rem;
  display: flex;
  gap: 20px;
}

.p-front-job__card-movie-link {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  transition: 0.3s;
}
.p-front-job__card-movie-link .arrow-circle {
  border: solid 0.0625rem #fff;
}
.p-front-job__card-movie-link .arrow {
  background-image: url("../images/icons/arrow-wht.png");
  transform: rotate(90deg);
}
.p-front-job__card-movie-link:hover {
  opacity: 0.8;
}
.p-front-job__card-movie-link:hover .arrow-circle {
  opacity: 1;
  background-color: #fff;
}
.p-front-job__card-movie-link:hover .arrow {
  background-image: url("../images/icons/arrow-grn.png");
}

.p-front-job__card-page-link {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  color: #ff9c52;
  border-bottom: solid 0.0625rem #ff9c52;
  transition: 0.3s;
}
.p-front-job__card-page-link .page-link__arrow {
  background: url("../images/icons/icon-link-org.svg") no-repeat center/contain;
  aspect-ratio: 1;
  width: 0.8em;
  height: auto;
}
.p-front-job__card-page-link:hover {
  opacity: 0.8;
}

.p-front-job__card-img-bg {
  position: relative;
  width: 100%;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-front-job__card-img-bg {
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }
}
.p-front-job__card-img-bg figure {
  height: 100%;
}
.p-front-job__card-img-bg .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.p-front-job__card-img-bg::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: #787566;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
}

.p-front-job__card-img-bg.-front {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.p-front-job__card-img-bg-sp {
  aspect-ratio: 335/95;
  border-radius: 0.625rem;
  overflow: hidden;
}
.p-front-job__card-img-bg-sp::after {
  display: none;
}
.p-front-job__card-img-bg-sp .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-front-job__card-content {
  display: none;
  opacity: 0;
  transition: opacity 0.8s ease;
  background-color: #615D56;
  max-height: 0;
}
@media screen and (min-width: 768px) {
  .p-front-job__card-content {
    max-height: unset;
    background-color: transparent;
  }
  .p-front-job__card-content.fade-in {
    opacity: 1;
  }
  .p-front-job__card-content.fade-out {
    opacity: 0;
  }
}

/*=============================
ショートムービー
=============================*/
.p-front-short .p-front-title {
  text-align: center;
}
.p-front-short .title-h6 {
  justify-content: center;
}
.p-front-short button:focus {
  opacity: 1;
}
.p-front-short .term {
  font-size: 0.75rem;
  font-weight: 500;
  border: solid 0.0625rem #DBDBDB;
  border-radius: 1.25rem;
  padding: 0.125rem 1rem;
  color: #8E8473;
}
@media screen and (min-width: 768px) {
  .p-front-short .term {
    font-size: 1rem;
  }
}
.p-front-short .term.is-selected {
  border: solid 0.0625rem var(--main-c);
  background-color: var(--main-c);
  color: #fff;
}

.p-front-short__inner {
  margin-top: -10.3125rem;
}
@media screen and (min-width: 768px) {
  .p-front-short__inner {
    margin-top: -12.5rem;
  }
}

.p-front-short__filter {
  background-color: #fff;
  border: solid 0.0625rem #DFDED9;
  border-radius: 0.625rem;
  padding-block: 2.9375rem 1.25rem;
  padding-inline: 1.25rem;
  position: relative;
  max-width: 56.25rem;
  margin: 1.875rem auto 0;
}
@media screen and (min-width: 768px) {
  .p-front-short__filter {
    padding-block: 4.375rem 1.875rem;
    padding-inline: 2.5rem;
    margin: 0.9375rem auto 0;
  }
}

.p-front-short__label {
  background-color: var(--brown);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  width: fit-content;
  border-radius: 0 0 0.3125rem 0.3125rem;
  padding: 0.5625rem 1rem 0.4375rem;
  font-size: 0.625rem;
  position: absolute;
  top: -0.1875rem;
  left: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-front-short__label {
    padding: 0.5625rem 1.375rem 0.4375rem;
    font-size: 0.75rem;
    left: 2.125rem;
  }
}
.p-front-short__label .label {
  line-height: 1;
  margin-top: 0.0625rem;
}

.p-front-short__category {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-front-short__category {
    flex-direction: unset;
    align-items: center;
    gap: 0;
  }
}

.p-front-short__category.-movie {
  padding-bottom: 0.9375rem;
  margin-bottom: 0.9375rem;
  border-bottom: solid 0.0625rem #DFDED9;
}
@media screen and (min-width: 768px) {
  .p-front-short__category.-movie {
    padding-bottom: 1.125rem;
    margin-bottom: 1.125rem;
  }
}

.category-name {
  font-size: 1rem;
  width: 10rem;
}

.p-front-short__term-list {
  flex: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 0.4375rem;
  row-gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-front-short__term-list {
    column-gap: 0.3125rem;
    row-gap: 0.5rem;
  }
}
.p-front-short__term-list .term {
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-front-short__term-list .term:hover {
    border: solid 0.0625rem #799584;
    background-color: #799584;
    color: #fff;
  }
}

.p-front-short__reset {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  margin: 1.625rem auto 0;
  padding: 0.25rem 1.125rem;
  border: solid 0.0625rem var(--brown);
  border-radius: 50%;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-front-short__reset {
    padding: 0.375rem 1.3125rem;
  }
}
.p-front-short__reset .reset-btn {
  font-size: 0.5rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .p-front-short__reset .reset-btn {
    font-size: 0.625rem;
  }
}
.p-front-short__reset .reset-x {
  margin-top: 0.1875rem;
  position: relative;
  width: 0.625rem;
  height: 0.4375rem;
}
.p-front-short__reset .reset-x::before, .p-front-short__reset .reset-x::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 0.0625rem;
  background-color: var(--brown);
  position: absolute;
  top: 0;
  left: 0;
}
.p-front-short__reset .reset-x::before {
  transform: rotate(34deg);
}
.p-front-short__reset .reset-x::after {
  transform: rotate(-34deg);
}

.p-front-short__movie-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.75rem;
  row-gap: 1.4375rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-front-short__movie-list {
    column-gap: 1.625rem;
    row-gap: 5rem;
    margin-top: 5rem;
  }
}

.p-front-short__movie-item {
  width: calc((100% - 0.75rem) / 2);
}
@media screen and (min-width: 768px) {
  .p-front-short__movie-item {
    width: calc((100% - 6.5rem) / 5);
  }
}
.p-front-short__movie-item .movie-thumbnail {
  border: solid 0.1875rem var(--main-c);
  border-radius: 0.625rem;
  overflow: hidden;
  aspect-ratio: 162/258;
}
.p-front-short__movie-item .movie-thumbnail .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-front-short__movie-item .movie-title {
  margin-top: 0.625rem;
}
.p-front-short__movie-item .movie-category {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3125rem;
  margin-top: 0.625rem;
}
.p-front-short__movie-item .term {
  font-size: 0.625rem;
  padding: 0 0.625rem;
}

.movie-play-area {
  position: relative;
  cursor: pointer;
}
.movie-play-area::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  background-color: #8E8473;
  mix-blend-mode: multiply;
  opacity: 0;
  transition: 0.3s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.movie-play-area .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #1C1206;
  border-radius: 50%;
  width: clamp(5.375rem, 3.342rem + 8.67vw, 7.5rem);
  height: clamp(5.375rem, 3.342rem + 8.67vw, 7.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .movie-play-area .play-button {
    width: 5.8125rem;
    height: 5.8125rem;
  }
}
.movie-play-area .text {
  margin-top: 1rem;
  font-size: clamp(0.625rem, 0.386rem + 1.02vw, 0.875rem);
  color: #fff;
  opacity: 0;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .movie-play-area .text {
    font-size: 0.75rem;
  }
}
.movie-play-area .arrow-circle {
  width: 1.6875rem;
  height: 1.1875rem;
  border: solid 0.0625rem #fff;
  opacity: 0;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .movie-play-area .arrow-circle {
    width: 1.5rem;
    height: 1rem;
  }
}
.movie-play-area .arrow {
  width: 0.375rem;
  height: 0.3125rem;
  background-image: url("../images/icons/arrow-wht.png");
}
@media screen and (min-width: 768px) {
  .movie-play-area .arrow {
    width: 0.4375rem;
    height: 0.3125rem;
  }
}
.movie-play-area:hover::before,
.movie-play-area:hover .text,
.movie-play-area:hover .play-button,
.movie-play-area:hover .arrow-circle {
  opacity: 1;
}

/*=============================
キーワードで知るルピシア
=============================*/
.p-front-keyword {
  margin-top: 3.75rem;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-front-keyword {
    margin-top: 9.6875rem;
    padding-block: 13rem;
    overflow: unset;
  }
}
@media screen and (min-width: 1541px) {
  .p-front-keyword {
    padding-block: 16.25rem;
  }
}

.p-front-keyword__bg {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-front-keyword__bg {
    display: block;
    height: 13rem;
    aspect-ratio: 1540/208;
    overflow: hidden;
    width: 100%;
    position: absolute;
    left: 0;
  }
}
@media screen and (min-width: 1541px) {
  .p-front-keyword__bg {
    height: 16.25rem;
    aspect-ratio: 1920/260;
  }
}
.p-front-keyword__bg::before {
  content: "";
  display: inline-block;
  background-image: url("../images/front/keyword-bg.webp");
  background-size: cover;
  aspect-ratio: 1920/260;
  width: 120rem;
  height: auto;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-front-keyword__bg::before {
    width: 96.25rem;
    aspect-ratio: 1540/208;
  }
}
@media screen and (min-width: 1541px) {
  .p-front-keyword__bg::before {
    width: 120rem;
    aspect-ratio: 1920/260;
  }
}

.p-front-keyword__bg.-top {
  top: 0;
}
.p-front-keyword__bg.-top::before {
  transform: translateX(-50%);
}

.p-front-keyword__bg.-bottom {
  bottom: 0;
}
.p-front-keyword__bg.-bottom::before {
  transform: translateX(-50%) rotate(180deg);
}

.p-front-keyword__wrapper {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-front-keyword__wrapper {
    position: unset;
  }
}
.p-front-keyword__wrapper::before {
  content: "";
  display: inline-block;
  width: auto;
  height: calc(100% - 3.125rem);
  aspect-ratio: 1535/1503;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 3.125rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .p-front-keyword__wrapper::before {
    display: none;
  }
}

.p-front-keyword__head {
  position: relative;
  width: 90%;
  max-width: 75rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-front-keyword__head {
    position: absolute;
    top: 1.875rem;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: unset;
    align-items: flex-end;
    gap: 4.375rem;
  }
}
@media screen and (min-width: 1541px) {
  .p-front-keyword__head {
    top: 0;
  }
}
.p-front-keyword__head .title-h2 {
  margin-top: 1.125rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-front-keyword__head .title-h2 {
    margin-top: 1.25rem;
  }
}

.p-front-keyword__sticky {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-front-keyword__sticky {
    display: block;
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: -1;
  }
}
.p-front-keyword__sticky::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-image: url("../images/front/deco-leaf-02.webp");
  background-repeat: no-repeat;
  background-size: 29%;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .p-front-keyword__sticky::after {
    height: 100vh;
    position: sticky;
    top: 0;
  }
}

.p-front-keyword__body {
  padding-block: 1.25rem 6.25rem;
  padding-inline: 1rem;
  position: relative;
  z-index: 0;
  background-image: url("../images/front/deco-leaf-02.webp");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .p-front-keyword__body {
    max-width: 93.75rem;
    margin-inline: auto;
    padding-block: 0.625rem 11.25rem;
    padding-inline: 3.125rem;
    background-image: none;
    background-color: transparent;
    background-size: 38%;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.p-front-keyword__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  filter: drop-shadow(0 2.125rem 1.5625rem rgba(200, 184, 142, 0.16));
  padding: 0.0625rem;
}
@media screen and (min-width: 768px) {
  .p-front-keyword__list {
    flex-direction: unset;
    gap: 0.6875rem;
  }
}

.p-front-keyword__list:not(:first-child) {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-front-keyword__list:not(:first-child) {
    margin-top: 1.125rem;
  }
}

.p-front-keyword__item {
  width: 100%;
  filter: drop-shadow(0 0 0.0625rem #F6F5F1);
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-front-keyword__item {
    margin-bottom: 2.625rem;
  }
}
.p-front-keyword__item .circle {
  width: 2.5625rem;
  height: 1.8125rem;
  bottom: -1.25rem;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .p-front-keyword__item .circle {
    bottom: -2.625rem;
  }
}
.p-front-keyword__item .circle.reverse {
  left: 4.0625rem;
  transform: scaleX(1);
}
.p-front-keyword__item .circle.normal {
  right: 4.0625rem;
  transform: scaleX(-1);
}

.p-front-keyword__contents {
  background-color: #fff;
  border-radius: 1.25rem;
  padding-block: 1.25rem;
  padding-inline: 1rem 0.875rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-front-keyword__contents {
    padding-block: 2.5rem;
    padding-inline: 3.125rem;
  }
}
.p-front-keyword__contents .upper {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-front-keyword__contents .upper {
    gap: 0.9375rem;
  }
}
.p-front-keyword__contents .image {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .p-front-keyword__contents .image {
    width: 3.9375rem;
    height: 3.9375rem;
  }
}
.p-front-keyword__contents .keyword {
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-front-keyword__contents .keyword {
    font-size: 2rem;
  }
}
.p-front-keyword__contents .text {
  font-size: 0.875rem;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-front-keyword__contents .text {
    font-size: 1.125rem;
  }
}

.p-front-keyword__item:nth-child(1) .keyword {
  color: #38590C;
}

.p-front-keyword__item:nth-child(2) .keyword {
  color: #67AF6D;
}

@media screen and (min-width: 768px) {
  .p-front-keyword__list.column-2 {
    gap: 2.25rem;
  }
}
@media screen and (min-width: 768px) {
  .p-front-keyword__list.column-2 .p-front-keyword__item {
    width: calc((100% - 2.25rem) / 2);
  }
}
@media screen and (min-width: 768px) {
  .p-front-keyword__list.column-2 .p-front-keyword__item .circle {
    width: 5.25rem;
    height: 3.75rem;
  }
}
@media screen and (min-width: 768px) {
  .p-front-keyword__list.column-2 .p-front-keyword__item:nth-child(1) .circle {
    left: unset;
    right: 8.75rem;
    transform: scale(-1, 1);
  }
}
@media screen and (min-width: 768px) {
  .p-front-keyword__list.column-2 .p-front-keyword__item:nth-child(2) {
    margin-top: 6.25rem;
  }
}
@media screen and (min-width: 768px) {
  .p-front-keyword__list.column-2 .p-front-keyword__item:nth-child(2) .circle {
    right: unset;
    left: 10rem;
  }
}

@media screen and (min-width: 768px) {
  .p-front-keyword__list.column-3 {
    gap: 3.375rem;
  }
}
@media screen and (min-width: 768px) {
  .p-front-keyword__list.column-3 .p-front-keyword__item {
    width: calc((100% - 6.75rem) / 3);
  }
}
@media screen and (min-width: 768px) {
  .p-front-keyword__list.column-3 .p-front-keyword__item .circle {
    width: 3.1875rem;
    height: 3.75rem;
  }
}
@media screen and (min-width: 768px) {
  .p-front-keyword__list.column-3 .p-front-keyword__item:nth-child(1) .circle {
    left: unset;
    right: 5rem;
  }
}
@media screen and (min-width: 768px) {
  .p-front-keyword__list.column-3 .p-front-keyword__item:nth-child(2) {
    margin-top: 5rem;
  }
}
@media screen and (min-width: 768px) {
  .p-front-keyword__list.column-3 .p-front-keyword__item:nth-child(2) .circle {
    right: 5rem;
    left: unset;
  }
}
@media screen and (min-width: 768px) {
  .p-front-keyword__list.column-3 .p-front-keyword__item:nth-child(3) {
    margin-top: 0.625rem;
  }
}
@media screen and (min-width: 768px) {
  .p-front-keyword__list.column-3 .p-front-keyword__item:nth-child(3) .circle {
    left: 5rem;
    transform: scale(-1, 1);
  }
}

.p-front-keyword__deco {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 5.9375rem;
  filter: drop-shadow(0.9375rem 1.25rem 0.1875rem rgba(0, 0, 0, 0.16));
  animation: float-keyword 1.6s ease-in-out infinite alternate-reverse;
}
@media screen and (min-width: 768px) {
  .p-front-keyword__deco {
    bottom: -5.3125rem;
    width: 11.6875rem;
    filter: drop-shadow(1.0625rem 2.25rem 0.1875rem rgba(0, 0, 0, 0.16));
  }
}

@keyframes float-keyword {
  0% {
    transform: translateX(-50%) translateY(-0.5625rem);
  }
  100% {
    transform: translateX(-50%) translateY(0.5625rem);
  }
}
.p-front-keyword__message {
  text-align: center;
  margin-top: 4.6875rem;
  font-size: 1.25rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-front-keyword__message {
    position: absolute;
    bottom: -10.9375rem;
    left: 50%;
    transform: translate(-50%);
    margin-top: 0;
    font-size: 2rem;
    line-height: 1.75;
  }
}

/*=============================
ルピシアのあれこれ
=============================*/
.p-front-about {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-front-about {
    margin-top: 18.75rem;
  }
}
.p-front-about .p-front-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-front-about__wrapper {
  position: relative;
}
.p-front-about__wrapper::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 2.5rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-front-about__wrapper::before {
    width: 88.3%;
    min-width: clamp(94.063rem, 45.779rem + 50.13vw, 105.938rem);
    border-radius: 0 5rem 5rem 0;
  }
}

.p-front-about__inner {
  width: 91%;
  max-width: 87.5rem;
  margin: 0 auto;
  padding-block: 3.125rem 2.8125rem;
}
@media screen and (min-width: 768px) {
  .p-front-about__inner {
    padding-block: 6.125rem 8rem;
  }
}

.p-front-about__interview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-top: 1.875rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-front-about__interview {
    flex-direction: unset;
    gap: 4.875rem;
    margin-top: 3.125rem;
  }
}

.p-front-about__interview-image {
  max-width: 43.75rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-front-about__interview-image {
    width: 50%;
  }
}

.p-front-about__interview-cont {
  flex: 1;
}
@media screen and (min-width: 768px) {
  .p-front-about__interview-cont {
    padding-right: 6.25rem;
  }
}
.p-front-about__interview-cont .sub-title {
  display: inline-block;
  font-size: 1rem;
  border-bottom: solid 0.0625rem #DFDED9;
}
@media screen and (min-width: 768px) {
  .p-front-about__interview-cont .sub-title {
    font-size: 1.5rem;
  }
}
.p-front-about__interview-cont .title {
  font-weight: 500;
  margin-top: 0.4375rem;
}
.p-front-about__interview-cont .text {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-front-about__interview-cont .text {
    margin-top: 1.25rem;
  }
}
.p-front-about__interview-cont .p-front-button {
  gap: 1rem;
  margin-top: 1.25rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-front-about__interview-cont .p-front-button {
    gap: 1.5rem;
    margin-top: 1.875rem;
    margin-inline: unset;
  }
}
.p-front-about__interview-cont .arrow-circle {
  border: solid 0.0625rem #fff;
}
.p-front-about__interview-cont .arrow {
  background-image: url("../images/icons/arrow-wht.png");
}

.p-front-about__lower.l-inner {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-front-about__lower.l-inner {
    width: 90%;
  }
}

.p-front-about__banner {
  position: relative;
}

.p-front-about__banner-list {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
  margin-top: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .p-front-about__banner-list {
    flex-direction: unset;
    gap: 1.875rem;
    margin-top: 5.5rem;
  }
}

.p-front-about__banner-link {
  display: block;
  position: relative;
  filter: drop-shadow(0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16));
}
.p-front-about__banner-link:hover .p-front-about__banner-image {
  transform: scale(1.04);
}
.p-front-about__banner-link:hover .arrow-circle {
  transform: scale(1.08);
  background-color: #fff;
}
.p-front-about__banner-link:hover .arrow {
  background-image: url("../images/icons/arrow-grn.png");
}
.p-front-about__banner-link .arrow-circle {
  position: absolute;
  bottom: 0.6875rem;
  right: 0.6875rem;
  border: solid 0.0625rem #fff;
}
@media screen and (min-width: 768px) {
  .p-front-about__banner-link .arrow-circle {
    bottom: 1.25rem;
    right: 1.25rem;
  }
}
.p-front-about__banner-link .arrow {
  background-image: url("../images/icons/arrow-wht.png");
}

.p-front-about__banner-image {
  transition: 0.3s;
}

.p-front-about__deco-01 {
  width: 4.6875rem;
  position: absolute;
  top: 1rem;
  left: -0.625rem;
  filter: drop-shadow(0.9375rem 1.25rem 0.1875rem rgba(0, 0, 0, 0.16));
}
@media screen and (min-width: 768px) {
  .p-front-about__deco-01 {
    width: 9rem;
    top: 2.5rem;
    left: -2.8125rem;
    filter: drop-shadow(1.0625rem 2.25rem 0.1875rem rgba(0, 0, 0, 0.16));
  }
}

.p-front-about__deco-02 {
  width: 4.25rem;
  position: absolute;
  top: -3.4375rem;
  left: 2.6875rem;
  filter: drop-shadow(0rem 1.25rem 0.1875rem rgba(0, 0, 0, 0.16));
  animation: float-about 1.8s ease-in-out infinite alternate-reverse;
}
@media screen and (min-width: 768px) {
  .p-front-about__deco-02 {
    width: 8rem;
    top: -5.625rem;
    filter: drop-shadow(0rem 2.25rem 0.1875rem rgba(0, 0, 0, 0.16));
  }
}

@keyframes float-about {
  0% {
    transform: translateY(-0.375rem);
  }
  100% {
    transform: translateY(0.375rem);
  }
}
.p-front-about__deco-03 {
  width: clamp(5.875rem, 4.32rem + 6.63vw, 7.5rem);
  position: absolute;
  bottom: calc(clamp(5.938rem, 4.443rem + 6.38vw, 7.5rem) * -1);
  right: -0.875rem;
  z-index: 1;
  filter: drop-shadow(0 1.25rem 0.1875rem rgba(0, 0, 0, 0.16));
}
@media screen and (min-width: 768px) {
  .p-front-about__deco-03 {
    width: 11.3125rem;
    bottom: -11.875rem;
    right: -4.375rem;
    filter: drop-shadow(0 2.25rem 0.1875rem rgba(0, 0, 0, 0.16));
  }
}

.p-front-about__workplace {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-front-about__workplace {
    margin-top: 6.625rem;
  }
}
.p-front-about__workplace .title-h4 {
  font-weight: 500;
}

.p-front-about__workplace-list {
  display: flex;
  flex-direction: column;
  gap: 1.5625rem;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-front-about__workplace-list {
    flex-direction: unset;
    gap: 1.25rem;
    margin-top: 1.25rem;
  }
}

.p-front-about__workplace-item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-front-about__workplace-item {
    width: calc((100% - 2.5rem) / 3);
  }
}

.p-front-about__workplace-link:hover .p-front-about__workplace-image .image {
  transform: scale(1.05);
}
.p-front-about__workplace-link:hover .arrow-circle {
  background-color: var(--brown);
}
.p-front-about__workplace-link:hover .arrow {
  background-image: url("../images/icons/arrow-wht.png");
}

.p-front-about__workplace-image {
  border: solid 0.1875rem #DEDACB;
  border-radius: 0.625rem;
  overflow: hidden;
  aspect-ratio: 375/169;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-front-about__workplace-image {
    border: solid 0.375rem #DEDACB;
    border-radius: 1.25rem;
  }
}
.p-front-about__workplace-image .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  will-change: transform;
  backface-visibility: hidden;
  transform-origin: center center;
}

.p-front-about__workplace-title {
  margin-top: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .p-front-about__workplace-title {
    margin-top: 0.875rem;
    padding-right: 1.625rem;
  }
}
.p-front-about__workplace-title .title {
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-front-about__workplace-title .title {
    font-size: 1.75rem;
  }
}
.p-front-about__workplace-title .arrow-circle {
  border: solid 0.0625rem;
  width: 2rem;
  height: 1.3125rem;
}
.p-front-about__workplace-title .arrow {
  width: 0.5625rem;
  height: 0.4375rem;
  background-image: url("../images/icons/arrow-brn.png");
}

/*=============================
NEWS
=============================*/
.p-front-news {
  padding-block: 3.125rem 4.0625rem;
}
@media screen and (min-width: 768px) {
  .p-front-news {
    padding-block: 6.25rem 6.875rem;
  }
}

.p-front-news__contents {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-front-news__contents {
    flex-direction: unset;
    gap: 4.375rem;
  }
}

.p-front-news__contents-head {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .p-front-news__contents-head {
    display: block;
  }
}
.p-front-news__contents-head .logomark {
  width: 9.375rem;
  margin-bottom: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-front-news__contents-head .logomark {
    width: 100%;
    margin-bottom: 0;
  }
}

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

.p-front-news__item {
  border-bottom: solid 0.0625rem #DFDED9;
}

.p-front-news__item:first-child {
  border-top: solid 0.0625rem #DFDED9;
}

.p-front-news__link {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  position: relative;
  padding-block: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-front-news__link {
    align-items: center;
    gap: 1.875rem;
    padding-block: 1.5rem;
  }
}
.p-front-news__link:hover .p-front-news__image .image {
  transform: scale(1.05);
}
.p-front-news__link:hover .p-front-news__textbox {
  opacity: 0.8;
}
.p-front-news__link:hover .arrow-circle {
  background-color: #fff;
  border: solid 0.0625rem #fff;
}

.p-front-news__image {
  aspect-ratio: 153/97;
  width: 32%;
  max-width: 9.5625rem;
  border-radius: 0.625rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-front-news__image {
    width: 100%;
  }
}
.p-front-news__image .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  will-change: transform;
  backface-visibility: hidden;
  transform-origin: center center;
}

.p-front-news__textbox {
  flex: 1;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-front-news__textbox {
    flex: unset;
    width: calc(100% - 14.375rem);
  }
}
.p-front-news__textbox .title {
  line-height: 1.4;
}
.p-front-news__textbox .arrow-circle {
  border: solid 0.0625rem var(--brown);
  position: absolute;
  bottom: 0.375rem;
  right: 0;
}
@media screen and (min-width: 768px) {
  .p-front-news__textbox .arrow-circle {
    bottom: 0.8125rem;
  }
}
.p-front-news__textbox .arrow {
  background-image: url("../images/icons/arrow-brn.png");
}

.no-movie-message {
  text-align: center;
  color: #777;
  padding: 40px 0;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .no-movie-message {
    font-size: 16px;
  }
}

@media screen and (min-width: 576px) {
  .sp-only_br {
    display: none;
  }
}

/*=============================
ショート動画モーダル
=============================*/
.short-movie__modalwrapper {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.short-movie__overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 30, 30, 0.9);
  z-index: 0;
}

.short-movie__modal {
  position: relative;
  z-index: 1;
  width: calc(56.25vh - 130px);
  margin-inline: 30px;
}
@media screen and (min-width: 576px) {
  .short-movie__modal {
    width: calc(56.25vh - 110px);
  }
}

.short-movie__video {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
}

.short-movie__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.short-movie__text {
  background: #23613A;
  text-align: center;
  padding: 10px 40px;
  width: 100%;
  color: #fff;
  border-radius: 10px;
  margin-inline: auto;
  font-size: 13px;
  letter-spacing: 3px;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .short-movie__text {
    font-size: 15px;
  }
}

.short-movie__closemodal {
  position: absolute;
  top: -37px;
  right: 0px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .short-movie__closemodal {
    top: -50px;
    font-size: 40px;
  }
}
@media screen and (min-width: 1100px) {
  .short-movie__closemodal {
    top: -22px;
    right: -50px;
    font-size: 50px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

.p-contact input[type=submit],
.p-contact input[type=button] {
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  box-sizing: border-box;
  cursor: pointer;
}
.p-contact input[type=submit]::-webkit-search-decoration,
.p-contact input[type=button]::-webkit-search-decoration {
  display: none;
}
.p-contact input[type=submit]::focus,
.p-contact input[type=button]::focus {
  outline-offset: -0.125rem;
}

.p-contact__form {
  max-width: 50rem;
  margin: 0 auto;
  background-color: var(--white);
  border-radius: 2rem;
  padding: 2rem;
}
.p-contact__form .formSend {
  display: none;
  text-align: center;
}
.p-contact__form.sent .formInput {
  display: none;
}
.p-contact__form.sent .formSend {
  display: block;
}
.p-contact__form .form-title {
  text-align: center;
  font-weight: normal;
  font-size: 2em;
}
.p-contact__form .form-text {
  text-align: center;
}
.p-contact__form .form-content {
  margin-top: 1rem;
}
.p-contact__form .form-item {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-contact__form .form-item {
    grid-template-columns: 12em auto;
  }
}
.p-contact__form .form-item input, .p-contact__form .form-item textarea {
  padding: 0.3125rem;
  width: 100%;
}
.p-contact__form .form-item .size-zip {
  max-width: 10em;
}
.p-contact__form .form-item + .form-item {
  border-top: 0.0625rem solid var(--border-c);
  padding-top: 1em;
  margin-top: 1.5em;
}
@media screen and (min-width: 768px) {
  .p-contact__form .form-item + .form-item {
    border: none;
    padding-top: 0;
  }
}
.p-contact__form .label.-caution:after {
  content: "必須";
  background-color: var(--black);
  color: var(--white);
  font-size: 0.8em;
  padding: 0.1875rem 0.375rem;
  margin-left: 0.3125rem;
}
.p-contact__form .wpcf7-submit {
  display: block;
  margin-top: 2em;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--black);
  color: var(--white);
  border: 0.0625rem solid var(--black);
  font-size: 1.25rem;
  width: 90%;
  max-width: 20em;
  border-radius: 2rem;
  transition: 0.3s;
  padding: 0.5em;
}
@media screen and (min-width: 768px) {
  .p-contact__form .wpcf7-submit {
    padding: 0.8em;
  }
}
.p-contact__form .wpcf7-submit:hover {
  background-color: var(--white);
  color: var(--black);
}
.p-contact__form .wpcf7-response-output {
  display: none;
}

/*---------ヘルパークラス　接頭辞「u-」-------------*/
.u-sp {
  display: block !important;
}
@media screen and (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}

.u-pc {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .u-pc {
    display: block !important;
  }
}

.u-hide {
  visibility: hidden !important;
  opacity: 0 !important;
}

.u-show {
  visibility: visible !important;
  opacity: 1 !important;
}

.u-hidden {
  overflow: hidden !important;
}

.u-d-inline {
  display: inline-block !important;
}

.u-mt-xs {
  margin-top: 0.3125rem !important;
}

.u-mt-s {
  margin-top: 0.625rem !important;
}

.u-mt-m {
  margin-top: 1.25rem !important;
}

.u-mt-l {
  margin-top: 1.875rem !important;
}

.u-mt-xl {
  margin-top: 1.875rem !important;
}

.u-mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

@media screen and (min-width: 768px) {
  .u-mt-xs {
    margin-top: 0.625rem !important;
  }
  .u-mt-s {
    margin-top: 1.25rem !important;
  }
  .u-mt-m {
    margin-top: 1.875rem !important;
  }
  .u-mt-l {
    margin-top: 3.75rem !important;
  }
  .u-mt-xl {
    margin-top: 5rem !important;
  }
}
.u-bg {
  background-color: var(--bg-c);
}

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

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

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

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

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

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

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

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

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

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

.u-tac {
  text-align: center !important;
}

.u-tal {
  text-align: left !important;
}

.u-tar {
  text-align: right !important;
}

.u-taj {
  text-align: justify !important;
}

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

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

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

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

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

.u-text-22 {
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .u-text-22 {
    font-size: 1.375rem;
  }
}

.u-text-32 {
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .u-text-32 {
    font-size: 2rem;
  }
}/*# sourceMappingURL=style.css.map */