@charset "UTF-8";
@font-face {
  font-family: "Geomanist";
  src: url("../font/geomanist-regular-webfont.woff") format("woff");
}
@font-face {
  font-family: "Goldplay";
  src: url("../font/Goldplay-Medium.woff") format("woff");
}
:root {
  --yellow: #ffef00;
  --lightyellow: #f9f2bb;
  --blue: #29C6D5;
  --navy: #053e62;
  --lightblue: #DFF7F9;
  --lightgreen: #dcedd0;
  --red: #fc0000;
  --orange: #e83b18;
  --white: #fff;
  --offwhite: #f9f9f9;
  --black: #1A1A1A;
  --grey: #E2E7EC;
  --darkgrey: #848c8f;
  --lightgrey: #ebf2f6;
  --ivory: #f5f1eb;
  --main-c: var(--blue);
  --base-c: var(--offwhite);
  --accent-c: var(--yellow);
  --bg-c: var(--lightblue);
  --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: 1s;
  transition: 1s;
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

[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: 2px;
  background-color: var(--main-c);
  opacity: 0;
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
  -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] {
  -webkit-clip-path: polygon(0 0, 0 0, 0 0);
  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] {
  -webkit-clip-path: polygon(0 0, 200% 0, 0 200%);
  clip-path: polygon(0 0, 200% 0, 0 200%);
}

[data-aos=fade-up] {
  -webkit-transform: translateY(25px);
          transform: translateY(25px);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 0;
}
[data-aos=fade-up].aos-animate {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  opacity: 1;
}

*,
*::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: 1px dotted;
  cursor: help;
}

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

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

input,
select {
  vertical-align: middle;
}

i {
  font-style: normal;
}

html {
  font-size: 16px;
  text-underline-position: under;
  scroll-behavior: smooth;
  scroll-padding-top: calc(80px);
}
@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: calc(130px);
  }
}

body {
  position: relative;
  font-family: "Shippori Mincho B1", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Sawarabi Mincho", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 400;
  line-height: 1.75;
  width: 100%;
  overflow-x: hidden;
  letter-spacing: 0.02em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: var(--black);
  font-size: 1rem;
}

a {
  color: inherit;
  cursor: pointer;
}

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

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

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

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

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

h5 {
  font-family: "Shippori Mincho B1", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Sawarabi Mincho", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

h1 {
  font-size: 12vw;
}
@media screen and (min-width: 768px) {
  h1 {
    font-size: 5.625rem;
  }
}

h2 {
  font-size: 8vw;
}
@media screen and (min-width: 768px) {
  h2 {
    font-size: 3.75rem;
  }
}

h3 {
  font-size: 6.4vw;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  h3 {
    font-size: 3rem;
  }
}

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

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

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

.l-archive__container {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "contents" "pagenation" "sidebar";
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .l-archive__container {
    display: grid;
    grid-template-areas: "contents sidebar" "pagenation pagenation";
    grid-template-columns: 1fr 20%;
    gap: 6%;
  }
}

.l-archive__list {
  grid-area: contents;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .l-archive__list:not(.-news) {
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 6%;
       -moz-column-gap: 6%;
            column-gap: 6%;
    row-gap: 1rem;
  }
}

.l-archive__item {
  opacity: 0;
  -webkit-transform: translateY(1rem);
          transform: translateY(1rem);
  -webkit-animation: fadeup 0.6s forwards ease-in-out;
          animation: fadeup 0.6s forwards ease-in-out;
  -webkit-animation-delay: calc(var(--i) * 0.3s);
          animation-delay: calc(var(--i) * 0.3s);
}
.l-archive__item .link {
  text-decoration: none;
}
.l-archive__item .link:hover .image-wrapp img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.l-archive__item .head {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.l-archive__item .head .image-wrapp {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.l-archive__item .head .image-wrapp::before {
  content: "";
  float: left;
  padding-top: 75%;
}
.l-archive__item .head .image-wrapp::after {
  content: "";
  display: block;
  clear: both;
}
.l-archive__item .head .image-wrapp > :first-child {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-archive__item .head .image-wrapp img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-archive__item .body {
  padding: 1rem 0;
  position: relative;
}
.l-archive__item .body .data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 1em;
     -moz-column-gap: 1em;
          column-gap: 1em;
  row-gap: 0.5em;
  line-height: 1.7;
  color: var(--darkgrey);
}
.l-archive__item .body .title {
  margin-top: 0.5em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.l-archive__item-text {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1rem;
  border-bottom: 1px solid var(--border-c);
  padding-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .l-archive__item-text {
    grid-template-columns: 23% 1fr;
    padding-bottom: 2rem;
    -webkit-column-gap: 7%;
       -moz-column-gap: 7%;
            column-gap: 7%;
  }
}
.l-archive__item-text::before {
  content: "";
  width: 33%;
  height: 2px;
  background-color: var(--main-c);
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .l-archive__item-text::before {
    width: 23%;
  }
}
.l-archive__item-text .data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.l-archive__item-text .data .date {
  width: 100%;
}
@-webkit-keyframes fadeup {
  from {
    opacity: 0;
    -webkit-transform: translateY(1rem);
            transform: translateY(1rem);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeup {
  from {
    opacity: 0;
    -webkit-transform: translateY(1rem);
            transform: translateY(1rem);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*=============================
カテゴリー絞り込み・検索窓
=============================*/
.l-archive__category {
  grid-area: category;
}
@media screen and (min-width: 768px) {
  .l-archive__category {
    position: sticky;
    top: 130px;
  }
}
.l-archive__category .link {
  text-decoration: none;
  border: solid 1px;
  border-color: transparent;
  border-radius: 2rem;
  color: #B2B2B2;
  background-color: #F1F1F1;
  padding: 5px 1em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-archive__category .link:hover, .l-archive__category .link.is-active {
  border-color: var(--main-c);
  background-color: var(--main-c);
  color: var(--white);
}

.l-archive__category-title {
  position: relative;
  font-family: "Gotham";
  border-bottom: 1px solid var(--border-c);
  padding-bottom: 0.5em;
}
.l-archive__category-title:before {
  content: "";
  width: 5em;
  height: 2px;
  background-color: var(--main-c);
  position: absolute;
  bottom: 0;
  left: 0;
}
.l-archive__category-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.8rem;
}
@media screen and (min-width: 768px) {
  .l-archive__category-list {
    gap: 0.8rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.l-archive__category-item.-search {
  width: 100%;
  border-bottom: 1px solid var(--border-c);
  padding-bottom: 5px;
}
.l-archive__category-item.-search form {
  display: grid;
  grid-template-columns: 1fr -webkit-max-content;
  grid-template-columns: 1fr max-content;
  gap: 5px;
}
.l-archive__category-item.-search input {
  border: none;
}

/*=============================
ページネーション
=============================*/
.l-archive__pagenation {
  grid-area: pagenation;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1rem 0;
}

.l-article__container {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "content" "sidebar" "relation";
  row-gap: 2rem;
}
@media screen and (min-width: 768px) {
  .l-article__container {
    grid-template-areas: "content sidebar" "relation sidebar";
    grid-template-columns: 1fr 20%;
    -webkit-column-gap: 6%;
       -moz-column-gap: 6%;
            column-gap: 6%;
    row-gap: 6rem;
    margin-top: 4rem;
    max-width: 1120px;
    margin-left: auto;
  }
}
@media screen and (min-width: 768px) {
  .l-article__container .l-sidebar {
    margin-top: 1rem;
  }
}

.l-article__main-image + .l-article__container {
  margin-top: 1rem;
}
.l-article__main-image .c-image {
  width: 100%;
}

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

.l-article__title {
  line-height: 1.3;
}

.l-article__content {
  grid-area: content;
}

.l-article__data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 1em;
     -moz-column-gap: 1em;
          column-gap: 1em;
  row-gap: 0.5em;
  line-height: 1.7;
  color: var(--darkgrey);
  margin-top: 1rem;
}

.l-article__relation {
  grid-area: relation;
}

.l-article__relation-title {
  position: relative;
  border-bottom: 1px solid var(--border-c);
  padding-bottom: 0.5em;
}
.l-article__relation-title:before {
  content: "";
  width: 30%;
  height: 2px;
  background-color: var(--main-c);
  position: absolute;
  bottom: 0;
  left: 0;
}

.l-article__relation-list {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 2rem;
}
@media screen and (min-width: 768px) {
  .l-article__relation-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 6%;
  }
}

.l-article__content-wrapper {
  margin-top: 1rem;
}

.l-wrapper {
  padding: 10px;
}

.l-wrapper--nopadding {
  padding: 0;
}

.l-editor-wrapper {
  overflow: hidden;
}

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

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

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

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

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

.l-flex {
  display: -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 {
  -webkit-column-gap: 0.3em;
     -moz-column-gap: 0.3em;
          column-gap: 0.3em;
  row-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: 12px;
}
.l-grid.-gap-l {
  gap: 3rem;
}

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

.l-footer {
  background-color: #F1F1F6;
  width: 100%;
  padding: 4rem 0;
}
.l-footer .l-flex {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .l-footer .l-flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 2rem;
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 1200px) {
  .l-footer .l-flex {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.l-footer .copyright {
  font-family: Goldplay;
  color: var(--main-c);
  font-size: 0.75rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-footer .copyright {
    text-align: unset;
  }
}
.l-footer a {
  text-decoration: none;
}
.l-footer .c-button--contact {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .l-footer .c-button--contact {
    margin-right: unset;
    margin-top: 3.5em;
  }
}

.l-footer__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 5%;
     -moz-column-gap: 5%;
          column-gap: 5%;
}
@media screen and (min-width: 768px) {
  .l-footer__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-footer__info .logo {
  max-width: 130px;
}
.l-footer__info .text {
  font-size: 0.8125rem;
  line-height: 2;
  letter-spacing: 1.3px;
  color: #808080;
}

.l-footer__navs {
  display: grid;
  margin-top: 1em;
  gap: 5%;
}
@media screen and (min-width: 768px) {
  .l-footer__navs {
    margin-top: 0;
    grid-template-columns: auto auto auto;
    gap: 4em;
  }
}

.l-footer__navs-item {
  font-family: 小塚ゴシック Pr6N;
  border-bottom: 1px solid var(--border-c);
  padding: 1em 0;
  position: relative;
}
.l-footer__navs-item:after {
  content: "";
  height: 0.7em;
  width: 0.7em;
  display: inline-block;
  border-top: solid 2px var(--main-c);
  border-right: solid 2px var(--main-c);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  right: 8%;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .l-footer__navs-item {
    border: none;
    padding: 0;
  }
  .l-footer__navs-item:after {
    content: none;
  }
}
.l-footer__navs-item + .l-footer__navs-item {
  margin-top: 0.5em;
}
.l-footer__navs-item a.ttl {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-footer__navs-item a.ttl {
    width: auto;
    position: relative;
    display: inline-block;
    text-decoration: none;
  }
  .l-footer__navs-item a.ttl::after {
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: var(--main-c);
    bottom: 1px;
    -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;
  }
  .l-footer__navs-item a.ttl:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
.l-footer__navs-item .ttl {
  color: var(--main-c);
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .l-footer__navs-item .ttl {
    font-size: 1.125rem;
  }
}
.l-footer__navs-item .ttl.-small {
  color: #989898;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .l-footer__navs-item .ttl.-small {
    font-size: 0.875rem;
    padding-left: 1em;
  }
}
.l-footer__navs-item .sub-ttl {
  position: relative;
  padding-right: 1.1em;
  font-size: 0.8125rem;
  color: #808080;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.l-footer__navs-item .sub-ttl:hover {
  opacity: 0.5;
}
.l-footer__navs-item .window {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.l-footer__navs-sub-list {
  padding-left: 1em;
}

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

/*********************************************
 * サイドバーのレイアウト
 *
 * 接頭詞『.l-sidebar』
 *********************************************/
.l-sidebar {
  grid-area: sidebar;
}
@media screen and (min-width: 768px) {
  .l-sidebar {
    position: sticky;
    top: 130px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.l-sidebar .link {
  text-decoration: none;
  border: solid 1px;
  border-color: transparent;
  border-radius: 2rem;
  color: #B2B2B2;
  background-color: #F1F1F1;
  padding: 5px 1em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-sidebar .link:hover, .l-sidebar .link.is-active {
  border-color: var(--main-c);
  background-color: var(--main-c);
  color: var(--white);
}

.l-sidebar__title {
  position: relative;
  font-family: "Gotham";
  border-bottom: 1px solid var(--border-c);
  padding-bottom: 0.5em;
}
.l-sidebar__title:before {
  content: "";
  width: 5em;
  height: 2px;
  background-color: var(--main-c);
  position: absolute;
  bottom: 0;
  left: 0;
}
.l-sidebar__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.8rem;
}
@media screen and (min-width: 768px) {
  .l-sidebar__list {
    gap: 0.8rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.l-sidebar__item.-search {
  width: 100%;
  border-bottom: 1px solid var(--border-c);
  padding-bottom: 5px;
}
.l-sidebar__item.-search form {
  display: grid;
  grid-template-columns: 1fr -webkit-max-content;
  grid-template-columns: 1fr max-content;
  gap: 5px;
}
.l-sidebar__item.-search input {
  border: none;
}

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

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

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

.c-article__title + .c-article__text {
  margin-top: 5px;
}

.c-badge {
  background-color: var(--main-c);
  color: var(--white);
  border-radius: 5px;
  padding: 5px;
  font-size: clamp(0.625rem, 0.5224rem + 0.5128vw, 0.875rem);
}

.c-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px;
}
.c-banner + .c-banner {
  margin-top: 4px;
}
@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: block;
  padding-top: 56.25%;
  position: relative;
  overflow: hidden;
}
.c-banner__wrap::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.c-banner__wrap:hover .c-banner__img, .c-banner__wrap:active .c-banner__img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

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

.c-banner__img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -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 {
    width: 60%;
  }
}
.c-banner--col1 .c-banner__wrap {
  padding-top: 40%;
}

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

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

.c-breadcrumb {
  list-style: none;
}

.c-breadcrumb_list {
  display: inline;
}
.c-breadcrumb_list + .c-breadcrumb_list:before {
  content: ">";
  margin: 0 0.5em;
}

.c-breadcrumb_link {
  color: inherit;
  text-decoration: none;
  color: var(--main-c);
}

.c-button {
  padding: 17px 2em;
  display: inline-block;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  color: #fff;
  border: 2px solid var(--main-c);
  background-color: var(--main-c);
  border-radius: 5em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 0.875rem;
}
.c-button:hover, .c-button:active {
  color: var(--main-c);
  background-color: #fff;
}

.c-button--sm, .c-button--sm-border {
  min-width: 156px;
}

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

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

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

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

.c-button--contact {
  font-family: Goldplay;
  letter-spacing: 1px;
  color: var(--white);
  text-decoration: none;
  background-color: var(--main-c);
  padding: 1em 2.5em;
  border: solid 1px var(--main-c);
  border-radius: 2rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-button--contact:hover {
  background-color: transparent;
  color: var(--main-c);
}

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

.c-card-img {
  position: relative;
  width: 100%;
  height: 100%;
}
.c-card-img .c-card-img__body {
  padding: 1em;
}
.c-card-img a:not(.link-disable) {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.c-card-img a:not(.link-disable):hover {
  opacity: 0.6;
}
.c-card-img .link-disable {
  pointer-events: none;
}

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

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

.c-card-img__body {
  padding: 1em;
}

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

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

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

.c-card-img__title + .c-card-img__lead {
  margin-top: 5px;
}
.c-card-img__title + .c-card-img__text {
  margin-top: 5px;
}
.c-card-img__title + .c-card-img__button {
  margin-top: 5px;
}

.c-card-img__lead + .c-card-img__text {
  margin-top: 5px;
}
.c-card-img__lead + .c-card-img__button {
  margin-top: 5px;
}

.c-card-img__text + .c-card-img__button {
  margin-top: 10px;
}

.c-card-img--shadow {
  -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}
.c-card-img--shadow .c-card-img__body {
  padding: 1.2em 1.5em;
}

.c-card-img--icon {
  position: relative;
}
.c-card-img--icon .c-card-img__wrap {
  margin: 0 auto -17.5%;
  padding-top: 0;
  border-radius: 50%;
  position: absolute;
  z-index: 2;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 19vw;
  height: 19vw;
  top: -8vw;
}
@media screen and (min-width: 768px) {
  .c-card-img--icon .c-card-img__wrap {
    width: 100px;
    height: 100px;
    top: -56px;
  }
}
.c-card-img--icon .c-card-img__image {
  border-radius: 50%;
}
.c-card-img--icon .c-card-img__body {
  -webkit-filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.1));
}

.c-card {
  width: 100%;
  height: 100%;
  text-align: justify;
  background-color: var(--white);
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  -webkit-filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.1));
}

.c-card__head {
  width: 100%;
  padding: 10px 15px;
  text-align: center;
  background-color: var(--bg-c);
  display: table;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}
@media screen and (min-width: 768px) {
  .c-card__head {
    padding: 10px 20px;
  }
}

.c-card__head__text {
  display: table-cell;
  vertical-align: middle;
  font-weight: bold;
}

.c-card__body {
  width: 100%;
  padding: 10px 15px;
}
@media screen and (min-width: 768px) {
  .c-card__body {
    padding: 20px;
  }
}
.c-card__body .c-text {
  line-height: 1.8;
}

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

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

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

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

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

.c-chart__border {
  width: 1px;
  height: calc(100% - 15px);
  background-color: var(--black);
  position: absolute;
  top: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .c-chart__border {
    top: 25px;
  }
}

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

.c-chart__year-title {
  margin-right: 5px;
  font-size: 4.8vw;
}
@media screen and (min-width: 768px) {
  .c-chart__year-title {
    font-size: 2.875rem;
    line-height: 1;
  }
}

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

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

.c-chart__title {
  line-height: 1.5;
  font-family: Geomanist, "小塚ゴシック Pro", "Kozuka Gothic Pro", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, Helvetica, sans-serif;
}

.c-chart__image-list {
  margin-top: 10px;
  gap: 10px;
}

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

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

.c-conversion__inner {
  width: 95%;
  max-width: 1200px;
  min-height: 350px;
  margin: 0 auto;
  padding: 50px 0;
  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;
  }
}

.c-conversion__title {
  font-family: Geomanist, "小塚ゴシック Pro", "Kozuka Gothic Pro", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, Helvetica, sans-serif;
  text-align: center;
  color: var(--main-c);
}

.c-conversion__text {
  margin-top: 5px;
}

.c-conversion__btn-area {
  margin-top: 20px;
  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: 15px;
}
@media screen and (min-width: 768px) {
  .c-conversion__btn-area {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

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

.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-sm {
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .c-flex--gap-sm {
    gap: 20px;
  }
}

.c-flex__col1 {
  width: calc(100% / 12 * 1);
}

[class*=gap] .c-flex__col1 {
  width: calc((100% / 12 * 1) - 10px);
}
@media screen and (min-width: 768px) {
  [class*=gap] .c-flex__col1 {
    width: calc((100% / 12 * 1) - 20px);
  }
}

.c-flex__col2 {
  width: calc(100% / 12 * 2);
}

[class*=gap] .c-flex__col2 {
  width: calc((100% / 12 * 2) - 10px);
}
@media screen and (min-width: 768px) {
  [class*=gap] .c-flex__col2 {
    width: calc((100% / 12 * 2) - 20px);
  }
}

.c-flex__col3 {
  width: calc(100% / 12 * 3);
}

[class*=gap] .c-flex__col3 {
  width: calc((100% / 12 * 3) - 10px);
}
@media screen and (min-width: 768px) {
  [class*=gap] .c-flex__col3 {
    width: calc((100% / 12 * 3) - 20px);
  }
}

.c-flex__col4 {
  width: calc(100% / 12 * 4);
}

[class*=gap] .c-flex__col4 {
  width: calc((100% / 12 * 4) - 10px);
}
@media screen and (min-width: 768px) {
  [class*=gap] .c-flex__col4 {
    width: calc((100% / 12 * 4) - 20px);
  }
}

.c-flex__col5 {
  width: calc(100% / 12 * 5);
}

[class*=gap] .c-flex__col5 {
  width: calc((100% / 12 * 5) - 10px);
}
@media screen and (min-width: 768px) {
  [class*=gap] .c-flex__col5 {
    width: calc((100% / 12 * 5) - 20px);
  }
}

.c-flex__col6 {
  width: calc(100% / 12 * 6);
}

[class*=gap] .c-flex__col6 {
  width: calc((100% / 12 * 6) - 10px);
}
@media screen and (min-width: 768px) {
  [class*=gap] .c-flex__col6 {
    width: calc((100% / 12 * 6) - 20px);
  }
}

.c-flex__col7 {
  width: calc(100% / 12 * 7);
}

[class*=gap] .c-flex__col7 {
  width: calc((100% / 12 * 7) - 10px);
}
@media screen and (min-width: 768px) {
  [class*=gap] .c-flex__col7 {
    width: calc((100% / 12 * 7) - 20px);
  }
}

.c-flex__col8 {
  width: calc(100% / 12 * 8);
}

[class*=gap] .c-flex__col8 {
  width: calc((100% / 12 * 8) - 10px);
}
@media screen and (min-width: 768px) {
  [class*=gap] .c-flex__col8 {
    width: calc((100% / 12 * 8) - 20px);
  }
}

.c-flex__col9 {
  width: calc(100% / 12 * 9);
}

[class*=gap] .c-flex__col9 {
  width: calc((100% / 12 * 9) - 10px);
}
@media screen and (min-width: 768px) {
  [class*=gap] .c-flex__col9 {
    width: calc((100% / 12 * 9) - 20px);
  }
}

.c-flex__col10 {
  width: calc(100% / 12 * 10);
}

[class*=gap] .c-flex__col10 {
  width: calc((100% / 12 * 10) - 10px);
}
@media screen and (min-width: 768px) {
  [class*=gap] .c-flex__col10 {
    width: calc((100% / 12 * 10) - 20px);
  }
}

.c-flex__col11 {
  width: calc(100% / 12 * 11);
}

[class*=gap] .c-flex__col11 {
  width: calc((100% / 12 * 11) - 10px);
}
@media screen and (min-width: 768px) {
  [class*=gap] .c-flex__col11 {
    width: calc((100% / 12 * 11) - 20px);
  }
}

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

[class*=gap] .c-flex__col12 {
  width: calc((100% / 12 * 12) - 10px);
}
@media screen and (min-width: 768px) {
  [class*=gap] .c-flex__col12 {
    width: calc((100% / 12 * 12) - 20px);
  }
}

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

.c-grid__child {
  width: 100%;
}

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

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

.c-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .c-header.is-scrolled .c-header__logo {
    height: calc(130px + 1rem);
    padding: 2rem 1rem;
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }
}
@media screen and (min-width: 768px) {
  .c-header.is-scrolled .c-header__nav {
    background-color: var(--white);
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    padding: 2rem 5%;
  }
}
@media screen and (min-width: 768px) {
  .c-header.is-scrolled .c-header__nav-item:not(.-contact) {
    color: var(--main-c);
  }
}
.c-header.is-scrolled .c-header__nav-item.-sns path {
  fill: var(--main-c);
}

.c-header__logo {
  display: grid;
  place-content: center;
  padding: 10px;
  background-color: var(--white);
  border-radius: 0 0 1rem 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 80px;
}
@media screen and (min-width: 768px) {
  .c-header__logo {
    padding: 3% 2%;
    height: 11vw;
    min-height: calc(130px + 1rem);
    max-height: calc(130px + 4.5rem);
  }
}
.c-header__logo:hover {
  background-color: var(--main-c);
}
.c-header__logo:hover .desvg path {
  fill: var(--white);
}
.c-header__logo .desvg {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
  height: 100%;
  max-width: 115px;
}
.c-header__logo .desvg path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-header__nav {
  position: absolute;
  top: 0%;
  left: 100%;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 80px 5% 0;
}
@media screen and (min-width: 768px) {
  .c-header__nav {
    position: relative;
    top: auto;
    left: auto;
    padding: 3rem 5%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 0 0 0 1rem;
  }
}
.c-header__nav.is-open {
  left: 0;
}
.c-header__nav.is-open .c-header__nav-item {
  -webkit-animation: menuShow 0.4s ease-in-out forwards;
          animation: menuShow 0.4s ease-in-out forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.c-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .c-header__nav-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.c-header__nav-item {
  position: relative;
  color: var(--white);
  text-align: center;
  opacity: 0;
  -webkit-transform: translateY(1rem);
          transform: translateY(1rem);
}
@media screen and (min-width: 768px) {
  .c-header__nav-item {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .c-header__nav-item:not(.-contact):not(.-sns) {
    position: relative;
    display: inline-block;
    text-decoration: none;
  }
  .c-header__nav-item:not(.-contact):not(.-sns)::after {
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: var(--main-c);
    bottom: 1px;
    -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;
  }
  .c-header__nav-item:not(.-contact):not(.-sns):hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
.c-header__nav-item:hover .c-header__sub-list {
  opacity: 1;
  visibility: visible;
}
.c-header__nav-item.-hasChild .c-header__nav-ttl {
  border: none;
}
.c-header__nav-item.-hasChild .c-header__nav-ttl:after {
  content: "";
  display: inline-block;
  height: 0.7em;
  width: 0.7em;
  border-bottom: 1px solid var(--white);
  border-left: 1px solid var(--white);
  -webkit-transform: rotate(-45deg) translate(60%, 20%);
          transform: rotate(-45deg) translate(60%, 20%);
}
.c-header__nav-item.-contact .c-header__nav-ttl {
  color: var(--main-c);
  background-color: var(--white);
  padding: 1em 2.5em;
  border-radius: 2rem;
}
@media screen and (min-width: 768px) {
  .c-header__nav-item.-contact .c-header__nav-ttl {
    color: var(--white);
    background-color: var(--main-c);
    border: solid 1px var(--main-c);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .c-header__nav-item.-contact .c-header__nav-ttl:hover {
    background-color: transparent;
    color: var(--main-c);
  }
}
.c-header__nav-item.-sns {
  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: 1rem;
  height: 100%;
}
.c-header__nav-item.-sns .desvg {
  width: 34px;
}
@media screen and (min-width: 768px) {
  .c-header__nav-item.-sns .desvg {
    width: 17px;
  }
}
@-webkit-keyframes menuShow {
  from {
    opacity: 0;
    -webkit-transform: translateY(1rem);
            transform: translateY(1rem);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes menuShow {
  from {
    opacity: 0;
    -webkit-transform: translateY(1rem);
            transform: translateY(1rem);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.c-header__nav-ttl {
  text-align: center;
  font-size: clamp(1.2rem, 0.7724rem + 0.5128vw, 1.125rem);
  text-decoration: none;
  font-family: Geomanist, "小塚ゴシック Pro", "Kozuka Gothic Pro", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, Helvetica, sans-serif;
}

@media screen and (min-width: 768px) {
  .c-header__sub-list {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 20px 15px;
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    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: center;
    -webkit-filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.1));
            filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.1));
  }
}

.c-header__sub-item {
  margin-left: 1rem;
}
@media screen and (min-width: 768px) {
  .c-header__sub-item {
    margin-left: 0;
  }
}
.c-header__sub-item:not(:first-child) {
  margin-top: 15px;
}
.c-header__sub-item:last-child {
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .c-header__sub-item:last-child {
    margin-bottom: 0;
  }
}

.c-header__sub-ttl {
  text-decoration: none;
  position: relative;
  display: inline-block;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  color: var(--black);
}
.c-header__sub-ttl::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #000;
  bottom: 2px;
  -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;
}
.c-header__sub-ttl:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
@media screen and (min-width: 768px) {
  .c-header__sub-ttl {
    display: inline-block;
  }
}
.c-header__sub-ttl:before {
  content: "";
  display: block;
  height: 2px;
  width: 1em;
  background-color: var(--black);
}
@media screen and (min-width: 768px) {
  .c-header__sub-ttl:before {
    display: none;
  }
}

.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: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
  height: 60px;
  position: relative;
  cursor: pointer;
  z-index: 1;
  padding: 10px 15px;
  margin-top: 10px;
  margin-right: 10px;
}
@media screen and (min-width: 768px) {
  .c-header__hamburger {
    display: none;
  }
}
.c-header__hamburger:before {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  background-color: var(--main-c);
  border-radius: 100%;
}
.c-header__hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 1;
}
.c-header__hamburger span:first-child {
  width: 90%;
}
.c-header__hamburger span:nth-child(2) {
  width: 75%;
}
.c-header__hamburger span:last-child {
  width: 60%;
}
.c-header__hamburger.is-active span:first-child {
  -webkit-transform: rotate(45deg) translate3D(8px, 8px, 0);
          transform: rotate(45deg) translate3D(8px, 8px, 0);
  width: 100%;
}
.c-header__hamburger.is-active span:last-child {
  -webkit-transform: rotate(-45deg) translate3D(5px, -7px, 0);
          transform: rotate(-45deg) translate3D(5px, -7px, 0);
  width: 100%;
}
.c-header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.c-header__circle-bg {
  position: fixed;
  /*丸の形*/
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--main-c);
  /*丸のスタート位置と形状*/
  -webkit-transform: translate(-15%, 15%) scale(0);
          transform: translate(-15%, 15%) scale(0);
  right: 0px;
  top: 0px;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.c-header__circle-bg.is-active {
  -webkit-transform: translate(-15%, 15%) scale(50);
          transform: translate(-15%, 15%) scale(50);
}

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

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

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

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

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

.c-image {
  margin: 0 auto;
  display: block;
  border-radius: 10px;
}

.c-image--full {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-image--text {
  display: inline-block;
}

.c-interview-vertical {
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-interview-vertical.-reverse .c-interview-vertical__grid-container {
    grid-template-areas: "content title";
    grid-template-columns: 1fr 30%;
  }
}
.c-interview-vertical.-reverse .c-interview-vertical__image .main {
  border-radius: 0 10px 10px 0;
}
.c-interview-vertical.-reverse .c-interview-vertical__image .background {
  left: 0;
  right: unset;
}
.c-interview-vertical.-reverse .c-interview-vertical__image.aos-init .main,
.c-interview-vertical.-reverse .c-interview-vertical__image.aos-init .background {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.c-interview-vertical.-reverse .c-interview-vertical__image.aos-animate .main {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.c-interview-vertical.-reverse .c-interview-vertical__image.aos-animate .background {
  opacity: 1;
  -webkit-transform: translateX(-75%);
          transform: translateX(-75%);
}

.c-interview-vertical__grid-container {
  display: grid;
  grid-template-areas: "title" "content";
  row-gap: 2rem;
}
@media screen and (min-width: 768px) {
  .c-interview-vertical__grid-container {
    grid-template-areas: "title content";
    grid-template-columns: 30% 1fr;
    gap: 5%;
  }
}

.c-interview-vertical__title {
  grid-area: title;
  padding: 2em;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-interview-vertical__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: left;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 4em 3em;
  }
}
.c-interview-vertical__title:before, .c-interview-vertical__title:after {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 80px;
  height: 40px;
}
@media screen and (min-width: 768px) {
  .c-interview-vertical__title:before, .c-interview-vertical__title:after {
    height: 160px;
  }
}
.c-interview-vertical__title:before {
  top: 0;
  left: 0;
  background-image: url("../images/common/interview-vertical_top-sp.svg");
}
@media screen and (min-width: 768px) {
  .c-interview-vertical__title:before {
    background-image: url("../images/common/interview-vertical_top-pc.svg");
  }
}
.c-interview-vertical__title:after {
  bottom: 0;
  right: 0;
  background-image: url("../images/common/interview-vertical_bottom-sp.svg");
}
@media screen and (min-width: 768px) {
  .c-interview-vertical__title:after {
    background-image: url("../images/common/interview-vertical_bottom-pc.svg");
  }
}
@media screen and (min-width: 768px) {
  .c-interview-vertical__title .main-title {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    -webkit-font-feature-settings: initial;
            font-feature-settings: initial;
  }
}
@media screen and (min-width: 768px) {
  .c-interview-vertical__title .sub-title {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
  }
}
.c-interview-vertical__title.aos-init .main-title,
.c-interview-vertical__title.aos-init .sub-title {
  opacity: 0;
  -webkit-transform: translateY(2rem);
          transform: translateY(2rem);
  -webkit-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
}
@media screen and (min-width: 768px) {
  .c-interview-vertical__title.aos-init:before {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-transition-delay: 0.4s;
            transition-delay: 0.4s;
  }
}
@media screen and (min-width: 768px) {
  .c-interview-vertical__title.aos-init:after {
    opacity: 0;
    -webkit-transform: translate(50%, 50%);
            transform: translate(50%, 50%);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-transition-delay: 0.4s;
            transition-delay: 0.4s;
  }
}
.c-interview-vertical__title.aos-animate .main-title,
.c-interview-vertical__title.aos-animate .sub-title, .c-interview-vertical__title.aos-animate:before, .c-interview-vertical__title.aos-animate:after {
  opacity: 1;
  -webkit-transform: translate(0);
          transform: translate(0);
}

.c-interview-vertical__content {
  grid-area: content;
  line-height: 2;
}
.c-interview-vertical__content p + p {
  margin-top: 1.5rem;
}

.c-interview-vertical__image {
  position: relative;
  margin-top: 1.5rem;
}
.c-interview-vertical__image .main {
  position: relative;
  z-index: 1;
  border-radius: 10px 0 0 10px;
}
.c-interview-vertical__image .background {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  overflow: hidden;
  mix-blend-mode: multiply;
  background-color: #DFF7F9;
}
.c-interview-vertical__image .background img {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  opacity: 0.2;
}
.c-interview-vertical__image.aos-init .main {
  opacity: 0;
  -webkit-transform: translateX(25%);
          transform: translateX(25%);
  -webkit-transition: 0.8s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.8s cubic-bezier(0.45, 0, 0.55, 1);
}
.c-interview-vertical__image.aos-init .background {
  opacity: 0;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  -webkit-transition: 0.8s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.8s cubic-bezier(0.45, 0, 0.55, 1);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.c-interview-vertical__image.aos-animate .main {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.c-interview-vertical__image.aos-animate .background {
  opacity: 1;
  -webkit-transform: translateX(75%);
          transform: translateX(75%);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c-interview__avatar {
  width: 14%;
}

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

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

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

.c-interview__balloon:after {
  border-color: transparent #fff transparent transparent;
  border-top-width: 6px;
  border-bottom-width: 6px;
  border-left-width: 11px;
  border-right-width: 11px;
  margin-top: -6px;
}

.c-interview__balloon:before {
  border-color: transparent var(--main-c) transparent transparent;
  border-top-width: 7px;
  border-bottom-width: 7px;
  border-left-width: 12px;
  border-right-width: 12px;
  margin: -7px 1px 0 0;
}

.c-interview--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.c-interview--reverse .c-interview__balloon {
  margin: 0 20px 0 0;
}
.c-interview--reverse .c-interview__balloon:after,
.c-interview--reverse .c-interview__balloon:before {
  left: 100%;
}
.c-interview--reverse .c-interview__balloon:after {
  border-color: transparent transparent transparent #ffffff;
}
.c-interview--reverse .c-interview__balloon:before {
  border-color: transparent transparent transparent var(--main-c);
  border-top-width: 7px;
  border-bottom-width: 7px;
  border-left-width: 12px;
  border-right-width: 12px;
  margin: -7px 0 0 1px;
}

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

.c-list-box + .c-list-box {
  margin-top: 15px;
}
@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 + .c-list-box {
    margin-top: 0;
  }
  .c-list-box + .c-list-box .c-list-box__title {
    border-top: 1px solid #fff;
  }
  .c-list-box:not(:last-of-type) .c-list-box__cont {
    border-bottom: 1px solid #fff;
  }
}

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

.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;
  background-color: var(--main-c);
  color: white;
}
@media screen and (min-width: 768px) {
  .c-list-box__title {
    width: 26%;
  }
}

.c-list-box__img {
  width: 3em;
  display: -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;
}

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

.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;
  border: 1px solid var(--base-c);
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .c-list-box__cont {
    width: 74%;
    font-size: 16px;
  }
}

.c-list-box__img + .c-list-box__text {
  margin-left: 10px;
}

.c-list-define {
  overflow: hidden;
}
.c-list-define + .c-list-define {
  margin-top: 15px;
}

.c-list-define__title {
  min-width: 150px;
  display: inline-block;
  padding: 8px 1em;
  text-align: center;
  position: relative;
  z-index: 1;
}
.c-list-define__title::before {
  content: "";
  display: block;
  width: 200%;
  height: 100%;
  background-color: var(--bg-c);
  position: absolute;
  top: 0;
  left: -100%;
  -webkit-transform: skewX(30deg);
          transform: skewX(30deg);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .c-list-define__title {
    padding: 10px 1.5em;
  }
}

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

.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;
  gap: 5px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .c-list-image {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 15px;
  }
}

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

.c-list-image__img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  border-radius: 10px;
}

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

.c-list-image__title + *,
.c-list-image__lead + *,
.c-list-image__text + * {
  margin-top: 15px;
}

.c-list-image__text {
  line-height: 1.8;
}

.c-list-image__button {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

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

@media screen and (min-width: 768px) {
  .c-list-image--col2 .c-list-image__img-wrap {
    width: 40%;
  }
}
@media screen and (min-width: 768px) {
  .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: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 60%;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c-media-full__button {
  margin-top: 15px;
}

.c-media-full__title + .c-media-full__text,
.c-media-full__sub-title + .c-media-full__text {
  margin-top: 10px;
}

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

.c-media {
  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-media {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-top: 2%;
  }
}
.c-media font {
  color: var(--main-c);
  margin-right: 0.5em;
  font-family: "Shippori Mincho B1", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Sawarabi Mincho", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.c-media--reverse .c-media__wrap--bg::before {
  left: 10vw;
  right: 0;
  background-image: url(../images/common/media-bg--reverse_sp.svg);
}
@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--reverse .c-media__wrap--bg::before {
    left: -6vw;
    background-image: url(../images/common/media-bg--reverse.svg);
  }
  .c-media--reverse .c-media__cont--float {
    margin: 30px -60px 0 0;
  }
}

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

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

@media screen and (min-width: 768px) {
  .c-media--bg .c-media__cont {
    margin-top: 40px;
  }
}

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

.c-media__wrap--bg {
  position: relative;
  z-index: 0;
  padding: 0;
}
.c-media__wrap--bg::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: auto;
  right: -5vw;
  background-image: url(../images/common/media-bg_sp.svg);
  background-size: contain;
  background-repeat: no-repeat;
  height: 100%;
  width: 100vw;
}
@media screen and (min-width: 768px) {
  .c-media__wrap--bg::before {
    right: -25vw;
    width: 80vw;
    background-image: url(../images/common/media-bg.svg);
  }
}

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

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

.c-media__cont {
  position: relative;
  background-color: var(--white);
  width: 100%;
  padding: 1em 0;
}
@media screen and (min-width: 768px) {
  .c-media__cont {
    width: 50%;
    padding: 2em;
  }
}

.c-media__cont--float {
  width: 95%;
  margin: -30px auto 0;
  padding: 20px 15px;
  background-color: var(--white);
  position: relative;
  z-index: 2;
  -webkit-filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.1));
}
@media screen and (min-width: 768px) {
  .c-media__cont--float {
    width: calc(50% + 30px);
    margin: 30px 0 0 -60px;
    padding: 30px;
  }
}

.c-media__sub-title {
  color: var(--main-c);
  font-family: Geomanist, "小塚ゴシック Pro", "Kozuka Gothic Pro", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, Helvetica, sans-serif;
}

.c-media__list-title {
  padding-left: 1.5em;
  font-size: 3.7333333333vw;
  font-weight: 600;
  position: relative;
}
.c-media__list-title::before {
  content: "";
  width: 1em;
  height: 1em;
  display: block;
  line-height: 1.2em;
  text-align: center;
  border: 2px solid var(--main-c);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .c-media__list-title {
    font-size: 1rem;
  }
}

.c-media__list-text {
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 768px) {
  .c-media__list-text {
    font-size: 1rem;
  }
}

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

.c-media__title + .c-media__sub-title {
  margin-top: 5px;
}
.c-media__title + .c-media__text {
  margin-top: 5px;
}
.c-media__title + .c-media__list {
  margin-top: 5px;
}
.c-media__title + .c-media__button-area {
  margin-top: 5px;
}

.c-media__sub-title + .c-media__text {
  margin-top: 10px;
}
.c-media__sub-title + .c-media__list {
  margin-top: 10px;
}
.c-media__sub-title + .c-media__button-area {
  margin-top: 10px;
}
.c-media__text + .c-media__list {
  margin-top: 10px;
}
.c-media__text + .c-media__button-area {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .c-media__text + .c-media__list {
    margin-top: 20px;
  }
  .c-media__text + .c-media__button-area {
    margin-top: 20px;
  }
}

.c-media__list + .c-media__list {
  margin-top: 10px;
}
.c-media__list + .c-media__button-area {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .c-media__list + .c-media__button-area {
    margin-top: 20px;
  }
}

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

.c-pagetop {
  display: none;
  -webkit-transform: translateY(200%);
          transform: translateY(200%);
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}
@media screen and (min-width: 768px) {
  .c-pagetop {
    z-index: 4;
    position: fixed;
    right: 3%;
    border-radius: 100%;
    cursor: pointer;
    display: block;
    width: 100px;
    height: 100px;
    bottom: 50px;
  }
}
.c-pagetop.is-show {
  -webkit-transform: translate(0);
          transform: translate(0);
  opacity: 1;
}
.c-pagetop .line {
  -webkit-animation: lineMove 1.2s infinite linear;
          animation: lineMove 1.2s infinite linear;
}
.c-pagetop .text {
  -webkit-animation: circleMove 5s infinite linear;
          animation: circleMove 5s infinite linear;
  -webkit-transform-origin: center;
          transform-origin: center;
}

@-webkit-keyframes lineMove {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  25% {
    -webkit-transform: translateY(-0.5rem);
            transform: translateY(-0.5rem);
  }
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  75% {
    -webkit-transform: translateY(0.5rem);
            transform: translateY(0.5rem);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes lineMove {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  25% {
    -webkit-transform: translateY(-0.5rem);
            transform: translateY(-0.5rem);
  }
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  75% {
    -webkit-transform: translateY(0.5rem);
            transform: translateY(0.5rem);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes circleMove {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes circleMove {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.c-point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-point__num {
  width: 15%;
  padding: 10px;
  font-size: 6.4vw;
  border-right: 2px solid var(--main-c);
}
@media screen and (min-width: 768px) {
  .c-point__num {
    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;
    font-size: 3.5rem;
  }
}

.c-point__cont {
  width: 85%;
  padding: 10px 0 10px 15px;
}
@media screen and (min-width: 768px) {
  .c-point__cont {
    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;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    row-gap: 10px;
  }
}

.c-point + .c-point {
  margin-top: 15px;
}

.c-point__button {
  margin-top: 15px;
}

.c-post-content {
  display: grid;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  row-gap: 0.5rem;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .c-post-content {
    row-gap: 1rem;
  }
}
.c-post-content.-image {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  grid-template-areas: "image" "data" "title";
}
.c-post-content.-image:hover {
  opacity: 0.5;
}
.c-post-content.-image .title {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.c-post-content.-text {
  grid-template-areas: "data" "title";
  border-bottom: 1px solid var(--border-c);
  padding-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .c-post-content.-text {
    padding-bottom: 2rem;
  }
}
.c-post-content .image-wrapper {
  grid-area: image;
  aspect-ratio: 19/10;
}
.c-post-content .image-wrapper .image {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  margin: auto;
}
.c-post-content .data {
  grid-area: data;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 0.8em;
     -moz-column-gap: 0.8em;
          column-gap: 0.8em;
  row-gap: 0.2em;
  font-family: "Goldplay", "小塚ゴシック Pro", "Kozuka Gothic Pro", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, Helvetica, sans-serif;
}
.c-post-content .time {
  color: #B2B2B2;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .c-post-content .time {
    font-size: 0.875rem;
  }
}
.c-post-content .category {
  color: #29C6BE;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .c-post-content .category {
    font-size: 0.875rem;
  }
}
.c-post-content .title-wrapper {
  grid-area: title;
}
.c-post-content .title {
  line-height: 1;
  font-size: 1rem;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

.c-post-content.-text + .c-post-content.-text {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .c-post-content.-text + .c-post-content.-text {
    margin-top: 2rem;
  }
}

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

.c-profile__tab {
  width: 100%;
  padding: 0 5px 20px;
  text-align: center;
  position: relative;
}
.c-profile__tab::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 3px;
  background-color: var(--main-c);
  position: absolute;
  bottom: 0;
  left: 0;
}
.c-profile__tab::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: 3px solid var(--main-c);
  border-right: 3px solid var(--main-c);
  background-color: var(--white);
  position: absolute;
  bottom: -4px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}
.c-profile__tab::after, .c-profile__tab::before {
  opacity: 0;
}
.c-profile__tab.is-active::after, .c-profile__tab.is-active::before {
  opacity: 1;
}

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

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

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

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

.c-profile__panel-group {
  width: 100%;
  margin: 15px 0;
}

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

@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

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

.c-qa__title {
  font-family: "Shippori Mincho B1", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Sawarabi Mincho", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  width: 100%;
  padding: 0 calc(1.5em + 5px) 0 calc(1.5em + 10px);
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .c-qa__title {
    padding: 0 calc(1.5em + 10px) 0 calc(1.5em + 10px);
  }
}

.c-qa__cont {
  position: relative;
}

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

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

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

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

.c-qa__tgl {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-qa__tgl::before, .c-qa__tgl::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: var(--main-c);
  position: absolute;
  top: 50%;
  left: 50%;
}
.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 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-qa[open] .c-qa__cont {
  -webkit-animation: fadeIn 0.5s ease;
          animation: fadeIn 0.5s ease;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; /* 透明 */
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px); /* 上から表示 */
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0; /* 透明 */
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px); /* 上から表示 */
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
/*スクロールダウン全体の場所*/
.c-scrolldown {
  position: absolute;
  right: 2%;
  bottom: 5%;
  width: 30%;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .c-scrolldown {
    right: 18%;
    bottom: 12%;
    width: 10%;
    height: 50px;
    max-width: 142px;
  }
}
.c-scrolldown .line {
  -webkit-animation: lineMove 1.2s infinite linear;
          animation: lineMove 1.2s infinite linear;
}
.c-scrolldown .text {
  -webkit-animation: circleMove 5s infinite linear;
          animation: circleMove 5s infinite linear;
  -webkit-transform-origin: center;
          transform-origin: center;
}

@keyframes lineMove {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  25% {
    -webkit-transform: translateY(-0.5rem);
            transform: translateY(-0.5rem);
  }
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  75% {
    -webkit-transform: translateY(0.5rem);
            transform: translateY(0.5rem);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes circleMove {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.c-slider-col {
  width: 100%;
}

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

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

.c-slider-col__caption {
  padding: 10px 15px;
}

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

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

.c-slider-col__button {
  width: 42px;
  height: 42px;
  border-radius: 3px;
  background-color: var(--bg-c);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 4;
}

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

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

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

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

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

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

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

.c-slider__slide {
  width: 90%;
  margin: 0 auto;
  -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 {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
}

.c-slider__caption {
  padding: 10px 15px;
}

.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%);
            transform: scale(0.7) translateX(25%);
  }
}

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

.c-slider__title + .c-slider__text {
  margin-top: 5px;
}

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

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

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

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

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

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

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

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

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

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

.c-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .c-step {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: -30px;
  }
}

.c-step__item {
  width: 100%;
  margin: 25px 0 30px;
  padding: 20px 30px;
  background-color: var(--white);
  position: relative;
  -webkit-filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.1));
}
.c-step__item:not(:last-of-type)::before {
  content: "";
  display: inline-block;
  border-top: 2px solid var(--main-c);
  border-right: 2px solid var(--main-c);
  -webkit-transform: rotate(135deg) translate(-50%, -50%);
          transform: rotate(135deg) translate(-50%, -50%);
  position: absolute;
  bottom: -20px;
  width: 20px;
  height: 20px;
  left: calc(50% - 24px);
}
@media screen and (min-width: 768px) {
  .c-step__item:not(:last-of-type)::before {
    width: 15px;
    height: 15px;
    left: calc(50% - 19px);
  }
}
@media screen and (min-width: 768px) {
  .c-step__item {
    width: calc(20% - 30px);
    margin: 75px 30px 0 0;
    padding: 50px 20px 20px;
  }
  .c-step__item:not(:last-of-type)::before {
    -webkit-transform: rotate(45deg) translate(-50%, 0);
            transform: rotate(45deg) translate(-50%, 0);
    bottom: calc(50% - 10px);
    left: calc(100% + 7.5px);
  }
}

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

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

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

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

.c-tab {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  font-family: Goldplay;
  color: #B2B2B2;
  background-color: #F1F1F1;
  border-radius: 2rem;
  text-transform: uppercase;
  padding: 0 1em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-tab {
    font-size: 0.875rem;
  }
}
.c-tab:hover, .c-tab.is-active {
  color: var(--white);
  background-color: var(--main-c);
}

@-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-col2 {
  border-collapse: collapse;
  width: 100%;
}

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

.c-table-col2__title,
.c-table-col2__cont {
  width: 100%;
  border-bottom: 2px solid;
  background-color: var(--white);
  padding-top: 1em;
  padding-bottom: 1em;
  font-weight: 400;
}

.c-table-col2__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40%;
  border-color: var(--main-c);
  text-align: left;
}
@media screen and (min-width: 768px) {
  .c-table-col2__title {
    width: auto;
    white-space: nowrap;
    min-width: 200px;
  }
}

.c-table-col2__cont {
  border-color: var(--border-c);
  padding-left: 5%;
}

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

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

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

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

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

.c-table__row:nth-child(even) {
  background-color: var(--bg-c);
}

.c-text-box {
  padding: 15px 20px;
  background-color: var(--white);
  border: 1px solid var(--border-c);
}
@media screen and (min-width: 768px) {
  .c-text-box {
    padding: 30px;
  }
}

.c-text-box__title + .c-text-box__lead {
  margin-top: 10px;
}
.c-text-box__title + .c-text-box__text {
  margin-top: 10px;
}
.c-text-box__title + .c-text-box__button {
  margin-top: 15px;
}

.c-text-box__lead + .c-text-box__text {
  margin-top: 10px;
}
.c-text-box__lead + .c-text-box__button {
  margin-top: 15px;
}

.c-text-box__text + .c-text-box__button {
  margin-top: 15px;
}

.c-text {
  line-height: 2;
}

.c-text-sm {
  font-size: 1.8666666667vw;
}
@media screen and (min-width: 768px) {
  .c-text-sm {
    font-size: 0.625rem;
  }
}

.c-tile {
  width: 100vw;
}
.c-tile .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .c-tile .row {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
.c-tile .row + .row {
  margin-top: 1px;
}
.c-tile .tile {
  position: relative;
  -webkit-perspective: 1000px;
          perspective: 1000px;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  opacity: 0;
  will-change: transform;
  -webkit-animation: tileUp 1s forwards cubic-bezier(0.61, 1, 0.88, 1), fadeUp 1.4s cubic-bezier(0.45, 0, 0.55, 1);
          animation: tileUp 1s forwards cubic-bezier(0.61, 1, 0.88, 1), fadeUp 1.4s cubic-bezier(0.45, 0, 0.55, 1);
}
.c-tile .tile:nth-last-child(1) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.c-tile .tile:nth-last-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.c-tile .tile:nth-last-child(3) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.c-tile .tile:nth-last-child(4) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.c-tile .tile:nth-last-child(5) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.c-tile .tile:nth-last-child(6) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.c-tile .tile:nth-last-child(7) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.c-tile .image {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  will-change: transform;
}
@media screen and (min-width: 768px) {
  .c-tile .image {
    border-radius: 6px;
  }
}
.c-tile .image.-front {
  -webkit-animation: flip 1s forwards;
          animation: flip 1s forwards;
  -webkit-animation-delay: calc(1.8s + var(--order) * 0.2s);
          animation-delay: calc(1.8s + var(--order) * 0.2s);
}
.c-tile .image.-back {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
  -webkit-animation: flipReverse 1s forwards;
          animation: flipReverse 1s forwards;
  -webkit-animation-delay: calc(1.8s + var(--order) * 0.2s);
          animation-delay: calc(1.8s + var(--order) * 0.2s);
}

@-webkit-keyframes tileUp {
  from {
    -webkit-transform: translate3d(-300vw, -916px, 0px) rotateX(300deg) rotateY(-88deg) rotateZ(-106deg);
            transform: translate3d(-300vw, -916px, 0px) rotateX(300deg) rotateY(-88deg) rotateZ(-106deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
            transform: translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    opacity: 1;
  }
}

@keyframes tileUp {
  from {
    -webkit-transform: translate3d(-300vw, -916px, 0px) rotateX(300deg) rotateY(-88deg) rotateZ(-106deg);
            transform: translate3d(-300vw, -916px, 0px) rotateX(300deg) rotateY(-88deg) rotateZ(-106deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
            transform: translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    opacity: 1;
  }
}
@-webkit-keyframes fadeUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes flip {
  from {
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
  }
  to {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
  }
}
@keyframes flip {
  from {
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
  }
  to {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
  }
}
@-webkit-keyframes flipReverse {
  from {
    -webkit-transform: rotateY(-180deg);
            transform: rotateY(-180deg);
  }
  to {
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
  }
}
@keyframes flipReverse {
  from {
    -webkit-transform: rotateY(-180deg);
            transform: rotateY(-180deg);
  }
  to {
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
  }
}
.c-title-bg-double {
  width: 100%;
  min-height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  color: var(--white);
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-title-bg-double {
    min-height: 500px;
    -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: 300px;
}
@media screen and (min-width: 1024px) {
  .c-title-bg-double__container {
    min-height: 500px;
    width: 50%;
  }
}

.c-title-bg-double__cover {
  width: 100%;
  min-height: 200px;
  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: 95%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 0;
}
@media screen and (min-width: 1024px) {
  .c-title-bg-double__inner {
    width: 100%;
    margin: 0 0 0 auto;
    padding: 30px 20px;
    text-align: left;
  }
}
@media screen and (min-width: 1280px) {
  .c-title-bg-double__inner {
    width: 82%;
    margin: 0 0 0 auto;
    padding: 30px 70px 30px 20px;
    text-align: left;
  }
}

.c-title-bg-double__title {
  width: 100%;
  line-height: 1.1;
}
@media screen and (min-width: 768px) {
  .c-title-bg-double__title {
    font-size: 2rem;
  }
}

.c-title-bg-double__sub-title {
  display: inline-block;
  margin: 10px 0;
  font-size: 14px;
  font-family: Geomanist, "小塚ゴシック Pro", "Kozuka Gothic Pro", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, Helvetica, sans-serif;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .c-title-bg-double__sub-title {
    font-size: 22px;
  }
}

.c-title-bg-double__text + .c-title-bg-double__lead {
  margin-top: 15px;
}
.c-title-bg-double__text + .c-title-bg-double__button {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .c-title-bg-double__text + .c-title-bg-double__lead {
    margin-top: 20px;
  }
  .c-title-bg-double__text + .c-title-bg-double__button {
    margin-top: 20px;
  }
}

.c-title-bg-double__lead + .c-title-bg-double__button {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .c-title-bg-double__lead + .c-title-bg-double__button {
    margin-top: 20px;
  }
}

.c-title-bg-double--reverse .c-title-bg-double__cover {
  margin: 0 0 0 auto;
}
.c-title-bg-double--reverse .c-title-bg-double__inner {
  margin: 0 auto 0 0;
}

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

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

.c-title-bg-half {
  width: 100%;
  min-height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  color: var(--white);
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-title-bg-half {
    min-height: 500px;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
.c-title-bg-half:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}

.c-title-bg-half__cover {
  width: 100%;
  min-height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .c-title-bg-half__cover {
    width: 50%;
    margin: 0 auto 0 0;
  }
}

.c-title-bg-half__inner {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}
@media screen and (min-width: 768px) {
  .c-title-bg-half__inner {
    width: auto;
    width: 600px;
    max-width: 90%;
    margin: 0 auto;
    padding: 30px 40px;
    text-align: left;
  }
}

.c-title-bg-half__text {
  width: 100%;
  line-height: 1em;
}

.c-title-bg-half__sub-text {
  display: inline-block;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .c-title-bg-half__sub-text {
    margin-bottom: 20px;
  }
}

.c-title-bg-half__text + .c-title-bg-half__lead {
  margin-top: 15px;
}
.c-title-bg-half__text + .c-title-bg-half__button {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .c-title-bg-half__text + .c-title-bg-half__lead {
    margin-top: 20px;
  }
  .c-title-bg-half__text + .c-title-bg-half__button {
    margin-top: 20px;
  }
}

.c-title-bg-half__lead + .c-title-bg-half__button {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .c-title-bg-half__lead + .c-title-bg-half__button {
    margin-top: 20px;
  }
}

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

.c-title-bg-half--white .c-title-bg-half__cover {
  background: rgba(255, 255, 255, 0.6);
}
.c-title-bg-half--white .c-title-bg-half__inner {
  color: var(--black);
}
.c-title-bg-half--white .c-title-bg-half__text {
  color: var(--main-c);
}

.c-title-bg-loop {
  -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-top: 12vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-title-bg-loop {
    padding-top: 100px;
  }
}

.c-title-bg-loop__loop {
  -webkit-animation: loopTitle 30s linear infinite;
          animation: loopTitle 30s linear infinite;
  color: var(--black);
  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: 1.5ch;
  font-size: clamp(4.6875rem, 2.2629rem + 10.3448vw, 9.375rem);
  line-height: 1;
  white-space: nowrap;
  font-family: Georgia, "Times New Roman", Times, serif;
}

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

.c-title-bg-loop__title {
  font-size: clamp(1.5rem, 1.2949rem + 1.0256vw, 2rem);
  color: inherit;
}

.c-title-bg-loop__sub-title {
  font-size: clamp(0.75rem, 0.6987rem + 0.2564vw, 0.875rem);
  color: var(--grey);
}

.l-color-direct-wrapper .c-title-bg-loop__title {
  -webkit-filter: invert(100%) grayscale(100%) contrast(100);
          filter: invert(100%) grayscale(100%) contrast(100);
}

@-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-bg {
  width: 100%;
  min-height: 200px;
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--white);
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-title-bg {
    min-height: 450px;
    padding: 40px 0;
  }
}
.c-title-bg:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}

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

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

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

.c-title-bg__text {
  width: 100%;
  line-height: 1;
  letter-spacing: 0.1rem;
}

.c-title-bg__sub-text {
  display: inline-block;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .c-title-bg__sub-text {
    margin-bottom: 20px;
  }
}

.c-title-bg__text + .c-title-bg__lead {
  margin-top: 15px;
}
.c-title-bg__text + .c-title-bg__button {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .c-title-bg__text + .c-title-bg__lead {
    margin-top: 20px;
  }
  .c-title-bg__text + .c-title-bg__button {
    margin-top: 20px;
  }
}

.c-title-bg__lead + .c-title-bg__button {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .c-title-bg__lead + .c-title-bg__button {
    margin-top: 20px;
  }
}

.c-title-cont {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-title-cont {
    margin-bottom: 25px;
    font-size: 32px;
  }
}

.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: 20px;
  }
}

.c-title-h1 {
  color: var(--main-c);
  line-height: 1.4;
  letter-spacing: 0.2rem;
}

.c-title-h1__sub {
  display: block;
  font-size: 18px;
  color: var(--white);
  letter-spacing: 0;
}

.c-title-h1--top {
  position: relative;
  overflow: hidden;
  padding: calc(80px + 1.5rem) 0 0;
  min-height: 200px;
}
@media screen and (min-width: 768px) {
  .c-title-h1--top {
    padding: calc(130px + 3rem) 0 2rem;
    min-height: 400px;
  }
}
.c-title-h1--top__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.c-title-h1--top__bg img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.c-title-h1--top__bg:after {
  background: rgba(0, 0, 0, 0.4);
}
.c-title-h1--top__bg:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
.c-title-h1--top__lattice {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-image: url("../images/common/title-h1-lattice_sp.svg");
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .c-title-h1--top__lattice {
    background-image: url("../images/common/title-h1-lattice_pc.svg");
  }
}
.c-title-h1--top .c-title-h1,
.c-title-h1--top .c-title-h1__sub {
  position: relative;
  z-index: 3;
  opacity: 0;
  -webkit-transform: translateY(1rem);
          transform: translateY(1rem);
  -webkit-animation: fadeup 1s forwards;
          animation: fadeup 1s forwards;
}
.c-title-h1--top .c-title-h1 {
  font-family: Geomanist, "小塚ゴシック Pro", "Kozuka Gothic Pro", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, Helvetica, sans-serif;
}
.c-title-h1--top .c-title-h1__sub {
  font-family: "Shippori Mincho B1", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Sawarabi Mincho", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.c-title-h1--full {
  padding: 30px 0 30px 2%;
  color: inherit;
  line-height: 1;
  letter-spacing: 0.2rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-title-h1--full {
    padding: 50px 0 30px 10%;
    height: 250px;
  }
}
.c-title-h1--full.-single .c-title-h1--full__main {
  font-size: clamp(1.5rem, 0.8846rem + 3.0769vw, 3rem);
}
.c-title-h1--full:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 1px;
  background-color: var(--black);
  width: 95vw;
}
@media screen and (min-width: 768px) {
  .c-title-h1--full:after {
    width: 90vw;
  }
}

.c-title-h1--full--center {
  text-align: center;
  padding: 30px 0;
}
@media screen and (min-width: 768px) {
  .c-title-h1--full--center {
    padding: 50px 0;
  }
}

.c-title-h1--full__main,
.c-title-h1--full__sub {
  margin-left: 3%;
}

.c-title-h1--full__main {
  font-size: clamp(1.75rem, 0.7875rem + 4.8125vw, 6.5625rem);
  letter-spacing: 5px;
}

.c-title-h1--full__sub {
  margin-top: 20px;
  font-size: clamp(0.875rem, 0.75rem + 0.625vw, 1.5rem);
  color: var(--darkgrey);
  letter-spacing: 0;
}

.l-color-direct-wrapper .c-title-h1--full {
  -webkit-filter: invert(100%) grayscale(100%) contrast(100);
          filter: invert(100%) grayscale(100%) contrast(100);
}

.c-title-h2 {
  text-align: center;
  letter-spacing: 0.15rem;
}

.c-title-h2__sub {
  color: var(--main-c);
  text-align: center;
  color: 10px;
  font-size: 3.7333333333vw;
  letter-spacing: 0.15rem;
}
@media screen and (min-width: 768px) {
  .c-title-h2__sub {
    font-size: 18px;
  }
}

.c-title-h2--cont {
  background-color: #F4F8FB;
  padding: 2rem 0;
}
@media screen and (min-width: 768px) {
  .c-title-h2--cont {
    padding: 4rem 0;
  }
}
.c-title-h2--cont .l-flex {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 1rem;
}
.c-title-h2--cont .l-flex.-jcenter {
  -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-title-h2--cont__main {
  color: var(--main-c);
  line-height: 1;
}

.c-title-h2--cont__sub {
  display: inline-block;
  color: var(--black);
}

.c-title-h3 {
  text-align: center;
  position: relative;
}
.c-title-h3 h3 {
  line-height: 1.3;
  font-family: "Goldplay", "小塚ゴシック Pro", "Kozuka Gothic Pro", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, Helvetica, sans-serif;
}

.c-title-h3--row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0.5em;
}

.c-title-h4 {
  padding-top: 10px;
  position: relative;
  font-weight: bold;
  font-family: "Shippori Mincho B1", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Sawarabi Mincho", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.c-title-h5 {
  font-weight: bold;
  font-family: "Shippori Mincho B1", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Sawarabi Mincho", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

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

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

.c-video__caption {
  padding: 15px 10px;
  border-top: 2px solid var(--main-c);
  background-color: var(--bg-c);
}

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

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

.c-wysiwyg { /* 配置位置 右 */
  /* 配置位置 左 */
  /* 配置位置 中央 */
}
.c-wysiwyg ul, .c-wysiwyg ol {
  padding-left: 1rem;
  margin-left: 1rem;
  margin-bottom: 2rem;
}
.c-wysiwyg ul li {
  list-style-type: disc;
}
.c-wysiwyg ol li {
  list-style-type: decimal;
}
.c-wysiwyg .aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.c-wysiwyg table {
  border-collapse: separate;
  border-spacing: 2px;
}
.c-wysiwyg table, .c-wysiwyg thead, .c-wysiwyg tbody, .c-wysiwyg tr, .c-wysiwyg th, .c-wysiwyg td {
  border: solid 1px var(--main-c);
}
.c-wysiwyg th {
  vertical-align: middle;
}
.c-wysiwyg p + *, .c-wysiwyg h1 + *, .c-wysiwyg h2 + *, .c-wysiwyg h3 + *, .c-wysiwyg h4 + *, .c-wysiwyg h5 + * {
  margin-top: 1rem;
}
.c-wysiwyg h1, .c-wysiwyg h2, .c-wysiwyg h3, .c-wysiwyg h4, .c-wysiwyg h5 {
  font-weight: bold;
}
.c-wysiwyg img.alignright {
  display: block;
  margin: 0 0 0 auto;
}
.c-wysiwyg img.alignleft {
  display: block;
  margin: 0 auto 0 0;
}
.c-wysiwyg img.aligncenter {
  display: block;
  margin: 0 auto;
}

.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: -2px;
}
.p-contact .wpcf7-list-item {
  margin: 0;
}
.p-contact .acceptance input[type=checkbox] {
  display: none;
}
.p-contact .acceptance input[type=checkbox]:checked + .wpcf7-list-item-label:after {
  opacity: 1;
}
.p-contact .acceptance .wpcf7-list-item-label {
  cursor: pointer;
  position: relative;
  padding-left: 1.5rem;
}
.p-contact .acceptance .wpcf7-list-item-label:before, .p-contact .acceptance .wpcf7-list-item-label:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
}
.p-contact .acceptance .wpcf7-list-item-label:before {
  border-radius: 3px;
  border: 1px solid #707070;
  width: 1em;
  height: 1em;
  top: -2px;
}
.p-contact .acceptance .wpcf7-list-item-label:after {
  -webkit-transform: translate(1px, 1px) rotate(-45deg);
          transform: translate(1px, 1px) rotate(-45deg);
  border-left: 2px solid var(--main-c);
  border-bottom: 2px solid var(--main-c);
  width: 1.2em;
  height: 0.7em;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  top: -6px;
}
.p-contact.-confirm .acceptance {
  position: relative;
  padding-left: 1.5rem;
}
.p-contact.-confirm .acceptance:before, .p-contact.-confirm .acceptance:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
}
.p-contact.-confirm .acceptance:before {
  border-radius: 3px;
  border: 1px solid #707070;
  width: 1em;
  height: 1em;
  top: 4px;
}
.p-contact.-confirm .acceptance:after {
  -webkit-transform: translate(1px, 1px) rotate(-45deg);
          transform: translate(1px, 1px) rotate(-45deg);
  border-left: 1px solid #707070;
  border-bottom: 1px solid #707070;
  width: 1.2em;
  height: 0.7em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  top: 0;
}

.p-contact__step {
  max-width: 696px;
  margin-left: auto;
  margin-right: auto;
  --circle-size: 1rem;
  --spacing: clamp(0.25rem, 2vw, 0.5rem);
}

.p-contact__step-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-contact__step-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-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}
.p-contact__step-item.is-active:after {
  background-color: var(--main-c);
}
.p-contact__step-item:after {
  --size: 3rem;
  content: "";
  display: block;
  width: var(--circle-size);
  height: var(--circle-size);
  border-radius: 50%;
  background-color: var(--white);
  border: 2px solid var(--main-c);
  opacity: 0.5;
  margin: 0 auto 1rem;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.p-contact__step-item:not(:last-child):before {
  content: "";
  position: relative;
  top: calc(var(--circle-size) / 2);
  width: calc(100% - var(--circle-size) - var(--spacing) * 2);
  left: calc(50% + var(--circle-size) / 2 + var(--spacing));
  height: 1px;
  background-color: var(--border-c);
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.p-contact__step-item .number {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  padding-left: var(--spacing);
  padding-right: var(--spacing);
  font-family: Geomanist, "小塚ゴシック Pro", "Kozuka Gothic Pro", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, Helvetica, sans-serif;
}
.p-contact__step-item .description {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  font-size: clamp(1rem, 4vw, 1.25rem);
  margin-bottom: 1rem;
  line-height: 1;
}

.p-contact__form {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 2rem;
  padding: 2rem;
}
.p-contact__form .l-grid {
  grid-template-columns: repeat(2, 1fr);
}
.p-contact__form .form-title {
  text-align: center;
  font-weight: normal;
  font-size: 2em;
}
.p-contact__form .form-text {
  text-align: center;
}
.p-contact__form .form-content {
  margin-top: 1rem;
}
.p-contact__form .form-item input, .p-contact__form .form-item textarea {
  padding: 8px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--border-c);
}
.p-contact__form .form-item dd {
  margin-top: 5px;
}
.p-contact__form .form-item + .form-item {
  margin-top: 1.5em;
}
.p-contact__form .label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
  font-family: "Shippori Mincho B1", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Sawarabi Mincho", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.p-contact__form .label.-caution:before {
  content: "必須";
  background-color: var(--red);
  color: var(--white);
  font-size: 0.8em;
  padding: 5px 6px 2px;
  line-height: 1;
}
.p-contact__form .wpcf7-submit {
  display: block;
  margin-top: 2em;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--main-c);
  color: var(--white);
  border: 1px solid var(--main-c);
  font-size: 1.25rem;
  width: 90%;
  max-width: 20em;
  border-radius: 2rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 0.5em;
}
@media screen and (min-width: 768px) {
  .p-contact__form .wpcf7-submit {
    padding: 0.8em;
  }
}
.p-contact__form .wpcf7-submit:hover {
  background-color: var(--white);
  color: var(--main-c);
}
.p-contact__form .wpcf7-response-output {
  display: none;
}

/*=============================
共通
=============================*/
.p-front-section {
  padding: 3rem 0;
}

.p-front-section__title-h2 {
  margin-top: 0.2em;
  line-height: 1.2;
  color: var(--main-c);
  letter-spacing: 3.6px;
  font-size: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-front-section__title-h2 {
    font-size: 5.625rem;
  }
}
.p-front-section__title-h2.-white {
  color: var(--white);
}

.p-front-section__title-h3 {
  position: relative;
  padding-left: 1.8em;
  font-weight: normal;
  font-size: 1rem;
}
.p-front-section__title-h3:before {
  content: "";
  position: absolute;
  top: 0.2em;
  left: 0;
  display: block;
  height: 1.1em;
  width: 1.1em;
  border-radius: 100px;
  border: 3px solid var(--main-c);
}
.p-front-section__title-h3.-white {
  color: var(--white);
}

/*=============================
アニメーション関連
=============================*/
@-webkit-keyframes appear {
  from {
    opacity: 0;
    -webkit-transform: translateX(3em);
            transform: translateX(3em);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes appear {
  from {
    opacity: 0;
    -webkit-transform: translateX(3em);
            transform: translateX(3em);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/*=============================
メインビジュアル
=============================*/
.p-front-mv {
  width: 100%;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-front-mv {
    height: 938px;
  }
}
.p-front-mv .l-inner {
  position: unset;
  height: 100%;
}
.p-front-mv .c-tile {
  height: 100%;
}
@media screen and (min-width: 768px) {
  .p-front-mv .c-tile {
    position: absolute;
  }
}

.p-front-mv__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: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  bottom: 31%;
  margin: auto;
  color: var(--white);
}
@media screen and (min-width: 768px) {
  .p-front-mv__title {
    top: 0;
    bottom: 0;
  }
}
.p-front-mv__title .sub,
.p-front-mv__title .main {
  opacity: 0;
  -webkit-animation: appear 1s forwards;
          animation: appear 1s forwards;
}
.p-front-mv__title .sub {
  font-size: 8vw;
  -webkit-animation-delay: 2.8s;
          animation-delay: 2.8s;
}
@media screen and (min-width: 768px) {
  .p-front-mv__title .sub {
    font-size: 2.3125rem;
  }
}
.p-front-mv__title .main {
  font-size: 12.8vw;
  -webkit-animation-delay: 3.1s;
          animation-delay: 3.1s;
}
@media screen and (min-width: 768px) {
  .p-front-mv__title .main {
    font-size: 3.4375rem;
  }
}

/*=============================
Our Mission
=============================*/
.p-front-mission {
  position: relative;
  padding: 3rem 0;
}
@media screen and (min-width: 768px) {
  .p-front-mission {
    padding: 8rem 0 3rem;
  }
}
.p-front-mission:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 3/1;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .p-front-mission:before {
    background-image: url("../images/webp/front/mission_bg-pc.png.webp");
  }
}
.p-front-mission .l-flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-front-mission .l-flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-front-mission__title {
  color: #1A1A1A;
  margin-top: 1rem;
  line-height: 1.68;
  font-size: 6.9333333333vw;
}
@media screen and (min-width: 768px) {
  .p-front-mission__title {
    font-size: 3.125rem;
  }
}

.p-front-mission__text {
  font-weight: 500;
  line-height: 2;
  margin-top: 1rem;
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .p-front-mission__text {
    line-height: 2.56;
    margin-top: 3rem;
    font-size: 1rem;
  }
}

.p-front-mission__image {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-front-mission__image {
    margin-top: 0;
    width: 70%;
    max-width: 693px;
  }
}
.p-front-mission__image.aos-init #mission-image .line,
.p-front-mission__image.aos-init #mission-image .illust {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.p-front-mission__image.aos-animate #mission-image .line,
.p-front-mission__image.aos-animate #mission-image .illust {
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.p-front-mission__image #mission-image .line {
  -webkit-animation: scaleUp 1s forwards;
          animation: scaleUp 1s forwards;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.p-front-mission__image #mission-image .illust {
  -webkit-animation: appear2 1s forwards;
          animation: appear2 1s forwards;
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}
.p-front-mission__image #mission-image .-delay01 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.p-front-mission__image #mission-image .-delay02 {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.p-front-mission__image #mission-image .-delay03 {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
.p-front-mission__image #mission-image .-delay04 {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}
.p-front-mission__image #mission-image .-delay05 {
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}
@-webkit-keyframes scaleUp {
  from {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes scaleUp {
  from {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes appear2 {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes appear2 {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/*=============================
Business
=============================*/
@media screen and (min-width: 768px) {
  .p-front-business {
    padding: 2rem 0;
  }
}
.p-front-business.-sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-front-business.-sp {
    display: none;
  }
}
.p-front-business.-sp .p-front-business__card-wrapper[open] .image-wrapper:before {
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
}
.p-front-business.-sp .p-front-business__card-wrapper[open] .p-front-business__card:before {
  opacity: 1;
  -webkit-transform: translateY(50%) rotate(45deg);
          transform: translateY(50%) rotate(45deg);
}
.p-front-business.-sp .p-front-business__card-wrapper + .p-front-business__card-wrapper {
  margin-top: 2px;
}
.p-front-business.-sp .p-front-business__card-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 2em 1em;
}
.p-front-business.-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-front-business.-pc {
    display: block;
  }
}

.p-front-business__card-container {
  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-business__card-container {
    max-width: 1920px;
    margin-top: -3.5rem;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-front-business__card {
  width: 100%;
  position: relative;
  display: grid;
  place-content: unset;
  padding: 1em;
  border-radius: 10px;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  aspect-ratio: 68/27;
}
@media screen and (min-width: 768px) {
  .p-front-business__card {
    place-content: center;
    aspect-ratio: none;
    width: 12.5%;
    height: 494px;
  }
}
@media screen and (min-width: 768px) {
  .p-front-business__card.is-hover {
    width: 50%;
  }
}
.p-front-business__card.is-hover .image-wrapper:before {
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
}
.p-front-business__card.is-hover:before {
  opacity: 1;
  -webkit-transform: translateY(50%) rotate(45deg);
          transform: translateY(50%) rotate(45deg);
}
.p-front-business__card:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 1rem;
  height: 1rem;
  background-color: var(--white);
  -webkit-transform: translateY(120%) rotate(45deg);
          transform: translateY(120%) rotate(45deg);
  opacity: 0;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}
@media screen and (min-width: 768px) {
  .p-front-business__card:before {
    width: 2rem;
    height: 2rem;
  }
}
.p-front-business__card .number {
  position: absolute;
  bottom: 0;
  right: 1rem;
  color: var(--main-c);
  font-size: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-front-business__card .number {
    font-size: 3.75rem;
    -webkit-transform: translateY(40%);
            transform: translateY(40%);
  }
}
.p-front-business__card .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .p-front-business__card .text {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    height: 185px;
  }
}
@media screen and (min-width: 768px) {
  .p-front-business__card .jpn,
  .p-front-business__card .eng {
    display: inline;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
  }
}
.p-front-business__card .jpn {
  font-family: "Shippori Mincho B1", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Sawarabi Mincho", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  color: var(--white);
  -webkit-font-feature-settings: initial;
          font-feature-settings: initial;
}
@media screen and (min-width: 768px) {
  .p-front-business__card .jpn {
    font-size: 1.8125rem;
  }
}
.p-front-business__card .eng {
  font-family: Geomanist;
  color: var(--main-c);
}
@media screen and (min-width: 768px) {
  .p-front-business__card .eng {
    font-size: 0.875rem;
  }
}
.p-front-business__card .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  border: 1px solid var(--white);
  overflow: hidden;
  z-index: -1;
}
.p-front-business__card .image-wrapper:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.5s ease-in-out, -webkit-transform 0.8s ease-out;
  transition: transform 0.8s ease-out, opacity 0.5s ease-in-out;
  transition: transform 0.8s ease-out, opacity 0.5s ease-in-out, -webkit-transform 0.8s ease-out;
}
.p-front-business__card .image {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.p-front-business__content {
  height: 0;
  opacity: 0;
  pointer-events: none;
}
.p-front-business__content.is-active {
  height: auto;
  opacity: 1;
  pointer-events: visible;
}

.p-front-business__content-container {
  margin-top: 3rem;
  display: none;
}
@media screen and (min-width: 768px) {
  .p-front-business__content-container {
    display: block;
  }
}

.p-front-business__content-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;
  gap: 2rem;
}

.p-front-business__content-item .link {
  text-decoration: none;
}
.p-front-business__content-item .link:not(.-disable) {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.p-front-business__content-item .link:not(.-disable):hover {
  opacity: 0.5;
}
.p-front-business__content-item .link.-disable {
  pointer-events: none;
}
.p-front-business__content-item .title {
  text-align: center;
  font-family: "Shippori Mincho B1", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Sawarabi Mincho", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-front-business__content-item .title {
    font-size: 1rem;
  }
}
.p-front-business__content-item .text {
  font-family: "Shippori Mincho B1", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Sawarabi Mincho", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  margin-top: 5px;
  font-size: 0.75rem;
  color: #808080;
  text-align: center;
}
.p-front-business__content-item .image-wrapper {
  max-width: 180px;
  aspect-ratio: 18/12;
  margin: auto;
}
.p-front-business__content-item .image {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}

/*=============================
Report & Blog & News
=============================*/
.p-front-report__panel,
.p-front-blog__panel,
.p-front-news__panel {
  pointer-events: none;
  overflow: hidden;
  height: 0;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-front-report__panel.is-active,
.p-front-blog__panel.is-active,
.p-front-news__panel.is-active {
  pointer-events: visible;
  height: auto;
  opacity: 1;
}
.p-front-report__panel.is-active .nocontent,
.p-front-report__panel.is-active .c-post-content,
.p-front-blog__panel.is-active .nocontent,
.p-front-blog__panel.is-active .c-post-content,
.p-front-news__panel.is-active .nocontent,
.p-front-news__panel.is-active .c-post-content {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.p-front-report__panel .nocontent,
.p-front-report__panel .c-post-content,
.p-front-blog__panel .nocontent,
.p-front-blog__panel .c-post-content,
.p-front-news__panel .nocontent,
.p-front-news__panel .c-post-content {
  -webkit-transform: translateX(-1rem);
          transform: translateX(-1rem);
}

.p-front-report__panel .c-post-content {
  position: relative;
  grid-template-columns: 40% minmax(0, 1fr);
  grid-template-rows: -webkit-max-content 1fr;
  grid-template-rows: max-content 1fr;
  -webkit-column-gap: 1em;
     -moz-column-gap: 1em;
          column-gap: 1em;
  row-gap: 0.5em;
  grid-template-areas: "image data" "image title";
}
.p-front-report__panel .c-post-content .title-wrapper {
  border-bottom: 1px solid var(--border-c);
  padding-bottom: 1em;
}
.p-front-report__panel .c-post-content + .c-post-content {
  margin-top: 1.5rem;
}

.p-front-blog__panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.p-front-news .l-grid {
  grid-template-columns: 1fr;
  row-gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-front-news .l-grid {
    grid-template-columns: -webkit-max-content 1fr;
    grid-template-columns: max-content 1fr;
    gap: 10%;
  }
}
.p-front-news .more {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  text-decoration: none;
  color: var(--main-c);
  margin-top: 2rem;
  font-family: Goldplay;
  font-size: 1rem;
}
.p-front-news .more:hover {
  opacity: 0.5;
}
@media screen and (min-width: 768px) {
  .p-front-news .more {
    font-size: 1.1875rem;
  }
}
.p-front-news .more:after {
  content: "";
  display: inline-block;
  height: 0.5em;
  width: 0.5em;
  -webkit-transform: translateY(-25%) rotate(45deg);
          transform: translateY(-25%) rotate(45deg);
  border-top: 2px solid var(--main-c);
  border-right: 2px solid var(--main-c);
  margin-left: 10px;
}

.p-front-news__tab-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 0.5em;
  -webkit-column-gap: 0.5em;
     -moz-column-gap: 0.5em;
          column-gap: 0.5em;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-front-news__tab-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/*=============================
About Holdings & Recruit Information
=============================*/
.p-front-about,
.p-front-recruit {
  position: relative;
  padding: 0;
}
.p-front-about .l-inner,
.p-front-recruit .l-inner {
  margin-top: -15rem;
}
@media screen and (min-width: 768px) {
  .p-front-about .l-inner,
  .p-front-recruit .l-inner {
    margin-top: -28.5rem;
  }
}
.p-front-about .c-tile,
.p-front-recruit .c-tile {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 100vw;
  max-height: 450px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-front-about .c-tile,
  .p-front-recruit .c-tile {
    max-height: 624px;
  }
}
.p-front-about .c-tile .row,
.p-front-recruit .c-tile .row {
  height: 50%;
}
.p-front-about .c-tile.aos-init .tile, .p-front-about .c-tile.aos-init .image,
.p-front-recruit .c-tile.aos-init .tile,
.p-front-recruit .c-tile.aos-init .image {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.p-front-about .c-tile.aos-animate .tile, .p-front-about .c-tile.aos-animate .image,
.p-front-recruit .c-tile.aos-animate .tile,
.p-front-recruit .c-tile.aos-animate .image {
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.p-front-about__content,
.p-front-recruit__content {
  position: relative;
  color: #1A1A1A;
  font-weight: 500;
  margin-top: 3rem;
  padding: 2rem;
}
@media screen and (min-width: 768px) {
  .p-front-about__content,
  .p-front-recruit__content {
    margin-top: 6rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 5rem 0;
  }
}
.p-front-about__content:before,
.p-front-recruit__content:before {
  content: "";
  position: absolute;
  top: 0;
  width: 100vw;
  height: 100%;
  background-color: var(--white);
  z-index: 0;
}

@media screen and (min-width: 768px) {
  .p-front-about__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15%;
    margin-left: auto;
    padding-left: 5rem;
  }
}
.p-front-about__content:before {
  left: 0;
  border-radius: 10px 0 0 0;
}

@media screen and (min-width: 768px) {
  .p-front-recruit__content {
    padding-right: 5rem;
  }
}
.p-front-recruit__content:before {
  right: 0;
  border-radius: 0 10px 0 0;
}

.p-front-about__content-text,
.p-front-recruit__content-text {
  position: relative;
  max-width: 506px;
  line-height: 2.5;
}

.p-front-about__content-list,
.p-front-recruit__content-list {
  position: relative;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-front-about__content-list,
  .p-front-recruit__content-list {
    margin-top: 0;
  }
}

.p-front-about__content-item,
.p-front-recruit__content-item {
  border-bottom: 1px solid var(--border-c);
  padding-bottom: 1.5rem;
  padding-left: 0.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-front-about__content-item + .p-front-about__content-item,
.p-front-about__content-item + .p-front-recruit__content-item,
.p-front-recruit__content-item + .p-front-about__content-item,
.p-front-recruit__content-item + .p-front-recruit__content-item {
  margin-top: 1.5rem;
}
.p-front-about__content-item .link,
.p-front-recruit__content-item .link {
  display: block;
  width: 18em;
  white-space: nowrap;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}
.p-front-about__content-item .link:hover,
.p-front-recruit__content-item .link:hover {
  opacity: 0.5;
}
.p-front-about__content-item .link:after,
.p-front-recruit__content-item .link:after {
  content: "";
  height: 0.7em;
  width: 0.7em;
  display: inline-block;
  border-top: solid 2px var(--main-c);
  border-right: solid 2px var(--main-c);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  right: 8%;
  top: 0;
  bottom: 0;
  margin: auto;
}

.p-search .c-title-h2 {
  font-size: clamp(1.125rem, 0.766rem + 1.7949vw, 2rem);
}

.p-search__nocontent .l-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) {
  .p-search__nocontent .l-flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.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: 5px !important;
}

.u-mt-s {
  margin-top: 10px !important;
}

.u-mt-m {
  margin-top: 20px !important;
}

.u-mt-l {
  margin-top: 30px !important;
}

.u-mt-xl {
  margin-top: 30px !important;
}

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

@media screen and (min-width: 768px) {
  .u-mt-xs {
    margin-top: 10px !important;
  }
  .u-mt-s {
    margin-top: 20px !important;
  }
  .u-mt-m {
    margin-top: 30px !important;
  }
  .u-mt-l {
    margin-top: 60px !important;
  }
  .u-mt-xl {
    margin-top: 80px !important;
  }
}
.u-bg {
  background-color: var(--base-c);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.u-gothic {
  font-family: Geomanist, "小塚ゴシック Pro", "Kozuka Gothic Pro", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, Helvetica, sans-serif !important;
}

.u-mincho {
  font-family: "Shippori Mincho B1", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Sawarabi Mincho", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif !important;
}

.u-goldplay {
  font-family: "Goldplay", "小塚ゴシック Pro", "Kozuka Gothic Pro", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, Helvetica, sans-serif !important;
}

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

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

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

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

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

/*-----------ベース -----------*/
/*-----------レイアウト　接頭辞「l-」-----------*/
/*----------パーツ 接頭辞「c-」------------*/
/*--------個別ページ　接頭辞「p-」--------------*/
/*---------ヘルパークラス　接頭辞「u-」-------------*/