@charset "UTF-8";
:root {
  --yellow: #ffef00;
  --lightyellow: #f9f2bb;
  --blue: #009FDF;
  --navy: #053e62;
  --lightblue: #EEF7FB;
  --darkblue: #3591D0;
  --lightgreen: #dcedd0;
  --red: #fc0000;
  --orange: #F3863C;
  --white: #fff;
  --offwhite: #f9f9f9;
  --black: #383D54;
  --grey: #d4dde2;
  --darkgrey: #D2D2D2;
  --lightgrey: #ebf2f6;
  --ivory: #f5f1eb;
  --main-c: var(--blue);
  --base-c: var(--offwhite);
  --accent-c: var(--orange);
  --bg-c: var(--lightblue);
  --bg-c-2: var(--darkblue);
  --border-c: var(--darkgrey);
}

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

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

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

#splash {
  z-index: 8;
}

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

.swiper-pagination {
  z-index: 4;
}

[data-appear-blur] {
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

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

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

del {
  text-decoration: line-through;
}

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

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

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

input,
select {
  vertical-align: middle;
}

i {
  font-style: normal;
}

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

body {
  position: relative;
  font-family: "Open Sans", "Zen Kaku Gothic New", "Lato", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.75;
  width: 100%;
  overflow-x: hidden;
  letter-spacing: 0.02em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: var(--black);
  font-size: 1rem;
}

a {
  color: inherit;
  cursor: pointer;
}

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

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

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

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

/* Chrome、Safari以外 */
summary {
  display: block;
}

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

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

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

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

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

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

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

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

.l-archive__wrapper {
  margin-top: 68px;
  padding: 1rem 0;
}
@media screen and (min-width: 768px) {
  .l-archive__wrapper {
    margin-top: 108px;
  }
}

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

.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;
  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 {
    margin-top: 40px;
    padding-bottom: 40px;
  }
}
.l-archive__item:not(:last-child) {
  border-bottom: solid 1px var(--grey);
}
.l-archive__item:nth-of-type(3n+1) .head {
  position: relative;
}
.l-archive__item:nth-of-type(3n+1) .head:before, .l-archive__item:nth-of-type(3n+1) .head:after {
  content: "";
  position: absolute;
  -webkit-transform: rotate(-35deg);
          transform: rotate(-35deg);
  width: 50px;
  height: 15px;
  background-color: var(--base-c);
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .l-archive__item:nth-of-type(3n+1) .head:before, .l-archive__item:nth-of-type(3n+1) .head:after {
    width: 70px;
    height: 25px;
  }
}
.l-archive__item:nth-of-type(3n+1) .head:before {
  top: -5px;
  left: -18px;
  border-bottom: 1px solid var(--grey);
}
@media screen and (min-width: 768px) {
  .l-archive__item:nth-of-type(3n+1) .head:before {
    top: -10px;
    left: -25px;
  }
}
.l-archive__item:nth-of-type(3n+1) .head:after {
  bottom: -5px;
  right: -18px;
  border-top: 1px solid var(--grey);
}
@media screen and (min-width: 768px) {
  .l-archive__item:nth-of-type(3n+1) .head:after {
    bottom: -10px;
    right: -25px;
  }
}
.l-archive__item:nth-of-type(3n+2) .head {
  -webkit-box-shadow: 12px 12px 5px var(--darkgrey);
          box-shadow: 12px 12px 5px var(--darkgrey);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-archive__item:nth-of-type(3n+2) .head:hover {
  -webkit-box-shadow: 1px 1px 1px var(--darkgrey);
          box-shadow: 1px 1px 1px var(--darkgrey);
  -webkit-transform: translate3d(12px, 12px, 0);
          transform: translate3d(12px, 12px, 0);
}
.l-archive__item:nth-of-type(3n) .head {
  position: relative;
}
.l-archive__item:nth-of-type(3n) .head:before, .l-archive__item:nth-of-type(3n) .head:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-archive__item:nth-of-type(3n) .head:before {
  top: -5px;
  right: -5px;
  border-width: 0 30px 30px 0;
  border-color: transparent var(--main-c) transparent transparent;
}
@media screen and (min-width: 768px) {
  .l-archive__item:nth-of-type(3n) .head:before {
    border-width: 0 40px 40px 0;
  }
}
.l-archive__item:nth-of-type(3n) .head:after {
  bottom: -5px;
  left: -5px;
  border-width: 30px 0 0 30px;
  border-color: transparent transparent transparent var(--main-c);
}
@media screen and (min-width: 768px) {
  .l-archive__item:nth-of-type(3n) .head:after {
    border-width: 40px 0 0 40px;
  }
}
.l-archive__item:nth-of-type(3n) .head:hover:before {
  top: 0;
  right: 0;
}
.l-archive__item:nth-of-type(3n) .head:hover:after {
  bottom: 0;
  left: 0;
}
.l-archive__item.-view {
  -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 .more:after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.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: 56.25%;
}
.l-archive__item .head .image-wrapp::after {
  content: "";
  display: block;
  clear: both;
}
.l-archive__item .head .image-wrapp > :first-child {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  -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;
}
.l-archive__item .body .data {
  line-height: 1.7;
  color: var(--darkgrey);
}
.l-archive__item .body .title {
  font-size: clamp(1rem, 0.8rem + 1vw, 2rem);
  margin-top: 1rem;
}
.l-archive__item .body .term {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-top: 1.2rem;
}
.l-archive__item .body .term:before {
  content: "";
  display: inline-block;
  background-color: var(--darkgrey);
  width: 1rem;
  height: 1px;
}
.l-archive__item .more {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .l-archive__item .more {
    right: 2rem;
    bottom: 1rem;
  }
}
.l-archive__item .more:after {
  position: absolute;
  bottom: -5px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: var(--main-c);
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.l-archive__pagenation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1rem 0;
  border-top: solid 1px var(--main-c);
}

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

.l-wrapper {
  position: relative;
  z-index: 1;
}

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

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

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

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

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

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

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

.l-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.l-flex.-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.l-flex.-jbetween {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.l-flex.-jcenter {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.l-flex.-jaround {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.l-flex.-acenter {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-flex.-abaseline {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.l-flex.-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .l-flex.-column {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.l-flex.-gap {
  gap: 12px;
}
.l-flex.-gap-s {
  row-gap: 1rem;
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
}
.l-flex.-gap-m {
  row-gap: 1.5rem;
  -webkit-column-gap: 2.5rem;
     -moz-column-gap: 2.5rem;
          column-gap: 2.5rem;
}

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

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

.l-section {
  position: relative;
  background-color: #F0F2F5;
}
.l-section__start, .l-section__end {
  position: absolute;
  max-width: 290px;
  width: 28%;
}
@media screen and (min-width: 768px) {
  .l-section__start, .l-section__end {
    width: 15%;
  }
}
.l-section__start {
  top: 0;
  left: 0;
}
.l-section__end {
  bottom: 0;
  right: 0;
}

.l-footer {
  width: 100%;
  padding: 1rem 0 0;
  background-color: var(--main-c);
  color: var(--white);
}
@media screen and (min-width: 768px) {
  .l-footer {
    padding: 2rem 0;
  }
}
.l-footer .l-inner {
  max-width: 1800px;
}
@media screen and (min-width: 768px) {
  .l-footer .footer-logo-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.l-footer .footer-logo-wrapper .l-footer__link-official {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-footer .footer-logo-wrapper .l-footer__link-official {
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  .l-footer .footer-logo-wrapper .l-footer__link-official {
    display: none;
  }
}
.l-footer .footer-logo img {
  height: 100px;
}
@media screen and (min-width: 768px) {
  .l-footer .footer-logo img {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.l-footer .footer-logo.-persol {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-footer .footer-logo.-persol {
    display: grid;
    place-content: center;
    width: 283px;
    height: 70px;
    background-color: var(--white);
  }
}
.l-footer .l-footer__link-official {
  text-decoration: none;
  color: var(--main-c);
  background-color: var(--white);
  border: 1px solid var(--white);
  display: inline-block;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 5px 10px;
  border-radius: 2rem;
  font-size: 1rem;
  font-weight: 500;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-footer .l-footer__link-official:hover {
  color: var(--white);
  background-color: var(--main-c);
}

.l-footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 8px;
}
@media screen and (min-width: 768px) {
  .l-footer__top {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
  }
}
@media screen and (min-width: 1024px) {
  .l-footer__top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.l-footer__top-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 1rem;
  -webkit-column-gap: 4rem;
     -moz-column-gap: 4rem;
          column-gap: 4rem;
}
.l-footer__top-nav .item + .item {
  margin-top: 0.5em;
}
.l-footer__top-nav .title {
  font-weight: 500;
}
.l-footer__top-nav .link {
  position: relative;
  font-size: 0.875rem;
  padding-left: 1em;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .l-footer__top-nav .link {
    position: relative;
    display: inline-block;
    text-decoration: none;
  }
  .l-footer__top-nav .link::after {
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: #fff;
    bottom: -2px;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    -webkit-transform-origin: right top;
            transform-origin: right top;
  }
  .l-footer__top-nav .link:hover::after {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
.l-footer__top-nav .link:before {
  content: "";
  display: inline-block;
  height: 0.5em;
  width: 0.5em;
  border-top: 1px solid var(--white);
  border-right: 1px solid var(--white);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  left: 0;
  top: 0.5em;
}
@media screen and (min-width: 768px) {
  .l-footer__top-nav .link:before {
    top: 0.7em;
  }
}
@media screen and (min-width: 768px) {
  .l-footer__top-nav .l-footer__link-official {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .l-footer__top-nav .l-footer__link-official {
    display: block;
  }
}

.l-footer__bottom {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
  row-gap: 10px;
}
@media screen and (min-width: 768px) {
  .l-footer__bottom {
    -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: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 10rem;
    margin-bottom: 0;
  }
}
.l-footer__bottom .link {
  text-decoration: none;
  position: relative;
  display: inline-block;
  text-decoration: none;
  font-size: 0.875rem;
}
.l-footer__bottom .link::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  bottom: -2px;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform-origin: right top;
          transform-origin: right top;
}
.l-footer__bottom .link:hover::after {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
@media screen and (min-width: 768px) {
  .l-footer__bottom .bar {
    display: block;
    height: 1em;
    width: 1px;
    background-color: var(--white);
  }
}
.l-footer__bottom .l-flex {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 4px;
  -webkit-column-gap: 1em;
     -moz-column-gap: 1em;
          column-gap: 1em;
}
@media screen and (min-width: 768px) {
  .l-footer__bottom .l-flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.l-footer__bottom .copyright {
  font-size: 0.875rem;
}

.l-footer__cv {
  z-index: 4;
  position: fixed;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  background-color: var(--white);
}
@media screen and (min-width: 768px) {
  .l-footer__cv {
    display: none;
  }
}
.l-footer__cv .l-flex {
  width: 100%;
}
.l-footer__cv .l-footer__cv-item {
  display: grid;
  place-content: center;
  text-decoration: none;
  text-align: center;
  padding: 0.8rem 1rem;
  width: 50%;
}
.l-footer__cv .l-footer__cv-item:first-child {
  background-color: var(--accent-c);
  color: var(--white);
}
.l-footer__cv .l-footer__cv-item:last-child {
  background-color: var(--bg-c);
  color: var(--main-c);
}
.l-footer__cv .l-footer__cv-item .icon {
  margin: auto;
}
.l-footer__cv .l-footer__cv-item .text {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 2em;
  margin-top: 0.5em;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
}

.l-footer__persol-logo {
  display: grid;
  place-content: center;
  background-color: var(--white);
  height: 50px;
}
@media screen and (min-width: 768px) {
  .l-footer__persol-logo {
    display: none;
  }
}
.l-footer__persol-logo img {
  margin: auto;
  height: 35px;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 68px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .l-header {
    height: 108px;
  }
}
@media screen and (min-width: 768px) {
  .l-header.is-scrolled {
    height: 70px;
  }
}

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

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

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

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

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

.c-badge {
  padding: 0 0.5em;
  border-radius: 4px;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--white);
  background-color: var(--darkgrey);
  font-size: 0.875rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .c-badge {
    min-width: 150px;
  }
}
.c-badge.-news {
  background-color: #78BD20;
}
.c-badge.-guideline {
  background-color: #003C71;
}
.c-badge.-media {
  background-color: #AF1685;
}

.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-box-border {
  pointer-events: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border: 10px solid var(--main-c);
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .c-box-border {
    border: 10px solid var(--main-c);
  }
}
.c-box-border:before {
  content: "";
  position: absolute;
  right: 1rem;
  top: calc(-10px - 1px);
  height: calc(10px + 2px);
  width: 1rem;
  background-color: var(--white);
}
@media screen and (min-width: 768px) {
  .c-box-border:before {
    right: 1rem;
    top: calc(-10px - 1px);
    height: calc(10px + 2px);
    width: 1rem;
  }
}
.c-box-border:after {
  content: "";
  position: absolute;
  top: 1rem;
  right: calc(-10px);
  width: calc(10px + 2px);
  height: 2rem;
  background-color: var(--white);
}
@media screen and (min-width: 768px) {
  .c-box-border:after {
    top: 1rem;
    right: calc(-10px - 1px);
    width: calc(10px + 2px);
    height: 2rem;
  }
}

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

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

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

.c-button-cv {
  padding: 10px 1em;
  display: inline-block;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  font-weight: 500;
  color: var(--white);
  background-image: url("/icdl/assets/images/common/button-cv-bg.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 2px solid transparent;
  border-radius: 4rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 0.875rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-button-cv:hover {
  opacity: 0.5;
}
@media screen and (min-width: 1024px) {
  .c-button-cv {
    font-size: 1.125rem;
  }
}

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

.c-button-cv--lg {
  width: 100%;
  max-width: 335px;
  padding: 17px 3em;
  line-height: 1.5;
  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;
}
@media screen and (min-width: 1024px) {
  .c-button-cv--lg {
    max-width: 420px;
  }
}

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

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

.c-button-cv--right-arrow {
  position: relative;
}
.c-button-cv--right-arrow:after {
  content: "";
  height: 1em;
  width: 1em;
  display: inline-block;
  border-top: solid 2px var(--white);
  border-right: solid 2px var(--white);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  right: 8%;
  top: 0;
  bottom: 0;
  margin: auto;
}

.c-button-cv--bottom-arrow {
  position: relative;
}
.c-button-cv--bottom-arrow:after {
  content: "";
  height: 1em;
  width: 1em;
  display: inline-block;
  border-top: solid 2px var(--white);
  border-right: solid 2px var(--white);
  -webkit-transform: translateY(-5px) rotate(135deg);
          transform: translateY(-5px) rotate(135deg);
  position: absolute;
  right: 8%;
  top: 0;
  bottom: 0;
  margin: auto;
}

.c-button-cv--cv,
.c-button-cv--faq {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.2;
  padding: 0 3em 0 5em;
  margin-left: auto;
  margin-right: auto;
  height: 58px;
}
@media screen and (min-width: 768px) {
  .c-button-cv--cv,
  .c-button-cv--faq {
    height: 100px;
  }
}
.c-button-cv--cv:after,
.c-button-cv--faq:after {
  border-color: var(--white);
  -webkit-transform: rotate(45deg) scale(1);
          transform: rotate(45deg) scale(1);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.c-button-cv--cv:before,
.c-button-cv--faq:before {
  content: "";
  position: absolute;
  left: 5px;
  top: 0;
  bottom: 0;
  margin: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  width: 52px;
  height: 52px;
}
@media screen and (min-width: 768px) {
  .c-button-cv--cv:before,
  .c-button-cv--faq:before {
    height: 90%;
    width: 90px;
  }
}
@media screen and (min-width: 768px) {
  .c-button-cv--cv:hover,
  .c-button-cv--faq:hover {
    opacity: 1;
  }
  .c-button-cv--cv:hover:before,
  .c-button-cv--faq:hover:before {
    left: calc(100% - 95px);
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }
  .c-button-cv--cv:hover:after,
  .c-button-cv--faq:hover:after {
    -webkit-transform: rotate(45deg) scale(0);
            transform: rotate(45deg) scale(0);
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
}
.c-button-cv--cv[tabindex="-1"],
.c-button-cv--faq[tabindex="-1"] {
  cursor: not-allowed;
}
.c-button-cv--cv[tabindex="-1"]:hover,
.c-button-cv--faq[tabindex="-1"]:hover {
  opacity: 1;
}
.c-button-cv--cv[tabindex="-1"]:before,
.c-button-cv--faq[tabindex="-1"]:before {
  left: 5px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.c-button-cv--cv[tabindex="-1"]:after,
.c-button-cv--faq[tabindex="-1"]:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.c-button-cv--cv {
  background: var(--accent-c);
}
.c-button-cv--cv:before {
  background-image: url("/icdl/assets/images/icons/button-cv-finger.svg");
}
.c-button-cv--cv small {
  display: inline-block;
}

.c-button-cv--faq {
  background: var(--main-c);
}
.c-button-cv--faq:before {
  background-image: url("/icdl/assets/images/icons/button-cv-faq.svg");
}

.c-button-cv--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-cv--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-cv--animation .bg1, .c-button-cv--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-cv--animation .bg1 {
  top: -50%;
  left: -25%;
  background-color: var(--black);
  opacity: 0;
}
.c-button-cv--animation .bg2 {
  top: 150%;
  left: -25%;
  background-color: var(--white);
}
.c-button-cv--animation.-view {
  color: var(--white);
}
.c-button-cv--animation.-view:before {
  width: 100%;
}
.c-button-cv--animation.-view .bg1 {
  opacity: 1;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.c-button-cv--animation:hover .bg1, .c-button-cv--animation:hover .bg2 {
  -webkit-transform: translate(0, -100%) rotate(10deg);
          transform: translate(0, -100%) rotate(10deg);
}
.c-button-cv--animation:hover .text {
  opacity: 0;
  -webkit-transform: translate(0, -200%);
          transform: translate(0, -200%);
}
.c-button-cv--animation:hover .btn-arrow {
  top: 50%;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-button-cv--animation .text {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-button-cv--animation .btn-arrow {
  content: "";
  display: block;
  height: 1em;
  background-image: url("/icdl/assets/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 {
  padding: 10px 1em;
  display: inline-block;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  font-weight: 500;
  color: var(--white);
  background-image: url("/icdl/assets/images/common/button-bg.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 4rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-button:hover {
  opacity: 0.5;
}
@media screen and (min-width: 768px) {
  .c-button {
    font-size: 1.125rem;
  }
}

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

.c-button--lg {
  width: 32%;
  min-width: 340px;
  padding: 17px 3em;
  line-height: 1.5;
  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;
}
@media screen and (min-width: 1333px) {
  .c-button--lg {
    width: 100%;
    max-width: 380px;
  }
}

.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--right-arrow {
  position: relative;
}
.c-button--right-arrow:after {
  content: "";
  height: 1em;
  width: 1em;
  display: inline-block;
  border-top: solid 2px var(--white);
  border-right: solid 2px var(--white);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  right: 8%;
  top: 0;
  bottom: 0;
  margin: auto;
}

.c-button--bottom-arrow {
  position: relative;
}
.c-button--bottom-arrow:after {
  content: "";
  height: 1em;
  width: 1em;
  display: inline-block;
  border-top: solid 2px var(--white);
  border-right: solid 2px var(--white);
  -webkit-transform: translateY(-5px) rotate(135deg);
          transform: translateY(-5px) rotate(135deg);
  position: absolute;
  right: 8%;
  top: 0;
  bottom: 0;
  margin: auto;
}

.c-button--cv,
.c-button--faq {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.2;
  padding: 0 3em 0 5em;
  margin-left: auto;
  margin-right: auto;
  height: 58px;
}
@media screen and (min-width: 768px) {
  .c-button--cv,
  .c-button--faq {
    height: 100px;
  }
}
.c-button--cv:after,
.c-button--faq:after {
  border-color: var(--white);
  -webkit-transform: rotate(45deg) scale(1);
          transform: rotate(45deg) scale(1);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.c-button--cv:before,
.c-button--faq:before {
  content: "";
  position: absolute;
  left: 5px;
  top: 0;
  bottom: 0;
  margin: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  width: 52px;
  height: 52px;
}
@media screen and (min-width: 768px) {
  .c-button--cv:before,
  .c-button--faq:before {
    height: 90%;
    width: 90px;
  }
}
@media screen and (min-width: 768px) {
  .c-button--cv:hover,
  .c-button--faq:hover {
    opacity: 1;
  }
  .c-button--cv:hover:before,
  .c-button--faq:hover:before {
    left: calc(100% - 95px);
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }
  .c-button--cv:hover:after,
  .c-button--faq:hover:after {
    -webkit-transform: rotate(45deg) scale(0);
            transform: rotate(45deg) scale(0);
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
}
.c-button--cv[tabindex="-1"],
.c-button--faq[tabindex="-1"] {
  cursor: not-allowed;
}
.c-button--cv[tabindex="-1"]:hover,
.c-button--faq[tabindex="-1"]:hover {
  opacity: 1;
}
.c-button--cv[tabindex="-1"]:before,
.c-button--faq[tabindex="-1"]:before {
  left: 5px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.c-button--cv[tabindex="-1"]:after,
.c-button--faq[tabindex="-1"]:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.c-button--cv {
  background: var(--accent-c);
}
.c-button--cv:before {
  background-image: url("/icdl/assets/images/icons/button-finger.svg");
}
.c-button--cv small {
  display: inline-block;
}

.c-button--faq {
  background: var(--main-c);
}
.c-button--faq:before {
  background-image: url("/icdl/assets/images/icons/button-faq.svg");
}

.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("/icdl/assets/images/icons/right-arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 200%;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 2;
}

.c-card-img {
  width: 100%;
  height: 100%;
  -webkit-filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.1));
  background-color: var(--white);
}
.c-card-img .c-card-img__body {
  padding: 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: 50px 1em 1em;
  }
}

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

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

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

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

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

.c-card-img--shadow {
  -webkit-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__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(--base-c);
  display: table;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}
@media screen and (min-width: 768px) {
  .c-card__head {
    padding: 10px 20px;
  }
}

.c-card__head__text {
  display: table-cell;
  vertical-align: middle;
  font-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: 10px 20px;
  }
}

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

.c-category {
  position: relative;
  padding: 2em;
}

.c-category-head {
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  row-gap: 1rem;
  grid-template-areas: "icon title" "lead lead";
}
@media screen and (min-width: 768px) {
  .c-category-head {
    row-gap: 0;
    grid-template-areas: "icon title" "icon lead";
  }
}
.c-category-head .icon {
  grid-area: icon;
}
.c-category-head .title {
  grid-area: title;
  font-weight: bold;
  letter-spacing: 0.05rem;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .c-category-head .title {
    font-size: 2rem;
  }
}
.c-category-head .lead {
  grid-area: lead;
  font-weight: 500;
}

.c-category-body {
  margin-top: 2rem;
}
.c-category-body .soon {
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 10px;
  height: 165px;
}
@media screen and (min-width: 768px) {
  .c-category-body .soon {
    height: 110px;
  }
}

.c-category-body__links-item .link {
  display: block;
  color: var(--white);
  border-radius: 10px;
  padding: 0.5em 2em 1em 1.5em;
  width: 100%;
  text-decoration: none;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-category-body__links-item .link:after {
  content: "";
  height: 1em;
  width: 1em;
  display: inline-block;
  border-top: solid 2px var(--white);
  border-right: solid 2px var(--white);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  right: 8%;
  top: 0;
  bottom: 0;
  margin: auto;
}
.c-category-body__links-item .link:hover {
  opacity: 0.5;
}
.c-category-body__links-item .link:after {
  right: 1em;
}
.c-category-body__links-item .title {
  font-weight: 500;
  font-size: 1.375rem;
}
@media screen and (min-width: 768px) {
  .c-category-body__links-item .title {
    font-size: 1.875rem;
  }
}
.c-category-body__links-item .title + * {
  margin-top: 0.5em;
}
.c-category-body__links-item .lead {
  font-weight: 500;
}
.c-category-body__links-item .lead + * {
  margin-top: 0.5em;
}
.c-category-body__links-item + .c-category-body__links-item {
  margin-top: 1.5rem;
}

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

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

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

.c-conversion__inner {
  width: 95%;
  max-width: 1200px;
  min-height: 350px;
  margin: 0 auto;
  padding: 50px 0;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .c-conversion__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c-header {
  display: grid;
  grid-template-areas: "persol icdl hamburger";
  grid-template-columns: 1fr 80px 60px;
  background-color: var(--main-c);
}
@media screen and (min-width: 768px) {
  .c-header {
    display: grid;
    grid-template-areas: "persol icdl nav";
    grid-template-columns: 30% 10% 1fr;
  }
}
@media screen and (min-width: 1024px) {
  .c-header {
    grid-template-columns: 360px 120px 1fr;
  }
}
@media screen and (min-width: 768px) {
  .c-header.is-scrolled .c-header__nav,
  .c-header.is-scrolled .c-header__nav-item,
  .c-header.is-scrolled .c-header__logo.-icdl img {
    height: 70px;
  }
  .c-header.is-scrolled .c-header__nav-ttl {
    font-size: 0.6875rem;
  }
}
@media screen and (min-width: 1280px) {
  .c-header.is-scrolled .c-header__nav-ttl {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 1440px) {
  .c-header.is-scrolled .c-header__nav-ttl {
    font-size: 1rem;
  }
}

.c-header__logo {
  display: grid;
  place-content: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  height: 100%;
  width: auto;
}
.c-header__logo img {
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
  height: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-header__logo.-persol {
  grid-area: persol;
  background-color: var(--white);
  padding: 0 5%;
  place-content: center start;
}
@media screen and (min-width: 768px) {
  .c-header__logo.-persol {
    place-content: center;
  }
}
.c-header__logo.-persol img {
  height: 32px;
}
@media screen and (min-width: 768px) {
  .c-header__logo.-persol img {
    height: 60px;
  }
}
.c-header__logo.-icdl {
  grid-area: icdl;
}
.c-header__logo.-icdl img {
  height: 52px;
}
@media screen and (min-width: 768px) {
  .c-header__logo.-icdl img {
    height: 84px;
  }
}

.c-header__nav {
  grid-area: nav;
  position: absolute;
  top: 100%;
  left: 0;
  height: 0;
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(7px);
          backdrop-filter: blur(7px);
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-header__nav {
    padding: 0 0 0 5%;
    height: 100%;
    position: relative;
    top: auto;
    left: auto;
    background-color: transparent;
    width: auto;
  }
}
.c-header__nav.is-open {
  height: 100vh;
}
.c-header__nav.is-open .c-header__nav-list,
.c-header__nav.is-open .c-header__nav-links {
  -webkit-transform: translate(0);
          transform: translate(0);
  opacity: 1;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  pointer-events: initial;
}
.c-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5%;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  opacity: 0;
  -webkit-transition: 0.1s;
  transition: 0.1s;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .c-header__nav-list {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -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;
    pointer-events: initial;
    -webkit-transform: translate(0);
            transform: translate(0);
    opacity: 1;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    gap: 0;
  }
}

.c-header__nav-item {
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-header__nav-item {
    height: 108px;
  }
  .c-header__nav-item:hover {
    background-color: var(--white);
  }
  .c-header__nav-item:hover .c-header__nav-ttl {
    color: var(--main-c);
  }
  .c-header__nav-item:hover.-hasChild .c-header__nav-ttl:after {
    border-color: var(--main-c);
  }
  .c-header__nav-item:hover .c-header__sub-list,
  .c-header__nav-item:hover .c-header__sub-list:before {
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (min-width: 768px) {
  .c-header__nav-item.-hasChild .c-header__nav-ttl:after {
    content: "";
    display: inline-block;
    height: 0.7em;
    width: 0.7em;
    border-bottom: 1px solid var(--white);
    border-left: 1px solid var(--white);
    -webkit-transform: rotate(-45deg) translate(60%, 20%);
            transform: rotate(-45deg) translate(60%, 20%);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}
.c-header__nav-item.-cta {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-header__nav-item.-cta {
    display: block;
    background-color: var(--accent-c);
  }
  .c-header__nav-item.-cta:hover .c-header__nav-ttl {
    color: var(--white);
  }
}
.c-header__nav-item.-cta .c-header__nav-ttl[tabindex="-1"] {
  cursor: not-allowed;
}
@media screen and (min-width: 768px) {
  .c-header__nav-item.-cta .c-header__nav-ttl:after {
    content: "";
    display: inline-block;
    height: 0.7em;
    width: 0.7em;
    border-top: 1px solid var(--white);
    border-right: 1px solid var(--white);
    -webkit-transform: rotate(45deg) translate(20%, -30%);
            transform: rotate(45deg) translate(20%, -30%);
  }
}

.c-header__nav-ttl {
  position: relative;
  display: block;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--main-c);
  border: none;
  padding: 0.5em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-header__nav-ttl {
    background-color: transparent;
    color: var(--white);
    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;
    height: 100%;
    font-size: 0.8125rem;
    padding: 0 1.5vw;
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
  }
}
@media screen and (min-width: 1280px) {
  .c-header__nav-ttl {
    font-size: 1rem;
    padding: 0 2vw;
  }
}
@media screen and (min-width: 1440px) {
  .c-header__nav-ttl {
    font-size: 1.125rem;
  }
}
.c-header__nav-ttl.is-active .icon {
  -webkit-transform: translateY(5px) rotate(-45deg);
          transform: translateY(5px) rotate(-45deg);
}
.c-header__nav-ttl .icon {
  position: absolute;
  right: 5%;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 0.7em;
  height: 0.7em;
  border-top: 1px solid var(--main-c);
  border-right: 1px solid var(--main-c);
  -webkit-transform: translateY(-5px) rotate(135deg);
          transform: translateY(-5px) rotate(135deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-header__nav-ttl .icon {
    display: none;
  }
}
.c-header__nav-ttl .dot {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .c-header__nav-ttl .dot {
    display: none;
  }
}
.c-header__nav-ttl br {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-header__nav-ttl br {
    display: block;
  }
}

.c-header__sub-list {
  -webkit-transition: 0.1s;
  transition: 0.1s;
  height: 0;
  opacity: 0;
  background-color: rgba(0, 159, 223, 0.2);
}
@media screen and (min-width: 768px) {
  .c-header__sub-list {
    height: auto;
    opacity: 1;
    background-color: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
    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;
    text-align: center;
  }
}
.c-header__sub-list.is-active {
  height: auto;
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-header__sub-list:before {
    content: "";
    width: 200vw;
    height: 48px;
    position: fixed;
    left: 0;
    background-color: var(--white);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: visibility 0.3s, opacity 0.3s;
    transition: visibility 0.3s, opacity 0.3s;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.c-header__sub-ttl {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  color: var(--main-c);
  font-weight: 500;
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .c-header__sub-ttl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1em;
    padding: 10px 30px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    position: relative;
    display: inline-block;
    text-decoration: none;
  }
  .c-header__sub-ttl::after {
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: var(--main-c);
    bottom: -2px;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    -webkit-transform-origin: right top;
            transform-origin: right top;
  }
  .c-header__sub-ttl:hover::after {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  .c-header__sub-ttl .arrow {
    height: 0.7em;
    width: 0.7em;
    display: inline-block;
    border-top: 1px solid var(--main-c);
    border-right: 1px solid var(--main-c);
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}

.c-header__hamburger {
  grid-area: hamburger;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  -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;
  color: var(--white);
  font-size: 0.625rem;
  cursor: pointer;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .c-header__hamburger {
    display: none;
  }
}
.c-header__hamburger:before {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
}
.c-header__hamburger span {
  display: block;
  width: 50%;
  height: 4px;
  background: var(--white);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 1;
}
.c-header__hamburger.is-active span:first-child {
  -webkit-transform: rotate(45deg) translate3D(12px, 9px, 0);
          transform: rotate(45deg) translate3D(12px, 9px, 0);
}
.c-header__hamburger.is-active span:last-child {
  -webkit-transform: rotate(-45deg) translate3D(5px, -3px, 0);
          transform: rotate(-45deg) translate3D(5px, -3px, 0);
}
.c-header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.c-header__nav-links {
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  opacity: 0;
  -webkit-transition: 0.1s;
  transition: 0.1s;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .c-header__nav-links {
    display: none;
  }
}
.c-header__nav-links .link {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  text-decoration: none;
  color: var(--main-c);
  font-size: 0.875rem;
  font-weight: 500;
}
.c-header__nav-links .link.-official {
  color: var(--white);
  background-color: var(--main-c);
  border-radius: 2rem;
  padding: 0 1em;
}
.c-header__nav-links .link + .link {
  margin-top: 0.5em;
}

.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-image--border {
  border: solid 1px var(--border-c);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c-interview__avatar {
  width: 14%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c-list-define__title {
  min-width: 150px;
  display: inline-block;
  padding: 8px 1em;
  font-size: 3.7333333333vw;
  text-align: center;
  position: relative;
  z-index: 1;
  color: var(--white);
}
.c-list-define__title::before {
  content: "";
  display: block;
  width: 200%;
  height: 100%;
  background-color: var(--main-c);
  position: absolute;
  top: 0;
  left: -100%;
  -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%;
  padding: 0.5em 1em;
  border-top: 1px solid var(--border-c);
}
@media screen and (min-width: 768px) {
  .c-list-define__cont {
    padding: 1em 2em;
  }
}

.c-list-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .c-list-image {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 15px;
  }
}

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

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

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

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

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

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

.c-main-visual {
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-main-visual {
    min-height: 50vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    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-media-full {
  width: 100%;
  text-align: center;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-media-full {
    min-height: 25vw;
    text-align: left;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

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

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

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

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

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

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

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

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

.c-media-full.-alfa {
  margin-bottom: 3%;
  position: relative;
  min-height: 30vw;
  text-align: left;
  overflow: unset;
}
@media screen and (min-width: 768px) {
  .c-media-full.-alfa {
    min-height: 25vw;
  }
}
.c-media-full.-alfa .c-media-full__cover {
  content: "";
  display: block;
  background-color: var(--main-c);
  width: 75%;
  height: 40vw;
  z-index: 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-media-full.-alfa .c-media-full__cover {
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    left: 0;
  }
}
.c-media-full.-alfa .c-media-full__image {
  width: 75%;
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: translate(5%, 10%);
          transform: translate(5%, 10%);
  -webkit-box-shadow: 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--reverse .c-media__wrap--bg::before {
  left: 0;
  right: auto;
}
@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: auto;
    right: 15vw;
  }
  .c-media--reverse .c-media__cont--float {
    margin: 30px -60px 0 0;
  }
}

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

.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: 0 0 30px 0;
}
@media screen and (min-width: 768px) {
  .c-media--bg .c-media__cont {
    padding: 70px 0;
  }
}
.c-media--bg .c-media__cont::before {
  content: "";
  display: inline-block;
  position: absolute;
  background-image: url("/icdl/assets/images/common/media-bg-sp.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right bottom;
  bottom: 0;
  right: 0;
  height: 94%;
  width: 95%;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .c-media--bg .c-media__cont::before {
    background-image: url("/icdl/assets/images/common/media-bg-pc.svg");
    height: 100%;
    width: 60%;
  }
}

.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 {
  margin-top: -15%;
}
@media screen and (min-width: 768px) {
  .c-media__wrap--bg {
    margin-top: -10%;
  }
}
.c-media__wrap--bg .c-image {
  max-width: 70%;
}
@media screen and (min-width: 768px) {
  .c-media__wrap--bg .c-image {
    margin: 0 5% 0 auto;
  }
}

.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 {
  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;
  margin-left: 10%;
  width: 85%;
}
@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__sub-title {
  color: var(--main-c);
}

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

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

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

@media screen and (min-width: 768px) {
  .c-media__title {
    font-size: 1.8rem;
  }
}
.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-modal__title {
  text-align: center;
  color: var(--main-c);
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .c-modal__title {
    font-size: 1.25rem;
  }
}

.c-modal__close {
  position: absolute;
  top: 5px;
  right: 5px;
  border-radius: 100%;
}

.c-modal__button {
  position: relative;
  display: block;
  border-radius: 6px;
  width: 100%;
  text-decoration: none;
  background-color: var(--main-c);
  border: 1px solid var(--main-c);
  color: var(--white);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 1em 1.5em 1em 1em;
}
@media screen and (min-width: 768px) {
  .c-modal__button {
    padding: 1em 2.5em 1em 1.5em;
  }
}
.c-modal__button:hover {
  background-color: var(--white);
  color: var(--main-c);
}
.c-modal__button:hover:after {
  -webkit-filter: invert(48%) sepia(31%) saturate(4769%) hue-rotate(167deg) brightness(95%) contrast(101%);
          filter: invert(48%) sepia(31%) saturate(4769%) hue-rotate(167deg) brightness(95%) contrast(101%);
}
.c-modal__button:after {
  content: "";
  position: absolute;
  right: 0.5em;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1rem;
  height: 1rem;
  background-image: url("/icdl/assets/images/icons/right-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  -webkit-filter: invert(99%) sepia(34%) saturate(1%) hue-rotate(274deg) brightness(117%) contrast(100%);
          filter: invert(99%) sepia(34%) saturate(1%) hue-rotate(274deg) brightness(117%) contrast(100%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-modal__button:after {
    right: 1.5em;
  }
}

.c-modal-red {
  color: var(--red);
}

.c-navigations {
  padding: 2rem 0;
}
@media screen and (min-width: 768px) {
  .c-navigations {
    padding: 4rem 0;
  }
}
.c-navigations .l-flex {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .c-navigations .l-flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.c-navigations-bg {
  padding: 2rem 0;
}
@media screen and (min-width: 768px) {
  .c-navigations-bg {
    padding: 4rem 0;
  }
}
@media screen and (min-width: 768px) {
  .c-navigations-bg .c-button {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    border: none;
    border-radius: 4rem;
    font-weight: normal;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .c-navigations-bg .c-button--lg {
    width: 48%;
    height: 100px;
    max-width: 582px;
  }
}
.c-navigations-bg.is-bg {
  background-image: url("/icdl/assets/images/common/pattern-bg-short-pc.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.c-navigations-bg.is-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-navigations-bg.is-pc {
    display: block;
  }
}

.c-navigations__item {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-navigations__item:hover {
  opacity: 0.5;
}

.c-news-item {
  border-bottom: 1px solid #D2D2D2;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .c-news-item {
    padding: 1.5rem 2rem;
  }
}
.c-news-item .link {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-areas: "date category" "title title";
  grid-template-columns: 70px auto;
  row-gap: 0.5em;
  -webkit-column-gap: 1.5em;
     -moz-column-gap: 1.5em;
          column-gap: 1.5em;
  text-decoration: none;
}
@media screen and (min-width: 1024px) {
  .c-news-item .link {
    grid-template-areas: "date category title";
    grid-template-columns: 75px 150px auto;
    -webkit-column-gap: 2em;
       -moz-column-gap: 2em;
            column-gap: 2em;
  }
}
.c-news-item .date {
  grid-area: date;
  font-weight: 500;
}
.c-news-item .category {
  grid-area: category;
}
.c-news-item .title {
  grid-area: title;
}

.c-note {
  color: #383D54;
  font-size: 0.875rem;
}

.c-pagenation {
  padding: 1rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-pagenation .link {
  display: grid;
  place-content: center;
  width: 26px;
  height: 26px;
  border-radius: 100%;
  font-family: "Open Sans", sans-serif;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-pagenation .link:hover {
  background-color: var(--main-c);
  color: var(--white);
}
.c-pagenation .link.is-active {
  background-color: var(--main-c);
  color: var(--white);
  cursor: default;
}

.c-pagetop {
  z-index: 4;
  display: grid;
  place-content: center;
  background-color: var(--main-c);
  position: fixed;
  right: 3%;
  border-radius: 100%;
  font-family: "Barlow", sans-serif;
  text-decoration: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  bottom: 120px;
}
@media screen and (min-width: 768px) {
  .c-pagetop {
    width: 60px;
    height: 60px;
    bottom: 50px;
  }
}
.c-pagetop svg {
  width: 60%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .c-pagetop svg {
    width: 100%;
  }
}

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

.c-profile-voice {
  position: relative;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 1024px) {
  .c-profile-voice {
    padding-bottom: 3rem;
  }
}

@media screen and (min-width: 1024px) {
  .c-profile-voice__reverse .c-profile-voice__bg {
    left: unset;
    right: 0;
  }
}
@media screen and (min-width: 1024px) {
  .c-profile-voice__reverse .c-profile-voice__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-left: auto;
  }
}

.c-profile-voice__bg {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
}
@media screen and (min-width: 1024px) {
  .c-profile-voice__bg {
    width: 90%;
    height: 100%;
    max-height: 380px;
    max-width: 1560px;
  }
}
.c-profile-voice__bg img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}

.c-profile-voice__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .c-profile-voice__container {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 1024px) {
  .c-profile-voice__container {
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 5%;
       -moz-column-gap: 5%;
            column-gap: 5%;
    max-width: 1050px;
  }
}

@media screen and (min-width: 768px) {
  .c-profile-voice__avatar {
    width: 60%;
    max-width: 600px;
    max-height: 450px;
  }
}

.c-profile-voice__img {
  -o-object-fit: contain;
     object-fit: contain;
}

.c-profile-voice__contents {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .c-profile-voice__contents {
    margin-top: 2.5rem;
  }
}
.c-profile-voice__contents .company-name {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .c-profile-voice__contents .company-name {
    font-size: 1.25rem;
  }
}
.c-profile-voice__contents .person-name {
  margin-top: 0.4rem;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .c-profile-voice__contents .person-name {
    font-size: 2.25rem;
  }
}
.c-profile-voice__contents .c-text {
  margin-top: 1rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.c-qa__cont {
  position: relative;
}

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

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

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

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

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

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

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

@keyframes fadeIn {
  0% {
    opacity: 0; /* 透明 */
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px); /* 上から表示 */
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
/*スクロールダウン全体の場所*/
.c-scrolldown {
  position: absolute;
  right: 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-center {
  position: relative;
  padding-bottom: 2rem;
}
.c-slider-center .swiper-button-next,
.c-slider-center .swiper-button-prev {
  top: 23vw;
}
@media screen and (min-width: 1333px) {
  .c-slider-center .swiper-button-next,
  .c-slider-center .swiper-button-prev {
    top: 19rem;
  }
}
.c-slider-center .swiper-button-next:after,
.c-slider-center .swiper-button-prev:after {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .c-slider-center .swiper-button-next:after,
  .c-slider-center .swiper-button-prev:after {
    font-size: 1.875rem;
  }
}
.c-slider-center .swiper-button-next {
  right: 0;
}
@media screen and (min-width: 768px) {
  .c-slider-center .swiper-button-next {
    -webkit-transform: translateX(-20%);
            transform: translateX(-20%);
  }
}
.c-slider-center .swiper-button-prev {
  left: 0;
}
@media screen and (min-width: 768px) {
  .c-slider-center .swiper-button-prev {
    -webkit-transform: translateX(20%);
            transform: translateX(20%);
  }
}
.c-slider-center .swiper {
  padding-bottom: 3rem;
}
.c-slider-center .swiper-pagination {
  top: 46vw;
  bottom: unset;
}
@media screen and (min-width: 1333px) {
  .c-slider-center .swiper-pagination {
    top: 38rem;
  }
}

.c-slider-center__main-title {
  position: relative;
  text-align: center;
  font-weight: medium;
  color: var(--white);
  padding: 4px;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .c-slider-center__main-title {
    padding: 8px;
    font-size: 1.5rem;
  }
}
.c-slider-center__main-title .note {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-slider-center__main-title .note {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    position: absolute;
    right: 1em;
    top: 0;
    bottom: 0;
    margin: auto;
    font-size: 0.875rem;
  }
}

.c-slider-center__slide {
  background-color: #E6E6EB;
  aspect-ratio: 2/1;
}

.c-slider-center__img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  margin-bottom: 3rem;
}

.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: 1024px) {
  .l-inner .c-slider-col__img {
    height: 137px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media screen and (min-width: 1024px) {
  .c-step-navigations.-sp {
    display: none;
  }
}
.c-step-navigations.-pc {
  display: none;
}
@media screen and (min-width: 1024px) {
  .c-step-navigations.-pc {
    display: block;
  }
}
.c-step-navigations .step,
.c-step-navigations .step-bg,
.c-step-navigations .arrow,
.c-step-navigations .title {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-step-navigations .step {
  font-weight: 700;
  font-size: 0.8125rem;
  background-color: var(--white);
  color: var(--main-c);
  border-radius: 1rem;
  padding: 0 10px;
}
@media screen and (min-width: 1024px) {
  .c-step-navigations .step {
    font-size: 0.875rem;
  }
}
.c-step-navigations .title {
  letter-spacing: -0.01em;
  color: var(--white);
}
@media screen and (min-width: 1024px) {
  .c-step-navigations .title {
    line-height: 1.5;
    text-align: center;
    font-size: 1.125rem;
  }
}
.c-step-navigations .title br {
  display: none;
}
@media screen and (min-width: 1024px) {
  .c-step-navigations .title br {
    display: block;
  }
}

.c-step-navigations__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  text-decoration: none;
  background-image: url("/icdl/assets/images/common/button-bg.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 10px 1.7em 10px 10px;
  border-radius: 10px;
}
.c-step-navigations__link + .c-step-navigations__link {
  margin-top: 0.5rem;
}
.c-step-navigations__link:after {
  content: "";
  position: absolute;
  right: 0.7em;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0.7em;
  height: 0.7em;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
}
@media screen and (min-width: 1024px) {
  .c-step-navigations__link:hover .arrow {
    fill: var(--white);
  }
  .c-step-navigations__link:hover .arrow-border {
    fill: var(--main-c);
  }
  .c-step-navigations__link:hover .step {
    fill: var(--white);
  }
  .c-step-navigations__link:hover .step-bg,
  .c-step-navigations__link:hover .title {
    color: var(--main-c);
    fill: var(--main-c);
  }
}

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

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

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

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

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

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

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

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

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

.c-table-col2--icon .c-table-col2__head {
  position: relative;
  display: block;
  text-align: left;
  padding-left: 1em;
}
@media screen and (min-width: 768px) {
  .c-table-col2--icon .c-table-col2__head {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.c-table-col2--icon .c-table-col2__head th {
  padding: 3px 0;
  width: auto;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .c-table-col2--icon .c-table-col2__head th {
    font-size: 1.5rem;
  }
}
.c-table-col2--icon .c-table-col2__head .triangle {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  right: 0;
  bottom: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
@media screen and (min-width: 768px) {
  .c-table-col2--icon .c-table-col2__head .triangle {
    border-width: 42px 0 0 32px;
  }
}

.c-table-col2__head {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-table-col2__head {
    display: table-header-group;
  }
}
@media screen and (min-width: 768px) {
  .c-table-col2__head tr {
    display: inherit;
  }
}
.c-table-col2__head th,
.c-table-col2__head td {
  padding: 0.4em 1.5em;
  color: var(--white);
  text-align: left;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .c-table-col2__head th {
    width: 18em;
  }
}
@media screen and (min-width: 1024px) {
  .c-table-col2__head th {
    width: 23em;
  }
}

.c-table-col2__body {
  background-color: var(--white);
  border-top: 1px solid var(--border-c);
  border-bottom: 1px solid var(--border-c);
  border-left: 1px solid var(--border-c);
  border-right: 1px solid var(--border-c);
}
@media screen and (min-width: 768px) {
  .c-table-col2__body {
    border-left: none;
    border-right: none;
  }
}
.c-table-col2__body th {
  font-weight: 500;
}

.c-table-col2__icon {
  display: grid;
  place-content: center;
  border-radius: 100%;
  background-color: var(--white);
  width: 50px;
  height: 50px;
}
@media screen and (min-width: 768px) {
  .c-table-col2__icon {
    width: 70px;
    height: 70px;
  }
}

.c-table-col2__icon-image {
  width: 80%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .c-table-col2__icon-image {
    width: 100%;
  }
}

.c-table-col2__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: var(--white);
}
@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%;
  height: 100%;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .c-table-col2__title,
  .c-table-col2__cont {
    min-height: 110px;
  }
}

.c-table-col2__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
  padding: 1em 1.5em 0;
}
@media screen and (min-width: 768px) {
  .c-table-col2__title {
    padding: 1em 1.5em;
    width: 18em;
  }
}
@media screen and (min-width: 1024px) {
  .c-table-col2__title {
    width: 23em;
  }
}

.c-table-col2__cont {
  padding: 0.5em 1.5em 1em;
}
@media screen and (min-width: 768px) {
  .c-table-col2__cont {
    padding: 1em 1.5em;
  }
}

.c-table {
  overflow-x: auto;
}
.c-table.-scrollable:before, .c-table.-scrollable:after {
  display: block;
  position: absolute;
  text-align: center;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  opacity: 1;
}
.c-table.-scrollable:before {
  content: "SWIPE";
  color: var(--white);
  line-height: 9rem;
  height: 6rem;
  width: 6rem;
  border-radius: 100%;
  background-color: var(--main-c);
  -webkit-filter: opacity(0.8);
          filter: opacity(0.8);
}
.c-table.-scrollable:after {
  content: "";
  height: 3rem;
  width: 3rem;
  background-image: url("/icdl/assets/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(--main-c);
  color: white;
}

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

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

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

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

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

.c-text {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .c-text {
    font-size: 1rem;
  }
}
.c-text.-md {
  line-height: 1.8;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .c-text.-md {
    font-size: 1.125rem;
  }
}

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

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

.c-title-bg-double__container {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-height: 300px;
}
@media screen and (min-width: 1024px) {
  .c-title-bg-double__container {
    min-height: 500px;
    width: 50%;
  }
}

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

.c-title-bg-double__inner {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 0;
}
@media screen and (min-width: 1024px) {
  .c-title-bg-double__inner {
    width: 100%;
    margin: 0 0 0 auto;
    padding: 30px 20px;
    text-align: left;
  }
}
@media screen and (min-width: 1280px) {
  .c-title-bg-double__inner {
    width: 82%;
    margin: 0 0 0 auto;
    padding: 30px 70px 30px 20px;
    text-align: left;
  }
}

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

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

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

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

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

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

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

.c-title-bg-half {
  width: 100%;
  min-height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  color: var(--white);
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-title-bg-half {
    min-height: 500px;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

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

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

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

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

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

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

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

.c-title-bg-half--white .c-title-bg-half__cover {
  background: rgba(255, 255, 255, 0.6);
}
.c-title-bg-half--white .c-title-bg-half__inner {
  color: #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: 40px 0;
  }
}

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

.c-title-bg--white {
  color: #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: 1200px;
  margin: 0 auto;
  z-index: 1;
}

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

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

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

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

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

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

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

.c-title-h1 {
  text-align: center;
  height: 132px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("/icdl/assets/images/common/title-h1-sp.svg");
}
@media screen and (min-width: 768px) {
  .c-title-h1 {
    height: 188px;
    background-image: url("/icdl/assets/images/common/title-h1-pc.svg");
  }
}
.c-title-h1 .l-inner {
  height: 100%;
}

.c-title-h1__main {
  display: grid;
  place-content: center;
  height: 100%;
  color: var(--black);
  line-height: 1;
  letter-spacing: 0.05rem;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .c-title-h1__main {
    font-size: 2.5rem;
  }
}

.c-title-h1__sub {
  font-size: 0.875rem;
  color: var(--main-c);
  margin-top: 0.8em;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .c-title-h1__sub {
    font-size: 1.25rem;
  }
}

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

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

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

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

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

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

.c-title-h2-container {
  border-radius: 20px;
  padding: 1em;
}
@media screen and (min-width: 768px) {
  .c-title-h2-container {
    padding: 2em;
  }
}

.c-title-h2-container__main {
  text-align: center;
}

.c-title-h2-container__text {
  margin-top: 1em;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .c-title-h2-container__text {
    text-align: center;
    font-size: 1.125rem;
  }
}

.c-title-h2-step__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .c-title-h2-step__main {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.c-title-h2-step__main .number {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--white);
  border-radius: 22px;
  font-size: 1rem;
  padding: 3px 1em;
}
@media screen and (min-width: 768px) {
  .c-title-h2-step__main .number {
    font-size: 1.25rem;
  }
}

.c-title-h2--center {
  text-align: center;
}

.c-title-h2--right {
  text-align: right;
}

@media screen and (min-width: 768px) {
  .c-title-h3-recommend {
    display: grid;
    grid-template-columns: -webkit-max-content 1fr;
    grid-template-columns: max-content 1fr;
    -webkit-column-gap: 3em;
       -moz-column-gap: 3em;
            column-gap: 3em;
  }
}

.c-title-h3-recommend__main {
  display: grid;
  place-content: center;
  border-radius: 20px;
  text-align: center;
  line-height: 1.5;
  padding: 1em;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .c-title-h3-recommend__main {
    padding: 0 2.5em;
    font-size: 2rem;
  }
}

.c-title-h3-recommend__list {
  padding-left: 20px;
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  .c-title-h3-recommend__list {
    margin-top: 0;
  }
}

.c-title-h3-recommend__item {
  position: relative;
  font-weight: 500;
  font-size: 1.25rem;
  border-left: 1px solid #D2D2D2;
  border-bottom: 1px solid #D2D2D2;
  padding: 0.5em 1em;
}
@media screen and (min-width: 768px) {
  .c-title-h3-recommend__item {
    padding: 1em 2em;
  }
}
.c-title-h3-recommend__item:before, .c-title-h3-recommend__item:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  left: -20px;
  top: 25px;
}
.c-title-h3-recommend__item:before {
  border-color: transparent #D2D2D2 transparent transparent;
  border-width: 0 20px 16px 0;
}
.c-title-h3-recommend__item:after {
  border-color: transparent #F0F2F5 transparent transparent;
  border-width: 0 18px 15px 0;
  top: 26px;
  left: -17px;
}
.c-title-h3-recommend__item + .c-title-h3-recommend__item {
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  .c-title-h3-recommend__item + .c-title-h3-recommend__item {
    margin-top: 2em;
  }
}

.c-title-h3 {
  padding-bottom: 25px;
  text-align: center;
  position: relative;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .c-title-h3 {
    font-size: 22px;
  }
}
.c-title-h3::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 2px;
  height: 20px;
  background-color: var(--main-c);
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.c-title-h4 {
  padding-top: 10px;
  position: relative;
}
.c-title-h4::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 3px;
  background-color: var(--main-c);
}

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

.c-title-h6-voice {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.c-title-h6-voice__main {
  position: relative;
  padding: 0 0 1rem;
}
@media screen and (min-width: 768px) {
  .c-title-h6-voice__main {
    padding: 0 1.5rem 1.5rem;
    font-size: 1.125rem;
  }
}
.c-title-h6-voice__main:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #D2D2D2;
}
.c-title-h6-voice__main:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 10%;
  height: 1px;
  background-color: #707070;
}

.c-title-h6-voice__text {
  padding: 1.5rem 0 0;
}
@media screen and (min-width: 768px) {
  .c-title-h6-voice__text {
    padding: 2rem 1.5rem 0;
  }
}

.c-title-h6 {
  padding-left: 20px;
  position: relative;
}
.c-title-h6::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 1px;
  position: absolute;
  top: 55%;
  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-sub {
  font-size: 16px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .c-title-sub {
    font-size: 18px;
  }
}

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

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

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

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

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

.p-about-section__title {
  position: relative;
  text-align: center;
  line-height: 1;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-about-section__title {
    font-size: 2.875rem;
  }
}
.p-about-section__title .eng {
  color: var(--main-c);
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-about-section__title .eng {
    font-size: 1.75rem;
  }
}

/*=============================
ICDLとは
=============================*/
.p-about-mv {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 0;
  text-align: center;
  background-image: url("/icdl/assets/images/about/about_mv_bg-pc.svg");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
.p-about-mv .l-inner {
  z-index: 1;
}

.p-about-mv__h2 {
  position: relative;
  z-index: 2;
  line-height: 1.3;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-about-mv__h2 {
    font-size: 2rem;
  }
}
.p-about-mv__h2 .big {
  line-height: 1;
  font-size: 1.2em;
}
@media screen and (min-width: 768px) {
  .p-about-mv__h2 .big {
    font-size: 1.5em;
  }
}
.p-about-mv__h2 .anim-text {
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.p-about-mv__h2 .anim-text:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  height: 30%;
  width: 100%;
  background-color: #FFEFCF;
  z-index: -1;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-animation: leftInRight 0.6s forwards ease-in-out;
          animation: leftInRight 0.6s forwards ease-in-out;
}
@-webkit-keyframes leftInRight {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes leftInRight {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.p-about-mv__text {
  position: relative;
  z-index: 2;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2rem;
}

.p-about-mv__h3 {
  position: relative;
  margin-top: 2rem;
}
.p-about-mv__h3 .jpn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transform: translateY(20%);
          transform: translateY(20%);
  font-size: 8vw;
}
@media screen and (min-width: 768px) {
  .p-about-mv__h3 .jpn {
    -webkit-transform: translateY(40%);
            transform: translateY(40%);
    font-size: 2.5rem;
  }
}
.p-about-mv__h3 .eng {
  margin-left: auto;
  margin-right: auto;
}

.p-about-mv__cloud-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.p-about-mv__cloud {
  position: absolute;
  z-index: -1;
  display: none;
  opacity: 0;
  -webkit-filter: blur(20px);
          filter: blur(20px);
  scale: 0.5;
}
@media screen and (min-width: 768px) {
  .p-about-mv__cloud {
    display: block;
    -webkit-animation: blurUp 0.5s forwards ease-in-out;
            animation: blurUp 0.5s forwards ease-in-out;
  }
}
.p-about-mv__cloud:nth-child(1) {
  top: 11%;
  right: 20%;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.p-about-mv__cloud:nth-child(2) {
  top: 25%;
  left: 12%;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.p-about-mv__cloud:nth-child(3) {
  top: 24%;
  right: 13%;
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
@-webkit-keyframes blurUp {
  from {
    opacity: 0;
    -webkit-filter: blur(20px);
            filter: blur(20px);
    scale: 0.5;
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
    scale: 1;
  }
}
@keyframes blurUp {
  from {
    opacity: 0;
    -webkit-filter: blur(20px);
            filter: blur(20px);
    scale: 0.5;
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
    scale: 1;
  }
}

.p-about-mv__contents {
  position: relative;
  max-width: 1600px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem 0 38%;
}
@media screen and (min-width: 768px) {
  .p-about-mv__contents {
    padding: 2rem 0 23rem;
  }
}
@media screen and (min-width: 1440px) {
  .p-about-mv__contents {
    padding: 2rem 3% 8rem;
  }
}
.p-about-mv__contents .contents-human {
  position: absolute;
  bottom: 0;
}
@media screen and (min-width: 1440px) {
  .p-about-mv__contents .contents-human {
    bottom: 10%;
  }
}
.p-about-mv__contents .contents-human.-man {
  left: 0;
  width: 45%;
}
@media screen and (min-width: 1024px) {
  .p-about-mv__contents .contents-human.-man {
    width: auto;
    left: 20%;
  }
}
@media screen and (min-width: 1440px) {
  .p-about-mv__contents .contents-human.-man {
    left: 0;
    -webkit-transform: translate(0, 20%);
            transform: translate(0, 20%);
  }
}
.p-about-mv__contents .contents-human.-woman {
  right: 12%;
  width: 30%;
}
@media screen and (min-width: 1024px) {
  .p-about-mv__contents .contents-human.-woman {
    width: auto;
    right: 20%;
  }
}
@media screen and (min-width: 1440px) {
  .p-about-mv__contents .contents-human.-woman {
    right: 10%;
    -webkit-transform: translate(0, 20%);
            transform: translate(0, 20%);
  }
}
.p-about-mv__contents .contents-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 2em;
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-about-mv__contents .contents-list {
    row-gap: 3em;
    -webkit-column-gap: 5%;
       -moz-column-gap: 5%;
            column-gap: 5%;
  }
}
@media screen and (min-width: 1440px) {
  .p-about-mv__contents .contents-list {
    -webkit-column-gap: 3%;
       -moz-column-gap: 3%;
            column-gap: 3%;
  }
}
.p-about-mv__contents .contents-list .contents-item {
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  opacity: 0;
}
.p-about-mv__contents .contents-list.-view .contents-item {
  opacity: 1;
}
.p-about-mv__contents .contents-item {
  display: grid;
  place-content: center;
  position: relative;
  border: solid;
  border-image-slice: 20 fill;
  border-image-width: 3px;
  border-image-outset: 0 0 20px;
  line-height: 1;
  padding: 1em;
  width: 45%;
  font-size: 0.875rem;
}
@media screen and (min-width: 576px) {
  .p-about-mv__contents .contents-item {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .p-about-mv__contents .contents-item {
    padding: 0;
    height: 150px;
    max-width: 290px;
    font-size: 1.5rem;
    -webkit-animation: fuwafuwa 5s infinite ease-in-out;
            animation: fuwafuwa 5s infinite ease-in-out;
  }
}
@media screen and (min-width: 1440px) {
  .p-about-mv__contents .contents-item {
    width: 22%;
  }
}
@-webkit-keyframes fuwafuwa {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
@keyframes fuwafuwa {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
.p-about-mv__contents .contents-item strong {
  font-weight: normal;
  color: var(--main-c);
  font-size: 1rem;
}
@media screen and (min-width: 576px) {
  .p-about-mv__contents .contents-item strong {
    font-size: 5.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-about-mv__contents .contents-item strong {
    font-size: 2rem;
  }
}
.p-about-mv__contents .contents-item .text {
  line-height: 1.2;
}
.p-about-mv__contents .contents-item .number {
  font-size: 1.5em;
  font-weight: bold;
  font-family: "Zen Kaku Gothic New";
}
.p-about-mv__contents .contents-item .icon {
  position: absolute;
  margin: auto;
  max-width: 50px;
  max-height: 50px;
}
@media screen and (min-width: 576px) {
  .p-about-mv__contents .contents-item .icon {
    max-width: 80px;
    max-height: 80px;
  }
}
@media screen and (min-width: 1024px) {
  .p-about-mv__contents .contents-item .icon {
    max-width: unset;
    max-height: unset;
  }
}
.p-about-mv__contents .contents-item:nth-child(1) {
  border-image-source: url("/icdl/assets/images/common/balloon01.svg");
}
.p-about-mv__contents .contents-item:nth-child(1) .icon {
  left: 0;
  top: -5%;
  -webkit-transform: translateX(-33%);
          transform: translateX(-33%);
}
.p-about-mv__contents .contents-item:nth-child(2) {
  border-image-source: url("/icdl/assets/images/common/balloon02.svg");
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
  -webkit-animation-duration: 4s;
          animation-duration: 4s;
  margin-top: -0.5rem;
}
@media screen and (min-width: 768px) {
  .p-about-mv__contents .contents-item:nth-child(2) {
    margin-top: 1rem;
  }
}
.p-about-mv__contents .contents-item:nth-child(2) .icon {
  right: 0;
  top: 0;
  -webkit-transform: translate(-15%, -20%);
          transform: translate(-15%, -20%);
}
.p-about-mv__contents .contents-item:nth-child(3) {
  border-image-source: url("/icdl/assets/images/common/balloon03.svg");
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-duration: 6s;
          animation-duration: 6s;
}
.p-about-mv__contents .contents-item:nth-child(3) .icon {
  right: 0;
  top: 0;
  -webkit-transform: translate(35%, -10%);
          transform: translate(35%, -10%);
}
.p-about-mv__contents .contents-item:nth-child(4) {
  border-image-source: url("/icdl/assets/images/common/balloon04.svg");
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  margin-top: -0.5rem;
}
@media screen and (min-width: 768px) {
  .p-about-mv__contents .contents-item:nth-child(4) {
    margin-top: 1.5rem;
  }
}
.p-about-mv__contents .contents-item:nth-child(4) .icon {
  right: 0;
  bottom: 0;
  -webkit-transform: translate(58%, 0);
          transform: translate(58%, 0);
}
.p-about-mv__contents .contents-item:nth-child(5) {
  border-image-source: url("/icdl/assets/images/common/balloon05.svg");
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
}
@media screen and (min-width: 768px) {
  .p-about-mv__contents .contents-item:nth-child(5) {
    margin-top: 1rem;
  }
}
.p-about-mv__contents .contents-item:nth-child(5) .icon {
  right: 0;
  top: 0;
  -webkit-transform: translate(30%, -20%);
          transform: translate(30%, -20%);
}
.p-about-mv__contents .contents-item:nth-child(6) {
  border-image-source: url("/icdl/assets/images/common/balloon06.svg");
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
  -webkit-animation-duration: 6s;
          animation-duration: 6s;
  margin-top: -0.5rem;
}
@media screen and (min-width: 768px) {
  .p-about-mv__contents .contents-item:nth-child(6) {
    margin-top: 0;
  }
}
.p-about-mv__contents .contents-item:nth-child(6) .icon {
  width: 26px;
  height: 33px;
  left: 0;
  top: 0;
  -webkit-transform: translate(30%, -20%);
          transform: translate(30%, -20%);
}
@media screen and (min-width: 576px) {
  .p-about-mv__contents .contents-item:nth-child(6) .icon {
    width: auto;
    height: auto;
  }
}

.p-about-mv__description {
  background-color: var(--white);
  padding: 3em 1.5em;
}
@media screen and (min-width: 768px) {
  .p-about-mv__description {
    padding: 2em 4em;
  }
}
.p-about-mv__description .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  color: var(--main-c);
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-about-mv__description .title {
    font-size: 2.875rem;
  }
}
.p-about-mv__description .title img {
  width: 33px;
  height: 33px;
}
@media screen and (min-width: 768px) {
  .p-about-mv__description .title img {
    width: auto;
    height: auto;
  }
}
.p-about-mv__description .text {
  margin-top: 1em;
  font-size: 1rem;
  text-align: left;
}
.p-about-mv__description .text strong {
  text-decoration: underline;
  font-weight: bold;
  font-size: 1.5em;
}

/*=============================
ICDLの特長
=============================*/
.p-about-point {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}
@media screen and (min-width: 768px) {
  .p-about-point {
    padding: 8rem 0 12rem;
  }
}
.p-about-point::before {
  content: "";
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #E5F7FE;
  height: 100%;
  width: 120%;
  -webkit-transform: translateX(-10%);
          transform: translateX(-10%);
  border-bottom-left-radius: 1000px 300px;
  border-bottom-right-radius: 1000px 300px;
}
@media screen and (min-width: 768px) {
  .p-about-point::before {
    border-bottom-left-radius: 1200px 800px;
    border-bottom-right-radius: 1200px 800px;
  }
}
.p-about-point .l-inner {
  max-width: 1500px;
}

.p-about-point__container {
  margin-top: 5rem;
}

.p-about-point__list-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 4rem;
}
@media screen and (min-width: 1280px) {
  .p-about-point__list-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 10%;
       -moz-column-gap: 10%;
            column-gap: 10%;
  }
}
@media screen and (min-width: 1280px) {
  .p-about-point__list-item:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.p-about-point__list-item:nth-child(even) .item-body {
  padding-left: 10%;
  padding-right: 8%;
}
@media screen and (min-width: 768px) {
  .p-about-point__list-item:nth-child(even) .item-body {
    padding-left: 3%;
  }
}
.p-about-point__list-item:nth-child(even) .item-body::before {
  right: 0;
  left: unset;
  border-radius: 0 40px 40px 0;
}
.p-about-point__list-item:nth-child(even) .point {
  left: 10%;
}
@media screen and (min-width: 1280px) {
  .p-about-point__list-item:nth-child(even) .point {
    right: 18%;
    text-align: right;
  }
}
.p-about-point__list-item + .p-about-point__list-item {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-about-point__list-item + .p-about-point__list-item {
    margin-top: 10rem;
  }
}
.p-about-point__list-item.-view .item-head {
  opacity: 1;
  -webkit-transform: translate(0);
          transform: translate(0);
}
.p-about-point__list-item.-view .item-body .point {
  opacity: 1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-about-point__list-item.-view .item-body .contents-wrapper {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.p-about-point__list-item .item-head {
  opacity: 0;
  -webkit-transform: translateY(5%);
          transform: translateY(5%);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
@media screen and (min-width: 1280px) {
  .p-about-point__list-item .item-head {
    -webkit-transition-delay: 0.5s;
            transition-delay: 0.5s;
  }
}
.p-about-point__list-item .item-body .point {
  opacity: 0;
  -webkit-transform: translateY(-45%);
          transform: translateY(-45%);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
@media screen and (min-width: 1280px) {
  .p-about-point__list-item .item-body .point {
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }
}
.p-about-point__list-item .item-body .contents-wrapper {
  opacity: 0;
  -webkit-transform: translateY(5%);
          transform: translateY(5%);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
@media screen and (min-width: 1280px) {
  .p-about-point__list-item .item-body .contents-wrapper {
    -webkit-transition-delay: 0.3s;
            transition-delay: 0.3s;
  }
}
.p-about-point__list-item .item-body {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding-left: 10%;
}
@media screen and (min-width: 1280px) {
  .p-about-point__list-item .item-body {
    min-height: 372px;
    padding-left: 8%;
    width: 45%;
  }
}
.p-about-point__list-item .item-body:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background-color: var(--white);
  border-radius: 40px 0 0 40px;
  -webkit-box-shadow: 0 3px 19px #C9E5F8;
          box-shadow: 0 3px 19px #C9E5F8;
  z-index: 0;
}
.p-about-point__list-item .point {
  position: absolute;
  top: 0;
  left: 10%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: var(--main-c);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2.25rem;
}
@media screen and (min-width: 768px) {
  .p-about-point__list-item .point {
    font-size: 3.625rem;
  }
}
@media screen and (min-width: 1280px) {
  .p-about-point__list-item .point {
    left: 18%;
  }
}
.p-about-point__list-item .contents-wrapper {
  position: relative;
  padding: 3rem 0;
}
.p-about-point__list-item .contents-wrapper .title {
  line-height: 1.5;
  font-size: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-about-point__list-item .contents-wrapper .title {
    font-size: 2.25rem;
  }
}
.p-about-point__list-item .contents-wrapper .text {
  margin-top: 1rem;
  font-size: 1rem;
}
.p-about-point__list-item .contents-wrapper .button {
  display: inline-block;
  padding: 0.8rem 2rem;
  text-decoration: none;
  color: var(--white);
  background-color: #003C71;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 40px;
  font-size: 1.375rem;
}
@media screen and (min-width: 768px) {
  .p-about-point__list-item .contents-wrapper .button {
    font-size: 1.5rem;
  }
}

/*=============================
5つのプログラム
=============================*/
.p-about-program {
  padding: 3rem 0 0;
}
@media screen and (min-width: 768px) {
  .p-about-program {
    padding: 5rem 0 0;
  }
}

.p-about-program__text {
  max-width: 970px;
  margin-top: 2rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
}
.p-about-program__text strong {
  color: var(--main-c);
  text-decoration: underline;
  font-size: 1.5em;
  font-weight: normal;
  line-height: 1.5;
}

.p-about-program__programs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 2rem;
  -webkit-column-gap: 5%;
     -moz-column-gap: 5%;
          column-gap: 5%;
  row-gap: 2rem;
}
@media screen and (min-width: 576px) {
  .p-about-program__programs {
    -webkit-column-gap: 7%;
       -moz-column-gap: 7%;
            column-gap: 7%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-about-program__programs-item {
  width: 47%;
}
@media screen and (min-width: 576px) {
  .p-about-program__programs-item {
    width: auto;
  }
}
.p-about-program__programs-item img {
  margin-left: auto;
  margin-right: auto;
}

.p-about-program__module-title {
  margin-top: 5rem;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 1px;
  font-size: 1.3125rem;
}
@media screen and (min-width: 768px) {
  .p-about-program__module-title {
    font-size: 2.25rem;
  }
}
.p-about-program__module-title .border {
  margin-top: 0.5rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
}

.p-about-program__module-container {
  position: relative;
  padding: 2rem 0 6rem;
}
.p-about-program__module-container:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 28%;
  background-image: url("/icdl/assets/images/about/about_module_bg2.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  .p-about-program__module-container:before {
    height: 60%;
  }
}
.p-about-program__module-container .l-inner {
  max-width: 1500px;
}

.p-about-program__modules {
  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: 4rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .p-about-program__modules {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-about-program__module-button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 582px;
  border-radius: 4rem;
  margin-top: 4rem;
  margin-left: auto;
  margin-right: auto;
  color: var(--main-c);
  background-color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  height: 60px;
}
@media screen and (min-width: 768px) {
  .p-about-program__module-button {
    height: 100px;
    font-size: 1.25rem;
  }
}
.p-about-program__module-button:after {
  content: "";
  position: absolute;
  right: 7%;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0.6em;
  height: 0.6em;
  border-top: 3px solid var(--main-c);
  border-right: 3px solid var(--main-c);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/*=============================
ICDLの実績
=============================*/
.p-about-achievement {
  padding: 5rem 0;
  background-color: var(--bg-c);
}

.p-about-achievement__container {
  position: relative;
  padding: 2rem;
  margin-top: 3rem;
}
@media screen and (min-width: 1024px) {
  .p-about-achievement__container {
    padding: 4rem 5rem;
  }
}
.p-about-achievement__container .l-flex {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .p-about-achievement__container .l-flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.p-about-achievement__container .l-flex img {
  height: auto;
  margin: auto;
}
.p-about-achievement__container .c-box-border:before, .p-about-achievement__container .c-box-border:after {
  background-color: var(--bg-c);
}

.p-about-achievement__text-wrapper {
  border-top: 1px solid var(--border-c);
  padding-top: 2rem;
}
@media screen and (min-width: 1024px) {
  .p-about-achievement__text-wrapper {
    border-top: none;
    border-left: 1px solid var(--border-c);
    padding-left: 2rem;
  }
}

.p-about-achievement__image-wrapper {
  width: 100%;
  margin-top: 2rem;
  overflow-x: auto;
}
.p-about-achievement__image-wrapper img {
  min-width: 500px;
}

/*=============================
こんな悩みをお持ちではありませんか？
=============================*/
.p-about-problem {
  background-color: var(--bg-c-2);
  color: var(--white);
  padding: 4rem 0;
}
@media screen and (min-width: 768px) {
  .p-about-problem {
    padding: 8rem 0;
  }
}

.p-about-problem__title {
  text-align: center;
  letter-spacing: 1px;
  font-size: clamp(1.325rem, 1.0568rem + 2.4242vw, 2.875rem);
}
@media screen and (min-width: 768px) {
  .p-about-problem__title {
    font-size: 2.875rem;
  }
}

.p-about-problem__item {
  max-width: 365px;
}
.p-about-problem__item .text {
  line-height: 2;
  text-align: center;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-about-problem__item .text {
    text-align: left;
    font-size: 1.25rem;
  }
}

.p-about-problem__sub-title {
  border: 2px solid var(--white);
  border-radius: 6rem;
  text-align: center;
  padding: 0.3em 1.5em;
  margin-left: auto;
  margin-right: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-about-problem__sub-title {
    font-size: 2.875rem;
  }
}
.p-about-problem__sub-title font {
  color: #F9FF5A;
}

.p-about-problem__text {
  max-width: 970px;
  margin-left: auto;
  margin-right: auto;
}

/*=============================
ICDLのメリット
=============================*/
.p-about-merit {
  background-color: var(--bg-c-2);
}
.p-about-merit .l-inner {
  max-width: 1840px;
}
@media screen and (min-width: 768px) {
  .p-about-merit .l-inner {
    width: 95%;
  }
}

.p-about-merit__container {
  background-color: var(--white);
  padding: 2rem 0;
}
@media screen and (min-width: 768px) {
  .p-about-merit__container {
    padding: 4rem 0;
  }
}

/*===== Vertical Timeline =====*/
#conference-timeline {
  position: relative;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}

#conference-timeline .conference-center-line {
  position: absolute;
  width: 6px;
  height: 65%;
  top: 0;
  margin: auto;
  background: -webkit-radial-gradient(circle farthest-side, var(--main-c), var(--main-c) 40%, transparent 40%, transparent);
  background: radial-gradient(circle farthest-side, var(--main-c), var(--main-c) 40%, transparent 40%, transparent);
  background-size: 6px 6px;
  margin-left: 0;
  left: 3.5rem;
}
@media screen and (min-width: 576px) {
  #conference-timeline .conference-center-line {
    left: 5.6rem;
    height: 70%;
  }
}
@media screen and (min-width: 1024px) {
  #conference-timeline .conference-center-line {
    width: 14px;
    bottom: 0;
    margin-left: -2px;
    left: 50%;
    background-size: 14px 14px;
    -webkit-transform: translateX(-4px);
            transform: translateX(-4px);
  }
}

.timeline-article {
  width: 90%;
  height: 100%;
  position: relative;
  overflow: hidden;
  margin: 40px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.timeline-article:nth-child(even) {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (min-width: 1024px) {
  .timeline-article:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.timeline-article:nth-child(even) h5 {
  max-width: 575px;
}
@media screen and (min-width: 1024px) {
  .timeline-article {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.timeline-article .content-left-container,
.timeline-article .content-right-container {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .timeline-article .content-left-container,
  .timeline-article .content-right-container {
    max-width: 44%;
  }
}

.timeline-article .content-left,
.timeline-article .content-right {
  position: relative;
  padding: 10px 25px;
  max-width: 100%;
  width: auto;
  float: none;
  margin-left: 16%;
  min-height: 53px;
}
@media screen and (min-width: 1024px) {
  .timeline-article .content-left,
  .timeline-article .content-right {
    margin-left: 0;
    padding: 27px 25px;
  }
}

.timeline-article h5 {
  line-height: 1.5;
  letter-spacing: 0;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .timeline-article h5 {
    max-width: 576px;
    font-size: 2.25rem;
  }
}

.timeline-article p {
  padding: 0;
  position: relative;
  margin-top: 1rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .timeline-article p {
    line-height: 2;
    max-width: 559px;
  }
}

@media screen and (min-width: 1024px) {
  .timeline-article .content-left-container {
    float: left;
  }
}

@media screen and (min-width: 1024px) {
  .timeline-article .content-right-container {
    float: right;
  }
}

.timeline-article .meta {
  display: grid;
  place-content: center;
  position: absolute;
  top: 0;
  margin: auto;
  color: #fff;
  border-radius: 100%;
  background: var(--main-c);
  width: 50px;
  height: 50px;
  margin-left: 0;
  left: 1rem;
}
@media screen and (min-width: 576px) {
  .timeline-article .meta {
    width: 80px;
    height: 80px;
    left: 1.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .timeline-article .meta {
    bottom: 0;
    width: 123px;
    height: 123px;
    margin-left: -61px;
    left: 50%;
  }
}

.timeline-article .meta .text,
.timeline-article .meta .number {
  text-align: center;
}

.timeline-article .meta .text {
  font-size: 0.75rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .timeline-article .meta .text {
    font-size: 1.125rem;
  }
}

.timeline-article .meta .number {
  font-weight: bold;
  line-height: 1;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1rem;
}
@media screen and (min-width: 1024px) {
  .timeline-article .meta .number {
    font-size: 3rem;
  }
}

/*===== // Vertical Timeline =====*/
/*=============================
links
=============================*/
.p-about-links {
  background-color: var(--bg-c-2);
  padding: 4rem 0 8rem;
}
@media screen and (min-width: 768px) {
  .p-about-links {
    padding: 4rem 0 10rem;
  }
}
.p-about-links .l-flex {
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  row-gap: 2rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1024px) {
  .p-about-links .l-flex {
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
  }
}
.p-about-links .c-button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border: none;
  border-radius: 4rem;
  font-weight: normal;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-about-links .c-button {
    font-size: 1.25rem;
  }
}
.p-about-links .c-button.-link {
  background: var(--white);
  color: var(--main-c);
}
.p-about-links .c-button.-link:after {
  border-color: var(--main-c);
}
.p-about-links .c-button.-link:hover, .p-about-links .c-button.-link:active {
  color: var(--main-c);
}
.p-about-links .c-button.-link:hover:after, .p-about-links .c-button.-link:active:after {
  border-color: var(--main-c);
}
.p-about-links .c-button--lg {
  max-width: 582px;
  width: 90%;
}
@media screen and (min-width: 768px) {
  .p-about-links .c-button--lg {
    width: 48%;
    height: 100px;
  }
}

/*=============================
SDGsへの貢献
=============================*/
.p-about-sdgs {
  position: relative;
  padding: 3rem 0 7rem;
  background-color: #E5F7FE;
  background-image: url("/icdl/assets/images/about/about_sdgs_bg-pc.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
}
@media screen and (min-width: 768px) {
  .p-about-sdgs {
    padding: 4rem 0 11rem;
    background-image: url("/icdl/assets/images/about/about_sdgs_bg-pc.svg");
    background-size: cover;
  }
}

.p-about-sdgs__title {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #E5F7FE;
  color: var(--main-c);
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transform: translateY(-33%);
          transform: translateY(-33%);
  border-radius: 50%;
  letter-spacing: 1px;
  width: 261px;
  height: 214px;
  font-size: 1.5rem;
  padding-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-about-sdgs__title {
    width: 346px;
    height: 284px;
    font-size: 2.25rem;
    padding-top: 3rem;
  }
}
.p-about-sdgs__title small {
  font-size: 0.7em;
}

.p-about-sdgs__image {
  position: relative;
  width: 80%;
  max-width: 332px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-about-sdgs__image {
    width: auto;
  }
}

.p-about-sdgs__text {
  text-align: center;
  line-height: 2;
}

.p-about-sdgs__container {
  background-color: var(--white);
  max-width: 753px;
  margin-left: auto;
  margin-right: auto;
  padding: 2em 1.5em;
  font-size: 1.125rem;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .p-about-sdgs__container {
    padding: 1em 0.5em 1em 1.5em;
  }
}

.p-about-sdgs__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-about-sdgs__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.p-about-sdgs__content:not(:last-child) {
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-about-sdgs__content:not(:last-child) {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-about-sdgs__content:not(:last-child) .p-about-sdgs__content-title,
  .p-about-sdgs__content:not(:last-child) .p-about-sdgs__content-text {
    padding-bottom: 1rem;
  }
}

.p-about-sdgs__content-title {
  min-width: 9em;
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid #DBDBDB;
}
@media screen and (min-width: 768px) {
  .p-about-sdgs__content-title {
    border-right: 1px solid #DBDBDB;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
    margin-right: 1em;
  }
}

.p-about-sdgs__content-text font {
  color: #009FE3;
}

.p-faq-navigation {
  padding: 3rem 0;
}
.p-faq-navigation .navigation-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-faq-navigation .navigation-list {
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}
.p-faq-navigation .navigation-list .c-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
  line-height: 1.5;
  border-radius: 1rem;
  border: none;
  min-height: 80px;
  padding: 0 2.5em 0 1em;
}
@media screen and (min-width: 768px) {
  .p-faq-navigation .navigation-list .c-button {
    border-radius: 4rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-height: 64px;
  }
}

.p-faq-contents {
  padding: 3rem 0;
}

.p-faq-contents__area + .p-faq-contents__area {
  margin-top: 4rem;
}
.p-faq-contents__area .category-title {
  background-color: var(--main-c);
  color: var(--white);
  text-align: center;
  padding: 6px 0;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-faq-contents__area .category-title {
    font-size: 1.5rem;
  }
}
.p-faq-contents__area .faq-item + .faq-item {
  border-top: 1px solid var(--border-c);
}
.p-faq-contents__area .faq-item {
  padding: 2rem 0;
}
.p-faq-contents__area .faq-item details {
  position: relative;
  cursor: pointer;
}
.p-faq-contents__area .faq-item details[open] .toggle {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.p-faq-contents__area .faq-item .toggle {
  display: block;
  background-image: url("/icdl/assets/images/icons/plus.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  right: 0;
  top: 3px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  width: 18px;
  height: 18px;
}
@media screen and (min-width: 768px) {
  .p-faq-contents__area .faq-item .toggle {
    right: 1rem;
    top: 5px;
    width: 22px;
    height: 22px;
  }
}
.p-faq-contents__area .faq-item .title {
  display: grid;
  grid-template-columns: 40px auto;
  padding-right: 5%;
}
@media screen and (min-width: 768px) {
  .p-faq-contents__area .faq-item .title {
    padding-left: 2%;
  }
}
.p-faq-contents__area .faq-item .title:before {
  content: "Q";
  display: grid;
  place-content: center;
  color: var(--white);
  background-color: var(--main-c);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 1.25rem;
}
.p-faq-contents__area .faq-item .content {
  display: grid;
  grid-template-columns: 30px auto;
  margin-top: 1em;
  padding: 2rem 1em;
  background-color: #E5F5FC;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-faq-contents__area .faq-item .content {
    margin-left: 5.5%;
    margin-right: 5%;
  }
}
.p-faq-contents__area .faq-item .content:before {
  content: "A";
  display: grid;
  place-content: center;
  color: var(--white);
  background-color: var(--main-c);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  font-size: 0.875rem;
}

.p-faq-contact {
  padding: 3rem 0;
  background-image: url("/icdl/assets/images/common/contact-bg.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.p-faq-contact__title {
  text-align: center;
  line-height: 1;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-faq-contact__title {
    font-size: 2.5rem;
  }
}
.p-faq-contact__title .eng {
  color: var(--main-c);
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-faq-contact__title .eng {
    font-size: 1.25rem;
  }
}

.p-faq-contact__text {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-faq-contact__text {
    text-align: center;
    font-size: 1.125rem;
  }
}

.p-faq-contact__container {
  background-color: var(--white);
  border-radius: 10px;
  padding: 2em;
}
@media screen and (min-width: 768px) {
  .p-faq-contact__container {
    padding: 2em 6em;
  }
}
.p-faq-contact__container .title {
  text-align: center;
}
.p-faq-contact__container .lists,
.p-faq-contact__container .lists-item {
  list-style: disc;
}
.p-faq-contact__container .c-button {
  display: block;
  padding: 1.5em 0;
  max-width: 384px;
  margin-left: auto;
  margin-right: auto;
}
.p-faq-contact__container .c-button:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.p-front__title {
  text-align: center;
  color: var(--main-c);
  font-weight: normal;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-front__title {
    font-size: 2.25rem;
  }
}

/*=============================
アニメーション関連
=============================*/
/*=============================
メインビジュアル
=============================*/
.p-front-mv {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.p-front-mv__slider-container {
  position: relative;
  width: 90%;
  margin: auto;
  height: 100%;
  padding: 1rem 0 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-front-mv__slider-container {
    width: 100%;
    padding: 2rem 0 2.75rem;
  }
}
.p-front-mv__slider-container .swiper-slide {
  width: 100%;
  height: 100%;
  padding: 2rem;
}
@media screen and (min-width: 768px) {
  .p-front-mv__slider-container .swiper-slide {
    padding: 4rem 3rem;
  }
}
.p-front-mv__slider-container .swiper-slide-active .p-front-mv__slider-accent {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-delay: 2.2s;
          transition-delay: 2.2s;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
}

.p-front-mv__slider-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 0 10%;
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .p-front-mv__slider-pagination {
    margin-bottom: 24px;
  }
}

.p-front-mv__slider-accent {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  pointer-events: none;
  opacity: 0;
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.p-front-mv__image {
  margin: auto;
}

/*=============================
CTA
=============================*/
.p-front-cta__button {
  position: relative;
  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: #f3863c;
  color: var(--white);
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  max-width: 800px;
  min-height: 72px;
  width: 90%;
  margin-inline: auto;
  padding: 1em 3em 1em 5.5em;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-front-cta__button {
    text-align: center;
    font-size: 1.5rem;
    min-height: 100px;
  }
}
.p-front-cta__button:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background-color: rgba(56, 61, 84, 0.3);
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
          clip-path: polygon(0 0, 100% 0, 0 100%);
}
@media screen and (min-width: 768px) {
  .p-front-cta__button:before {
    width: 50px;
    height: 50px;
  }
}
.p-front-cta__button:after {
  content: "";
  height: 1rem;
  width: 1rem;
  border-top: 2px solid var(--white);
  border-right: 2px solid var(--white);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  right: 1rem;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .p-front-cta__button:after {
    right: 2rem;
  }
}
.p-front-cta__button .icon {
  width: 36px;
  height: 40px;
  position: absolute;
  left: 1.5rem;
  background-image: url("/icdl/assets/images/icons/cta-calendar.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .p-front-cta__button .icon {
    left: 10%;
    width: 45px;
    height: 50px;
  }
}
.p-front-cta__button:hover {
  opacity: 0.6;
}
.p-front-cta__button.disabled {
  pointer-events: none;
}

/*=============================
News
=============================*/
.p-front-news {
  padding: 2rem 0 2rem;
}
@media screen and (min-width: 768px) {
  .p-front-news {
    padding: 3.5rem 0 2rem;
  }
}

@media screen and (min-width: 768px) {
  .p-front-news__container {
    display: grid;
    grid-template-columns: 200px auto;
    -webkit-column-gap: 0.5rem;
       -moz-column-gap: 0.5rem;
            column-gap: 0.5rem;
  }
}

.p-front-news__head {
  position: relative;
  display: grid;
  place-content: center;
  text-align: center;
  border-right: 1px solid #707070;
  border-bottom: 1px solid #707070;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 0 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-front-news__head {
    width: 85%;
    padding: 0 0 1rem;
  }
}
.p-front-news__head:before, .p-front-news__head:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  right: 25px;
}
@media screen and (min-width: 768px) {
  .p-front-news__head:before, .p-front-news__head:after {
    top: 0;
    bottom: 0;
  }
}
.p-front-news__head:before {
  bottom: -25px;
  border-color: #707070 transparent transparent transparent;
  border-width: 25px 20px 0 0;
}
@media screen and (min-width: 768px) {
  .p-front-news__head:before {
    right: -25px;
    border-color: transparent transparent #707070 transparent;
    border-width: 0 25px 20px 0;
  }
}
.p-front-news__head:after {
  bottom: -22px;
  border-color: var(--white) transparent transparent transparent;
  border-width: 23px 19px 0 0;
}
@media screen and (min-width: 768px) {
  .p-front-news__head:after {
    bottom: -23px;
    right: -21px;
    border-color: transparent transparent var(--white) transparent;
    border-width: 0 23px 19px 0;
  }
}
.p-front-news__head .more {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-front-news__head .more {
    display: inline-block;
    text-decoration: none;
    border: 1px solid var(--main-c);
    border-radius: 8px;
    color: var(--main-c);
    padding-left: 0.5em;
    padding-right: 1.2em;
    font-size: 0.875rem;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    position: relative;
  }
  .p-front-news__head .more:after {
    content: "";
    height: 1em;
    width: 1em;
    display: inline-block;
    border-top: solid 2px var(--white);
    border-right: solid 2px var(--white);
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    position: absolute;
    right: 8%;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .p-front-news__head .more:after {
    border-color: var(--main-c);
    border-width: 1px;
    height: 0.5em;
    width: 0.5em;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .p-front-news__head .more:hover {
    background-color: var(--main-c);
    color: var(--white);
  }
  .p-front-news__head .more:hover:after {
    border-color: var(--white);
  }
}

.p-front-news__body {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-front-news__body {
    margin-top: 0;
  }
}
.p-front-news__body .more {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 70%;
  text-decoration: none;
  border: 1px solid var(--main-c);
  border-radius: 8px;
  color: var(--main-c);
  text-align: center;
  font-size: 0.875rem;
  padding: 0.5em 0;
  position: relative;
}
.p-front-news__body .more:after {
  content: "";
  height: 1em;
  width: 1em;
  display: inline-block;
  border-top: solid 2px var(--white);
  border-right: solid 2px var(--white);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  right: 8%;
  top: 0;
  bottom: 0;
  margin: auto;
}
.p-front-news__body .more:after {
  border-color: var(--main-c);
  border-width: 1px;
  height: 0.5em;
  width: 0.5em;
}
@media screen and (min-width: 768px) {
  .p-front-news__body .more {
    display: none;
  }
}

.p-front-news__contents {
  overflow-y: auto;
  padding-right: 2rem;
  max-height: 257px;
}
@media screen and (min-width: 768px) {
  .p-front-news__contents {
    max-height: 210px;
  }
}
.p-front-news__contents::-webkit-scrollbar {
  width: 8px;
}
.p-front-news__contents::-webkit-scrollbar-track {
  background-color: #f0f2f5;
}
.p-front-news__contents::-webkit-scrollbar-thumb {
  background-color: var(--main-c);
}

.p-front-news__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: normal;
  font-size: 1.375rem;
}
@media screen and (min-width: 768px) {
  .p-front-news__title {
    font-size: 1.5rem;
  }
}
.p-front-news__title .eng {
  color: var(--main-c);
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-front-news__title .eng {
    font-size: 1rem;
  }
}

/*=============================
Banner
=============================*/
.p-front-banner {
  padding: 2rem 0;
}
@media screen and (min-width: 768px) {
  .p-front-banner {
    padding: 4rem 0;
  }
}

.p-front-banner__item {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.p-front-banner__item:hover {
  opacity: 0.5;
}

/*=============================
Movie
=============================*/
.p-front-movie {
  background-image: url("/icdl/assets/images/common/pattern-bg.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 2rem 0;
}
@media screen and (min-width: 768px) {
  .p-front-movie {
    padding: 4rem 0;
  }
}

.p-front-movie__content {
  position: relative;
  max-width: 900px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  -webkit-box-shadow: rgba(60, 64, 67, 0.3) 3px 3px 4px 0px, rgba(60, 64, 67, 0.15) 5px 5px 6px 3px;
          box-shadow: rgba(60, 64, 67, 0.3) 3px 3px 4px 0px, rgba(60, 64, 67, 0.15) 5px 5px 6px 3px;
}
.p-front-movie__content::before {
  content: "";
  float: left;
  padding-top: 56.25%;
}
.p-front-movie__content::after {
  content: "";
  display: block;
  clear: both;
}
.p-front-movie__content > :first-child {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-front-movie__content .play-btn {
  cursor: pointer;
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.p-front-movie__content .play-btn .btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border: 6px solid var(--white);
  border-radius: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-front-movie__content .play-btn .btn {
    width: 150px;
    height: 150px;
    border: 10px solid var(--white);
  }
}
.p-front-movie__content .play-btn .btn:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 25px solid transparent;
  border-bottom: 25px solid transparent;
  border-left: 35px solid var(--white);
  border-right: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-35%, -50%);
          transform: translate(-35%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-front-movie__content .play-btn .btn:after {
    border-top: 40px solid transparent;
    border-bottom: 40px solid transparent;
    border-left: 50px solid var(--white);
  }
}
.p-front-movie__content .play-btn:hover .btn {
  border-color: var(--main-c);
}
.p-front-movie__content .play-btn:hover .btn:after {
  border-left: 35px solid var(--main-c);
}
@media screen and (min-width: 768px) {
  .p-front-movie__content .play-btn:hover .btn:after {
    border-left: 50px solid var(--main-c);
  }
}
.p-front-movie__content .play-btn.is-active {
  display: none;
}

/*=============================
関連サイト
=============================*/
.p-front-relation {
  padding: 2rem 0;
  background-image: url("/icdl/assets/images/common/pattern-bg-short-sp.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .p-front-relation {
    padding: 4rem 0 6rem;
    background: none;
  }
}

.p-front-relation__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1em;
}
.p-front-relation__title:before, .p-front-relation__title:after {
  content: "";
  width: 1rem;
  height: 1px;
  background-color: var(--black);
}

.p-front-relation__item {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.p-front-relation__item:hover {
  opacity: 0.5;
}

.p-location__close {
  display: grid;
  place-content: center;
  text-align: center;
  padding: 3rem 0;
  height: 45vh;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-location__close {
    font-size: 1.75rem;
  }
}

.p-location-nav {
  padding: 3rem 0 0;
}
@media screen and (min-width: 768px) {
  .p-location-nav {
    padding: 3rem 0;
  }
}
.p-location-nav .map-link {
  pointer-events: none;
}
.p-location-nav .map-link path {
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}
.p-location-nav .map-link:hover path, .p-location-nav .map-link.is-hover path {
  fill: var(--main-c);
}
.p-location-nav .map-link.exists {
  pointer-events: all;
}

@media screen and (min-width: 768px) {
  .p-location-nav__links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
  }
}

.p-location-nav__map {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-location-nav__map {
    display: block;
  }
}

.p-location-nav__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
  row-gap: 0.5rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (min-width: 768px) {
  .p-location-nav__list {
    margin-top: 8rem;
    -webkit-column-gap: 1.5rem;
       -moz-column-gap: 1.5rem;
            column-gap: 1.5rem;
    row-gap: 1.2rem;
  }
}
.p-location-nav__list .link {
  display: block;
  border: 1px solid var(--white);
  padding: 18px 1em;
}
.p-location-nav__list .link:hover, .p-location-nav__list .link.is-hover {
  opacity: 1;
  background: var(--white);
  border-color: var(--main-c);
  color: var(--main-c);
}
.p-location-nav__list .link:hover:after, .p-location-nav__list .link.is-hover:after {
  border-color: var(--main-c);
}

.p-location-contents {
  padding: 3rem 0 6rem;
}

.p-location-contents__content {
  scroll-margin-top: calc(68px + 15px);
}
@media screen and (min-width: 768px) {
  .p-location-contents__content {
    scroll-margin-top: calc(108px + 25px);
  }
}
.p-location-contents__content + .p-location-contents__content {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-location-contents__content + .p-location-contents__content {
    margin-top: 4rem;
  }
}
.p-location-contents__content .area-name {
  display: block;
  text-align: center;
  background-color: var(--main-c);
  color: var(--white);
  padding: 0.5em 1em;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-location-contents__content .area-name {
    font-size: 1.5rem;
  }
}
.p-location-contents__content .prefectures {
  margin-top: 1rem;
}
.p-location-contents__content .prefectures + .prefectures {
  margin-top: 2rem;
}
.p-location-contents__content .prefectures-name {
  font-weight: 500;
  color: var(--main-c);
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-location-contents__content .prefectures-name {
    font-size: 1.5rem;
  }
}
.p-location-contents__content .prefectures-items {
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-location-contents__content .prefectures-items .list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
  }
}
.p-location-contents__content .prefectures-items .item {
  padding: 15px 10px;
  border-top: 1px solid var(--border-c);
}
.p-location-contents__content .prefectures-items .item:last-of-type {
  border-bottom: 1px solid var(--border-c);
}
@media screen and (min-width: 768px) {
  .p-location-contents__content .prefectures-items .item {
    padding: 25px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-bottom: 1px solid var(--border-c);
  }
  .p-location-contents__content .prefectures-items .item:nth-of-type(n+3) {
    border-top: none;
  }
}
.p-location-contents__content .prefectures-items .address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.2em;
}
.p-location-contents__content .prefectures-items .map {
  display: grid;
  place-content: center;
  margin-top: 0.6rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-location-contents__content .prefectures-items .map:hover {
  opacity: 0.6;
}

.p-news__container {
  padding: 3rem 0;
}
@media screen and (min-width: 768px) {
  .p-news__container {
    padding: 6rem 0;
  }
}
.p-news__container .l-inner {
  max-width: 900px;
}

.p-news__single-title {
  margin-top: 1rem;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-news__single-title {
    margin-top: 2rem;
    font-size: 1.5rem;
  }
}

.p-news__content {
  margin-top: 1.5rem;
}

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

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

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

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

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

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

.u-mt-xs {
  margin-top: 5px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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