@charset "UTF-8";
/*-----------ベース -----------*/
:root {
  --yellow: #ffef00;
  --lightyellow: #f9f2bb;
  --blue: #0000ff;
  --navy: #053e62;
  --lightblue: #EBEBFF;
  --lightgreen: #dcedd0;
  --red: #FF0000;
  --orange: #D63215;
  --white: #fff;
  --offwhite: #f9f9f9;
  --black: #3A3330;
  --grey: #CFCFCF;
  --darkgrey: #848c8f;
  --lightgrey: #F7F7F2;
  --ivory: #f5f1eb;
  --main-c: var(--orange);
  --base-c: var(--lightgrey);
  --accent-c: var(--yellow);
  --bg-c: var(--white);
  --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] {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0;
  -webkit-filter: blur(0.625rem);
          filter: blur(0.625rem);
}

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

[data-slidein-border] {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      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;
  -webkit-transform: translateX(-3.125rem);
          transform: translateX(-3.125rem);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: transform 0.6s, opacity 0.6s;
  transition: transform 0.6s, opacity 0.6s, -webkit-transform 0.6s;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

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

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

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

@-webkit-keyframes textAnim {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

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

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

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

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

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

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

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

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

del {
  text-decoration: line-through;
}

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

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

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

input,
select {
  vertical-align: middle;
}

i {
  font-style: normal;
}

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

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

html {
  text-underline-position: under;
}
@media (max-width: 374px) {
  html {
    font-size: 4.2780748663vw;
  }
}
@media (min-width: 375px) and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  html {
    font-size: 1.1428571429vw;
  }
}
@media (min-width: 1401px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "Zen Kaku Gothic New", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.8;
  width: 100%;
  overflow-x: hidden;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  color: var(--black);
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1rem;
  }
}
body.is-scroll-lock {
  overflow: hidden;
  height: 100vh;
}

a {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

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

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

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

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

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

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

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

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

.l-archive-blog__title {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-archive-blog__title {
    text-align: left;
  }
}

.l-archive-blog__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .l-archive-blog__container {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    gap: 6.5625rem;
    margin-top: 3rem;
  }
}

@media screen and (min-width: 768px) {
  .l-archive-blog__main {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.l-archive-blog__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .l-archive-blog__list {
    -webkit-column-gap: 2.1875rem;
       -moz-column-gap: 2.1875rem;
            column-gap: 2.1875rem;
    row-gap: 3.125rem;
  }
}

.l-archive-blog__item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-archive-blog__item {
    width: calc((100% - 2.1875rem) / 2);
  }
}
.l-archive-blog__item .link {
  position: relative;
}
.l-archive-blog__item .link:hover .image-wrap img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.l-archive-blog__item .image-wrap {
  aspect-ratio: 450/281;
  width: 100%;
  height: auto;
  border-radius: 1.25rem;
  overflow: hidden;
}
.l-archive-blog__item .image-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-archive-blog__item .title {
  font-size: 1.125rem;
  font-weight: 500;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .l-archive-blog__item .title {
    font-size: 1.25rem;
    margin-top: 1.25rem;
  }
}
.l-archive-blog__item .new {
  display: block;
  width: 5rem;
  height: 5rem;
  background-image: url("../images/icons/icon-new.webp");
  background-size: cover;
  position: absolute;
  top: -0.625rem;
  left: -0.625rem;
  z-index: 4;
}
@media screen and (min-width: 640px) {
  .l-archive-blog__item .new {
    width: clamp(3.125rem, -0.025rem + 7.87vw, 3.75rem);
    height: clamp(3.125rem, -0.025rem + 7.87vw, 3.75rem);
  }
}
@media screen and (min-width: 768px) {
  .l-archive-blog__item .new {
    width: 5.625rem;
    height: 5.625rem;
    left: -0.625rem;
  }
}

.l-archive-blog__pagenation {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.3125rem;
  margin-top: 5rem;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .l-archive-blog__pagenation {
    margin-top: 8rem;
    margin-bottom: 0;
  }
}
.l-archive-blog__pagenation.-sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .l-archive-blog__pagenation.-sp {
    display: none;
  }
}
.l-archive-blog__pagenation.-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-archive-blog__pagenation.-pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.l-archive-blog__pagenation .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1.875rem;
  height: 1.875rem;
  font-family: "Google Sans Flex", sans-serif;
  font-size: 1.25rem;
  color: #636363;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.l-archive-blog__pagenation .link:hover {
  opacity: 0.6;
}
.l-archive-blog__pagenation .link.is-active {
  color: var(--main-c);
}
.l-archive-blog__pagenation .arrow-prev,
.l-archive-blog__pagenation .arrow-next {
  width: 100%;
  height: 100%;
  background-image: url("../images/icons/icon-prev-next.svg");
  background-size: cover;
  margin-bottom: 0.1875rem;
}
.l-archive-blog__pagenation .arrow-prev {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.l-archive-voice {
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .l-archive-voice {
    padding-bottom: 8rem;
  }
}

.l-archive-voice__head-title {
  text-align: center;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .l-archive-voice__head-title {
    margin-bottom: 3rem;
  }
}

.l-archive-voice__section-title:first-child {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .l-archive-voice__section-title:first-child {
    margin-top: 4rem;
  }
}
.l-archive-voice__section-title:not(:first-child) {
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .l-archive-voice__section-title:not(:first-child) {
    margin-top: 8rem;
  }
}

.l-archive-voice__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .l-archive-voice__list {
    -webkit-column-gap: 1.875rem;
       -moz-column-gap: 1.875rem;
            column-gap: 1.875rem;
    row-gap: 2rem;
    margin-top: 2rem;
  }
}

.l-archive-voice__item {
  border: solid 0.0625rem var(--border-c);
  border-radius: 1.25rem;
  overflow: hidden;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-archive-voice__item {
    width: calc((100% - 3.75rem) / 3);
  }
}

.l-archive-voice__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.l-archive-voice__link:hover .c-button {
  background: var(--main-c);
  color: #fff;
  border-color: #fff;
}
.l-archive-voice__link:hover .c-button .c-arrow {
  color: #fff;
}
.l-archive-voice__link .image-wrap {
  aspect-ratio: 380/237;
  width: 100%;
  height: auto;
}
.l-archive-voice__link .image-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-archive-voice__link .body {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #fff;
  padding: 1.875rem 1.5625rem 2.5rem;
}
.l-archive-voice__link .title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.l-archive-voice__link .name {
  font-size: 1.125rem;
  font-weight: 500;
  margin-top: 0.3125rem;
}
.l-archive-voice__link .c-button {
  background: #fff;
  color: var(--black);
  border-color: var(--black);
  margin-top: 1.875rem;
  margin-left: auto;
}
.l-archive-voice__link .c-arrow {
  color: var(--main-c);
}

.l-article-blog__container {
  padding-bottom: 7.75rem;
}
@media screen and (min-width: 576px) {
  .l-article-blog__container {
    padding-bottom: 5rem;
  }
}
@media screen and (min-width: 768px) {
  .l-article-blog__container {
    padding-bottom: 8rem;
  }
}

.l-article-blog__head .l-inner--sm {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-article-blog__head .l-inner--sm {
    width: 90%;
  }
}

.l-article-blog__head-title {
  font-size: 1.25rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .l-article-blog__head-title {
    font-size: 1.75rem;
  }
}

.l-article-blog__head-lower {
  margin-top: 2.5rem !important;
}
@media screen and (min-width: 768px) {
  .l-article-blog__head-lower {
    margin-top: 4rem;
  }
}

.l-article-blog__head-image {
  aspect-ratio: 1200/500;
  width: 100%;
  height: auto;
  border-radius: 0.625rem;
  overflow: hidden;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .l-article-blog__head-image {
    border-radius: 1.25rem;
    margin-top: 3rem;
  }
}
.l-article-blog__head-image .image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.l-article-blog__head-text {
  font-size: 1rem;
}

.l-article-blog__index {
  border: solid 0.0625rem var(--main-c);
  border-radius: 0.625rem;
  padding: 1.25rem 1.5625rem;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .l-article-blog__index {
    border-radius: 1.25rem;
    padding: 1.875rem 2.5rem;
    margin-top: 3rem;
  }
}

.l-article-blog__index-head-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .l-article-blog__index-head-title {
    gap: 0.75rem;
    font-size: 1rem;
  }
}
.l-article-blog__index-head-title .icon {
  display: block;
  width: 0.875rem;
  height: 0.875rem;
  background-image: url("../images/icons/icon-index.svg");
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .l-article-blog__index-head-title .icon {
    width: 1.125rem;
    height: 1.125rem;
  }
}

.l-article-blog__index-list {
  margin-top: 0.3125rem;
}

.l-article-blog__index-item .index-link {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.l-article-blog__index-item .index-link:hover {
  opacity: 0.6;
}
.l-article-blog__index-item .index-title {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
}
.l-article-blog__index-item .index-title.-title-lg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.25rem;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .l-article-blog__index-item .index-title.-title-lg {
    font-size: 1.125rem;
  }
}
.l-article-blog__index-item .index-title.-title-sm {
  font-size: 0.75rem;
  margin-left: 0.625rem;
}
@media screen and (min-width: 768px) {
  .l-article-blog__index-item .index-title.-title-sm {
    font-size: 0.875rem;
    margin-left: 1.25rem;
  }
}

.l-article-blog__content {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .l-article-blog__content {
    margin-top: 3rem;
  }
}

.l-article-blog__pagenation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: solid 1px var(--border-c);
  padding-top: 1.875rem;
  margin-top: 1.875rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-article-blog__pagenation {
    padding-top: 3rem;
    margin-top: 3rem;
  }
}
.l-article-blog__pagenation .item.is-empty {
  visibility: hidden;
  pointer-events: none;
}
.l-article-blog__pagenation .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
  width: 5.3125rem;
  position: relative;
}
.l-article-blog__pagenation .link:hover .c-arrow.-prev {
  left: -0.3125rem;
}
.l-article-blog__pagenation .link:hover .c-arrow.-next {
  right: -0.3125rem;
}
.l-article-blog__pagenation .link.-prev {
  padding-left: 1.5rem;
}
.l-article-blog__pagenation .link.-next {
  padding-right: 1.5rem;
}
.l-article-blog__pagenation .c-arrow {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--main-c);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.l-article-blog__pagenation .c-arrow.-prev {
  left: 0;
  -webkit-transform: scale(-1, 1) translateY(-50%);
          transform: scale(-1, 1) translateY(-50%);
}
.l-article-blog__pagenation .c-arrow.-next {
  right: 0;
}
.l-article-blog__pagenation .c-button.-return {
  border: solid 0.0625rem var(--main-c);
  color: var(--main-c);
  position: absolute;
  bottom: -100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 576px) {
  .l-article-blog__pagenation .c-button.-return {
    position: relative;
    bottom: unset;
    left: unset;
    -webkit-transform: unset;
            transform: unset;
  }
}
.l-article-blog__pagenation .c-button.-return:hover {
  background-color: var(--main-c);
  color: #fff;
}
.l-article-blog__pagenation .c-button.-return .icon {
  width: 1.5rem;
  height: 1.5rem;
  background-image: url("../images/icons/button-icon-return.php");
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 0.75rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.l-article-voice__image {
  aspect-ratio: 900/563;
  width: 100%;
  height: auto;
  border-radius: 1.25rem;
  overflow: hidden;
}
.l-article-voice__image .image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.l-article-voice__title {
  border-bottom: solid 0.0625rem var(--border-c);
  padding-bottom: 0.75rem;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .l-article-voice__title {
    margin-top: 4rem;
  }
}
.l-article-voice__title .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .l-article-voice__title .info {
    gap: 1.25rem;
  }
}
.l-article-voice__title .category-item {
  background-color: var(--main-c);
  border-radius: 1.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #fff;
  padding: 0.4375rem 1.5625rem 0.5rem;
}
@media screen and (min-width: 768px) {
  .l-article-voice__title .category-item {
    font-size: 1rem;
  }
}
.l-article-voice__title .name {
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .l-article-voice__title .name {
    font-size: 1.125rem;
  }
}
.l-article-voice__title .main-title {
  margin-top: 0.9375rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .l-article-voice__title .main-title {
    margin-top: 1.25rem;
  }
}

.l-article-voice__body {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .l-article-voice__body {
    margin-top: 3rem;
  }
}
.l-article-voice__body .text-box + .text-box {
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .l-article-voice__body .text-box + .text-box {
    margin-top: 2.5rem;
  }
}
.l-article-voice__body .title {
  padding-left: 2.8125rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-article-voice__body .title {
    padding-left: 3.4375rem;
  }
}
.l-article-voice__body .title::before {
  content: "";
  display: inline-block;
  width: 1.875rem;
  height: 0.0625rem;
  background-color: var(--main-c);
  position: absolute;
  top: 0.8em;
  left: 0;
}
@media screen and (min-width: 768px) {
  .l-article-voice__body .title::before {
    width: 2.5rem;
  }
}
.l-article-voice__body .text {
  margin-top: 0.9375rem;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .l-article-voice__body .text {
    margin-top: 1.25rem;
  }
}

.l-article-voice__other {
  background-color: rgba(214, 50, 21, 0.25);
  border-radius: 1.875rem 1.875rem 0 0;
  padding-block: 3.75rem 5rem;
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .l-article-voice__other {
    border-radius: 3.75rem 3.75rem 0 0;
    padding-block: 7.5rem 8rem;
    margin-top: 8rem;
  }
}
.l-article-voice__other .c-button.-return {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1.875rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-article-voice__other .c-button.-return {
    margin-top: 3rem;
  }
}
.l-article-voice__other .c-button.-return .icon {
  position: absolute;
  top: 50%;
  left: 0.75rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
}
@media screen and (min-width: 768px) {
  .l-article-voice__other .c-button.-return .icon {
    left: 1.25rem;
  }
}

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

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

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

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

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

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

.l-color-main-wrapper {
  background-color: rgba(214, 50, 21, 0.25);
}

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

.l-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.l-flex.-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.l-flex.-jbetween {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.l-flex.-jcenter {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.l-flex.-jaround {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.l-flex.-acenter {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-flex.-abaseline {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.l-flex.-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: 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.5);
  backdrop-filter: blur(0.25rem);
  opacity: 0;
  position: fixed;
  top: 0;
  right: -100%;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.l-overlay.is-open {
  right: 0;
  opacity: 1;
  z-index: 4;
}

.l-footer {
  width: 100%;
  background-color: var(--black);
  color: #fff;
  position: relative;
  z-index: 0;
}
.l-footer a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-footer a:hover {
  opacity: 0.6;
}

.l-footer__inner {
  padding: 2.5rem 1.25rem 5.875rem;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-footer__inner {
    padding-block: 3.75rem;
    padding-inline: clamp(1.875rem, -13.309rem + 17.34vw, 7.5rem);
  }
}
.l-footer__inner::before {
  content: "";
  display: inline-block;
  aspect-ratio: 1400/1601;
  width: 86%;
  height: auto;
  background-image: url("../images/front/deco-logo.webp");
  background-size: cover;
  position: absolute;
  top: 1.625rem;
  right: -30%;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .l-footer__inner::before {
    width: 31.25rem;
    top: 50%;
    right: 3.75rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.c-footer__upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .c-footer__upper {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
  }
}

.c-footer__logo img {
  width: 17.625rem;
}
@media screen and (min-width: 768px) {
  .c-footer__logo img {
    width: 23.4375rem;
  }
}

.c-footer__nav {
  width: 100%;
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .c-footer__nav {
    width: auto;
    margin-top: 0;
  }
}

.c-footer__nav-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .c-footer__nav-inner {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    gap: 1.5625rem;
  }
}

.c-footer__nav-list-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.9375rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-footer__nav-list-wrap {
    gap: 1.5625rem;
    width: auto;
  }
}

.c-footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-weight: 500;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 768px) {
  .c-footer__nav-list {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    gap: 1.5625rem;
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
  }
}

.c-footer__sub-list {
  margin-top: 0.125rem;
}

.c-footer__sub-item {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .c-footer__sub-item {
    font-size: 0.9375rem;
  }
}

.c-footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}

.c-footer__sns-link .icon {
  width: 2rem;
  height: 2rem;
}

.c-footer__lower {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .c-footer__lower {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 7.5rem;
  }
}
.c-footer__lower .privacy-policy {
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .c-footer__lower .privacy-policy {
    font-size: 1rem;
  }
}
.c-footer__lower .copyright {
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .c-footer__lower .copyright {
    font-size: 0.875rem;
  }
}

.banner-fixed {
  width: 100%;
  height: 100dvh;
  position: fixed;
  inset: 0;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.banner-fixed.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.banner-fixed.is-closing {
  pointer-events: none;
}
.banner-fixed.is-closing .banner-overlay {
  opacity: 0;
  -webkit-transition: opacity 0.45s ease;
  transition: opacity 0.45s ease;
}
.banner-fixed.is-closing .banner-fixed__add {
  -webkit-animation: bannerCloseSp 0.45s cubic-bezier(0.4, 0, 0.2, 1) forwards;
          animation: bannerCloseSp 0.45s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.banner-fixed.hidden {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .banner-fixed {
    display: block;
    top: unset;
    bottom: 5%;
    left: unset;
    right: 1.25rem;
    width: 16.25rem;
    height: 16.25rem;
  }
}
.banner-fixed .close-btn {
  aspect-ratio: 1/1;
  width: 9%;
  min-width: 1.5625rem;
  height: auto;
  position: absolute;
  top: calc(clamp(0.563rem, 0.204rem + 1.53vw, 0.938rem) * -1);
  right: clamp(0.625rem, -0.571rem + 5.1vw, 1.875rem);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: 1001;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .banner-fixed .close-btn {
    width: 1.5625rem;
    top: -0.5625rem;
    right: 0.625rem;
  }
}
.banner-fixed .close-btn:hover {
  opacity: 0.6;
}

@-webkit-keyframes bannerCloseSp {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  70% {
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(10vw, 35vh) scale(0.12);
            transform: translate(10vw, 35vh) scale(0.12);
    opacity: 0;
  }
}

@keyframes bannerCloseSp {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  70% {
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(10vw, 35vh) scale(0.12);
            transform: translate(10vw, 35vh) scale(0.12);
    opacity: 0;
  }
}
.banner-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  opacity: 1;
  z-index: 999;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: backdrop-filter;
  isolation: isolate;
  contain: paint;
}
@media screen and (min-width: 768px) {
  .banner-overlay {
    display: none;
  }
}

.banner-fixed__add {
  aspect-ratio: 1/1;
  min-width: 16.25rem;
  width: 69%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1000;
}
@media screen and (min-width: 768px) {
  .banner-fixed__add {
    width: 16.25rem;
    position: relative;
    top: unset;
    left: unset;
    -webkit-transform: unset;
            transform: unset;
  }
}

.banner-fixed__link {
  display: block;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.banner-fixed__link:hover {
  opacity: 0.6;
}

.page-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 3.125rem;
  height: 3.125rem;
  background-color: var(--black);
  border-radius: 50%;
  border: solid 0.0625rem #fff;
  font-size: 0.75rem;
  color: #fff;
  position: absolute;
  top: -1.5625rem;
  right: 1.25rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .page-top {
    width: 5rem;
    height: 5rem;
    font-size: 1rem;
    top: -2.5rem;
    right: 1.5625rem;
  }
}
.page-top:hover {
  background-color: #fff;
  border-color: var(--black);
  color: var(--black);
}
.page-top .c-arrow {
  width: 0.5625rem;
  height: 0.5625rem;
}
@media screen and (min-width: 768px) {
  .page-top .c-arrow {
    width: 0.75rem;
    height: 0.75rem;
  }
}
.page-top .c-arrow svg {
  width: auto;
  height: 100%;
}

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

/*********************************************
 * サイドバーのレイアウト
 *
 * 接頭詞『.l-sidebar』
 *********************************************/
.l-sidebar {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-sidebar {
    position: sticky;
    width: 18.75rem;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    top: 2rem;
    padding-bottom: 5rem;
    -webkit-transition: top 0.5s ease-in-out;
    transition: top 0.5s ease-in-out;
  }
}

@media screen and (min-width: 768px) {
  .l-sidebar.-shift {
    top: 9.5rem;
  }
}

.l-sidebar a {
  text-decoration: none;
}

.l-sidebar__banner {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.l-sidebar__banner:hover {
  opacity: 0.6;
}

.l-sidebar-content {
  margin-top: 3.125rem;
}
.l-sidebar-content .l-sidebar__body {
  margin-top: 0.1875rem;
}
.l-sidebar-content .num {
  color: #636363;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.l-sidebar__title {
  font-family: "Google Sans Flex", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.6;
}

.l-sidebar-content.-pickup .l-sidebar__body {
  margin-top: 1.25rem;
}
.l-sidebar-content.-pickup .pickup-item + .pickup-item {
  margin-top: 0.9375rem;
}
.l-sidebar-content.-pickup .pickup-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.9375rem;
}
.l-sidebar-content.-pickup .pickup-link:hover .image-wrap img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.l-sidebar-content.-pickup .image-wrap {
  width: 7.5rem;
  height: 4.6875rem;
  border-radius: 0.625rem;
  overflow: hidden;
}
.l-sidebar-content.-pickup .image-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-sidebar-content.-pickup .body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.l-sidebar-content.-pickup .title {
  font-size: 0.875rem;
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.l-sidebar-content.-pickup .c-meta.-blog {
  margin-top: 0.4375rem;
}
.l-sidebar-content.-pickup .c-meta.-blog .date {
  font-size: 0.75rem;
  border-left: solid 0.1875rem var(--main-c);
  padding-left: 0.3125rem;
}

.l-sidebar-content.-category .term-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: solid 0.0625rem var(--border-c);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 0.625rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-sidebar-content.-category .term-title:hover {
  border-bottom: solid 0.0625rem var(--main-c);
}
.l-sidebar-content.-category .term-title:hover .arrow {
  background-color: var(--main-c);
  border: solid 0.0625rem var(--main-c);
  color: #fff;
}
.l-sidebar-content.-category .arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1.875rem;
  height: 0.875rem;
  border-radius: 0.625rem;
  border: solid 0.0625rem var(--black);
  color: var(--black);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-sidebar-content.-category .arrow svg {
  width: 0.5625rem;
  height: 0.1875rem;
}

.l-sidebar-content.-archive .item {
  border-bottom: solid 0.0625rem var(--border-c);
  position: relative;
}
.l-sidebar-content.-archive .menu {
  padding: 0.5rem 0.625rem;
  font-size: 1rem;
  font-weight: 500;
  position: relative;
}
.l-sidebar-content.-archive .menu_wrap {
  display: none;
  position: static;
  top: auto;
  bottom: auto;
  padding: 0 0.625rem 0.5rem;
}
.l-sidebar-content.-archive .menu.is-active + .menu_wrap {
  display: block;
}
.l-sidebar-content.-archive .menu_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-row: 0.3125rem;
}
.l-sidebar-content.-archive .menu_item {
  font-weight: 500;
}
.l-sidebar-content.-archive .link {
  font-size: 0.875rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-sidebar-content.-archive .link:hover {
  color: var(--main-c);
}
.l-sidebar-content.-archive .link:hover .num {
  color: var(--main-c);
}
.l-sidebar-content.-archive .menu-tgl {
  display: inline-block;
  width: 0.5625rem;
  height: 0.5625rem;
  position: absolute;
  top: 50%;
  right: 0.625rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.l-sidebar-content.-archive .menu-tgl::before, .l-sidebar-content.-archive .menu-tgl::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 0.0625rem;
  background-color: var(--border-c);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.l-sidebar-content.-archive .menu-tgl::before {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.l-sidebar-content.-archive .menu-tgl::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.l-sidebar-content.-archive .menu.is-active .menu-tgl::after {
  -webkit-transform: translate(-50%, -50%) rotate(0);
          transform: translate(-50%, -50%) rotate(0);
}

/*----------パーツ 接頭辞「c-」------------*/
.c-title-bg {
  width: 100%;
  min-height: 12.5rem;
  text-align: left;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-title-bg {
    min-height: 21.875rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 1921px) {
  .c-title-bg {
    max-width: 120rem;
    margin: 0 auto;
  }
}

.c-title-bg--main-color::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(214, 50, 21, 0.25);
}

.c-title-bg--sub-color::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(247, 247, 242, 0.6);
}

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

.c-title-bg__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .c-title-bg__inner {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
  }
}

.c-title-bg__image {
  aspect-ratio: 375/200;
  min-height: 12.5rem;
}
@media screen and (min-width: 768px) {
  .c-title-bg__image {
    aspect-ratio: 375/160;
    max-width: clamp(57rem, 11.875rem + 50.1vw, 72rem);
    aspect-ratio: unset;
    min-height: unset;
  }
}
.c-title-bg__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-title-bg__content {
  padding: 1.25rem;
  padding-bottom: 2.8125rem;
  margin-top: -2.125rem;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .c-title-bg__content {
    padding: 1.25rem 0;
    padding-bottom: 1.25rem;
    margin-top: 0;
    margin-left: -10.5rem;
    width: 36rem;
  }
}

.c-title-bg__title {
  width: 100%;
  font-size: 1.75rem;
  line-height: 1.6;
  letter-spacing: 0.1rem;
}
@media screen and (min-width: 768px) {
  .c-title-bg__title {
    font-size: 2.75rem;
    line-height: 1.8;
  }
}

.c-title-bg__sub-title {
  display: inline-block;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .c-title-bg__sub-title {
    line-height: 1.8;
  }
}

.c-title-bg__text {
  margin-top: 0.9375rem;
}

@media screen and (min-width: 768px) {
  .c-title-bg--reverse.c-title-bg {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media screen and (min-width: 768px) {
  .c-title-bg--reverse .c-title-bg__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (min-width: 768px) {
  .c-title-bg--reverse .c-title-bg__content {
    margin-left: unset;
    margin-right: -10.5rem;
  }
}

.c-title-bg-double {
  width: 100%;
  min-height: 25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  color: var(--white);
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-title-bg-double {
    min-height: 31.25rem;
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.c-title-bg-double__container {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-height: 26.3125rem;
}
@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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          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: 90%;
  margin: 0 auto;
  padding: 1.875rem 0;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .c-title-bg-double__inner {
    width: 73.3%;
    max-width: 42.75rem;
    text-align: left;
    padding: 1.875rem;
  }
}

.c-title-bg-double__title {
  width: 100%;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .c-title-bg-double__title {
    line-height: 1.8;
  }
}
.c-title-bg-double__title + .c-title-bg-double__text {
  margin-top: 0.9375rem;
}

.c-title-bg-double__sub-title {
  display: inline-block;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .c-title-bg-double__sub-title {
    line-height: 1.8;
  }
}
.c-title-bg-double__sub-title + .c-title-bg-double__text {
  margin-top: 0.9375rem;
}

.c-title-bg-double .c-button {
  width: auto;
  min-width: 11.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.75rem 2.5rem 0.8125rem;
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .c-title-bg-double .c-button {
    min-width: 15.625rem;
    padding: 1.3125rem 2.8125rem 1.25rem;
    margin-top: 2.5rem;
  }
}

.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--sub-color .c-title-bg-double__container:first-of-type .c-title-bg-double__cover {
  background: transparent;
}
.c-title-bg-double--reverse.c-title-bg-double--sub-color .c-title-bg-double__container:last-of-type .c-title-bg-double__cover {
  background: rgba(247, 247, 242, 0.6);
}
.c-title-bg-double--reverse.c-title-bg-double--main-color .c-title-bg-double__container:first-of-type .c-title-bg-double__cover {
  background: transparent;
}
.c-title-bg-double--reverse.c-title-bg-double--main-color .c-title-bg-double__container:last-of-type .c-title-bg-double__cover {
  background: rgba(214, 50, 21, 0.25);
}

.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--sub-color .c-title-bg-double__container:first-of-type .c-title-bg-double__cover {
  background: rgba(247, 247, 242, 0.6);
}

.c-title-bg-double--main-color .c-title-bg-double__container:first-of-type .c-title-bg-double__cover {
  background: rgba(214, 50, 21, 0.25);
}

.c-title-bg-double .u-c-black .c-title-bg-double__sub-title {
  color: var(--main-c);
}

.c-title-bg-loop {
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  padding: 1.875rem 0 0;
}
@media screen and (min-width: 768px) {
  .c-title-bg-loop {
    padding: 5.9375rem 0 0;
  }
}

.c-title-bg-loop__loop {
  -webkit-animation: loopTitle 30s linear infinite;
          animation: loopTitle 30s linear infinite;
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  white-space: nowrap;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-title-bg-loop__loop .title {
  margin-right: 1ch;
  line-height: 1;
  white-space: nowrap;
  font-family: "Google Sans Flex", "Zen Kaku Gothic New", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-weight: 200;
  font-size: 3.75rem;
  opacity: 0.1;
}
@media screen and (min-width: 768px) {
  .c-title-bg-loop__loop .title {
    font-size: 9.375rem;
  }
}

.c-title-bg-loop__title {
  font-size: 1.75rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .c-title-bg-loop__title {
    font-size: 2.75rem;
    line-height: 1.8;
  }
}

.c-title-bg-loop__sub-title {
  margin-top: 0.3125rem;
  font-family: "Google Sans Flex", "Zen Kaku Gothic New", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-weight: 500;
  color: var(--main-c);
}

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

@-webkit-keyframes loopTitle {
  from {
    -webkit-transform: translate(-40%, 0%);
            transform: translate(-40%, 0%);
  }
  to {
    -webkit-transform: translate(-60%, 0%);
            transform: translate(-60%, 0%);
  }
}

@keyframes loopTitle {
  from {
    -webkit-transform: translate(-40%, 0%);
            transform: translate(-40%, 0%);
  }
  to {
    -webkit-transform: translate(-60%, 0%);
            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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .c-title-cont--row .c-title-cont__sub {
    margin-left: 1.25rem;
  }
}

.c-title-h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 2.5rem 0;
  min-height: clamp(9.625rem, 9.266rem + 1.53vw, 10rem);
}
@media screen and (min-width: 768px) {
  .c-title-h1 {
    padding: clamp(3.625rem, -3.896rem + 8.35vw, 6.125rem) 0;
    min-height: clamp(15rem, -0.042rem + 16.7vw, 20rem);
  }
}

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

@media screen and (min-width: 768px) {
  .c-title-h1__main {
    font-size: 3.75rem;
  }
}

.c-title-h1__sub {
  font-weight: normal;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-title-h1__sub {
    font-size: 1.5rem;
    margin-top: 2.5rem;
  }
}

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

.c-title-h1--full {
  line-height: 1;
  position: relative;
  padding-block: 5.25rem 0.3125rem;
}
@media screen and (min-width: 768px) {
  .c-title-h1--full {
    padding-block: 12.8125rem 0.625rem;
  }
}

.c-title-h1--full__inner {
  width: 90%;
  max-width: 87.5rem;
  margin: 0 auto;
  position: relative;
}

.c-title-h1--full__main {
  font-family: "Google Sans Flex", "Zen Kaku Gothic New", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .c-title-h1--full__main {
    font-size: 6rem;
  }
}

.c-title-h1--full__sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  font-weight: bold;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .c-title-h1--full__sub {
    margin-top: 1.25rem;
    font-size: 1.5rem;
  }
}
.c-title-h1--full__sub .icon {
  width: auto;
  height: 1.5rem;
  margin-right: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-title-h1--full__sub .icon {
    height: 2.5rem;
    margin-right: 1.25rem;
  }
}
.c-title-h1--full__sub .icon img {
  display: block;
  width: auto;
  height: 100%;
}

.c-title-h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.c-title-h2__main {
  font-family: "Google Sans Flex", "Zen Kaku Gothic New", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .c-title-h2__main {
    font-size: 3.75rem;
  }
}

.c-title-h2__sub {
  padding-left: 1.875rem;
  position: relative;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: var(--black);
}
@media screen and (min-width: 768px) {
  .c-title-h2__sub {
    line-height: 1.8;
  }
}
.c-title-h2__sub::before {
  content: "";
  display: inline-block;
  width: 0.9375rem;
  height: 0.9375rem;
  border-radius: 50%;
  background-color: var(--main-c);
  position: absolute;
  top: 0.4em;
  left: 0;
}
@media screen and (min-width: 768px) {
  .c-title-h2__sub::before {
    top: 0.65em;
  }
}

.c-title-h2--left {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.c-title-h2--center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-title-h2--right {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.c-title-h3__main {
  line-height: 1.6;
}

.c-title-h3__sub {
  font-family: "Google Sans Flex", "Zen Kaku Gothic New", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-weight: 500;
  color: var(--main-c);
  margin-top: 0.3125rem;
}

.c-title-h3--main-color .c-title-h3__main {
  color: var(--main-c);
}
.c-title-h3--main-color .c-title-h3__sub {
  color: var(--black);
}

.c-title-h4__main {
  line-height: 1.6;
  padding-bottom: 0.625rem;
  border-bottom: solid 0.0625rem var(--main-c);
}

.c-title-h5__main {
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .c-title-h5__main {
    line-height: 1.8;
  }
}

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

.c-title-h6__main {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 0.625rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .c-title-h6__main {
    grid-template-columns: 2.5rem minmax(0, 1fr);
    gap: 1.6875rem;
  }
}
.c-title-h6__main::before {
  content: "";
  display: inline-block;
  width: 2.5rem;
  height: 0.0625rem;
  background-color: var(--main-c);
  margin-top: 0.9em;
}
@media screen and (min-width: 768px) {
  .c-title-h6__main::before {
    margin-top: 0.8em;
  }
}

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

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

.c-videoThumb {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
  position: relative;
}
.c-videoThumb:hover .c-videoThumb__icon {
  color: var(--main-c);
}

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

.c-videoThumb__icon {
  width: 12%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  aspect-ratio: unset;
  color: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

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

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

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

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

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

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

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

.c-wysiwyg ul li {
  position: relative;
  padding-left: 1em;
}
.c-wysiwyg ul li::marker {
  display: none;
}
.c-wysiwyg ul li::before {
  content: "・";
  color: var(--main-c);
  position: absolute;
  top: 0;
  left: 0;
}
.c-wysiwyg ol li {
  padding-left: 1em;
  list-style-type: decimal;
}
.c-wysiwyg ul[style="list-style-type: disc"],
.c-wysiwyg ul[style="list-style-type: circle"],
.c-wysiwyg ul[style="list-style-type: square"] {
  padding-left: 1em;
}
.c-wysiwyg ul[style="list-style-type: disc"] li,
.c-wysiwyg ul[style="list-style-type: circle"] li,
.c-wysiwyg ul[style="list-style-type: square"] li {
  padding-left: 0;
}
.c-wysiwyg ul[style="list-style-type: disc"] li::marker,
.c-wysiwyg ul[style="list-style-type: circle"] li::marker,
.c-wysiwyg ul[style="list-style-type: square"] li::marker {
  display: inline-block;
  color: var(--main-c);
}
.c-wysiwyg ul[style="list-style-type: disc"] li::before,
.c-wysiwyg ul[style="list-style-type: circle"] li::before,
.c-wysiwyg ul[style="list-style-type: square"] li::before {
  display: none;
}
.c-wysiwyg ul[style="list-style-type: disc"] li {
  list-style-type: disc;
}
.c-wysiwyg ul[style="list-style-type: circle"] li {
  list-style-type: circle;
}
.c-wysiwyg ul[style="list-style-type: square"] li {
  list-style-type: square;
}
.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 a {
  color: var(--main-c);
  text-decoration: underline;
}
.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 {
  border-radius: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-wysiwyg img {
    border-radius: 1.25rem;
  }
}
.c-wysiwyg img.alignright {
  display: block;
  margin: 0 0 0 auto;
}
.c-wysiwyg {
  /* 配置位置 右 */
}
.c-wysiwyg img.alignleft {
  display: block;
  margin: 0 auto 0 0;
}
.c-wysiwyg {
  /* 配置位置 左 */
}
.c-wysiwyg img.aligncenter {
  display: block;
  margin: 0 auto;
}
.c-wysiwyg {
  /* 配置位置 中央 */
}
.c-wysiwyg span[style="text-decoration: underline"] {
  text-decoration: none !important;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(73%, transparent), color-stop(73%, rgba(214, 50, 21, 0.5)), color-stop(95%, rgba(214, 50, 21, 0.5)), color-stop(95%, transparent), to(transparent));
  background: linear-gradient(180deg, transparent 0%, transparent 73%, rgba(214, 50, 21, 0.5) 73%, rgba(214, 50, 21, 0.5) 95%, transparent 95%, transparent 100%);
}

.c-arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-arrow.-right svg {
  width: 100%;
  height: auto;
}

.c-arrow.up svg {
  width: auto;
  height: 100%;
}

/*=============================
【カスタム投稿】投稿用レイアウト
=============================*/
.c-article__title-lg {
  line-height: 1.6;
  padding-bottom: 0.625rem;
  border-bottom: solid 0.0625rem var(--main-c);
}
.c-article__title-lg .title {
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-article__title-lg .title {
    font-size: 1.5rem;
  }
}

.c-article__title-sm .title {
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .c-article__title-sm .title {
    font-size: 1.25rem;
  }
}

.c-article__text-area.-center {
  text-align: center;
}

.c-article__media-main .image {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.c-article__media-main img {
  max-width: 100%;
  border-radius: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-article__media-main img {
    border-radius: 1.25rem;
  }
}

.c-article__media.-lg .body {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-article__media.-lg .body {
    margin-top: 1.875rem;
  }
}

.c-article__media.-sm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-article__media.-sm {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    gap: 1.25rem;
  }
}
.c-article__media.-sm .image {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .c-article__media.-sm .image {
    width: 45%;
  }
}
.c-article__media.-sm .body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 768px) {
  .c-article__media.-sm.-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.c-article__media .image {
  border-radius: 0.625rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-article__media .image {
    border-radius: 1.25rem;
  }
}
.c-article__media .image + .c-article__text {
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-article__media .image + .c-article__text {
    margin-top: 1.25rem;
  }
}

.c-article__title {
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .c-article__title {
    font-size: 1.25rem;
  }
}
.c-article__title + .c-article__text {
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-article__title + .c-article__text {
    margin-top: 1.25rem;
  }
}

.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: 1.875rem;
  }
}

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

.c-background-round {
  border-radius: 1.875rem 1.875rem 0 0;
  width: 100%;
  height: 3.75rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .c-background-round {
    border-radius: 3.75rem 3.75rem 0 0;
    height: 7.5rem;
  }
}

.c-background-round--sub {
  background-color: var(--base-c);
}

.c-background-round--main {
  background-color: rgba(214, 50, 21, 0.25);
}

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

.c-banner__item {
  width: 100%;
}

.c-banner__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  padding: 1.25rem;
  height: 100%;
  min-height: 11.25rem;
}
@media screen and (min-width: 768px) {
  .c-banner__wrap {
    padding: 2.5rem 1.25rem;
    min-height: 16.25rem;
  }
}
.c-banner__wrap::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background: rgba(58, 51, 48, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.c-banner__wrap:hover .c-banner__img, .c-banner__wrap:active .c-banner__img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.c-banner__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.3125rem;
  color: var(--white);
  z-index: 1;
  text-align: center;
  line-height: 1.6;
  font-size: 1.375rem;
  font-weight: bold;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-banner__title {
    gap: 0.625rem;
    font-size: 2rem;
  }
}

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

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

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

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

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

.c-breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  margin-top: 1.875rem;
}

.c-breadcrumb_list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  font-family: "Google Sans Flex", "Zen Kaku Gothic New", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .c-breadcrumb_list {
    font-size: 0.875rem;
  }
}
.c-breadcrumb_list:first-child::before {
  content: "";
  display: inline-block;
  width: 0.625rem;
  height: 0.625rem;
  background-color: var(--main-c);
  border-radius: 50%;
  margin-right: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .c-breadcrumb_list:first-child::before {
    margin-right: 0.5rem;
  }
}
.c-breadcrumb_list + .c-breadcrumb_list:before {
  content: "";
  width: 0.9375rem;
  height: 0.0625rem;
  background-color: var(--border-c);
  margin: 0 0.3125rem;
}
@media screen and (min-width: 768px) {
  .c-breadcrumb_list + .c-breadcrumb_list:before {
    margin: 0 0.625rem;
  }
}

.c-breadcrumb_link {
  color: inherit;
  text-decoration: none;
}

.c-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: solid 0.0625rem;
  border-radius: 3.75rem;
  line-height: 1.2;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
.c-button .c-arrow,
.c-button .c-duplicate {
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  top: 50%;
  right: 0.75rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-button .c-arrow,
  .c-button .c-duplicate {
    right: 1.25rem;
  }
}
.c-button svg {
  width: 100%;
  height: auto;
}

.c-button--sm {
  min-width: 11.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.75rem 2.5rem 0.8125rem;
}
.c-button--sm .c-arrow,
.c-button--sm .c-duplicate {
  right: 0.75rem;
}

.c-button--lg {
  width: auto;
  min-width: 15.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-button--lg {
    padding: 1.3125rem 2.8125rem 1.25rem;
  }
}

.c-button--xs-l {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 10rem;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.75rem 2rem 0.8125rem;
}
@media screen and (min-width: 768px) {
  .c-button--xs-l {
    min-width: 15.625rem;
    padding: 1.3125rem 2.8125rem 1.25rem;
  }
}
.c-button--xs-l .c-arrow,
.c-button--xs-l .c-duplicate {
  right: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-button--xs-l .c-arrow,
  .c-button--xs-l .c-duplicate {
    right: 1.25rem;
  }
}

.c-button--s-l {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 11.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.75rem 2.5rem 0.8125rem;
}
@media screen and (min-width: 768px) {
  .c-button--s-l {
    min-width: 15.625rem;
    padding: 1.3125rem 2.8125rem 1.25rem;
  }
}

.c-button--main {
  background: var(--main-c);
  color: #fff;
  border-color: var(--main-c);
}
.c-button--main:hover {
  background: #fff;
  color: var(--main-c);
  border-color: var(--main-c);
}
.c-button--main:hover .c-arrow,
.c-button--main:hover .c-duplicate {
  color: var(--main-c);
}
.c-button--main .c-arrow,
.c-button--main .c-duplicate {
  color: #fff;
}

/* 白 */
.c-button.c-button--white {
  background: #fff;
  color: var(--black);
  border-color: var(--black);
}
.c-button.c-button--white:hover {
  background: var(--main-c);
  color: #fff;
  border-color: #fff;
}
.c-button.c-button--white:hover .c-arrow,
.c-button.c-button--white:hover .c-duplicate {
  color: #fff;
}
.c-button.c-button--white .c-arrow,
.c-button.c-button--white .c-duplicate {
  color: var(--main-c);
}

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

.c-button .icon-wrap {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
}
.c-button .icon-wrap .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 1;
  visibility: visible;
}
.c-button .icon-wrap .icon.-hover {
  opacity: 0;
  visibility: hidden;
}

.c-button:hover .icon-wrap .icon {
  opacity: 0;
  visibility: hidden;
}
.c-button:hover .icon-wrap .icon.-hover {
  opacity: 1;
  visibility: visible;
}

.c-button--sm .icon-wrap.-left {
  left: 0.75rem;
}
.c-button--sm .icon-wrap.-right {
  right: 0.75rem;
}

.c-button--lg .icon-wrap.-left {
  left: 0.75rem;
}
@media screen and (min-width: 768px) {
  .c-button--lg .icon-wrap.-left {
    left: 1.25rem;
  }
}
.c-button--lg .icon-wrap.-right {
  right: 0.75rem;
}
@media screen and (min-width: 768px) {
  .c-button--lg .icon-wrap.-right {
    right: 1.25rem;
  }
}

.c-button-anchor__wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: unset;
      flex-wrap: unset;
  gap: 0.75rem;
  border-bottom: solid 0.0625rem var(--border-c);
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-button-anchor__wrap {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 1.875rem;
       -moz-column-gap: 1.875rem;
            column-gap: 1.875rem;
    row-gap: 1rem;
    padding-bottom: 1rem;
  }
}

.c-button.-anchor {
  width: auto;
  font-size: 0.875rem !important;
  font-weight: 500;
  color: var(--black);
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-button.-anchor {
    font-size: 1rem !important;
  }
}
.c-button.-anchor:hover {
  color: var(--main-c);
}
.c-button.-anchor:hover .icon-anchor {
  color: #fff;
  background-color: var(--main-c);
}
.c-button.-anchor .icon-anchor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  color: var(--main-c);
  border: solid 0.0625rem var(--main-c);
  border-radius: 50%;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-button.-anchor .icon-anchor svg {
  width: 100%;
  height: 100%;
  -webkit-transform: translateY(-0.0625rem);
          transform: translateY(-0.0625rem);
}

.c-button-anchor-tab__wrap {
  gap: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .c-button-anchor-tab__wrap {
    gap: 0.625rem;
  }
}

.c-button-anchor-tab__button {
  padding: 0.3125rem 0.875rem;
  background-color: #fff;
  border: solid 0.0625rem var(--border-c);
  border-radius: 0.625rem;
  font-weight: 500;
  color: var(--black);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-button-anchor-tab__button {
    padding: 0.875rem 1.25rem 0.9375rem;
  }
}

a.c-button-anchor-tab__button:hover {
  background-color: var(--main-c);
  border: solid 0.0625rem var(--main-c);
  color: #fff;
}

.c-button-anchor-tab--color {
  background-color: var(--base-c);
}

.c-button-anchor-photo__wrap {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5625rem;
}
@media screen and (min-width: 768px) {
  .c-button-anchor-photo__wrap {
    gap: 0.625rem;
  }
}

.c-button-anchor-photo__button {
  aspect-ratio: 1/1;
  width: 4.8125rem;
  height: auto;
  border-radius: 0.625rem;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-button-anchor-photo__button {
    width: 5.625rem;
  }
}
.c-button-anchor-photo__button .image {
  width: 100%;
  -o-object-position: top;
     object-position: top;
}

a.c-button-anchor-photo__button:hover {
  opacity: 0.6;
}

.c-card {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-card {
    gap: 1.875rem;
  }
}

.c-card__item {
  width: 100% !important;
  border-radius: 0.625rem;
}

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

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

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

.c-card__title {
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .c-card__title {
    line-height: 1.8;
  }
}
.c-card__title + .c-card__lead {
  margin-top: 0.3125rem;
}
.c-card__title + .c-card__text {
  margin-top: 0.9375rem;
}

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

.c-card__text {
  font-size: 1rem;
}

.c-card--white {
  background-color: #fff;
}

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

@media screen and (min-width: 768px) {
  .c-card.c-flex--col1-2 .c-card__item {
    width: calc((100% - 1.875rem) / 2) !important;
  }
}

@media screen and (min-width: 768px) {
  .c-card.c-flex--col1-3 .c-card__item {
    width: calc((100% - 5.625rem) / 4) !important;
  }
}

.c-card.c-flex--col2-4 {
  gap: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .c-card.c-flex--col2-4 {
    gap: 1.875rem;
  }
}
.c-card.c-flex--col2-4 .c-card__item {
  width: calc((100% - 0.6875rem) / 2) !important;
  border-radius: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-card.c-flex--col2-4 .c-card__item {
    width: calc((100% - 5.625rem) / 4) !important;
  }
}

.c-card-img {
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-card-img {
    gap: 1.875rem;
  }
}
.c-card-img.c-flex--col1-2 .c-flex__item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-card-img.c-flex--col1-2 .c-flex__item {
    width: calc((100% - 1.875rem) / 2);
  }
}
.c-card-img.c-flex--col1-3 .c-flex__item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-card-img.c-flex--col1-3 .c-flex__item {
    width: calc((100% - 3.75rem) / 3);
  }
}
.c-card-img.c-flex--col2-4 {
  gap: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .c-card-img.c-flex--col2-4 {
    gap: 1.75rem;
  }
}
.c-card-img.c-flex--col2-4 .c-flex__item {
  width: calc((100% - 0.4375rem) / 2);
}
@media screen and (min-width: 768px) {
  .c-card-img.c-flex--col2-4 .c-flex__item {
    width: calc((100% - 5.25rem) / 4);
  }
}

.c-card-img__item {
  border-radius: 0.625rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-card-img__item {
    border-radius: 1.25rem;
  }
}

.c-card-img__item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
}

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

.c-card-img__body {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-block: 1.25rem 1.875rem;
  padding-inline: 1.875rem;
  border-radius: 0 0 0.625rem 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-card-img__body {
    padding-block: 1.875rem 2.5rem;
    padding-inline: 2.5rem;
    border-radius: 0 0 1.25rem 1.25rem;
  }
}
.c-card-img__body .c-title-sub {
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .c-card-img__body .c-title-sub {
    font-size: 1.5rem;
  }
}
.c-card-img__body .c-card-img__text {
  font-size: 1rem;
}

.c-card-img__title + .c-card-img__lead {
  margin-top: 0.3125rem;
}
.c-card-img__title + .c-card-img__text {
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-card-img__title + .c-card-img__text {
    margin-top: 1.25rem;
  }
}

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

.c-card-img .c-button,
.c-card-img__body.u-tac .c-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1.25rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .c-card-img .c-button,
  .c-card-img__body.u-tac .c-button {
    margin-top: 1.875rem;
  }
}

.c-card-img--sub {
  background-color: var(--base-c);
}

.c-card-img--white {
  background-color: #fff;
}

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

.c-flex--col2-4 .c-card-img__body {
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-flex--col2-4 .c-card-img__body {
    padding-block: 1.5625rem 1.875rem;
    padding-inline: 1.875rem;
  }
}
.c-flex--col2-4 .c-card-img__item:not(.c-frame) .c-card-img__body {
  padding-block: 1.25rem;
  padding-inline: 0;
}
@media screen and (min-width: 768px) {
  .c-flex--col2-4 .c-card-img__item:not(.c-frame) .c-card-img__body {
    padding-block: 1.875rem 1.5625rem;
  }
}
.c-flex--col2-4 .c-card-img__item:not(.c-frame) .c-card-img__body .c-button {
  min-width: 10.125rem;
}
@media screen and (min-width: 768px) {
  .c-flex--col2-4 .c-card-img__item:not(.c-frame) .c-card-img__body .c-button {
    min-width: 11.25rem;
  }
}
.c-flex--col2-4 .c-card-img__title + .c-card-img__text,
.c-flex--col2-4 .c-card-img__lead + .c-card-img__text {
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-flex--col2-4 .c-card-img__title + .c-card-img__text,
  .c-flex--col2-4 .c-card-img__lead + .c-card-img__text {
    margin-top: 1.5rem;
  }
}
.c-flex--col2-4.c-card-img .c-button {
  margin-top: 1.5625rem;
  padding: 0.75rem 2rem 0.8125rem;
  min-width: 8.125rem;
}
@media screen and (min-width: 768px) {
  .c-flex--col2-4.c-card-img .c-button {
    padding: 0.75rem 2.5rem 0.8125rem;
    min-width: 11.25rem;
  }
}
.c-flex--col2-4.c-card-img .c-button .c-arrow {
  right: 0.5625rem;
}
@media screen and (min-width: 768px) {
  .c-flex--col2-4.c-card-img .c-button .c-arrow {
    right: 0.75rem;
  }
}
.c-flex--col2-4 .c-frame .c-button {
  min-width: 7.5rem;
}
@media screen and (min-width: 768px) {
  .c-flex--col2-4 .c-frame .c-button {
    min-width: 11.25rem;
  }
}

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

.c-card-icon__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-card-icon__item-inner {
  position: relative;
  padding-top: clamp(3.125rem, 1.331rem + 7.65vw, 5rem);
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .c-card-icon__item-inner {
    padding-top: 3.5625rem;
  }
}
.c-card-icon__item-inner .c-card-img__wrap {
  margin: 0 auto -17.5%;
  padding-top: 0;
  border-radius: 50%;
  position: absolute;
  z-index: 2;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: clamp(6.25rem, 2.663rem + 15.31vw, 10rem);
  height: clamp(6.25rem, 2.663rem + 15.31vw, 10rem);
  top: 0;
}
@media screen and (min-width: 768px) {
  .c-card-icon__item-inner .c-card-img__wrap {
    width: 8.125rem;
    height: 8.125rem;
  }
}
.c-card-icon__item-inner .c-card-img__image {
  border-radius: 50%;
  aspect-ratio: 1/1;
}
.c-card-icon__item-inner .c-card-img__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #fff;
  padding: clamp(3.75rem, 1.956rem + 7.65vw, 5.625rem) 1.5625rem 1.5625rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  border-radius: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-card-icon__item-inner .c-card-img__body {
    padding: 6.125rem 2.5rem 2.5rem !important;
  }
}
.c-card-icon__item-inner .c-card-img__title {
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .c-card-icon__item-inner .c-card-img__title {
    line-height: 1.8;
  }
}
.c-card-icon__item-inner .c-card-img__lead + .c-card-img__text {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-card-icon__item-inner .c-card-img__lead + .c-card-img__text {
    margin-top: 0.9375rem;
  }
}
.c-card-icon__item-inner .c-card-img__text {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .c-card-icon__item-inner .c-card-img__text {
    font-size: 1rem;
  }
}
.c-card-icon__item-inner .c-button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-card-icon__item-inner .c-button {
    margin-top: 1.5625rem;
  }
}

.c-card-icon--color {
  background-color: var(--base-c);
}

.c-card-icon.c-flex--col1-3 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-card-icon.c-flex--col1-3 {
    max-width: 55.75rem;
    margin: 0 auto;
  }
}
.c-card-icon.c-flex--col1-3 .c-flex__item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-card-icon.c-flex--col1-3 .c-flex__item {
    max-width: 17.25rem;
  }
}

.c-card-icon.c-flex--col2-4 .c-flex__item {
  width: calc((100% - 0.6875rem) / 2);
}
@media screen and (min-width: 768px) {
  .c-card-icon.c-flex--col2-4 .c-flex__item {
    width: calc((100% - 6rem) / 4);
  }
}
.c-card-icon.c-flex--col2-4 .c-card-img__body {
  padding: clamp(3.75rem, 1.956rem + 7.65vw, 5.625rem) 0.9375rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-card-icon.c-flex--col2-4 .c-card-img__body {
    padding: 6.125rem 2.5rem 2.5rem !important;
  }
}
.c-card-icon.c-flex--col2-4 .c-button {
  min-width: 8.125rem;
}
@media screen and (min-width: 768px) {
  .c-card-icon.c-flex--col2-4 .c-button {
    min-width: 11.25rem;
  }
}

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

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

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

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

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

.c-chart__year {
  grid-row-start: 1;
  grid-row-end: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  line-height: 1;
  color: var(--main-c);
  padding-left: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-chart__year {
    grid-column-start: 1;
    grid-column-end: 2;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-left: 0;
  }
}

.c-chart__year-title {
  margin-right: 1.5625rem;
  font-size: 1.75rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .c-chart__year-title {
    margin-right: 2.8125rem;
    font-size: 2.5rem;
    line-height: 1;
  }
}

.c-chart__year-sub-title {
  font-size: 1.25rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .c-chart__year-sub-title {
    font-size: 1.5rem;
    margin-top: 0.625rem;
  }
}

.c-chart__cont {
  grid-row-start: 2;
  grid-row-end: 3;
  padding-block: 0.875rem 1.5625rem;
  padding-left: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-chart__cont {
    grid-column-start: 3;
    grid-column-end: 4;
    grid-row-start: 1;
    grid-row-end: 2;
    padding-block: 0.625rem 4.375rem;
    padding-left: 3.375rem;
  }
}

.c-chart__title {
  font-weight: 500;
}
.c-chart__title + .c-chart__text {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-chart__title + .c-chart__text {
    margin-top: 0.9375rem;
  }
}

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

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

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

.c-contents-link {
  background-color: rgba(214, 50, 21, 0.25);
  padding: 3.75rem 0;
}
@media screen and (min-width: 768px) {
  .c-contents-link {
    padding: 7.5rem 1.25rem;
  }
}

.c-contents-link__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-contents-link__container {
    gap: 2rem;
  }
}

.c-contents-link__item {
  width: 100%;
  background-color: #fff;
  border: solid 0.0625rem var(--main-c);
  border-radius: 1.25rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-contents-link__item:hover {
  background-color: var(--main-c);
}
.c-contents-link__item:hover h2,
.c-contents-link__item:hover h5,
.c-contents-link__item:hover .c-arrow {
  color: #fff;
}
.c-contents-link__item:hover h2::before,
.c-contents-link__item:hover h5::before,
.c-contents-link__item:hover .c-arrow::before {
  background-color: #fff;
}
.c-contents-link__item h2 {
  font-size: 1.75rem;
  color: var(--main-c);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-contents-link__item h2 {
    font-size: 3.125rem;
  }
}
.c-contents-link__item h5,
.c-contents-link__item h5::before {
  font-weight: 500;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-contents-link__item h5 {
  padding-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-contents-link__item h5 {
    padding-left: 1.875rem;
  }
}

.c-contents-link__link {
  display: block;
  padding: 1.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-contents-link__link {
    padding-block: 3.125rem;
  }
}
.c-contents-link__link .c-arrow {
  width: 1.5rem;
  height: 0.6875rem;
  color: var(--main-c);
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-contents-link__link .c-arrow {
    width: 2.125rem;
    bottom: unset;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

@media screen and (min-width: 768px) {
  .c-contents-link__item.c-contents-link__item--col1 .c-contents-link__link {
    padding-inline: 3.125rem 7.5rem;
  }
}
@media screen and (min-width: 768px) {
  .c-contents-link__item.c-contents-link__item--col1 .c-arrow {
    right: 4.5625rem;
  }
}

@media screen and (min-width: 768px) {
  .c-contents-link__item.c-contents-link__item--col2 {
    width: calc((100% - 2rem) / 2);
  }
}
@media screen and (min-width: 768px) {
  .c-contents-link__item.c-contents-link__item--col2 .c-contents-link__link {
    padding-inline: 3.125rem 6.125rem;
  }
}
@media screen and (min-width: 768px) {
  .c-contents-link__item.c-contents-link__item--col2 .c-arrow {
    right: 3.3125rem;
  }
}

.c-conversion {
  background-color: var(--main-c);
  border-radius: 0.5rem;
  overflow: hidden;
}

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

.c-conversion__inner {
  width: 84%;
  max-width: 62.5rem;
  min-height: 21.875rem;
  margin: 0 auto;
  padding-block: 1.875rem 2.25rem;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .c-conversion__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 3.75rem 0 5rem;
  }
}

.c-conversion__title {
  text-align: center;
  font-weight: bold;
  color: var(--white);
}

.c-conversion__text {
  font-size: 1rem;
  margin-top: 0.625rem;
  color: var(--white);
}
@media screen and (min-width: 768px) {
  .c-conversion__text {
    margin-top: 1.25rem;
  }
}

.c-conversion__btn-area {
  margin-top: 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-conversion__btn-area {
    margin-top: 2.5rem;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 2.5rem;
  }
}

.c-conversion__button {
  width: 100%;
  border-radius: 0.625rem;
  border-color: var(--main-c) !important;
  border-width: 0.125rem !important;
  font-size: 1.25rem;
  padding-block: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-conversion__button {
    max-width: 30rem;
    font-size: 1.5rem;
    padding-block: 1.5625rem;
  }
}
.c-conversion__button:hover {
  background-color: transparent !important;
  border-color: var(--white) !important;
}
.c-conversion__button:hover::after {
  width: 1rem;
  height: 1rem;
}

/* =============================
  CTA 共通
============================= */
.c-cta {
  background-color: var(--main-c);
  padding-block: 2.5rem;
}

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

.c-cta__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-cta__content {
  width: 100%;
  padding-block: 1.75rem 1.5625rem;
  padding-inline: clamp(0.938rem, -2.351rem + 14.03vw, 4.375rem);
  background-color: #fff;
  border-radius: 1.5625rem;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 768px) {
  .c-cta__content {
    padding: 3.75rem 4.375rem 3.125rem;
    border-radius: 3.75rem;
  }
}

.c-cta__content-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.625rem;
  font-size: 1.125rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 576px) {
  .c-cta__content-title {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    gap: 0;
  }
}
@media screen and (min-width: 768px) {
  .c-cta__content-title {
    font-size: 2rem;
  }
}
.c-cta__content-title .emphasis {
  font-size: 2.25rem;
  margin-top: -0.3125rem;
}
@media screen and (min-width: 768px) {
  .c-cta__content-title .emphasis {
    font-size: 3.4375rem;
  }
}

.c-cta__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  width: 100%;
  margin-top: 1.125rem;
}
@media screen and (min-width: 768px) {
  .c-cta__button {
    gap: 1.25rem;
    margin-top: 2rem;
  }
}
.c-cta__button .c-button {
  gap: 0.5rem;
  font-weight: bold;
  letter-spacing: 0;
  -webkit-box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.3);
          box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.3);
}
.c-cta__button .icon {
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.c-cta__button .c-button.-lg {
  font-size: 0.875rem;
  width: 100%;
  max-width: 19.6875rem;
  height: 4rem;
}
@media screen and (min-width: 768px) {
  .c-cta__button .c-button.-lg {
    font-size: 1.625rem;
    min-width: 41.25rem;
    height: 6.875rem;
  }
}
.c-cta__button .c-button.-lg .icon {
  width: 1.5rem;
  height: 1.5rem;
}
@media screen and (min-width: 768px) {
  .c-cta__button .c-button.-lg .icon {
    width: 3.125rem;
    height: 3.125rem;
  }
}
.c-cta__button .c-button.-lg .c-arrow {
  width: 1.0625rem;
  height: 1.0625rem;
  right: 1rem;
}
@media screen and (min-width: 768px) {
  .c-cta__button .c-button.-lg .c-arrow {
    width: 2.125rem;
    height: 2.125rem;
    right: 2.4375rem;
  }
}
.c-cta__button .c-button.-sm {
  font-size: 0.8125rem;
  width: 11.25rem;
  height: 2.75rem;
}
@media screen and (min-width: 768px) {
  .c-cta__button .c-button.-sm {
    font-size: 1rem;
    min-width: 15.625rem;
    height: 4rem;
  }
}
.c-cta__button .c-button.-sm .icon {
  width: 0.875rem;
  height: 1.125rem;
  margin-top: -0.3em;
}
@media screen and (min-width: 768px) {
  .c-cta__button .c-button.-sm .icon {
    width: 1.25rem;
    height: 1.5625rem;
  }
}
.c-cta__button .c-button.-black {
  border: none;
  background-color: #000;
  color: #fff;
}
.c-cta__button .c-button.-black:hover {
  background-color: #F4A940;
}
.c-cta__button .c-button.-white {
  background-color: #fff;
  color: var(--main-c);
  border: solid 0.0625rem var(--main-c);
}
.c-cta__button .c-button.-white:hover {
  background-color: var(--main-c);
  color: #fff;
  border: solid 0.0625rem #fff;
}
.c-cta__button .c-button.-apply .icon {
  background-image: url("../images/icons/icon-apply.svg");
}
.c-cta__button .c-button.-contact .icon {
  background-image: url("../images/icons/icon-document.svg");
}

.c-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-flex--jcenter {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-flex--reverse {
  -webkit-box-pack: reverse;
      -ms-flex-pack: reverse;
          justify-content: reverse;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c-header {
  padding: 0 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-header {
    padding: 0 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-header .c-header__inner {
    height: 2.8125rem;
    margin-top: 0.625rem;
    padding-block: 0;
    padding-inline: 1.25rem;
    background-color: #fff;
    border-radius: 3.125rem;
    -webkit-box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.3);
            box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.3);
  }
}

.c-header.-active .c-header__inner {
  background-color: #fff;
  border-radius: 3.125rem;
  -webkit-box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.3);
          box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.3);
  height: 2.8125rem;
  margin-top: 0.625rem;
  padding-block: 0;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-header.-active .c-header__inner {
    margin-top: 1.25rem;
    height: auto;
    padding-block: 0.9375rem;
    padding-inline: 2.1875rem;
  }
}
@media screen and (min-width: 1401px) {
  .c-header.-active .c-header__inner {
    padding-inline: 2.1875rem 1.25rem;
  }
}
@media screen and (min-width: 1401px) {
  .c-header.-active .c-header__logo img {
    width: 21.0625rem;
  }
}
.c-header.-active .c-button.-pc {
  height: 3.625rem;
}

.c-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 5.625rem;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (min-width: 1401px) {
  .c-header__inner {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.c-header__logo {
  position: relative;
  z-index: 10;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-header__logo:hover {
  opacity: 0.6;
}

.c-header__logo img {
  width: 11.75rem;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (min-width: 768px) {
  .c-header__logo img {
    width: 23.4375rem;
  }
}

.c-header__nav {
  position: absolute;
  top: 0%;
  left: 100%;
  z-index: 9;
  background-color: var(--base-c);
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-header__nav {
    left: unset;
    right: -100%;
  }
}
@media screen and (min-width: 1401px) {
  .c-header__nav {
    position: relative;
    top: auto;
    left: auto;
    right: unset;
    background-color: transparent;
    width: auto;
  }
}
.c-header__nav.is-open {
  left: 0;
  height: 100dvh;
}
@media screen and (min-width: 768px) {
  .c-header__nav.is-open {
    left: unset;
    right: 0;
  }
}

.c-header__nav-wrapper {
  overflow-y: auto;
  height: 100dvh;
  padding: 4.6875rem 1.875rem 2.5rem;
}
@media screen and (min-width: 768px) {
  .c-header__nav-wrapper {
    padding: 6.375rem 3.125rem 2.875rem;
  }
}
@media screen and (min-width: 1401px) {
  .c-header__nav-wrapper {
    overflow: unset;
    height: unset;
    padding: 0;
  }
}

.c-header__nav-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 19.6875rem;
}
@media screen and (min-width: 768px) {
  .c-header__nav-inner {
    margin: 0 auto;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}
@media screen and (min-width: 1401px) {
  .c-header__nav-inner {
    margin: unset;
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.25rem;
    max-width: 100%;
  }
}

.c-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.3125rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 500;
  letter-spacing: 0;
  width: 100%;
  padding-left: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-header__nav-list {
    text-align: center;
    gap: 8px;
    padding-left: 0;
  }
}
@media screen and (min-width: 1401px) {
  .c-header__nav-list {
    text-align: left;
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
    row-gap: 0.375rem;
    width: 26.25rem;
  }
}
@media screen and (min-width: 1650px) {
  .c-header__nav-list {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    row-gap: 0;
    width: auto;
  }
}

.c-header__nav-item {
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 1401px) {
  .c-header__nav-item::after {
    content: "";
    display: inline-block;
    background-color: var(--main-c);
    display: block;
    width: 0;
    height: 0.3125rem;
    position: absolute;
    bottom: -0.1875rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
  }
}
.c-header__nav-item:hover {
  color: var(--main-c);
}
.c-header__nav-item:hover::after {
  width: 100%;
}
.c-header__nav-item.-hasChild:hover .c-header__sub-list {
  opacity: 1;
  visibility: visible;
}

.c-header__nav-link {
  display: block;
  width: 100%;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .c-header__nav-link {
    font-size: 16px;
  }
}
@media screen and (min-width: 1401px) {
  .c-header__nav-link {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 1770px) {
  .c-header__nav-link {
    font-size: 1rem;
  }
}

.c-header__sub-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-block: 0.3125rem 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-header__sub-list {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 0;
  }
}
@media screen and (min-width: 1401px) {
  .c-header__sub-list {
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
    background-color: #fff;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 1.5625rem;
    border-radius: 0.9375rem;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transition: visibility 0.3s, opacity 0.3s;
    transition: visibility 0.3s, opacity 0.3s;
    z-index: 10;
    text-align: left;
    -webkit-box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.3);
            box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.3);
    margin-bottom: 0;
  }
}

.c-header__sub-item {
  font-size: 0.875rem;
  padding-left: 1em;
  line-height: 1.6;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-header__sub-item {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 16px;
  }
}
@media screen and (min-width: 1401px) {
  .c-header__sub-item {
    width: unset;
    font-size: 0.875rem;
  }
  .c-header__sub-item::before {
    display: none;
  }
}
@media screen and (min-width: 1770px) {
  .c-header__sub-item {
    font-size: 0.9375rem;
    padding-left: 0;
  }
}
.c-header__sub-item::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--black);
}
.c-header__sub-item:not(:first-child) {
  margin-top: 0.3125rem;
}
@media screen and (min-width: 1401px) {
  .c-header__sub-item:not(:first-child) {
    margin-top: 0.625rem;
  }
}

.c-header__sub-ttl {
  display: inline-block;
  width: 100%;
  text-decoration: none;
  color: var(--black);
  line-height: 1.6;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-header__sub-ttl:hover {
  color: var(--main-c);
}

.c-header__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  margin-top: 1.5625rem;
  padding-left: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-header__sns {
    margin-top: 32px;
    margin-inline: auto;
    padding-left: 0;
  }
}
@media screen and (min-width: 1401px) {
  .c-header__sns {
    display: none;
  }
}
.c-header__sns .icon {
  display: block;
  width: 32px;
  height: 32px;
  color: var(--black);
}

.c-header__cta-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  margin-top: 1.5625rem;
  z-index: 4;
}
@media screen and (min-width: 1401px) {
  .c-header__cta-button {
    margin-top: 0;
    position: relative;
  }
}
.c-header__cta-button.-pc {
  display: none;
}
@media screen and (min-width: 1401px) {
  .c-header__cta-button.-pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.c-header__cta-button .c-button {
  gap: 0.5rem;
  height: 4rem;
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  font-weight: bold;
  -webkit-box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.3);
          box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 1401px) {
  .c-header__cta-button .c-button {
    min-width: 14.375rem;
  }
}
@media screen and (min-width: 1770px) {
  .c-header__cta-button .c-button {
    font-size: 1rem;
    min-width: 15.625rem;
  }
}
.c-header__cta-button .c-button .icon {
  margin-top: -0.125rem;
}
.c-header__cta-button .c-button svg {
  width: 100%;
  height: 100%;
}
.c-header__cta-button .c-button.-contact {
  background-color: #fff;
  color: var(--main-c);
}
.c-header__cta-button .c-button.-contact:hover {
  background-color: var(--main-c);
  color: #fff;
}
.c-header__cta-button .c-button.-contact .icon {
  aspect-ratio: 20/25;
  width: 1.25rem;
  height: auto;
}
.c-header__cta-button .c-button.-reservation {
  background-color: var(--main-c);
  border-color: var(--main-c);
  color: #fff;
}
.c-header__cta-button .c-button.-reservation:hover {
  background-color: #F4A940;
  color: #fff;
  border-color: #F4A940;
}
.c-header__cta-button .c-button.-reservation .icon {
  aspect-ratio: 30/26;
  width: 1.875rem;
  height: auto;
}

.c-header__cta-button.-sp {
  width: 100%;
  gap: 0;
  position: fixed;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .c-header__cta-button.-sp {
    display: none;
  }
}
.c-header__cta-button.-sp .c-button {
  padding: 0 0.5625rem;
  border-radius: 0.625rem 0.625rem 0 0;
  width: 50%;
  min-width: unset;
  height: 3.125rem;
  font-size: 0.8125rem;
  letter-spacing: 0;
}
.c-header__cta-button.-sp .c-button.-contact .icon {
  width: 1rem;
}
.c-header__cta-button.-sp .c-button.-reservation {
  border-color: #fff;
}
.c-header__cta-button.-sp .c-button.-reservation .icon {
  width: 1.5rem;
}

.c-header__hamburger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.375rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 1.25rem;
  position: relative;
  cursor: pointer;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .c-header__hamburger {
    gap: 0.5625rem;
    width: 1.875rem;
  }
}
@media screen and (min-width: 1401px) {
  .c-header__hamburger {
    display: none;
  }
}
.c-header__hamburger span {
  display: block;
  width: 100%;
  height: 0.0625rem;
  background: var(--black);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .c-header__hamburger span {
    height: 0.125rem;
  }
}
.c-header__hamburger.is-active span:first-child {
  -webkit-transform: rotate(38deg) translate3D(0.375rem, 0.375rem, 0);
          transform: rotate(38deg) translate3D(0.375rem, 0.375rem, 0);
}
@media screen and (min-width: 768px) {
  .c-header__hamburger.is-active span:first-child {
    -webkit-transform: rotate(38deg) translate3D(0.5rem, 0.5rem, 0);
            transform: rotate(38deg) translate3D(0.5rem, 0.5rem, 0);
  }
}
.c-header__hamburger.is-active span:last-child {
  -webkit-transform: rotate(-38deg) translate3D(0.25rem, -0.25rem, 0);
          transform: rotate(-38deg) translate3D(0.25rem, -0.25rem, 0);
}
@media screen and (min-width: 768px) {
  .c-header__hamburger.is-active span:last-child {
    -webkit-transform: rotate(-38deg) translate3D(0.5rem, -0.5rem, 0);
            transform: rotate(-38deg) translate3D(0.5rem, -0.5rem, 0);
  }
}
.c-header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.c-header__nav-cta-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .c-header__nav-cta-button {
    gap: 13px;
    margin-top: 32px;
  }
}
@media screen and (min-width: 1401px) {
  .c-header__nav-cta-button {
    display: none;
  }
}
.c-header__nav-cta-button .c-button {
  padding: 0;
  border-radius: 50px;
}
.c-header__nav-cta-button .c-button.-lg {
  font-size: 0.875rem;
  min-width: 19.6875rem;
  height: 4rem;
  gap: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .c-header__nav-cta-button .c-button.-lg {
    font-size: 16px;
    width: 350px;
    max-width: unset;
    height: 71px;
  }
}
.c-header__nav-cta-button .c-button.-lg .icon {
  width: 1.5rem;
  height: 1.5rem;
}
@media screen and (min-width: 768px) {
  .c-header__nav-cta-button .c-button.-lg .icon {
    width: 26px;
    height: 26px;
  }
}
.c-header__nav-cta-button .c-button.-lg .c-arrow {
  width: 1.0625rem;
  height: 1.0625rem;
  right: 1rem;
}
@media screen and (min-width: 768px) {
  .c-header__nav-cta-button .c-button.-lg .c-arrow {
    width: 17px;
    height: 17px;
    right: 16px;
  }
}
.c-header__nav-cta-button .c-button.-sm {
  font-size: 0.8125rem;
  min-width: 11.25rem;
  height: 2.75rem;
}
@media screen and (min-width: 768px) {
  .c-header__nav-cta-button .c-button.-sm {
    font-size: 14px;
    width: 200px;
    height: 48px;
  }
}
.c-header__nav-cta-button .c-button.-sm .icon {
  width: 0.875rem;
  height: 1.125rem;
}
@media screen and (min-width: 768px) {
  .c-header__nav-cta-button .c-button.-sm .icon {
    width: 16px;
    height: 20px;
  }
}

.c-image {
  margin: 0 auto;
  display: block;
  aspect-ratio: 4/3;
  width: 100%;
}

.c-image--full {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     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.3125rem;
  color: var(--black);
}
@media screen and (min-width: 640px) {
  .c-image--text {
    margin-top: 0.9375rem;
  }
}

.c-image-full .c-image--full {
  width: calc(100% - 1.25rem);
  height: auto;
  border-radius: 0.625rem;
  aspect-ratio: unset;
}
@media screen and (min-width: 768px) {
  .c-image-full .c-image--full {
    width: calc(100% - 2.5rem);
    border-radius: 1.25rem;
  }
}

.c-image-cont {
  padding: 0 1.25rem;
}
.c-image-cont img {
  border-radius: 0.625rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-image-cont img {
    border-radius: 1.25rem;
  }
}

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

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

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

.c-image-col__inner.l-inner--full {
  width: calc(100% - 1.25rem);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-image-col__inner.l-inner--full {
    width: calc(100% - 2.5rem);
  }
}
.c-image-col__inner img {
  border-radius: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-image-col__inner img {
    border-radius: 1.25rem;
  }
}

.c-interview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .c-interview {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.c-interview + .c-interview {
  margin-top: 2rem;
}

.c-interview__avatar {
  width: 10rem;
}

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

.c-interview__title {
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .c-interview__title {
    line-height: 1.8;
  }
}
.c-interview__title + .c-interview__text {
  margin-top: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .c-interview__title + .c-interview__text {
    margin-top: 0.9375rem;
  }
}

.c-interview__text {
  font-size: 1rem;
}

.c-interview__balloon {
  width: 100%;
  position: relative;
  background: #fff;
  padding: 1.875rem;
  text-align: justify;
  border: 0.0625rem solid var(--border-c);
  border-radius: 1rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-interview__balloon {
    padding: 3.125rem 3.75rem;
    margin-top: 0;
    margin-left: 1.875rem;
  }
}

.c-interview__balloon::before,
.c-interview__balloon::after {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-interview__balloon::before,
  .c-interview__balloon::after {
    display: block;
    content: "";
    display: inline-block;
    position: absolute;
    top: 2.1875rem;
    left: 0;
    border-style: solid;
    top: 5.625rem;
  }
}

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

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

.c-interview--reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .c-interview--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (min-width: 768px) {
  .c-interview--reverse .c-interview__balloon {
    margin-left: 0;
    margin-right: 1.875rem;
  }
}
.c-interview--reverse .c-interview__balloon::before,
.c-interview--reverse .c-interview__balloon::after {
  left: unset;
  right: 0;
}
@media screen and (min-width: 768px) {
  .c-interview--reverse .c-interview__balloon::before {
    border-width: 0 0 1.25rem 1.25rem;
    border-color: transparent transparent transparent var(--border-c);
    translate: 100% -50%;
  }
}
@media screen and (min-width: 768px) {
  .c-interview--reverse .c-interview__balloon::after {
    border-width: 0 0 1.125rem 1.125rem;
    border-color: transparent transparent transparent #ffffff;
    translate: 100% calc(-50% - 0.2px);
    left: unset;
    right: 0.0625rem;
  }
}
@media screen and (min-width: 811px) {
  .c-interview--reverse .c-interview__balloon::after {
    left: unset;
    right: 0;
  }
}

.c-interview--color {
  background-color: var(--base-c);
}
.c-interview--color::after {
  border-color: transparent var(--base-c) transparent transparent;
}

.c-interview--reverse .c-interview--color::after {
  border-color: transparent transparent transparent var(--base-c);
}

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

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

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

@media screen and (min-width: 768px) {
  .c-list-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.c-list-box__title,
.c-list-box__cont {
  background-color: var(--white);
}

.c-list-box__title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9375rem;
  font-weight: 500;
  padding: 1.25rem 1.25rem 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-list-box__title {
    gap: 1.875rem;
    width: 40%;
    border-bottom: solid 0.0625rem var(--border-c);
    padding-block: 1.875rem;
    padding-inline: 1.875rem 0.9375rem;
  }
}

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

.c-list-box__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1rem;
}

.c-list-box__cont {
  text-align: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.875rem;
  border-bottom: solid 0.0625rem var(--border-c);
  padding: 0 1.25rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-list-box__cont {
    width: 60%;
    font-size: 1rem;
    padding-block: 1.875rem;
    padding-inline: 0.9375rem 1.875rem;
  }
}

.c-list-box--white {
  background-color: #fff;
}

.c-list-box--color {
  background-color: var(--base-c);
}

.c-list-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 0.625rem;
  overflow: hidden;
  min-height: 22.5rem;
}
@media screen and (min-width: 768px) {
  .c-list-image {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    border-radius: 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .c-list-image__img-wrap {
    width: 42%;
    max-width: 31.25rem;
    height: 100%;
  }
}

.c-list-image .c-list-image__img {
  aspect-ratio: unset;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.c-list-image__body {
  padding: 0.9375rem 1.25rem 1.5625rem;
  border-radius: 0 0 0.625rem 0.625rem;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .c-list-image__body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 3.125rem 4.375rem;
  }
}

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

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

.c-list-image__text {
  font-size: 1rem;
}

.c-list-image__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1.25rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .c-list-image__button {
    margin-top: 1.5625rem;
    margin-inline: unset;
  }
}

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

.c-list-image-col__wrapper {
  -webkit-column-gap: 0.625rem;
     -moz-column-gap: 0.625rem;
          column-gap: 0.625rem;
  row-gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-list-image-col__wrapper {
    gap: 2rem;
  }
}
.c-list-image-col__wrapper .c-list-image {
  position: relative;
}

.c-list-image--col2 {
  min-height: unset;
}
@media screen and (min-width: 768px) {
  .c-list-image--col2 .c-list-image__img-wrap {
    width: 42.2%;
    max-width: 15rem;
  }
}
.c-list-image--col2 .c-list-image__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.9375rem 0.9375rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-list-image--col2 .c-list-image__body {
    padding: 3.125rem 1.875rem;
  }
}
.c-list-image--col2 .c-list-image__title {
  font-size: 1.125rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .c-list-image--col2 .c-list-image__title {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.c-list-image--col2 .c-list-image__title + .c-list-image__text {
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .c-list-image--col2 .c-list-image__title + .c-list-image__text {
    margin-top: 1.5rem;
  }
}
.c-list-image--col2 .c-list-image__lead {
  font-size: 1rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .c-list-image--col2 .c-list-image__lead {
    font-size: 1.125rem;
    line-height: 1.8;
  }
}
.c-list-image--col2 .c-list-image__lead + .c-list-image__text {
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .c-list-image--col2 .c-list-image__lead + .c-list-image__text {
    margin-top: 1.5rem;
  }
}
.c-list-image--col2 .c-list-image__button {
  min-width: 8.125rem;
  margin-top: 0.875rem;
  padding: 0.75rem 2rem 0.8125rem;
}
@media screen and (min-width: 768px) {
  .c-list-image--col2 .c-list-image__button {
    min-width: 15.625rem;
    margin-top: 1.5625rem;
    padding: 1.3125rem 2.8125rem 1.25rem;
  }
}
.c-list-image--col2 .c-list-image__button .c-arrow {
  right: 0.5625rem;
}
@media screen and (min-width: 768px) {
  .c-list-image--col2 .c-list-image__button .c-arrow {
    right: 1.25rem;
  }
}

.c-list-image--frame {
  border: solid 0.0625rem var(--border-c);
}
@media screen and (min-width: 768px) {
  .c-list-image--frame .c-list-image__body {
    border-radius: 0 1.25rem 1.25rem 0;
  }
}
@media screen and (min-width: 768px) {
  .c-list-image--frame.c-list-image--reverse .c-list-image__body {
    border-radius: 1.25rem 0 0 1.25rem;
  }
}

.c-list-image--white {
  background-color: #fff;
}

.c-list-image--color {
  background-color: var(--base-c);
}

/* ==========================================================================
  c-media
　└共通（共通レイアウト、メディアパーツ／media-parts）
　└画像テキストセット - 左右／media
　└画像テキストセット - 左右（飾りあり）／media-bg
　└動画テキストセット - 左右／media-video
========================================================================== */
.c-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-media {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 4.375rem;
  }
}

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

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

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

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

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

.c-media .swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 0.9375rem;
  bottom: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-media .swiper-pagination {
    padding-right: 1.5625rem;
    bottom: 1.5625rem;
  }
}

.c-media .swiper-pagination-bullet {
  background: #fff !important;
  opacity: 1 !important;
  width: 0.375rem;
  height: 0.375rem;
  margin: 0 0.1875rem !important;
}
@media screen and (min-width: 768px) {
  .c-media .swiper-pagination-bullet {
    width: 0.5rem;
    height: 0.5rem;
    margin: 0 0.25rem !important;
  }
}

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

.c-media__title {
  line-height: 1.6;
}
.c-media__title + .c-media__sub-title {
  margin-top: 0.1875rem;
}
.c-media__title + .c-media__text {
  margin-top: 1.25rem;
}
.c-media__title + .c-media__button-area {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-media__title + .c-media__button-area {
    margin-top: 2.5rem;
  }
}

.c-media__sub-title {
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .c-media__sub-title {
    line-height: 1.8;
  }
}
.c-media__sub-title + .c-media__text {
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-media__sub-title + .c-media__text {
    margin-top: 1.25rem;
  }
}
.c-media__sub-title + .c-media__button-area {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-media__sub-title + .c-media__button-area {
    margin-top: 2.5rem;
  }
}

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

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

.c-media__button-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 0.9375rem;
     -moz-column-gap: 0.9375rem;
          column-gap: 0.9375rem;
  row-gap: 0.3125rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-media__button-area {
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
    row-gap: 0.625rem;
    text-align: left;
  }
}

.c-media .swiper-slide,
.c-media-slider__inner {
  border-radius: 0.625rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-media .swiper-slide,
  .c-media-slider__inner {
    border-radius: 1.25rem;
  }
}

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

.c-media-bg {
  position: relative;
  overflow: hidden;
}
.c-media-bg::before {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-media-bg::before {
    content: "";
    display: inline-block;
    position: absolute;
    background-color: var(--bg-c);
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    opacity: 0.2;
  }
}
@media screen and (min-width: 768px) {
  .c-media-bg .l-inner--lg {
    width: 100%;
  }
}

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

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

.c-media-bg.c-media--reverse::before {
  right: unset;
  left: 0;
}
@media screen and (min-width: 768px) {
  .c-media-bg.c-media--reverse .c-media {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

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

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

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

.c-media-full {
  padding-inline: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-media-full {
    padding-inline: 0;
  }
}
.c-media-full .c-media {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .c-media-full .c-media__wrap {
    width: 53%;
    max-width: 62.8125rem;
  }
}
.c-media-full .c-media__cont {
  -webkit-box-flex: unset;
      -ms-flex: unset;
          flex: unset;
  padding: 0 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-media-full .c-media__cont {
    width: 39%;
    max-width: 35rem;
    padding: 0;
    padding-top: 4.75rem;
  }
}

.c-media-full__image .c-image {
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-media-full__image .c-image {
    border-radius: 0 1.25rem 1.25rem 0;
  }
}

@media screen and (min-width: 768px) {
  .c-media--reverse .c-image {
    border-radius: 1.25rem 0 0 1.25rem;
  }
}

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

.c-media-profile__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-media-profile__item {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    gap: 2.5rem;
  }
}
.c-media-profile__item:not(:first-child) {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .c-media-profile__item:not(:first-child) {
    margin-top: 3rem;
  }
}

.c-media-profile__image {
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
  border-radius: 0.625rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-media-profile__image {
    width: 26.25rem;
    border-radius: 1.25rem;
  }
}
.c-media-profile__image .image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.c-media-profile__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}
.c-media-profile__content .catch {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .c-media-profile__content .catch {
    font-size: 1.5rem;
  }
}
.c-media-profile__content .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0.1875rem;
  border-bottom: solid 0.0625rem var(--border-c);
  line-height: 1.6;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-media-profile__content .name {
    margin-top: 1.25rem;
  }
}
.c-media-profile__content .name-en {
  font-size: 1.125rem;
  font-weight: 500;
  color: #7C7C7C;
}
@media screen and (min-width: 768px) {
  .c-media-profile__content .name-en {
    font-size: 1.5rem;
  }
}
.c-media-profile__content .position {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-media-profile__content .position {
    font-size: 1.125rem;
    margin-top: 0.9375rem;
  }
}
.c-media-profile__content .qualification-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-media-profile__content .qualification-wrap {
    margin-top: 0.9375rem;
  }
}
.c-media-profile__content .qualification {
  background-color: #fff;
  border: solid 0.0625rem var(--main-c);
  border-radius: 1.25rem;
  font-size: 1rem;
  color: var(--main-c);
  font-weight: 500;
  padding-inline: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-media-profile__content .qualification {
    font-size: 1.125rem;
  }
}

.c-media-profile__accordion {
  border-radius: 0.625rem;
  border: solid 0.0625rem var(--border-c);
  cursor: pointer;
  position: relative;
}
.c-media-profile__accordion.-profile {
  background-color: #fff;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-media-profile__accordion.-profile {
    margin-top: 1.25rem;
  }
}
.c-media-profile__accordion.-message {
  background-color: var(--base-c);
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-media-profile__accordion.-message {
    margin-top: 0.9375rem;
  }
}

.c-media-profile__title {
  position: relative;
  padding: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-media-profile__title {
    padding: 1.5625rem;
  }
}
.c-media-profile__title .title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}
.c-media-profile__title .line {
  width: 2.0625rem;
  height: 0.0625rem;
  background-color: var(--main-c);
  margin-top: -0.0625rem;
}
.c-media-profile__title .title {
  font-size: 1rem;
  font-weight: 400;
}

.c-media-profile__tgl {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  position: absolute;
  top: 50%;
  right: 1.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .c-media-profile__tgl {
    width: 1.25rem;
    height: 1.25rem;
    right: 1.5625rem;
  }
}
.c-media-profile__tgl::before, .c-media-profile__tgl::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 0.0625rem;
  background-color: var(--border-c);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-media-profile__tgl::before {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.c-media-profile__tgl::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.c-media-profile__text {
  opacity: 0;
  padding: 1.25rem;
  padding-top: 0;
  margin-top: -0.3125rem;
}
@media screen and (min-width: 768px) {
  .c-media-profile__text {
    padding: 1.5625rem;
    padding-top: 0;
  }
}

/* オープン時にアニメーションを設定 */
.c-media-profile__accordion[open] .c-media-profile__tgl::after {
  -webkit-transform: translate(-50%, -50%) rotate(0);
          transform: translate(-50%, -50%) rotate(0);
}

.c-media-profile__accordion[open] .c-media-profile__text.is-visible {
  opacity: 1;
}

.c-media-profile__accordion[open] .c-media-profile__text.is-fade-in {
  opacity: 1;
  -webkit-animation: fadeIn 0.5s ease;
          animation: fadeIn 0.5s ease;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-0.3125rem);
            transform: translateY(-0.3125rem);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-0.3125rem);
            transform: translateY(-0.3125rem);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.l-color-sub-wrapper .c-media-profile__accordion.-message {
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .c-media-profile__item.c-media--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.c-meta.-blog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.9375rem;
     -moz-column-gap: 0.9375rem;
          column-gap: 0.9375rem;
  row-gap: 0.625rem;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-meta.-blog {
    margin-top: 1.25rem;
  }
}
.c-meta.-blog .date {
  font-size: 1rem;
  font-weight: 500;
  border-left: solid 0.25rem var(--main-c);
  padding-left: 0.5rem;
  line-height: 1;
  margin-top: 0.0625rem;
}
.c-meta.-blog .category-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
}
.c-meta.-blog .category-item {
  border: solid 0.0625rem var(--main-c);
  border-radius: 1.25rem;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  padding: 0.4375rem 0.625rem;
}

.c-modal-vertical {
  margin: 0 auto;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-modal-vertical {
    padding-inline: 0;
  }
}
.c-modal-vertical.c-card-img {
  row-gap: 1.25rem;
}
.c-modal-vertical .c-card-img__item {
  border-radius: 0;
}
.c-modal-vertical .c-card-img__image {
  aspect-ratio: 16/9;
  padding-inline: 0;
}
.c-modal-vertical .c-card-img__title {
  line-height: 1.6;
}
.c-modal-vertical .c-button {
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .c-modal-vertical .c-button {
    margin-inline: unset;
  }
}

.c-modal-vertical.c-flex--col1-1 {
  padding-inline: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-modal-vertical.c-flex--col1-1 {
    padding-inline: 0;
  }
}
.c-modal-vertical.c-flex--col1-1 .c-card-img__item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .c-modal-vertical.c-flex--col1-1 .c-card-img__item-inner {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    gap: 4.375rem;
  }
}
.c-modal-vertical.c-flex--col1-1 .c-card-img__head {
  width: 100%;
  height: auto;
  border-radius: 0.625rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-modal-vertical.c-flex--col1-1 .c-card-img__head {
    width: 52.35%;
    border-radius: 0 1.25rem 1.25rem 0;
  }
}
.c-modal-vertical.c-flex--col1-1 .c-card-img__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-inline: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-modal-vertical.c-flex--col1-1 .c-card-img__body {
    padding-inline: 0;
  }
}
@media screen and (min-width: 768px) {
  .c-modal-vertical.c-flex--col1-1 .c-card-img__body-inner {
    max-width: 35rem;
  }
}

.c-modal-vertical.c-flex--col1-2,
.c-modal-vertical.c-flex--col1-3 {
  max-width: 75rem;
}
.c-modal-vertical.c-flex--col1-2 .c-card-img__head,
.c-modal-vertical.c-flex--col1-3 .c-card-img__head {
  border-radius: 0.625rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-modal-vertical.c-flex--col1-2 .c-card-img__head,
  .c-modal-vertical.c-flex--col1-3 .c-card-img__head {
    border-radius: 1.25rem;
  }
}
.c-modal-vertical.c-flex--col1-2 .c-card-img__body,
.c-modal-vertical.c-flex--col1-3 .c-card-img__body {
  padding: 1.25rem 0 0;
}
@media screen and (min-width: 768px) {
  .c-modal-vertical.c-flex--col1-2 .c-card-img__body,
  .c-modal-vertical.c-flex--col1-3 .c-card-img__body {
    padding: 1.875rem 0 0;
  }
}

.c-modal-horizontal .c-card-img__item {
  border-radius: 0;
}
.c-modal-horizontal .c-card-img__item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .c-modal-horizontal .c-card-img__item-inner {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
  }
}
.c-modal-horizontal .c-card-img__head {
  border-radius: 0.625rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-modal-horizontal .c-card-img__head {
    border-radius: 1.25rem;
  }
}
.c-modal-horizontal .c-card-img__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 1.25rem 0 0;
}
@media screen and (min-width: 768px) {
  .c-modal-horizontal .c-card-img__body {
    padding: 0;
  }
}
.c-modal-horizontal .c-card-img__title {
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .c-modal-horizontal .c-button {
    margin-inline: unset;
  }
}

.c-modal-horizontal.c-flex--col1-1.c-card-img {
  gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .c-modal-horizontal.c-flex--col1-1.c-card-img {
    gap: 4.375rem;
  }
}
@media screen and (min-width: 768px) {
  .c-modal-horizontal.c-flex--col1-1 .c-card-img__item-inner {
    gap: 4.375rem;
  }
}
@media screen and (min-width: 768px) {
  .c-modal-horizontal.c-flex--col1-1 .c-card-img__head {
    width: 48%;
    max-width: 36rem;
  }
}
.c-modal-horizontal.c-flex--col1-1 .c-card-img__image {
  aspect-ratio: 16/9;
}
.c-modal-horizontal.c-flex--col1-1 .c-button {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-modal-horizontal.c-flex--col1-1 .c-button {
    margin-top: 2.5rem;
  }
}

.c-modal-horizontal.c-flex--col1-2.c-card-img {
  gap: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .c-modal-horizontal.c-flex--col1-2.c-card-img {
    gap: 2rem;
  }
}
.c-modal-horizontal.c-flex--col1-2 .c-flex__item {
  width: calc((100% - 0.6875rem) / 2);
}
@media screen and (min-width: 768px) {
  .c-modal-horizontal.c-flex--col1-2 .c-flex__item {
    width: calc((100% - 2rem) / 2);
  }
}
@media screen and (min-width: 768px) {
  .c-modal-horizontal.c-flex--col1-2 .c-card-img__item-inner {
    gap: 1.875rem;
  }
}
@media screen and (min-width: 768px) {
  .c-modal-horizontal.c-flex--col1-2 .c-card-img__head {
    width: 42%;
    max-width: 15rem;
  }
}
.c-modal-horizontal.c-flex--col1-2 .c-card-img__image {
  aspect-ratio: 1/1;
}
.c-modal-horizontal.c-flex--col1-2 .c-button {
  min-width: 10.125rem;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.75rem 2rem 0.8125rem;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-modal-horizontal.c-flex--col1-2 .c-button {
    min-width: 11.25rem;
    margin-top: 1.5625rem;
    padding: 0.75rem 2.5rem 0.8125rem;
  }
}
.c-modal-horizontal.c-flex--col1-2 .c-button .c-duplicate {
  right: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-modal-horizontal.c-flex--col1-2 .c-button .c-duplicate {
    right: 0.75rem;
  }
}

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

.c-modal {
  overflow-y: auto;
}
@media screen and (min-width: 768px) {
  .c-modal {
    overflow-y: unset;
  }
}
.c-modal .c-card-img__title {
  font-size: 1.5rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .c-modal .c-card-img__title {
    font-size: 2.25rem;
  }
}

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

.c-modal__dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 0.625rem;
  width: 90%;
  max-width: 56.25rem;
  height: 90dvh;
  max-height: 54.375rem;
  padding: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .c-modal__dialog {
    height: 88dvh;
    padding: 3.125rem;
  }
}

.c-modal__close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: solid 0.0625rem var(--main-c);
  border-radius: 50%;
  color: var(--main-c);
  width: 1.5rem;
  height: 1.5rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
  position: absolute;
  top: 0.5625rem;
  right: 0.5625rem;
}
@media screen and (min-width: 768px) {
  .c-modal__close {
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
  }
}

.c-modal__body {
  height: 100%;
}

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

.c-modal__body-lower {
  overflow-y: auto;
  height: calc(62% - 1.25rem);
  margin-top: 1.25rem;
  padding-right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-modal__body-lower {
    height: calc(61% - 1.625rem);
    margin-top: 1.625rem;
    padding-right: 1.875rem;
  }
}
.c-modal__body-lower::-webkit-scrollbar {
  width: 0.125rem;
}
.c-modal__body-lower::-webkit-scrollbar-track {
  background: #E6E6E6;
}
.c-modal__body-lower::-webkit-scrollbar-thumb {
  background: var(--main-c);
}
.c-modal__body-lower .title {
  line-height: 1.6;
}
.c-modal__body-lower .lead {
  font-weight: 500;
}
.c-modal__body-lower .text {
  font-size: 1rem;
  margin-top: 0.625rem;
  padding-top: 0.9375rem;
  border-top: solid 0.0625rem var(--border-c);
}
@media screen and (min-width: 768px) {
  .c-modal__body-lower .text {
    margin-top: 1.25rem;
    padding-top: 1.875rem;
  }
}

.c-modal__button {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-modal__button {
    margin-top: 2.5rem;
  }
}
.c-modal__button::after {
  display: none;
}
.c-modal__button:hover .icon path {
  fill: var(--main-c);
}
.c-modal__button .icon {
  position: absolute;
  top: 50%;
  right: 0.625rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.875rem;
  height: 0.75rem;
}
@media screen and (min-width: 768px) {
  .c-modal__button .icon {
    right: 1.5625rem;
  }
}
.c-modal__button .icon path {
  fill: #fff;
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}

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

.c-point-image__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-point-image__item {
    width: calc((100% - 4rem) / 3);
  }
}
.c-point-image__item .c-card-img {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}

.c-point-image__item-head {
  position: relative;
}

.c-point-image__num {
  font-size: 3.75rem;
  font-weight: 300;
  line-height: 1;
  position: absolute;
  bottom: -0.5em;
  left: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-point-image__num {
    font-size: 5rem;
    left: 1.4375rem;
  }
}

.c-point-image .c-card-img__wrap {
  border-radius: 0.625rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-point-image .c-card-img__wrap {
    border-radius: 1.25rem;
  }
}
.c-point-image .c-card-img__wrap .c-card-img__image {
  aspect-ratio: 378/284;
}

.c-point-image .c-card-img__body {
  padding-block: 2.25rem 0;
  padding-inline: 1.25rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (min-width: 768px) {
  .c-point-image .c-card-img__body {
    padding-block: 3.125rem 0;
    padding-inline: 2.8125rem;
  }
}
.c-point-image .c-card-img__body .c-card-img__title {
  line-height: 1.6;
}
.c-point-image .c-card-img__body .c-card-img__title + .c-card-img__lead {
  margin-top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .c-point-image .c-card-img__body .c-card-img__title + .c-card-img__lead {
    margin-top: 0.625rem;
  }
}
.c-point-image .c-card-img__body .c-card-img__title + .c-card-img__text {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-point-image .c-card-img__body .c-card-img__title + .c-card-img__text {
    margin-top: 1rem;
  }
}
.c-point-image .c-card-img__body .c-card-img__lead + .c-card-img__text {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-point-image .c-card-img__body .c-card-img__lead + .c-card-img__text {
    margin-top: 1rem;
  }
}

.c-point-image__button {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-point-image__button {
    margin-top: 2rem;
  }
}

.c-point-image-col {
  gap: 1.875rem !important;
}
@media screen and (min-width: 768px) {
  .c-point-image-col {
    gap: 3rem !important;
  }
}

.c-point-image-col__item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: solid 0.0625rem var(--border-c);
  border-radius: 0.625rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-point-image-col__item {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    border-radius: 1.25rem;
  }
}

.c-point-image-col__image {
  aspect-ratio: 335/251;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .c-point-image-col__image {
    aspect-ratio: unset;
    height: 100%;
    max-width: 34.375rem;
  }
}
.c-point-image-col__image .image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-point-image-col__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-block: 1.25rem 3.125rem;
  padding-inline: 1.5625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-point-image-col__body {
    padding-block: 2.8125rem;
    padding-inline: 3.75rem 4.375rem;
  }
}
.c-point-image-col__body::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 0.625rem;
  background-color: var(--main-c);
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .c-point-image-col__body::before {
    width: 0.9375rem;
    height: 100%;
    right: 0;
  }
}

.c-point-image-col__num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0.3125rem;
  font-family: "Google Sans Flex", "Zen Kaku Gothic New", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-size: 1.625rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .c-point-image-col__num {
    font-size: 2.25rem;
  }
}
.c-point-image-col__num .label {
  display: block;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .c-point-image-col__num .label {
    font-size: 1.25rem;
  }
}

.c-point-image-col__title {
  line-height: 1.6;
  margin-top: 0.3125rem;
}

.c-point-image-col__text {
  font-size: 1rem;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-point-image-col__text {
    margin-top: 1.875rem;
  }
}

.c-point-image-col__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1.25rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .c-point-image-col__button {
    margin-top: 2.5rem;
    margin-inline: unset;
  }
}

@media screen and (min-width: 768px) {
  .c-point-image-col--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (min-width: 768px) {
  .c-point-image-col--reverse .c-point-image-col__image {
    border-radius: 0 1.25rem 1.25rem 0;
  }
}
@media screen and (min-width: 768px) {
  .c-point-image-col--reverse .c-point-image-col__body {
    padding-inline: 4.375rem 3.75rem;
    border-radius: 1.25rem 0 0 1.25rem;
    border-left: solid 0.0625rem var(--border-c);
    border-right: none;
  }
}
@media screen and (min-width: 768px) {
  .c-point-image-col--reverse .c-point-image-col__body::before {
    right: unset;
    left: 0;
  }
}

.c-point-image-col.c-flex--col1-2 {
  gap: 1.25rem !important;
}
@media screen and (min-width: 768px) {
  .c-point-image-col.c-flex--col1-2 {
    gap: 2rem !important;
  }
}
.c-point-image-col.c-flex--col1-2 .c-point-image-col__item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-point-image-col.c-flex--col1-2 .c-point-image-col__item {
    width: calc((100% - 2rem) / 2);
  }
}
.c-point-image-col.c-flex--col1-2 .c-point-image-col__body {
  border-radius: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-point-image-col.c-flex--col1-2 .c-point-image-col__body {
    border-radius: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .c-point-image-col.c-flex--col1-2 .c-point-image-col__body::before {
    right: unset;
    left: 0;
  }
}
.c-point-image-col.c-flex--col1-2 .num {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-point-image-col.c-flex--col1-2 .c-point-image-col__title {
    margin-top: 0;
  }
}

.c-point-image-col--white {
  background-color: #fff;
}

.c-point-image-col--color {
  background-color: var(--base-c);
}

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

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

.c-profile__rail {
  position: relative;
}

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

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

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

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

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

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

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

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

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

.c-qa {
  background-color: #fff;
  border: solid 0.0625rem var(--border-c);
  border-radius: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-qa {
    border-radius: 1.25rem;
  }
}
.c-qa + .c-qa {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-qa + .c-qa {
    margin-top: 1.5625rem;
  }
}

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

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

.c-qa__title {
  width: 100%;
  position: relative;
  cursor: pointer;
  padding-block: 1.875rem;
  padding-inline: 4rem 3.125rem;
}
@media screen and (min-width: 768px) {
  .c-qa__title {
    padding-block: 2.5rem;
    padding-inline: 6.4375rem 5.25rem;
  }
}
.c-qa__title .title {
  font-size: 0.875rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .c-qa__title .title {
    font-size: 1rem;
  }
}

.c-qa__cont {
  opacity: 0;
  position: relative;
  padding-bottom: 1.875rem;
  padding-inline: 4rem 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-qa__cont {
    padding-inline: 6.4375rem 5.25rem;
    padding-bottom: 2.5rem;
  }
}
.c-qa__cont .text {
  font-weight: 500;
}

.c-qa__icon {
  display: inline-block;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  position: absolute;
  top: 0.8em;
  left: 0.9375rem;
  width: 2.0625rem;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  line-height: 1;
  color: var(--main-c);
}
@media screen and (min-width: 768px) {
  .c-qa__icon {
    top: 0.85em;
    left: 3.25rem;
    font-size: 2.5rem;
  }
}

.c-qa__icon--q {
  font-weight: 200;
}

.c-qa__icon--a {
  font-weight: bold;
  top: -0.25rem;
}
@media screen and (min-width: 768px) {
  .c-qa__icon--a {
    top: -0.375rem;
  }
}

.c-qa__tgl {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  position: absolute;
  top: 2.1875rem;
  right: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-qa__tgl {
    width: 1.25rem;
    height: 1.25rem;
    top: 2.625rem;
    right: 2.5rem;
  }
}
.c-qa__tgl::before, .c-qa__tgl::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 0.0625rem;
  background-color: var(--border-c);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-qa__tgl::before, .c-qa__tgl::after {
    height: 0.125rem;
  }
}
.c-qa__tgl::before {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.c-qa__tgl::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

/* オープン時にアニメーションを設定 */
.c-qa[open] .c-qa__tgl::after {
  -webkit-transform: translate(-50%, -50%) rotate(0);
          transform: translate(-50%, -50%) rotate(0);
}

.c-qa[open] .c-qa__cont.is-visible {
  opacity: 1;
}

.c-qa[open] .c-qa__cont.is-fade-in {
  opacity: 1;
  -webkit-animation: fadeIn 0.5s ease;
          animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-0.3125rem);
            transform: translateY(-0.3125rem);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*スクロールダウン全体の場所*/
.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;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

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

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

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

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

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

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

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

.c-slider__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
  border-radius: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-slider__img {
    border-radius: 1.25rem;
  }
}

.c-slider__caption {
  padding-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .c-slider__caption {
    padding-top: 1.25rem;
    padding-inline: 3.5rem;
  }
}

.swiper-slide-active .c-slider__slide {
  -webkit-transform: scale(1);
          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 {
    -webkit-transform: scale(0.7) translateX(25%) translateY(-5%);
            transform: scale(0.7) translateX(25%) translateY(-5%);
  }
}

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

.c-slider__title {
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .c-slider__title {
    line-height: 1.8;
  }
}
.c-slider__title + .c-slider__text {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-slider__title + .c-slider__text {
    margin-top: 0.9375rem;
  }
}

.c-slider__text {
  font-size: 1rem;
}

.c-slider__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2rem;
  height: 2rem;
  border: solid 0.0625rem var(--main-c);
  border-radius: 50%;
  background-color: var(--main-c);
  position: absolute;
  top: clamp(4.875rem, -1.821rem + 28.57vw, 11.875rem);
  z-index: 4;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-slider__button {
    top: 14.125rem;
    width: 3rem;
    height: 3rem;
  }
}
.c-slider__button:hover {
  background-color: var(--white);
}
.c-slider__button:hover .c-slider__button__arrow {
  color: var(--main-c);
}

.c-slider__button__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 0.75rem;
  height: 0.75rem;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-slider__button__arrow svg {
  width: 100%;
  height: auto;
}

.c-slider__button--prev {
  left: 0.25rem;
}
@media screen and (min-width: 768px) {
  .c-slider__button--prev {
    left: calc(50% - 31.5625rem);
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.c-slider__button--prev .c-slider__button__arrow {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.c-slider__button--next {
  right: 0.25rem;
}
@media screen and (min-width: 768px) {
  .c-slider__button--next {
    right: unset;
    left: calc(50% + 31.5625rem);
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

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

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

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

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

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

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

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

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

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

.c-slider-col__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-slider-col__img {
    border-radius: 1.25rem;
  }
}

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

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

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

.c-slider-col__text {
  font-size: 1rem;
}

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

.c-slider-col--frame .c-slider-col__item-inner {
  border: solid 0.0625rem var(--border-c);
  border-radius: 0.625rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-slider-col--frame .c-slider-col__item-inner {
    border-radius: 1.25rem;
  }
}

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

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

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

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

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

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

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

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

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

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

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

.c-flow__item {
  width: 100%;
  background-color: #fff;
  border-radius: 1.25rem;
  position: relative;
  padding: 0.9375rem 1.875rem 1.875rem;
}
@media screen and (min-width: 768px) {
  .c-flow__item {
    padding: 1.25rem 2.5rem 2.5rem;
  }
}
.c-flow__item:not(:last-of-type) .c-arrow {
  width: 3rem;
  height: 3rem;
  color: var(--main-c);
  position: absolute;
  bottom: -3rem;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(90deg);
          transform: translateX(-50%) rotate(90deg);
}
@media screen and (min-width: 768px) {
  .c-flow__item:not(:last-of-type) .c-arrow {
    bottom: unset;
    left: unset;
    top: 50%;
    right: -3rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.c-flow__item:last-of-type .c-arrow {
  display: none;
}

.c-flow__step {
  font-size: 1.125rem;
  font-weight: 500;
  text-align: center;
  color: var(--main-c);
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .c-flow__step {
    font-size: 1.5rem;
  }
}

.c-flow__step-num {
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .c-flow__step-num {
    line-height: 1.8;
  }
}

.c-flow__item-image {
  aspect-ratio: 1/1;
  width: 6.25rem;
  height: auto;
  border-radius: 50%;
  overflow: hidden;
  margin-top: 0.9375rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .c-flow__item-image {
    width: 8.125rem;
    margin-top: 1.25rem;
  }
}
.c-flow__item-image .image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

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

.c-flow__title {
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .c-flow__title {
    line-height: 1.8;
  }
}
.c-flow__title + .c-flow__text {
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-flow__title + .c-flow__text {
    margin-top: 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .c-flex--col1-1 {
    row-gap: 3rem;
  }
}
.c-flex--col1-1 .c-flow__item .c-arrow {
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(90deg);
          transform: translateX(-50%) rotate(90deg);
}
@media screen and (min-width: 768px) {
  .c-flex--col1-1 .c-flow__item .c-arrow {
    top: unset;
    right: unset;
    bottom: -3rem;
  }
}

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

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

@media screen and (min-width: 768px) {
  .c-flex--col1-4 .c-flow__item {
    width: calc((100% - 9rem) / 4);
  }
}

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

.c-tab-area [data-tab-label] {
  display: inline-block;
  padding: 0.5rem 1.875rem;
}
.c-tab-area [data-tab-panel] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          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 {
  -webkit-animation: linkSlideIn 0.8s forwards;
          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) {
  -webkit-animation-delay: calc(0 * 0.15s);
          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) {
  -webkit-animation-delay: calc(1 * 0.15s);
          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) {
  -webkit-animation-delay: calc(2 * 0.15s);
          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) {
  -webkit-animation-delay: calc(3 * 0.15s);
          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) {
  -webkit-animation-delay: calc(4 * 0.15s);
          animation-delay: calc(4 * 0.15s);
}
.c-tab-area .link {
  text-decoration: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transform: translateX(5rem);
          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;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.c-tab-area .link:hover::after {
  -webkit-transform: scale(1, 1);
          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);
}

@-webkit-keyframes linkSlideIn {
  0% {
    -webkit-transform: translateX(5rem);
            transform: translateX(5rem);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes linkSlideIn {
  0% {
    -webkit-transform: translateX(5rem);
            transform: translateX(5rem);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
.c-table {
  overflow-x: auto;
}
.c-table.-scrollable:before, .c-table.-scrollable:after {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  opacity: 1;
}
.c-table.-scrollable:before {
  content: "SWIPE";
  font-family: "Google Sans Flex", "Zen Kaku Gothic New", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-size: 1rem;
  text-align: center;
  color: var(--white);
  line-height: 9rem;
  height: 6rem;
  width: 6rem;
  border-radius: 100%;
  background-color: var(--main-c);
  -webkit-filter: opacity(0.9);
          filter: opacity(0.9);
}
.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: contain;
  -webkit-animation: fingerSwipe 1.5s linear infinite;
          animation: fingerSwipe 1.5s linear infinite;
  bottom: 1.5625rem;
}
@-webkit-keyframes fingerSwipe {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  25% {
    -webkit-transform: translateX(0.375rem);
            transform: translateX(0.375rem);
  }
  80% {
    -webkit-transform: translateX(-0.375rem);
            transform: translateX(-0.375rem);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fingerSwipe {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  25% {
    -webkit-transform: translateX(0.375rem);
            transform: translateX(0.375rem);
  }
  80% {
    -webkit-transform: translateX(-0.375rem);
            transform: translateX(-0.375rem);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@media screen and (min-width: 768px) {
  .c-table.-scrollable {
    display: none;
  }
}
.c-table.-scrolled:before, .c-table.-scrolled:after {
  opacity: 0;
}

.c-table__inner {
  width: 100%;
  padding-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-table__inner {
    width: 90%;
    padding-left: 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: 1.5625rem;
  font-size: 1rem;
  vertical-align: middle;
  border: solid 0.0625rem var(--border-c);
}

.c-table__title-vl {
  font-weight: 500;
  background-color: var(--base-c);
}

.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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .c-table-col2__row {
    display: inherit;
  }
}

.c-table-col2__title,
.c-table-col2__cont {
  text-align: left;
}

.c-table-col2__title {
  position: relative;
  font-weight: 500;
  padding-block: 1.25rem 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-table-col2__title {
    width: 22.5rem;
    border-bottom: solid 0.0625rem var(--border-c);
    padding-block: 1.875rem;
  }
}
.c-table-col2__title::after {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-table-col2__title::after {
    display: block;
    content: "";
    display: inline-block;
    width: 7.5rem;
    height: 0.0625rem;
    background-color: var(--main-c);
    position: absolute;
    bottom: 0;
    left: 0;
  }
}

.c-table-col2__cont {
  padding-block: 0 1.25rem;
  border-top-color: transparent;
  border-bottom: solid 0.0625rem var(--border-c);
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-table-col2__cont {
    width: 57.5rem;
    padding-block: 1.875rem;
    padding-left: 1.25rem;
    border-top-color: var(--border-c);
  }
}
.c-table-col2__cont::after {
  content: "";
  display: inline-block;
  width: 3.75rem;
  height: 0.0625rem;
  background-color: var(--main-c);
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .c-table-col2__cont::after {
    display: none;
  }
}

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

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

.c-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: 1.875rem 2.5rem;
  background-color: var(--white);
  border: 0.0625rem solid var(--border-c);
  border-radius: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-text-box {
    padding-block: 3.125rem;
    padding-inline: 5rem;
    border-radius: 1.25rem;
  }
}
.c-text-box .c-button {
  display: block;
  margin-top: 1.25rem;
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-text-box .c-button {
    margin-top: 1.875rem;
  }
}

.c-text-box__title {
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .c-text-box__title {
    line-height: 1.8;
  }
}
@media screen and (min-width: 768px) {
  .c-text-box__title + .c-text-box__lead {
    margin-top: 0.3125rem;
  }
}
.c-text-box__title + .c-text-box__text {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-text-box__title + .c-text-box__text {
    margin-top: 1.875rem;
  }
}

.c-text-box__lead {
  font-weight: 500;
}
.c-text-box__lead + .c-text-box__text {
  margin-top: 1.25rem;
}

.c-text-box--sub-color {
  background-color: var(--base-c);
}

.c-text-box--main-color {
  background-color: rgba(214, 50, 21, 0.25);
}

/*--------個別ページ　接頭辞「p-」--------------*/
.p-front {
  letter-spacing: 0;
}
.p-front .c-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

/*=============================
共通
=============================*/
.p-front-title .title {
  font-family: "Google Sans Flex", sans-serif;
  font-size: 3.75rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-front-title .title {
    font-size: 6rem;
    letter-spacing: 0.1em;
  }
}
@media screen and (min-width: 768px) {
  .p-front-title .title.-sm {
    font-size: 5rem;
  }
}
.p-front-title .sub-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  font-size: 1.375rem;
  margin-top: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-front-title .sub-title {
    gap: 0.75rem;
    font-size: 1.625rem;
  }
}
.p-front-title .icon {
  display: block;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.p-front-title .sub-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.25rem;
  margin-top: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-front-title .sub-area {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2.1875rem;
  }
}
.p-front-title .sub-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: left;
  padding-left: 1.8125rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-front-title .sub-text {
    line-height: 1;
    padding-left: 2rem;
  }
}
.p-front-title .sub-text::before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 0.0625rem;
  background-color: var(--black);
  position: absolute;
  top: 0.75em;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-front-title .sub-text::before {
    top: 0.5em;
  }
}

/*=============================
ボタン
=============================*/
.p-front-button {
  font-weight: bold;
  -webkit-box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.3);
          box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.3);
}
.p-front-button .icon {
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}

/*=============================
メインビジュアル
=============================*/
.p-front-mv {
  aspect-ratio: 375/551;
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-front-mv {
    aspect-ratio: 1400/806;
  }
}
@media screen and (min-width: 1770px) {
  .p-front-mv {
    aspect-ratio: unset;
    height: 63.75rem;
  }
}
@media screen and (min-width: 1921px) {
  .p-front-mv {
    aspect-ratio: 1920/1020;
    height: auto;
  }
}

.p-front-mv__inner {
  width: 100%;
  padding-top: clamp(5rem, -0.381rem + 22.96vw, 10.625rem);
}
@media screen and (min-width: 768px) {
  .p-front-mv__inner {
    padding-top: 18.75rem;
    padding-left: 3.75rem;
  }
}
@media screen and (min-width: 1401px) {
  .p-front-mv__inner {
    padding-top: clamp(18.75rem, -0.285rem + 21.74vw, 23.75rem);
    padding-left: clamp(3.75rem, -1.009rem + 5.43vw, 5rem);
  }
}
@media screen and (min-width: 1770px) {
  .p-front-mv__inner {
    width: 120rem;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    padding-top: 24.375rem;
    padding-left: 10rem;
  }
}
@media screen and (min-width: 1921px) {
  .p-front-mv__inner {
    width: 100%;
    padding-top: 20.4vw;
    padding-left: 8.4vw;
  }
}

.p-front-mv__catch {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-front-mv__catch {
    margin: unset;
  }
}
.p-front-mv__catch .sub-catch {
  font-family: "Google Sans Flex", "Zen Kaku Gothic New", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-size: clamp(0.875rem, 0.038rem + 3.57vw, 1.75rem);
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .p-front-mv__catch .sub-catch {
    font-size: 1.375rem;
  }
}
@media screen and (min-width: 1401px) {
  .p-front-mv__catch .sub-catch {
    font-size: clamp(1.375rem, 1.5vw, 1.75rem);
  }
}
@media screen and (min-width: 1770px) {
  .p-front-mv__catch .sub-catch {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 1921px) {
  .p-front-mv__catch .sub-catch {
    font-size: 1.5vw;
  }
}
.p-front-mv__catch .title {
  font-size: clamp(1.375rem, -0.18rem + 6.63vw, 3rem);
  line-height: 1.55;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-front-mv__catch .title {
    font-size: 2.375rem;
    line-height: 1.6;
    margin-top: 1.25rem;
  }
}
@media screen and (min-width: 1401px) {
  .p-front-mv__catch .title {
    font-size: clamp(2.375rem, 2.7vw, 3rem);
    margin-top: 0.9375rem;
  }
}
@media screen and (min-width: 1770px) {
  .p-front-mv__catch .title {
    font-size: 3rem;
    margin-top: 1.25rem;
  }
}
@media screen and (min-width: 1921px) {
  .p-front-mv__catch .title {
    font-size: 2.5vw;
  }
}
.p-front-mv__catch .c-cta__button {
  display: block;
  margin-top: 1.25rem;
}
@media screen and (min-width: 1401px) {
  .p-front-mv__catch .c-cta__button {
    margin-top: 2.1875rem;
  }
}
@media screen and (min-width: 1770px) {
  .p-front-mv__catch .c-cta__button {
    margin-top: 2.8125rem;
  }
}
.p-front-mv__catch .c-button {
  font-size: 0.875rem;
  padding-block: 1.25rem;
  padding-inline: 1.5625rem 1.25rem;
  border-radius: 3.125rem 0 0 3.125rem;
  position: absolute;
  bottom: 1.25rem;
  right: 0;
}
@media screen and (min-width: 768px) {
  .p-front-mv__catch .c-button {
    font-size: 1.25rem;
    min-width: 25.875rem;
    padding-inline: 0;
    border-radius: 3.125rem;
    position: relative;
    bottom: unset;
    right: unset;
  }
}
@media screen and (min-width: 1921px) {
  .p-front-mv__catch .c-button {
    font-size: 1.1vw;
    padding: 1.1vw 1.8vw;
    border-radius: 5vw;
  }
}
.p-front-mv__catch .c-button .icon {
  width: 1.5rem;
  height: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-front-mv__catch .c-button .icon {
    width: 2.25rem;
    height: 2.25rem;
  }
}
@media screen and (min-width: 1921px) {
  .p-front-mv__catch .c-button .icon {
    width: 2vw;
    height: 2vw;
  }
}

.p-front-mv__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-front-mv__bg {
    width: 95rem;
  }
}
@media screen and (min-width: 1401px) {
  .p-front-mv__bg {
    width: calc(100% + 8.5vw);
  }
}
@media screen and (min-width: 1770px) {
  .p-front-mv__bg {
    width: 120rem;
  }
}
@media screen and (min-width: 1921px) {
  .p-front-mv__bg {
    width: 100%;
  }
}
.p-front-mv__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* =============================
  CTA（画像あり）
============================= */
.p-front-cta {
  padding-block: 0.75vw 10.8vw;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-front-cta {
    padding-block: 0.375rem;
  }
}
@media screen and (min-width: 1770px) {
  .p-front-cta {
    padding-block: 0.5rem;
    position: relative;
    height: 49.6875rem;
  }
}
@media screen and (min-width: 1921px) {
  .p-front-cta {
    aspect-ratio: 1920/795;
    height: auto;
  }
}
.p-front-cta .c-cta__container {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-front-cta .c-cta__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 120rem;
  }
}
@media screen and (min-width: 1770px) {
  .p-front-cta .c-cta__container {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@media screen and (min-width: 1921px) {
  .p-front-cta .c-cta__container {
    width: 100%;
  }
}
.p-front-cta .c-cta__image {
  width: 98.5vw;
}
@media screen and (min-width: 768px) {
  .p-front-cta .c-cta__image {
    width: 50vw;
    aspect-ratio: 698/616;
  }
  .p-front-cta .c-cta__image .image {
    width: 120%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: right;
       object-position: right;
  }
}
@media screen and (min-width: 1770px) {
  .p-front-cta .c-cta__image {
    width: 50%;
    aspect-ratio: unset;
  }
  .p-front-cta .c-cta__image .image {
    width: auto;
    height: auto;
    -o-object-fit: unset;
       object-fit: unset;
    -o-object-position: unset;
       object-position: unset;
  }
}
.p-front-cta .c-cta__content {
  width: 92vw;
  margin-top: -6.6875rem;
}
@media screen and (min-width: 768px) {
  .p-front-cta .c-cta__content {
    width: calc(50% + 3.75rem);
    margin-top: 0;
    margin-left: -3.75rem;
    border-radius: 3.75rem 0 0 3.75rem;
  }
}
@media screen and (min-width: 1921px) {
  .p-front-cta .c-cta__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 30.3vw;
  }
}
.p-front-cta .c-cta__content-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-front-cta .c-cta__content-inner {
    max-width: 41.25rem;
  }
}
.p-front-cta .c-cta__content-middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-top: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-front-cta .c-cta__content-middle {
    margin-top: 1.875rem;
  }
}
.p-front-cta .c-cta__content-middle .title {
  font-size: 0.8125rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .p-front-cta .c-cta__content-middle .title {
    font-size: 1.375rem;
  }
}
.p-front-cta .c-cta__content-middle .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  width: 100%;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-front-cta .c-cta__content-middle .list {
    gap: 0.75rem;
    margin-top: 0.625rem;
  }
}
.p-front-cta .c-cta__content-middle .item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 0.75rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  background-color: var(--base-c);
  padding-block: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-front-cta .c-cta__content-middle .item {
    font-size: 1.125rem;
  }
}
.p-front-cta .c-cta__content-middle .location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  font-size: 0.625rem;
  font-weight: 500;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-front-cta .c-cta__content-middle .location {
    font-size: 0.875rem;
    margin-top: 1.25rem;
  }
}
.p-front-cta .c-cta__content-middle .location .link {
  display: block;
  width: 1rem;
  height: 1rem;
  color: rgba(214, 50, 21, 0.25);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (min-width: 768px) {
  .p-front-cta .c-cta__content-middle .location .link {
    width: 1.5625rem;
    height: 1.5625rem;
  }
}
.p-front-cta .c-cta__content-middle .location .link:hover {
  color: var(--main-c);
}
.p-front-cta .c-cta__content-middle .location svg {
  width: 100%;
  height: 100%;
}
.p-front-cta .c-cta__button {
  margin-top: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-front-cta .c-cta__button {
    margin-top: 1.5625rem;
  }
}

/*=============================
【はじめての方】ほど実感できる
=============================*/
.p-front-experience {
  padding-block: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-front-experience {
    padding-block: 6.25rem;
  }
}

.p-front-experience__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-front-experience__title .sub-title {
  font-size: 1.125rem;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .p-front-experience__title .sub-title {
    font-size: 1.75rem;
  }
}
.p-front-experience__title .title {
  font-size: 2rem;
  text-align: center;
  line-height: 1.4;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-front-experience__title .title {
    font-size: 3rem;
    line-height: 1.75;
    margin-top: 0.3125rem;
  }
}
.p-front-experience__title .br-sp {
  display: block;
}
@media screen and (min-width: 689px) {
  .p-front-experience__title .br-sp {
    display: none;
  }
}

.p-front-experience__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 1.875rem;
     -moz-column-gap: 1.875rem;
          column-gap: 1.875rem;
  row-gap: 0.9375rem;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-front-experience__list {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 2.8125rem;
    margin-top: 2.1875rem;
  }
}

.p-front-experience__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 18.4375rem;
}
@media screen and (min-width: 768px) {
  .p-front-experience__item {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: auto;
  }
}
.p-front-experience__item .text {
  width: 100%;
  background-image: url("../images/front/experience-bubble.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  font-size: 1rem;
  text-align: center;
  font-weight: 500;
  line-height: 1.75;
  padding-block: 2.5625rem 3.6875rem;
}
@media screen and (min-width: 768px) {
  .p-front-experience__item .text {
    padding-block: 3.25rem 4.6875rem;
  }
}
.p-front-experience__item .emphasis {
  display: inline-block;
  padding-block: 0.0625rem 0.25rem;
  padding-inline: 0.125rem 0.0625rem;
  background-color: var(--main-c);
  color: #fff;
  line-height: 1;
  margin-right: 0.125rem;
  margin-inline: 0.1875rem;
}
.p-front-experience__item .image {
  aspect-ratio: 100/150;
  width: 4.125rem;
  height: auto;
  margin-top: -3.125rem;
}
@media screen and (min-width: 768px) {
  .p-front-experience__item .image {
    width: 6.25rem;
    margin-top: -3.9375rem;
  }
}

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

.p-front-experience__statistics-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.75rem;
  background-color: #F5CCC4;
  border-radius: 0.625rem;
  font-size: 1.125rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 0.625rem 1rem;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .p-front-experience__statistics-title {
    font-size: 1.625rem;
    padding: 0.5625rem 4.0625rem;
  }
}
.p-front-experience__statistics-title .icon {
  width: 2.125rem;
  height: 1.6875rem;
  background-image: url("../images/icons/icon-statistics.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .p-front-experience__statistics-title .icon {
    width: 2.8125rem;
    height: 2.25rem;
  }
}

.p-front-experience__statistics-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5625rem;
  border: solid 0.125rem var(--main-c);
  border-radius: 0.625rem;
  padding-block: 3.3125rem 1.875rem;
  padding-inline: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-front-experience__statistics-content {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    gap: 3.125rem;
    border-radius: 1.25rem;
    padding-block: 3.875rem 2.5rem;
    padding-inline: 3.625rem 3.25rem;
  }
}

.p-front-experience__statistics-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 576px) {
  .p-front-experience__statistics-item {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
  }
}
@media screen and (min-width: 768px) {
  .p-front-experience__statistics-item {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (min-width: 576px) {
  .p-front-experience__statistics-item .explanation {
    width: 13.125rem;
  }
}
@media screen and (min-width: 768px) {
  .p-front-experience__statistics-item .explanation {
    padding-top: 3rem;
    width: 15rem;
  }
}
.p-front-experience__statistics-item .title {
  font-size: 1.25rem;
  text-align: center;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-front-experience__statistics-item .title {
    font-size: 1.5rem;
    text-align: left;
  }
}
.p-front-experience__statistics-item .text {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-front-experience__statistics-item .text {
    font-size: 1.125rem;
    margin-top: 1.25rem;
  }
}
.p-front-experience__statistics-item .text span {
  font-weight: bold;
}
.p-front-experience__statistics-item .graph {
  aspect-ratio: 280/280;
  width: 15.1875rem;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-front-experience__statistics-item .graph {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 17.5rem;
    margin-top: 0;
  }
}
.p-front-experience__statistics-item .image {
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-front-experience__statistics-item .br-pc {
  display: none;
}
@media screen and (min-width: 576px) {
  .p-front-experience__statistics-item .br-pc {
    display: block;
  }
}

/*=============================
POINT
=============================*/
.p-front-point {
  background-color: var(--base-c);
  padding-block: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-front-point {
    padding-block: 6.25rem;
  }
}

.p-front-point__inner {
  width: 100%;
  max-width: 83.75rem;
  margin: 0 auto;
  position: relative;
}

.p-front-point__head {
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-front-point__head {
    padding-inline: 0;
  }
}

.p-front-point .p-front-title {
  text-align: center;
}
.p-front-point .p-front-title .icon {
  aspect-ratio: 24/40;
  width: 1.0625rem;
  height: auto;
  background-image: url("../images/icons/icon-point.svg");
}
@media screen and (min-width: 768px) {
  .p-front-point .p-front-title .icon {
    width: 1.5rem;
  }
}

.p-front-point__text {
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  margin-top: 1.4375rem;
}
@media screen and (min-width: 576px) {
  .p-front-point__text {
    text-align: center;
  }
}
.p-front-point__text .br-pc {
  display: none;
}
@media screen and (min-width: 576px) {
  .p-front-point__text .br-pc {
    display: block;
  }
}

.p-front-point__image {
  display: block;
  margin-top: 1.5625rem;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-front-point__image {
    margin-top: 2.5rem;
    aspect-ratio: 980/280;
    width: 61.25rem;
  }
}

.p-front-point__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.9375rem;
  padding-inline: 0.9375rem;
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-front-point__list {
    -webkit-column-gap: 2.5rem;
       -moz-column-gap: 2.5rem;
            column-gap: 2.5rem;
    row-gap: 1.25rem;
    margin-top: 3.75rem;
    padding-inline: 0;
  }
}

.p-front-point__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc((100% - 0.9375rem) / 2);
  padding-top: 1.25rem;
  position: relative;
}
@media screen and (min-width: 576px) {
  .p-front-point__item {
    width: calc((100% - 1.875rem) / 3);
  }
}
@media screen and (min-width: 768px) {
  .p-front-point__item {
    width: calc((100% - 5rem) / 3);
  }
}
.p-front-point__item .inner {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
  border-radius: 0.625rem;
  overflow: hidden;
  -webkit-box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.3);
          box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 768px) {
  .p-front-point__item .inner {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
  }
}
.p-front-point__item .num {
  font-family: "Google Sans Flex", sans-serif;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1;
  position: absolute;
  top: 0;
  right: 0.5625rem;
}
@media screen and (min-width: 768px) {
  .p-front-point__item .num {
    font-size: 3.4375rem;
    right: 1.875rem;
  }
}
@media screen and (min-width: 768px) {
  .p-front-point__item .image-wrap {
    max-width: 12.5rem;
  }
}
.p-front-point__item .image-wrap .image {
  width: 100%;
}
.p-front-point__item .text-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  padding: 0.9375rem 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-front-point__item .text-wrap {
    font-size: 1.375rem;
    padding: 0 1.25rem;
  }
}
.p-front-point__item .text-wrap span {
  font-weight: bold;
  position: relative;
}
.p-front-point__item .text-wrap span::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 0.0625rem;
  background-color: var(--main-c);
  position: absolute;
  bottom: 0.0625rem;
  left: 0;
}

/*=============================
CORSE
=============================*/
.p-front-course {
  padding-block: 3.75rem 6.25rem;
  background-color: rgba(214, 50, 21, 0.25);
}
@media screen and (min-width: 768px) {
  .p-front-course {
    padding-block: 6.25rem 11.25rem;
  }
}

.p-front-course__inner {
  max-width: 83.75rem;
  margin: 0 auto;
  position: relative;
}

.p-front-course .p-front-title {
  text-align: center;
}
.p-front-course .p-front-title .icon {
  aspect-ratio: 39/31;
  width: 1.8125rem;
  height: auto;
  background-image: url("../images/icons/icon-course.svg");
}
@media screen and (min-width: 768px) {
  .p-front-course .p-front-title .icon {
    width: 2.4375rem;
  }
}

.p-front-course__container {
  margin-top: 1.6875rem;
}
@media screen and (min-width: 768px) {
  .p-front-course__container {
    margin-top: 1.875rem;
  }
}

.p-front-course__content.-upper .p-front-course__item {
  padding-top: 1.25rem;
  height: auto;
}
.p-front-course__content.-upper .p-front-course__item .inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-front-course__content.-upper .p-front-course__item .inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.p-front-course__content.-upper .p-front-course__item .label {
  width: 18.0625rem;
  font-size: 1rem;
  padding-block: 0.5625rem;
  clip-path: polygon(100% 0%, calc(100% - 1.875rem) 50%, 100% 100%, 0 100%, 0% 50%, 0 0);
}
@media screen and (min-width: 768px) {
  .p-front-course__content.-upper .p-front-course__item .label {
    width: 25rem;
    padding-block: 1.125rem 1.25rem;
    font-size: 1.375rem;
  }
}
@media screen and (min-width: 768px) {
  .p-front-course__content.-upper .p-front-course__item .head {
    width: 48%;
    max-width: 39.0625rem;
  }
}
.p-front-course__content.-upper .p-front-course__item .body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-block: 1.25rem 1.875rem;
  padding-inline: clamp(1.25rem, 0.652rem + 2.55vw, 1.875rem);
}
@media screen and (min-width: 768px) {
  .p-front-course__content.-upper .p-front-course__item .body {
    padding-block: 4.375rem 3.75rem;
    padding-inline: 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .p-front-course__content.-upper .p-front-course__item .title {
    font-size: 2rem;
  }
}
.p-front-course__content.-upper .p-front-course__item .item {
  padding-inline: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-front-course__content.-upper .p-front-course__item .item {
    padding-inline: 0.625rem;
  }
}
@media screen and (min-width: 768px) {
  .p-front-course__content.-upper .p-front-course__item .item:first-child {
    grid-column: 1/3;
  }
}

.p-front-course__content.-lower {
  margin-top: 3.75rem;
}
.p-front-course__content.-lower .p-front-course__item .head,
.p-front-course__content.-lower .p-front-course__item .body {
  width: 100%;
}

.p-front-course__sub-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-front-course__sub-title::before, .p-front-course__sub-title::after {
  content: "";
  display: inline-block;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: inline-block;
  height: 0.0625rem;
  background-color: #fff;
}
.p-front-course__sub-title::before {
  margin-right: 0.875rem;
}
.p-front-course__sub-title::after {
  margin-left: 0.875rem;
}
.p-front-course__sub-title .-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-front-course__sub-title .-pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.p-front-course__item-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-front-course__item-wrap {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
  }
}

.p-front-course__item {
  padding-top: 1.125rem;
  padding-inline: 0.9375rem;
  position: relative;
}
.p-front-course__item .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: var(--base-c);
  border-radius: 1.25rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-front-course__item .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.p-front-course__item .label {
  display: block;
  width: 18.0625rem;
  background-color: var(--main-c);
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  padding-block: 0.5625rem;
  padding-left: 0.9375rem;
  clip-path: polygon(100% 0%, calc(100% - 1.5rem) 50%, 100% 100%, 0 100%, 0% 50%, 0 0);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-front-course__item .label {
    width: 20.875rem;
    font-size: 1.125rem;
    padding-block: 0.875rem 1rem;
    padding-left: 1.25rem;
  }
}
.p-front-course__item .head {
  position: relative;
  aspect-ratio: 345/259;
}
@media screen and (min-width: 768px) {
  .p-front-course__item .head {
    aspect-ratio: unset;
  }
}
.p-front-course__item .head-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-front-course__item .c-button {
  position: absolute;
  bottom: 0.625rem;
  right: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-front-course__item .c-button {
    bottom: 1.5625rem;
    right: 1.5625rem;
  }
}
.p-front-course__item .body {
  padding-block: 1.25rem 1.875rem;
  padding-inline: clamp(1.25rem, 0.652rem + 2.55vw, 1.875rem);
}
@media screen and (min-width: 768px) {
  .p-front-course__item .body {
    padding-block: 3.125rem 2.5rem;
    padding-inline: 2.5rem;
  }
}
.p-front-course__item .title {
  font-size: 1.625rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-front-course__item .title {
    font-size: 1.75rem;
  }
}
.p-front-course__item .text {
  font-size: 1rem;
  margin-top: 0.9375rem;
}
.p-front-course__item .list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.9375rem;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-front-course__item .list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 1.6875rem;
  }
}
.p-front-course__item .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 0.625rem;
  padding: 1.25rem 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-front-course__item .item {
    padding-block: 1.5625rem 1.25rem;
    padding-inline: 0.625rem;
  }
}
.p-front-course__item .item-title {
  line-height: 1;
  padding-inline: 0.875rem;
  position: relative;
}
.p-front-course__item .item-title::before, .p-front-course__item .item-title::after {
  content: "";
  display: inline-block;
  width: 0.375rem;
  height: 0.375rem;
  background-color: #E6E6E6;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-front-course__item .item-title::before {
  left: 0;
}
.p-front-course__item .item-title::after {
  right: 0;
}
.p-front-course__item .item-image {
  display: block;
  aspect-ratio: 280/110;
  width: 100%;
  max-width: 30rem;
  height: auto;
  margin-top: 0.9375rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-front-course__item .item-image {
    aspect-ratio: 496/157;
    width: calc(100% - 3.75rem);
  }
}
.p-front-course__item .item-image .image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-front-course__item .item-info {
  font-family: "Google Sans Flex", "Zen Kaku Gothic New", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-size: 2.25rem;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.05em;
  width: 100%;
  margin-top: 1rem;
  position: relative;
}
.p-front-course__item .item-info.-monthly::before {
  content: "";
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  background-image: url("../images/icons/icon-monthly.svg");
  background-size: cover;
  position: absolute;
  top: -2.8125rem;
  left: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-front-course__item .item-info.-monthly::before {
    left: 0.625rem;
  }
}
.p-front-course__item .item-info .small {
  font-size: 1.125rem;
  font-weight: 500;
}
.p-front-course__item .item-text {
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
  margin-top: 0.625rem;
}

.p-course-slider__next,
.p-course-slider__prev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1.625rem;
  height: 1.625rem;
  background-color: var(--main-c);
  color: #fff;
  border-radius: 50%;
  position: absolute;
  top: var(--course-arrow-top);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-course-slider__next:hover,
.p-course-slider__prev:hover {
  opacity: 0.6;
}
.p-course-slider__next svg,
.p-course-slider__prev svg {
  width: 0.75rem;
  margin-top: -0.125rem;
}

.p-course-slider__next {
  right: 0.25rem;
}

.p-course-slider__prev {
  left: 0.25rem;
}
.p-course-slider__prev svg {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.p-front-course__others {
  width: calc(100% - 1.875rem);
  background-color: #fff;
  border-radius: 0.9375rem;
  padding: 1.5625rem 1.25rem;
  margin-top: 1.875rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-front-course__others {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 1.5625rem 3.125rem;
    margin-top: 4.375rem;
  }
}

.p-front-course__title {
  font-size: 1rem;
  text-align: left;
  line-height: 1.6;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 451px) {
  .p-front-course__title {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .p-front-course__title {
    font-size: 1.25rem;
    line-height: 1.8;
  }
}

.p-front-course__image {
  display: block;
  aspect-ratio: 1/1;
  width: calc(100% - 0.625rem);
  height: auto;
  background-image: url("../images/front/course-point-sp.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  margin-top: 1.5rem;
  margin-inline: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 640px) {
  .p-front-course__image {
    aspect-ratio: 700/160;
    background-image: url("../images/front/course-point.svg");
  }
}
@media screen and (min-width: 768px) {
  .p-front-course__image {
    width: 43.75rem;
  }
}
.p-front-course__image .image {
  width: 100%;
}

/*=============================
VOICE
=============================*/
.p-front-voice {
  background-color: var(--base-c);
  border-radius: 2.1875rem 2.1875rem 0 0;
  padding-block: 2.5rem;
  margin-top: -2.5rem;
}
@media screen and (min-width: 768px) {
  .p-front-voice {
    border-radius: 4.6875rem 4.6875rem 0 0;
    padding-block: 5rem;
    margin-top: -5rem;
  }
}

.p-front-voice .p-front-title {
  position: relative;
}
.p-front-voice .p-front-title .title {
  text-align: center;
  color: #fff;
}
.p-front-voice .p-front-title .sub-title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin-top: 0;
}
.p-front-voice .p-front-title .icon {
  aspect-ratio: 36/40;
  width: 1.625rem;
  height: auto;
  background-image: url("../images/icons/icon-voice.svg");
}
@media screen and (min-width: 768px) {
  .p-front-voice .p-front-title .icon {
    width: 2.25rem;
  }
}

.p-front-voice__slider {
  margin-top: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-front-voice__slider {
    margin-top: 1.875rem;
  }
}

.p-front-voice__slide {
  width: calc(100% - 3.75rem);
}
@media screen and (min-width: 576px) {
  .p-front-voice__slide {
    width: 21.5625rem;
    padding-inline: 0.9375rem;
  }
}
@media screen and (min-width: 768px) {
  .p-front-voice__slide {
    width: 58.125rem;
    padding-inline: 1.875rem;
  }
}

.p-front-voice__slide-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5625rem;
  background-color: #fff;
  border-radius: 0.9375rem;
  padding: 1.875rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-front-voice__slide-inner {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    border-radius: 1.875rem;
    padding-block: 2.1875rem;
    padding-inline: 3.125rem 2.1875rem;
  }
}
.p-front-voice__slide-inner .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-front-voice__slide-inner .content-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-front-voice__slide-inner .category {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  background-color: #E6E6E6;
  border-radius: 1.25rem;
  padding: 0.5rem 0.9375rem 0.5625rem;
}
.p-front-voice__slide-inner .title {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-front-voice__slide-inner .title {
    font-size: 1.375rem;
  }
}
.p-front-voice__slide-inner .detail {
  margin-top: 0.8125rem;
}
.p-front-voice__slide-inner .detail-title,
.p-front-voice__slide-inner .detail-text {
  font-size: 0.875rem;
}
.p-front-voice__slide-inner .detail-title {
  font-weight: bold;
}
.p-front-voice__slide-inner .detail-text p {
  max-height: 7.2em;
  font-weight: 500;
  line-height: 1.8;
  overflow: hidden;
}
.p-front-voice__slide-inner .ellipsis {
  display: block;
  line-height: 1;
}
.p-front-voice__slide-inner .image-wrap {
  aspect-ratio: 360/270;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-front-voice__slide-inner .image-wrap {
    width: 22.5rem;
  }
}
.p-front-voice__slide-inner .image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-front-voice__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  background-color: #fff;
  border: solid 0.0625rem var(--main-c);
  border-radius: 50%;
  font-weight: 500;
  color: var(--main-c);
  font-size: 0.8125rem;
  bottom: 0.9375rem;
  right: 0.9375rem;
  width: 5.625rem;
  height: 5.625rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-front-voice__button {
    font-size: 0.875rem;
    bottom: 1.25rem;
    right: 1.25rem;
    width: 6.5625rem;
    height: 6.5625rem;
  }
}
.p-front-voice__button:hover {
  background-color: var(--main-c);
  border: solid 0.0625rem #fff;
  color: #fff;
}

.p-voice-slider__prev,
.p-voice-slider__next {
  display: inline-block;
  width: 0.875rem;
  height: 1.75rem;
  background-color: var(--main-c);
  position: absolute;
  top: calc(50% - 0.625rem);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-voice-slider__prev,
  .p-voice-slider__next {
    width: 0.9375rem;
    height: 1.875rem;
    top: calc(50% - 0.8125rem);
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.p-voice-slider__prev {
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
  left: 0.5rem;
}
@media screen and (min-width: 576px) {
  .p-voice-slider__prev {
    left: calc(50% - 11.3125rem);
  }
}
@media screen and (min-width: 768px) {
  .p-voice-slider__prev {
    left: calc(50% - 29.0625rem);
  }
}
.p-voice-slider__prev:hover {
  left: 0.3125rem;
}
@media screen and (min-width: 576px) {
  .p-voice-slider__prev:hover {
    left: calc(50% - 11.625rem);
  }
}
@media screen and (min-width: 768px) {
  .p-voice-slider__prev:hover {
    left: calc(50% - 29.375rem);
  }
}

.p-voice-slider__next {
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  right: 0.5rem;
}
@media screen and (min-width: 576px) {
  .p-voice-slider__next {
    right: unset;
    left: calc(50% + 10.4375rem);
  }
}
@media screen and (min-width: 768px) {
  .p-voice-slider__next {
    left: calc(50% + 29.0625rem);
  }
}
.p-voice-slider__next:hover {
  right: 0.3125rem;
}
@media screen and (min-width: 576px) {
  .p-voice-slider__next:hover {
    right: unset;
    left: calc(50% + 10.4375rem);
  }
}
@media screen and (min-width: 768px) {
  .p-voice-slider__next:hover {
    left: calc(50% + 29.375rem);
  }
}

.p-voice-slider__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-voice-slider__pagination {
    margin-top: 1.25rem;
  }
}
.p-voice-slider__pagination .swiper-pagination-bullet {
  width: 0.3125rem !important;
  height: 0.3125rem !important;
  background: #CFCFCF !important;
  opacity: 1 !important;
  margin: 0 0.1875rem !important;
}
@media screen and (min-width: 768px) {
  .p-voice-slider__pagination .swiper-pagination-bullet {
    width: 0.375rem !important;
    height: 0.375rem !important;
  }
}
.p-voice-slider__pagination .swiper-pagination-bullet-active {
  background: var(--main-c) !important;
}

.p-front-voice__others {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #fff;
  border-radius: 0.625rem;
  margin-top: 1.25rem;
  margin-inline: auto;
  padding: 1.5625rem 0.9375rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-front-voice__others {
    margin-top: 2.125rem;
    padding: 1.5625rem;
  }
}

.p-front-voice__others-title {
  font-size: 0.875rem;
  text-align: center;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-front-voice__others-title {
    font-size: 1.25rem;
  }
}

.p-front-voice__others-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 3.875rem;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-front-voice__others-image {
    gap: 0.75rem;
    padding-right: 5.1875rem;
    margin-top: 1.25rem;
  }
}
.p-front-voice__others-image .image {
  width: 5rem;
  height: 5rem;
}
@media screen and (min-width: 768px) {
  .p-front-voice__others-image .image {
    width: 7.5rem;
    height: 7.5rem;
  }
}
.p-front-voice__others-image .image:not(:first-child) {
  margin-left: -1.125rem;
}
@media screen and (min-width: 768px) {
  .p-front-voice__others-image .image:not(:first-child) {
    margin-left: 0;
  }
}

.p-front-voice__button.-others {
  font-size: 0.625rem;
  line-height: 1.6;
  bottom: 1.5625rem;
  right: 0.9375rem;
  width: 5rem;
  height: 5rem;
}
@media screen and (min-width: 768px) {
  .p-front-voice__button.-others {
    font-size: 0.75rem;
    bottom: 2.3125rem;
    right: 1.5625rem;
    width: 5.9375rem;
    height: 5.9375rem;
  }
}

/*=============================
TEACHER
=============================*/
.p-front-teacher {
  padding-block: 3.75rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-front-teacher {
    padding-block: 6.25rem;
  }
}

.p-front-teacher .p-front-title {
  padding-right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-front-teacher .p-front-title {
    padding-right: 0;
  }
}
.p-front-teacher .p-front-title .sub-title {
  margin-top: 0;
}
.p-front-teacher .p-front-title .icon {
  aspect-ratio: 34/40;
  width: 1.5rem;
  height: auto;
  background-image: url("../images/icons/icon-teacher.svg");
}
@media screen and (min-width: 768px) {
  .p-front-teacher .p-front-title .icon {
    width: 2.125rem;
  }
}

.p-front-teacher__inner {
  width: 100%;
  margin: 0 auto;
  padding-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-front-teacher__inner {
    padding-left: 6.25rem;
  }
}
@media screen and (min-width: 1401px) {
  .p-front-teacher__inner {
    padding-left: clamp(6.25rem, -37.616rem + 50.1vw, 22.5rem);
  }
}

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

.p-front-teacher__slide {
  width: 10rem;
  padding-top: 0.625rem;
  padding-right: 0.625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-front-teacher__slide {
    width: 18.125rem;
  }
}
.p-front-teacher__slide:hover .p-front-teacher__image::after,
.p-front-teacher__slide:hover .more {
  opacity: 1;
}
.p-front-teacher__slide:hover .catch {
  color: #fff;
}
.p-front-teacher__slide:hover .text-bg {
  background: var(--main-c);
}
.p-front-teacher__slide:hover .name {
  background-color: var(--main-c);
}
.p-front-teacher__slide .catch {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: bold;
  color: var(--black);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-front-teacher__slide .catch {
    font-size: 1.25rem;
  }
}
.p-front-teacher__slide .text-bg {
  background: var(--border-c);
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  padding: 0.625rem 0.25rem;
  letter-spacing: 0.11em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-front-teacher__slide .name {
  background-color: var(--black);
  font-size: 0.875rem;
  font-weight: 400;
  color: #fff;
  line-height: 1;
  padding-block: 0.375rem;
  padding-inline: 0.5rem;
  position: absolute;
  bottom: 0.9375rem;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-front-teacher__slide .name {
    font-size: 1.5rem;
    padding-block: 0.6875rem 0.625rem;
    padding-inline: 0.625rem;
  }
}
.p-front-teacher__slide .more {
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-front-teacher__slide .triangle {
  width: 0.75rem;
  height: 1rem;
  background: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  display: inline-block;
}

.p-front-teacher__image {
  border-radius: 0.625rem;
  overflow: hidden;
  position: relative;
}
.p-front-teacher__image::after {
  content: "";
  display: inline-block;
  opacity: 0;
  background-color: rgba(58, 51, 48, 0.5);
  backdrop-filter: blur(0.375rem);
  width: 100%;
  height: 100%;
  pointer-events: none;
  position: absolute;
  inset: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.p-front-teacher__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.625rem;
  margin-top: 0.9375rem;
  padding-right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-front-teacher__bottom {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
    margin-top: 1.875rem;
    padding-right: 4.375rem;
  }
}

.p-front-teacher__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}

.p-front-teacher__prev,
.p-front-teacher__next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: solid 0.0625rem var(--main-c);
  border-radius: 50%;
  width: 2.75rem;
  height: 2.75rem;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-front-teacher__prev:hover,
.p-front-teacher__next:hover {
  border: solid 0.0625rem #fff;
  background-color: var(--main-c);
}
.p-front-teacher__prev:hover .arrow,
.p-front-teacher__next:hover .arrow {
  color: #fff;
}
.p-front-teacher__prev .arrow,
.p-front-teacher__next .arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  color: var(--main-c);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-front-teacher__prev .arrow svg,
.p-front-teacher__next .arrow svg {
  width: 100%;
  height: 100%;
}

.p-front-teacher__prev .arrow {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.p-front-teacher__pagination {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 0.0625rem !important;
  background: var(--border-c);
  margin-left: 0.625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-front-teacher__pagination {
    width: 15.625rem !important;
  }
}
.p-front-teacher__pagination .swiper-pagination-progressbar-fill {
  background: var(--main-c);
}

.p-front-teacher .c-button {
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .p-front-teacher .c-button {
    margin-left: unset;
  }
}

/*=============================
AFTER GRADUATION
=============================*/
.p-front-after-graduation {
  padding-block: 3.75rem;
  background-color: rgba(214, 50, 21, 0.25);
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-front-after-graduation {
    padding-block: 6.25rem 11.25rem;
  }
}

.p-front-after-graduation__title {
  font-size: 4.375rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  letter-spacing: 8%;
  position: absolute;
  top: 0;
  left: -0.75rem;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-front-after-graduation__title {
    display: block;
    font-size: 8.125rem;
    left: -1.25rem;
  }
}

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

.p-front-after-graduation__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-front-after-graduation__content {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 2.6875rem;
  }
}

.p-front-after-graduation__sub-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  font-size: 1.625rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-front-after-graduation__sub-title {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    letter-spacing: 0.11em;
  }
}
.p-front-after-graduation__sub-title .icon {
  display: block;
  aspect-ratio: 27/40;
  width: 1.1875rem;
  height: auto;
  background-image: url("../images/icons/icon-graduation.svg");
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .p-front-after-graduation__sub-title .icon {
    width: 1.6875rem;
  }
}

.p-front-after-graduation__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.375rem;
}
@media screen and (min-width: 768px) {
  .p-front-after-graduation__list {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    gap: 2.1875rem;
  }
}

.p-front-after-graduation__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: var(--base-c);
  border-radius: 0.9375rem;
  padding-inline: 1.5625rem;
  padding-bottom: 2.5rem;
  max-width: 40.625rem;
}
.p-front-after-graduation__item .title {
  width: 92%;
  max-width: 20rem;
  background-color: #fff;
  border-radius: 0 0 2.5rem 2.5rem;
  font-size: 1.125rem;
  text-align: center;
  line-height: 1.6;
  margin: 0 auto;
  padding-block: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-front-after-graduation__item .title {
    font-size: 1.375rem;
  }
}
.p-front-after-graduation__item .image-wrap {
  aspect-ratio: 350/262;
  width: 100%;
  height: auto;
  margin-top: 0.9375rem;
}
.p-front-after-graduation__item .image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-front-after-graduation__item .text-wrap {
    padding-inline: 0.625rem;
  }
}
.p-front-after-graduation__item .lead {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.6;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-front-after-graduation__item .lead {
    font-size: 1.25rem;
    margin-top: 1.5625rem;
  }
}
.p-front-after-graduation__item .text {
  font-weight: 500;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-front-after-graduation__item .text {
    margin-top: 1.25rem;
  }
}
.p-front-after-graduation__item .underline {
  font-weight: bold;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(73%, transparent), color-stop(73%, rgba(214, 50, 21, 0.5)), color-stop(95%, rgba(214, 50, 21, 0.5)), color-stop(95%, transparent), to(transparent));
  background: linear-gradient(180deg, transparent 0%, transparent 73%, rgba(214, 50, 21, 0.5) 73%, rgba(214, 50, 21, 0.5) 95%, transparent 95%, transparent 100%);
}

.p-front-after-graduation__list-wrap .c-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1.25rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-front-after-graduation__list-wrap .c-button {
    margin-top: 1.875rem;
  }
}

/*=============================
MOVIE
=============================*/
.p-front-movie {
  background-color: #fff;
  padding-block: 3.75rem;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-front-movie {
    padding-block: 6.25rem;
    border-radius: 0 4.375rem 0 0;
    margin-top: -6.5625rem;
  }
}

.p-front-movie__inner {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  position: relative;
}

.p-front-movie .p-front-title {
  text-align: center;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-front-movie .p-front-title {
    text-align: left;
    padding-inline: 0;
  }
}
.p-front-movie .p-front-title .sub-title {
  width: 100%;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .p-front-movie .p-front-title .sub-title {
    width: auto;
  }
}
.p-front-movie .p-front-title .icon {
  aspect-ratio: 1/1;
  width: 1.5rem;
  height: auto;
  background-image: url("../images/icons/icon-movie.svg");
}
@media screen and (min-width: 768px) {
  .p-front-movie .p-front-title .icon {
    width: 1.9375rem;
  }
}
@media screen and (min-width: 576px) {
  .p-front-movie .p-front-title .sub-text {
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) {
  .p-front-movie .p-front-title .sub-text {
    margin-inline: unset;
  }
}

.p-front-movie__container {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-front-movie__container {
    margin-top: 2.8125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-front-movie__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.125rem;
  }
}

.p-front-movie__item {
  width: 14.0625rem;
  border-radius: 0.625rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-front-movie__item {
    width: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.p-front-movie__link {
  display: block;
  isolation: isolate;
  position: relative;
  z-index: 0;
}
.p-front-movie__link:hover::after {
  opacity: 1;
}
.p-front-movie__link:hover .play-button {
  color: var(--main-c);
}
.p-front-movie__link::after {
  content: "";
  display: inline-block;
  opacity: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  mix-blend-mode: multiply;
  position: absolute;
  inset: 0;
  pointer-events: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-front-movie__link .thumbnail {
  aspect-ratio: 9/16;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-front-movie__link .play-button {
  display: block;
  color: var(--black);
  width: 4.375rem;
  height: 4.375rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-front-movie__link .play-button svg {
  width: 100%;
  height: 100%;
}

.p-front-movie .c-button {
  margin-top: 1.25rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-front-movie .c-button {
    margin-top: 1.875rem;
    margin-inline: auto 0;
  }
}

.movie-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.movie-modal.is-active {
  display: block;
}

.movie-modal__bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}

.movie-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(90vw, 47.8125dvh);
  height: min(85dvh, 160vw);
  aspect-ratio: 9/16;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .movie-modal__content {
    width: auto;
    height: 80dvh;
  }
}

.movie-modal__content iframe {
  width: 100%;
  height: 100%;
}

.movie-modal__close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  font-size: 1.75rem;
  color: #fff;
  background: none;
  border: 0;
  cursor: pointer;
}

/*=============================
GIFT
=============================*/
.p-front-gift {
  background-color: var(--black);
  padding-block: 3.75rem;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-front-gift {
    padding-block: 6.25rem;
  }
}
.p-front-gift::before {
  content: "";
  display: inline-block;
  aspect-ratio: 1400/1601;
  width: 103%;
  max-width: 43.75rem;
  height: auto;
  background-image: url("../images/front/deco-logo.webp");
  background-size: cover;
  position: absolute;
  top: 1.5625rem;
  right: -44%;
}
@media screen and (min-width: 768px) {
  .p-front-gift::before {
    width: 37%;
    top: 5rem;
    right: 3.75rem;
  }
}

.p-front-gift__text {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-front-gift__text {
    font-size: 1.625rem;
    text-align: center;
  }
}

.p-front-gift__text .underline {
  position: relative;
}
.p-front-gift__text .underline::before {
  content: "";
  display: inline-block;
  width: 92%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(82%, transparent), color-stop(82%, var(--main-c)), to(var(--main-c)));
  background: linear-gradient(180deg, transparent 0%, transparent 82%, var(--main-c) 82%, var(--main-c) 100%);
  position: absolute;
  bottom: 0.1875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}

.p-front-gift__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
  border-radius: 1.25rem;
  overflow: hidden;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-front-gift__card {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    margin-top: 5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-front-gift__image {
    width: 30rem;
  }
}
.p-front-gift__image .image {
  aspect-ratio: 335/251;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-front-gift__image .image {
    aspect-ratio: 480/456;
  }
}

.p-front-gift__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-front-gift__content {
    padding: 3.125rem 4.375rem;
  }
}
.p-front-gift__content .title {
  font-size: 1.5rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-front-gift__content .title {
    font-size: 2.25rem;
  }
}
.p-front-gift__content .sub-title {
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-front-gift__content .sub-title {
    line-height: 1.8;
    margin-top: 0.3125rem;
  }
}
.p-front-gift__content .text {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 5%;
  margin-top: 0.9375rem;
}

.p-front-gift .c-button {
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 1.25rem;
  margin-inline: auto;
  width: 11.25rem;
  padding: 0.75rem 0.875rem 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-front-gift .c-button {
    margin-top: 1.875rem;
    margin-inline: unset;
    width: 15.625rem;
    padding: 1.3125rem 1.25rem 1.25rem;
  }
}

/*=============================
FEATURES
=============================*/
.p-front-features {
  position: relative;
}
@media screen and (min-width: 1024px) {
  .p-front-features {
    height: 800vh;
  }
}

.p-front-features__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
  width: 90%;
  padding-block: 2.5rem 1.5625rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-front-features__inner {
    padding-block: 6.25rem 2.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-front-features__inner {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    gap: 7.875rem;
    width: 100%;
    height: 100dvh;
    min-height: 680px;
    position: sticky;
    top: 0;
    overflow: hidden;
    padding-block: 8.125rem;
  }
}
@media screen and (min-width: 1401px) {
  .p-front-features__inner {
    min-height: 61.25rem;
  }
}

.p-front-features .p-front-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-right: auto;
}
@media screen and (min-width: 1024px) {
  .p-front-features .p-front-title {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    gap: 1.25rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: -5rem;
    margin-right: unset;
  }
}
@media screen and (min-width: 1770px) {
  .p-front-features .p-front-title {
    width: 24%;
  }
}
.p-front-features .p-front-title .title {
  font-size: 3.75rem;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-front-features .p-front-title .title {
    font-size: 6rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-front-features .p-front-title .title {
    font-size: 8.4375rem;
    letter-spacing: 0.08em;
    line-height: 1;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
  }
}
.p-front-features .p-front-title .sub-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0.5rem;
  line-height: 1.4;
}
@media screen and (min-width: 1024px) {
  .p-front-features .p-front-title .sub-title {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.75rem;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    letter-spacing: 0.11em;
    margin-top: 0;
  }
}
.p-front-features .p-front-title .icon {
  aspect-ratio: 1/1;
  width: 1.5rem;
  height: auto;
  background-image: url("../images/icons/icon-features.svg");
  margin-top: 0.15em;
}
@media screen and (min-width: 768px) {
  .p-front-features .p-front-title .icon {
    width: 2rem;
  }
}

.p-front-features__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media screen and (min-width: 768px) {
  .p-front-features__content {
    overflow: hidden;
  }
}

.p-front-features__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5625rem;
}
@media screen and (min-width: 1024px) {
  .p-front-features__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 5.5rem;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
@media screen and (max-width: 767px) {
  .p-front-features__list {
    -webkit-transform: none !important;
            transform: none !important;
  }
}

.p-front-features__item {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .p-front-features__item {
    width: 65.75rem;
    padding-right: 0.75rem;
  }
}
.p-front-features__item .image-wrap {
  aspect-ratio: 335/188;
  width: 100%;
  height: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-front-features__item .image-wrap {
    aspect-ratio: 1040/400;
  }
}
@media screen and (min-width: 1024px) {
  .p-front-features__item .image-wrap {
    height: 41dvh;
    max-height: 400px;
  }
}
.p-front-features__item .image-wrap::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: var(--base-c);
  position: absolute;
  top: 0.75rem;
  right: -0.75rem;
  z-index: -1;
}
.p-front-features__item .image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-front-features__item .num {
  font-size: 3.125rem;
  font-weight: 300;
  line-height: 1;
  position: absolute;
  bottom: -1.875rem;
  left: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-front-features__item .num {
    font-size: 5rem;
    bottom: -3.125rem;
    left: 3.125rem;
  }
}
.p-front-features__item .text-wrap {
  padding: 2.1875rem 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-front-features__item .text-wrap {
    padding: 3.75rem 3.125rem;
  }
}
.p-front-features__item .title {
  font-size: 1.5rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-front-features__item .title {
    font-size: 1.75rem;
  }
}
.p-front-features__item .text {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-front-features__item .text {
    font-size: 1.125rem;
  }
}

.p-front-features__progress {
  display: none;
}
@media screen and (min-width: 1024px) {
  .p-front-features__progress {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.9375rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 1.25rem;
    margin-left: 47.1875rem;
  }
}

.p-front-features__progress .bar {
  display: block;
  width: 3.75rem;
  height: 0.125rem;
  background: var(--border-c);
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.p-front-features__progress .bar.is-active {
  background: var(--main-c);
}

/*=============================
COMPARISON
=============================*/
.p-front-comparison {
  background-color: var(--base-c);
  padding-block: 2.5rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-front-comparison {
    padding-block: 5rem;
  }
}

.p-front-comparison__inner {
  max-width: 75rem;
  margin: 0 auto;
}

.p-front-comparison .p-front-title {
  position: relative;
}
.p-front-comparison .p-front-title .title {
  text-align: center;
  color: #fff;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-front-comparison .p-front-title .sub-title {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin-top: 0;
}
.p-front-comparison .p-front-title .icon {
  aspect-ratio: 49/35;
  width: 2.25rem;
  height: auto;
  background-image: url("../images/icons/icon-comparison.svg");
}
@media screen and (min-width: 768px) {
  .p-front-comparison .p-front-title .icon {
    width: 3.0625rem;
  }
}

.p-front-comparison__table {
  width: 90%;
  margin-top: 1.25rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-front-comparison__table {
    width: 100%;
    margin-top: 2.5rem;
  }
}
.p-front-comparison__table .col-01 {
  width: 11.28%;
}
@media screen and (min-width: 768px) {
  .p-front-comparison__table .col-01 {
    width: 9.375rem;
  }
}
.p-front-comparison__table .col-02 {
  width: 32.62%;
}
@media screen and (min-width: 768px) {
  .p-front-comparison__table .col-02 {
    width: 23.125rem;
  }
}
.p-front-comparison__table .col-03,
.p-front-comparison__table .col-04 {
  width: 28.05%;
}
@media screen and (min-width: 768px) {
  .p-front-comparison__table .col-03,
  .p-front-comparison__table .col-04 {
    width: 21.25rem;
  }
}
.p-front-comparison__table thead {
  height: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-front-comparison__table thead {
    height: 5.625rem;
  }
}
.p-front-comparison__table thead tr th {
  border-bottom: none;
}
.p-front-comparison__table th,
.p-front-comparison__table td {
  font-family: "Google Sans Flex", "Zen Kaku Gothic New", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
}
.p-front-comparison__table th {
  background-color: #E6E6E6;
  font-size: 0.6875rem;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .p-front-comparison__table th {
    font-size: 1rem;
  }
}
.p-front-comparison__table th.blank {
  background-color: transparent;
}
.p-front-comparison__table th.-msa {
  background-color: var(--main-c);
  vertical-align: middle;
  padding-inline: 1.125rem;
}
.p-front-comparison__table th.-msa .logo {
  width: 4.4375rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-front-comparison__table th.-msa .logo {
    width: 20.625rem;
  }
}
.p-front-comparison__table .th-bg {
  background-color: transparent;
  vertical-align: bottom;
}
.p-front-comparison__table .th-bg span {
  display: block;
  padding-block: 0.6875rem;
  font-size: 0.6875rem;
  font-weight: bold;
  background-color: #E6E6E6;
}
@media screen and (min-width: 768px) {
  .p-front-comparison__table .th-bg span {
    padding-block: 1.0625rem;
    font-size: 1.125rem;
  }
}
.p-front-comparison__table .th-bg .line {
  width: calc(100% + 0.0625rem);
  position: relative;
  z-index: 1;
  border-right: solid 0.0625rem var(--border-c);
}
.p-front-comparison__table td {
  background-color: #fff;
  padding: 0.5rem 0.4375rem;
  font-size: clamp(0.5rem, 0.38rem + 0.51vw, 0.625rem);
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
  border-bottom: solid 0.0625rem var(--border-c);
}
@media screen and (min-width: 768px) {
  .p-front-comparison__table td {
    padding: 1rem 1.5625rem;
    font-size: 1rem;
    text-align: left;
  }
}
.p-front-comparison__table td.-msa {
  background-color: rgba(214, 50, 21, 0.15);
  border-bottom: solid 0.0625rem #fff;
}
@media screen and (min-width: 768px) {
  .p-front-comparison__table td.-msa {
    font-weight: bold;
  }
}
.p-front-comparison__table tr th {
  border-bottom: solid 0.0625rem var(--border-c);
}
.p-front-comparison__table tr th:first-child {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media screen and (min-width: 768px) {
  .p-front-comparison__table tr th:first-child {
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
  }
}
.p-front-comparison__table tr td:nth-child(3) {
  border-right: solid 0.0625rem var(--border-c);
}
.p-front-comparison__table tr:last-child th,
.p-front-comparison__table tr:last-child td {
  border-bottom: none;
}
.p-front-comparison__table .td-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .p-front-comparison__table .td-wrap {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    gap: 1.0625rem;
  }
}
.p-front-comparison__table .text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-front-comparison__table .mark {
  display: block;
  width: 2.1875rem;
  height: 2.1875rem;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .p-front-comparison__table .mark {
    width: 2.75rem;
    height: 2.75rem;
  }
}
.p-front-comparison__table .mark.-double {
  background-image: url("../images/icons/icon-double-circle.svg");
}
.p-front-comparison__table .mark.-circle {
  background-image: url("../images/icons/icon-circle.svg");
}
.p-front-comparison__table .mark.-triangle {
  background-image: url("../images/icons/icon-triangle.svg");
}

.p-front-comparison__summary {
  font-size: 1.375rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.6;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1.25rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-front-comparison__summary {
    font-size: 1.75rem;
    margin-top: 3.4375rem;
  }
}

/*=============================
BLOG
=============================*/
.p-front-blog {
  padding-block: 3.75rem 3.4375rem;
}
@media screen and (min-width: 768px) {
  .p-front-blog {
    padding-block: 6.25rem;
  }
}

.p-front-blog__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-front-blog__head .bubble {
  padding: 1.125rem 1.4375rem;
  -webkit-filter: drop-shadow(0 0.125rem 0.375rem rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0 0.125rem 0.375rem rgba(0, 0, 0, 0.25));
  background-color: var(--base-c);
  border-radius: 3.125rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  position: relative;
  margin-top: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-front-blog__head .bubble {
    padding: 1.5rem 4.25rem;
    background-color: #fff;
    font-size: 1.125rem;
    line-height: 1.75;
    margin-top: 0;
  }
}
.p-front-blog__head .bubble::before {
  content: "";
  display: inline-block;
  width: 0.75rem;
  height: 1.875rem;
  background-color: var(--base-c);
  clip-path: polygon(0 0, 0 100%, 100% 0);
  display: inline-block;
  position: absolute;
  bottom: -1.8125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .p-front-blog__head .bubble::before {
    background-color: #fff;
  }
}
.p-front-blog__head .bubble .br-sp {
  display: block;
}
@media screen and (min-width: 640px) {
  .p-front-blog__head .bubble .br-sp {
    display: none;
  }
}

.p-front-blog .p-front-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-front-blog .p-front-title {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 1.875rem;
  }
}
.p-front-blog .p-front-title .sub-title {
  margin-block: 0 0.3125rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-front-blog .p-front-title .sub-title {
    line-height: 1.8;
  }
}
.p-front-blog .p-front-title .icon {
  aspect-ratio: 42/32;
  width: 1.9375rem;
  height: auto;
  background-image: url("../images/icons/icon-blog.svg");
}
@media screen and (min-width: 768px) {
  .p-front-blog .p-front-title .icon {
    width: 2.625rem;
  }
}

.p-front-blog__container {
  margin-top: 2.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-front-blog__container {
    margin-top: 2.75rem;
  }
}

.p-front-blog__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.1875rem;
  position: relative;
}
@media screen and (min-width: 640px) {
  .p-front-blog__content {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    gap: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .p-front-blog__content {
    gap: 2.1875rem;
  }
}

.p-front-blog__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}
.p-front-blog__item:hover .image-wrap img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.p-front-blog__item .image-wrap {
  border-radius: 0 0 1.25rem 0;
  overflow: hidden;
  aspect-ratio: 335/251;
}
@media screen and (min-width: 768px) {
  .p-front-blog__item .image-wrap {
    border-radius: 1.25rem;
    aspect-ratio: 470/294;
  }
}
.p-front-blog__item .image-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-front-blog__item .title {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 0.9375rem;
}
.p-front-blog__item .c-meta {
  margin-top: 0.9375rem;
}
.p-front-blog__item .new {
  display: block;
  width: 5rem;
  height: 5rem;
  background-image: url("../images/icons/icon-new.webp");
  background-size: cover;
  position: absolute;
  top: -0.625rem;
  left: -0.625rem;
}
@media screen and (min-width: 640px) {
  .p-front-blog__item .new {
    width: clamp(3.125rem, -0.025rem + 7.87vw, 3.75rem);
    height: clamp(3.125rem, -0.025rem + 7.87vw, 3.75rem);
  }
}
@media screen and (min-width: 768px) {
  .p-front-blog__item .new {
    width: 3.75rem;
    height: 3.75rem;
    top: -0.5625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-front-blog__item:first-child {
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
    width: 29.375rem;
  }
}
.p-front-blog__item:first-child .title {
  font-size: 1rem;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-front-blog__item:first-child .title {
    font-size: 1.25rem;
    margin-top: 1.25rem;
  }
}
.p-front-blog__item:first-child .c-meta {
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-front-blog__item:first-child .c-meta {
    margin-top: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .p-front-blog__item:first-child .new {
    width: 6rem;
    height: 6rem;
    left: -0.9375rem;
    z-index: 10;
  }
}

.p-front-blog .c-button {
  position: relative;
  margin-top: 1.5625rem;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .p-front-blog .c-button {
    position: absolute;
    bottom: 0;
    right: 0;
    margin-top: 0;
    margin-left: unset;
  }
}

/*=============================
Q&A
=============================*/
.p-front-qa {
  background-color: rgba(214, 50, 21, 0.25);
  border-radius: 0 2.1875rem 0 0;
  padding-block: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-front-qa {
    border-radius: 0 4.6875rem 0 0;
    padding-block: 6.25rem;
  }
}

.p-front-qa .p-front-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-front-qa .p-front-title {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    width: 4.0625rem;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    text-orientation: upright;
  }
}
.p-front-qa .p-front-title .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-front-qa .p-front-title .title {
    letter-spacing: -0.35em;
    margin-top: -1.125rem;
  }
}
.p-front-qa .p-front-title .sub-title {
  margin-top: 0.8125rem;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .p-front-qa .p-front-title .sub-title {
    margin-top: 2.1875rem;
    letter-spacing: 0.11em;
  }
}
.p-front-qa .p-front-title .icon {
  aspect-ratio: 35/32;
  width: 1.6875rem;
  height: auto;
  background-image: url("../images/icons/icon-qa.svg");
}
@media screen and (min-width: 768px) {
  .p-front-qa .p-front-title .icon {
    width: 2.1875rem;
  }
}

.p-front-qa__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-front-qa__content {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
    gap: 3.125rem;
    padding-right: 4.375rem;
  }
}

.p-front-qa__list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}

.p-front-qa .c-button {
  margin-top: 1.875rem;
  margin-inline: auto 0;
}
@media screen and (min-width: 768px) {
  .p-front-qa .c-button {
    margin-inline: auto 4.375rem;
  }
}

/*=============================
ACCESS
=============================*/
.p-front-access .p-front-title .title {
  letter-spacing: 0;
}

.p-front-access__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-front-access__inner {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
  }
}

.p-front-access__map,
.p-front-access__content {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-front-access__map,
  .p-front-access__content {
    width: 50%;
  }
}

.p-front-access__map {
  aspect-ratio: 375/325;
}
@media screen and (min-width: 768px) {
  .p-front-access__map {
    aspect-ratio: unset;
  }
}
.p-front-access__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-front-access__content {
  background-image: url("../images/front/access-bg.webp");
  background-size: cover;
  background-position: center;
  padding: 2.5rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-front-access__content {
    padding: 5rem 6.25rem;
  }
}
.p-front-access__content .address {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-front-access__content .address {
    font-size: 1.125rem;
    margin-top: 1.25rem;
  }
}
.p-front-access__content .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-front-access__content .list {
    gap: 1.5625rem;
    margin-top: 1.875rem;
  }
}
.p-front-access__content .item {
  font-size: 1rem;
  font-weight: 500;
}
.p-front-access__content .station {
  display: inline-block;
  background-color: var(--main-c);
  color: #fff;
  padding: 0 0.75rem 0.0625rem;
}
.p-front-access__content .text {
  margin-top: 0.3125rem;
}

.p-front-access .p-front-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 1.25rem;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .p-front-access .p-front-title {
    gap: 1.5625rem;
  }
}

.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: 7.5rem;
    height: calc(100vh - 7.5rem);
    padding: 2rem 1rem 0;
    width: 25%;
    border-right: 0.0625rem solid var(--lightgrey);
  }
}
.p-documentation-sidebar .title:not(:first-child) {
  border-top: solid 0.0625rem var(--lightgrey);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}
.p-documentation-sidebar ul li {
  margin-top: 1rem;
}
.p-documentation-sidebar ul li button {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.p-documentation-sidebar ul li button::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 0.125rem;
  background: var(--main-c);
  bottom: -0.25rem;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform-origin: center top;
          transform-origin: center top;
}
.p-documentation-sidebar ul li button:hover::after {
  -webkit-transform: scale(1, 1);
          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: 7.5rem;
}
.p-documentation-stack > * {
  margin-top: 1rem;
}

.p-documentation-navigation .nav-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(6.25rem, 1fr));
}
.p-documentation-navigation .nav-item {
  text-align: center;
  padding: 1rem 0;
}
.p-documentation-navigation .nav-item:not(:last-child) {
  border-right: solid 0.0625rem var(--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;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform-origin: right top;
          transform-origin: right top;
}
.p-documentation-navigation .link:hover::after {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          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%;
  -o-object-fit: cover;
     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%;
  -webkit-transform: translate(-50%, -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: -webkit-fit-content;
  width: -moz-fit-content;
  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;
  -webkit-transition: 0.3s;
  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;
  -webkit-transition: 0.3s;
  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;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.p-documentation-page.-sass .underline--left-to-right:hover::after {
  -webkit-transform: scale(1, 1);
          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;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform-origin: right top;
          transform-origin: right top;
}
.p-documentation-page.-sass .underline--right-to-left:hover::after {
  -webkit-transform: scale(1, 1);
          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;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform-origin: right top;
          transform-origin: right top;
}
.p-documentation-page.-sass .underline--left-in-right:hover::after {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          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;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.p-documentation-page.-sass .underline--right-in-left:hover::after {
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transform: scale(1, 1);
          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;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform-origin: center top;
          transform-origin: center top;
}
.p-documentation-page.-sass .underline--center:hover::after {
  -webkit-transform: scale(1, 1);
          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;
  -moz-appearance: button;
       appearance: button;
  -webkit-box-sizing: border-box;
          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-content .l-inner {
  width: 100%;
  padding-inline: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-contact-content .l-inner {
    padding-inline: 0;
  }
}

.p-contact-content__form {
  margin-block: 1rem 5rem;
  margin-inline: auto;
  background-color: var(--base-c);
  border-radius: 0.625rem;
  padding: 1.5625rem 1rem;
}
@media screen and (min-width: 768px) {
  .p-contact-content__form {
    margin-block: 1rem 8.75rem;
    border-radius: 1.25rem;
    padding: 4rem 6.25rem 5rem;
  }
}
.p-contact-content__form .wpcf7-spinner {
  display: none !important;
}
.p-contact-content__form .wpcf7-form-control-wrap {
  width: 100%;
}
.p-contact-content__form .wpcf7-not-valid-tip {
  color: var(--main-c);
}
.p-contact-content__form .wpcf7-list-item,
.p-contact-content__form .wpcf7-list-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  margin-left: 0;
}
.p-contact-content__form .wpcf7-list-item-label {
  font-weight: 500;
}
.p-contact-content__form .form-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 0.9375rem;
     -moz-column-gap: 0.9375rem;
          column-gap: 0.9375rem;
  row-gap: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-contact-content__form .form-checkbox.-type {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
  }
}
.p-contact-content__form input[type=checkbox] {
  width: 1.25rem !important;
  height: 1.25rem;
  border: solid 0.0625rem var(--border-c);
  border-radius: 0.3125rem;
  background-color: #fff;
  padding: 0;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  margin: 0;
}
.p-contact-content__form input[type=checkbox]:checked:before {
  position: absolute;
  top: 46%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(50deg);
          transform: translate(-50%, -50%) rotate(50deg);
  width: 0.375rem;
  height: 0.75rem;
  border-right: solid 0.125rem var(--main-c);
  border-bottom: solid 0.125rem var(--main-c);
  content: "";
}
.p-contact-content__form .choices__inner {
  padding: 0.4375rem 0.9375rem !important;
  border-radius: 0.3125rem;
  border: solid 0.0625rem var(--border-c);
  background-color: #fff;
  min-height: 2.5625rem;
}
@media screen and (min-width: 768px) {
  .p-contact-content__form .choices__inner {
    padding: 1.0625rem 1.25rem !important;
  }
}
.p-contact-content__form .choices__placeholder {
  font-size: 0.875rem;
  font-weight: bold;
  color: var(--border-c);
  opacity: 1;
}
.p-contact-content__form .choices__inner .choices__item:not(.choices__placeholder) {
  color: #000;
  font-weight: 500;
}
.p-contact-content__form .choices__list--single {
  padding: 0;
}
.p-contact-content__form .choices[data-type*=select-one]::after {
  width: 0.375rem;
  height: 0.375rem;
  border-style: unset;
  border-color: unset;
  border-width: unset;
  border-right: solid 0.0625rem var(--border-c);
  border-bottom: solid 0.0625rem var(--border-c);
  margin-top: 0;
  top: 1rem;
  right: 0.9375rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (min-width: 768px) {
  .p-contact-content__form .choices[data-type*=select-one]::after {
    width: 0.6875rem;
    height: 0.6875rem;
    top: 1.375rem;
    right: 1.875rem;
  }
}
.p-contact-content__form .choices__list--dropdown .choices__item {
  padding: 0.375rem 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  color: var(--black);
}
.p-contact-content__form .choices__list--dropdown .choices__item--selectable.is-highlighted {
  background-color: #4800FF;
  color: #fff;
}
.p-contact-content__form .form-title {
  text-align: center;
  font-weight: normal;
  font-size: 2em;
}
.p-contact-content__form .form-text {
  text-align: center;
}
.p-contact-content__form .form-content {
  margin-top: 1rem;
}
.p-contact-content__form .form-item {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-contact-content__form .form-item {
    row-gap: 0.625rem;
  }
}
.p-contact-content__form .form-item input:not(.wpcf7-list-item input),
.p-contact-content__form .form-item textarea {
  outline: none;
  padding: 0.4375rem 0.9375rem;
  border: 0.0625rem solid var(--border-c);
  border-radius: 0.3125rem;
  width: 100%;
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media screen and (min-width: 768px) {
  .p-contact-content__form .form-item input:not(.wpcf7-list-item input),
  .p-contact-content__form .form-item textarea {
    padding: 1.0625rem 1.25rem;
  }
}
.p-contact-content__form .form-item input:not(.wpcf7-list-item input):focus {
  outline: none;
  border: solid 0.0625rem var(--main-c);
}
.p-contact-content__form .form-item input::-webkit-input-placeholder {
  font-weight: bold;
  color: var(--border-c);
}
.p-contact-content__form .form-item input::-moz-placeholder {
  font-weight: bold;
  color: var(--border-c);
}
.p-contact-content__form .form-item input:-ms-input-placeholder {
  font-weight: bold;
  color: var(--border-c);
}
.p-contact-content__form .form-item input::-ms-input-placeholder {
  font-weight: bold;
  color: var(--border-c);
}
.p-contact-content__form .form-item input::placeholder {
  font-weight: bold;
  color: var(--border-c);
}
.p-contact-content__form .form-item textarea {
  height: 14.375rem;
}
.p-contact-content__form .form-item + .form-item {
  margin-top: 1.875rem;
}
.p-contact-content__form .zip-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-contact-content__form .zip-area {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-contact-content__form .zip-area .wpcf7-form-control-wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-contact-content__form .zip-area input {
  width: 16.875rem !important;
}
.p-contact-content__form .zip-search-button {
  width: 6.5rem;
  height: 2.8125rem;
  background-color: var(--border-c);
  border: solid 0.0625rem var(--border-c);
  border-radius: 0.3125rem;
  font-size: 0.875rem;
  font-weight: bold;
  color: var(--black);
  letter-spacing: 0.05em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-contact-content__form .zip-search-button:hover {
  background-color: #fff;
}
.p-contact-content__form .form-explanation {
  font-weight: 500;
  margin-top: 1.25rem;
}
.p-contact-content__form .form-explanation .link {
  color: var(--main-c);
  text-decoration: underline;
}
.p-contact-content__form .form-policy {
  font-weight: 500;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-contact-content__form .form-policy {
    margin-top: 1rem;
  }
}
.p-contact-content__form .label {
  font-size: 1rem;
  font-weight: bold;
}
.p-contact-content__form .label.-caution:after {
  content: "*";
  color: var(--main-c);
  margin-left: 0.3125rem;
}
.p-contact-content__form .submit-wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin-top: 1.875rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-contact-content__form .submit-wrap {
    margin-top: 3rem;
  }
}
.p-contact-content__form .submit-wrap:hover .c-arrow {
  background-image: url("../images/icons/button-icon-arrow-right-org.svg");
}
.p-contact-content__form .submit-wrap .wpcf7-submit:disabled {
  opacity: 0.6;
}
.p-contact-content__form .submit-wrap:has(.wpcf7-submit:disabled) {
  pointer-events: none;
}
.p-contact-content__form .submit-wrap:has(.wpcf7-submit:disabled) .c-arrow {
  opacity: 0.6;
  background-image: url("../images/icons/button-icon-arrow-right-wht.svg");
}
.p-contact-content__form .submit-wrap:not(:has(.wpcf7-submit:disabled)):hover .c-arrow {
  background-image: url("../images/icons/button-icon-arrow-right-org.svg");
}
.p-contact-content__form .submit-wrap .c-arrow {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url("../images/icons/button-icon-arrow-right-wht.svg");
  background-size: cover;
  position: absolute;
  top: 50%;
  right: 0.75rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .p-contact-content__form .submit-wrap .c-arrow {
    right: 1.25rem;
  }
}
.p-contact-content__form .wpcf7-response-output {
  display: none;
}

.p-thanks-content .c-title-h3 {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-thanks-content .c-title-h3 {
    margin-top: 3rem;
  }
}
.p-thanks-content .c-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-block: 3.125rem 5.625rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-thanks-content .c-button {
    margin-block: 5rem 9rem;
  }
}
.p-thanks-content .c-button .icon {
  position: absolute;
  top: 50%;
  left: 1.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-thanks__content-text {
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 1.875rem;
}
@media screen and (min-width: 690px) {
  .p-thanks__content-text {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .p-thanks__content-text {
    font-size: 1.125rem;
    margin-top: 3rem;
  }
}

.grecaptcha-badge {
  bottom: 4.375rem !important;
}
@media screen and (min-width: 768px) {
  .grecaptcha-badge {
    bottom: 1.25rem !important;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.u-f-en {
  font-family: "Google Sans Flex", sans-serif;
}

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

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

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

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

.u-marker {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(60%, transparent), color-stop(60%, rgba(214, 50, 21, 0.25)), color-stop(85%, rgba(214, 50, 21, 0.25)), color-stop(85%, transparent), to(transparent));
  background: linear-gradient(180deg, transparent 0%, transparent 60%, rgba(214, 50, 21, 0.25) 60%, rgba(214, 50, 21, 0.25) 85%, transparent 85%, transparent 100%);
}
@media screen and (min-width: 768px) {
  .u-marker {
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(60%, transparent), color-stop(60%, rgba(214, 50, 21, 0.25)), to(rgba(214, 50, 21, 0.25)));
    background: linear-gradient(180deg, transparent 0%, transparent 60%, rgba(214, 50, 21, 0.25) 60%, rgba(214, 50, 21, 0.25) 100%);
  }
}

.u-underline {
  text-decoration: underline;
}/*# sourceMappingURL=style.css.map */