@charset "UTF-8";
:root {
  --yellow: #ffef00;
  --lightyellow: #f9f2bb;
  --blue: #0092f1;
  --navy: #00608d;
  --lightnavy: #7fafc6;
  --lightblue: #e9f0f7;
  --lightgreen: #dcedd0;
  --red: #fc0000;
  --orange: #df2b50;
  --white: #fff;
  --offwhite: #f9f9f9;
  --black: #333333;
  --grey: #f2fafc;
  --darkgrey: #e2e7ec;
  --lightgrey: #fafafa;
  --ivory: #f5f1eb;
  --main-c: var(--navy);
  --sub-c: var(--lightnavy);
  --base-c: var(--lightgrey);
  --accent-c: var(--yellow);
  --bg-c: var(--grey);
  --border-c: var(--darkgrey);
}

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

[data-aos=text-up].aos-init .anime-wrap {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
}
[data-aos=text-up].aos-animate {
  overflow: hidden;
}
[data-aos=text-up].aos-animate .anime-wrap {
  display: block;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
  -webkit-animation-name: fadeUp;
          animation-name: fadeUp;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes fadeUp {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeUp {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    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;
}

body {
  font-family: "Noto Sans JP", "Lato", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, Helvetica, sans-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: 0.875rem;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1rem;
  }
}

a {
  color: inherit;
  cursor: pointer;
}

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

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

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

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

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

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

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

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

h4 {
  font-size: 4.2666666667vw;
}
@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.375rem;
  }
}

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

.l-archive__inner {
  width: 90%;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  padding: 4rem 0;
}
@media screen and (min-width: 768px) {
  .l-archive__inner {
    padding: 8rem 0;
  }
}

.l-archive__container {
  max-width: 1320px;
  margin: 0 auto;
}

.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 {
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 2.5rem;
       -moz-column-gap: 2.5rem;
            column-gap: 2.5rem;
    row-gap: 4rem;
  }
}
@media screen and (min-width: 1280px) {
  .l-archive__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.l-archive__main {
  width: 100%;
}

.l-archive__item {
  background-color: var(--white);
  -webkit-filter: drop-shadow(0px 3px 15px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0px 3px 15px rgba(0, 0, 0, 0.1));
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.l-archive__item:hover {
  -webkit-filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.2));
}
@media screen and (min-width: 768px) {
  .l-archive__item {
    margin-top: 0;
    padding-bottom: 0;
  }
}
.l-archive__item .link {
  text-decoration: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
@media screen and (min-width: 768px) {
  .l-archive__item .link {
    grid-template-columns: 1fr;
  }
}
.l-archive__item .head {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
}
.l-archive__item .head::before {
  content: "";
  float: left;
  padding-top: 56.25%;
}
.l-archive__item .head::after {
  content: "";
  display: block;
  clear: both;
}
.l-archive__item .head > :first-child {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-archive__item .head .image-wrap {
  overflow: hidden;
}
.l-archive__item .head .image-wrap img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-left: auto;
  margin-right: auto;
}
.l-archive__item .body {
  padding: 0.5rem 2rem 1.5rem;
  position: relative;
}
.l-archive__item .body .title {
  font-size: clamp(1.125rem, 0.9712rem + 0.7692vw, 1.4rem);
  color: var(--main-c);
  font-weight: normal;
  text-align: center;
}
.l-archive__item .body .terms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  margin-top: 0.5em;
}
.l-archive__item .body .catch {
  margin-top: 2em;
}
.l-archive__item .more {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .l-archive__item .more {
    right: 2rem;
    bottom: 1rem;
  }
}
.l-archive__item .more:after {
  position: absolute;
  bottom: -5px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: var(--main-c);
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.l-archive__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-archive__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  width: calc(100% - 5.5vw);
  gap: 1rem;
}
.l-archive__category .link {
  text-decoration: none;
  border: solid 1px var(--main-c);
  border-radius: 5px;
  color: var(--main-c);
  padding: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-archive__category .link:hover {
  background-color: var(--white);
  color: var(--main-c);
}
.l-archive__category .link.is-active {
  background-color: var(--main-c);
  color: var(--white);
}

.l-article__wrapper {
  overflow-x: hidden;
}

.l-article__inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  padding: 3rem 0;
}
@media screen and (min-width: 768px) {
  .l-article__inner {
    padding: 8rem 0;
  }
}

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

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

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

.l-article__accent {
  position: absolute;
  z-index: -1;
  width: 40%;
  max-width: 453px;
}
.l-article__accent:nth-child(1) {
  -webkit-animation: wobbling_x 1.8s ease-in-out infinite alternate, wobbling_y 2.8s ease-in-out infinite alternate;
          animation: wobbling_x 1.8s ease-in-out infinite alternate, wobbling_y 2.8s ease-in-out infinite alternate;
  top: 43%;
  left: -21%;
}
@-webkit-keyframes wobbling_x {
  0% {
    margin-left: 4rem;
    scale: 1;
  }
  100% {
    margin-left: 0;
    scale: 1.1;
  }
}
@keyframes wobbling_x {
  0% {
    margin-left: 4rem;
    scale: 1;
  }
  100% {
    margin-left: 0;
    scale: 1.1;
  }
}
@-webkit-keyframes wobbling_y {
  0% {
    margin-top: 0;
    scale: 1;
  }
  100% {
    margin-top: 6rem;
    scale: 1.1;
  }
}
@keyframes wobbling_y {
  0% {
    margin-top: 0;
    scale: 1;
  }
  100% {
    margin-top: 6rem;
    scale: 1.1;
  }
}
@media screen and (min-width: 768px) {
  .l-article__accent:nth-child(1) {
    width: auto;
    top: 42%;
    left: -30%;
  }
}
.l-article__accent:nth-child(2) {
  -webkit-animation: wobbling_x 1.8s ease-in-out infinite alternate, wobbling_y 2.8s ease-in-out infinite alternate;
          animation: wobbling_x 1.8s ease-in-out infinite alternate, wobbling_y 2.8s ease-in-out infinite alternate;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  bottom: 21%;
  left: 70%;
}
@keyframes wobbling_x {
  0% {
    margin-left: 4rem;
    scale: 1;
  }
  100% {
    margin-left: 0;
    scale: 1.1;
  }
}
@keyframes wobbling_y {
  0% {
    margin-top: 0;
    scale: 1;
  }
  100% {
    margin-top: 6rem;
    scale: 1.1;
  }
}
@media screen and (min-width: 768px) {
  .l-article__accent:nth-child(2) {
    width: auto;
    bottom: 10%;
    left: 74%;
  }
}

.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__info {
  max-width: 765px;
  margin-left: auto;
  margin-right: auto;
}

.l-article__info-container {
  background-color: var(--white);
  -webkit-filter: drop-shadow(0px 3px 15px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0px 3px 15px rgba(0, 0, 0, 0.1));
  padding: 3rem;
  border-radius: 10px;
  margin-top: 3.5rem;
}
.l-article__info-container .thumbnail {
  margin-left: auto;
  margin-right: auto;
}
.l-article__info-container .title {
  text-align: center;
  color: var(--main-c);
  font-size: clamp(1.25rem, 0.9936rem + 1.2821vw, 1.875rem);
}
.l-article__info-container .catch {
  margin-top: 1em;
}

.l-article__info-terms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  margin-top: 2rem;
}

.l-article__title {
  text-align: center;
  color: var(--main-c);
  font-size: clamp(1.375rem, 1.016rem + 1.7949vw, 2.25rem);
}

.l-article__content {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .l-article__content {
    margin-top: 7rem;
  }
}
.l-article__content:before, .l-article__content:after {
  content: "";
  display: block;
  clear: both;
}

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

.l-article__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__content-wrapper + .l-article__content-wrapper {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .l-article__content-wrapper + .l-article__content-wrapper {
    margin-top: 7rem;
  }
}

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

.l-wrapper {
  padding: 10px;
}

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

.l-editor-wrapper {
  margin-top: 0;
}

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

.l-inner--full {
  width: 100%;
  z-index: 0;
  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-lightgrey-wrapper {
  background-color: var(--base-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 {
  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-overlay {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  position: fixed;
  right: -100%;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.l-overlay.is-open {
  right: 0;
  opacity: 1;
}

.l-footer {
  width: 100%;
  border-top: solid 1px #C8C8C8;
}

.l-footer__top {
  padding: 3rem 0;
}

.l-footer__bottom {
  color: var(--white);
  background-color: var(--main-c);
  text-align: center;
  padding: 0.5em;
  font-weight: 300;
}

.l-footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-footer__nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-footer__nav-item:not(:last-child) {
  gap: 1.5em;
  margin-right: 1.5em;
}
.l-footer__nav-item:not(:last-child):after {
  content: "";
  width: 1px;
  height: 1em;
  background-color: var(--black);
}

.l-footer__nav-ttl {
  letter-spacing: 2px;
  text-decoration: none;
  position: relative;
  display: inline-block;
  text-decoration: none;
  font-size: 0.75rem;
}
.l-footer__nav-ttl::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  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: right top;
          transform-origin: right top;
}
.l-footer__nav-ttl:hover::after {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
@media screen and (min-width: 768px) {
  .l-footer__nav-ttl {
    font-size: 1rem;
  }
}

.l-footer__logo-list {
  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: 2rem;
}
.l-footer__logo-list .image {
  height: 40px;
}
@media screen and (max-width: 767px) {
  .l-footer__logo-list .image {
    height: 36px;
  }
}

.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: 120px;
  }
}
.l-header.-unpinned {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

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

.c-article__catch {
  font-size: 2.25rem;
}

.c-article__text-area .c-article__text {
  background-color: var(--bg-c);
  padding: 2rem;
}
@media screen and (min-width: 768px) {
  .c-article__text-area .c-article__text {
    padding: 3rem 5rem;
  }
}
.c-article__text-area .c-article__title + .c-article__text {
  margin-top: -1.5rem;
}

.c-article__media .body {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .c-article__media .body {
    margin-top: 15px;
  }
}
.c-article__media.-lg .image {
  -webkit-filter: drop-shadow(0px 3px 15px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0px 3px 15px rgba(0, 0, 0, 0.1));
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.c-article__media.-lg .c-article__title + * {
  margin-top: 4rem;
}
.c-article__media.-lg .c-article__title {
  position: relative;
}
.c-article__media.-lg .c-article__title:before {
  content: "";
  display: block;
  width: 49px;
  height: 3px;
  background-color: var(--main-c);
  position: absolute;
  bottom: -1rem;
  left: 0;
  right: 0;
  margin: auto;
}
.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: clamp(1.5rem, 1.1923rem + 1.5385vw, 2.25rem);
  text-align: center;
  color: var(--main-c);
}

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

.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: var(--main-c);
  mix-blend-mode: multiply;
  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: 1.2em 3em;
  display: inline-block;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  color: var(--white);
  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: var(--white);
}
.c-button:hover:after, .c-button:active:after {
  border-color: var(--main-c);
}
@media screen and (min-width: 768px) {
  .c-button {
    font-size: 1.125rem;
  }
}

@media screen and (min-width: 768px) {
  .c-button--sm, .c-button--sm-abnormal,
  .c-button--sm-border {
    max-width: 300px;
  }
}
.c-button--sm .c-button--download-icon, .c-button--sm-abnormal .c-button--download-icon,
.c-button--sm-border .c-button--download-icon {
  position: absolute;
  right: 1.2rem;
}

.c-button--sm, .c-button--sm-abnormal,
.c-button--sm-border,
.c-button--lg,
.c-button--lg-abnormal,
.c-button--lg-border {
  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;
  position: relative;
}

.c-button--lg, .c-button--lg-abnormal,
.c-button--lg-border {
  min-width: 100%;
}
@media screen and (min-width: 768px) {
  .c-button--lg, .c-button--lg-abnormal,
  .c-button--lg-border {
    min-width: 320px;
  }
}
.c-button--lg .c-button--download-icon, .c-button--lg-abnormal .c-button--download-icon,
.c-button--lg-border .c-button--download-icon {
  position: absolute;
  right: 2rem;
}

.c-button--sm-abnormal,
.c-button--lg-abnormal {
  background-color: var(--sub-c);
  border: 2px solid var(--sub-c);
}
.c-button--sm-abnormal:hover, .c-button--sm-abnormal:active,
.c-button--lg-abnormal:hover,
.c-button--lg-abnormal:active {
  color: var(--sub-c);
}
.c-button--sm-abnormal:hover:after, .c-button--sm-abnormal:active:after,
.c-button--lg-abnormal:hover:after,
.c-button--lg-abnormal:active:after {
  border-color: var(--sub-c);
}

.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--lg path, .c-button--lg-abnormal path,
.c-button--lg-border path,
.c-button--sm path,
.c-button--sm-abnormal path,
.c-button--sm-border path {
  fill: var(--white);
}
.c-button--lg:hover path, .c-button--lg-abnormal:hover path,
.c-button--lg-border:hover path, .c-button--lg:active path, .c-button--lg-abnormal:active path,
.c-button--lg-border:active path,
.c-button--sm:hover path,
.c-button--sm-abnormal:hover path,
.c-button--sm-border:hover path,
.c-button--sm:active path,
.c-button--sm-abnormal:active path,
.c-button--sm-border:active path {
  fill: var(--main-c);
}

.c-button--lg-abnormal path,
.c-button--sm-abnormal path {
  fill: var(--white);
}
.c-button--lg-abnormal:hover path, .c-button--lg-abnormal:active path,
.c-button--sm-abnormal:hover path,
.c-button--sm-abnormal:active path {
  fill: var(--sub-c);
}

.c-button--lg-border path,
.c-button--sm-border path {
  fill: var(--main-c);
}
.c-button--lg-border:hover path, .c-button--lg-border:active path,
.c-button--sm-border:hover path,
.c-button--sm-border:active path {
  fill: var(--white);
}

.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 {
  width: 100%;
  height: 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));
  background-color: var(--white);
}
.c-card-img .c-card-img__body {
  padding: 2em;
}

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

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

.c-card-img--shadow {
  -webkit-filter: drop-shadow(5px 5px 30px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(5px 5px 30px rgba(0, 0, 0, 0.1));
}
.c-card-img--shadow .c-card-img__body {
  padding: 2em;
}

.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(5px 5px 30px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(5px 5px 30px rgba(0, 0, 0, 0.1));
}

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

.c-card__head__text {
  color: #fff;
  display: table-cell;
  vertical-align: middle;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .c-card__head__text {
    font-size: 16px;
  }
}

.c-card__body {
  width: 100%;
  padding: 10px 15px;
}
@media screen and (min-width: 768px) {
  .c-card__body {
    padding: 1rem 1.5rem;
  }
}

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

.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;
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", YuMincho, "Yu Mincho", serif;
}
@media screen and (min-width: 768px) {
  .c-chart__year-title {
    font-size: 2.875rem;
    line-height: 1;
  }
}

.c-chart__year-sub-title {
  font-size: 4.8vw;
  color: var(--main-c);
}
@media screen and (min-width: 768px) {
  .c-chart__year-sub-title {
    font-size: 1rem;
    -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;
}

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

.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: var(--main-c);
  mix-blend-mode: multiply;
  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 {
  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-conversion__button--main {
  border: 2px solid var(--main-c);
  background-color: var(--main-c);
  border-radius: 5em;
}
.c-conversion__button--white {
  color: var(--main-c);
  border: 2px solid var(--white);
  background-color: var(--white);
  border-radius: 5em;
}
.c-conversion__button--white:hover, .c-conversion__button--white:active {
  color: var(--main-c);
  background-color: #fff;
}
.c-conversion__button--white:hover:after, .c-conversion__button--white:active:after {
  border-color: var(--main-c);
}

.c-conversion__sub-button {
  width: 90%;
  color: var(--main-c);
  border: 2px solid var(--white);
  background-color: var(--white);
}
@media screen and (min-width: 768px) {
  .c-conversion__sub-button {
    width: 100%;
    max-width: 300px;
  }
}
.c-conversion__sub-button:hover, .c-conversion__sub-button:active {
  color: var(--main-c);
  background-color: #fff;
}
.c-conversion__sub-button:hover:after, .c-conversion__sub-button:active:after {
  border-color: var(--main-c);
}

.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-function-list-compare {
  position: relative;
}
.c-function-list-compare .head {
  background-color: #3498DB;
  color: var(--white);
  display: grid;
  grid-template-columns: 40% 29% 29%;
  -webkit-column-gap: 1%;
     -moz-column-gap: 1%;
          column-gap: 1%;
}
@media screen and (min-width: 768px) {
  .c-function-list-compare .head {
    grid-template-columns: 20% 10em 11em minmax(0, 1fr);
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
}
.c-function-list-compare .head span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 5px 1rem;
}
@media screen and (min-width: 768px) {
  .c-function-list-compare .head span {
    padding: 5px 2rem;
  }
}
.c-function-list-compare .head span:nth-child(2):before, .c-function-list-compare .head span:nth-child(3):before {
  content: "";
  border-style: solid;
  border-top-width: 10px;
  border-left-width: 5px;
  border-right-width: 5px;
  border-bottom-width: 5px;
  position: absolute;
  top: -10px;
  height: 105%;
  border-radius: 5px;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .c-function-list-compare .head span:nth-child(2):before, .c-function-list-compare .head span:nth-child(3):before {
    height: 102%;
  }
}
.c-function-list-compare .head span:nth-child(2) {
  background-color: #83C0DC;
  padding: 5px 0.5rem;
}
@media screen and (min-width: 768px) {
  .c-function-list-compare .head span:nth-child(2) {
    padding: 5px 1rem;
  }
}
.c-function-list-compare .head span:nth-child(2):before {
  border-color: #83C0DC;
  left: 41%;
  width: 30%;
}
@media screen and (min-width: 768px) {
  .c-function-list-compare .head span:nth-child(2):before {
    left: calc(20% + 5px);
    width: calc(10em + 5px);
  }
}
.c-function-list-compare .head span:nth-child(3) {
  background-color: #D8244B;
  padding: 5px 0.5rem;
}
@media screen and (min-width: 768px) {
  .c-function-list-compare .head span:nth-child(3) {
    padding: 5px 1rem;
  }
}
.c-function-list-compare .head span:nth-child(3):before {
  border-color: #D8244B;
  left: 71%;
  width: 30%;
}
@media screen and (min-width: 768px) {
  .c-function-list-compare .head span:nth-child(3):before {
    left: calc(20% + 10em + 15px);
    width: calc(11em + 5px);
  }
}
.c-function-list-compare .head span:nth-child(4) {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-function-list-compare .head span:nth-child(4) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.c-function-list-compare__list {
  overflow-y: auto;
  max-height: 228px;
}
@media screen and (min-width: 768px) {
  .c-function-list-compare__list {
    max-height: 788px;
  }
}
.c-function-list-compare__list.-scrolled .hint {
  opacity: 0;
}
.c-function-list-compare__list .hint {
  position: absolute;
  top: 45%;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: rgba(0, 96, 141, 0.45);
  border-radius: 50%;
  width: 97px;
  height: 97px;
  display: grid;
  place-content: center;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .c-function-list-compare__list .hint {
    display: none;
  }
}
.c-function-list-compare__list .hint .text {
  color: var(--white);
  font-size: 0.5625rem;
  text-align: center;
  line-height: 1.4;
}
.c-function-list-compare__list .hint .finger {
  display: block;
  margin-top: 5px;
  margin-left: auto;
  margin-right: auto;
  -webkit-animation: tap 2s infinite ease-in-out;
          animation: tap 2s infinite ease-in-out;
}
@-webkit-keyframes tap {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes tap {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

.c-function-list-compare__item {
  display: grid;
  grid-template-columns: 40% 29% 29%;
  -webkit-column-gap: 1%;
     -moz-column-gap: 1%;
          column-gap: 1%;
}
@media screen and (min-width: 768px) {
  .c-function-list-compare__item {
    grid-template-columns: 20% 10em 11em minmax(0, 1fr);
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
}
.c-function-list-compare__item:nth-child(even) {
  background-color: var(--white);
}
.c-function-list-compare__item:nth-child(odd) {
  background-color: var(--bg-c);
}
.c-function-list-compare__item .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0.5rem 1rem;
}
@media screen and (min-width: 768px) {
  .c-function-list-compare__item .item {
    padding: 1rem 2rem;
  }
}
.c-function-list-compare__item .item.-function {
  color: var(--main-c);
}
@media screen and (min-width: 768px) {
  .c-function-list-compare__item .item.-function {
    pointer-events: none;
    text-decoration: none;
  }
}
.c-function-list-compare__item .item.-note {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-function-list-compare__item .item.-note {
    display: inline-block;
  }
}

.c-function-list-modal__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;
}

.c-function-list-modal__item {
  position: relative;
  -webkit-box-shadow: 0px 3px 30px 0px rgba(170, 181, 190, 0.3);
          box-shadow: 0px 3px 30px 0px rgba(170, 181, 190, 0.3);
  background-color: var(--white);
  padding: 1.5rem 1.5rem 6rem;
  border-radius: 15px;
  width: 100%;
}
@media screen and (max-width: 639px) {
  .c-function-list-modal__item {
    padding: 1.5rem;
  }
}
@media screen and (min-width: 640px) {
  .c-function-list-modal__item {
    width: calc(50% - 1rem);
  }
}
@media screen and (min-width: 1024px) {
  .c-function-list-modal__item {
    width: calc(30% - 1rem);
  }
}
.c-function-list-modal__item .image {
  margin-left: auto;
  margin-right: auto;
}
.c-function-list-modal__item .title {
  margin-top: 1rem;
  color: var(--main-c);
  text-align: center;
  line-height: 1.2;
}
@media screen and (min-width: 640px) {
  .c-function-list-modal__item .title {
    font-size: 2.9333333333vw;
  }
}
@media screen and (min-width: 1024px) {
  .c-function-list-modal__item .title {
    font-size: 1.5rem;
  }
}
.c-function-list-modal__item .text {
  margin-top: 0.8em;
}
@media screen and (min-width: 768px) {
  .c-function-list-modal__item .text {
    font-size: 1.125rem;
  }
}
.c-function-list-modal__item .button-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 639px) {
  .c-function-list-modal__item .button-wrapper {
    position: relative;
    bottom: 0;
    margin-top: 1rem;
  }
}
.c-function-list-modal__item .button {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5em 1.5em;
  border: solid 2px var(--main-c);
  color: var(--main-c);
  border-radius: 2em;
  text-decoration: none;
  text-align: center;
}

.c-grid {
  display: grid;
}

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

.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;
    margin: 1rem 0 1.5rem 0;
  }
}

.c-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
}
@media screen and (min-width: 1024px) {
  .c-header {
    padding: 0;
    display: grid;
    grid-template-areas: "logo nav";
    grid-template-columns: 15% 85%;
  }
}
.c-header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.7);
}

.c-header__logo {
  grid-area: logo;
  padding: 10px;
  width: 30%;
}
@media screen and (min-width: 1024px) {
  .c-header__logo {
    width: auto;
    max-width: unset;
    padding: 10%;
  }
}
.c-header__logo img {
  height: 100%;
  margin: 0 auto;
}

.c-header__nav {
  grid-area: nav;
  position: absolute;
  top: 0%;
  right: -100%;
  height: 100vh;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: var(--main-c);
  padding: 80px 5% 0;
}
@media screen and (min-width: 1024px) {
  .c-header__nav {
    height: auto;
    width: 100%;
    padding: 0 1%;
    background-color: transparent;
  }
}
.c-header__nav.is-open {
  right: 0;
}
@media screen and (min-width: 1024px) {
  .c-header__nav {
    position: relative;
    top: auto;
    right: auto;
    background-color: transparent;
    width: auto;
  }
}
.c-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .c-header__nav-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 2%;
  }
}
@media screen and (min-width: 1280px) {
  .c-header__nav-list {
    gap: 1.5rem;
  }
}

.c-header__nav-item {
  position: relative;
}
.c-header__nav-item:hover .c-header__sub-list {
  opacity: 1;
  visibility: visible;
}
.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(--black);
  border-left: 1px solid var(--black);
  -webkit-transform: rotate(-45deg) translate(60%, 20%);
          transform: rotate(-45deg) translate(60%, 20%);
}
.c-header__nav-item:not(:last-of-type) {
  color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
@media screen and (min-width: 1024px) {
  .c-header__nav-item:not(:last-of-type) {
    color: var(--black);
  }
}
.c-header__nav-item:not(:last-of-type):after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 0.5em;
  background-image: url("../images/icons/header_arrow-white.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .c-header__nav-item:not(:last-of-type):after {
    background-image: url("../images/icons/header_arrow.svg");
  }
}
.c-header__nav-item:last-of-type {
  color: var(--main-c);
  background-color: var(--white);
  padding: 0.5em 1em;
  border-radius: 3em;
  text-align: center;
  width: auto;
  font-size: 0.75rem;
}
@media screen and (min-width: 1024px) {
  .c-header__nav-item:last-of-type {
    color: var(--white);
    background-color: var(--main-c);
    padding: 1em;
  }
}
@media screen and (min-width: 1280px) {
  .c-header__nav-item:last-of-type {
    width: 212px;
  }
}

.c-header__nav-ttl {
  text-align: center;
  text-decoration: none;
  display: block;
}
@media screen and (min-width: 1024px) {
  .c-header__nav-ttl {
    font-size: 1.0416666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .c-header__nav-ttl {
    font-size: 1rem;
  }
}

@media screen and (min-width: 1024px) {
  .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: 1024px) {
  .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: 1024px) {
  .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: -4px;
  -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: 1024px) {
  .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: 1024px) {
  .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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50px;
  height: 50px;
  position: relative;
  cursor: pointer;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .c-header__hamburger {
    width: 100px;
  }
}
@media screen and (min-width: 1024px) {
  .c-header__hamburger {
    display: none;
  }
}
.c-header__hamburger:before {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  border-radius: 100%;
}
.c-header__hamburger span {
  display: block;
  width: 50%;
  height: 1px;
  background: var(--black);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 1;
}
.c-header__hamburger.is-active span {
  background: var(--white);
}
.c-header__hamburger.is-active span:first-child {
  -webkit-transform: rotate(45deg) translate3D(6px, 8px, 0);
          transform: rotate(45deg) translate3D(6px, 8px, 0);
}
.c-header__hamburger.is-active span:last-child {
  -webkit-transform: rotate(-45deg) translate3D(4px, -8px, 0);
          transform: rotate(-45deg) translate3D(4px, -8px, 0);
}
.c-header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

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

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

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

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

.c-interview-visual__title-wrap {
  z-index: 1;
}
@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: "Montserrat", sans-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: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Sawarabi Mincho", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  position: relative;
}
@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;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .c-interview-visual__cont {
    width: 110%;
    padding: 0;
  }
}

.c-interview-visual__catch {
  font-size: 4.8vw;
  font-family: "游明朝", 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 {
  border-bottom: 1px solid var(--border-c);
}
.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__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(--bg-c);
}
@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;
  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 {
  font-weight: bold;
  display: inline-block;
  padding: 8px 1em;
  font-size: 3.7333333333vw;
  text-align: center;
  position: relative;
  z-index: 1;
  color: var(--main-c);
}
.c-list-define__title::before {
  content: "✓";
  width: 1.2em;
  height: 1.2em;
  display: block;
  line-height: 1.2em;
  text-align: center;
  color: var(--main-c);
  border-radius: 50%;
  background-color: var(--white);
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .c-list-define__title {
    padding: 0.5em 1.5em;
    font-size: 1.125rem;
  }
}

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

.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 {
  width: 100%;
}

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

.c-list-image__button {
  margin-top: 15px;
}

@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: 35%;
  }
}
@media screen and (min-width: 768px) {
  .c-list-image--col2 .c-list-image__body {
    width: 65%;
  }
}

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

.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-family: "Montserrat", sans-serif;
  letter-spacing: 0.2em;
  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: 0 0 0 16%;
  }
}

.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: 1rem 0.25rem;
  font-size: 6.9333333333vw;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Sawarabi Mincho", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 400;
  color: var(--main-c);
  background-color: var(--white);
}
@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;
  color: var(--white);
  background-color: var(--main-c);
  -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: 8rem;
    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: "游明朝", 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 15px;
    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__title {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .c-media-full__title {
    font-size: 2.2rem;
  }
}

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

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

.c-media-full__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: 0px 3px 30px rgba(102, 104, 155, 0.5);
          box-shadow: 0px 3px 30px rgba(102, 104, 155, 0.5);
}
@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;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .c-media {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px;
  }
}

.c-media--reverse .c-media__wrap--bg::before {
  left: auto;
  right: 0;
}
@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: 15vw;
    right: auto;
  }
  .c-media--reverse .c-media__cont--float {
    margin: auto -80px auto 0;
  }
  .c-media--reverse .c-media__cont--anime {
    left: 10%;
    right: unset;
  }
}

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

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

.c-media--bg .c-media__cont {
  padding: 50px 0 0 0;
}
@media screen and (min-width: 768px) {
  .c-media--bg .c-media__cont {
    padding: 0 0 0 30px;
    margin: auto 0;
    width: 570px;
  }
}

.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;
  padding: 0;
}

.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 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-media__cont {
    width: 50%;
  }
}

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

.c-media__cont--anime {
  position: absolute;
  z-index: -1;
  -webkit-animation: wobbling_x 1.8s ease-in-out infinite alternate, wobbling_y 2.8s ease-in-out infinite alternate;
          animation: wobbling_x 1.8s ease-in-out infinite alternate, wobbling_y 2.8s ease-in-out infinite alternate;
  top: 7%;
  right: 10%;
}
@keyframes wobbling_x {
  0% {
    margin-left: 4rem;
    scale: 1;
  }
  100% {
    margin-left: 0;
    scale: 1.1;
  }
}
@keyframes wobbling_y {
  0% {
    margin-top: 0;
    scale: 1;
  }
  100% {
    margin-top: 6rem;
    scale: 1.1;
  }
}
@media screen and (max-width: 639px) {
  .c-media__cont--anime {
    top: 35%;
  }
}

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

.c-media__list-title {
  padding-left: 1.5em;
  font-size: 3.7333333333vw;
  font-weight: 600;
  position: relative;
  color: var(--main-c);
}
.c-media__list-title::before {
  content: "✓";
  width: 1.2em;
  height: 1.2em;
  display: block;
  line-height: 1.2em;
  text-align: center;
  color: 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 {
  color: var(--main-c);
}
@media screen and (min-width: 768px) {
  .c-media__title {
    font-size: 1.8rem;
  }
}
.c-media__title + .c-media__sub-title {
  color: var(--black);
  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-modal {
  --modal-max-size: 90%;
  --modal-size: auto;
}
.c-modal button[data-modal-close] {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--white);
  border-radius: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
.c-modal.-comparison [data-modal-dialog] {
  border: solid 1px #3498DB;
  padding: 0;
}
.c-modal.-comparison .head {
  background-color: #3498DB;
  color: var(--white);
  padding: 0.4em 1em;
}
.c-modal.-comparison .body {
  padding: 1em;
}

.c-pagetop {
  display: block;
  z-index: 3;
  position: fixed;
  right: 3%;
  bottom: 50px;
  border-radius: 100%;
  cursor: pointer;
  width: 70px;
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.5s ease-in-out, -webkit-filter 0.5s ease-in-out;
  transition: opacity 0.3s ease-in-out, -webkit-transform 0.5s ease-in-out, -webkit-filter 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, opacity 0.3s ease-in-out, filter 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, opacity 0.3s ease-in-out, filter 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out, -webkit-filter 0.5s ease-in-out;
}
@media screen and (min-width: 768px) {
  .c-pagetop {
    width: 120px;
  }
}
.c-pagetop.is-show {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}
.c-pagetop:hover {
  opacity: 0.6;
}

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

.c-point__num {
  width: 15%;
  padding: 10px;
  font-size: 6.4vw;
  color: var(--main-c);
  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;
  }
}

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

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

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

.c-profile__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: 1rem 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;
  text-align: left;
}
@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 {
  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(--orange);
  border-color: var(--orange);
}
.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;
  bottom: -5%;
  right: 3%;
  /* 丸の描写 */
  /* 線の描写 */
  /*Scrollテキストの描写*/
}
@media screen and (min-width: 768px) {
  .c-scrolldown {
    bottom: 5%;
  }
}
.c-scrolldown:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: -4px;
  /*丸の形状*/
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--main-c);
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  -webkit-animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
          animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}
.c-scrolldown:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: 0;
  /*線の形状*/
  width: 1px;
  height: 93px;
  background: var(--main-c);
}
.c-scrolldown span {
  /*描画位置*/
  position: absolute;
  /*テキストの形状*/
  color: var(--main-c);
  letter-spacing: 0.05em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  top: -11.5em;
  left: -0.9em;
}
@media screen and (min-width: 768px) {
  .c-scrolldown span {
    top: -10em;
    font-size: 1.125rem;
  }
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@-webkit-keyframes circlemove {
  0% {
    bottom: 93px;
  }
  100% {
    bottom: -5px;
  }
}
@keyframes circlemove {
  0% {
    bottom: 93px;
  }
  100% {
    bottom: -5px;
  }
}
/*上から下にかけて丸が透過→不透明→透過する*/
@-webkit-keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
.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(--base-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-area [data-tab-label] {
  display: inline-block;
  padding: 8px 30px;
}
.c-tab-area [data-tab-panel] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  overflow: auto;
}
.c-tab-area [data-tab=tab1]:checked ~ nav ~ [data-tab-panel=tab1],
.c-tab-area [data-tab=tab2]:checked ~ nav ~ [data-tab-panel=tab2],
.c-tab-area [data-tab=tab3]:checked ~ nav ~ [data-tab-panel=tab3] {
  height: 12em;
}
.c-tab-area [data-tab=tab1]:checked ~ nav ~ [data-tab-panel=tab1] .link,
.c-tab-area [data-tab=tab2]:checked ~ nav ~ [data-tab-panel=tab2] .link,
.c-tab-area [data-tab=tab3]:checked ~ nav ~ [data-tab-panel=tab3] .link {
  -webkit-animation: linkSlideIn 0.8s forwards;
          animation: linkSlideIn 0.8s forwards;
}
.c-tab-area [data-tab=tab1]:checked ~ nav ~ [data-tab-panel=tab1] .link:nth-child(0),
.c-tab-area [data-tab=tab2]:checked ~ nav ~ [data-tab-panel=tab2] .link:nth-child(0),
.c-tab-area [data-tab=tab3]:checked ~ nav ~ [data-tab-panel=tab3] .link:nth-child(0) {
  -webkit-animation-delay: calc(0 * .15s);
          animation-delay: calc(0 * .15s);
}
.c-tab-area [data-tab=tab1]:checked ~ nav ~ [data-tab-panel=tab1] .link:nth-child(1),
.c-tab-area [data-tab=tab2]:checked ~ nav ~ [data-tab-panel=tab2] .link:nth-child(1),
.c-tab-area [data-tab=tab3]:checked ~ nav ~ [data-tab-panel=tab3] .link:nth-child(1) {
  -webkit-animation-delay: calc(1 * .15s);
          animation-delay: calc(1 * .15s);
}
.c-tab-area [data-tab=tab1]:checked ~ nav ~ [data-tab-panel=tab1] .link:nth-child(2),
.c-tab-area [data-tab=tab2]:checked ~ nav ~ [data-tab-panel=tab2] .link:nth-child(2),
.c-tab-area [data-tab=tab3]:checked ~ nav ~ [data-tab-panel=tab3] .link:nth-child(2) {
  -webkit-animation-delay: calc(2 * .15s);
          animation-delay: calc(2 * .15s);
}
.c-tab-area [data-tab=tab1]:checked ~ nav ~ [data-tab-panel=tab1] .link:nth-child(3),
.c-tab-area [data-tab=tab2]:checked ~ nav ~ [data-tab-panel=tab2] .link:nth-child(3),
.c-tab-area [data-tab=tab3]:checked ~ nav ~ [data-tab-panel=tab3] .link:nth-child(3) {
  -webkit-animation-delay: calc(3 * .15s);
          animation-delay: calc(3 * .15s);
}
.c-tab-area [data-tab=tab1]:checked ~ nav ~ [data-tab-panel=tab1] .link:nth-child(4),
.c-tab-area [data-tab=tab2]:checked ~ nav ~ [data-tab-panel=tab2] .link:nth-child(4),
.c-tab-area [data-tab=tab3]:checked ~ nav ~ [data-tab-panel=tab3] .link:nth-child(4) {
  -webkit-animation-delay: calc(4 * .15s);
          animation-delay: calc(4 * .15s);
}
.c-tab-area .link {
  text-decoration: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transform: translateX(5rem);
          transform: translateX(5rem);
  opacity: 0;
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.c-tab-area .link::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #000;
  bottom: -4px;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.c-tab-area .link:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.c-tab-area .link .time {
  color: var(--darkgrey);
  font-size: 0.875rem;
}
.c-tab-area .link .title {
  margin-top: 5px;
  font-size: clamp(1rem, 0.8974rem + 0.5128vw, 1.25rem);
}

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

@keyframes linkSlideIn {
  0% {
    -webkit-transform: translateX(5rem);
            transform: translateX(5rem);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
.c-table-col2 {
  border-collapse: collapse;
  width: 100%;
}

.c-table-col2__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-bottom: 1px solid var(--border-c);
}
.c-table-col2__row + .c-table-col2__row {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .c-table-col2__row {
    display: inherit;
  }
  .c-table-col2__row + .c-table-col2__row {
    margin-top: 0;
  }
}

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

.c-table-col2__title {
  padding: 0.5em 1.5em 0.5em 0;
  border-bottom: 2px solid var(--main-c);
  background-color: var(--white);
}
@media screen and (min-width: 768px) {
  .c-table-col2__title {
    min-width: 200px;
    width: auto;
    white-space: nowrap;
  }
}

.c-table-col2__cont {
  border-top-color: transparent;
  background-color: var(--white);
}
.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: 1em;
  border: 1px solid var(--border-c);
  vertical-align: middle;
}

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

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

.c-term {
  background-color: var(--white);
  color: var(--main-c);
  border: solid 1px var(--main-c);
  border-radius: 3rem;
  padding: 2px 1em;
  font-size: clamp(0.875rem, 0.8237rem + 0.2564vw, 1rem);
}

.c-text-box {
  padding: 15px 20px;
  background-color: var(--bg-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 {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .c-text {
    font-size: 16px;
  }
}

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

.c-title-bg-another {
  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-another {
    min-height: 300px;
    padding: 40px 0;
  }
}

.c-title-bg-another--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-another--black .c-title-bg-another__text::before {
  content: "";
  display: inline-block;
  background-color: #fff;
}

.c-title-bg-another--white {
  color: #333;
}
.c-title-bg-another--white::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.5);
}
.c-title-bg-another--white::before .c-title-bg-another__text::before {
  content: "";
  display: inline-block;
  background-color: #000;
}

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

.c-title-bg-another__text {
  position: relative;
  line-height: 3.75rem;
  font-weight: bold;
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .c-title-bg-another__text {
    font-size: 1.5rem;
  }
}
.c-title-bg-another__text::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 25px;
  height: 3px;
}

.c-title-bg-another__text + .c-title-bg-another__lead {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .c-title-bg-another__text + .c-title-bg-another__lead {
    margin-top: 20px;
    font-size: 1.25rem;
  }
}
.c-title-bg-another__text + .c-title-bg-another__lead p {
  margin: 1rem;
}

.c-title-bg-another__lead + .c-title-bg-another__button {
  margin: 15px 0 10px;
}
@media screen and (min-width: 768px) {
  .c-title-bg-another__lead + .c-title-bg-another__button {
    margin: 20px 0;
    padding: 24px 2em;
    min-width: 410px;
    font-size: 1.25rem;
    letter-spacing: 0.1rem;
  }
}

.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: "Noto Sans JP", "Lato", "メイリオ", 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;
  min-width: 300px;
  padding: 17px 2em;
}
@media screen and (min-width: 768px) {
  .c-title-bg-double__lead + .c-title-bg-double__button {
    margin-top: 20px;
    min-width: 258px;
    padding: 24px 2em;
    font-size: 1.25rem;
    letter-spacing: 0.1rem;
  }
}

.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__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;
}
@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: 1.3em;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .c-title-bg-half__text {
    font-size: 2rem;
  }
}

.c-title-bg-half__sub-text {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 3.7333333333vw;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .c-title-bg-half__sub-text {
    font-size: 1.375rem;
    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;
  min-width: 300px;
  padding: 17px 2em;
}
@media screen and (min-width: 768px) {
  .c-title-bg-half__lead + .c-title-bg-half__button {
    margin-top: 20px;
    min-width: 258px;
    padding: 24px 2em;
    font-size: 1.25rem;
    letter-spacing: 0.1rem;
  }
}

.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(--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: 300px;
    padding: 40px 0;
  }
}

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

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

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

.c-title-bg__text {
  width: 100%;
  line-height: 1.5;
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
}
@media screen and (min-width: 768px) {
  .c-title-bg__text {
    font-size: 2.4rem;
  }
}

.c-title-bg__sub-text {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .c-title-bg__sub-text {
    font-size: 20px;
    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: 15px auto 10px;
}
@media screen and (min-width: 768px) {
  .c-title-bg__lead + .c-title-bg__button {
    margin: 20px auto;
    padding: 24px 2em;
    min-width: 410px;
    font-size: 1.25rem;
    letter-spacing: 0.1rem;
  }
}

.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 {
  font-size: 12vw;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  position: relative;
  z-index: 3;
  text-align: left;
  color: #fff;
  line-height: 0.6;
  letter-spacing: 0.15rem;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .c-title-h1 {
    font-size: 5rem;
  }
}

.c-title-h1--wrapper {
  position: relative;
  overflow: hidden;
}
.c-title-h1--wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-image: url("../images/webp/common/h1-gradation_pc.webp");
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .c-title-h1--wrapper {
    min-height: 318px;
  }
}
.c-title-h1--wrapper .l-inner {
  max-width: 1320px;
  padding: calc(60px + 2rem) 0 40px;
}
@media screen and (min-width: 768px) {
  .c-title-h1--wrapper .l-inner {
    padding: 10rem 0 0;
  }
}
.c-title-h1--wrapper img {
  height: 100%;
}

.c-title-h1--background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.c-title-h1__sub {
  font-size: 0.875rem;
  color: #fff;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .c-title-h1__sub {
    font-size: 1.25rem;
    padding: 0;
  }
}

.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;
  font-size: 1.75rem;
  letter-spacing: 0.15rem;
}
@media screen and (min-width: 768px) {
  .c-title-h2 {
    font-size: 3.375rem;
  }
}

.c-title-h2__sub {
  font-family: "Montserrat", sans-serif;
  color: var(--main-c);
  text-align: center;
  margin-top: 0.7em;
  color: 10px;
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.15rem;
  margin-top: 0.7em;
}
@media screen and (min-width: 768px) {
  .c-title-h2__sub {
    font-size: 1.5rem;
  }
}

.c-title-h3 {
  padding-bottom: 25px;
  position: relative;
  font-size: 1.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: -83px;
}
@media screen and (min-width: 768px) {
  .c-title-h3 {
    font-size: 1.875rem;
  }
}
.c-title-h3::before {
  content: "";
  display: inline-block;
  background-image: url("../images/webp/common/h3_accent.webp");
  width: 83px;
  height: 91px;
  vertical-align: middle;
  mix-blend-mode: multiply;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
.c-title-h3.aos-init::before {
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.c-title-h3.aos-animate::before {
  opacity: 1;
}

.c-title-h4 {
  position: relative;
  font-size: 1.125rem;
  line-height: 3.75rem;
}
@media screen and (min-width: 768px) {
  .c-title-h4 {
    font-size: 1.875rem;
  }
}
.c-title-h4::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 25px;
  height: 3px;
  background-color: var(--main-c);
}

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

@media screen and (min-width: 768px) {
  .c-title-h4--center {
    text-align: center;
  }
  .c-title-h4--center::before {
    content: "";
    display: inline-block;
    right: 0;
    margin: auto;
  }
}

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

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

@media screen and (min-width: 768px) {
  .c-title-h5--center {
    text-align: center;
  }
  .c-title-h5--center::before {
    content: "";
    display: inline-block;
    right: 0;
    margin: auto;
  }
}

.c-title-h6 {
  padding-left: 20px;
  position: relative;
}
.c-title-h6::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  background-color: #333;
}
@media screen and (min-width: 768px) {
  .c-title-h6 {
    padding-left: 40px;
  }
  .c-title-h6::before {
    width: 35px;
  }
}

.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 ul li::marker {
  color: var(--main-c);
}
.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-section {
  padding: 3rem 0;
}
@media screen and (min-width: 768px) {
  .p-contact-section {
    padding: 6rem 0;
  }
}

.p-contact__form {
  width: 100%;
  height: 1500px;
  border: 0;
}
@media screen and (min-width: 400px) {
  .p-contact__form {
    height: 1300px;
  }
}
@media screen and (min-width: 768px) {
  .p-contact__form {
    height: 1000px;
  }
}

/*=============================
共通
=============================*/
.p-front .l-editor-wrapper {
  overflow: hidden;
  margin-top: 0;
  padding-top: 80px;
}
@media screen and (min-width: 768px) {
  .p-front .l-editor-wrapper {
    padding-top: 0;
  }
}

.p-front-section {
  padding: 3rem 0;
}
@media screen and (min-width: 768px) {
  .p-front-section {
    padding: 6rem 0;
  }
}

.p-front-section__title {
  text-align: center;
}
.p-front-section__title .main {
  line-height: 1.3;
  font-size: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-front-section__title .main {
    font-size: 4.0625vw;
  }
}
@media screen and (min-width: 1280px) {
  .p-front-section__title .main {
    font-size: 3.375rem;
  }
}
.p-front-section__title .main small {
  font-size: 0.45em;
}
.p-front-section__title .eng {
  color: var(--main-c);
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  margin-top: 0.7em;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-front-section__title .eng {
    font-size: 1.8229166667vw;
  }
}
@media screen and (min-width: 1280px) {
  .p-front-section__title .eng {
    font-size: 1.5rem;
  }
}

.p-front-section__text {
  text-align: center;
  max-width: 554px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.9;
}

.p-front-section__button {
  -webkit-box-shadow: 0px 3px 30px rgba(102, 104, 155, 0.5);
          box-shadow: 0px 3px 30px rgba(102, 104, 155, 0.5);
  display: block;
  width: 65%;
  text-align: center;
  text-decoration: none;
  color: var(--white);
  background-color: var(--main-c);
  margin-top: 1em;
  margin-left: auto;
  margin-right: auto;
  border-radius: 3em;
  border: 2px solid var(--main-c);
  padding: 0.5em 1em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-front-section__button {
    padding: 0.8em 3em;
    margin-top: 2em;
    font-size: 1.75rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 576px;
  }
}
.p-front-section__button:hover {
  color: var(--main-c);
  background-color: var(--white);
}

/*=============================
アニメーション関連
=============================*/
/*=============================
メインビジュアル
=============================*/
.p-front-mv {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-front-mv {
    padding: 120px 0 3rem;
  }
}
@media screen and (min-width: 1440px) {
  .p-front-mv {
    height: 100vh;
    min-height: 800px;
  }
}

.p-front-mv__accent {
  position: absolute;
  z-index: -1;
}
.p-front-mv__accent:nth-child(1) {
  -webkit-animation: wobbling_x 1.8s ease-in-out infinite alternate, wobbling_y 2.8s ease-in-out infinite alternate;
          animation: wobbling_x 1.8s ease-in-out infinite alternate, wobbling_y 2.8s ease-in-out infinite alternate;
  width: 65%;
  top: -5%;
  left: -11%;
}
@keyframes wobbling_x {
  0% {
    margin-left: 4rem;
    scale: 1;
  }
  100% {
    margin-left: 0;
    scale: 1.1;
  }
}
@keyframes wobbling_y {
  0% {
    margin-top: 0;
    scale: 1;
  }
  100% {
    margin-top: 6rem;
    scale: 1.1;
  }
}
@media screen and (min-width: 768px) {
  .p-front-mv__accent:nth-child(1) {
    width: auto;
    top: 11%;
    left: -7%;
  }
}
.p-front-mv__accent:nth-child(2) {
  -webkit-animation: wobbling_x 1.8s ease-in-out infinite alternate, wobbling_y 2.8s ease-in-out infinite alternate;
          animation: wobbling_x 1.8s ease-in-out infinite alternate, wobbling_y 2.8s ease-in-out infinite alternate;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  width: 65%;
  bottom: 35%;
  left: 42%;
}
@keyframes wobbling_x {
  0% {
    margin-left: 4rem;
    scale: 1;
  }
  100% {
    margin-left: 0;
    scale: 1.1;
  }
}
@keyframes wobbling_y {
  0% {
    margin-top: 0;
    scale: 1;
  }
  100% {
    margin-top: 6rem;
    scale: 1.1;
  }
}
@media screen and (min-width: 768px) {
  .p-front-mv__accent:nth-child(2) {
    width: auto;
    bottom: -6%;
    left: 24%;
  }
}
.p-front-mv__accent:nth-child(3) {
  bottom: 0;
  right: 0;
  height: 38%;
  width: 80%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-front-mv__accent:nth-child(3) {
    top: 0;
    width: 50%;
    height: 100%;
  }
}

.p-front-mv__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 90%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-front-mv__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1440px) {
  .p-front-mv__container {
    width: 100%;
    grid-template-columns: 33% auto;
    gap: 1%;
  }
}

.p-front-mv__content {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-front-mv__content {
    text-align: left;
  }
}
.p-front-mv__content .image {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-front-mv__content .image {
    width: auto;
    margin-left: unset;
  }
}
.p-front-mv__content .title {
  overflow: hidden;
  line-height: 1.4;
  font-size: 1.75rem;
}
.p-front-mv__content .title .anime-wrap {
  display: block;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
  -webkit-animation-name: fadeUp;
          animation-name: fadeUp;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@keyframes fadeUp {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@media screen and (min-width: 768px) {
  .p-front-mv__content .title {
    font-size: 4.1666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .p-front-mv__content .title {
    font-size: 2.875rem;
  }
}
.p-front-mv__content .title strong {
  font-size: 2em;
}
.p-front-mv__content .text {
  overflow: hidden;
  font-size: 1.0625rem;
}
.p-front-mv__content .text .anime-wrap {
  display: block;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
  -webkit-animation-name: fadeUp;
          animation-name: fadeUp;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@keyframes fadeUp {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@media screen and (min-width: 768px) {
  .p-front-mv__content .text {
    font-size: 1.8229166667vw;
    width: 78%;
  }
}
@media screen and (min-width: 1440px) {
  .p-front-mv__content .text {
    font-size: 1.5625rem;
    width: 100%;
  }
}
.p-front-mv__content .text .anime-wrap {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.p-front-mv__content .button {
  -webkit-box-shadow: 0px 3px 30px rgba(102, 104, 155, 0.5);
          box-shadow: 0px 3px 30px rgba(102, 104, 155, 0.5);
  overflow: hidden;
  width: 80%;
  display: block;
  padding: 0.5em 1em;
  background-color: var(--main-c);
  text-decoration: none;
  border-radius: 2em;
  border: solid 2px var(--main-c);
  color: var(--white);
  max-width: 576px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 1rem;
}
.p-front-mv__content .button .anime-wrap {
  display: block;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
  -webkit-animation-name: fadeUp;
          animation-name: fadeUp;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@keyframes fadeUp {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@media screen and (min-width: 768px) {
  .p-front-mv__content .button {
    width: 100%;
    padding: 1em;
    font-size: 1.875vw;
    margin-left: unset;
  }
}
@media screen and (min-width: 1440px) {
  .p-front-mv__content .button {
    font-size: 1.75rem;
  }
}
.p-front-mv__content .button:hover {
  color: var(--main-c);
  background-color: var(--white);
}
.p-front-mv__content .button .anime-wrap {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.p-front-mv__content .note {
  font-size: 0.625rem;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .p-front-mv__content .note {
    font-size: 0.875rem;
  }
}

.p-front-mv__image {
  width: 100%;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-front-mv__image {
    width: auto;
    margin-top: 0;
  }
}
.p-front-mv__image img {
  width: 100%;
}

/*=============================
News
=============================*/
.p-front-section.-news {
  padding: 6rem 0 0;
  margin-bottom: -5rem;
}
@media screen and (min-width: 768px) {
  .p-front-section.-news {
    padding: 0;
    margin-top: 14rem;
    margin-bottom: 0;
  }
}

.p-front-news__container {
  -webkit-box-shadow: 0px 3px 40px 0px rgba(102, 104, 155, 0.16);
          box-shadow: 0px 3px 40px 0px rgba(102, 104, 155, 0.16);
  background-color: var(--white);
  border-radius: 10px;
  display: grid;
  padding: 1rem;
  margin-top: 4rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -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: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}
@media screen and (min-width: 768px) {
  .p-front-news__container {
    grid-template-columns: 25% auto;
  }
}
.p-front-news__container.aos-init {
  opacity: 0;
  -webkit-transform: translateY(-25%);
          transform: translateY(-25%);
}
.p-front-news__container.aos-animate {
  opacity: 1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-front-news__head {
  display: grid;
}
@media screen and (min-width: 768px) {
  .p-front-news__head {
    place-content: center;
  }
}

.p-front-news__body {
  max-height: 158px;
  overflow-y: auto;
}
.p-front-news__body::-webkit-scrollbar {
  width: 6px;
}
.p-front-news__body::-webkit-scrollbar-track {
  background-color: #DCDCDC;
  border-radius: 6px;
}
.p-front-news__body::-webkit-scrollbar-thumb {
  background-color: var(--white);
  border: 2px solid transparent;
  border-radius: 4px;
  background-clip: content-box;
}

.p-front-news__head-title {
  text-transform: uppercase;
  color: var(--main-c);
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-front-news__head-title {
    font-size: 2.5rem;
  }
}

.p-front-news__list-item {
  display: grid;
  grid-template-columns: 7em minmax(0, 1fr);
}
.p-front-news__list-item .time {
  color: var(--main-c);
}
@media screen and (min-width: 768px) {
  .p-front-news__list-item .time {
    font-size: 1.125rem;
  }
}
.p-front-news__list-item .content {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-front-news__list-item .content {
    font-size: 1.125rem;
  }
}
.p-front-news__list-item + .p-front-news__list-item {
  margin-top: 1.5rem;
}

/*=============================
主な導入企業
=============================*/
.p-front-section.-examples {
  padding: 0 0 2rem;
}
.p-front-section.-examples .swiper:not(.swiper-initialized) .swiper-wrapper {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-front-section.-examples .swiper:not(.swiper-initialized) .swiper-wrapper {
    gap: 2.5rem;
  }
}
.p-front-section.-examples .swiper:not(.swiper-initialized) .swiper-slide {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-front-section.-examples .swiper-initialized .swiper-slide img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
.p-front-section.-examples .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.p-front-section.-examples + .p-front-section.-cv {
  padding: 0 0 3rem;
}
@media screen and (min-width: 768px) {
  .p-front-section.-examples + .p-front-section.-cv {
    padding: 1rem 0 5rem;
  }
}

/*=============================
お申し込みはコチラ
=============================*/
.p-front-section.-cv {
  padding: 0;
}

.p-front-cv__button {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: 0px 3px 30px rgba(102, 104, 155, 0.5);
          box-shadow: 0px 3px 30px rgba(102, 104, 155, 0.5);
  border-radius: 20px;
}
.p-front-cv__button:hover {
  opacity: 0.5;
}

/*=============================
Is it flowing?
=============================*/
.p-front-section.-introduction {
  position: relative;
  padding: 0;
  padding-right: 15%;
}

.p-front-introduction__bg {
  width: 100%;
  height: 127px;
}
@media screen and (min-width: 768px) {
  .p-front-introduction__bg {
    height: 444px;
  }
}
.p-front-introduction__bg .image {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.p-front-introduction__title {
  position: absolute;
  z-index: 1;
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  bottom: 1em;
  line-height: 1.1;
  left: 5%;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-front-introduction__title {
    left: 7%;
    font-size: 3.4375rem;
  }
}

/*=============================
ABOUT
=============================*/
@media screen and (min-width: 768px) {
  .p-front-section.-about {
    padding: 6rem 0 3rem;
  }
}
.p-front-section.-about .l-inner {
  max-width: 1300px;
}

.p-front-about__container {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1rem;
  grid-template-areas: "title" "image" "lead" "text";
}
@media screen and (min-width: 768px) {
  .p-front-about__container {
    grid-template-columns: 38% minmax(0, 1fr);
    -webkit-column-gap: 5rem;
       -moz-column-gap: 5rem;
            column-gap: 5rem;
    row-gap: 0;
    grid-template-areas: "title image" "lead image" "text image";
  }
}
.p-front-about__container .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-area: title;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  color: var(--main-c);
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-front-about__container .title {
    font-size: 1.5rem;
  }
}
.p-front-about__container .title:after {
  content: "";
  display: inline-block;
  height: 1px;
  width: 4em;
  background-color: var(--main-c);
  margin-left: 1em;
}
.p-front-about__container .image {
  grid-area: image;
}
.p-front-about__container .lead {
  grid-area: lead;
  color: var(--main-c);
  line-height: 1.45;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-front-about__container .lead {
    font-size: 2.5rem;
  }
}
.p-front-about__container .text {
  grid-area: text;
  line-height: 1.9;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-front-about__container .text {
    line-height: 2.5;
  }
}
.p-front-about__container .text .anime-wrap {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

/*=============================
FLOW
=============================*/
.p-front-section.-flow {
  padding: 3rem 0;
}
@media screen and (min-width: 768px) {
  .p-front-section.-flow {
    padding: 6rem 0;
  }
}
.p-front-section.-flow .l-inner {
  max-width: 750px;
}
.p-front-section.-flow .swiper {
  padding-bottom: 2.5rem;
}
.p-front-section.-flow .swiper-pagination-bullet {
  background: var(--white);
}

.p-front-flow__image {
  margin-left: auto;
  margin-right: auto;
}

.p-front-flow__button {
  display: block;
  width: 90%;
  max-width: 482px;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--white);
  color: var(--main-c);
  border-radius: 3em;
  margin-top: 1em;
  text-align: center;
  position: relative;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 1.4em;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-front-flow__button {
    font-size: 1.125rem;
  }
}
.p-front-flow__button:hover {
  opacity: 0.6;
}
.p-front-flow__button:after {
  content: "";
  display: block;
  width: 1.4em;
  height: 1.4em;
  position: absolute;
  right: 2em;
  top: 0;
  bottom: 0;
  margin: auto;
  background-image: url("../images/icons/download.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

/*=============================
FEATURES
=============================*/
.p-front-section.-features {
  position: relative;
}
.p-front-section.-features .l-inner {
  max-width: 1600px;
}

.p-front-features__lead {
  color: var(--main-c);
  text-align: center;
  line-height: 1.45;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-front-features__lead {
    font-size: 1.75rem;
  }
}

.p-front-features__item + .p-front-features__item {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-front-features__item:nth-child(even) .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.p-front-features__item .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-features__item .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.p-front-features__item .head {
  -webkit-box-shadow: 0px 3px 40px 0px rgba(170, 181, 190, 0.4);
          box-shadow: 0px 3px 40px 0px rgba(170, 181, 190, 0.4);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .p-front-features__item .head {
    width: 50%;
  }
}
.p-front-features__item .body {
  display: grid;
  place-content: center;
  padding: 1rem 0;
}
@media screen and (min-width: 768px) {
  .p-front-features__item .body {
    width: 50%;
    padding: 0 5%;
    max-width: 720px;
  }
}
@media screen and (min-width: 1440px) {
  .p-front-features__item .body {
    padding: 0 7rem;
  }
}
.p-front-features__item .lead {
  color: var(--main-c);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .p-front-features__item .lead {
    font-size: 1.125rem;
  }
}
.p-front-features__item .lead:before {
  content: "";
  display: block;
  width: 33px;
  height: 33px;
  background-image: url("../images/icons/information.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.p-front-features__item .title {
  color: var(--main-c);
  margin-top: 0.8rem;
  line-height: 1.45;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-front-features__item .title {
    font-size: 2.5rem;
  }
}
.p-front-features__item .text {
  line-height: 1.9;
}
@media screen and (min-width: 768px) {
  .p-front-features__item + .p-front-features__item {
    margin-top: 6rem;
  }
}
.p-front-features__item.aos-init .head,
.p-front-features__item.aos-init .body {
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateY(2rem);
          transform: translateY(2rem);
}
@media screen and (min-width: 768px) {
  .p-front-features__item.aos-init:nth-child(odd) .head {
    -webkit-transform: translateX(-3rem);
            transform: translateX(-3rem);
  }
  .p-front-features__item.aos-init:nth-child(odd) .body {
    -webkit-transform: translateX(3rem);
            transform: translateX(3rem);
  }
}
@media screen and (min-width: 768px) {
  .p-front-features__item.aos-init:nth-child(even) .head {
    -webkit-transform: translateX(3rem);
            transform: translateX(3rem);
  }
  .p-front-features__item.aos-init:nth-child(even) .body {
    -webkit-transform: translateX(-3rem);
            transform: translateX(-3rem);
  }
}
.p-front-features__item.aos-animate .head,
.p-front-features__item.aos-animate .body {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (min-width: 768px) {
  .p-front-features__item.aos-animate:nth-child(odd) .head, .p-front-features__item.aos-animate:nth-child(even) .head {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .p-front-features__item.aos-animate:nth-child(odd) .body, .p-front-features__item.aos-animate:nth-child(even) .body {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.p-front-features__accent {
  position: absolute;
  z-index: -1;
  -webkit-animation: wobbling_x 1.8s ease-in-out infinite alternate, wobbling_y 2.8s ease-in-out infinite alternate;
          animation: wobbling_x 1.8s ease-in-out infinite alternate, wobbling_y 2.8s ease-in-out infinite alternate;
}
@keyframes wobbling_x {
  0% {
    margin-left: 4rem;
    scale: 1;
  }
  100% {
    margin-left: 0;
    scale: 1.1;
  }
}
@keyframes wobbling_y {
  0% {
    margin-top: 0;
    scale: 1;
  }
  100% {
    margin-top: 6rem;
    scale: 1.1;
  }
}
.p-front-features__accent:nth-child(1) {
  top: 7%;
  right: 10%;
}
.p-front-features__accent:nth-child(2) {
  top: 26%;
  left: 1%;
}
.p-front-features__accent:nth-child(3) {
  top: 42%;
  right: 9%;
}
.p-front-features__accent:nth-child(4) {
  bottom: 16%;
  left: 1%;
}
.p-front-features__accent:nth-child(5) {
  bottom: 8%;
  right: 10%;
}

/*=============================
詳しい機能について
=============================*/
.p-front-function__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-function__list.aos-init .p-front-function__item {
  opacity: 0;
  -webkit-transform: translateY(1rem);
          transform: translateY(1rem);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.p-front-function__list.aos-init .p-front-function__item:nth-child(1) {
  -webkit-transition-delay: calc(0.2s * 1);
          transition-delay: calc(0.2s * 1);
}
.p-front-function__list.aos-init .p-front-function__item:nth-child(2) {
  -webkit-transition-delay: calc(0.2s * 2);
          transition-delay: calc(0.2s * 2);
}
.p-front-function__list.aos-init .p-front-function__item:nth-child(3) {
  -webkit-transition-delay: calc(0.2s * 3);
          transition-delay: calc(0.2s * 3);
}
.p-front-function__list.aos-init .p-front-function__item:nth-child(4) {
  -webkit-transition-delay: calc(0.2s * 4);
          transition-delay: calc(0.2s * 4);
}
.p-front-function__list.aos-init .p-front-function__item:nth-child(5) {
  -webkit-transition-delay: calc(0.2s * 5);
          transition-delay: calc(0.2s * 5);
}
.p-front-function__list.aos-init .p-front-function__item:nth-child(6) {
  -webkit-transition-delay: calc(0.2s * 6);
          transition-delay: calc(0.2s * 6);
}
.p-front-function__list.aos-init .p-front-function__item:nth-child(7) {
  -webkit-transition-delay: calc(0.2s * 7);
          transition-delay: calc(0.2s * 7);
}
.p-front-function__list.aos-init .p-front-function__item:nth-child(8) {
  -webkit-transition-delay: calc(0.2s * 8);
          transition-delay: calc(0.2s * 8);
}
.p-front-function__list.aos-init .p-front-function__item:nth-child(9) {
  -webkit-transition-delay: calc(0.2s * 9);
          transition-delay: calc(0.2s * 9);
}
.p-front-function__list.aos-init .p-front-function__item:nth-child(10) {
  -webkit-transition-delay: calc(0.2s * 10);
          transition-delay: calc(0.2s * 10);
}
.p-front-function__list.aos-init .p-front-function__item:nth-child(11) {
  -webkit-transition-delay: calc(0.2s * 11);
          transition-delay: calc(0.2s * 11);
}
.p-front-function__list.aos-init .p-front-function__item:nth-child(12) {
  -webkit-transition-delay: calc(0.2s * 12);
          transition-delay: calc(0.2s * 12);
}
.p-front-function__list.aos-init .p-front-function__item:nth-child(13) {
  -webkit-transition-delay: calc(0.2s * 13);
          transition-delay: calc(0.2s * 13);
}
.p-front-function__list.aos-init .p-front-function__item:nth-child(14) {
  -webkit-transition-delay: calc(0.2s * 14);
          transition-delay: calc(0.2s * 14);
}
.p-front-function__list.aos-init .p-front-function__item:nth-child(15) {
  -webkit-transition-delay: calc(0.2s * 15);
          transition-delay: calc(0.2s * 15);
}
.p-front-function__list.aos-init .p-front-function__item:nth-child(16) {
  -webkit-transition-delay: calc(0.2s * 16);
          transition-delay: calc(0.2s * 16);
}
.p-front-function__list.aos-init .p-front-function__item:nth-child(17) {
  -webkit-transition-delay: calc(0.2s * 17);
          transition-delay: calc(0.2s * 17);
}
.p-front-function__list.aos-init .p-front-function__item:nth-child(18) {
  -webkit-transition-delay: calc(0.2s * 18);
          transition-delay: calc(0.2s * 18);
}
.p-front-function__list.aos-init .p-front-function__item:nth-child(19) {
  -webkit-transition-delay: calc(0.2s * 19);
          transition-delay: calc(0.2s * 19);
}
.p-front-function__list.aos-init .p-front-function__item:nth-child(20) {
  -webkit-transition-delay: calc(0.2s * 20);
          transition-delay: calc(0.2s * 20);
}
.p-front-function__list.aos-animate .p-front-function__item {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.p-front-function__item {
  position: relative;
  -webkit-box-shadow: 0px 3px 30px 0px rgba(170, 181, 190, 0.3);
          box-shadow: 0px 3px 30px 0px rgba(170, 181, 190, 0.3);
  background-color: var(--white);
  padding: 1.5rem 1.5rem 6rem;
  border-radius: 15px;
  width: 100%;
}
@media screen and (min-width: 640px) {
  .p-front-function__item {
    width: calc(50% - 1rem);
  }
}
@media screen and (min-width: 1024px) {
  .p-front-function__item {
    width: calc(30% - 1rem);
  }
}
.p-front-function__item .image {
  margin-left: auto;
  margin-right: auto;
}
.p-front-function__item .title {
  margin-top: 1rem;
  color: var(--main-c);
  text-align: center;
  line-height: 1.2;
}
@media screen and (min-width: 640px) {
  .p-front-function__item .title {
    font-size: 2.9333333333vw;
  }
}
@media screen and (min-width: 1024px) {
  .p-front-function__item .title {
    font-size: 1.5rem;
  }
}
.p-front-function__item .text {
  margin-top: 0.8em;
}
@media screen and (min-width: 768px) {
  .p-front-function__item .text {
    font-size: 1.125rem;
  }
}
.p-front-function__item .button {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5em 2em;
  border: solid 2px var(--main-c);
  color: var(--main-c);
  border-radius: 2em;
  text-decoration: none;
  text-align: center;
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  margin: auto;
}

/*=============================
安心して使える3つの理由
=============================*/
.p-front-reason__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-reason__item {
  display: grid;
  row-gap: 1rem;
  background-color: var(--bg-c);
  border-radius: 10px;
  padding: 2rem;
  width: 100%;
}
@media screen and (min-width: 640px) {
  .p-front-reason__item {
    grid-template-rows: 1fr 1fr;
    width: calc(50% - 1rem);
    padding: 1rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-front-reason__item {
    width: calc(30% - 1rem);
  }
}
.p-front-reason__item .head,
.p-front-reason__item .body {
  display: grid;
  place-content: center;
  text-align: center;
}
.p-front-reason__item .text {
  color: var(--main-c);
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-front-reason__item .text {
    font-size: 2.6666666667vw;
  }
}
@media screen and (min-width: 1024px) {
  .p-front-reason__item .text {
    font-size: 1.7708333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .p-front-reason__item .text {
    font-size: 1.5rem;
  }
}

/*=============================
利用環境
=============================*/
.p-front-environment__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-front-environment__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
.p-front-environment__list.aos-init .p-front-environment__item {
  opacity: 0;
  -webkit-transform: translateY(1rem);
          transform: translateY(1rem);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.p-front-environment__list.aos-init .p-front-environment__item:nth-child(1) {
  -webkit-transition-delay: calc(0.2s * 1);
          transition-delay: calc(0.2s * 1);
}
.p-front-environment__list.aos-init .p-front-environment__item:nth-child(2) {
  -webkit-transition-delay: calc(0.2s * 2);
          transition-delay: calc(0.2s * 2);
}
.p-front-environment__list.aos-init .p-front-environment__item:nth-child(3) {
  -webkit-transition-delay: calc(0.2s * 3);
          transition-delay: calc(0.2s * 3);
}
.p-front-environment__list.aos-init .p-front-environment__item:nth-child(4) {
  -webkit-transition-delay: calc(0.2s * 4);
          transition-delay: calc(0.2s * 4);
}
.p-front-environment__list.aos-init .p-front-environment__item:nth-child(5) {
  -webkit-transition-delay: calc(0.2s * 5);
          transition-delay: calc(0.2s * 5);
}
.p-front-environment__list.aos-init .p-front-environment__item:nth-child(6) {
  -webkit-transition-delay: calc(0.2s * 6);
          transition-delay: calc(0.2s * 6);
}
.p-front-environment__list.aos-init .p-front-environment__item:nth-child(7) {
  -webkit-transition-delay: calc(0.2s * 7);
          transition-delay: calc(0.2s * 7);
}
.p-front-environment__list.aos-init .p-front-environment__item:nth-child(8) {
  -webkit-transition-delay: calc(0.2s * 8);
          transition-delay: calc(0.2s * 8);
}
.p-front-environment__list.aos-init .p-front-environment__item:nth-child(9) {
  -webkit-transition-delay: calc(0.2s * 9);
          transition-delay: calc(0.2s * 9);
}
.p-front-environment__list.aos-init .p-front-environment__item:nth-child(10) {
  -webkit-transition-delay: calc(0.2s * 10);
          transition-delay: calc(0.2s * 10);
}
.p-front-environment__list.aos-init .p-front-environment__item:nth-child(11) {
  -webkit-transition-delay: calc(0.2s * 11);
          transition-delay: calc(0.2s * 11);
}
.p-front-environment__list.aos-init .p-front-environment__item:nth-child(12) {
  -webkit-transition-delay: calc(0.2s * 12);
          transition-delay: calc(0.2s * 12);
}
.p-front-environment__list.aos-init .p-front-environment__item:nth-child(13) {
  -webkit-transition-delay: calc(0.2s * 13);
          transition-delay: calc(0.2s * 13);
}
.p-front-environment__list.aos-init .p-front-environment__item:nth-child(14) {
  -webkit-transition-delay: calc(0.2s * 14);
          transition-delay: calc(0.2s * 14);
}
.p-front-environment__list.aos-init .p-front-environment__item:nth-child(15) {
  -webkit-transition-delay: calc(0.2s * 15);
          transition-delay: calc(0.2s * 15);
}
.p-front-environment__list.aos-init .p-front-environment__item:nth-child(16) {
  -webkit-transition-delay: calc(0.2s * 16);
          transition-delay: calc(0.2s * 16);
}
.p-front-environment__list.aos-init .p-front-environment__item:nth-child(17) {
  -webkit-transition-delay: calc(0.2s * 17);
          transition-delay: calc(0.2s * 17);
}
.p-front-environment__list.aos-init .p-front-environment__item:nth-child(18) {
  -webkit-transition-delay: calc(0.2s * 18);
          transition-delay: calc(0.2s * 18);
}
.p-front-environment__list.aos-init .p-front-environment__item:nth-child(19) {
  -webkit-transition-delay: calc(0.2s * 19);
          transition-delay: calc(0.2s * 19);
}
.p-front-environment__list.aos-init .p-front-environment__item:nth-child(20) {
  -webkit-transition-delay: calc(0.2s * 20);
          transition-delay: calc(0.2s * 20);
}
.p-front-environment__list.aos-animate .p-front-environment__item {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.p-front-environment__item {
  position: relative;
  -webkit-box-shadow: 0px 3px 30px 0px rgba(170, 181, 190, 0.3);
          box-shadow: 0px 3px 30px 0px rgba(170, 181, 190, 0.3);
  background-color: var(--white);
  padding: 2rem 1rem 1.5rem;
  text-align: center;
  display: grid;
  place-content: center;
}
.p-front-environment__item .badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--main-c);
  color: var(--white);
  width: 60%;
  border-radius: 2em;
  padding: 5px;
}
@media screen and (min-width: 768px) {
  .p-front-environment__item .badge {
    width: 80%;
  }
}
.p-front-environment__item .text strong {
  font-size: 1.5em;
  color: var(--main-c);
  display: inline-block;
  line-height: 1.5em;
  margin-bottom: 0.4em;
}

/*=============================
料金
=============================*/
.p-front-section.-price {
  padding: 2rem 0 0;
}
.p-front-section.-price + .p-front-section.-cv {
  padding: 2rem 0 3rem;
}
@media screen and (min-width: 768px) {
  .p-front-section.-price + .p-front-section.-cv {
    padding: 4rem 0 6rem;
  }
}

.p-front-price__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media screen and (min-width: 1024px) {
  .p-front-price__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.p-front-price__list.aos-init .p-front-price__item {
  opacity: 0;
  -webkit-transform: translateY(1rem);
          transform: translateY(1rem);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.p-front-price__list.aos-init .p-front-price__item:nth-child(1) {
  -webkit-transition-delay: calc(0.2s * 1);
          transition-delay: calc(0.2s * 1);
}
.p-front-price__list.aos-init .p-front-price__item:nth-child(2) {
  -webkit-transition-delay: calc(0.2s * 2);
          transition-delay: calc(0.2s * 2);
}
.p-front-price__list.aos-init .p-front-price__item:nth-child(3) {
  -webkit-transition-delay: calc(0.2s * 3);
          transition-delay: calc(0.2s * 3);
}
.p-front-price__list.aos-init .p-front-price__item:nth-child(4) {
  -webkit-transition-delay: calc(0.2s * 4);
          transition-delay: calc(0.2s * 4);
}
.p-front-price__list.aos-init .p-front-price__item:nth-child(5) {
  -webkit-transition-delay: calc(0.2s * 5);
          transition-delay: calc(0.2s * 5);
}
.p-front-price__list.aos-init .p-front-price__item:nth-child(6) {
  -webkit-transition-delay: calc(0.2s * 6);
          transition-delay: calc(0.2s * 6);
}
.p-front-price__list.aos-init .p-front-price__item:nth-child(7) {
  -webkit-transition-delay: calc(0.2s * 7);
          transition-delay: calc(0.2s * 7);
}
.p-front-price__list.aos-init .p-front-price__item:nth-child(8) {
  -webkit-transition-delay: calc(0.2s * 8);
          transition-delay: calc(0.2s * 8);
}
.p-front-price__list.aos-init .p-front-price__item:nth-child(9) {
  -webkit-transition-delay: calc(0.2s * 9);
          transition-delay: calc(0.2s * 9);
}
.p-front-price__list.aos-init .p-front-price__item:nth-child(10) {
  -webkit-transition-delay: calc(0.2s * 10);
          transition-delay: calc(0.2s * 10);
}
.p-front-price__list.aos-init .p-front-price__item:nth-child(11) {
  -webkit-transition-delay: calc(0.2s * 11);
          transition-delay: calc(0.2s * 11);
}
.p-front-price__list.aos-init .p-front-price__item:nth-child(12) {
  -webkit-transition-delay: calc(0.2s * 12);
          transition-delay: calc(0.2s * 12);
}
.p-front-price__list.aos-init .p-front-price__item:nth-child(13) {
  -webkit-transition-delay: calc(0.2s * 13);
          transition-delay: calc(0.2s * 13);
}
.p-front-price__list.aos-init .p-front-price__item:nth-child(14) {
  -webkit-transition-delay: calc(0.2s * 14);
          transition-delay: calc(0.2s * 14);
}
.p-front-price__list.aos-init .p-front-price__item:nth-child(15) {
  -webkit-transition-delay: calc(0.2s * 15);
          transition-delay: calc(0.2s * 15);
}
.p-front-price__list.aos-init .p-front-price__item:nth-child(16) {
  -webkit-transition-delay: calc(0.2s * 16);
          transition-delay: calc(0.2s * 16);
}
.p-front-price__list.aos-init .p-front-price__item:nth-child(17) {
  -webkit-transition-delay: calc(0.2s * 17);
          transition-delay: calc(0.2s * 17);
}
.p-front-price__list.aos-init .p-front-price__item:nth-child(18) {
  -webkit-transition-delay: calc(0.2s * 18);
          transition-delay: calc(0.2s * 18);
}
.p-front-price__list.aos-init .p-front-price__item:nth-child(19) {
  -webkit-transition-delay: calc(0.2s * 19);
          transition-delay: calc(0.2s * 19);
}
.p-front-price__list.aos-init .p-front-price__item:nth-child(20) {
  -webkit-transition-delay: calc(0.2s * 20);
          transition-delay: calc(0.2s * 20);
}
.p-front-price__list.aos-animate .p-front-price__item {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.p-front-price__item {
  position: relative;
  -webkit-box-shadow: 0px 3px 30px 0px rgba(170, 181, 190, 0.3);
          box-shadow: 0px 3px 30px 0px rgba(170, 181, 190, 0.3);
  padding: 3rem 1rem 1rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-front-price__item {
    padding: 4rem 1rem 2rem;
  }
}
.p-front-price__item .price {
  color: var(--main-c);
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-front-price__item .price {
    font-size: 1.125rem;
  }
}
.p-front-price__item .price strong {
  font-weight: bold;
  font-size: 1.6em;
}
@media screen and (min-width: 768px) {
  .p-front-price__item .price strong {
    font-size: 2em;
  }
}

.p-front-price__item-accent {
  position: absolute;
  top: -7px;
  left: 1rem;
  width: 80%;
  max-width: 125px;
}
@media screen and (min-width: 768px) {
  .p-front-price__item-accent {
    width: auto;
    max-width: unset;
  }
}
.p-front-price__item-accent .caption {
  position: absolute;
  top: 0.3em;
  left: 0;
  right: 0;
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  color: var(--white);
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-front-price__item-accent .caption {
    font-size: 1.5rem;
  }
}

.p-front-price__note {
  max-width: 523px;
  margin-top: 2.5rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-front-price__note {
    font-size: 0.875rem;
  }
}

/*=============================
パートナー
=============================*/
.p-front-section.-partner .link {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 63%;
  margin-left: auto;
  margin-right: auto;
}

.p-trialtos input[type=submit],
.p-trialtos 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-trialtos input[type=submit]::-webkit-search-decoration,
.p-trialtos input[type=button]::-webkit-search-decoration {
  display: none;
}
.p-trialtos input[type=submit]::focus,
.p-trialtos input[type=button]::focus {
  outline-offset: -2px;
}

.p-trialtos__inner {
  padding: 3rem 0;
}
@media screen and (min-width: 768px) {
  .p-trialtos__inner {
    padding: 6rem 0;
  }
}

.p-trialtos__form {
  width: 100%;
  height: 13800px;
  border: 0;
}
@media screen and (min-width: 400px) {
  .p-trialtos__form {
    height: 11550px;
  }
}
@media screen and (min-width: 768px) {
  .p-trialtos__form {
    height: 7450px;
  }
}

.c-flex {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .c-flex {
    margin-bottom: 4rem;
  }
}

.p-trialtos__text {
  text-align: center;
  margin: 0 auto 1rem;
}
@media screen and (min-width: 768px) {
  .p-trialtos__text {
    margin: 0 auto 2rem;
  }
}

.p-update .c-table__row {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
}
.p-update .c-table__body .c-table__title-hl,
.p-update .c-table__body .c-table__cont:first-of-type {
  display: grid;
  place-content: center;
}
.p-update .c-wysiwyg ul, .p-update .c-wysiwyg ol {
  margin-bottom: 0;
}

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

.u-bg-image {
  background-image: url("../images/row/common/bg-image.png");
  background-size: cover;
  background-position: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.u-mont {
  font-family: "Montserrat", sans-serif !important;
  font-weight: 100;
}

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