@charset "UTF-8";
/*-----------ベース -----------*/
:root {
  --yellow: #ffef00;
  --lightyellow: #f9f2bb;
  --blue: #0092f1;
  --navy: #14293C;
  --lightblue: #e9f0f7;
  --lightgreen: #dcedd0;
  --red: #fc0000;
  --orange: #e83b18;
  --white: #fff;
  --offwhite: #f9f9f9;
  --black: #000;
  --grey: #C0C0C0;
  --darkgrey: #707070;
  --lightgrey: #FAFAFA;
  --ivory: #f5f1eb;
  --main-c: var(--navy);
  --base-c: var(--offwhite);
  --accent-c: var(--yellow);
  --bg-c: var(--lightgrey);
  --border-c: var(--grey);
}

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

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

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

#splash {
  z-index: 8;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body {
  font-family: "Zen Kaku Gothic Antique", "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.15em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: var(--darkgrey);
  font-size: 1rem;
}

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

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

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

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

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

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

h1 {
  font-size: clamp(2rem, 1.5752rem + 1.8123vw, 3.75rem);
}

h2 {
  font-size: clamp(1.75rem, 1.5073rem + 1.0356vw, 2.75rem);
}

h3 {
  font-size: clamp(1.5rem, 1.318rem + 0.7767vw, 2.25rem);
}

h4 {
  font-size: clamp(1.25rem, 1.068rem + 0.7767vw, 2rem);
}

h5 {
  font-weight: 500;
  font-size: 1rem;
}

h6 {
  font-size: clamp(1rem, 0.9697rem + 0.1294vw, 1.125rem);
}

/*-----------レイアウト　接頭辞「l-」-----------*/
.l-archive-wrapper {
  margin-top: 150px;
}
@media screen and (min-width: 1024px) {
  .l-archive-wrapper {
    margin-top: 40px;
    padding: 8rem 0 3rem;
  }
}

.l-archive__list {
  margin-top: 4rem;
  scroll-padding-top: 3rem;
}

.l-archive__item {
  margin-top: 20px;
  padding-bottom: 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (min-width: 768px) {
  .l-archive__item {
    display: grid;
    margin-top: 40px;
    padding-bottom: 40px;
    grid-template-columns: 25.3% minmax(0, 1fr);
    gap: 3%;
  }
}
.l-archive__item .head {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.l-archive__item .head .image-wrapper {
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 1/1;
  margin-inline: auto;
  width: 50%;
}
@media screen and (min-width: 768px) {
  .l-archive__item .head .image-wrapper {
    border-radius: 30px;
    width: 100%;
  }
}
.l-archive__item .head .image-wrapper img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-archive__item .body {
  padding: 1rem 0.5rem 1.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-archive__item .body {
    padding: 0.5rem 0 1.5rem;
  }
}
.l-archive__item .body .outer-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: var(--main-c);
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .l-archive__item .body .outer-link {
    font-size: 1.25rem;
  }
}
.l-archive__item .body .outer-link img {
  width: 14px;
  height: 14px;
}
@media screen and (min-width: 768px) {
  .l-archive__item .body .outer-link img {
    width: 21px;
    height: 21px;
  }
}
.l-archive__item .body .outer-link a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-archive__item .body .outer-link a:hover {
  opacity: 0.6;
}
.l-archive__item .body .title {
  font-size: clamp(1.25rem, 0.8356rem + 1.768vw, 2.25rem);
  line-height: 1.4;
  margin-top: 1rem;
  color: var(--main-c);
}
.l-archive__item .body .term {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 6px 1rem;
  border-radius: 2rem;
  border: 1px solid var(--border-c);
  color: var(--border-c);
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .l-archive__item .body .term {
    font-size: 1rem;
  }
}

.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;
  margin-top: 1.5rem;
  row-gap: 0.6rem;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .l-archive__category {
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
    row-gap: 2rem;
    margin-top: 2rem;
  }
}
.l-archive__category .link {
  text-decoration: none;
  border: solid 1px var(--darkgrey);
  border-radius: 3rem;
  padding: 5px 1rem;
  min-width: 100px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 500;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .l-archive__category .link {
    padding: 10px 1.5rem;
    font-size: 1.25rem;
  }
}
.l-archive__category .link:hover, .l-archive__category .link.is-active {
  background-color: var(--main-c);
  color: var(--white);
}

.l-archive__info-button {
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  color: var(--main-c);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .l-archive__info-button {
    display: none;
  }
}
.l-archive__info-button:before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("../images/icons/icon-plus.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.l-archive__info-button.is-active:before {
  background-image: url("../images/icons/icon-minus.svg");
}

.l-archive__info-inner {
  width: 90%;
  margin-inline: auto;
  opacity: 0;
  max-height: 0;
  pointer-events: none;
  color: var(--main-c);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .l-archive__info-inner {
    width: 100%;
    opacity: 1;
    max-height: 100vh;
    color: var(--darkgrey);
    pointer-events: auto;
    margin-bottom: 1.5rem;
  }
}
.l-archive__info-inner.is-open {
  opacity: 1;
  max-height: 100vh;
  pointer-events: auto;
  margin-bottom: 1.5rem;
}
.l-archive__info-inner .map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.l-archive__info-inner .map-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.l-archive__info-inner .map-link img {
  width: 12px;
  height: 15px;
}
@media screen and (min-width: 768px) {
  .l-archive__info-inner .map-link img {
    width: 19px;
    height: 23px;
  }
}
.l-archive__info-inner .map-link a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-archive__info-inner .map-link a:hover {
  opacity: 0.6;
}

.l-archive__info-title {
  font-weight: 500;
}

.l-article__wrapper {
  margin-top: 70px;
  padding: 1rem 0;
}
@media screen and (min-width: 768px) {
  .l-article__wrapper {
    margin-top: 160px;
  }
}

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

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

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

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

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

.l-article__content:before, .l-article__content:after {
  content: "";
  display: block;
  clear: both;
}

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

.l-article__pagenation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1rem 0;
}
.l-article__pagenation .link {
  color: #C0C0C0;
}
.l-article__pagenation .link.is-active {
  font-weight: bold;
  color: #707070;
}

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

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

.l-editor-wrapper {
  margin-top: 150px;
}
@media screen and (min-width: 1024px) {
  .l-editor-wrapper {
    margin-top: 40px;
    padding: 8rem 0 3rem;
  }
}

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

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

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

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

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

.l-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.l-flex.-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.l-flex.-jbetween {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.l-flex.-jcenter {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.l-flex.-jaround {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.l-flex.-acenter {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-flex.-abaseline {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.l-flex.-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.l-flex.-gap-s {
  gap: 0.5em;
}
.l-flex.-gap-m {
  gap: 1em;
}
.l-flex.-gap-l {
  gap: 1.5em;
}

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

.l-overlay {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  position: fixed;
  top: 70px;
  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: 160px;
  }
}

.l-footer {
  margin: 8rem 0 2rem;
}
@media screen and (min-width: 768px) {
  .l-footer {
    margin: 10rem 0 2rem;
  }
}

.l-footer__container {
  background-color: var(--main-c);
  color: var(--white);
  max-width: 1720px;
  margin-inline: auto;
  border-radius: 30px 0 0 0;
  padding: 5rem 0 4rem;
}
@media screen and (min-width: 768px) {
  .l-footer__container {
    border-radius: 30px;
    width: 90%;
    padding: 10rem 0;
  }
}

.l-footer__container-content {
  display: grid;
  gap: 3rem;
}
@media screen and (min-width: 1024px) {
  .l-footer__container-content {
    gap: 5%;
    grid-template-columns: 35% minmax(0, 1fr);
  }
}

@media screen and (min-width: 768px) {
  .l-footer__content-activities .c-title-h3,
  .l-footer__content-about .c-title-h3 {
    font-size: 1.5rem;
  }
}

.l-footer__about-list {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .l-footer__about-list {
    margin-top: 3rem;
  }
}

.l-footer__about-item + .l-footer__about-item {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .l-footer__about-item + .l-footer__about-item {
    margin-top: 1.5rem;
  }
}

@media screen and (min-width: 768px) {
  .l-footer__about-definition {
    display: grid;
    grid-template-columns: 8rem minmax(0, 1fr);
  }
}
.l-footer__about-definition .title {
  font-weight: 500;
}
.l-footer__about-definition .map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .l-footer__about-definition .map {
    font-size: 1rem;
  }
}
.l-footer__about-definition .map .icon {
  width: 13px;
  height: 16px;
}
@media screen and (min-width: 768px) {
  .l-footer__about-definition .map .icon {
    width: 19px;
    height: 23px;
  }
}
.l-footer__about-definition .map .image {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
.l-footer__about-definition .map a {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.l-footer__about-definition .map a:hover {
  opacity: 0.6;
}

.l-footer__activities-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 1280px) {
  .l-footer__activities-list {
    margin-top: 3rem;
    display: grid;
    grid-template-areas: "first fourth" "second fifth" "third third";
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.l-footer__activities-item {
  max-width: 400px;
}
.l-footer__activities-item:nth-child(1) {
  grid-area: first;
}
.l-footer__activities-item:nth-child(2) {
  grid-area: second;
}
.l-footer__activities-item:nth-child(3) {
  grid-area: third;
}
.l-footer__activities-item:nth-child(4) {
  grid-area: fourth;
}
.l-footer__activities-item:nth-child(5) {
  grid-area: fifth;
}
.l-footer__activities-item .link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  border: 1px solid var(--white);
  border-radius: 3rem;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 0.5rem 2rem;
}
@media screen and (min-width: 768px) {
  .l-footer__activities-item .link {
    padding: 1rem 2rem;
  }
}
.l-footer__activities-item .link:after {
  content: "";
  display: block;
  width: 6px;
  height: 12px;
  background-image: url("../images/icons/right-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 1.5rem;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .l-footer__activities-item .link:after {
    width: 9px;
    height: 15px;
  }
}
.l-footer__activities-item .link:hover {
  background-color: var(--white);
  color: var(--main-c);
}
.l-footer__activities-item .number {
  font-family: "Raleway", sans-serif;
}

.l-footer__activities-button-list {
  display: grid;
  gap: 0.5rem;
  margin-top: 3rem;
}
@media screen and (min-width: 1280px) {
  .l-footer__activities-button-list {
    gap: 1.5rem;
    grid-template-columns: repeat(2, minmax(250px, 1fr));
  }
}

.l-footer__activities-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 80px;
  font-weight: bold;
  max-width: 400px;
  text-decoration: none;
  padding: 1rem 2rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-footer__activities-button .jpn {
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .l-footer__activities-button .jpn {
    font-size: 1.5rem;
  }
}
.l-footer__activities-button .eng {
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
}
.l-footer__activities-button.-youtube {
  background-color: #e14b55;
  color: var(--white);
}
.l-footer__activities-button.-contact {
  background-color: var(--white);
  color: var(--main-c);
}
.l-footer__activities-button:hover {
  opacity: 0.6;
}

.l-footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1420px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-footer__bottom {
    background-color: var(--main-c);
    color: var(--white);
    text-align: center;
    gap: 1.5rem;
    padding-bottom: 4rem;
  }
}
@media screen and (min-width: 768px) {
  .l-footer__bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 2rem;
    width: 85%;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__bottom .copyright {
    font-size: 0.75rem;
  }
}

.l-footer__sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 4rem;
     -moz-column-gap: 4rem;
          column-gap: 4rem;
  row-gap: 1.5rem;
}
@media screen and (max-width: 510px) {
  .l-footer__sns-list {
    width: 51%;
    margin-inline: auto;
  }
}

.l-footer__sns-item .icon {
  display: block;
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 768px) {
  .l-footer__sns-item .icon {
    width: 30px;
    height: 30px;
  }
}
.l-footer__sns-item .icon .image {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}

.l-header {
  position: fixed;
  top: 1.5rem;
  left: 0;
  right: 0;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  padding: 1rem 1rem 1rem 2rem;
  width: 95%;
  margin-inline: auto;
  border-radius: 1rem;
  background-color: var(--main-c);
}
@media screen and (min-width: 768px) {
  .l-header {
    padding: 1rem 2rem;
  }
}
@media screen and (min-width: 1024px) {
  .l-header {
    position: relative;
    padding: 0 4%;
    display: grid;
    grid-template-areas: "top top" "logo nav";
    grid-template-columns: 5% 90%;
    gap: 5%;
    top: 0;
    height: 160px;
    width: auto;
    background-color: transparent;
  }
}
@media screen and (min-width: 1280px) {
  .l-header {
    grid-template-columns: 8% 87%;
  }
}

.l-header__logo {
  position: relative;
  grid-area: logo;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (min-width: 1024px) {
  .l-header__logo {
    margin-top: auto;
  }
}
.l-header__logo img {
  margin: auto;
  height: 20px;
}
@media screen and (min-width: 1024px) {
  .l-header__logo img {
    display: none;
  }
}
.l-header__logo:after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: var(--white);
  position: absolute;
  right: -1.5rem;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .l-header__logo:after {
    display: none;
  }
}

.l-header__nav-list {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1.5rem;
}
@media screen and (min-width: 1024px) {
  .l-header__nav-list {
    -webkit-column-gap: 4rem;
       -moz-column-gap: 4rem;
            column-gap: 4rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.l-header__nav-item {
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-header__nav-item:nth-last-of-type(n + 2):after {
    content: "";
    width: 1px;
    height: 60%;
    position: absolute;
    right: -2rem;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: var(--border-c);
  }
}

.l-header__nav-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
}
@media screen and (min-width: 1024px) {
  .l-header__nav-ttl {
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: clamp(0.875rem, 0.4464rem + 0.6696vw, 1.25rem);
    letter-spacing: 0.02em;
  }
}
.l-header__nav-ttl:hover {
  opacity: 0.6;
}
.l-header__nav-ttl.-button {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  width: 150px;
  border: 2px solid var(--main-c);
  background-color: var(--white);
  color: var(--main-c);
  border-radius: 4rem;
  padding: 1rem;
}
@media screen and (min-width: 1440px) {
  .l-header__nav-ttl.-button {
    width: 250px;
    padding: 2rem 1rem;
  }
}
.l-header__nav-ttl .number {
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.25rem, 0.9423rem + 1.5385vw, 2rem);
}

.l-header__sp-nav {
  position: absolute;
  top: 3rem;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  max-height: 0;
  border-radius: 0 0 1rem 1rem;
  background-color: var(--main-c);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 0 2rem 0;
  color: var(--white);
}
@media screen and (min-width: 1024px) {
  .l-header__sp-nav {
    display: none;
  }
}
.l-header__sp-nav.is-open {
  max-height: 100vh;
  padding: 4rem 2rem 3rem;
}
.l-header__sp-nav.is-open .l-header__nav-item {
  pointer-events: auto;
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-header__sp-nav.is-open .l-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.l-header__sp-nav .l-header__nav-item {
  pointer-events: none;
  opacity: 0;
  -webkit-transition: 0s;
  transition: 0s;
}
.l-header__sp-nav .l-header__nav-ttl .icon {
  display: grid;
  place-content: center;
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--white);
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.l-header__sp-nav .l-header__nav-ttl .icon:before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-top: 1px solid var(--white);
  border-right: 1px solid var(--white);
  -webkit-transform: rotate(45deg) translate(-1px, 0);
          transform: rotate(45deg) translate(-1px, 0);
}

.l-header__sp-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.7rem;
  color: var(--white);
}
@media screen and (min-width: 768px) {
  .l-header__sp-menu {
    gap: 2rem;
  }
}
@media screen and (min-width: 1024px) {
  .l-header__sp-menu {
    display: none;
  }
}
.l-header__sp-menu .l-header__link-ttl img {
  width: 30px;
  height: 20px;
}
.l-header__sp-menu .l-header__link-ttl .text {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-header__sp-menu .l-header__link-ttl .text {
    display: inline-block;
  }
}

.l-header__pagebottom {
  position: absolute;
  top: -10px;
  left: 10px;
  color: var(--main-c);
  background-color: var(--white);
  border: 1px solid var(--main-c);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3px;
  padding: 2px 8px;
  font-size: 0.75rem;
  border-radius: 2rem;
}
@media screen and (min-width: 1024px) {
  .l-header__pagebottom {
    display: none;
  }
}

.l-header__hamburger-sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  position: relative;
  cursor: pointer;
  z-index: 1;
  color: var(--white);
  border-radius: 3rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 4px 14px;
}
@media screen and (min-width: 1024px) {
  .l-header__hamburger-sp {
    display: none;
  }
}
.l-header__hamburger-sp .bar-wrapper {
  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;
  gap: 8px;
}
.l-header__hamburger-sp .bar {
  display: block;
  width: 25px;
  height: 1px;
  background-color: var(--white);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 1;
}
.l-header__hamburger-sp.is-active {
  color: var(--main-c);
  background-color: var(--white);
}
.l-header__hamburger-sp.is-active .bar {
  background-color: var(--main-c);
}
.l-header__hamburger-sp.is-active .bar:first-child {
  -webkit-transform: rotate(20deg) translate3D(0px, 7px, 0);
          transform: rotate(20deg) translate3D(0px, 7px, 0);
}
.l-header__hamburger-sp.is-active .bar:last-child {
  -webkit-transform: rotate(-20deg) translate3D(-2px, -4px, 0);
          transform: rotate(-20deg) translate3D(-2px, -4px, 0);
}

.l-header__pc-top {
  display: none;
}
@media screen and (min-width: 1024px) {
  .l-header__pc-top {
    grid-area: top;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 20px 0;
  }
}

.l-header__pc-nav {
  display: none;
}
@media screen and (min-width: 1024px) {
  .l-header__pc-nav {
    grid-area: nav;
    grid-column: 1/3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
    gap: 2rem;
  }
}
.l-header__pc-nav .l-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.l-header__link-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 2rem;
}

.l-header__link-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  text-decoration: none;
}
.l-header__link-ttl.-logo img {
  width: 50px;
}
.l-header__link-ttl.-about {
  cursor: pointer;
}

.l-header__hamburger-pc {
  color: var(--white);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 80px;
  height: 80px;
  line-height: 1;
}
.l-header__hamburger-pc .bar {
  display: block;
  width: 38%;
  height: 1px;
  background-color: var(--white);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-header__hamburger-pc.is-active .bar:first-child {
  -webkit-transform: rotate(20deg) translate(4px, 6px);
          transform: rotate(20deg) translate(4px, 6px);
}
.l-header__hamburger-pc.is-active .bar:nth-child(2) {
  -webkit-transform: rotate(-20deg) translate(2px, -2px);
          transform: rotate(-20deg) translate(2px, -2px);
}

.l-header__drawer {
  display: none;
}
@media screen and (min-width: 1024px) {
  .l-header__drawer {
    position: fixed;
    display: block;
    right: -100%;
    top: 6rem;
    max-width: 90%;
    width: 80px;
    height: 80px;
    background-color: var(--main-c);
    color: var(--white);
    border-radius: 100%;
    border: solid 1px #fff;
    -webkit-transition: width 0.5s, height 0.5s, border-radius 0.5s 0.4s, right 0.5s;
    transition: width 0.5s, height 0.5s, border-radius 0.5s 0.4s, right 0.5s;
  }
}
.l-header__drawer.is-open {
  width: 760px;
  height: 460px;
  padding: 3rem;
  border-radius: 3rem;
  -webkit-transition: width 0.5s, height 0.5s, border-radius 0s, right 0.5s;
  transition: width 0.5s, height 0.5s, border-radius 0s, right 0.5s;
}
.l-header__drawer.is-open .l-header__drawer-activity {
  opacity: 1;
  -webkit-transition: 0.5s 0.4s;
  transition: 0.5s 0.4s;
  pointer-events: auto;
}
.l-header__drawer.is-open .l-header__drawer-sns {
  opacity: 1;
  -webkit-transition: 0.5s 0.6s;
  transition: 0.5s 0.6s;
  pointer-events: auto;
}
.l-header__drawer.is-open .l-header__drawer-link {
  opacity: 1;
  -webkit-transition: 0.5s 0.8s;
  transition: 0.5s 0.8s;
  pointer-events: auto;
}
.l-header__drawer.is-open .l-header__drawer-logo {
  opacity: 1;
  -webkit-transition: 0.5s 1s;
  transition: 0.5s 1s;
}
.l-header__drawer.-shift {
  right: 2rem;
}

.l-header__drawer-activity {
  display: grid;
  display: grid;
  grid-template-areas: "first fourth" "second fifth" "third third";
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  row-gap: 2rem;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0s;
  transition: 0s;
}

.l-header__drawer-activity-item:nth-child(1) {
  grid-area: first;
}
.l-header__drawer-activity-item:nth-child(2) {
  grid-area: second;
}
.l-header__drawer-activity-item:nth-child(3) {
  grid-area: third;
}
.l-header__drawer-activity-item:nth-child(4) {
  grid-area: fourth;
}
.l-header__drawer-activity-item:nth-child(5) {
  grid-area: fifth;
}

.l-header__drawer-ttl {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  max-width: 275px;
  text-decoration: none;
  font-size: 1.25rem;
}
.l-header__drawer-ttl:after {
  content: "";
  width: 8px;
  height: 16px;
  background-image: url("../images/icons/right-arrow.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1rem;
  margin: auto;
}
.l-header__drawer-ttl .number {
  font-family: "Raleway", sans-serif;
}

.l-header__drawer-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3rem;
  margin-top: 4rem;
  opacity: 0;
  -webkit-transition: 0s;
  transition: 0s;
  pointer-events: none;
}

.l-header__drawer-sns-item .icon {
  display: block;
  width: 35px;
  height: 35px;
}
.l-header__drawer-sns-item .image {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}

.l-header__drawer-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  opacity: 0;
  -webkit-transition: 0s;
  transition: 0s;
  pointer-events: none;
}

.l-header__drawer-link-item .link {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  color: var(--white);
}

.l-header__drawer-logo {
  position: absolute;
  right: 8rem;
  bottom: 12.3rem;
  opacity: 0;
  -webkit-transition: 0s;
  transition: 0s;
}

/*********************************************
 * サイドバーのレイアウト
 *
 * 接頭詞『.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(160px + 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-」------------*/
.c-title-h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: var(--main-c);
}

.c-title-h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: var(--main-c);
  font-size: clamp(1.25rem, 0.7372rem + 2.5641vw, 2.3rem);
}
.c-title-h2 .number {
  font-family: "Raleway", sans-serif;
  line-height: 1.2;
  font-size: clamp(1.25rem, 0.7372rem + 2.5641vw, 2.5rem);
}

.c-title-h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  gap: 2rem;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .c-title-h3 {
    gap: 4rem;
    font-size: 1.75rem;
  }
}
.c-title-h3 .eng {
  font-family: "Raleway", sans-serif;
}
.c-title-h3 .jpn {
  position: relative;
}
.c-title-h3 .jpn:after {
  content: "";
  width: 1px;
  height: 70%;
  background-color: var(--grey);
  position: absolute;
  top: 0;
  bottom: 0;
  right: -1rem;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .c-title-h3 .jpn:after {
    height: 80%;
    right: -2rem;
  }
}
@media screen and (min-width: 768px) {
  .c-title-h3.-small {
    font-size: 1.5rem;
  }
}

.c-title-h4.u-tac .c-title-h4__main:before {
  left: 0;
  right: 0;
  margin: auto;
}

.c-title-h4__main {
  position: relative;
}
.c-title-h4__main:before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: var(--main-c);
}

.c-title-h6 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.c-title-h6__main {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-title-h6__main::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background-color: var(--main-c);
}

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

.c-button {
  padding: 2em;
  display: block;
  margin-inline: auto;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  font-size: clamp(1rem, 0.8974rem + 0.5128vw, 1.25rem);
  color: var(--main-c);
  border: 1px solid var(--main-c);
  background-color: var(--white);
  border-radius: 9999px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
.c-button:hover, .c-button:active {
  color: var(--white);
  background-color: var(--main-c);
}
.c-button:hover:after, .c-button:active:after {
  border-color: var(--white);
}
.c-button:after {
  content: "";
  height: 0.7em;
  width: 0.7em;
  display: inline-block;
  border-top: solid 1px var(--main-c);
  border-right: solid 1px var(--main-c);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  right: 8%;
  top: 0;
  bottom: 0;
  margin: auto;
}

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

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

.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-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-link {
  position: relative;
  color: var(--border-c);
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .c-link {
    font-size: 1.25rem;
  }
}

.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-text {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .c-text {
    font-size: 1rem;
  }
}
.c-text.-sm {
  font-size: 1.8666666667vw;
}
@media screen and (min-width: 768px) {
  .c-text.-sm {
    font-size: 0.625rem;
  }
}
.c-text.-md {
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .c-text.-md {
    font-size: 1.125rem;
  }
}
.c-text.-lg {
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .c-text.-lg {
    font-size: 1.5625rem;
  }
}
.c-text.-big {
  font-size: 6.9333333333vw;
}
@media screen and (min-width: 768px) {
  .c-text.-big {
    font-size: 1.75rem;
  }
}

.c-text-box {
  padding: 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-sns-list {
  background-color: var(--main-c);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 10px;
}

.c-sns-item {
  position: relative;
  padding: 15px 20px;
}
.c-sns-item .icon {
  display: block;
  width: 20px;
  height: 20px;
  opacity: 0.5;
}
.c-sns-item .icon .line {
  fill: var(--white);
}
.c-sns-item .icon svg {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
.c-sns-item a.icon {
  opacity: 1;
}
.c-sns-item:not(:last-child):after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 40%;
  width: 1px;
  margin: auto;
  background-color: var(--white);
}

.c-pagetop {
  position: fixed;
  z-index: 5;
  bottom: 1rem;
  right: 1rem;
  border: 2px solid var(--main-c);
  border-radius: 100%;
  background-color: var(--white);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: grid;
  place-content: center;
  width: 60px;
  height: 60px;
}
@media screen and (min-width: 768px) {
  .c-pagetop {
    bottom: 3rem;
    right: 3rem;
  }
}
.c-pagetop .icon {
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--main-c);
  border-right: 2px solid var(--main-c);
  -webkit-transform: rotate(-12deg);
          transform: rotate(-12deg);
}
@media screen and (min-width: 768px) {
  .c-pagetop .icon {
    width: 14px;
    height: 14px;
  }
}

.c-movie-post {
  display: inline-block;
  position: relative;
  text-decoration: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-movie-post .thumbnail {
  overflow: hidden;
  border-radius: 10px;
  height: 148px;
}
@media screen and (min-width: 768px) {
  .c-movie-post .thumbnail {
    height: 240px;
  }
}
.c-movie-post .thumbnail .image {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.c-movie-post .title {
  margin-top: 12px;
  font-size: 0.875rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.c-movie-post.-short {
  width: 100px;
}
@media screen and (min-width: 768px) {
  .c-movie-post.-short {
    width: 187px;
  }
}
.c-movie-post.-normal {
  width: 280px;
}
@media screen and (min-width: 768px) {
  .c-movie-post.-normal {
    width: 455px;
  }
}

@media screen and (min-width: 768px) {
  .c-movie-post--small .thumbnail {
    height: 183px;
  }
}
@media screen and (min-width: 768px) {
  .c-movie-post--small.-short {
    width: 144px;
  }
}
@media screen and (min-width: 768px) {
  .c-movie-post--small.-normal {
    width: 323px;
  }
}

.c-form {
  max-width: 800px;
  margin-inline: auto;
}
.c-form .wpcf7-submit {
  display: none;
}
.c-form .wpcf7-spinner {
  display: none;
}
.c-form .wpcf7-response-output {
  display: none;
}
.c-form .wpcf7-not-valid-tip {
  font-size: clamp(0.75rem, 0.6474rem + 0.5128vw, 1rem);
  margin-top: 8px;
}

.c-form-item {
  display: grid;
  row-gap: 0.8rem;
  font-size: clamp(1.025rem, 0.9712rem + 0.7692vw, 1.5rem);
}
.c-form-item + .c-form-item {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .c-form-item + .c-form-item {
    margin-top: 3rem;
  }
}
.c-form-item input,
.c-form-item textarea {
  padding: 0.8em;
  width: 100%;
  border: 1px solid var(--border-c);
  border-radius: 10px;
  font-size: clamp(1.025rem, 0.9712rem + 0.7692vw, 1.5rem);
  font-weight: lighter;
}
.c-form-item .label {
  font-size: clamp(1rem, 0.8974rem + 0.5128vw, 1.25rem);
  font-weight: bold;
  color: var(--darkgrey);
}
.c-form-item .label.-caution:after {
  content: "*";
  color: var(--red);
  font-size: 0.8em;
  padding: 3px 6px;
  margin-left: 5px;
}
.c-form-item .postcode {
  display: grid;
  grid-template-columns: 1rem minmax(0, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}

.c-form-submit {
  position: relative;
  display: block;
  text-align: center;
  margin-top: 2em;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--main-c);
  color: var(--white);
  border: 1px solid var(--main-c);
  font-size: 1rem;
  width: 90%;
  max-width: 20em;
  border-radius: 999px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 1em 0.5em;
  position: relative;
}
.c-form-submit:after {
  content: "";
  height: 0.7em;
  width: 0.7em;
  display: inline-block;
  border-top: solid 1px var(--main-c);
  border-right: solid 1px var(--main-c);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  right: 8%;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .c-form-submit {
    margin-top: 4em;
    font-size: 1.25rem;
    padding: 1.5em 0.8em;
  }
}
.c-form-submit:after {
  border-color: var(--white);
}
.c-form-submit:hover {
  background-color: var(--white);
  color: var(--main-c);
}
.c-form-submit:hover:after {
  border-color: var(--main-c);
}

/*--------個別ページ　接頭辞「p-」--------------*/
.p-front .l-editor-wrapper {
  padding: 0;
}
.p-front .swiper-button-prev,
.p-front .swiper-button-next {
  background-color: rgba(0, 0, 0, 0.6);
  width: 35px;
  height: 100%;
  top: 0;
  margin-top: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.p-front .swiper-button-prev::after,
.p-front .swiper-button-next::after {
  color: #fff;
  font-weight: 400;
  font-size: 1.2rem;
}
.p-front .swiper-button-prev:hover,
.p-front .swiper-button-next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
@media screen and (min-width: 768px) {
  .p-front .swiper-button-prev,
  .p-front .swiper-button-next {
    width: calc((43% - 60px) / 2);
  }
  .p-front .swiper-button-prev::after,
  .p-front .swiper-button-next::after {
    font-size: 3.2rem;
  }
}

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

/*=============================
メインビジュアル
=============================*/
.p-front-mv {
  position: relative;
  overflow: hidden;
}

.p-front-mv__slider-container {
  position: relative;
  overflow: hidden;
  padding-bottom: 2.2rem;
}
@media screen and (min-width: 768px) {
  .p-front-mv__slider-container {
    padding-bottom: 0;
  }
}
.p-front-mv__slider-container .swiper-pagination {
  z-index: 4;
}
@media screen and (min-width: 768px) {
  .p-front-mv__slider-container .swiper-pagination {
    display: none;
  }
}
.p-front-mv__slider-container .swiper-pagination-bullet {
  width: 30px;
  height: 2px;
  border-radius: 0;
}
.p-front-mv__slider-container .swiper-pagination-bullet-active {
  background-color: var(--main-c);
}
.p-front-mv__slider-container .swiper-button-prev,
.p-front-mv__slider-container .swiper-button-next {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-front-mv__slider-container .swiper-button-prev,
  .p-front-mv__slider-container .swiper-button-next {
    display: grid;
  }
}
@media screen and (min-width: 768px) {
  .p-front-mv__slider-container .swiper-button-prev {
    left: 0;
    border-radius: 0 30px 30px 0;
  }
}
@media screen and (min-width: 768px) {
  .p-front-mv__slider-container .swiper-button-next {
    right: 0;
    border-radius: 30px 0 0 30px;
  }
}

.p-front-mv__slider-slide {
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 16/9;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-front-mv__slider-slide {
    border-radius: 30px;
    max-width: 57%;
  }
}
.p-front-mv__slider-slide iframe {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*=============================
新着動画
=============================*/
.p-front-new {
  padding-top: 2rem;
  overflow: hidden;
}

.p-front-new__slider-container {
  position: relative;
  overflow: hidden;
  padding-left: 5%;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-front-new__slider-container {
    padding-left: 0;
    margin-top: 1rem;
  }
}
.p-front-new__slider-container .swiper-button-prev,
.p-front-new__slider-container .swiper-button-next {
  display: none;
}
.p-front-new__slider-container .swiper-button-prev::after,
.p-front-new__slider-container .swiper-button-next::after {
  font-size: 2.2rem;
}
@media screen and (min-width: 768px) {
  .p-front-new__slider-container .swiper-button-prev,
  .p-front-new__slider-container .swiper-button-next {
    display: grid;
    width: 65px;
    height: 240px;
  }
}
@media screen and (min-width: 768px) {
  .p-front-new__slider-container .swiper-button-prev {
    left: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-front-new__slider-container .swiper-button-next {
    right: 0;
  }
}

/*=============================
活動内容
=============================*/
.p-front-activities__inner {
  position: relative;
  max-width: 1920px;
  width: 90%;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .p-front-activities__inner {
    display: grid;
    gap: 2%;
    grid-template-columns: 7rem minmax(0, 1fr);
    width: 82%;
  }
}
@media screen and (min-width: 1440px) {
  .p-front-activities__inner {
    grid-template-columns: 7rem minmax(0, 1fr) 7rem;
  }
}
.p-front-activities__inner .c-title-h3.-sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 1024px) {
  .p-front-activities__inner .c-title-h3.-sp {
    display: none;
  }
}
.p-front-activities__inner .c-title-h3.-pc {
  display: none;
}
@media screen and (min-width: 1024px) {
  .p-front-activities__inner .c-title-h3.-pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.p-front-activities__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 1.5rem;
}
@media screen and (min-width: 1024px) {
  .p-front-activities__navigation {
    margin-top: 0;
    position: sticky;
    top: 20px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    -webkit-transform: translateX(-350%);
            transform: translateX(-350%);
    -webkit-transition: 0.5s;
    transition: 0.5s;
    z-index: 5;
  }
}
.p-front-activities__navigation.-shift {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.p-front-activities__navigation-item {
  position: relative;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 1024px) {
  .p-front-activities__navigation-item {
    border-radius: 4rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: auto;
  }
  .p-front-activities__navigation-item.is-active .link {
    background-color: var(--main-c);
    color: var(--white);
  }
}
.p-front-activities__navigation-item + .p-front-activities__navigation-item {
  margin-top: 8px;
}
@media screen and (min-width: 1024px) {
  .p-front-activities__navigation-item + .p-front-activities__navigation-item {
    margin-top: 0;
  }
}
.p-front-activities__navigation-item:nth-child(1) {
  background-image: url("../images/common/button_1.webp");
}
@media screen and (min-width: 1024px) {
  .p-front-activities__navigation-item:nth-child(1) {
    background-image: none;
  }
}
.p-front-activities__navigation-item:nth-child(2) {
  background-image: url("../images/common/button_2.webp");
}
@media screen and (min-width: 1024px) {
  .p-front-activities__navigation-item:nth-child(2) {
    background-image: none;
  }
}
.p-front-activities__navigation-item:nth-child(3) {
  background-image: url("../images/common/button_3.webp");
}
@media screen and (min-width: 1024px) {
  .p-front-activities__navigation-item:nth-child(3) {
    background-image: none;
  }
}
.p-front-activities__navigation-item:nth-child(4) {
  background-image: url("../images/common/button_4.webp");
}
@media screen and (min-width: 1024px) {
  .p-front-activities__navigation-item:nth-child(4) {
    background-image: none;
  }
}
.p-front-activities__navigation-item:nth-child(5) {
  background-image: url("../images/common/button_5.webp");
}
@media screen and (min-width: 1024px) {
  .p-front-activities__navigation-item:nth-child(5) {
    background-image: none;
  }
}
.p-front-activities__navigation-item .link {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: bold;
  color: var(--white);
}
@media screen and (min-width: 1024px) {
  .p-front-activities__navigation-item .link {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-weight: 500;
    color: var(--black);
    padding: 0.8rem 0.8rem 1rem;
  }
}
.p-front-activities__navigation-item .number {
  position: absolute;
  right: 10px;
  top: 10px;
  font-family: "Raleway", sans-serif;
  font-size: 1.25rem;
}
@media screen and (min-width: 1024px) {
  .p-front-activities__navigation-item .number {
    position: relative;
    right: unset;
    top: unset;
    line-height: 1.8rem;
    font-size: 1.125rem;
  }
}
.p-front-activities__navigation-item .text {
  font-size: 1.25rem;
}
@media screen and (min-width: 1024px) {
  .p-front-activities__navigation-item .text {
    font-size: 0.75rem;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    line-height: 1.2rem;
    letter-spacing: 0.05em;
  }
}
.p-front-activities__navigation-item .text br {
  display: none;
}
@media screen and (min-width: 1024px) {
  .p-front-activities__navigation-item .text br {
    display: block;
  }
}
.p-front-activities__navigation-item .text small {
  font-size: 0.75rem;
}
.p-front-activities__navigation-item .text.-sp {
  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: 1024px) {
  .p-front-activities__navigation-item .text.-sp {
    display: none;
  }
}
.p-front-activities__navigation-item .text.-pc {
  display: none;
}
@media screen and (min-width: 1024px) {
  .p-front-activities__navigation-item .text.-pc {
    display: block;
  }
}

.c-title-h3.-activities {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #14283C;
  gap: 20px;
}
.c-title-h3.-activities .jpn::after {
  display: none;
}
.c-title-h3.-activities .eng {
  font-size: 0.75rem;
  padding-top: 5px;
}
@media screen and (min-width: 768px) {
  .c-title-h3.-activities .eng {
    font-size: 1.25rem;
  }
}

.p-front-activity__list {
  margin-top: 2.5rem;
}
@media screen and (min-width: 1024px) {
  .p-front-activity__list {
    margin-top: 0;
  }
}

.p-front-activity__item {
  border-top: 10px solid var(--main-c);
  padding-top: 2rem;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-front-activity__item {
    padding-top: 2rem;
  }
}
@media screen and (min-width: 1280px) {
  .p-front-activity__item:not(.-hasChild) {
    display: grid;
    grid-template-columns: 32% minmax(0, 1fr);
    gap: 10px 5%;
  }
}
.p-front-activity__item + .p-front-activity__item {
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .p-front-activity__item + .p-front-activity__item {
    margin-top: 10rem;
  }
}
.p-front-activity__item.-hasChild .p-front-activity__item-body:not(.-data05) {
  padding-top: 0;
}
.p-front-activity__item .logo {
  max-width: 498px;
  aspect-ratio: 1/1;
  background-color: var(--bg-c);
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .p-front-activity__item .logo {
    border-radius: 30px;
  }
}
.p-front-activity__item:nth-child(4) .p-front-activity__item-top br {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-front-activity__item:nth-child(4) .p-front-activity__item-top br {
    display: none;
  }
}

.p-front-activity__item-top {
  grid-area: 1/1/2/3;
}
.p-front-activity__item-top .c-title-h2 {
  display: block;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .p-front-activity__item-top .c-title-h2 .number {
    margin-right: 25px;
  }
}
.p-front-activity__item-top .c-title-h2.bl-sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .p-front-activity__item-top .c-title-h2.bl-sp {
    display: none;
  }
}

.p-front-activity__item-top.-data05 {
  margin-bottom: 60px;
}

@media screen and (min-width: 1280px) {
  .p-front-activity__content-item {
    display: grid;
    grid-template-columns: 38% minmax(0, 1fr);
    gap: 6%;
  }
}
.p-front-activity__content-item + .p-front-activity__content-item {
  margin-top: 6rem;
}

.p-front-activity__item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  font-size: clamp(1.25rem, 0.9423rem + 1.5385vw, 2rem);
  font-weight: bold;
  color: var(--main-c);
}
@media screen and (min-width: 768px) {
  .p-front-activity__item-title {
    gap: 1rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-front-activity__item-title span {
  display: inline-block;
  background-color: var(--main-c);
  color: var(--white);
  font-family: "Raleway", sans-serif;
  font-size: clamp(0.75rem, 0.5449rem + 1.0256vw, 1.25rem);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2px 10px;
  border-radius: 2rem;
}
@media screen and (min-width: 768px) {
  .p-front-activity__item-title span {
    padding: 3px 1.2rem;
  }
}
.p-front-activity__item-title.-sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .p-front-activity__item-title.-sp {
    display: none;
  }
}
.p-front-activity__item-title.-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-front-activity__item-title.-pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.p-front-activity__item-head > * + * {
  margin-top: 2rem;
}
.p-front-activity__item-head > .title-wrapper {
  display: grid;
  grid-template-columns: 45% minmax(0, 1fr);
  gap: 5%;
}
@media screen and (min-width: 768px) {
  .p-front-activity__item-head > .title-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
    margin-top: 36px;
  }
  .p-front-activity__item-head > .title-wrapper.-data05 {
    margin-top: 0;
  }
}
.p-front-activity__item-head .logo {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (min-width: 768px) {
  .p-front-activity__item-head .logo {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.p-front-activity__item-head .c-title-h2,
.p-front-activity__item-head .p-front-activity__item-title {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (min-width: 768px) {
  .p-front-activity__item-head .c-title-h2,
  .p-front-activity__item-head .p-front-activity__item-title {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.bl-sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .bl-sp {
    display: none;
  }
}

.p-front-activity__item-body {
  padding-top: 3rem;
}
.p-front-activity__item-body > * + * {
  margin-top: 3rem;
}
@media screen and (min-width: 1280px) {
  .p-front-activity__item-body {
    padding-top: 0;
  }
}
.p-front-activity__item-body.-data05 {
  padding-top: 0;
}
@media screen and (min-width: 768px) {
  .p-front-activity__item-body.-data05 {
    padding-top: 3rem;
  }
}
@media screen and (min-width: 1280px) {
  .p-front-activity__item-body.-data05 {
    padding-top: 0;
  }
}

.p-front-activity__item-wrap:nth-child(2) {
  margin-top: 20px;
}

.p-front-activity__item-wrap.-data05 {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-front-activity__item-wrap.-data05 {
    margin-top: 1rem;
  }
}

.p-front-activity__item-wrap .aright,
.p-front-activity__item-new .-newpost .aright,
.p-front-new .-newpost .aright {
  text-align: right;
}
.p-front-activity__item-wrap .c-link,
.p-front-activity__item-new .-newpost .c-link,
.p-front-new .-newpost .c-link {
  position: relative;
  font-size: 0.75rem;
  margin-bottom: 10px;
  display: inline-block;
  letter-spacing: 0.15em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-front-activity__item-wrap .c-link::before,
.p-front-activity__item-new .-newpost .c-link::before,
.p-front-new .-newpost .c-link::before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("../images/icons/look.svg");
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: -25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-front-activity__item-wrap .c-link:hover,
.p-front-activity__item-new .-newpost .c-link:hover,
.p-front-new .-newpost .c-link:hover {
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .p-front-activity__item-wrap .c-link,
  .p-front-activity__item-new .-newpost .c-link,
  .p-front-new .-newpost .c-link {
    display: none;
  }
}
.p-front-activity__item-wrap .c-link.-pc,
.p-front-activity__item-new .-newpost .c-link.-pc,
.p-front-new .-newpost .c-link.-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-front-activity__item-wrap .c-link.-pc,
  .p-front-activity__item-new .-newpost .c-link.-pc,
  .p-front-new .-newpost .c-link.-pc {
    display: inline-block;
  }
}

.p-front-activity__item-new .-newpost .c-link,
.p-front-new .-newpost .c-link {
  display: block;
}

.p-front-activity__item-new .jpn {
  padding-left: 15px;
}
@media screen and (min-width: 768px) {
  .p-front-activity__item-new .jpn {
    padding-left: 20px;
  }
}
.p-front-activity__item-new .jpn:after {
  content: "";
  width: 3px;
  height: 70%;
  background-color: #14283C;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: unset;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .p-front-activity__item-new .jpn:after {
    width: 5px;
    height: 80%;
  }
}

.p-front-activity__item-company,
.p-front-activity__item-news {
  display: grid;
}
@media screen and (min-width: 768px) {
  .p-front-activity__item-company,
  .p-front-activity__item-news {
    grid-template-columns: 30% minmax(0, 1fr);
    gap: 1rem;
    grid-template-rows: subgrid;
  }
}
.p-front-activity__item-company .head,
.p-front-activity__item-news .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  letter-spacing: 0.04em;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .p-front-activity__item-company .head,
  .p-front-activity__item-news .head {
    background-color: var(--main-c);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: var(--white);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 10px;
    padding: 1rem;
    aspect-ratio: 1.3/1;
    margin-bottom: 0;
  }
}
.p-front-activity__item-company .head h5,
.p-front-activity__item-news .head h5 {
  letter-spacing: 0.15em;
}
@media screen and (min-width: 768px) {
  .p-front-activity__item-company .head .c-link,
  .p-front-activity__item-news .head .c-link {
    color: var(--white);
  }
}
.p-front-activity__item-company .body,
.p-front-activity__item-news .body {
  background-color: var(--bg-c);
  border-radius: 10px;
  overflow: hidden;
  height: 140px;
  padding: 30px 20px 30px 40px;
}
@media screen and (min-width: 768px) {
  .p-front-activity__item-company .body,
  .p-front-activity__item-news .body {
    gap: 1rem;
    height: unset;
  }
}
.p-front-activity__item-company .body__list,
.p-front-activity__item-news .body__list {
  overflow-y: scroll;
  height: 100%;
  gap: 0.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-front-activity__item-company .body__list::-webkit-scrollbar,
.p-front-activity__item-news .body__list::-webkit-scrollbar {
  width: 13px;
}
.p-front-activity__item-company .body__list::-webkit-scrollbar-track,
.p-front-activity__item-news .body__list::-webkit-scrollbar-track {
  background-color: transparent;
}
.p-front-activity__item-company .body__list::-webkit-scrollbar-thumb,
.p-front-activity__item-news .body__list::-webkit-scrollbar-thumb {
  background-color: #C0C0C0;
  border-radius: 8px;
}
.p-front-activity__item-company .company,
.p-front-activity__item-company .news,
.p-front-activity__item-news .company,
.p-front-activity__item-news .news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-front-activity__item-company .company:first-child:before,
.p-front-activity__item-company .news:first-child:before,
.p-front-activity__item-news .company:first-child:before,
.p-front-activity__item-news .news:first-child:before {
  content: "New";
  font-family: "Raleway", sans-serif;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: bold;
  border-radius: 20px;
  border: solid 1px var(--red);
  padding: 4px 8px;
  letter-spacing: 0;
  margin-left: 1em;
  line-height: 1;
}
.p-front-activity__item-company .company a,
.p-front-activity__item-company .news a,
.p-front-activity__item-news .company a,
.p-front-activity__item-news .news a {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.p-front-activity__item-company .company a:hover,
.p-front-activity__item-company .news a:hover,
.p-front-activity__item-news .company a:hover,
.p-front-activity__item-news .news a:hover {
  opacity: 0.6;
}

.p-front-activity__item-slider {
  position: relative;
  overflow: hidden;
  margin-top: 1rem;
}
.p-front-activity__item-slider .swiper-button-prev,
.p-front-activity__item-slider .swiper-button-next {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-front-activity__item-slider .swiper-button-prev,
  .p-front-activity__item-slider .swiper-button-next {
    display: grid;
    width: 40px;
    height: 183px;
  }
}
.p-front-activity__item-slider .swiper-button-prev:after,
.p-front-activity__item-slider .swiper-button-next:after {
  font-size: 1rem;
}
.p-front-activity__item-slider .swiper-button-prev {
  left: 0;
}
.p-front-activity__item-slider .swiper-button-next {
  right: 0;
}

.p-front-activity__slide-thumbnail {
  overflow: hidden;
  border-radius: 10px;
  width: 100%;
  height: 240px;
}
.p-front-activity__slide-thumbnail .image {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.p-front-activity__slide-title {
  font-family: "Zen Old Mincho", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Sawarabi Mincho", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  color: var(--darkgrey);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.p-contact input[type=submit],
.p-contact input[type=button] {
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}
.p-contact input[type=submit]::-webkit-search-decoration,
.p-contact input[type=button]::-webkit-search-decoration {
  display: none;
}
.p-contact input[type=submit]::focus,
.p-contact input[type=button]::focus {
  outline-offset: -2px;
}
.p-contact.-confirm .c-form-item dd {
  padding-left: 1.2em;
}

.p-contact-container {
  margin-top: 3rem;
  background-color: var(--bg-c);
  border-radius: 15px;
  padding: 3rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-contact-container {
    border-radius: 30px;
    margin-top: 5rem;
    padding: 10rem 6rem;
  }
}
.p-contact-container > * + * {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-contact-container > * + * {
    margin-top: 5rem;
  }
}

.p-contact-head {
  max-width: 800px;
  margin-inline: auto;
}
.p-contact-head .title {
  font-size: clamp(1.5rem, 1.0897rem + 2.0513vw, 3rem);
  color: var(--main-c);
}

.p-contact-navigation {
  border-top: 1px solid var(--border-c);
  border-bottom: 1px solid var(--border-c);
  padding: 1.5rem 0;
}
@media screen and (min-width: 768px) {
  .p-contact-navigation {
    padding: 3rem 0;
  }
}

.p-contact-navigation__list {
  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: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-contact-navigation__list {
    gap: 5rem;
  }
}

.p-contact-navigation__item {
  position: relative;
  font-size: clamp(0.75rem, 0.5936rem + 1.2821vw, 1.875rem);
  font-weight: bold;
  color: var(--grey);
}
.p-contact-navigation__item.-active {
  color: var(--darkgrey);
}
.p-contact-navigation__item:not(:last-child):after {
  content: "";
  display: block;
  height: 15px;
  width: 15px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-top: solid 2px var(--border-c);
  border-right: solid 2px var(--border-c);
  position: absolute;
  top: 0;
  bottom: 0;
  right: -0.75rem;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .p-contact-navigation__item:not(:last-child):after {
    right: -2.5rem;
    height: 30px;
    width: 30px;
  }
}

.l-archive-news__list {
  margin: 60px auto;
}

.l-archive-news__item {
  background-color: #FAFAFA;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .l-archive-news__item {
    padding: 60px;
  }
}
.l-archive-news__item .date {
  font-size: 0.875rem;
  font-weight: bold;
  margin-bottom: 15px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
@media screen and (min-width: 768px) {
  .l-archive-news__item .date {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    gap: 20px;
    font-size: 1.25rem;
  }
}
.l-archive-news__item .c-title-h1--full__cat {
  font-size: 0.75rem;
  border: solid 1px #707070;
  border-radius: 20px;
  padding: 0px 10px;
}
@media screen and (min-width: 768px) {
  .l-archive-news__item .c-title-h1--full__cat {
    font-size: 1rem;
    padding: 2px 10px;
  }
}
.l-archive-news__item .title {
  font-size: 1.125rem;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .l-archive-news__item .title {
    font-size: 1.875rem;
  }
}

.l-article-news__content,
.news-single {
  padding-top: 15px;
}
.l-article-news__content .outer-link,
.news-single .outer-link {
  margin-top: 20px;
}
.l-article-news__content .outer-link a,
.news-single .outer-link a {
  background-color: #fff;
  border: solid 1px #14293C;
  border-radius: 50px;
  padding: 5px 20px;
  margin: 0 20px 10px 0;
  display: inline-block;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-article-news__content .outer-link a:hover,
.news-single .outer-link a:hover {
  background-color: #14293C;
  color: #fff;
}

.news-single .l-archive-news__list {
  margin: 0;
}

@media screen and (min-width: 768px) {
  #news.l-archive-wrapper {
    padding: 8rem 0 3rem;
  }
}
#news .l-article__pagenation {
  padding: 1rem 0;
}
@media screen and (min-width: 768px) {
  #news .l-article__pagenation {
    padding: 60px 0 1rem;
  }
}
#news .l-article__pagenation.-singlenews {
  padding: 2rem 0 0;
}
@media screen and (min-width: 768px) {
  #news .l-article__pagenation.-singlenews {
    padding: 60px 0 1rem;
  }
}

.news-footer .l-footer {
  margin-top: 56px;
}

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

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

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

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

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

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

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

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

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

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

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

.u-mr-xs {
  margin-right: 5px !important;
}

.u-mr-s {
  margin-right: 10px !important;
}

.u-mr-m {
  margin-right: 20px !important;
}

.u-mr-l {
  margin-right: 25px !important;
}

.u-mr-xl {
  margin-right: 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: 45px !important;
  }
  .u-mt-xl {
    margin-top: 80px !important;
  }
  .u-mr-xs {
    margin-right: 10px !important;
  }
  .u-mr-s {
    margin-right: 20px !important;
  }
  .u-mr-m {
    margin-right: 30px !important;
  }
  .u-mr-l {
    margin-right: 45px !important;
  }
  .u-mr-xl {
    margin-right: 80px !important;
  }
}
.u-bg {
  background-color: var(--base-c);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.u-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-red {
  color: var(--red);
}

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