@charset "UTF-8";
:root {
  --main: #2c4efa;
  --yellow: #ffef00;
  --lightyellow: #f9f2bb;
  --blue: #005dd1;
  --skyblue: #60a0e0;
  --purple: #5b6bde;
  --lavender: #9372d4;
  --green: #5db2c1;
  --navy: #053e62;
  --bluege: #dfe7ef;
  --lightblue: #e9f0f7;
  --lightgreen: #dcedd0;
  --red: #fc0000;
  --orange: #e83b18;
  --white: #fff;
  --offwhite: #f9f9f9;
  --black: #000;
  --grey: #d4dde2;
  --darkgrey: #848c8f;
  --lightgrey: #ebf2f6;
  --ivory: #f5f1eb;
  --main-c: #2c4efa;
  --base-c: #fff;
  --accent-c: var(--yellow);
  --bg-c: var(--lightblue);
  --border-c: var(--grey);
}

/*@mixin right_arrow {
  position: relative;

  &:after {
    content: "";
    height: 0.7em;
    width: 0.7em;
    display: inline-block;
    border-top: solid 3px var(--red);
    border-right: solid 3px var(--red);
    transform: rotate(45deg);
    position: absolute;
    right: 8%;
    top: 0;
    bottom: 0;
    margin: auto;
  }
}*/
.l-header {
  z-index: 5;
}

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

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

#splash {
  z-index: 8;
}

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

*,
*::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: #7bb2c1;
  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;
}

iframe.wp-embedded-content {
  display: none;
}

html {
  font-size: 16px;
  text-underline-position: under;
}

body {
  font-family: "Noto Sans JP", "メイリオ", 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;
  text-decoration: none;
}

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

img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  -webkit-backface-visibility: hidden;
}
@media screen and (min-width: 768px) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}

@media screen and (-webkit-min-device-pixel-ratio: 0) and (-webkit-min-device-pixel-ratio: 0), screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}
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: 4.8vw;
}
@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: 20px;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  h3 {
    font-size: 1.5rem;
  }
}

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

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

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

.l-archive__wrapper {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .l-archive__wrapper {
    margin-top: 95px;
  }
}

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

.l-archive__container {
  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: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .l-archive__container {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
  }
}

.l-archive__main {
  width: 100%;
}

.l-archive__item {
  width: calc(100% - 5.5vw);
  margin-top: 20px;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .l-archive__item {
    width: 30%;
    height: 100%;
    max-width: 343px;
    margin-top: 40px;
    margin-right: 0;
    margin-left: 0;
  }
}
.l-archive__item.-view {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.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: 350px 1fr;
  }
}
.l-archive__item .link:hover .image-wrapp img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.l-archive__item .head {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.l-archive__item .head .image-wrapp {
  overflow: hidden;
  position: relative;
}
.l-archive__item .head .image-wrapp::before {
  content: "";
  float: left;
  padding-top: 75%;
}
.l-archive__item .head .image-wrapp::after {
  content: "";
  display: block;
  clear: both;
}
.l-archive__item .head .image-wrapp > :first-child {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-archive__item .head .image-wrapp img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-archive__item .body {
  padding: 0.5rem 2rem 1.5rem;
  position: relative;
  height: 100%;
}
.l-archive__item .body .data {
  display: inline;
  line-height: 1.7;
  color: var(--block);
  font-size: 14px;
  font-weight: bold;
}
.l-archive__item .body .date:before {
  content: url(../images/icons/icon-clock.svg);
  margin-right: 5px;
  vertical-align: text-top;
}
.l-archive__item .body .title {
  font-size: 16px;
  margin-top: 10px;
}
.l-archive__item .body .term {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  background-color: var(--main-c);
  color: #fff;
  display: inline-block;
  border-radius: 5px;
  padding: 0 6px;
}
.l-archive__item .more {
  position: absolute;
  right: 0;
  bottom: 20px;
  right: 2rem;
}
.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 {
  max-width: 660px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1rem;
  padding: 1rem 0;
  font-family: yu gothic;
  font-weight: 500;
}
.l-archive__pagenation .link {
  line-height: 40px;
  width: 50px;
  text-align: center;
  border-bottom: 3px solid var(--bluege);
  display: block;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.l-archive__pagenation .link.is-active {
  border-bottom: 3px solid var(--main-c);
}
.l-archive__pagenation .link:hover {
  opacity: 0.7;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.l-archive__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: calc(100% - 5.5vw);
  gap: 1rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-archive__category {
    margin: 0;
  }
}
.l-archive__category .link {
  text-decoration: none;
  border-bottom: 3px solid #E5E7EB;
  color: #E5E7EB;
  padding: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: block;
  line-height: 40px;
  width: 140px;
}
.l-archive__category .link:hover {
  color: #000000;
}
@media screen and (max-width: 767px) {
  .l-archive__category .link {
    font-size: 12px;
  }
}
.l-archive__category .link.is-active {
  border-bottom: 3px solid var(--main-c);
  color: #000000;
}

.l-article__wrapper {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .l-article__wrapper {
    margin-top: 95px;
  }
}

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

.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-sidebar.u-sp {
  grid-area: sp-category;
}

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

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

.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__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: 2rem 0;
  border-top: solid 2px #E5E7EB;
}
.l-article__pagenation .item {
  border-radius: 6px;
  padding: 14px;
}
.l-article__pagenation .center {
  background-color: var(--bg-c);
  border: 1px solid #fff;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  width: 105px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-article__pagenation .center {
    width: 180px;
  }
}
.l-article__pagenation .center:hover {
  background-color: #fff;
  border: 1px solid #E5E7EB;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.l-article__pagenation .prev, .l-article__pagenation .next {
  border: 1px solid #E5E7EB;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: calc(50% - 65px);
}
@media screen and (min-width: 768px) {
  .l-article__pagenation .prev, .l-article__pagenation .next {
    width: calc(50% - 90px);
  }
}
.l-article__pagenation .prev:hover, .l-article__pagenation .next:hover {
  background-color: #E5E7EB;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.l-article__pagenation .dummy {
  border: none;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: calc(50% - 65px);
}
@media screen and (min-width: 768px) {
  .l-article__pagenation .dummy {
    width: calc(50% - 90px);
  }
}

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

.l-article__toc-content {
  position: sticky;
  top: 50px;
}
@media screen and (min-width: 768px) {
  .l-article__toc-content {
    top: 95px;
  }
}
.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-article__profile {
  border: 1px solid var(--bg-c);
  padding: 20px 30px;
  border-radius: 5px;
}
.l-article__profile__deco {
  color: var(--blue);
  font-weight: 500;
  letter-spacing: 1px;
  position: relative;
}
.l-article__profile__deco .en {
  font-family: "Josefin Sans", sans-serif;
}
.l-article__profile__deco:before {
  content: "";
  height: 2px;
  width: 20px;
  background: var(--blue);
  display: block;
  left: -30px;
  top: 13px;
  position: relative;
}
.l-article__profile__deco .jp {
  margin-left: 15px;
}
.l-article__profile__position {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--blue);
  line-height: 16px;
}
.l-article__profile__data {
  margin-top: 10px;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .l-article__profile__data {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.l-article__profile__image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .l-article__profile__image {
    margin-right: 25px;
    margin-bottom: 0;
  }
}
.l-article__profile__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-article__profile__name {
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .l-article__profile__name {
    text-align: center;
  }
}
.l-article__profile .c-article__text {
  font-size: 0.875rem;
  font-weight: 500;
}

.l-wrapper {
  padding: 10px;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, Helvetica, sans-serif;
}

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

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

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

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

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

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

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

.l-grad-wrapper {
  background: #DFE7EF;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 255, 255)), color-stop(90%, rgb(223, 231, 239)), to(rgb(223, 231, 239)));
  background: -webkit-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(223, 231, 239) 90%, rgb(223, 231, 239) 100%);
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(223, 231, 239) 90%, rgb(223, 231, 239) 100%);
}

.l-grad2-wrapper {
  background: #DFE7EF;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(255, 255, 255)), color-stop(90%, rgb(223, 231, 239)), to(rgb(223, 231, 239)));
  background: -webkit-linear-gradient(bottom, rgb(255, 255, 255) 0%, rgb(223, 231, 239) 90%, rgb(223, 231, 239) 100%);
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(223, 231, 239) 90%, rgb(223, 231, 239) 100%);
}

.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.-gap {
  gap: 12px;
}

.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.8);
  opacity: 0;
  position: fixed;
  top: 50px;
  right: -100%;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.l-overlay.is-open {
  right: 0;
  opacity: 1;
}
@media screen and (min-width: 1250px) {
  .l-overlay {
    top: 95px;
  }
}

.l-footer {
  width: 100%;
  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;
  border-top: solid 1px var(--lightgrey);
}
.l-footer .copyright {
  font-family: "Josefin Sans", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, Helvetica, sans-serif;
  width: 100%;
  padding: 20px;
  text-align: center;
  background-color: var(--blue);
  color: white;
  letter-spacing: 1px;
  font-size: 8px;
  line-height: 20px;
  display: block;
}
@media screen and (min-width: 768px) {
  .l-footer .copyright {
    font-size: 10px;
  }
}
.l-footer__upper {
  padding: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .l-footer__upper {
    padding: 50px 0;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__upper img {
    width: 55%;
  }
}

.c-footer__contact {
  font-family: "Josefin Sans", sans-serif;
  width: 180px;
  height: 75px;
  font-weight: 600;
  letter-spacing: 2px;
  border: 1px solid var(--blue);
  color: var(--blue);
  line-height: 78px;
  text-align: center;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-footer__contact {
    width: 35%;
    font-size: 3vw;
  }
}
.c-footer__contact:hover {
  border: 1px solid #fff;
  background-color: var(--blue);
  color: #fff;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.c-footer__nav {
  color: #1e1e1e;
  padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .c-footer__nav {
    display: none;
  }
}
.c-footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.c-footer__nav-list a {
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.c-footer__nav-list a:hover {
  color: var(--blue);
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.c-footer__nav-item {
  width: 23%;
  margin-right: 2%;
  margin-bottom: 15px;
}
.c-footer__nav-item:first-child {
  display: none;
}
.c-footer__nav-ttl {
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
  display: block;
  width: 100%;
  line-height: 40px;
  pointer-events: none;
}
.c-footer__nav__sub-ttl {
  font-size: 13px;
  margin-bottom: 6px;
  position: relative;
}
.c-footer__nav__sub-ttl a {
  position: relative;
}
.c-footer__nav__sub-ttl a:after {
  content: "";
  display: inline-block;
  margin-left: 4px;
  width: 5px;
  height: 5px;
  border-top: 1px solid var(--blue);
  border-right: 1px solid var(--blue);
  vertical-align: middle;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-footer__nav__third-item {
  margin-bottom: 10px;
}
.c-footer__nav__third-ttl {
  font-size: 13px;
  margin-bottom: 6px;
  position: relative;
}
.c-footer__nav__third-ttl a:after {
  content: none;
}
.c-footer__nav__third-ttl a:before {
  content: "";
  display: inline-block;
  margin-left: 14px;
  margin-right: 5px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #1e1e1e;
  border-right: 1px solid #1e1e1e;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.gotop {
  width: 128px;
  height: 128px;
  position: fixed;
  right: 50px;
  bottom: 50px;
  z-index: 99;
  cursor: pointer;
  opacity: 0;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  background-color: #fff;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .gotop {
    width: 70px;
    height: 70px;
    background-size: cover;
    right: 20px;
    bottom: 30px;
  }
}
@media screen and (min-width: 768px) {
  .gotop:hover > .outer {
    -webkit-animation-name: rotate;
            animation-name: rotate;
    -webkit-animation-duration: 3s;
            animation-duration: 3s;
    -webkit-animation-timing-function: cubic-bezier(0.5, 0.51, 0.51, 0.52);
            animation-timing-function: cubic-bezier(0.5, 0.51, 0.51, 0.52);
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
  }
}
.gotop .outer {
  background: url(../images/common/gotop.svg);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 128px;
  height: 128px;
}
@media screen and (max-width: 767px) {
  .gotop .outer {
    width: 70px;
    height: 70px;
    background-size: cover;
  }
}
.gotop .inner {
  content: "";
  display: inline-block;
  margin-left: 4px;
  width: 15px;
  height: 15px;
  border-top: 2px solid var(--blue);
  border-right: 2px solid var(--blue);
  vertical-align: middle;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  top: 10px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.gotop .inner:hover:after {
  -webkit-animation-name: rotatereverse;
          animation-name: rotatereverse;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-timing-function: cubic-bezier(0.5, 0.51, 0.51, 0.52);
          animation-timing-function: cubic-bezier(0.5, 0.51, 0.51, 0.52);
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotateZ(0);
            transform: rotateZ(0);
  }
  100% {
    -webkit-transform: rotateZ(360deg);
            transform: rotateZ(360deg);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotateZ(0);
            transform: rotateZ(0);
  }
  100% {
    -webkit-transform: rotateZ(360deg);
            transform: rotateZ(360deg);
  }
}
@-webkit-keyframes rotatereverse {
  0% {
    -webkit-transform: rotateZ(-45deg);
            transform: rotateZ(-45deg);
  }
  100% {
    -webkit-transform: rotateZ(-405deg);
            transform: rotateZ(-405deg);
  }
}
@keyframes rotatereverse {
  0% {
    -webkit-transform: rotateZ(-45deg);
            transform: rotateZ(-45deg);
  }
  100% {
    -webkit-transform: rotateZ(-405deg);
            transform: rotateZ(-405deg);
  }
}
.gotop.-visible {
  opacity: 1;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.gotop.-visible:hover {
  opacity: 0.7;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
@media screen and (max-width: 767px) {
  .gotop.-fixed {
    bottom: 150px;
  }
}

.grecaptcha-badge {
  z-index: 99;
}

@media screen and (max-width: 767px) {
  .grecaptcha-badge {
    -webkit-transition: 0.3s !important;
    transition: 0.3s !important;
  }
  .grecaptcha-badge.-fixed {
    bottom: 45px !important;
    -webkit-transition: 0.3s !important;
    transition: 0.3s !important;
  }
}
.banner-fixed {
  position: fixed;
  right: 50px;
  bottom: 12rem;
  width: 20vw;
  max-width: 290px;
  opacity: 0;
  -webkit-transition: all 0.65s;
  transition: all 0.65s;
  z-index: 9998;
}
.banner-fixed.is-show {
  -webkit-animation: slideInAnime 0.5s forwards;
          animation: slideInAnime 0.5s forwards;
}
.banner-fixed.is-hide {
  -webkit-animation: slideOutAnime 0.6s forwards;
          animation: slideOutAnime 0.6s forwards;
}

@-webkit-keyframes slideInAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slideInAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes slideOutAnime {
  from {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateX(300px);
            transform: translateX(300px);
  }
}
@keyframes slideOutAnime {
  from {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateX(300px);
            transform: translateX(300px);
  }
}
.banner-front__add img {
  width: 100%;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.banner-front__add img:hover {
  opacity: 0.7;
}

.close-btn {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 35px;
  height: 35px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  z-index: 9999;
}
.close-btn img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.banner-modal.u-sp {
  display: none;
}

.banner-modal.u-sp {
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  z-index: 10000;
}

.banner-modal.is-show {
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
  pointer-events: auto;
  opacity: 1;
}

.banner-modal-overlay {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.banner-fixed__add.u-pc {
  display: none;
}

.modal-item {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.dialog {
  position: relative;
  width: 100%;
  max-width: 290px;
  margin: 0 auto;
}

.banner-modal__add {
  width: 100%;
}

/* モーダルcontact-form-7 */
.modal {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 10001;
  inset: 0;
  margin: auto;
  overflow: scroll;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 680px;
  margin: 50px auto;
}

.close {
  cursor: pointer;
  position: absolute;
  top: -12px;
  right: -18px;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (min-width: 1250px) {
  .l-header {
    height: 95px;
  }
}
.l-header.-unpinned {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.l-header.-scrolled {
  background: #fff;
}

/*********************************************
 * サイドバーのレイアウト
 *
 * 接頭詞『.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(95px + 2rem);
  }
}
.l-sidebar a {
  text-decoration: none;
}
.l-sidebar .l-sidebar-content + .l-sidebar-content {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .l-sidebar .l-sidebar-content + .l-sidebar-content {
    margin-top: 2rem;
  }
}
.l-sidebar .l-sidebar-content.-category {
  grid-area: category;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.l-sidebar .l-sidebar-content.-category .l-sidebar__head {
  background-color: #626D91;
  color: #fff;
}
.l-sidebar .l-sidebar-content.-category .list {
  padding: 12px 20px;
}
.l-sidebar .l-sidebar-content.-category .item {
  margin: 6px 0;
  text-align: left;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #E5E7EB;
  -webkit-box-shadow: 1px 1px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 1px 0px rgba(0, 0, 0, 0.2);
  padding: 2px 10px;
  font-size: 12px;
  color: #626D91;
  position: relative;
}
.l-sidebar .l-sidebar-content.-category .item:after {
  content: "";
  display: inline-block;
  margin-left: 4px;
  width: 5px;
  height: 5px;
  border-top: 1px solid #626D91;
  border-right: 1px solid #626D91;
  vertical-align: middle;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@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.6875rem;
  font-weight: bold;
}
.l-sidebar .l-sidebar-content.-new .date:before {
  content: url(../images/icons/icon-clock.svg);
  vertical-align: middle;
  margin-right: 3px;
}
.l-sidebar .l-sidebar-content.-new .title {
  font-size: 1rem;
}
.l-sidebar .l-sidebar-content.-new .item {
  padding: 12px 20px;
}
.l-sidebar .l-sidebar-content.-new .item:hover {
  background-color: #f5f5f5;
  color: var(--main-c);
}
.l-sidebar .l-sidebar-content.-ranking {
  grid-area: new;
}
.l-sidebar .l-sidebar-content.-ranking .l-sidebar__head:before {
  content: url(../images/icons/icon-crown-white.svg);
  margin-right: 5px;
  float: left;
}
.l-sidebar .l-sidebar-content.-ranking .date {
  font-size: 0.6875rem;
  font-weight: bold;
  padding-left: 45px;
}
.l-sidebar .l-sidebar-content.-ranking .date:before {
  content: url(../images/icons/icon-clock.svg);
  vertical-align: middle;
  margin-right: 3px;
}
.l-sidebar .l-sidebar-content.-ranking .title {
  font-size: 1rem;
  padding-left: 45px;
}
.l-sidebar .l-sidebar-content.-ranking .p-blog-ranking__box:before {
  top: 6px;
}
.l-sidebar .l-sidebar-content.-ranking .item {
  padding: 12px 20px;
}
.l-sidebar .l-sidebar-content.-ranking .item:hover {
  background-color: #f5f5f5;
  color: var(--main-c);
}
.l-sidebar .l-sidebar-content.-ranking .item:first-child .p-blog-ranking__box:before {
  content: "01";
}
.l-sidebar .l-sidebar-content.-ranking .item:nth-child(2) .p-blog-ranking__box:before {
  content: "02";
}
.l-sidebar .l-sidebar-content.-ranking .item:last-child .p-blog-ranking__box:before {
  content: "03";
}
.l-sidebar .l-sidebar-content.-ranking .item:last-child .p-blog-ranking__box {
  border: none;
}
.l-sidebar .l-sidebar-content.-ranking .p-blog-ranking__box {
  border-bottom: 2px solid #C6D7E8;
  margin: 0;
  padding-bottom: 10px;
}
.l-sidebar .l-sidebar-content.-sponsored .l-sidebar__title::after, .l-sidebar .l-sidebar-content.-sponsored .l-sidebar__title::before {
  content: none;
}
.l-sidebar .l-sidebar-content.-sponsored .l-sidebar__body {
  display: block;
}
.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 .timeline-ShowMoreButton {
  width: 140px;
}
.l-sidebar .l-sidebar__head {
  padding: 0.5em 0 0.5em 1em;
  pointer-events: all;
  background-color: var(--main-c);
  color: #fff;
}
@media screen and (min-width: 768px) {
  .l-sidebar .l-sidebar__head {
    pointer-events: none;
  }
}
.l-sidebar .l-sidebar__body {
  display: none;
  padding: 0.5rem 0;
  border: 1px solid #D9D9D9;
}
@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;
}
.l-sidebar .l-sidebar__body .item a {
  width: 100%;
}
.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(--white);
  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__media .body {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .c-article__media .body {
    margin-top: 15px;
  }
}
.c-article__media.-lg .c-article__title {
  padding-top: 10px;
  position: relative;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .c-article__media.-lg .c-article__title {
    font-size: 30px;
  }
}
.c-article__media.-lg .c-article__title::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--main-c);
}
.c-article__media.-sm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .c-article__media.-sm {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.c-article__media.-sm:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
.c-article__media.-sm .c-article__title {
  position: relative;
  font-weight: bold;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .c-article__media.-sm .c-article__title {
    font-size: 20px;
    line-height: 30px;
    margin-top: -5px;
  }
}
@media screen and (min-width: 768px) {
  .c-article__media.-sm .body {
    width: 50%;
    margin: 0 0 0 auto;
  }
}
.c-article__media.-sm .image {
  width: 100%;
}
.c-article__media.-sm .image img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-article__media.-sm .image {
    width: 45%;
  }
}
@media screen and (min-width: 768px) {
  .c-article__media.-sm.-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (min-width: 768px) {
  .c-article__media.-sm.-reverse .image {
    margin-left: 0;
  }
}
@media screen and (min-width: 768px) {
  .c-article__media.-sm.-reverse .body {
    width: 50%;
    margin: 0 auto 0 0;
  }
}

.c-article__text {
  word-break: break-all;
}
.c-article__text h5 {
  font-size: 22px;
  color: var(--main-c);
  line-height: 38px;
  margin-bottom: 12px;
}
.c-article__text h6:before {
  content: "";
  width: 19px;
  height: 2px;
  background-color: var(--main-c);
  display: inline-block;
  vertical-align: super;
  margin-right: 14px;
}
.c-article__text p {
  margin: 18px 0;
}
.c-article__text a {
  color: #e8922e;
  text-decoration: underline;
}
.c-article__text a:hover {
  text-decoration: none;
}
.c-article__text mark {
  background-color: #7bb2c1;
}

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

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

.c-article__text-area .c-article__title {
  padding-top: 10px;
  position: relative;
}
.c-article__text-area .c-article__title::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--main-c);
}
.c-article__text-area ul li:before {
  content: "";
  width: 7px;
  height: 7px;
  background-color: var(--main-c);
  position: relative;
  display: inline-block;
  border-radius: 50px;
  vertical-align: middle;
  margin-right: 5px;
}
.c-article__text-area ol {
  counter-reset: count 0;
}
.c-article__text-area li:before {
  content: counter(count) ". ";
  counter-increment: count 1;
  color: var(--main-c);
}
.c-article__text-area a {
  color: var(--main-c);
  text-decoration: underline;
}
.c-article__text-area a:hover {
  text-decoration: none;
}

.c-anchor-tile__inner {
  max-width: 1100px;
  width: 85%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-anchor-tile__inner {
    width: 90%;
  }
}

.c-anchor-tile__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .c-anchor-tile__list {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

.c-anchor-tile__link {
  display: block;
  padding-block: 20px 42px;
  padding-inline: 20px;
  position: relative;
  background-color: #fff;
  border: solid 1px var(--border-c);
  border-radius: 5px;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .c-anchor-tile__link {
    padding-block: 35px 55px;
    padding-inline: 40px;
  }
}
.c-anchor-tile__link .arrow {
  position: absolute;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-anchor-tile__link .arrow {
    bottom: 30px;
  }
}
.c-anchor-tile__link .arrow:after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-bottom: solid 2px var(--main-c);
  border-left: solid 2px var(--main-c);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (min-width: 768px) {
  .c-anchor-tile__link .arrow:after {
    width: 15px;
    height: 15px;
  }
}
.c-anchor-tile__link:hover .arrow {
  bottom: 20px;
}

.c-anchor-tile__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  gap: 4px;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .c-anchor-tile__title {
    font-size: 24px;
    gap: 10px;
  }
}

.c-anchor-tile__title .num {
  font-size: 36px;
  margin-bottom: -4px;
  font-family: "Josefin Sans", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  width: 28px;
}
@media screen and (min-width: 768px) {
  .c-anchor-tile__title .num {
    font-size: 50px;
    margin-bottom: -10px;
  }
}

.c-anchor-tile__text {
  margin-top: 10px;
}

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

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

.c-banner__item {
  width: 100%;
}

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

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

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

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

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

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

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

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

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

.c-bubble-link__container {
  position: relative;
  z-index: 0;
  max-width: 1920px;
  margin: 0 auto;
}

.c-bubble-link__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 25px;
     -moz-column-gap: 25px;
          column-gap: 25px;
  max-width: 1100px;
  width: 85%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-bubble-link__list {
    row-gap: 35px;
    width: 90%;
  }
}

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

.c-bubble-link__item a,
.c-bubble-link__item div {
  display: block;
  background-color: #fff;
  border-radius: 12px;
  border: solid 1px var(--border-c);
  padding: 25px;
  margin-block: 20px 15px;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-bubble-link__item a,
  .c-bubble-link__item div {
    width: 350px;
    padding: 30px;
  }
}
.c-bubble-link__item a::before, .c-bubble-link__item a::after,
.c-bubble-link__item div::before,
.c-bubble-link__item div::after {
  position: absolute;
  bottom: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 20px;
  height: 15px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
}
.c-bubble-link__item a::before,
.c-bubble-link__item div::before {
  background-color: var(--border-c);
}
.c-bubble-link__item a::after,
.c-bubble-link__item div::after {
  bottom: -14px;
  background-color: #fff;
}

.c-bubble-link__icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  top: -16px;
  right: 25px;
}
@media screen and (min-width: 768px) {
  .c-bubble-link__icon {
    width: 90px;
    height: 90px;
    top: -20px;
  }
}
.c-bubble-link__icon img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.c-bubble-link__title {
  letter-spacing: 0;
}

.c-bubble-link__text {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .c-bubble-link__text {
    margin-top: 15px;
  }
}

.c-bubble-link__bg-image {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-bubble-link__bg-image {
    display: block;
    position: absolute;
    top: 67px;
    left: 10%;
    z-index: -1;
    aspect-ratio: 1/1;
    max-width: 410px;
  }
}

.c-button-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .c-button-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.c-button-wrapper .c-button {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-button-wrapper .c-button {
    margin: auto;
  }
}

@media screen and (max-width: 767px) {
  .c-button-wrapper--pinned {
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    position: sticky;
    top: 0;
    z-index: 4;
  }
}
@media screen and (max-width: 767px) {
  .c-button-wrapper--pinned.--clicked .internal:not(.--current) {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .c-button-wrapper--pinned.-margin {
    top: 50px;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }
}

.c-button {
  padding: 17px 2em;
  display: inline-block;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  color: #fff;
  border: 2px solid var(--main);
  background-color: var(--main);
  border-radius: 0.3em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .c-button:hover, .c-button:active {
    color: var(--main-c);
    background-color: #fff;
  }
  .c-button:hover:after, .c-button:active:after {
    border-color: var(--main-c);
  }
}
.c-button:after {
  border-color: #fff;
}
.c-button.internal:after {
  content: "▼";
  display: block;
  margin-top: 5px;
}
.c-button.internal {
  width: 100%;
}

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

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

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

.c-button--sm-gray {
  background-color: var(--bluege);
  border-color: var(--bluege);
  color: var(--main-c);
}

.c-button--lg-gray {
  background-color: var(--bluege);
  border-color: var(--bluege);
  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--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-button--disabled {
  pointer-events: none;
}

.l-color-direct-wrapper .c-buy__card .kattene, .l-color-wrapper .c-buy__card .kattene {
  background-color: #fff;
  border: none;
}

.c-buy {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .c-buy {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.c-buy__card {
  width: 100%;
  margin-bottom: 50px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-buy__card {
    width: 45%;
  }
}
.c-buy__card h5 {
  color: #000;
  padding-left: 15px;
  padding-bottom: 15px;
}
.c-buy__card h5:before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 28px;
  position: absolute;
  top: 7px;
  left: 0;
  background-color: var(--main-c);
}
.c-buy__card .kattene {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: 1px solid #ccc;
  padding: 10px 14px;
  margin-top: 25px;
}
.c-buy__card .kattene__imgpart {
  width: 24%;
}
.c-buy__card .kattene__infopart {
  width: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.c-buy__card .kattene__title {
  font-weight: bold;
  width: 100%;
  line-height: 24px;
  margin-bottom: 10px;
}
.c-buy__card .kattene__description {
  font-size: 11px;
  width: 100%;
}
.c-buy__card .kattene .__one div {
  width: 100%;
}
.c-buy__card .kattene .__two div {
  width: 49%;
}
.c-buy__card .kattene .__three div {
  width: 33%;
}
.c-buy__card .kattene__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  -ms-flex-item-align: end;
      align-self: end;
}
.c-buy__card .kattene__btns div {
  width: 45%;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
.c-buy__card .kattene__btns a {
  width: 100%;
  height: 50px;
  display: block;
  line-height: 44px;
}
.c-buy__card .kattene .__orange {
  background-color: #FF8D2A;
  border-bottom: 5px solid #D36E21;
}
.c-buy__card .kattene .__red {
  background-color: #CB0712;
  border-bottom: 5px solid #9D040E;
}
.c-buy__card .kattene .__green {
  background-color: #00B379;
  border-bottom: 5px solid #008B5F;
}
.c-buy__card .kattene .__blue {
  text-align: left;
  color: #118662;
  margin-top: 10px;
  text-decoration: underline;
  line-height: 24px;
}

.parts-wrap {
  margin: 200px 0 200px 0;
  background: brown;
}

.c-card-img-circle__inner {
  margin-inline: 20px;
}

.c-card-img-circle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .c-card-img-circle {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 30px;
    row-gap: 20px;
  }
}
@media screen and (min-width: 1250px) {
  .c-card-img-circle {
    gap: 40px;
    row-gap: 140px;
  }
}
@media screen and (min-width: 1440px) {
  .c-card-img-circle {
    gap: 50px;
  }
}

.c-card-img-circle__child {
  text-align: center;
  padding-top: 115px;
  position: relative;
}
@media screen and (min-width: 1440px) {
  .c-card-img-circle__child {
    padding-top: 165px;
  }
}

.c-card-img-circle__body {
  background-color: #fff;
  border: 1px solid #D4DDE2;
  max-width: 319px;
  height: 100%;
  border-radius: 50px;
  padding: 32px 35px;
}
@media screen and (min-width: 576px) {
  .c-card-img-circle__body {
    max-width: 350px;
  }
}
@media screen and (min-width: 768px) {
  .c-card-img-circle__body {
    max-width: 319px;
    padding: 45px;
  }
}
@media screen and (min-width: 1440px) {
  .c-card-img-circle__body {
    max-width: 400px;
    border-radius: 80px;
  }
}

.c-card-img-circle__wrap {
  position: absolute;
  left: 50%;
  top: 0px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.c-card-img-circle__image {
  background: transparent;
  width: 141px;
  height: 130px;
}
@media screen and (min-width: 1440px) {
  .c-card-img-circle__image {
    width: 200px;
    height: 185px;
  }
}

.c-card-img-circle__lead {
  line-height: 35px;
  color: #2C4EFA;
  font-weight: bold;
  font-size: 20px;
  min-height: 70px;
  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;
  line-height: 29px;
}
@media screen and (min-width: 576px) {
  .c-card-img-circle__lead {
    font-size: 21px;
  }
}
@media screen and (min-width: 768px) {
  .c-card-img-circle__lead {
    line-height: 35px;
  }
}
@media screen and (min-width: 1440px) {
  .c-card-img-circle__lead {
    margin-top: 15px;
    font-size: 24px;
  }
}

.c-card-img-circle__text {
  margin-top: 20px;
  font-size: 14px;
  line-height: 2;
}
@media screen and (min-width: 1440px) {
  .c-card-img-circle__text {
    font-size: 16px;
  }
}
@media screen and (max-width: 639px) {
  .c-card-img-circle__text {
    margin-top: 10px;
  }
}

.c-card-img {
  width: 100%;
  height: 100%;
  background-color: var(--white);
  position: relative;
}
.c-card-img .c-card-img__body {
  padding: 1em;
}

.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: 58px 2em 3em;
  }
}

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

h6.c-card-img__title {
  text-align: center;
  color: var(--main-c);
  font-size: 16px;
}

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

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

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

.c-card-img--shadow {
  -webkit-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-img--shadow .c-card-img__body {
  padding: 1.2em 1.5em;
}

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

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

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

.c-card__head__text {
  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: 40px 30px;
  }
}

.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 W4", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
@media screen and (min-width: 768px) {
  .c-chart__year-title {
    font-size: 2.875rem;
    line-height: 1;
  }
}

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

@media screen and (min-width: 768px) {
  .c-conversion--full .c-title-cont {
    font-size: 22px;
  }
}
.c-conversion--full .c-conversion__inner {
  width: 90%;
  max-width: 1920px;
  min-height: auto;
  padding: 40px 0;
}

.l-inner--conversion {
  min-height: auto;
  padding: 40px 0;
}

.c-conversion {
  background-color: var(--bg-c);
  border-radius: 6px;
}

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

.c-conversion__inner {
  width: 95%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 0;
  position: relative;
  z-index: 1;
  border-radius: 6px;
}
@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;
    min-height: 350px;
  }
}

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

.c-conversion__text {
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .c-conversion__text {
    text-align: left !important;
  }
}

.c-conversion__btn-area {
  margin-top: 40px;
  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;
    padding: 26px;
  }
}

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

.c-cv-contact {
  border-radius: 10px;
  max-width: 1536px;
  width: 90%;
  margin: 0 auto;
}
.c-cv-contact.c-conversion--image::before {
  display: none;
}
.c-cv-contact .c-conversion__inner {
  min-height: 0;
  padding-block: 20px 30px;
}
@media screen and (min-width: 768px) {
  .c-cv-contact .c-conversion__inner {
    padding-block: 45px 55px;
  }
}
.c-cv-contact .c-conversion__title {
  font-size: 20px;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .c-cv-contact .c-conversion__title {
    font-size: 36px;
  }
}
.c-cv-contact .c-conversion__btn-area {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .c-cv-contact .c-conversion__btn-area {
    margin-top: 26px;
  }
}
.c-cv-contact .c-conversion__button {
  font-size: 16px;
  background: #E67B1E;
  background: -webkit-linear-gradient(175deg, rgb(230, 123, 30) 0%, rgb(234, 176, 59) 100%);
  background: linear-gradient(275deg, rgb(230, 123, 30) 0%, rgb(234, 176, 59) 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  max-width: 600px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 10px;
  padding: 20px;
  border: none;
}
@media screen and (min-width: 768px) {
  .c-cv-contact .c-conversion__button {
    font-size: 20px;
    gap: 20px;
    padding: 30px 20px;
  }
}
.c-cv-contact .c-conversion__button:hover {
  background: #fff;
  opacity: 1;
  color: #E8922E;
}
.c-cv-contact .c-conversion__button:hover .icon-mail {
  background-image: url("../images/icons/training-lp/icon-mail-orange.svg");
}
.c-cv-contact .icon-mail {
  display: block;
  width: 18px;
  height: 15px;
  background-image: url("../images/icons/training-lp/icon-mail.svg");
  background-size: cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-cv-contact .icon-mail {
    width: 25px;
    height: 20px;
  }
}
.c-cv-contact .c-cv-contact__link {
  display: block;
  font-size: 12px;
  text-decoration: underline;
  text-align: center;
  margin-top: 15px;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-cv-contact .c-cv-contact__link {
    font-size: 1rem;
    margin-top: 22px;
  }
}
.c-cv-contact .c-cv-contact__link:hover {
  opacity: 0.6;
}

.c-cv-modal-form {
  background-size: cover;
  color: #fff;
  text-align: center;
  padding-block: 40px;
}
@media screen and (min-width: 768px) {
  .c-cv-modal-form {
    padding-block: 82px 93px;
    padding-inline: 20px;
  }
}
.c-cv-modal-form .request-form {
  text-align: left;
  color: var(--black);
}

.c-cv-modal-form__inner {
  max-width: 1728px;
  margin: 0 auto;
}

.c-cv-modal-form__title {
  font-size: 18px;
  font-weight: 500;
  width: 85%;
  margin: 0 auto;
  text-align: left;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .c-cv-modal-form__title {
    font-size: clamp(1.375rem, 1.125rem + 0.52vw, 1.75rem);
    font-weight: bold;
    width: 100%;
    text-align: center;
  }
}

.c-cv-modal-form__text {
  font-size: 24px;
  text-shadow: 0px 0px 5px rgb(255, 255, 255);
  font-weight: bold;
  line-height: 1.4;
  padding-block: 24px;
  margin-top: 20px;
  margin-inline: auto;
  width: 85%;
  background-image: url("../images/training-lp/cv-modal-form-logo.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .c-cv-modal-form__text {
    font-size: clamp(2.25rem, 1.25rem + 2.08vw, 3.75rem);
    text-shadow: 0px 0px 10px rgb(255, 255, 255);
    width: 100%;
    margin-top: 45px;
  }
}

.c-cv-modal-form__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  width: 85%;
  margin-top: 30px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .c-cv-modal-form__list {
    gap: 32px;
    width: 90%;
    margin-top: 40px;
  }
}
@media screen and (min-width: 1400px) {
  .c-cv-modal-form__list {
    width: 100%;
  }
}

.c-cv-modal-form__item {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .c-cv-modal-form__item {
    width: calc((100% - 32px) / 2);
  }
}
@media screen and (min-width: 1400px) {
  .c-cv-modal-form__item {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.c-cv-modal-form__lead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .c-cv-modal-form__lead {
    font-size: clamp(1rem, 0.833rem + 0.35vw, 1.25rem);
  }
}
@media screen and (min-width: 1100px) {
  .c-cv-modal-form__lead {
    font-size: clamp(0.938rem, 0.096rem + 0.96vw, 1.25rem);
  }
}

.c-cv-modal-form__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #E67B1E;
  background: -webkit-linear-gradient(175deg, rgb(230, 123, 30) 0%, rgb(234, 176, 59) 100%);
  background: linear-gradient(275deg, rgb(230, 123, 30) 0%, rgb(234, 176, 59) 100%);
  color: #fff;
  border-radius: 10px;
  padding-block: 58px;
  padding-inline: 15px;
  margin-top: 15px;
  width: 100%;
  min-height: 180px;
  position: relative;
  z-index: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-cv-modal-form__button {
    padding-block: 108px 116px;
    padding-inline: 20px;
    margin-top: 25px;
  }
}
.c-cv-modal-form__button .btn-title {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .c-cv-modal-form__button .btn-title {
    font-size: clamp(1.25rem, 0.917rem + 0.69vw, 1.75rem);
  }
}
@media screen and (min-width: 1100px) {
  .c-cv-modal-form__button .btn-title {
    font-size: clamp(1.25rem, -0.096rem + 1.54vw, 1.75rem);
  }
}
.c-cv-modal-form__button .btn-sub-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  position: absolute;
  bottom: 1rem;
  right: 20px;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .c-cv-modal-form__button .btn-sub-text {
    font-size: 1rem;
  }
}
.c-cv-modal-form__button .btn-sub-text .arrow {
  position: relative;
  width: 24px;
  height: 24px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-cv-modal-form__button .btn-sub-text .arrow {
    width: 36px;
    height: 36px;
  }
}
.c-cv-modal-form__button .btn-sub-text .arrow::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 9px;
  left: 8px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 6px;
  height: 6px;
  border-top: solid 1px #E8922E;
  border-right: solid 1px #E8922E;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-cv-modal-form__button .btn-sub-text .arrow::after {
    top: 14px;
    left: 12px;
    width: 9px;
    height: 9px;
    border-top: solid 2px #E8922E;
    border-right: solid 2px #E8922E;
  }
}
.c-cv-modal-form__button .btn-bg {
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-cv-modal-form__button .btn-bg.btn01 {
  background-image: url("../images/training-lp/cv-modal-btn01.png");
}
.c-cv-modal-form__button .btn-bg.btn02 {
  background-image: url("../images/training-lp/cv-modal-btn02.png");
}
.c-cv-modal-form__button .btn-bg.btn03 {
  background-image: url("../images/training-lp/cv-modal-btn03.png");
}
.c-cv-modal-form__button .btn-bg.btn04 {
  background-image: url("../images/training-lp/cv-modal-btn04.png");
}
.c-cv-modal-form__button:hover {
  background: #fff;
  color: #E8922E;
}
.c-cv-modal-form__button:hover .arrow {
  background-color: #E8922E;
  width: 30px;
  height: 30px;
}
@media screen and (min-width: 768px) {
  .c-cv-modal-form__button:hover .arrow {
    width: 54px;
    height: 54px;
  }
}
.c-cv-modal-form__button:hover .arrow:after {
  top: 12px;
  left: 11px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
}
@media screen and (min-width: 768px) {
  .c-cv-modal-form__button:hover .arrow:after {
    top: 22px;
    left: 20px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
  }
}
.c-cv-modal-form__button:hover .btn-bg.btn01 {
  background-image: url("../images/training-lp/cv-modal-btn01-orange.png");
}
.c-cv-modal-form__button:hover .btn-bg.btn02 {
  background-image: url("../images/training-lp/cv-modal-btn02-orange.png");
}
.c-cv-modal-form__button:hover .btn-bg.btn03 {
  background-image: url("../images/training-lp/cv-modal-btn03-orange.png");
}
.c-cv-modal-form__button:hover .btn-bg.btn04 {
  background-image: url("../images/training-lp/cv-modal-btn04-orange.png");
}

.c-cv-modal-form__inner .chart-pic img {
  margin: 0 auto;
  width: 1px;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .c-cv-modal-form__inner .chart-pic img {
    width: 46%;
    margin-top: 36px;
  }
}
@media screen and (min-width: 1400px) {
  .c-cv-modal-form__inner .chart-pic img {
    width: 76%;
  }
}

.c-cv-modal-form__inner .chart-pic:nth-child(4) img {
  padding-bottom: 30px;
  margin-top: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (min-width: 768px) {
  .c-cv-modal-form__inner .chart-pic:nth-child(4) img {
    padding-bottom: 40px;
  }
}

.modal-content__download.-parts {
  color: var(--black);
}

.c-diagonal {
  height: 50px;
}
.c-diagonal--right {
  background: -webkit-gradient(linear, left top, right bottom, color-stop(50%, var(--bluege)), color-stop(50%, transparent)) top left/100% no-repeat;
  background: -webkit-linear-gradient(top left, var(--bluege) 50%, transparent 50%) top left/100% no-repeat;
  background: linear-gradient(to bottom right, var(--bluege) 50%, transparent 50%) top left/100% no-repeat;
}
.c-diagonal--left {
  background: -webkit-gradient(linear, right bottom, left top, color-stop(50%, var(--bluege)), color-stop(50%, transparent)) top left/100% no-repeat;
  background: -webkit-linear-gradient(bottom right, var(--bluege) 50%, transparent 50%) top left/100% no-repeat;
  background: linear-gradient(to top left, var(--bluege) 50%, transparent 50%) top left/100% no-repeat;
}
@media screen and (min-width: 768px) {
  .c-diagonal {
    height: 150px;
  }
}

.p-front-request__txt-wrap .p-front-request__txt {
  text-align: center;
}

.c-download .wpdm-download-link.btn.btn-primary {
  font-family: "Noto Sans JP", sans-serif;
}
.c-download .w3eden .card {
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
@media screen and (max-width: 767px) {
  .c-download .w3eden .card-body {
    padding: 10px 10px 0px;
  }
}
.c-download .w3eden .package-title a {
  color: #14A189;
  pointer-events: none;
}
.c-download .w3eden a.btn {
  color: #fff;
}
.c-download .w3eden .text-muted {
  color: #4a8eff !important;
}
@media screen and (max-width: 767px) {
  .c-download .w3eden .mr-3 {
    display: none;
  }
}
.c-download .w3eden .media {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .c-download .w3eden .media {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (max-width: 767px) {
  .c-download .w3eden .media div {
    margin-bottom: 15px;
    margin-left: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .c-download .w3eden .media .media-body {
    margin-bottom: 0;
  }
}

.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(8.3333333333% * 1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media screen and (min-width: 640px) {
  .c-flex__col-1_tab {
    width: calc(8.3333333333% * 1);
  }
  .c-flex__col-2_tab {
    width: calc(8.3333333333% * 2);
  }
  .c-flex__col-3_tab {
    width: calc(8.3333333333% * 3);
  }
  .c-flex__col-4_tab {
    width: calc(8.3333333333% * 4);
  }
  .c-flex__col-5_tab {
    width: calc(8.3333333333% * 5);
  }
  .c-flex__col-6_tab {
    width: calc(8.3333333333% * 6);
  }
  .c-flex__col-7_tab {
    width: calc(8.3333333333% * 7);
  }
  .c-flex__col-8_tab {
    width: calc(8.3333333333% * 8);
  }
  .c-flex__col-9_tab {
    width: calc(8.3333333333% * 9);
  }
  .c-flex__col-10_tab {
    width: calc(8.3333333333% * 10);
  }
  .c-flex__col-11_tab {
    width: calc(8.3333333333% * 11);
  }
  .c-flex__col-12_tab {
    width: calc(8.3333333333% * 12);
  }
}
@media screen and (min-width: 1100px) {
  .c-flex__col-1_pc {
    width: calc(8.3333333333% * 1);
  }
  .c-flex__col-2_pc {
    width: calc(8.3333333333% * 2);
  }
  .c-flex__col-3_pc {
    width: calc(8.3333333333% * 3);
  }
  .c-flex__col-4_pc {
    width: calc(8.3333333333% * 4);
  }
  .c-flex__col-5_pc {
    width: calc(8.3333333333% * 5);
  }
  .c-flex__col-6_pc {
    width: calc(8.3333333333% * 6);
  }
  .c-flex__col-7_pc {
    width: calc(8.3333333333% * 7);
  }
  .c-flex__col-8_pc {
    width: calc(8.3333333333% * 8);
  }
  .c-flex__col-9_pc {
    width: calc(8.3333333333% * 9);
  }
  .c-flex__col-10_pc {
    width: calc(8.3333333333% * 10);
  }
  .c-flex__col-11_pc {
    width: calc(8.3333333333% * 11);
  }
  .c-flex__col-12_pc {
    width: calc(8.3333333333% * 12);
  }
}
.c-grid {
  display: grid;
}
.c-grid--shadow .c-grid__child {
  -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-grid__child {
  width: 100%;
  margin-top: 7vw;
}
@media screen and (min-width: 768px) {
  .c-grid__child {
    margin-top: 30px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0;
}

.c-header__logo {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  width: 70%;
  height: auto;
  padding: 0 15px;
}
@media screen and (min-width: 1250px) {
  .c-header__logo {
    height: 90px;
    width: 355px;
    margin: 0 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0;
  }
}
.c-header__logo img {
  height: 80%;
  margin-left: 0;
  margin-top: 5px;
}
@media screen and (min-width: 1250px) {
  .c-header__logo img {
    margin: 0 auto;
    height: 100%;
  }
}

.c-header__nav {
  grid-area: nav;
  position: absolute;
  top: 50px;
  left: 100%;
  background-color: var(--white);
  width: 100vw;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: top;
      -ms-flex-align: top;
          align-items: top;
  border-top: 1px solid #fff;
}
@media screen and (min-width: 1250px) {
  .c-header__nav {
    top: 0%;
    height: 95px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .c-header__nav-list {
    min-width: 800px;
  }
}
@media screen and (max-width: 1249px) {
  .c-header__nav.is-open {
    left: 0;
    top: 0;
    height: calc(100vh - 50px);
    top: 50px;
    overflow: scroll;
  }
  .c-header__nav.is-open .c-header__nav-list {
    width: 100vw;
    top: 0;
  }
}
@media screen and (min-width: 1250px) {
  .c-header__nav {
    position: relative;
    top: auto;
    left: auto;
    background-color: transparent;
    width: auto;
  }
}
.c-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1250px) {
  .c-header__nav-list {
    margin-right: 2vw;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.c-header__nav-item {
  position: relative;
  margin-right: 28px;
  margin-top: 0;
}
@media screen and (max-width: 1249px) {
  .c-header__nav-item {
    background: var(--blue);
    color: #fff;
    font-size: 16px;
    margin: 0;
    border-bottom: 1px solid #fff;
  }
  .c-header__nav-item:first-child {
    display: none;
  }
  .c-header__nav-item.-is-toggle .c-header__nav-ttl:after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}
.c-header__nav-item:hover .c-header__sub-list {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 1250px) {
  .c-header__nav-item:hover .c-header__nav-ttl {
    color: var(--blue);
  }
}

.c-header__nav-ttl {
  font-size: clamp(0.875rem, 14px, 1.125rem);
  text-decoration: none;
}
@media screen and (max-width: 1249px) {
  .c-header__nav-ttl {
    height: 50px;
    display: block;
    font-size: 16px;
    line-height: 50px;
    padding: 0px 23px;
    pointer-events: none;
  }
}
.c-header__nav-ttl:after {
  content: "";
  position: absolute;
  display: block;
  width: 8px;
  height: 8px;
  margin: auto;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  right: 25px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  bottom: auto;
  top: 20px;
}
@media screen and (min-width: 1250px) {
  .c-header__nav-ttl:after {
    top: 0;
    bottom: 0;
    right: -17px;
    border-top: 2px solid var(--blue);
    border-right: 2px solid var(--blue);
  }
}

.c-header__contact {
  font-family: "Josefin Sans", sans-serif;
  max-width: 220px;
  width: 12vw;
  height: 95px;
  background: rgb(147, 114, 212);
  background: -webkit-gradient(linear, left top, right top, from(#9372d4), color-stop(#2c4efa), to(#7bb2c1));
  background: -webkit-linear-gradient(left, #9372d4, #2c4efa, #7bb2c1);
  background: linear-gradient(to right, #9372d4, #2c4efa, #7bb2c1);
  right: 0;
  top: 0;
  color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-header__contact--pc {
  display: none;
}
@media screen and (min-width: 1250px) {
  .c-header__contact--pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.c-header__contact--sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 90px;
  height: auto;
  font-size: 12px;
}
@media screen and (min-width: 1250px) {
  .c-header__contact--sp {
    display: none;
  }
}

@media screen and (max-width: 1249px) {
  .c-header__sub-list {
    display: none;
  }
}
@media screen and (min-width: 1250px) {
  .c-header__sub-list {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    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;
    border-top: 2px solid var(--blue);
    background-color: #fff;
    margin-top: 10px;
    -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-list li + li {
  border-top: 1px solid #efefef;
}

@media screen and (max-width: 1249px) {
  .c-header__sub-item {
    background-color: #fff;
  }
}
@media screen and (min-width: 1250px) {
  .c-header__sub-item {
    margin-left: 0;
  }
}
@media screen and (min-width: 1250px) {
  .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;
  padding: 10px 20px;
  color: var(--black);
  font-size: 14px;
  width: 100%;
}
.c-header__sub-ttl::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #000;
  bottom: 0;
  -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: 1250px) {
  .c-header__sub-ttl {
    display: inline-block;
  }
}

.c-header__third-list {
  border-top: 1px solid #efefef;
}
@media screen and (min-width: 1250px) {
  .c-header__third-list {
    border-top: none;
    -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__third-list li + li {
  border-top: 1px solid #efefef;
}

.c-header__third-item {
  margin-left: 1rem;
}
@media screen and (min-width: 1250px) {
  .c-header__third-item {
    margin-left: 0;
  }
}

.c-header__third-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;
  padding: 10px 6px;
  color: var(--black);
  font-size: 14px;
  width: 100%;
}
.c-header__third-ttl::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #000;
  bottom: 0;
  -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__third-ttl:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
@media screen and (min-width: 1250px) {
  .c-header__third-ttl {
    display: inline-block;
  }
}
.c-header__third-ttl:before {
  content: "";
  display: inline-block;
  margin-left: 35px;
  margin-right: 5px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #1e1e1e;
  border-right: 1px solid #1e1e1e;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
@media screen and (max-width: 1249px) {
  .c-header__third-ttl:before {
    margin-left: 8px;
  }
}

.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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 60px;
  height: 100%;
  position: relative;
  cursor: pointer;
  z-index: 1;
}
@media screen and (min-width: 1250px) {
  .c-header__hamburger {
    display: none;
  }
}
.c-header__hamburger span {
  display: block;
  width: 17px;
  height: 2px;
  background: var(--blue);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 1;
}
.c-header__hamburger__inner {
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 2px;
  padding-bottom: 2px;
  margin-bottom: 3px;
}
.c-header__hamburger__text {
  font-size: 8px;
  color: var(--blue);
  font-family: "Josefin Sans", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, Helvetica, sans-serif;
}
.c-header__hamburger.is-active span:first-child {
  -webkit-transform: rotate(45deg) translate3D(8px, 8px, 0);
          transform: rotate(45deg) translate3D(8px, 8px, 0);
}
.c-header__hamburger.is-active span:last-child {
  -webkit-transform: rotate(-45deg) translate3D(2px, -2px, 0);
          transform: rotate(-45deg) translate3D(2px, -2px, 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-mv__inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .c-interview-mv__inner {
    width: 90%;
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
  }
}

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

.c-interview-mv__image {
  aspect-ratio: 970/580;
  max-width: 970px;
  width: 100%;
}
.c-interview-mv__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-interview-mv__client {
  position: relative;
  background-color: #fff;
  border: solid 1px var(--border-c);
  width: 90%;
  margin-top: -20px;
  margin-inline: auto;
  padding: 20px;
  max-width: 540px;
}
@media screen and (min-width: 768px) {
  .c-interview-mv__client {
    margin-top: calc(clamp(3.125rem, -1.042rem + 8.68vw, 9.375rem) * -1);
    margin-left: 20px;
    width: 84%;
    padding: 35px;
  }
}

.c-interview-mv__company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.c-interview-mv__company-name {
  font-size: 20px;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .c-interview-mv__company-name {
    font-size: 26px;
  }
}

.c-interview-mv__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3px;
  background-color: var(--main-c);
  border: solid 1px var(--main-c);
  color: #fff;
  font-size: 10px;
  border-radius: 4px;
  padding: 2px 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-interview-mv__link {
    font-size: 12px;
  }
}
.c-interview-mv__link:before {
  content: "";
  display: inline-block;
  background-image: url("../images/icons/training-lp/icon-external.svg");
  background-size: cover;
  width: 12px;
  height: 13px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-interview-mv__link:hover {
  background-color: #fff;
  color: var(--main-c);
}
.c-interview-mv__link:hover:before {
  background-image: url("../images/icons/training-lp/icon-external-blue.svg");
}

.c-interview-mv__interviewee {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .c-interview-mv__interviewee {
    font-size: 18px;
    margin-top: 0;
  }
}

.c-interview-mv__career {
  margin-top: 20px;
}

.c-interview-mv__head {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  color: var(--border-c);
}
@media screen and (min-width: 768px) {
  .c-interview-mv__head {
    margin-left: -21px;
  }
}

.c-interview-mv__title {
  font-size: 22px;
  background-color: #fff;
  width: 100%;
  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;
  padding-block: 20px 15px;
}
@media screen and (min-width: 768px) {
  .c-interview-mv__title {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    font-size: clamp(1.875rem, 1.25rem + 1.3vw, 2.813rem);
    border: solid 4px var(--border-c);
    border-radius: 6px;
    padding-inline: 40px;
    padding-block: 32px;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
  }
}

.c-interview-mv__sub-title {
  font-size: 12px;
  position: absolute;
  top: 8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0.3;
}
@media screen and (min-width: 768px) {
  .c-interview-mv__sub-title {
    font-size: clamp(1.25rem, 1.083rem + 0.35vw, 1.5rem);
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    top: 20px;
    right: 0;
    left: unset;
    -webkit-transform: unset;
            transform: unset;
  }
}

.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: 1100px;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-interview-visual__inner {
    display: grid;
    grid-template-columns: 45% 55%;
  }
}

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

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

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

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

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

.c-interview-visual__catch {
  font-size: 4.8vw;
  font-family: "游明朝", 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: 1250px) {
  .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: 1250px) {
  .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-lecture-point__inner {
  padding-inline: 28px;
}

.c-lecture-point__container {
  max-width: 1300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-inline: auto;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .c-lecture-point__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 25px;
  }
}
@media screen and (min-width: 931px) {
  .c-lecture-point__container {
    gap: 35px;
    row-gap: 80px;
  }
}

.c-lecture-point__card {
  background: #fff;
  max-width: 420px;
  margin-inline: auto;
  border: 1px solid #D4DDE2;
  -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: 576px) {
  .c-lecture-point__card {
    max-width: 350px;
  }
}
@media screen and (min-width: 640px) {
  .c-lecture-point__card {
    max-width: 380px;
  }
}
@media screen and (min-width: 768px) {
  .c-lecture-point__card {
    max-width: 48%;
    margin: 0;
  }
}
@media screen and (min-width: 1100px) {
  .c-lecture-point__card {
    max-width: 410px;
    margin: 0;
  }
}

.c-lecture-point__image img {
  display: block;
  width: 100%;
  height: auto;
}

.c-lecture-point__content {
  padding: 20px 20px 35px;
}
@media screen and (min-width: 768px) {
  .c-lecture-point__content {
    padding: 30px 40px 42px;
  }
}

.c-lecture-point__label {
  font-family: "Josefin Sans", sans-serif;
  color: #2C4EFA;
  line-height: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid #2C4EFA;
}
@media screen and (min-width: 768px) {
  .c-lecture-point__label {
    font-size: 18px;
  }
}

.c-lecture-point__title {
  font-size: 32px;
  font-weight: bold;
  color: #2C4EFA;
  line-height: 1;
  margin-top: 12px;
  letter-spacing: 0;
}
@media screen and (min-width: 576px) {
  .c-lecture-point__title {
    font-size: 34px;
  }
}
@media screen and (min-width: 640px) {
  .c-lecture-point__title {
    font-size: 36px;
  }
}
@media screen and (min-width: 768px) {
  .c-lecture-point__title {
    font-size: 40px;
    margin-top: 15px;
  }
}

.c-lecture-point__lead {
  font-size: clamp(1.25rem, 1.189rem + 0.26vw, 1.5rem);
  font-weight: bold;
  margin-top: 16px;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .c-lecture-point__lead {
    margin-top: 31px;
  }
}

.c-lecture-point__text {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .c-lecture-point__text {
    margin-top: 32px;
  }
}
.c-lecture-point__text p + p {
  margin-top: 20px;
}

.c-lineup__list {
  max-width: 1100px;
  width: 85%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .c-lineup__list {
    width: 90%;
  }
}

.c-lineup__item {
  background-color: #fff;
  border: solid 1px var(--border-c);
}

.c-lineup__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: var(--main-c);
  position: relative;
  padding: 15px;
}
@media screen and (min-width: 768px) {
  .c-lineup__head {
    display: block;
    padding: 9px 40px;
  }
}

.c-lineup__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  color: #fff;
  position: relative;
  gap: 10px;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .c-lineup__title {
    display: block;
    font-size: clamp(1.125rem, 0.875rem + 0.52vw, 1.5rem);
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .c-lineup__title .num {
    position: absolute;
    left: 0;
  }
}

.c-lineup__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-left: auto;
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .c-lineup__tags {
    position: absolute;
    top: 50%;
    right: 40px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    margin-left: unset;
    margin-top: 0;
  }
}

.c-lineup__tags-item {
  background-color: #fff;
  color: var(--main-c);
  font-size: 14px;
  font-weight: 500;
  width: 50px;
  text-align: center;
  opacity: 0.3;
}
.c-lineup__tags-item.tag-1, .c-lineup__tags-item.tag-2 {
  opacity: 1;
}

.c-lineup__body {
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .c-lineup__body {
    padding-block: 40px 30px;
    padding-inline: 40px;
  }
}

.c-lineup__upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .c-lineup__upper {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    gap: 30px;
  }
}

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

.c-lineup__purpose {
  background-color: #fff;
  border: solid 1px var(--border-c);
  padding: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 768px) {
  .c-lineup__purpose {
    padding: 20px 30px;
  }
}
.c-lineup__purpose .title {
  font-weight: bold;
  font-size: 14px;
}
.c-lineup__purpose .text ul li {
  list-style-type: none;
  padding-left: 1rem;
  position: relative;
}
.c-lineup__purpose .text ul li::after {
  content: "";
  display: inline-block;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 0.3125rem;
  position: absolute;
  top: 0.75em;
  left: 0;
  background-color: var(--black);
}

.c-lineup__lower {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .c-lineup__lower {
    margin-top: 30px;
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    gap: 10px;
  }
}

.c-lineup__type {
  font-size: 15px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .c-lineup__type {
    font-size: clamp(0.75rem, 0.315rem + 0.91vw, 0.938rem);
  }
}
@media screen and (min-width: 1100px) {
  .c-lineup__type {
    font-size: 15px;
  }
}

.c-lineup__type-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 768px) {
  .c-lineup__type-list {
    gap: 8px;
  }
}

.c-lineup__type-item {
  background-color: #7BB2C1;
  color: #fff;
  opacity: 0.3;
  width: calc((100% - 10px) / 2);
  font-size: 11px;
  font-weight: 500;
  text-align: center;
  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;
  padding: 5px;
}
@media screen and (min-width: 768px) {
  .c-lineup__type-item {
    width: 100%;
    font-size: clamp(0.625rem, 0.045rem + 1.21vw, 0.875rem);
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-block: 3px 5px;
  }
}
@media screen and (min-width: 1100px) {
  .c-lineup__type-item {
    font-size: 14px;
  }
}
.c-lineup__type-item.check-1, .c-lineup__type-item.check-2, .c-lineup__type-item.check-3, .c-lineup__type-item.check-4 {
  opacity: 1;
}

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

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

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

.c-list-box__title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--bluge);
  color: var(--black);
}
@media screen and (min-width: 768px) {
  .c-list-box__title {
    width: 26%;
  }
}

.c-list-box__img {
  width: 3em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

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

.c-list-box__cont {
  text-align: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid var(--base-c);
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .c-list-box__cont {
    width: 74%;
    font-size: 16px;
  }
}

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

.c-list-define {
  padding: 30px;
  background-color: #fff;
  border-radius: 6px;
}

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

.c-list-define__cont {
  width: 100%;
  position: relative;
  padding-left: 15px;
}
.c-list-define__cont:before {
  content: "";
  width: 7px;
  height: 7px;
  background-color: var(--main-c);
  position: relative;
  display: inline-block;
  border-radius: 50px;
  vertical-align: middle;
  position: absolute;
  top: 9px;
  left: 0;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .c-list-define__cont:before {
    top: 12px;
  }
}

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

@media screen and (min-width: 768px) {
  .c-list-image__img-wrap {
    width: auto;
    float: left;
    margin-right: 5px;
  }
}

.c-list-image__img {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-list-image__img {
    width: 90%;
    margin-left: 0;
  }
}

@media screen and (min-width: 768px) {
  .c-list-image__body {
    width: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}

.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%;
    height: 100%;
  }
}
@media screen and (min-width: 768px) {
  .c-list-image--col2 .c-list-image__body {
    width: 65%;
  }
}
.c-list-image--col2 .c-list-image__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

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

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

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

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

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

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

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

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

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

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

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

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

.c-main-visual__lead {
  font-size: 4.8vw;
  font-family: "游明朝", 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-map__wrapper {
  width: 100%;
  padding: 0;
}
.c-map__wrapper iframe {
  width: 100%;
}

/*管理画面でブロックエディタを有効にするためタッチイベント無効*/
.wp-block-acf-map iframe {
  pointer-events: none;
}

.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(1100px / 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: 10px 10px 10px 0px rgba(0, 0, 0, 0.14);
          box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.14);
}
@media screen and (min-width: 768px) {
  .c-media-full.-alfa .c-media-full__image {
    width: 50%;
  }
}
.c-media-full.-alfa .c-media-full__wrap {
  margin: 0 0 0 auto;
  background-color: transparent;
  position: relative;
  z-index: 1;
}
.c-media-full.-alfa .c-media-full__inner {
  margin: 0 auto 0 15%;
}

.c-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  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 .c-button {
  background: -webkit-gradient(linear, left top, right top, from(#0074be), to(#0051b7));
  background: -webkit-linear-gradient(left, #0074be, #0051b7);
  background: linear-gradient(to right, #0074be, #0051b7);
  padding: 14px 50px;
  border-radius: 4px;
  border: none;
  font-weight: 500;
  font-size: 13px;
}
.c-media .c-button:before {
  content: "\f044";
  font-size: 12px;
  font-family: "Font Awesome 5 Free";
  margin-right: 5px;
  font-weight: bold;
}

.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: 30px -60px 0 0;
  }
}

.c-media-image__wrap {
  background-size: cover;
  background-repeat: no-repeat;
}
.c-media-image__wrap .c-title-h3 {
  margin-bottom: 20px;
}

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

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

.c-media__inner {
  position: relative;
  z-index: 3;
  max-width: 100%;
  padding: 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;
  z-index: 2;
  -webkit-filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.1));
}
@media screen and (min-width: 768px) {
  .c-media__cont--float {
    width: calc(50% + 30px);
    margin: 30px 0 0 -60px;
    padding: 30px;
  }
}

.c-media__list-title {
  padding-left: 1.5em;
  font-size: 14px;
  font-weight: 600;
  position: relative;
}
.c-media__list-title::before {
  content: "";
  width: 1.2em;
  height: 1.2em;
  display: block;
  line-height: 1.2em;
  text-align: center;
  color: var(--white);
  border-radius: 50%;
  background-color: var(--main-c);
  position: absolute;
  top: 14px;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-media__list-title::after {
  content: "";
  background: url(../images/module/check.svg);
  position: absolute;
  top: 11px;
  left: 5px;
  margin: auto;
  width: 10px;
  height: 10px;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .c-media__list-title::after {
    left: 0.36em;
    margin: auto;
    width: 0.5em;
    height: 0.5em;
  }
}
@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);
  margin-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .c-media__title {
    font-size: 1.8rem;
    line-height: 36px;
  }
}
.c-media__title + .c-media__sub-title {
  margin-top: 5px;
}
.c-media__title + .c-media__text {
  margin-top: 5px;
}
.c-media__title + .c-media__list {
  margin-top: 5px;
}
.c-media__title + .c-media__button-area {
  margin-top: 5px;
}
.c-media__sub-title + .c-media__text {
  margin-top: 10px;
}
.c-media__sub-title + .c-media__list {
  margin-top: 10px;
}
.c-media__sub-title + .c-media__button-area {
  margin-top: 10px;
}
.c-media__text + .c-media__list {
  margin-top: 10px;
}
.c-media__text + .c-media__button-area {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .c-media__text + .c-media__list {
    margin-top: 20px;
  }
  .c-media__text + .c-media__button-area {
    margin-top: 20px;
  }
}

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

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

.c-menu-link__list {
  max-width: 1100px;
  margin: 0 auto;
}

.c-menu-link__item {
  background-color: #fff;
  padding: 20px 38px;
}
@media screen and (min-width: 768px) {
  .c-menu-link__item {
    padding: 35px 40px;
  }
}

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

.c-menu-link__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-size: 20px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  letter-spacing: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-menu-link__title {
    gap: 10px;
    font-size: clamp(1.5rem, 1.167rem + 0.69vw, 2rem);
  }
}
.c-menu-link__title .num {
  font-size: 40px;
  font-family: "Josefin Sans", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, Helvetica, sans-serif;
  font-weight: 400;
  text-align: center;
  line-height: 1;
  margin-bottom: -8px;
  width: 33px;
}
@media screen and (min-width: 768px) {
  .c-menu-link__title .num {
    font-size: clamp(3.125rem, 2.708rem + 0.87vw, 3.75rem);
    margin-bottom: -14px;
  }
}
.c-menu-link__title .text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 1.5;
  padding-right: 24px;
}
@media screen and (min-width: 768px) {
  .c-menu-link__title .text {
    padding-right: 35px;
  }
}
.c-menu-link__title .c-menu-link__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--main-c);
  border: solid 2px var(--main-c);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin-top: 2px;
  position: absolute;
  right: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-menu-link__title .c-menu-link__arrow {
    width: 25px;
    height: 25px;
    margin-top: 5px;
  }
}
.c-menu-link__title .c-menu-link__arrow:after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-right: 2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-menu-link__title .c-menu-link__arrow:after {
    width: 8px;
    height: 8px;
    margin-right: 3px;
  }
}
.c-menu-link__title:hover {
  color: var(--main-c);
}
.c-menu-link__title:hover .c-menu-link__arrow {
  background-color: #fff;
}
.c-menu-link__title:hover .c-menu-link__arrow:after {
  border-top: solid 2px var(--main-c);
  border-right: solid 2px var(--main-c);
}

.c-menu-link__title-link {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.c-menu-link__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin-left: auto;
  margin-top: 11px;
}
@media screen and (min-width: 768px) {
  .c-menu-link__tags {
    margin-left: unset;
    margin-top: 0;
    width: 248px;
  }
}

.c-menu-link__tags-item {
  background-color: #D5D5D5;
  color: #fff;
  padding: 1px 5px;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .c-menu-link__tags-item {
    padding: 5px 11px;
    font-size: 1rem;
  }
}
.c-menu-link__tags-item.check-1 {
  background-color: #5DB2C1;
}
.c-menu-link__tags-item.check-2 {
  background-color: #9372D4;
}

.c-menu-link__body {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .c-menu-link__body {
    margin-top: 24px;
  }
}

.c-menu-link__body-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .c-menu-link__body-list {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

.c-menu-link__body-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  min-height: 60px;
  padding: 9px 20px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  background-color: var(--border-c);
  border-radius: 6px;
  color: var(--main-c);
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-menu-link__body-button {
    height: 100%;
    min-height: 74px;
    font-size: 15px;
  }
}
@media screen and (min-width: 1100px) {
  .c-menu-link__body-button {
    min-height: 60px;
  }
}
.c-menu-link__body-button .button-num {
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .c-menu-link__body-button .button-num {
    left: 20px;
  }
}
.c-menu-link__body-button:hover {
  background-color: var(--main-c);
  color: #fff;
}

.c-overview__inner {
  max-width: 1100px;
  width: 85%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-overview__inner {
    width: 90%;
  }
}

.c-overview__title {
  text-align: center;
  font-size: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .c-overview__title {
    font-size: 40px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
  }
}
.c-overview__title .num {
  font-size: 44px;
  margin-bottom: -8px;
  font-weight: 400;
  font-family: "Josefin Sans", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, Helvetica, sans-serif;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .c-overview__title .num {
    font-size: 80px;
    margin-bottom: -13px;
  }
}

.c-overview__upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .c-overview__upper {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    gap: 50px;
    margin-top: 35px;
  }
}

.c-overview__image {
  width: 55%;
  max-width: 350px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-overview__image {
    width: 32%;
  }
}

.c-overview__cont {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.c-overview__lead {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .c-overview__lead {
    font-size: 32px;
  }
}

.c-overview__text {
  margin-top: 25px;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .c-overview__text {
    margin-top: 30px;
    font-size: 18px;
  }
}

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

.c-overview__text02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: solid 1px var(--border-c);
}
@media screen and (min-width: 768px) {
  .c-overview__text02 {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
  }
}
.c-overview__text02 .left {
  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;
  background-color: var(--main-c);
  color: #fff;
  width: 100%;
  text-align: center;
  padding: 12px;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .c-overview__text02 .left {
    width: 240px;
  }
}
.c-overview__text02 .right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 15px 25px;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .c-overview__text02 .right {
    padding: 25px 30px;
  }
}

.c-overview__text03 {
  background: #9372D4;
  background: -webkit-gradient(linear, left top, right top, from(rgba(123, 178, 193, 0.8)), color-stop(55%, rgba(44, 78, 250, 0.8)), to(rgba(147, 114, 212, 0.8)));
  background: -webkit-linear-gradient(left, rgba(123, 178, 193, 0.8) 0%, rgba(44, 78, 250, 0.8) 55%, rgba(147, 114, 212, 0.8) 100%);
  background: linear-gradient(90deg, rgba(123, 178, 193, 0.8) 0%, rgba(44, 78, 250, 0.8) 55%, rgba(147, 114, 212, 0.8) 100%);
  color: #fff;
  padding: 20px 25px;
  border-radius: 6px;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .c-overview__text03 {
    padding: 35px 50px;
    margin-top: 25px;
  }
}
.c-overview__text03 .title {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .c-overview__text03 .title {
    font-size: 20px;
  }
}
.c-overview__text03 .text {
  font-size: 16px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .c-overview__text03 .text {
    font-size: 20px;
  }
}
.c-overview__text03 .text ul li {
  list-style-type: none;
  padding-left: 1rem;
  position: relative;
}
.c-overview__text03 .text ul li::after {
  content: "";
  display: inline-block;
  width: 0.3125rem;
  height: 0.3125rem;
  border-radius: 0.3125rem;
  position: absolute;
  top: 0.75em;
  left: 0;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .c-overview__text03 .text ul li::after {
    width: 0.375rem;
    height: 0.375rem;
  }
}

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

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

.c-point__cont {
  width: 85%;
  padding: 10px 0 10px 15px;
}
@media screen and (min-width: 768px) {
  .c-point__cont {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}

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

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

.c-point-a {
  max-width: 1920px;
  margin: 0 auto;
}

.c-point-a__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) {
  .c-point-a__list {
    gap: 48px;
  }
}

.c-point-a__item {
  max-width: 1825px;
  width: 100%;
  background-color: #fff;
  padding-bottom: 40px;
}
@media screen and (min-width: 1100px) {
  .c-point-a__item {
    width: 96%;
    border: solid 1px var(--border-c);
    margin-top: 40px;
    margin-right: auto;
    padding-bottom: 64px;
  }
}

.c-point-a__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 1580px;
}
@media screen and (min-width: 1100px) {
  .c-point-a__contents {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    gap: clamp(1.875rem, -0.64rem + 3.66vw, 3.75rem);
    margin-inline: 20px;
  }
}
@media screen and (min-width: 1440px) {
  .c-point-a__contents {
    margin-inline: unset;
    margin-left: clamp(6.25rem, -3.125rem + 10.42vw, 9.375rem);
    width: 87%;
  }
}

.c-point-a__image {
  aspect-ratio: 375/300;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 1100px) {
  .c-point-a__image {
    aspect-ratio: 838/580;
    width: 54%;
    max-width: 838px;
    margin-top: -45px;
  }
}
.c-point-a__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-point-a__text-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-top: 20px;
  position: relative;
  width: 85%;
  margin: 0 auto;
}
@media screen and (min-width: 1100px) {
  .c-point-a__text-wrap {
    padding-top: 64px;
    width: 100%;
    margin: unset;
  }
}

.c-point-a__num {
  font-size: 16px;
  font-family: "Josefin Sans", "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, Helvetica, sans-serif;
  position: relative;
  text-shadow: 0.5px 0.5px 0.5px var(--main-c), -0.5px 0.5px 0.5px var(--main-c), 0.5px -0.5px 0.5px var(--main-c), -0.5px -0.5px 0.5px var(--main-c), 0.5px 0px 0.5px var(--main-c), 0px 0.5px 0.5px var(--main-c), -0.5px 0px 0.5px var(--main-c), 0px -0.5px 0.5px var(--main-c);
  color: #fff;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .c-point-a__num {
    font-size: 36px;
    text-shadow: 1px 1px 1px var(--main-c), -1px 1px 1px var(--main-c), 1px -1px 1px var(--main-c), -1px -1px 1px var(--main-c), 1px 0px 1px var(--main-c), 0px 1px 1px var(--main-c), -1px 0px 1px var(--main-c), 0px -1px 1px var(--main-c);
  }
}
@media screen and (min-width: 1100px) {
  .c-point-a__num {
    position: absolute;
    top: -29px;
    left: 0;
  }
}

.c-point-a__title {
  font-size: 26px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .c-point-a__title {
    font-size: 44px;
  }
}
@media screen and (min-width: 1100px) {
  .c-point-a__title {
    font-size: clamp(2.25rem, 1.579rem + 0.98vw, 2.75rem);
  }
}

.c-point-a__lead {
  font-size: 18px;
  margin-top: 14px;
}
@media screen and (min-width: 768px) {
  .c-point-a__lead {
    font-size: 24px;
    margin-top: 25px;
  }
}

.c-point-a__text {
  margin-top: 24px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .c-point-a__text {
    margin-top: 40px;
  }
}

@media screen and (min-width: 1100px) {
  .c-point-a--reverse {
    margin-right: unset;
    margin-left: auto;
  }
}
.c-point-a--reverse .c-point-a__contents {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1100px) {
  .c-point-a--reverse .c-point-a__contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    margin-inline: 20px;
  }
}
@media screen and (min-width: 1440px) {
  .c-point-a--reverse .c-point-a__contents {
    margin-inline: unset;
    margin-left: clamp(5rem, 1.813rem + 3.54vw, 6.063rem);
  }
}

.c-point-b {
  text-align: left;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.c-point-b__inner {
  max-width: 1100px;
  width: 85%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-point-b__inner {
    width: 90%;
  }
}

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

.c-point-b__head-title {
  font-size: 20px;
  text-align: center;
  letter-spacing: 0;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .c-point-b__head-title {
    font-size: 28px;
  }
}

.c-point-b__head-lead {
  color: var(--main-c);
  margin-top: 16px;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .c-point-b__head-lead {
    font-size: 32px;
  }
}

.c-point-b__head-text {
  margin-top: 20px;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .c-point-b__head-text {
    margin-top: 32px;
    font-size: 24px;
  }
}

.c-point-b__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
  counter-reset: listnum;
  margin-top: 56px;
}
@media screen and (min-width: 768px) {
  .c-point-b__list {
    gap: 40px;
    margin-top: 80px;
  }
}

.c-point-b__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: solid 1px var(--border-c);
}
@media screen and (min-width: 1210px) {
  .c-point-b__item {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
  }
}

.c-point-b__image {
  width: 100%;
}
@media screen and (min-width: 1210px) {
  .c-point-b__image {
    width: 46%;
    max-width: 500px;
  }
}
.c-point-b__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-point-b__text-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #fff;
  padding: 30px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-point-b__text-wrap {
    padding-block: 40px 55px;
    padding-inline: 50px;
  }
}
.c-point-b__text-wrap::after {
  content: "SOLUTION" counter(listnum, decimal-leading-zero);
  counter-increment: listnum;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 30px;
  font-family: "Josefin Sans", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, Helvetica, sans-serif;
  color: rgba(223, 231, 239, 0.3);
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .c-point-b__text-wrap::after {
    font-size: 60px;
    right: 0;
    left: unset;
  }
}

.c-point-b__title {
  font-size: 5.3333333333vw;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .c-point-b__title {
    font-size: 32px;
  }
}

.c-point-b__text {
  margin-top: 20px;
  font-size: 1rem;
}

.c-point-b__bg-image {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-point-b__bg-image {
    display: block;
    position: absolute;
    top: 50px;
    right: 10%;
    z-index: -1;
    aspect-ratio: 1/1;
    max-width: 410px;
  }
  .c-point-b__bg-image.is-fixed {
    position: fixed;
  }
}

.c-point-b--reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1210px) {
  .c-point-b--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.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-pro__inner {
  position: relative;
  overflow: hidden;
  padding-bottom: 100px;
}
@media screen and (min-width: 1440px) {
  .c-pro__inner {
    padding-bottom: 130px;
  }
}

.c-pro__inner.no-bg {
  padding-top: 20px;
  padding-bottom: 20px;
}

.c-pro__bg {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  min-width: 1000px;
}
.c-pro__bg img {
  display: block;
}

.c-pro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .c-pro {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 95%;
  }
}
@media screen and (min-width: 768px) {
  .c-pro.c-pro-right {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.c-pro__wrap {
  max-width: 220px;
  z-index: 2;
  margin: 0 -15px -15px;
}
@media screen and (min-width: 768px) {
  .c-pro__wrap {
    width: auto;
    max-width: 380px;
    margin-bottom: 0;
  }
}

.c-pro__image {
  width: 100%;
  height: auto;
  display: block;
}

.c-pro__content {
  background: #fff;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 40px 35px;
  max-width: 319px;
  min-width: 320px;
  text-align: center;
  -webkit-filter: drop-shadow(0px 2px 8px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0px 2px 8px rgba(0, 0, 0, 0.2));
}
@media screen and (min-width: 768px) {
  .c-pro__content {
    padding: 40px 50px 46px;
    min-width: 540px;
    margin-top: 0;
  }
}
@media screen and (max-width: 639px) {
  .c-pro__content {
    padding: 35px 15px;
  }
}

.c-pro__text {
  font-size: 20px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .c-pro__text {
    font-size: 30px;
  }
}

.c-pro-text__blue {
  font-weight: bold;
  background: #005DCB;
  color: #fff;
  font-size: 22px;
}
@media screen and (min-width: 768px) {
  .c-pro-text__blue {
    font-size: 30px;
  }
}

@media screen and (max-width: 768px) {
  .c-pro-text__sp-br {
    display: none;
  }
}

.c-profile-wrapper {
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .c-profile-wrapper {
    padding: 100px 0;
  }
}

.c-title-cont--profile .c-title-cont__sub {
  font-weight: 500;
}

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

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

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

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

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

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

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

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

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

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.c-program__inner {
  max-width: 1100px;
  margin-inline: auto;
}

/* タブメニューのスタイル */
.c-program-tab__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
}

.c-program-tab__list {
  background-color: #d5d5d5;
  color: #000;
  padding: 11px 0 7px;
  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;
  margin-right: 5px;
  width: 100%;
  border-radius: 10px 10px 0 0;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-weight: 500;
  border: 1px solid #d4dde2;
  border-bottom: none;
}
.c-program-tab__list:last-child {
  margin-right: 0;
}
.c-program-tab__list:hover {
  background-color: #2C4EFA;
}
.c-program-tab__list:hover .c-program-tab__text-pc {
  color: #fff;
}
.c-program-tab__list.active:hover .c-program-tab__text-pc {
  color: #000;
}
@media screen and (min-width: 576px) {
  .c-program-tab__list {
    margin-right: 6px;
  }
}
@media screen and (min-width: 871px) {
  .c-program-tab__list {
    padding: 0 10px;
    height: 50px;
  }
}
@media screen and (min-width: 1100px) {
  .c-program-tab__list {
    height: 69px;
  }
}

.c-program-tab__list.active {
  background-color: #fff;
}

.c-program-tab__text-sp {
  font-family: "Josefin Sans", sans-serif;
  font-size: 18px;
}
@media screen and (min-width: 871px) {
  .c-program-tab__text-sp {
    display: none;
  }
}

.c-program-tab__text-pc {
  text-align: center;
  display: none;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
}
@media screen and (min-width: 871px) {
  .c-program-tab__text-pc {
    display: block;
    font-size: 10px;
  }
}
@media screen and (min-width: 1100px) {
  .c-program-tab__text-pc {
    font-size: 12px;
  }
}

/* タブコンテンツのスタイル */
.c-program-tab__content {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  padding: 35px 10px;
  background: #fff;
  border-radius: 0px 0px 20px 20px;
  border: 1px solid #d4dde2;
  border-top: none;
}
@media screen and (min-width: 640px) {
  .c-program-tab__content {
    padding: 41px 40px;
  }
}
@media screen and (min-width: 768px) {
  .c-program-tab__content {
    padding: 51px 60px;
  }
}
@media screen and (min-width: 1100px) {
  .c-program-tab__content {
    padding: 61px 80px;
  }
}

.c-program-tab__item {
  display: none;
}

.c-program-tab__item.active {
  display: block;
}

.c-program-tab-item__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: normal;
  font-family: "Josefin Sans", sans-serif;
  gap: 4px;
  background: #2C4EFA;
  opacity: 0.5;
  color: #fff;
  padding: 6px 14px 1px 14px;
  border-radius: 0 0 10px 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-height: 80px;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 640px) {
  .c-program-tab-item__label {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 8px 10px 1px 10px;
  }
}
@media screen and (min-width: 768px) {
  .c-program-tab-item__label {
    padding: 11px 13px 2px 13px;
  }
}
@media screen and (min-width: 1100px) {
  .c-program-tab-item__label {
    padding: 15px 17px 6px 17px;
  }
}

.c-program-tab-item-label__text {
  font-size: 14px;
  line-height: 1;
}
@media screen and (min-width: 640px) {
  .c-program-tab-item-label__text {
    font-size: 12px;
  }
}
@media screen and (min-width: 768px) {
  .c-program-tab-item-label__text {
    font-size: 15px;
  }
}
@media screen and (min-width: 576px) {
  .c-program-tab-item-label__text {
    font-size: 16px;
  }
}

.c-program-tab-item-label__number {
  font-size: 28px;
  line-height: 1;
}
@media screen and (min-width: 640px) {
  .c-program-tab-item-label__number {
    font-size: 30px;
  }
}
@media screen and (min-width: 768px) {
  .c-program-tab-item-label__number {
    font-size: 34px;
  }
}

.c-program-tab-item__title {
  color: #2C4EFA;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  line-height: 35px;
  letter-spacing: 0;
  margin-top: 10px;
}
@media screen and (min-width: 640px) {
  .c-program-tab-item__title {
    font-size: 26px;
  }
}
@media screen and (min-width: 768px) {
  .c-program-tab-item__title {
    font-size: 29px;
    line-height: 40px;
  }
}
@media screen and (min-width: 1100px) {
  .c-program-tab-item__title {
    font-size: 32px;
    line-height: 52px;
    letter-spacing: 0.05em;
  }
}

.c-program-tab-item__padding-wrap {
  padding-inline: 20px;
}

.c-program-tab-item__text {
  margin-top: 20px;
  font-weight: 500;
}
@media screen and (min-width: 1100px) {
  .c-program-tab-item__text {
    margin-top: 31px;
    font-size: 18px;
  }
}

.c-program-tab-item__image {
  margin-top: 25px;
  display: block;
  margin-inline: auto;
  aspect-ratio: 295/350;
  /* max-width: 295px; */
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 640px) {
  .c-program-tab-item__image {
    aspect-ratio: 900/450;
    max-width: 900px;
  }
}
@media screen and (min-width: 1100px) {
  .c-program-tab-item__image {
    margin-top: 40px;
  }
}
.c-program-tab-item__image img {
  max-width: 100%;
  height: auto;
}

.c-program-tab-item__body {
  padding-inline: 20px;
  margin-top: 25px;
}
@media screen and (min-width: 1100px) {
  .c-program-tab-item__body {
    margin-top: 50px;
  }
}

.c-program-tab-item__description:not(:first-child) {
  margin-top: 33px;
}
@media screen and (min-width: 1100px) {
  .c-program-tab-item__description:not(:first-child) {
    margin-top: 40px;
  }
}

.c-program-tab-item__sub-title {
  color: #2C4EFA;
  font-weight: bold;
  font-size: 16px;
}
@media screen and (min-width: 1100px) {
  .c-program-tab-item__sub-title {
    font-size: 18px;
  }
}

.c-program-tab-item__sub-text {
  font-size: 14px;
}
@media screen and (min-width: 1100px) {
  .c-program-tab-item__sub-text {
    font-size: 16px;
  }
}

.c-program-tab-item__examples {
  margin-top: 30px;
  margin-inline: 20px;
}
@media screen and (min-width: 1100px) {
  .c-program-tab-item__examples {
    margin-top: 40px;
  }
}

.c-program-tab-item-examples__head {
  font-weight: bold;
  font-size: 16px;
}
@media screen and (min-width: 1100px) {
  .c-program-tab-item-examples__head {
    font-size: 18px;
  }
}

.c-program-tab-item__example {
  border: 1px solid #D4DDE2;
  margin-top: 12px;
}
.c-program-tab-item__example:first-child {
  margin-top: 12px;
}

.c-program-tab-example__date {
  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;
  padding: 6px 0;
  width: 100%;
  height: 36px;
}
@media screen and (min-width: 1100px) {
  .c-program-tab-example__date {
    padding: 7px 0;
  }
}

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

.c-program-tab-date__text {
  color: #fff;
  z-index: 2;
}

.c-program-tab-example__schedule {
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid #D4DDE2;
}
@media screen and (min-width: 768px) {
  .c-program-tab-example__schedule {
    padding: 0;
  }
  .c-program-tab-example__schedule .c-program-tab-example__content:first-child .c-program-tab-example-time__wrap,
  .c-program-tab-example__schedule .c-program-tab-example__content:first-child .c-program-tab-example__text {
    padding-top: 16px;
  }
  .c-program-tab-example__schedule .c-program-tab-example__content:last-child .c-program-tab-example-time__wrap,
  .c-program-tab-example__schedule .c-program-tab-example__content:last-child .c-program-tab-example__text {
    padding-bottom: 16px;
  }
}

.c-program-tab-example__content {
  background-color: #FBFCFC;
}
@media screen and (min-width: 768px) {
  .c-program-tab-example__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 768px) {
  .c-program-tab-example__content:not(:first-child) .c-program-tab-example-time__wrap {
    padding-top: 8px;
  }
  .c-program-tab-example__content:not(:first-child) .c-program-tab-example__text {
    padding-top: 8px;
  }
}

@media screen and (min-width: 768px) {
  .c-program-tab-example-time__wrap {
    width: 19.5555555556%;
    max-width: 176px;
    border-right: 1px solid #D4DDE2;
    text-align: center;
  }
}

.c-program-tab-example__time {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .c-program-tab-example__time {
    margin-left: 15px;
  }
}
@media screen and (min-width: 900px) {
  .c-program-tab-example__time {
    margin-left: 20px;
  }
}
@media screen and (min-width: 1000px) {
  .c-program-tab-example__time {
    margin-left: 30px;
  }
}
@media screen and (min-width: 1100px) {
  .c-program-tab-example__time {
    margin-left: 40px;
  }
}

.c-program-tab-example__text {
  margin-left: 13px;
}
@media screen and (min-width: 768px) {
  .c-program-tab-example__text {
    margin-left: 30px;
  }
}
@media screen and (min-width: 1100px) {
  .c-program-tab-example__text {
    margin-left: 41px;
  }
}

.c-program-tab-example__goal {
  padding: 14px 20px;
  background-color: #FBFCFC;
}
@media screen and (min-width: 768px) {
  .c-program-tab-example__goal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 14px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.c-program-tab-goal__head {
  background: #2C4EFA;
  color: #fff;
  text-align: center;
  border-radius: 18px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 22px 13px;
  line-height: 1;
  font-size: 16px;
  font-weight: 400;
}

.c-program-tab-goal__body {
  color: #2C4EFA;
  font-size: 16px;
  font-weight: bold;
  margin-top: 14px;
}
@media screen and (min-width: 768px) {
  .c-program-tab-goal__body {
    margin-top: 0;
  }
}

.c-program-tab-item-examples__supplement {
  font-size: 12px;
  margin-top: 16px;
}
@media screen and (min-width: 1100px) {
  .c-program-tab-item-examples__supplement {
    margin-top: 19px;
    font-size: 14px;
  }
}

.c-program-tab__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding-inline: 20px;
  cursor: pointer;
}

.c-program-tab-button__text {
  color: #2C4EFA;
  font-size: 16px;
  font-weight: 500;
}

.c-program-tab-button__btn {
  position: relative;
  width: 40px;
  height: 40px;
  background-color: #2C4EFA;
  border-radius: 50%;
  overflow: hidden;
}

.c-program-tab-button__btn img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 16px;
  height: 13px;
  -o-object-fit: contain;
     object-fit: contain;
}

.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: 34px;
  height: 34px;
  margin-right: 5px;
  display: inline-block;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  position: absolute;
  top: 0;
  left: 0;
}
.c-qa__icon::before {
  display: inline-block;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 34px;
  width: 34px;
  margin-right: 5px;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
  top: -5px;
  left: -5px;
}
@media screen and (min-width: 768px) {
  .c-qa__icon::before {
    -webkit-transform: scale(1);
            transform: scale(1);
    top: 0;
  }
}

.c-qa__icon--q::before {
  content: url("../images/module/icon-q.svg");
}

.c-qa__icon--a::before {
  content: url("../images/module/icon-a.svg");
}
@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;
  }
}
.l-quiz-wrapper {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
}

.c-quiz {
  padding: 30px 0;
}
@media screen and (min-width: 768px) {
  .c-quiz {
    width: 100%;
    max-width: 100%;
  }
}

.acf-block-preview .c-quiz {
  text-align: center;
}

.fca_qc_quiz {
  padding: 0 !important;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}
@media screen and (min-width: 768px) {
  .fca_qc_quiz {
    width: 90%;
    padding: 0;
  }
}

.fca_qc_score_container {
  padding: 30px 0;
}

.fca_qc_score_desc {
  padding: 0 30px;
}

.fca-qc-back {
  padding: 15px !important;
}

div.fca_qc_quiz button.fca_qc_button {
  margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
  .fca_qc_answer_div {
    max-width: 745px;
    width: 90%;
  }
}

.fca_qc_quiz_title {
  font-size: 16px !important;
  width: 100% !important;
  background-color: var(--main-c) !important;
  color: #fff !important;
  font-family: "Noto Sans JP" !important;
  padding: 10px 10px;
  text-align: left;
  line-height: 26px;
}
@media screen and (min-width: 768px) {
  .fca_qc_quiz_title {
    text-align: center;
  }
}

.fca_qc_quiz_description, #fca_qc_question {
  font-size: 24px;
  text-align: left;
  width: 90%;
  margin: 0 auto 20px auto !important;
  padding: 40px 0 0;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .fca_qc_quiz_description, #fca_qc_question {
    padding: 40px 0;
  }
}

.fca_qc_quiz_footer {
  display: none !important;
}

.reset-button {
  background-color: #58afa2;
  border-radius: 2px;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 5px 25px;
}
.reset-button:hover {
  background-color: #3c7d73;
}

.c-relation-list {
  padding-top: 20px;
  width: 88%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-relation-list {
    width: 95%;
    margin: 0 auto;
  }
}
.c-relation-list-wrapper h6 {
  text-align: center;
  padding-top: 40px;
}
.c-relation-list__item {
  background-color: #fff;
  max-width: 90%;
  min-height: 204px !important;
  margin: 0 10px 20px;
  border-radius: 10px;
  padding: 20px;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.c-relation-list .link .head {
  border-bottom: 2px solid var(--bluege);
  padding-bottom: 15px;
}
.c-relation-list .link .head .data {
  display: inline;
  line-height: 1.7;
  color: var(--block);
  font-size: 14px;
  font-weight: bold;
  display: block;
}
.c-relation-list .link .head .date:before {
  content: url(../images/icons/icon-clock.svg);
  margin-right: 5px;
  vertical-align: text-top;
}
.c-relation-list .link .head .term {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  background-color: var(--main-c);
  color: #fff;
  display: inline-block;
  border-radius: 13px;
  padding: 0 6px;
}
.c-relation-list .link .body {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.c-relation-list .link .body .title {
  font-size: 16px;
  margin-top: 10px;
}
.c-relation-list .slick-dots {
  position: relative;
  bottom: 0;
}
.c-relation-list .slick-dots li {
  width: 10px;
  height: 10px;
}
.c-relation-list .slick-dots li button:before {
  opacity: 0.75;
  background-color: #fff;
  border: 1px solid var(--main-c);
  border-radius: 50%;
  color: varvar(--main-c);
  content: "";
  width: 8px;
  height: 8px;
  opacity: 1;
}
.c-relation-list .slick-dots li.slick-active button:before {
  opacity: 0.75;
  background-color: var(--main-c);
  border: 1px solid var(--main-c);
  border-radius: 50%;
  opacity: 1;
  content: "";
  width: 8px;
  height: 8px;
}
.c-relation-list .prev-arrow {
  width: 55px;
  height: 55px;
  background-color: #fff;
  display: block;
  border-radius: 50%;
  opacity: 1;
  top: 80px;
  left: -20px;
  position: absolute;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  z-index: 1;
  border: var(--blue) 1px solid;
}
.c-relation-list .prev-arrow:hover {
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  cursor: pointer;
}
.c-relation-list .prev-arrow:after {
  content: "";
  position: absolute;
  right: -2px;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 11px;
  height: 11px;
  border-top: 2px solid var(--blue);
  border-right: 2px solid var(--blue);
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
@media screen and (max-width: 767px) {
  .c-relation-list .prev-arrow {
    height: 40px;
    width: 40px;
    background: var(--blue);
    display: block;
    position: absolute;
    z-index: 3;
    top: 100px;
    left: -15px;
    opacity: 0.8;
  }
  .c-relation-list .prev-arrow:after {
    content: "";
    position: absolute;
    right: 0;
    left: 4px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 11px;
    height: 11px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(225deg);
            transform: rotate(225deg);
  }
}
.c-relation-list .next-arrow {
  width: 55px;
  height: 55px;
  background-color: #fff;
  display: block;
  border-radius: 50%;
  opacity: 1;
  top: 80px;
  right: -20px;
  left: auto;
  position: absolute;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  border: var(--blue) 1px solid;
}
@media screen and (max-width: 767px) {
  .c-relation-list .next-arrow {
    height: 40px;
    width: 40px;
    background: var(--blue);
    display: block;
    position: absolute;
    z-index: 3;
    top: 100px;
    opacity: 0.8;
    right: -15px;
  }
}
.c-relation-list .next-arrow:hover {
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  cursor: pointer;
}
.c-relation-list .next-arrow:after {
  content: "";
  position: absolute;
  right: 0;
  left: -2px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 11px;
  height: 11px;
  border-top: 2px solid var(--blue);
  border-right: 2px solid var(--blue);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .c-relation-list .next-arrow:after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    right: 4px;
  }
}

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

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

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

/*高さ・位置・透過が変化して線が上から下に動く*/
@-webkit-keyframes pathmove {
  0% {
    height: 0;
    top: -30px;
    opacity: 0;
  }
  30% {
    height: 50px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 30px;
    opacity: 0;
  }
}
@keyframes pathmove {
  0% {
    height: 0;
    top: -30px;
    opacity: 0;
  }
  30% {
    height: 50px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 30px;
    opacity: 0;
  }
}
.c-slider-col {
  width: 100%;
}

.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: 1100px) {
  .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 * 0.15s);
          animation-delay: calc(0 * 0.15s);
}
.c-tab-area [data-tab=tab1]:checked ~ nav ~ [data-tab-panel=tab1] .link:nth-child(1),
.c-tab-area [data-tab=tab2]:checked ~ nav ~ [data-tab-panel=tab2] .link:nth-child(1),
.c-tab-area [data-tab=tab3]:checked ~ nav ~ [data-tab-panel=tab3] .link:nth-child(1) {
  -webkit-animation-delay: calc(1 * 0.15s);
          animation-delay: calc(1 * 0.15s);
}
.c-tab-area [data-tab=tab1]:checked ~ nav ~ [data-tab-panel=tab1] .link:nth-child(2),
.c-tab-area [data-tab=tab2]:checked ~ nav ~ [data-tab-panel=tab2] .link:nth-child(2),
.c-tab-area [data-tab=tab3]:checked ~ nav ~ [data-tab-panel=tab3] .link:nth-child(2) {
  -webkit-animation-delay: calc(2 * 0.15s);
          animation-delay: calc(2 * 0.15s);
}
.c-tab-area [data-tab=tab1]:checked ~ nav ~ [data-tab-panel=tab1] .link:nth-child(3),
.c-tab-area [data-tab=tab2]:checked ~ nav ~ [data-tab-panel=tab2] .link:nth-child(3),
.c-tab-area [data-tab=tab3]:checked ~ nav ~ [data-tab-panel=tab3] .link:nth-child(3) {
  -webkit-animation-delay: calc(3 * 0.15s);
          animation-delay: calc(3 * 0.15s);
}
.c-tab-area [data-tab=tab1]:checked ~ nav ~ [data-tab-panel=tab1] .link:nth-child(4),
.c-tab-area [data-tab=tab2]:checked ~ nav ~ [data-tab-panel=tab2] .link:nth-child(4),
.c-tab-area [data-tab=tab3]:checked ~ nav ~ [data-tab-panel=tab3] .link:nth-child(4) {
  -webkit-animation-delay: calc(4 * 0.15s);
          animation-delay: calc(4 * 0.15s);
}
.c-tab-area .link {
  text-decoration: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transform: translateX(5rem);
          transform: translateX(5rem);
  opacity: 0;
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.c-tab-area .link::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #000;
  bottom: 0;
  -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;
  }
}
.l-color-wrapper .c-table-col2__title {
  background-color: #C6D7E8;
}

.c-table-col2 {
  border-collapse: collapse;
  width: 100%;
}
.c-table-col2.left .c-table-col2__title {
  text-align: left;
}

.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;
}
.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 {
  width: 100%;
  padding: 0.5em 1em;
  border: 1px solid var(--border-c);
  vertical-align: middle;
}

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

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

.c-table--full {
  text-align: left;
}
.c-table--full .c-table__title-vl {
  background-color: #fff;
}
.c-table--full .c-title-sub {
  width: 40%;
  font-size: 16px;
}
.c-table--full th:first-child {
  width: 40vw;
}
.c-table--full tr:last-child {
  font-weight: bold;
}

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

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

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

.c-table__title-vl {
  background-color: var(--bluege);
  color: #000;
}

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

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

.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-side {
  background-size: cover;
  background-position: center;
}

.c-text-side__inner {
  background: #9372D4;
  background: -webkit-gradient(linear, left top, right top, from(rgba(147, 114, 212, 0.8)), color-stop(45%, rgba(44, 78, 250, 0.8)), to(rgba(123, 178, 193, 0.8)));
  background: -webkit-linear-gradient(left, rgba(147, 114, 212, 0.8) 0%, rgba(44, 78, 250, 0.8) 45%, rgba(123, 178, 193, 0.8) 100%);
  background: linear-gradient(90deg, rgba(147, 114, 212, 0.8) 0%, rgba(44, 78, 250, 0.8) 45%, rgba(123, 178, 193, 0.8) 100%);
}

.c-text-side__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 26px;
  max-width: 1730px;
  margin: 0 auto;
  padding-block: 48px;
  width: 85%;
}
@media screen and (min-width: 1100px) {
  .c-text-side__container {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    gap: 0;
    padding-block: 110px;
    width: 91%;
  }
}

.c-text-side__content {
  width: 100%;
  color: #fff;
}
@media screen and (min-width: 1100px) {
  .c-text-side__content {
    width: 50%;
  }
}

.c-text-side__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(1.75rem, 0.793rem + 4.08vw, 2.75rem);
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .c-text-side__title {
    font-size: clamp(2.813rem, 2.188rem + 1.3vw, 3.75rem);
  }
}
@media screen and (min-width: 1100px) {
  .c-text-side__title {
    font-size: clamp(2.375rem, 0.53rem + 2.68vw, 3.75rem);
    margin: 0 auto;
  }
}

.c-text-side__text {
  font-size: 18px;
  line-height: 2;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .c-text-side__text {
    font-size: 26px;
    text-align: unset;
  }
}

.c-text-wrapper .l-inner-main {
  padding: 22px 24px;
  border-radius: 6px;
  background-color: var(--bluege);
}

.c-text-wrapper.l-color-wrapper .l-inner-white {
  padding: 22px 24px;
  border-radius: 6px;
  background-color: #fff;
}
.c-text-wrapper.l-color-wrapper .l-inner-main {
  padding: 0;
}

.c-text {
  font-size: 14px;
  letter-spacing: 1.4px;
}
@media screen and (min-width: 768px) {
  .c-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .c-text {
    text-align: left !important;
  }
}
@media screen and (max-width: 767px) {
  .c-text p {
    text-align: left !important;
  }
}
@media screen and (max-width: 767px) {
  .c-text p span {
    font-size: 14px !important;
  }
}
@media screen and (min-width: 768px) {
  .c-text.--center {
    text-align: center;
  }
}
.c-text ul li:before {
  content: "";
  width: 7px;
  height: 7px;
  background-color: var(--main-c);
  position: relative;
  display: inline-block;
  border-radius: 50px;
  vertical-align: middle;
  margin-right: 5px;
}
.c-text ol {
  counter-reset: count 0;
}
.c-text li {
  text-indent: -11px;
  padding-left: 11px;
}
.c-text li:before {
  content: counter(count) ". ";
  counter-increment: count 1;
  color: var(--main-c);
}

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

.nopadding {
  padding: 0;
}

@media screen and (min-width: 1250px) {
  .c-three-goal-inner {
    margin: 0 310px 0 0;
  }
}

.c-three-goal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100vw;
}
@media screen and (min-width: 1250px) {
  .c-three-goal {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.c-three-goal__wrap {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (min-width: 1250px) {
  .c-three-goal__wrap {
    width: 50%;
    padding-right: 20px;
  }
}
@media screen and (min-width: 1440px) {
  .c-three-goal__wrap {
    padding-right: 40px;
  }
}

.c-three-goal__image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1;
}

.c-three-goal__contents {
  background: #fff;
  margin: 40px 38px 0 28px;
}
@media screen and (min-width: 768px) {
  .c-three-goal__contents {
    margin: 60px 48px 0 48px;
  }
}
@media screen and (min-width: 1100px) {
  .c-three-goal__contents {
    margin: 80px 84px 0 84px;
  }
}
@media screen and (min-width: 1250px) {
  .c-three-goal__contents {
    margin: 0;
    width: 50%;
    padding-left: 20px;
  }
}
@media screen and (min-width: 1440px) {
  .c-three-goal__contents {
    padding-left: 40px;
  }
}
.c-three-goal__contents .c-three-goal__content:last-child {
  padding-bottom: 0;
}

.c-three-goal__content {
  border-top: 1px solid #D5D5D5;
  padding-block: 30px;
  max-width: 610px;
  margin-inline: auto;
}
@media screen and (min-width: 1250px) {
  .c-three-goal__content {
    margin: 0;
  }
}
.c-three-goal__content:first-child {
  border-top: 0;
  padding-top: 0;
}

.c-three-goal__head {
  color: #2C4EFA;
  font-weight: bold;
  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: 1250px) {
  .c-three-goal__head {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
  }
}

.c-three-goal-head__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: normal;
  font-family: "Josefin Sans", sans-serif;
  gap: 4px;
  background: #2C4EFA;
  color: #fff;
  padding: 6px 14px 1px 14px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-height: 80px;
}
@media screen and (min-width: 1250px) {
  .c-three-goal-head__label {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 15px 17px 6px 17px;
  }
}

.c-three-goal-label__text {
  font-size: 14px;
  line-height: 1;
}
@media screen and (min-width: 576px) {
  .c-three-goal-label__text {
    font-size: 16px;
  }
}

.c-three-goal-label__number {
  font-size: 28px;
  line-height: 1;
}
@media screen and (min-width: 576px) {
  .c-three-goal-label__number {
    font-size: 40px;
  }
}

.c-three-goal-head__text {
  margin-top: 11px;
  font-size: 24px;
  letter-spacing: 0;
  line-height: 38px;
}
@media screen and (min-width: 576px) {
  .c-three-goal-head__text {
    font-size: 28px;
  }
}
@media screen and (min-width: 640px) {
  .c-three-goal-head__text {
    font-size: 30px;
  }
}
@media screen and (min-width: 768px) {
  .c-three-goal-head__text {
    font-size: 32px;
  }
}
@media screen and (min-width: 1250px) {
  .c-three-goal-head__text {
    font-size: 29px;
  }
}
@media screen and (min-width: 1440px) {
  .c-three-goal-head__text {
    font-size: 32px;
  }
}
@media screen and (min-width: 1250px) {
  .c-three-goal-head__text {
    margin-top: -4px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1440px) {
  .c-three-goal-head__text {
    margin-top: -9px;
    line-height: 1.5;
  }
}

.c-three-goal__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 20px;
  gap: 30px;
}

.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: 1100px) {
  .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: 1100px;
  margin: 0 auto;
  padding: 50px 0;
}
@media screen and (min-width: 1100px) {
  .c-title-bg-double__inner {
    width: 100%;
    margin: 0 0 0 auto;
    padding: 30px 20px;
    text-align: left;
  }
}
@media screen and (min-width: 1250px) {
  .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", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, Helvetica, sans-serif;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .c-title-bg-double__sub-title {
    font-size: 22px;
  }
}

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

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

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

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

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

.c-title-bg-half {
  width: 100%;
  min-height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: 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-half {
    min-height: 500px;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
.c-title-bg-half .c-button:before {
  content: "\f044";
  font-size: 12px;
  font-family: "Font Awesome 5 Free";
  margin-right: 5px;
  font-weight: bold;
}

.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;
  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: 1100px;
  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;
    text-align: left;
  }
}
.c-title-bg-half__inner img {
  margin: 0 auto;
  width: 90%;
  max-width: 360px;
}
@media screen and (min-width: 768px) {
  .c-title-bg-half__inner img {
    margin-left: 0;
  }
}

.c-title-bg-half__text {
  width: 100%;
  line-height: 1.3em;
  font-size: 1rem;
  color: #01263e;
}
@media screen and (min-width: 768px) {
  .c-title-bg-half__text {
    font-size: 3.25rem;
  }
}

.c-title-bg-half__sub-text {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 3.7333333333vw;
  color: #01263e;
}
@media screen and (min-width: 768px) {
  .c-title-bg-half__sub-text {
    font-size: 1rem;
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 20px;
  }
}

.c-title-bg-half__button {
  background: -webkit-gradient(linear, left top, right top, from(#0074be), to(#0051b7));
  background: -webkit-linear-gradient(left, #0074be, #0051b7);
  background: linear-gradient(to right, #0074be, #0051b7);
  padding: 14px 50px;
  border-radius: 4px;
  border: none;
  font-weight: 500;
  font-size: 13px;
}

.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: 30px;
    margin-bottom: 30px;
  }
}

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

.c-title-bg-half--reverse .c-title-bg-half__cover {
  margin: 0 0 0 auto;
}
.c-title-bg-half--reverse .c-title-bg-half__inner {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .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: #000;
}

.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: 80px 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: #000;
}
.c-title-bg--white::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.5);
}

.c-title-bg__inner {
  width: 95%;
  max-width: 1100px;
  margin: 0 auto;
  z-index: 1;
}
.c-title-bg__inner p {
  margin: 18px auto;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .c-title-bg__inner p {
    text-align: center;
  }
}

.c-title-bg__text {
  width: 100%;
  line-height: 1.5;
  font-size: 1rem;
  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;
}
@media screen and (min-width: 768px) {
  .c-title-bg__sub-text {
    font-size: 22px;
    margin-bottom: 20px;
  }
}

.c-title-bg__h3-title {
  font-size: 1.625rem;
  margin-bottom: 20px;
}
.c-title-bg__h3-title:after {
  content: "";
  height: 36px;
  width: 3px;
  background-color: #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  display: block;
  position: relative;
  margin: 0 auto;
}

.c-title-bg__button {
  border-radius: 0.3em;
  width: auto;
}
@media screen and (min-width: 768px) {
  .c-title-bg__button {
    min-width: 300px;
  }
}

.c-title-bg__text-mid {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .c-title-bg__text-mid {
    font-size: 20px;
  }
}

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

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

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

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

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

.l-h1-wrapper {
  background-image: url(../images/module/bg-h1.png);
  background-size: cover;
  height: 100px;
}
@media screen and (min-width: 768px) {
  .l-h1-wrapper {
    height: 170px;
  }
}

.c-title-h1 {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 300;
  color: #fff;
  padding: 20px 0;
  text-align: center;
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0.2rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .c-title-h1 {
    font-size: 52px;
    letter-spacing: 5px;
    padding: 54px 0 40px;
    text-align: left;
  }
}

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

.c-title-h1__sub {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  color: var(--white);
  letter-spacing: 0;
  margin-left: 15px;
}
@media screen and (max-width: 767px) {
  .c-title-h1__sub {
    display: block;
    text-align: left;
    margin-left: 0;
    margin-top: 3px;
    font-size: 14px;
  }
}

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

/*
  &:after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    height: 1px;
    background-color: var(--black);
    width: 95vw;
    @include mq {
      width: 90vw;
    }
  }
}
.c-title-h1--full--center {
  text-align: center;
  padding: 30px 0;
  @include mq {
    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 {
  filter: invert(100%) grayscale(100%) contrast(100);
}
*/
.c-title-h2 {
  text-align: center;
  font-size: 24px;
  letter-spacing: 0.15rem;
}
@media screen and (min-width: 768px) {
  .c-title-h2 {
    font-size: 36px;
  }
}

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

.c-title-h3 {
  text-align: center;
  position: relative;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .c-title-h3 {
    font-size: 26px;
  }
}
.c-title-h3::after {
  content: "";
  height: 36px;
  width: 3px;
  background-color: var(--main-c);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  display: block;
  position: relative;
  margin: 0 auto;
}

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

.c-title-h5 {
  color: var(--main-c);
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .c-title-h5 {
    font-size: 1.375rem;
  }
}

.c-title-h6 {
  padding-left: 30px;
  position: relative;
}
.c-title-h6::before {
  content: "";
  display: inline-block;
  width: 23px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  background-color: var(--main-c);
}
@media screen and (min-width: 768px) {
  .c-title-h6 {
    padding-left: 40px;
  }
  .c-title-h6::before {
    width: 33px;
  }
}

.c-title-link__inner {
  max-width: 1100px;
  width: 85%;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  border: solid 1px var(--border-c);
  border-radius: 10px;
  -webkit-box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 5px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-title-link__inner {
    width: 90%;
    padding-block: 23px;
    padding-inline: 40px 25px;
  }
}

.c-title-link__title-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
}
@media screen and (min-width: 768px) {
  .c-title-link__title-box {
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
    gap: 30px;
  }
}

.c-title-link__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  aspect-ratio: 91/74;
  max-width: 91px;
  width: 16%;
}
@media screen and (min-width: 768px) {
  .c-title-link__icon {
    width: 100%;
  }
}

.c-title-link__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}

.c-title-link__title {
  font-size: 5.8666666667vw;
  line-height: 1.6;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .c-title-link__title {
    font-size: clamp(2.125rem, 1.875rem + 0.52vw, 2.5rem);
  }
}

.c-title-link__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  font-size: 3.2vw;
  color: var(--main-c);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-title-link__link {
    position: absolute;
    right: 25px;
    bottom: 10px;
    margin-left: unset;
    font-size: 14px;
    gap: 10px;
  }
}
@media screen and (min-width: 1000px) {
  .c-title-link__link {
    bottom: 20px;
  }
}
.c-title-link__link:after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: solid 1px var(--main-c);
  border-right: solid 1px var(--main-c);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-top: 2px;
}
.c-title-link__link:hover {
  opacity: 0.6;
}

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

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

.c-voice {
  -webkit-box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.19);
          box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.19);
  border-radius: 10px;
  margin-top: 50px;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  padding: 60px 25px 35px;
}
@media screen and (min-width: 1100px) {
  .c-voice {
    padding: 30px 70px;
  }
}
@media screen and (min-width: 768px) {
  .c-voice {
    -ms-flex-flow: wrap !important;
        flex-flow: wrap !important;
    margin-top: 40px;
  }
  .c-voice:after {
    content: "VOICE";
    color: #fff;
    position: absolute;
    letter-spacing: 3.6px;
    right: 42px;
    top: -42px;
    font-family: "Josefin Sans", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, Helvetica, sans-serif;
    font-size: 60px;
    -webkit-text-stroke: 1px #DFE7EF;
  }
}
.c-voice .image {
  width: 137px;
  height: 137px;
  margin-right: 20px;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-voice .image {
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    width: 100px;
    height: 100px;
    margin: auto;
  }
}
.c-voice .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-voice .text {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-voice .text {
    width: calc(100% - 157px);
  }
}
.c-voice .text h3 {
  color: var(--blue);
  font-size: 18px;
  margin-bottom: 15px;
  line-height: 30px;
}
@media screen and (min-width: 768px) {
  .c-voice .text h3 {
    font-size: 24px;
  }
}
.c-voice .text p {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .c-voice .text p {
    font-size: 16px;
  }
}
.c-voice .text .information {
  display: block;
  color: #464646;
  margin-top: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-voice .text .information {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.c-voice .text .information p {
  margin-right: 5px;
  display: inline;
}
@media screen and (min-width: 768px) {
  .c-voice .text .information p {
    display: block;
  }
}
.c-voice .text .company {
  font-size: 12px;
  font-weight: 500;
}
.c-voice .text .position {
  font-size: 12px;
  font-weight: 400;
}
.c-voice .text .name {
  font-size: 16px;
  font-weight: bold;
}
.c-voice .text a {
  color: var(--blue);
  position: absolute;
  right: 0;
  top: auto;
  margin: auto;
  font-weight: 500;
  bottom: -30px;
}
@media screen and (min-width: 1100px) {
  .c-voice .text a {
    top: 0;
    bottom: 0;
  }
}
.c-voice .text a:after {
  content: url(../images/top/voice-arrow.svg);
  vertical-align: text-bottom;
  margin-left: 15px;
}

.c-voice-slider-full.p-front-voice {
  padding: 0;
  overflow: unset;
}
.c-voice-slider-full .p-front-voice__box {
  display: block;
  padding: 0;
}
.c-voice-slider-full .p-front-voice__card-box {
  padding-top: 26px;
  padding-inline: 45px;
}
@media screen and (min-width: 768px) {
  .c-voice-slider-full .p-front-voice__card-box {
    padding-top: 30px;
  }
}
@media screen and (min-width: 1250px) {
  .c-voice-slider-full .p-front-voice__card-box {
    padding-inline: 0;
  }
}
.c-voice-slider-full .p-front-voice__ttl {
  padding: 0;
  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: 12px;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
  color: #2C4EFA;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-voice-slider-full .p-front-voice__ttl {
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    left: clamp(28.125rem, -18.777rem + 97.71vw, 57.5rem);
    -webkit-transform: unset;
            transform: unset;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (min-width: 1250px) {
  .c-voice-slider-full .p-front-voice__ttl {
    left: clamp(46.875rem, -19.263rem + 84.66vw, 56.875rem);
  }
}
@media screen and (min-width: 1440px) {
  .c-voice-slider-full .p-front-voice__ttl {
    left: clamp(49.375rem, -16.25rem + 72.92vw, 71.25rem);
  }
}
.c-voice-slider-full .p-front-voice__ttl .en {
  font-size: 36px;
  -webkit-text-stroke: 0.1px #2C4EFA;
  margin: unset;
}
@media screen and (min-width: 768px) {
  .c-voice-slider-full .p-front-voice__ttl .en {
    font-size: 40px;
  }
}
.c-voice-slider-full .p-front-voice__ttl .jp {
  margin-bottom: 10px;
  white-space: nowrap;
}
.c-voice-slider-full .p-front-voice__card {
  width: 100%;
}
.c-voice-slider-full .p-front-voice__card-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-voice-slider-full .p-front-voice__card-list .v-item {
  max-width: unset;
  margin: unset;
  border: solid 1px var(--border-c);
  border-radius: 6px;
  padding: 30px 25px 25px;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  background-color: #fff;
  height: auto;
}
@media screen and (min-width: 768px) {
  .c-voice-slider-full .p-front-voice__card-list .v-item {
    padding: 40px 50px;
  }
}
.c-voice-slider-full .v-item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .c-voice-slider-full .v-item-inner {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    gap: 30px;
  }
}
.c-voice-slider-full .p-front-voice__card-list .v-item .v-image {
  aspect-ratio: 320/210;
}
@media screen and (min-width: 768px) {
  .c-voice-slider-full .p-front-voice__card-list .v-item .v-image {
    max-width: 320px;
    width: 68%;
    margin-bottom: 0;
  }
}
.c-voice-slider-full .v-item-cont {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-voice-slider-full .p-front-voice__card-list .v-item .v-text {
  height: unset;
}
.c-voice-slider-full .p-front-voice__card-list .v-item .detailbtn {
  border: 1px solid var(--main-c);
  color: var(--main-c);
  max-width: 120px;
  width: 100%;
  margin: auto auto 0;
}
@media screen and (min-width: 768px) {
  .c-voice-slider-full .p-front-voice__card-list .v-item .detailbtn {
    margin: unset;
  }
}
.c-voice-slider-full .v-modal-pagination {
  text-align: center;
  margin-top: 12px;
}
.c-voice-slider-full .v-modal-pagination .swiper-pagination-bullet-active {
  background: var(--main-c) !important;
}
.c-voice-slider-full .v-modal-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: var(--border-c);
  opacity: 1;
}
.c-voice-slider-full .voice-prev,
.c-voice-slider-full .voice-next {
  content: "";
  display: inline-block;
  position: absolute;
  top: 43%;
  background-color: var(--main-c);
  border-radius: 50%;
  width: 26px;
  height: 26px;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .c-voice-slider-full .voice-prev,
  .c-voice-slider-full .voice-next {
    width: 35px;
    height: 35px;
  }
}
.c-voice-slider-full .voice-prev .arrow,
.c-voice-slider-full .voice-next .arrow {
  content: "";
  display: inline-block;
  position: absolute;
  top: 35%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 8px;
  height: 8px;
}
@media screen and (min-width: 768px) {
  .c-voice-slider-full .voice-prev .arrow,
  .c-voice-slider-full .voice-next .arrow {
    width: 12px;
    height: 12px;
  }
}
.c-voice-slider-full .voice-prev .arrow {
  border-left: solid 2px #fff;
  border-bottom: solid 2px #fff;
  left: 10px;
}
@media screen and (min-width: 768px) {
  .c-voice-slider-full .voice-prev .arrow {
    left: 14px;
  }
}
.c-voice-slider-full .voice-next .arrow {
  border-right: solid 2px #fff;
  border-top: solid 2px #fff;
  right: 10px;
}
@media screen and (min-width: 768px) {
  .c-voice-slider-full .voice-next .arrow {
    right: 14px;
  }
}

.p-about .c-title-bg__text-mid {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-about .c-text ul li span {
    font-size: 14px !important;
    letter-spacing: 1.4px;
  }
}

.p-aipm tr:first-child td {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-aipm .c-table__container {
    min-width: 420px;
  }
}
@media screen and (max-width: 767px) {
  .p-aipm .c-table__body.left .c-table__title-hl {
    width: 150px !important;
  }
}
.p-aipm .c-table__cont {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-aipm .c-flex--jcenter .c-button {
    width: 100%;
  }
}

.p-blog-single .l-catch {
  margin-top: 30px;
}
.p-blog-single .l-article__inner {
  margin: 40px auto;
}
.p-blog-single .l-article__main {
  max-width: 790px;
}
.p-blog-single .image-wrapp img {
  width: 100%;
}
.p-blog-single .c-title-h2 {
  max-width: 790px;
  margin: 0 auto;
  border-bottom: 2px solid #ccc;
  text-align: left;
}
.p-blog-single .c-title-h2__main {
  font-size: 24px;
  color: #000;
  letter-spacing: 1.3px;
  line-height: 34px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .p-blog-single .c-title-h2__main__main {
    font-size: 28px;
    line-height: 42px;
  }
}
.p-blog-single .c-title-h2__sub {
  color: #000;
  font-size: 14px;
  font-weight: bold;
  margin: 30px 0;
  text-align: left;
}
.p-blog-single .c-title-h2__sub:before {
  content: url(../images/icons/icon-clock.svg);
  vertical-align: text-top;
}
.p-blog-single .c-title-h2__date {
  font-size: 14px;
  letter-spacing: 1.82px;
  color: #000;
  font-weight: bold;
}
.p-blog-single .c-title-h2__cat {
  color: #fff;
  background-color: var(--main-c);
  border-radius: 13px;
  padding: 0 10px;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .p-blog-single .c-article__media.-lg .c-article__title {
    font-size: 24px;
  }
}
@media screen and (min-width: 768px) {
  .p-blog-single .c-article__text h5 {
    font-size: 20px;
  }
}
.p-blog-single .l-article__toc-wrapper {
  margin: 50px 0 25px;
}
.p-blog-single .l-article__toc-content {
  border: 2px solid #ccc;
  padding: 10px 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 50%;
}
.p-blog-single .l-article__toc .toc-heading {
  text-align: center;
  font-size: 16px;
}
.p-blog-single .l-article__toc .toc-index a {
  font-size: 14px;
  color: var(--main-c);
}
.p-blog-single .l-article__toc .toc-index a:hover {
  text-decoration: underline;
}
.p-blog-single .l-article__toc .toc-subindex a {
  font-size: 12px;
  color: var(--main-c);
  margin-left: 20px;
}
.p-blog-single .l-article__toc .toc-subindex a:hover {
  text-decoration: underline;
}
.p-blog-single .l-article__content-wrapper {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .p-blog-single .l-article__content-wrapper {
    margin-top: 80px;
  }
}
.p-blog-single .c-article__media.-lg .image img {
  width: 100%;
}
.p-blog-single .c-article__media.-lg .image {
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .p-blog-single .l-article__pagenation {
    margin-bottom: 0;
  }
}

.p-blog-ranking {
  padding: 30px;
  background: #fff;
  margin-bottom: -70px;
  border: 1px solid #c6d7e8;
  -webkit-box-shadow: 0px 0px 4px rgba(0, 32, 92, 0.2);
          box-shadow: 0px 0px 4px rgba(0, 32, 92, 0.2);
  border: 1px solid #C6D7E8;
  border-radius: 6px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-blog-ranking {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.p-blog-ranking h6 {
  border-bottom: 2px solid var(--bluege);
  margin-bottom: 15px;
  font-size: 16px;
}
.p-blog-ranking h6:before {
  content: url(../images/icons/icon-crown.svg);
  margin-right: 5px;
}
.p-blog-ranking__box {
  position: relative;
  margin-bottom: 25px;
  display: block;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.p-blog-ranking__box:hover {
  opacity: 0.7;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.p-blog-ranking__box:before {
  font-family: "josefin sans", sans-serif;
  font-size: 28px;
  letter-spacing: 1.4px;
  color: #C6D7E8;
  font-weight: 300;
  position: absolute;
  top: 0;
  line-height: 37px;
}
.p-blog-ranking__box:nth-child(2):before {
  content: "01";
}
.p-blog-ranking__box:nth-child(3):before {
  content: "02";
}
.p-blog-ranking__box:last-child:before {
  content: "03";
}
.p-blog-ranking .date {
  font-size: 14px;
  font-weight: bold;
  margin-left: 40px;
}
.p-blog-ranking .date:before {
  content: url(../images/icons/icon-clock.svg);
  margin-right: 5px;
  vertical-align: text-top;
}
.p-blog-ranking .title {
  font-size: 14px;
  font-weight: bold;
  margin-left: 40px;
}
.p-blog-ranking__card {
  width: 100%;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .p-blog-ranking__card {
    width: 33%;
    max-width: 300px;
  }
}
.p-blog .excerpt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.p-blog .l-archive__category .link, .p-blog_cat .l-archive__category .link {
  width: 20vw;
}
@media screen and (min-width: 768px) {
  .p-blog .l-archive__category .link, .p-blog_cat .l-archive__category .link {
    width: 140px;
  }
}
.p-blog .l-archive__inner, .p-blog_cat .l-archive__inner {
  padding: 60px 0 0;
}
.p-blog .l-archive__list, .p-blog_cat .l-archive__list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-blog .l-archive__item .link, .p-blog_cat .l-archive__item .link {
  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-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  padding-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .p-blog .l-archive__item .link, .p-blog_cat .l-archive__item .link {
    padding-bottom: 0;
    height: 430px;
  }
}
.p-blog .l-archive__pagenation .next, .p-blog .l-archive__pagenation .prev, .p-blog_cat .l-archive__pagenation .next, .p-blog_cat .l-archive__pagenation .prev {
  border: none;
}
.p-blog .dummy, .p-blog_cat .dummy {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-blog .dummy, .p-blog_cat .dummy {
    width: 30%;
    max-width: 343px;
    margin-top: 40px;
  }
}
.p-blog .more, .p-blog_cat .more {
  font-family: "josefin sans", sans-serif;
  color: var(--blue);
  font-size: 14px;
  font-weight: 300;
  bottom: -5px;
  border-bottom: 2px solid;
  padding-right: 20px;
  padding-left: 5px;
}
@media screen and (min-width: 768px) {
  .p-blog .more, .p-blog_cat .more {
    bottom: 20px;
  }
}
.p-blog .more:after, .p-blog_cat .more:after {
  content: "";
  width: 2px;
  height: 10px;
  position: absolute;
  right: -58px;
  bottom: -3px;
  margin: auto;
  -webkit-transform: rotate(30deg);
  transform: rotate(-30deg);
}

.p-contact .wpcf7 {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  background-color: #fff;
  padding: 20px;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .p-contact .wpcf7 {
    padding: 50px 50px 20px;
  }
}
.p-contact .wpcf7-form-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-contact .wpcf7-list-item {
  margin: 0;
}
.p-contact .wpcf7-item-label {
  font-weight: 400;
}
.p-contact .wpcf7-list-item-label {
  margin-left: 8px;
  font-weight: 400;
}
.p-contact .contact-block {
  margin-top: 20px;
}
.p-contact label {
  font-weight: bold;
}
.p-contact .required:after {
  content: "必須";
  background-color: #ca5630;
  color: #fff;
  display: inline-block;
  padding: 2px 5px;
  border-radius: 5px;
  font-weight: 300;
  line-height: 21px;
  margin-left: 5px;
}
.p-contact input[type=text], .p-contact input[type=email] {
  background-color: #e5e7eb;
  border: none;
  border-radius: 5px;
  height: 40px;
  margin-top: 5px;
  width: 100%;
  padding: 0 15px;
  font-size: 14px;
  font-family: "Noto Sans JP";
  border: 1px solid #ccc;
}
.p-contact textarea {
  background-color: #e5e7eb;
  border: none;
  border-radius: 5px;
  height: 220px;
  margin-top: 5px;
  margin-bottom: 20px;
  width: 100%;
  padding: 5 15px;
  font-size: 14px;
  font-family: "Noto Sans JP";
  border: 1px solid #ccc;
}
.p-contact input[type=submit] {
  background-color: #2c4efa;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 20px 85px;
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 1px;
  margin: 50px auto 0;
  display: block;
  cursor: pointer;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.p-contact input[type=submit]:hover {
  opacity: 0.7;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.p-contact input[type=checkbox] {
  position: relative;
}
.p-contact input[type=checkbox]::before {
  content: "";
  background: #e5e7eb;
  border: 1px solid #ccc;
  border-radius: 3px;
  content: "";
  display: block;
  height: 20px;
  width: 20px;
  position: absolute;
  top: -3px;
  bottom: 0;
  left: -2px;
  margin: auto;
}
.p-contact input[type=checkbox]::after {
  content: "";
  border-right: 3px solid #000000;
  border-bottom: 3px solid #000000;
  display: block;
  left: 5px;
  top: -2px;
  position: absolute;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 7px;
  height: 11px;
  z-index: 1;
  opacity: 0;
}
.p-contact input[type=checkbox]:checked:after {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .p-contact .c-text-wrapper.l-color-wrapper .l-inner-white {
    padding: 0;
  }
}
.p-contact .wpcf7 form.sent .wpcf7-response-output {
  display: block !important;
}

.grecaptcha-badge {
  width: 4.375rem !important;
  overflow: hidden !important;
  -webkit-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
  left: 0 !important;
  bottom: 2.8125rem !important;
}
@media screen and (min-width: 768px) {
  .grecaptcha-badge {
    bottom: 0.875rem !important;
  }
}

.grecaptcha-badge:hover {
  width: 16rem !important;
}

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

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

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

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

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

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

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

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

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

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

.p-documentation-demo {
  border: solid 1px var(--lightgrey);
  border-radius: 5px;
  padding: 2rem;
}

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

.p-front .l-editor-wrapper {
  margin-top: 0;
  background-image: url("../images/top/bg-mv.png");
  background-repeat: no-repeat;
  background-position: top;
}

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

/*=============================
アニメーション関連
=============================*/
.p-front-loader {
  position: fixed;
  height: 100%;
  width: 100%;
  background-color: var(--base-c);
  z-index: 5;
  -webkit-animation: secondAnim 0.8s linear forwards;
          animation: secondAnim 0.8s linear forwards;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.p-front-loader.-disabled {
  display: none;
}
.p-front-loader .logo-wrapper {
  width: auto;
  height: auto;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-front-loader .logo {
  height: 30vh;
  max-height: 15rem;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-animation: firstAnim 2s ease-in-out forwards;
          animation: firstAnim 2s ease-in-out forwards;
}
@media screen and (min-width: 768px) {
  .p-front-loader .logo {
    width: 350px;
    height: auto;
  }
}

@-webkit-keyframes firstAnim {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  25% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  75% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

@keyframes firstAnim {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  25% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  75% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
@-webkit-keyframes secondAnim {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes secondAnim {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes thirdAnim {
  from {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes thirdAnim {
  from {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes fourthAnim {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fourthAnim {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
/*=============================
メインビジュアル
=============================*/
.p-front-mv {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: grid;
  padding-top: 100px;
  padding-bottom: 70px;
  background-image: url("../images/top/top-mv-under-sp.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom;
}
@media screen and (min-width: 768px) {
  .p-front-mv {
    background-image: url("../images/top/top-mv-under.png");
    padding-top: 200px;
    padding-bottom: 140px;
  }
}

.p-front-mv__image {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
}

.p-front-mv__catch {
  font-size: 22px;
  letter-spacing: 4px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-front-mv__catch {
    font-size: 36px;
  }
}
.p-front-mv__catch h1 {
  font-size: clamp(1.5rem, 1.0385rem + 2.3077vw, 2.625rem);
}
.p-front-mv__catch h5 {
  font-size: clamp(0.875rem, 0.6186rem + 1.2821vw, 1.5rem);
}

.p-front-mv-copyright {
  font-family: "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, Helvetica, sans-serif;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 3px;
  color: #a0a0a0;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  position: absolute;
  display: none;
  left: 10px;
  top: 0;
  bottom: 0;
  text-align: center;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}
@media screen and (min-width: 768px) {
  .p-front-mv-copyright {
    display: block;
  }
}

/*=============================
Catch2
=============================*/
.p-front-catch2 {
  background-image: url("../images/top/bg-catch2.png");
  background-size: 100%;
  padding: 0 0 4rem;
  font-size: 32px;
}
@media screen and (max-width: 767px) {
  .p-front-catch2 {
    padding: 0 0 1rem;
  }
}
.p-front-catch2__catch {
  text-align: center;
  color: #fff;
  margin: 37px auto 22px;
  font-size: 18px;
  letter-spacing: 2px;
}
@media screen and (min-width: 768px) {
  .p-front-catch2__catch {
    font-size: 32px;
    letter-spacing: 4px;
  }
}
.p-front-catch2 img {
  margin: 0 auto;
}
.p-front-catch2 p {
  text-align: center;
  color: #fff;
  font-size: 16px;
  line-height: 40px;
  margin-bottom: 100px;
  font-size: 14px;
  text-align: left;
  width: 90%;
  margin: 0px auto 0px;
  line-height: 30px;
}
@media screen and (min-width: 768px) {
  .p-front-catch2 p {
    font-size: 16px;
    line-height: 40px;
    margin-bottom: 100px;
    letter-spacing: 2px;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .p-front-catch2 .l-wrapper {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-front-catch2 .l-inner {
    padding: 20px 0;
    width: 100%;
  }
}

/*=============================
News
=============================*/
.p-front-news {
  padding-bottom: 0;
  background-color: var(--bluege);
  height: 210px;
}
@media screen and (max-width: 767px) {
  .p-front-news {
    padding: 0;
    height: auto;
  }
}
.p-front-news .bg-gray {
  background-image: url(../images/top/bg-gray.png);
  margin-top: 270px;
  background-position: top center;
  height: 500px;
  width: 100%;
  position: absolute;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-front-news .bg-gray {
    background-position: top center;
    margin-top: 30px;
  }
}
.p-front-news .l-wrapper {
  max-width: 1100px;
  width: 90%;
  height: 240px;
  margin: -165px auto 100px;
  background: #fff;
  border-radius: 20px;
  padding: 30px;
}
@media screen and (max-width: 767px) {
  .p-front-news .l-wrapper {
    margin: 0 auto;
    width: 100%;
    border-radius: 0;
    padding: 15px 5%;
    height: auto;
  }
}
.p-front-news .l-flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-front-news .l-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-front-news__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #efefef;
}
@media screen and (min-width: 768px) {
  .p-front-news__left {
    width: 215px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 30px;
    border-right: 2px solid #efefef;
    border-bottom: none;
  }
}
.p-front-news__left .c-title {
  font-size: 20px;
  color: var(--blue);
  font-family: "Josefin Sans", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, Helvetica, sans-serif;
  font-weight: 500;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-front-news__left .c-title {
    font-size: 32px;
  }
}
.p-front-news__left .c-button--animation {
  font-size: 14px;
  padding: 6px;
  margin: 0 !important;
  width: 110px;
  background: #fff;
}
.p-front-news__left .c-button--animation.-view {
  color: var(--blue);
  border: 2px var(--blue) solid;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-front-news__left .c-button--animation.-view {
    padding: 6px 10px;
    width: auto;
    border-radius: 9px;
    border: 1px var(--blue) solid;
    font-weight: 400;
    -ms-flex-item-align: center;
        align-self: center;
  }
}
.p-front-news__left .c-button--animation.-view:hover {
  color: var(--skyblue);
  border: 2px var(--skyblue) solid;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.p-front-news__right {
  padding-left: 20px;
  height: 165px;
  width: 82%;
  overflow-y: scroll;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .p-front-news__right {
    width: 100%;
    padding: 0;
    height: 170px;
  }
}
.p-front-news__right::-webkit-scrollbar {
  width: 4px;
}
.p-front-news__right::-webkit-scrollbar:hover {
  width: 10px;
}
.p-front-news__right::-webkit-scrollbar-track {
  border-radius: 2px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}
.p-front-news__right::-webkit-scrollbar-thumb {
  background: -webkit-gradient(linear, left bottom, left top, from(var(--blue)), to(var(--blue)));
  background: -webkit-linear-gradient(bottom, var(--blue) 0%, var(--blue) 100%);
  background: linear-gradient(to top, var(--blue) 0%, var(--blue) 100%);
  border-radius: 2px;
  -webkit-box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
          box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}
.p-front-news__right li {
  margin: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .p-front-news__right li {
    margin: 20px;
  }
}
.p-front-news__right .tag {
  margin-left: 20px;
  margin-right: 5px;
  color: #fff;
  background: var(--blue);
  border-radius: 6px;
  font-size: 10px;
  padding: 2px 6px;
  line-height: 16px;
  height: 20px;
  -ms-flex-item-align: center;
      align-self: center;
}
.p-front-news__right a {
  text-decoration: none;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-front-news__right a {
    width: calc(100% - 150px);
  }
  .p-front-news__right a p {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}
@media screen and (max-width: 767px) {
  .p-front-news__right a {
    width: 100%;
  }
}
.p-front-news__right a:hover {
  color: var(--blue);
  text-decoration: underline;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

/*=============================
Voiceスライダー
=============================*/
.p-front-voice {
  padding: 50px 0;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-front-voice {
    padding: 100px 0;
  }
}
.p-front-voice .v-manufacturer,
.p-front-voice .v-subtext,
.p-front-voice .v-message {
  font-size: 12px;
  line-height: 14px;
}
.p-front-voice .v-ttl {
  font-size: 14px;
}
.p-front-voice .v-modal-ttl,
.p-front-voice .v-text {
  font-size: 16px;
}
.p-front-voice .v-company,
.p-front-voice .v-name {
  font-size: 20px;
}
.p-front-voice .v-company,
.p-front-voice .v-subtext,
.p-front-voice .v-name,
.p-front-voice .v-ttl,
.p-front-voice .v-modal-ttl {
  font-weight: bold;
}
.p-front-voice__box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding-left: calc((100% - 1400px) / 2);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-front-voice__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.p-front-voice__text {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-front-voice__text {
    max-width: 395px;
    padding-left: 30px;
    width: 45%;
  }
}
.p-front-voice__text .v-modal-nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-front-voice__text .v-modal-nav {
    display: block;
    padding: 25px;
    position: relative;
  }
}
.p-front-voice__text .v-modal-nav .voice-prev {
  width: 55px;
  height: 55px;
  background-color: #005DD1;
  display: block;
  border-radius: 50%;
  opacity: 1;
  bottom: 0;
  left: 0;
  position: absolute;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  z-index: 1;
}
.p-front-voice__text .v-modal-nav .voice-prev:hover {
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  cursor: pointer;
}
.p-front-voice__text .v-modal-nav .voice-prev:after {
  content: "";
  position: absolute;
  right: -2px;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 11px;
  height: 11px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
@media screen and (max-width: 767px) {
  .p-front-voice__text .v-modal-nav .voice-prev {
    height: 40px;
    width: 40px;
    background: var(--blue);
    display: block;
    position: absolute;
    z-index: 3;
    top: 25vw;
    left: 5px;
    opacity: 0.8;
  }
  .p-front-voice__text .v-modal-nav .voice-prev:after {
    content: "";
    position: absolute;
    right: 0;
    left: 4px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 11px;
    height: 11px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(225deg);
            transform: rotate(225deg);
  }
}
.p-front-voice__text .v-modal-nav .voice-next {
  width: 55px;
  height: 55px;
  background-color: #005DD1;
  display: block;
  border-radius: 50%;
  opacity: 1;
  bottom: 0;
  left: 70px;
  position: absolute;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-front-voice__text .v-modal-nav .voice-next {
    height: 40px;
    width: 40px;
    background: var(--blue);
    display: block;
    position: absolute;
    z-index: 3;
    top: 25vw;
    opacity: 0.8;
    right: 5px;
  }
}
.p-front-voice__text .v-modal-nav .voice-next:hover {
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  cursor: pointer;
}
.p-front-voice__text .v-modal-nav .voice-next:after {
  content: "";
  position: absolute;
  right: 0;
  left: -2px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 11px;
  height: 11px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .p-front-voice__text .v-modal-nav .voice-next:after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    right: 4px;
  }
}
.p-front-voice__text .v-modal-nav .pageinfo::after {
  content: "";
  width: calc(100% - 210px);
  height: 1px;
  background: rgba(159, 169, 180, 0.5);
  position: absolute;
  right: 0;
  bottom: 0.8rem;
}
.p-front-voice__text .v-modal-nav .pageinfo .slick-num {
  font-size: 1rem;
  color: #9FA9B4;
  position: absolute;
  bottom: 0;
  left: 150px;
}
.p-front-voice__ttl {
  color: var(--blue);
  text-align: center;
  padding: 20px 0;
}
@media screen and (min-width: 768px) {
  .p-front-voice__ttl {
    padding: 70px 0 33px;
    text-align: left;
  }
}
.p-front-voice__ttl .en {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 32px;
  -webkit-text-stroke: 0.5px var(--blue);
  color: #fff;
  font-family: "Josefin Sans", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, Helvetica, sans-serif;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-front-voice__ttl .en {
    font-size: 34px;
    -webkit-text-stroke: 0.1px var(--blue);
    margin: 0;
  }
}
.p-front-voice__ttl .jp {
  font-size: 14px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-front-voice__ttl .jp {
    font-size: 18px;
  }
}
.p-front-voice__card {
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-front-voice__card {
    width: 80%;
  }
}
.p-front-voice__card-list .v-item {
  position: relative;
  max-width: 280px;
  margin-right: 30px;
  padding: 45px 0 10px;
}
@media screen and (min-width: 576px) {
  .p-front-voice__card-list .v-item {
    max-width: 395px;
  }
}
.p-front-voice__card-list .v-item .v-image {
  border: solid 1px #D5D5D5;
  padding-bottom: 0;
  margin-bottom: 15px;
}
.p-front-voice__card-list .v-item .v-number {
  color: #005DD1;
  font-size: 54px;
  font-family: "Josefin Sans", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, Helvetica, sans-serif;
  position: absolute;
  top: 0;
  left: 3%;
  z-index: 5;
}
.p-front-voice__card-list .v-item .v-name {
  padding-bottom: 10px;
}
.p-front-voice__card-list .v-item .v-text {
  padding-bottom: 20px;
  text-align: justify;
  height: 100px;
}
.p-front-voice__card-list .v-item .detailbtn {
  display: block;
  width: 130px;
  padding: 7px;
  border: 1px solid var(--blue);
  color: var(--blue);
  border-radius: 6px;
  text-align: center;
  -webkit-box-shadow: 0px 3px 3px 2px rgba(0, 0, 0, 0.1882352941);
          box-shadow: 0px 3px 3px 2px rgba(0, 0, 0, 0.1882352941);
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  opacity: 1;
  margin-bottom: 10px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-front-voice__card-list .v-item .detailbtn {
    font-size: 12px;
    width: 31%;
  }
}
.p-front-voice__card-list .v-item .detailbtn:hover {
  opacity: 0.7;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.p-front-voice__card-list .slick-dots li.slick-active button:before {
  color: #005DD1;
}
.p-front-voice__modal {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 9999;
  inset: 0;
  margin: auto;
  overflow: scroll;
}
.p-front-voice__modal .v-name {
  font-size: 16px;
}
.p-front-voice__modal .v-text {
  font-size: 14px;
  text-align: justify;
}
.p-front-voice__modal .marker {
  display: inline;
  background-color: #F9DD53;
}
.p-front-voice__modal .v-modal-close {
  font-family: "Josefin Sans", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, Helvetica, sans-serif;
  cursor: pointer;
  position: absolute;
  top: -12px;
  right: -18px;
}
.p-front-voice__content {
  position: relative;
  width: 90%;
  background-image: url(../images/top/voice-modal-bg.png);
  background-repeat: no-repeat;
  background-color: white;
  border-radius: 10px;
  margin: 50px auto;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 768px) {
  .p-front-voice__content {
    max-width: 865px;
  }
}
.p-front-voice__wrap {
  padding: 30px;
}
@media screen and (min-width: 576px) {
  .p-front-voice__wrap {
    padding: 50px;
  }
}
@media screen and (min-width: 768px) {
  .p-front-voice__wrap {
    padding: 60px 80px;
  }
}
.p-front-voice__inner .v-modal-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 30px;
}
@media screen and (min-width: 576px) {
  .p-front-voice__inner .v-modal-head {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (min-width: 768px) {
  .p-front-voice__inner .v-modal-head {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.p-front-voice__inner .v-modal-head .v-modal-image {
  width: 100%;
  max-width: 240px;
  border: solid 1px #D5D5D5;
  padding-top: 0;
  margin-top: 5px;
  margin-bottom: 10px;
}
@media screen and (min-width: 576px) {
  .p-front-voice__inner .v-modal-head .v-modal-image {
    margin-bottom: 0;
  }
}
.p-front-voice__inner .v-modal-head .v-modal-image img {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 576px) {
  .p-front-voice__inner .v-modal-head .v-modal-image img {
    margin: 0;
    padding-bottom: 0;
  }
}
.p-front-voice__inner .v-modal-head .v-member-info {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-front-voice__inner .v-modal-head .v-member-info {
    max-width: 390px;
  }
}
.p-front-voice__inner .v-modal-head .v-member-info .v-manufacturer {
  color: #0A47C0;
  border: solid 1px;
  border-radius: 50px;
  display: inline-block;
  padding: 0 10px;
}
.p-front-voice__inner .v-modal-head .v-member-info .info-company {
  padding-bottom: 14px;
}
.p-front-voice__inner .v-modal-head .v-member-info .info-company .v-company {
  font-size: 20px;
  line-height: 30px;
}
.p-front-voice__inner .v-modal-head .v-member-info .v-message {
  line-height: 16px;
}
.p-front-voice__inner .v-modal-head .v-member-info .v-name {
  padding-bottom: 8px;
}
.p-front-voice .v-modal-content {
  height: 260px;
  overflow: scroll;
  padding-right: 14px;
}
@media screen and (min-width: 768px) {
  .p-front-voice .v-modal-content {
    height: 335px;
  }
}
.p-front-voice .v-modal-content::-webkit-scrollbar {
  width: 4px;
  height: 0;
}
.p-front-voice .v-modal-content::-webkit-scrollbar-track {
  border-radius: 5px;
  background: rgba(110, 108, 108, 0.2);
}
.p-front-voice .v-modal-content::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #005DD1;
}
.p-front-voice .v-modal-content .v-modal-qanda {
  padding-bottom: 10px;
}
.p-front-voice .v-modal-content .v-modal-qanda li {
  padding-bottom: 5px;
}
.p-front-voice .v-modal-content .v-modal-qanda li .v-ttl {
  color: #0A47C0;
}
.p-front-voice .v-modal-list .v-modal-ttl {
  padding: 10px;
}
.p-front-voice .v-modal-list .v-modal-textbox {
  padding: 10px;
  background-color: #E1E1E1;
}
.p-front-voice .v-modal-list .v-modal-textbox .v-ttl {
  color: #EF901D;
  margin-bottom: 5px;
}
.p-front-voice .v-modal-list .v-modal-textbox ul {
  list-style: none;
}
.p-front-voice .v-modal-list .v-modal-textbox ul li {
  position: relative;
  padding-left: 1.4em;
  margin-bottom: 8px;
}
.p-front-voice .v-modal-list .v-modal-textbox ul li::before {
  content: "⚫︎";
  color: #F47729;
  font-size: 1em;
  position: absolute;
  top: 0;
  left: 0;
}

/*=============================
list1
=============================*/
.p-front-list {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: var(--bluege);
}
.p-front-list-wrapper {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .p-front-list-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-front-list .list-arrow {
  width: 13vw;
  margin-right: 25px;
}
@media screen and (min-width: 768px) {
  .p-front-list .list-arrow {
    width: 100%;
  }
}
.p-front-list__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
@media screen and (min-width: 768px) {
  .p-front-list__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.p-front-list__list picture {
  z-index: 1;
  position: relative;
}
.p-front-list__list img {
  width: 100%;
  margin: 0;
  max-width: 500px;
}
@media screen and (min-width: 768px) {
  .p-front-list__list img {
    width: 90%;
    margin: 0 auto;
    padding-top: 0;
  }
}

/*=============================
service
=============================*/
.p-front-service {
  background-color: var(--bluege);
  z-index: 1;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-front-service {
    padding: 0 0 6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-front-service__image {
    margin: 25px 0;
  }
}
@media screen and (max-width: 767px) {
  .p-front-service__text {
    width: 100%;
  }
}
.p-front-service .l-wrapper {
  border-radius: 10px;
  width: 100%;
  background-color: #fff;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-front-service .l-wrapper {
    max-width: 1420px;
    width: 90%;
  }
}
.p-front-service .l-inner {
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-front-service .l-inner {
    width: 100%;
  }
}
.p-front-service__header {
  color: var(--blue);
  text-align: center;
  padding: 20px 0;
  border-bottom: 1px solid #dfe7ef;
}
@media screen and (min-width: 768px) {
  .p-front-service__header {
    padding: 55px 0 33px;
  }
}
.p-front-service__header .en {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 32px;
  -webkit-text-stroke: 0.5px var(--blue);
  color: #fff;
  font-family: "Josefin Sans", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, Helvetica, sans-serif;
}
@media screen and (min-width: 768px) {
  .p-front-service__header .en {
    font-size: 34px;
    -webkit-text-stroke: 0.1px var(--blue);
  }
}
.p-front-service__header .jp {
  font-size: 14px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-front-service__header .jp {
    font-size: 18px;
  }
}
.p-front-service__block {
  padding: 40px 0;
}
@media screen and (min-width: 768px) {
  .p-front-service__block {
    padding: 20px 0;
  }
}
.p-front-service__block + .p-front-service__block {
  border-top: 1px solid #dfe7ef;
}
@media screen and (min-width: 768px) {
  .p-front-service__block {
    padding: 60px 0;
  }
}
.p-front-service__block .l-flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-front-service__block .l-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}
.p-front-service__block:nth-child(5) .l-flex, .p-front-service__block:nth-child(3) .l-flex {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-flow: row-reverse;
          flex-flow: row-reverse;
}
.p-front-service__block .label {
  font-size: 16px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-front-service__block .label {
    font-size: 18px;
    text-align: left;
  }
}
.p-front-service__block .label span {
  font-family: "Josefin Sans", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, Helvetica, sans-serif;
}
.p-front-service__block h2 {
  display: inline;
  background-color: var(--blue);
  color: #fff;
  font-size: 5vw;
  line-height: 10vw;
  font-weight: 400;
  letter-spacing: 3px;
  padding: 3px 13px;
}
@media screen and (min-width: 768px) {
  .p-front-service__block h2 {
    font-size: 32px;
    line-height: 60px;
  }
}
.p-front-service__block--1 .label {
  color: var(--blue);
}
.p-front-service__block--1 h2 {
  background-color: var(--blue);
}
.p-front-service__block--2 .label {
  color: var(--skyblue);
}
.p-front-service__block--2 h2 {
  background-color: var(--skyblue);
}
.p-front-service__block--3 .label {
  color: var(--purple);
}
.p-front-service__block--3 h2 {
  background-color: var(--purple);
}
.p-front-service__block--4 .label {
  color: var(--lavender);
}
.p-front-service__block--4 h2 {
  background-color: var(--lavender);
}
.p-front-service__block--5 .label {
  color: var(--green);
}
.p-front-service__block--5 h2 {
  background-color: var(--green);
}
.p-front-service__image img {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-front-service__image {
    width: 56%;
  }
}
.p-front-service__list {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-front-service__list {
    max-width: 425px;
  }
}
.p-front-service__list li {
  margin-top: 20px;
  position: relative;
  margin-left: 23px;
  font-weight: bold;
}
.p-front-service__list li:before {
  content: "";
  position: absolute;
  left: -20px;
  top: 8px;
  display: inline-block;
  vertical-align: super;
  width: 11px;
  height: 8px;
  margin: auto;
  border-top: 2px solid var(--blue);
  border-right: 2px solid var(--blue);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.p-front-service__button-list.l-flex {
  margin: 20px auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  width: 420px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media screen and (max-width: 767px) {
  .p-front-service__button-list.l-flex {
    width: 100%;
  }
}
.p-front-service__button-list.l-flex a {
  padding: 7px;
  width: 130px;
  border: 1px solid var(--blue);
  color: var(--blue);
  border-radius: 6px;
  text-align: center;
  -webkit-box-shadow: 0px 3px 3px 2px rgba(0, 0, 0, 0.1882352941);
          box-shadow: 0px 3px 3px 2px rgba(0, 0, 0, 0.1882352941);
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .p-front-service__button-list.l-flex a {
    font-size: 12px;
    width: 31%;
  }
}
.p-front-service__button-list.l-flex a:first-child {
  background: -webkit-gradient(linear, left top, right top, from(#ea9f3b), to(#e6821e));
  background: -webkit-linear-gradient(left, #ea9f3b 0%, #e6821e 100%);
  background: linear-gradient(90deg, #ea9f3b 0%, #e6821e 100%);
  border: none;
  color: #fff;
}
.p-front-service__button-list.l-flex a:hover {
  opacity: 0.7;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.p-front-service__voice {
  -webkit-box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.19);
          box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.19);
  border-radius: 10px;
  margin-top: 70px;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  padding: 60px 10px 35px;
}
@media screen and (min-width: 1100px) {
  .p-front-service__voice {
    padding: 30px 70px;
  }
}
@media screen and (min-width: 768px) {
  .p-front-service__voice {
    -ms-flex-flow: wrap !important;
        flex-flow: wrap !important;
  }
  .p-front-service__voice:after {
    content: "VOICE";
    color: #fff;
    position: absolute;
    letter-spacing: 3.6px;
    right: 42px;
    top: -42px;
    font-family: "Josefin Sans", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, Helvetica, sans-serif;
    font-size: 60px;
    -webkit-text-stroke: 1px #DFE7EF;
  }
}
.p-front-service__voice .image {
  width: 137px;
  height: 137px;
  margin-right: 20px;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-front-service__voice .image {
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    width: 100px;
    height: 100px;
    margin: auto;
  }
}
.p-front-service__voice .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-front-service__voice .text {
  width: 95%;
}
@media screen and (min-width: 768px) {
  .p-front-service__voice .text {
    width: calc(100% - 157px);
  }
}
.p-front-service__voice .text h3 {
  color: var(--blue);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 30px;
}
@media screen and (min-width: 768px) {
  .p-front-service__voice .text h3 {
    font-size: 24px;
    font-weight: bold;
  }
}
.p-front-service__voice .text p {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .p-front-service__voice .text p {
    font-size: 16px;
  }
}
.p-front-service__voice .text .information {
  display: block;
  color: #464646;
  margin-top: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-front-service__voice .text .information {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-front-service__voice .text .information p {
  margin-right: 5px;
  display: inline;
}
@media screen and (min-width: 768px) {
  .p-front-service__voice .text .information p {
    display: block;
  }
}
.p-front-service__voice .text .company {
  font-size: 12px;
  font-weight: 500;
}
.p-front-service__voice .text .position {
  font-size: 12px;
  font-weight: 400;
}
.p-front-service__voice .text .name {
  font-size: 16px;
  font-weight: bold;
}
.p-front-service__voice .text a {
  color: var(--blue);
  position: absolute;
  right: 0;
  top: auto;
  margin: auto;
  font-weight: 500;
  bottom: -30px;
}
@media screen and (min-width: 1100px) {
  .p-front-service__voice .text a {
    top: 0;
    bottom: 0;
  }
}
.p-front-service__voice .text a:after {
  content: url(../images/top/voice-arrow.svg);
  vertical-align: text-bottom;
  margin-left: 15px;
}

/*=============================
request
=============================*/
.p-front-request {
  text-align: center;
  background-image: url(../images/top/bg-document.png);
  background-size: cover;
  padding: 60px 0 80px;
  margin-bottom: 60px;
}
.p-front-request__ttl {
  font-size: 28px;
  font-family: "Josefin Sans", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, Helvetica, sans-serif;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.p-front-request__sub-ttl {
  color: #fff;
  padding-bottom: 40px;
}

.p-front-request__wrapper {
  padding: 0 30px;
}

.p-front-request__inner {
  overflow: hidden;
  position: relative;
  background-color: var(--white);
  border-radius: 1rem;
  display: grid;
  grid-template-columns: 1fr;
  max-width: 496px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-front-request__inner {
    grid-template-columns: 1fr 1fr;
    max-width: 1034px;
  }
}

.request-img {
  max-width: 496px;
}
.request-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.p-front-request__txt {
  padding: 30px 35px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-front-request__txt {
    padding: 60px 30px;
    text-align: left;
  }
}
.p-front-request__txt p {
  text-align: center;
  padding-bottom: 30px;
  font-size: 4.6vw;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .p-front-request__txt p {
    text-align: left;
    font-size: 26px;
  }
}
.p-front-request__txt img {
  padding-bottom: 30px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-front-request__txt img {
    margin: auto 0;
  }
}
.p-front-request__txt .p-front-request__btn-flex {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-front-request__txt .p-front-request__btn-flex {
    width: auto;
    margin-left: unset;
    margin-right: unset;
  }
}
.p-front-request__txt .p-front-request__btn {
  font-size: 14px;
  background: -webkit-gradient(linear, left top, right top, from(#ea9f3b), to(#e6821e));
  background: -webkit-linear-gradient(left, #ea9f3b 0%, #e6821e 100%);
  background: linear-gradient(90deg, #ea9f3b 0%, #e6821e 100%);
  color: #fff;
  border-radius: 10px;
  text-align: center;
  -webkit-box-shadow: 0px 3px 3px 2px rgba(0, 0, 0, 0.19);
          box-shadow: 0px 3px 3px 2px rgba(0, 0, 0, 0.19);
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  padding: 14px 20px;
  width: auto;
  display: inline-block;
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid transparent;
}
@media screen and (min-width: 768px) {
  .p-front-request__txt .p-front-request__btn {
    font-size: 20px;
    padding: 14px 35px;
  }
}
.p-front-request__txt .p-front-request__btn:hover {
  background: #fff;
  border: solid 1px #e6821e;
  color: #e6821e;
}
.p-front-request__txt .p-front-request__btn:hover svg {
  fill: #e6821e;
}
.p-front-request__txt .p-front-request__btn svg {
  fill: #fff;
  margin-right: 10px;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.p-front-request__txt .p-front-request__btn-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  letter-spacing: 0.1em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* モーダル */
.modal {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 10001;
  inset: 0;
  margin: auto;
  overflow: scroll;
}

/* モーダルコンテンツ */
.modal-content {
  position: relative;
  width: 90%;
  max-width: 680px;
  margin: 50px auto;
}
.modal-content__download {
  background: #fff;
  padding: 30px;
  position: fixed;
  max-width: 670px;
  width: 80%;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: none;
}
@media screen and (min-width: 768px) {
  .modal-content__download {
    width: 100%;
  }
}
.modal-content__download a {
  display: block;
  margin-top: 15px;
  padding: 10px 20px;
  border-radius: 50px;
  background: #e78622;
  border: #e78622;
  color: #fff;
  text-align: center;
  font-weight: bold;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  line-height: 1rem;
}
.modal-content__download a:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .modal-content__download a {
    margin-top: 20px;
    padding: 15px;
  }
}

/* ×ボタン */
.close,
.close-01 {
  cursor: pointer;
  position: absolute;
  top: -12px;
  right: -18px;
}

/*=============================
Rope
=============================*/
.p-front-rope {
  background-image: url(../images/top/bg-rope.png);
  padding: 2rem 0 0;
}
@media screen and (min-width: 768px) {
  .p-front-rope {
    padding: 5rem 0;
  }
}
.p-front-rope .l-inner {
  max-width: 930px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-front-rope .l-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.p-front-rope__left {
  color: #fff;
}
.p-front-rope__left h2 {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-size: 4.6vw;
  line-height: 7vw;
}
@media screen and (min-width: 768px) {
  .p-front-rope__left h2 {
    font-size: 28px;
    line-height: 48px;
  }
}
.p-front-rope__left p {
  font-size: 3vw;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-front-rope__left p {
    font-size: 16px;
  }
}
.p-front-rope__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-front-rope__right {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
.p-front-rope__right a {
  font-size: 14px;
  padding: 8px;
  width: 45%;
  background: #fff;
  border: 1px solid var(--blue);
  color: var(--blue);
  border-radius: 10px;
  text-align: center;
  -webkit-box-shadow: 0px 3px 3px 2px rgba(0, 0, 0, 0.19);
          box-shadow: 0px 3px 3px 2px rgba(0, 0, 0, 0.19);
  margin-bottom: 20px;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-front-rope__right a {
    font-size: 20px;
    padding: 14px;
    width: 200px;
  }
}
.p-front-rope__right a:last-child {
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#ea9f3b), to(#e6821e));
  background: -webkit-linear-gradient(left, #ea9f3b 0%, #e6821e 100%);
  background: linear-gradient(90deg, #ea9f3b 0%, #e6821e 100%);
}
.p-front-rope__right a:hover {
  opacity: 0.7;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

/*=============================
Pickup
=============================*/
.p-front-pickup {
  position: relative;
  padding: 3rem 0 0;
  overflow-x: hidden;
}
.p-front-pickup h2 {
  font-size: 18px;
  font-family: "Josefin Sans", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, Helvetica, sans-serif;
  color: var(--blue);
  padding-left: 30px;
}
.p-front-pickup .l-wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .p-front-pickup .l-wrapper {
    margin: 0 auto;
    padding: 10px;
  }
}
.p-front-pickup .slick-list {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-front-pickup .slick-list {
    overflow: visible;
  }
}
.p-front-pickup .prev-arrow {
  width: 55px;
  height: 55px;
  background-color: #fff;
  display: block;
  border-radius: 50%;
  opacity: 1;
  top: 5vw;
  left: -7px;
  position: absolute;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  z-index: 1;
}
.p-front-pickup .prev-arrow:hover {
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  cursor: pointer;
}
.p-front-pickup .prev-arrow:after {
  content: "";
  position: absolute;
  right: -2px;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 11px;
  height: 11px;
  border-top: 2px solid var(--blue);
  border-right: 2px solid var(--blue);
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
@media screen and (max-width: 767px) {
  .p-front-pickup .prev-arrow {
    height: 40px;
    width: 40px;
    background: var(--blue);
    display: block;
    position: absolute;
    z-index: 3;
    top: 25vw;
    left: 5px;
    opacity: 0.8;
  }
  .p-front-pickup .prev-arrow:after {
    content: "";
    position: absolute;
    right: 0;
    left: 4px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 11px;
    height: 11px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(225deg);
            transform: rotate(225deg);
  }
}
.p-front-pickup .next-arrow {
  width: 55px;
  height: 55px;
  background-color: #fff;
  display: block;
  border-radius: 50%;
  opacity: 1;
  top: 5vw;
  right: -7px;
  left: auto;
  position: absolute;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-front-pickup .next-arrow {
    height: 40px;
    width: 40px;
    background: var(--blue);
    display: block;
    position: absolute;
    z-index: 3;
    top: 25vw;
    opacity: 0.8;
    right: 5px;
  }
}
.p-front-pickup .next-arrow:hover {
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  cursor: pointer;
}
.p-front-pickup .next-arrow:after {
  content: "";
  position: absolute;
  right: 0;
  left: -2px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 11px;
  height: 11px;
  border-top: 2px solid var(--blue);
  border-right: 2px solid var(--blue);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .p-front-pickup .next-arrow:after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    right: 4px;
  }
}
.p-front-pickup-slider .slick-slide.slick-active {
  opacity: 1;
}
.p-front-pickup-slider .slick-slide {
  padding: 20px;
  opacity: 0.6;
}
.p-front-pickup-slider .slick-slide a:hover > p {
  text-decoration: underline;
  color: var(--blue);
}
.p-front-pickup-slider .slick-slide .p-front-pickup-slider__image {
  height: 50vw;
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-front-pickup-slider .slick-slide .p-front-pickup-slider__image {
    height: 11vw;
  }
}
.p-front-pickup-slider .slick-slide .p-front-pickup-slider__image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.p-front-pickup-slider .slick-slide .p-front-pickup-slider__image:hover img {
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.p-front-pickup-slider .slick-slide h3 {
  font-size: 16px;
  background: var(--blue);
  color: #fff;
  padding: 0 5px;
  font-weight: 400;
  margin: 20px 0 0;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .p-front-pickup-slider .slick-slide h3 {
    font-size: 20px;
  }
}
.p-front-pickup-slider .slick-slide p {
  font-size: 14px;
  font-weight: 400;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-front-pickup-slider .slick-slide p {
    font-size: 16px;
  }
}

.p-front-end {
  padding: 1rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-front-end .l-wrapper {
    padding: 0;
  }
}
.p-front-end .l-flex {
  height: 250px;
}
@media screen and (max-width: 767px) {
  .p-front-end .l-flex {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-front-end a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-front-end a:hover > span {
  background-color: #fff;
  color: var(--blue);
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.p-front-end a:hover > span:before {
  background-color: var(--blue);
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.p-front-end a:hover > span:after {
  border-color: var(--blue);
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.p-front-end span {
  color: #fff;
  font-size: 22px;
  border: 2px solid #fff;
  padding: 26px;
  width: 50%;
  display: block;
  text-align: center;
  line-height: 32px;
  margin: 0 auto;
  position: relative;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -ms-flex-item-align: center;
      align-self: center;
}
@media screen and (max-width: 767px) {
  .p-front-end span {
    font-size: 3vw;
    padding: 2vw;
  }
}
.p-front-end span:before {
  content: "";
  height: 1px;
  width: 10%;
  background-color: #fff;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.p-front-end span:after {
  content: "";
  height: 7px;
  width: 7px;
  border-radius: 50%;
  border: solid 1px;
  border-color: #fff;
  position: absolute;
  right: 10%;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.p-front-end .p-front-end__contact {
  background-image: url("../images/top/bg-end-left.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 30vw;
}
@media screen and (min-width: 768px) {
  .p-front-end .p-front-end__contact {
    width: 50%;
    height: auto;
  }
}
.p-front-end .p-front-end__blog {
  background-image: url("../images/top/bg-end-right.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 30vw;
}
@media screen and (min-width: 768px) {
  .p-front-end .p-front-end__blog {
    width: 50%;
    height: auto;
  }
}

.p-news-single .l-news__inner {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}
.p-news-single .l-article__single-data .date {
  font-weight: bold;
  letter-spacing: 1.82px;
  font-size: 14px;
  margin-right: 8px;
}
.p-news-single .l-article__single-data .date:before {
  content: url(../images/icons/icon-clock.svg);
  vertical-align: text-top;
  margin-right: 5px;
}
.p-news-single .l-article__single-data .c-badge {
  border-radius: 15px;
  padding: 5px 20px;
}
.p-news-single .l-article__single-title {
  border-bottom: solid 1px #AEB1BA;
  padding-bottom: 15px;
}
.p-news-single .image-wrapp {
  margin-top: 30px;
  margin-bottom: 50px;
}
.p-news-single .p-news__relation .link .head .data {
  display: inline;
  line-height: 1.7;
  color: var(--block);
  font-size: 14px;
  font-weight: bold;
}
.p-news-single .p-news__relation .link .head .date:before {
  content: url(../images/icons/icon-clock.svg);
  margin-right: 5px;
  vertical-align: text-top;
}
.p-news-single .p-news__relation .link .head .term {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  background-color: var(--main-c);
  color: #fff;
  display: inline-block;
  border-radius: 5px;
  padding: 0 6px;
}
.p-news-single .p-news__relation .link .body {
  padding: 0.5rem 2rem 1.5rem;
  position: relative;
  height: 100%;
}
.p-news-single .p-news__relation .link .body .title {
  font-size: 16px;
  margin-top: 10px;
}

.p-news .l-article__list, .p-news_cat .l-article__list {
  margin-top: 10px;
}
.p-news .l-article__list li, .p-news_cat .l-article__list li {
  position: relative;
}
.p-news .l-article__list li:after, .p-news_cat .l-article__list li:after {
  content: url(../images/icons/icon-arrow.svg);
  position: absolute;
  right: 0px;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-news .l-article__list li:after, .p-news_cat .l-article__list li:after {
    bottom: 15px;
  }
}
.p-news .l-article__list li:last-child .l-flex, .p-news_cat .l-article__list li:last-child .l-flex {
  border-bottom: none;
}
.p-news .l-article__list .l-flex, .p-news_cat .l-article__list .l-flex {
  border-bottom: 1px solid #AEB1BA;
  padding: 30px 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-news .l-article__list .l-flex, .p-news_cat .l-article__list .l-flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.p-news .l-article__list .year, .p-news_cat .l-article__list .year {
  font-weight: bold;
  letter-spacing: 1.82px;
  font-size: 14px;
  display: block;
}
.p-news .l-article__list .year:before, .p-news_cat .l-article__list .year:before {
  content: url(../images/icons/icon-clock.svg);
  vertical-align: text-top;
  margin-right: 3px;
}
.p-news .l-article__list .day, .p-news_cat .l-article__list .day {
  font-size: 42px;
  font-family: "Josefin Sans";
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .p-news .l-article__list .date, .p-news_cat .l-article__list .date {
    width: 100px;
  }
}
@media screen and (min-width: 768px) {
  .p-news .l-article__list .data, .p-news_cat .l-article__list .data {
    margin-left: 40px;
  }
}
.p-news .l-article__list .c-badge, .p-news_cat .l-article__list .c-badge {
  border-radius: 15px;
  padding: 5px 20px;
}
.p-news .l-article__list .title, .p-news_cat .l-article__list .title {
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
}
.p-news .l-article__list .description, .p-news_cat .l-article__list .description {
  font-size: 16px;
  margin-left: 16px;
  font-weight: bold;
  display: inline;
}

.p-npmo_pjma .c-media__title,
.p-npmo_pjma .u-c-main,
.p-npmo_pjma .c-conversion__title,
.p-npmo_pjma .c-step__step {
  color: #CC0E0E;
}
.p-npmo_pjma .c-title-h3::after,
.p-npmo_pjma .c-button,
.p-npmo_pjma .c-title-h6::before,
.p-npmo_pjma .c-buy__card h5:before {
  background-color: #CC0E0E;
}
.p-npmo_pjma .c-point__num,
.p-npmo_pjma .c-video__caption,
.p-npmo_pjma .c-button,
.p-npmo_pjma .c-step__item:not(:last-of-type)::before {
  border-color: #CC0E0E;
}
.p-npmo_pjma .c-conversion,
.p-npmo_pjma .c-video__caption,
.p-npmo_pjma .c-table__title-vl,
.p-npmo_pjma .c-text-wrapper .l-inner-main {
  background-color: #F2F2F2;
}

.request-form {
  background-color: #fff;
  border-radius: 10px;
  padding: 40px 30px 20px;
  max-width: 680px;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 768px) {
  .request-form {
    padding: 40px 40px 20px;
  }
}
.request-form .request-checkbox__wrap {
  padding-bottom: 20px;
}
.request-form .request-checkbox__wrap .request-ttl {
  text-align: center;
  padding-bottom: 20px;
  font-weight: bold;
  font-size: 20px;
}
.request-form .request-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .request-form .request-checkbox {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.request-form .request-checkbox .l-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-height: 56px;
  border: solid 1px #E1E1E1;
  border-radius: 5px;
  margin-bottom: 10px;
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .request-form .request-checkbox .l-checkbox {
    width: 48%;
  }
}
.request-form .request-checkbox .l-checkbox:hover {
  border-color: #0A47C0;
}
.request-form .request-checkbox .l-checkbox input {
  margin: 0 10px;
  cursor: pointer;
}
.request-form .request-checkbox .l-checkbox label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.request-form .request-checkbox .l-checkbox label .checkbox-image {
  width: 25px;
}
.request-form .request-checkbox .l-checkbox label .checkbox-image img {
  width: 100%;
}
.request-form .request-checkbox .l-checkbox label p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.request-form .request-checkbox .l-checkbox label span {
  display: inline-block;
  font-size: 12px;
  line-height: 1.4em;
  width: 100%;
  padding: 10px 10px 10px 0;
}
.request-form .request-checkbox .l-checkbox label span .br-none {
  display: none;
}
@media screen and (min-width: 768px) {
  .request-form .request-checkbox .l-checkbox label span .br-none {
    display: block;
  }
}
.request-form .input-area {
  padding-bottom: 10px;
}
.request-form .input-area .request-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .request-form .input-area .request-block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.request-form .input-area .request-block .wpcf7-form-control-wrap {
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .request-form .input-area .request-block .wpcf7-form-control-wrap {
    width: 50%;
  }
}
.request-form .input-area .request-block.not-required .wpcf7-not-valid-tip {
  display: none;
}
.request-form .input-area .request-block .label {
  padding-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .request-form .input-area .request-block .label {
    padding-left: 14px;
    padding-bottom: 0;
    width: 50%;
  }
}
.request-form .input-area .request-block .label.required::after {
  content: "必須";
  background-color: #E10029;
  color: #fff;
  display: inline-block;
  padding: 1px 7px;
  border-radius: 3px;
  font-weight: 300;
  line-height: 21px;
  margin-left: 8px;
  font-size: 14px;
}
.request-form .input-area .request-block .name-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 15px;
  gap: 4%;
}
@media screen and (min-width: 768px) {
  .request-form .input-area .request-block .name-block {
    width: 50%;
  }
}
.request-form .input-area .request-block .name-block-box {
  width: 100%;
}
.request-form .input-area .request-block .name-block-box:last-child {
  padding-right: 0;
}
.request-form .input-area .request-block input {
  border: none;
  padding: 12px;
  border-radius: 5px;
  background-color: #F2F3F4;
  width: 100%;
  font-size: 0.875rem;
}
.request-form .submit-btn {
  text-align: center;
}
.request-form .submit-btn .wpcf7-spinner {
  display: block;
}
.request-form .submit-btn input {
  width: 100%;
  background-color: #E6821E;
  border: none;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.3em;
  padding: 20px;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, Helvetica, sans-serif;
}
.request-form .submit-btn input:hover {
  opacity: 0.7;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  cursor: pointer;
}
.request-form .submit-btn input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
}
.request-form .wpcf7 form .wpcf7-response-output {
  margin: 1em 0.5em 1em;
  padding: 0.2em 1em;
  border: 2px solid #00a0d2;
  background-color: #fff;
  text-align: center;
}

.p-training .c-grid--gap-lg {
  grid-gap: 30px;
}
.p-training .c-card-img--icon .c-card-img__body {
  padding: 35px 1em 1em;
}
.p-training .c-card-img--icon .c-card-img__wrap {
  width: 50px;
  height: 50px;
  top: -32px;
}
@media screen and (min-width: 768px) {
  .p-training .c-card-img--icon .c-card-img__wrap {
    width: 60px;
    height: 60px;
  }
}
.p-training .c-grid--col1-5 .c-card-img--icon .c-card-img__image {
  border-radius: 0%;
  width: 50px;
  height: 50px;
}
@media screen and (min-width: 768px) {
  .p-training .c-grid--col1-5 .c-card-img--icon .c-card-img__image {
    width: 60px;
    height: 60px;
  }
}

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

.u-tab {
  display: block !important;
}
@media screen and (min-width: 1100px) {
  .u-tab {
    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-marker-blue {
  background-color: var(--main-c);
  color: #fff;
  font-weight: bold;
  line-height: 2;
  padding: 2px 5px;
}
@media screen and (min-width: 768px) {
  .u-marker-blue {
    padding: 4px 10px;
  }
}

.u-marker-sub {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(40%, transparent), color-stop(40%, rgba(44, 78, 250, 0.2)), to(rgba(44, 78, 250, 0.2)));
  background: -webkit-linear-gradient(top, transparent 0%, transparent 40%, rgba(44, 78, 250, 0.2) 40%, rgba(44, 78, 250, 0.2) 100%);
  background: linear-gradient(180deg, transparent 0%, transparent 40%, rgba(44, 78, 250, 0.2) 40%, rgba(44, 78, 250, 0.2) 100%);
  padding-bottom: 2px;
}

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

.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-gradient(linear, left top, right top, from(#9372d4), color-stop(#2c4efa), to(#7bb2c1));
  background: -webkit-linear-gradient(left, #9372d4, #2c4efa, #7bb2c1);
  background: linear-gradient(to right, #9372d4, #2c4efa, #7bb2c1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.u-font-24 {
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .u-font-24 {
    font-size: 24px;
  }
}