@charset "UTF-8";
/*----------------------------------------
	fonts
----------------------------------------*/
/*----------------------------------------
	Vars
----------------------------------------*/
/*----------------------------------------
	Reset
----------------------------------------*/
html, body, div, span, applet, object,
iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp, small,
strike, strong, sub, sup, tt, var, b, u, i, center,
dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, article,
aside, canvas, details, embed, figure, figcaption, footer,
header, hgroup, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  border: 0;
  font-size: 100%;
  font-style: normal;
  font-weight: normal;
  font: inherit;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

th, td {
  text-align: left;
  vertical-align: top;
}

img {
  border: none;
  vertical-align: top;
}

/*----------------------------------------
	Mediaquery
----------------------------------------*/
/*----------------------------------------
	fonts
----------------------------------------*/
/*----------------------------------------
	Base
----------------------------------------*/
html {
  font-size: 14px;
}
@media screen and (min-width: 769px) {
  html {
    font-size: 15px;
  }
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1;
  letter-spacing: 0.01em;
  background-color: #f9f9f9;
  color: #002d28;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-overflow-scrolling: touch;
  -webkit-text-size-adjust: 100%;
}

img {
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  transition: opacity 0.4s ease;
}
a:link, a:visited {
  color: #002d28;
}

a:hover {
  opacity: 0.7;
}

a[data-rel=external]:after {
  content: "";
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.5em;
  background: transparent url("../image/icon-external.png") no-repeat scroll center center;
  background-size: contain;
  margin-right: 0.5em;
}

/*----------------------------------------
	Setting
----------------------------------------*/
/* font family */
/*----------------------------------------
	Layout
----------------------------------------*/
.l-container {
  position: relative;
  padding-top: 61px;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .l-container {
    padding-top: 81px;
  }
}

.l-limit {
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .l-limit {
    box-sizing: border-box;
    min-width: 1000px;
    max-width: 1600px;
  }
}

.l-frame {
  width: 89.3333333333%;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .l-frame {
    width: 89.0625%;
  }
}

@media screen and (min-width: 769px) {
  .l-column {
    display: flex;
    justify-content: space-between;
  }
}
.l-column-both {
  display: flex;
  justify-content: space-between;
}
.l-column--wrap {
  flex-wrap: wrap;
}
.l-column--reverse {
  flex-direction: row-reverse;
}

/*----------------------------------------
	Header
----------------------------------------*/
.l-header {
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 5.3333333333%;
  background-color: #f9f9f9;
  box-sizing: border-box;
  transition: padding 0.28s ease-out 0s, box-shadow 0.28s ease-out 0s;
}
@media screen and (min-width: 769px) {
  .l-header {
    padding: 10px 3.125%;
  }
}
.l-header::before {
  content: "";
  z-index: 9;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #000000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease-out 0s;
}
.l-header:has(.is-open)::before {
  opacity: 0.6;
  pointer-events: auto;
}
.l-headerTitle {
  width: 60px;
}
@media screen and (min-width: 769px) {
  .l-headerTitle {
    width: 90px;
  }
}
.l-headerButton {
  z-index: 15;
  position: relative;
  width: 26px;
  height: 26px;
}
@media screen and (min-width: 769px) {
  .l-headerButton {
    width: 32px;
    height: 32px;
    cursor: pointer;
    transition: 0.28s ease-out 0s;
  }
}
@media screen and (min-width: 769px) {
  .l-headerButton:hover {
    opacity: 0.6;
  }
}
.l-headerButton span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 26px;
  height: 1px;
  border-radius: 10px;
  background-color: #002d28;
  transition: background-color 0.28s ease-out 0s;
}
@media screen and (min-width: 769px) {
  .l-headerButton span {
    width: 32px;
    height: 2px;
  }
}
.l-headerButton span::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 0;
  width: 100%;
  height: 1px;
  border-radius: 10px;
  background-color: #002d28;
  transition: all 0.28s ease-out 0s;
}
@media screen and (min-width: 769px) {
  .l-headerButton span::before {
    top: -8px;
    height: 2px;
  }
}
.l-headerButton span::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 100%;
  height: 1px;
  border-radius: 10px;
  background-color: #002d28;
  transition: all 0.28s ease-out 0s;
}
@media screen and (min-width: 769px) {
  .l-headerButton span::after {
    top: 8px;
    height: 2px;
  }
}
.l-headerButton.is-open span {
  background-color: transparent;
}
.l-headerButton.is-open span::before {
  top: 0;
  transform: rotate(45deg);
  background-color: #ffffff;
}
.l-headerButton.is-open span::after {
  top: 0;
  transform: rotate(-45deg);
  background-color: #ffffff;
}
.l-header.is-active {
  padding: 6px 5.3333333333%;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 769px) {
  .l-header.is-active {
    padding: 5px 3.125%;
  }
}

.l-headerGnav {
  z-index: 14;
  position: fixed;
  top: 6px;
  right: 6px;
  width: 290px;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #002d28;
  border-radius: 8px;
  transform: scale(0);
  transform-origin: right top;
}
@media screen and (min-width: 769px) {
  .l-headerGnav {
    border-radius: 10px;
  }
}
@media screen and (min-width: 769px) {
  .l-headerGnav {
    top: 10px;
    right: 10px;
    width: 460px;
    height: auto;
  }
}
.l-headerGnav .l-global {
  display: flex;
  flex-direction: column;
  gap: 28px 0;
  padding: 60px 20px 60px 30px;
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  .l-headerGnav .l-global {
    gap: 36px 0;
    padding: 80px 40px 80px 40px;
  }
}
.l-headerGnav .l-global li a {
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 26px;
  line-height: 1.3;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 769px) {
  .l-headerGnav .l-global li a {
    font-size: 30px;
    cursor: pointer;
  }
}
.l-headerGnav .l-global li a span {
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 9px;
  line-height: 1;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 769px) {
  .l-headerGnav .l-global li a span {
    font-size: 10px;
  }
}

/*----------------------------------------
	Footer
----------------------------------------*/
.l-loop {
  overflow: hidden;
  white-space: nowrap;
}

.l-loop__wrapper {
  display: inline-block;
  animation: scroll-loop 20s linear infinite;
}
@media screen and (min-width: 769px) {
  .l-loop__wrapper {
    animation: scroll-loop 20s linear infinite;
  }
}

.l-loop__wrapper__items {
  width: 10.6666666667%;
  display: inline-block;
}
@media screen and (min-width: 769px) {
  .l-loop__wrapper__items {
    width: 9.5890410959%;
  }
}

@keyframes scroll-loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.l-footer {
  margin-top: 10px;
  padding: 20px;
  background-color: #828282;
}
.l-footerCopyright {
  text-align: center;
}
.l-footerCopyright small {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 10px;
  color: #ffffff;
}

/*----------------------------------------
	Component
----------------------------------------*/
.c-pageTitle {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 38px;
  line-height: 1.3;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 769px) {
  .c-pageTitle {
    font-size: 56px;
  }
}
.c-pageTitle span {
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 769px) {
  .c-pageTitle span {
    font-size: 14px;
  }
}
.c-pageTitle--sm {
  font-size: 24px;
  line-height: 1.1;
}
@media screen and (min-width: 769px) {
  .c-pageTitle--sm {
    font-size: 28px;
  }
}
.c-pageTitle--sm span {
  font-size: 9px;
}
@media screen and (min-width: 769px) {
  .c-pageTitle--sm span {
    font-size: 9px;
  }
}
.c-pageTitle--lg {
  font-size: 44px;
  line-height: 1.1;
}
@media screen and (min-width: 769px) {
  .c-pageTitle--lg {
    font-size: 80px;
  }
}
.c-pageTitle--lg span {
  font-size: 13px;
}
@media screen and (min-width: 769px) {
  .c-pageTitle--lg span {
    font-size: 15px;
  }
}
.c-pageTitle--white {
  color: #ffffff;
}
.c-pageTitle--white span {
  color: #ffffff;
}

.c-button a {
  display: flex;
  align-items: center;
  gap: 0 6px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 11px;
}
@media screen and (min-width: 769px) {
  .c-button a {
    font-size: 12px;
  }
}
.c-button a img {
  width: 18px;
}
@media screen and (min-width: 769px) {
  .c-button a img {
    width: 22px;
  }
}

.c-buttonFrame {
  display: flex;
  justify-content: center;
}
.c-buttonFrame a {
  text-align: center;
  display: block;
  width: 100%;
  max-width: 270px;
  margin: 0 auto;
  padding: 20px;
  border: 2px solid #002d28;
  border-radius: 200px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 15px;
}
@media screen and (min-width: 769px) {
  .c-buttonFrame a {
    max-width: 280px;
    font-size: 16px;
  }
}
.c-breadcrumbs {
  padding: 10px 5.3333333333%;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .c-breadcrumbs {
    max-width: 1280px;
    margin: 0 auto;
    padding: 10px 3.125%;
  }
}
.c-breadcrumbs ul {
  display: flex;
  justify-content: flex-end;
}
.c-breadcrumbs ul li {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #a8b2b0;
}
@media screen and (min-width: 769px) {
  .c-breadcrumbs ul li {
    font-size: 11px;
  }
}
.c-breadcrumbs ul li::after {
  content: ">";
  display: inline-block;
  padding: 0 4px;
  color: #002d28;
}
@media screen and (min-width: 769px) {
  .c-breadcrumbs ul li::after {
    padding: 0 5px;
  }
}
.c-breadcrumbs ul li:last-of-type::after {
  display: none;
}
.c-breadcrumbs ul li a {
  color: #002d28;
}

.c-page-hero {
  width: 89.3333333333%;
  margin: 0 auto;
  padding: 40px 0 50px;
  box-sizing: border-box;
  border-bottom: 1px solid #c1d6d3;
}
@media screen and (min-width: 769px) {
  .c-page-hero {
    width: 84.375%;
    max-width: 1280px;
    padding: 70px 0 80px;
  }
}

.c-page-inner {
  width: 89.3333333333%;
  margin: 0 auto;
  padding: 50px 0 80px;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .c-page-inner {
    width: 84.375%;
    max-width: 1280px;
    padding: 80px 0 120px;
  }
}
.c-page-inner:has(+ .c-page-inner) {
  padding-bottom: 0;
}

.c-page-articles {
  display: flex;
  flex-direction: column;
  gap: 40px 0;
}
@media screen and (min-width: 769px) {
  .c-page-articles {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px 0;
  }
}
@media screen and (min-width: 769px) {
  .c-page-articles::after {
    content: "";
    display: block;
    width: calc(30.5555555556% - 8px);
  }
}
.c-page-articles__heading {
  margin-bottom: 20px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
  line-height: 1.45;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 769px) {
  .c-page-articles__heading {
    margin-bottom: 24px;
    font-size: 24px;
  }
}
.c-page-articles__item {
  width: calc(100% - 8px);
}
@media screen and (min-width: 769px) {
  .c-page-articles__item {
    width: calc(30.5555555556% - 8px);
  }
}
.c-page-articles__item a:hover {
  opacity: 1;
}
.c-page-articles__item a:hover .c-page-articles__item__thumb {
  box-shadow: 0px 0px 0px 0 #173f39;
}
.c-page-articles__item__thumb {
  position: relative;
  margin-bottom: 8px;
  box-shadow: 8px 8px 0px 0 #173f39;
  border-radius: 10px;
  transition: box-shadow 0.28s ease-out 0s;
}
.c-page-articles__item__thumb picture, .c-page-articles__item__thumb img {
  display: block;
  border-radius: 10px;
  overflow: hidden;
}
.c-page-articles__item__state {
  display: flex;
  align-items: center;
  gap: 0 12px;
  margin: 20px 0 4px;
}
@media screen and (min-width: 769px) {
  .c-page-articles__item__state {
    gap: 0 12px;
    margin: 16px 0 4px;
  }
}
.c-page-articles__item__state time {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 769px) {
  .c-page-articles__item__state time {
    font-size: 11px;
  }
}
.c-page-articles__item__state span {
  display: inline-block;
  padding: 3px 10px 3px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 11px;
  line-height: 1.45;
  border: 1.5px solid #002d28;
  border-radius: 200px;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .c-page-articles__item__state span {
    font-size: 12px;
  }
}
.c-page-articles__item__heading {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 769px) {
  .c-page-articles__item__heading {
    font-size: 16px;
  }
}
.c-page-articles + .c-buttonFrame {
  margin-top: 40px;
}
@media screen and (min-width: 769px) {
  .c-page-articles + .c-buttonFrame {
    margin-top: 50px;
  }
}

.c-pagination {
  margin: 70px 0;
}
@media screen and (min-width: 769px) {
  .c-pagination {
    margin: 80px 0;
  }
}
.c-pagination ul {
  display: flex;
  justify-content: center;
  gap: 0 10px;
}
@media screen and (min-width: 769px) {
  .c-pagination ul {
    gap: 0 12px;
  }
}
.c-pagination ul li {
  display: flex;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (min-width: 769px) {
  .c-pagination ul li {
    font-size: 14px;
  }
}
.c-pagination ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 2px solid #002d28;
  border-radius: 50%;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .c-pagination ul li a {
    width: 40px;
    height: 40px;
    transition: all 0.28s ease-out 0s;
  }
}
@media screen and (min-width: 769px) {
  .c-pagination ul li a:hover {
    opacity: 1;
    color: #ffffff;
    background-color: #002d28;
  }
}
.c-pagination ul li span.current {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #ffffff;
  background-color: #002d28;
  border: 2px solid #002d28;
  border-radius: 50%;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .c-pagination ul li span.current {
    width: 40px;
    height: 40px;
  }
}
.c-pagination ul li.page-next a, .c-pagination ul li.page-prev a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  border: none;
}
.c-pagination ul li.page-next a:hover, .c-pagination ul li.page-prev a:hover {
  opacity: 0.6;
  color: #002d28;
  background-color: transparent;
}
.c-pagination ul li.is-active span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #ffffff;
  background-color: #002d28;
  border: 2px solid #002d28;
  border-radius: 50%;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .c-pagination ul li.is-active span {
    width: 40px;
    height: 40px;
    transition: all 0.28s ease-out 0s;
  }
}

.c-page-single {
  margin-bottom: 80px;
}
@media screen and (min-width: 769px) {
  .c-page-single {
    width: 70.3703703704%;
    min-width: 760px;
    margin: 0 auto 80px;
  }
}
.c-page-single__head {
  margin-bottom: 50px;
}
@media screen and (min-width: 769px) {
  .c-page-single__head {
    margin-bottom: 70px;
  }
}
.c-page-single__head__state {
  display: flex;
  align-items: center;
  gap: 0 10px;
  margin: 20px 0 4px;
}
@media screen and (min-width: 769px) {
  .c-page-single__head__state {
    gap: 0 12px;
    margin: 16px 0 0;
  }
}
.c-page-single__head__state time {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 769px) {
  .c-page-single__head__state time {
    font-size: 12px;
  }
}
.c-page-single__head__state span {
  display: inline-block;
  padding: 3px 10px 3px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 11px;
  line-height: 1.45;
  border: 1.5px solid #002d28;
  border-radius: 200px;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .c-page-single__head__state span {
    font-size: 13px;
  }
}
.c-page-single__head__heading {
  margin-bottom: 20px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 769px) {
  .c-page-single__head__heading {
    font-size: 28px;
    line-height: 50px;
  }
}
.c-page-single__head__thumb {
  position: relative;
  width: calc(100% - 8px);
  margin-bottom: 8px;
  box-shadow: 8px 8px 0px 0 #173f39;
  border-radius: 10px;
  transition: box-shadow 0.28s ease-out 0s;
}
@media screen and (min-width: 769px) {
  .c-page-single__head__thumb {
    width: calc(80% - 8px);
    margin: 0 auto 8px;
  }
}
.c-page-single__head__thumb picture, .c-page-single__head__thumb img {
  display: block;
  border-radius: 10px;
  overflow: hidden;
}
.c-page-single__body * {
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  .c-page-single__body * {
    margin-bottom: 20px;
  }
}
.c-page-single__body a {
  font-weight: bold;
  color: #3d83d8;
}
.c-page-single__body em {
  font-weight: bold;
  background-color: #f9ff00;
}
.c-page-single__body strong {
  font-weight: bold;
}
.c-page-single__body p {
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0;
}
@media screen and (min-width: 769px) {
  .c-page-single__body p {
    font-size: 16px;
  }
}
.c-page-single__body ul, .c-page-single__body ol {
  display: flex;
  flex-direction: column;
  gap: 6px 0;
  padding-left: 15px;
}
@media screen and (min-width: 769px) {
  .c-page-single__body ul, .c-page-single__body ol {
    gap: 7px 0;
  }
}
.c-page-single__body ul li, .c-page-single__body ol li {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0;
}
@media screen and (min-width: 769px) {
  .c-page-single__body ul li, .c-page-single__body ol li {
    font-size: 15px;
  }
}
.c-page-single__body ul li {
  list-style: disc;
}
.c-page-single__body ul li::marker {
  font-size: 10px;
}
.c-page-single__body ol {
  list-style: decimal;
}
.c-page-single__body img {
  display: block;
  margin: 20px auto 40px;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .c-page-single__body img {
    width: 80%;
    margin: 20px auto 60px;
  }
}
.c-page-single__body h2, .c-page-single__body h3, .c-page-single__body h4, .c-page-single__body h5, .c-page-single__body h6 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  font-style: normal;
  margin: 2em 0 1em;
}
.c-page-single__body h2 {
  font-size: 32px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 769px) {
  .c-page-single__body h2 {
    font-size: 40px;
  }
}
.c-page-single__body h3 {
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 769px) {
  .c-page-single__body h3 {
    font-size: 28px;
  }
}
.c-page-single__body h4 {
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 769px) {
  .c-page-single__body h4 {
    font-size: 20px;
  }
}
.c-page-single__body h5 {
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 769px) {
  .c-page-single__body h5 {
    font-size: 16px;
  }
}

/*----------------------------------------
	Utility
----------------------------------------*/
.u-hidden {
  display: none;
}

@media screen and (max-width: 768px) {
  .u-hidden-sp {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .u-hidden-pc {
    display: none;
  }
}

.u-left {
  text-align: left;
}

.u-center {
  text-align: center;
}

.u-right {
  text-align: right;
}

.u-red {
  color: red;
}

.u-bg-red {
  background-color: red;
}

/* 
* 余白打ち消しクラス
*/
.u-noRadius {
  border-radius: 0 !important;
}

.u-noMargin {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.u-noMargin-top {
  margin-top: 0 !important;
}

.u-noMargin-bottom {
  margin-bottom: 0 !important;
}

.u-noPadding {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.u-noPadding-top {
  padding-top: 0 !important;
}

.u-noPadding-bottom {
  padding-bottom: 0 !important;
}

/* 
* 余白
*/
.-padding-t {
  padding-top: 10px;
}
.-padding-t.-x2 {
  padding-top: 20px;
}
.-padding-t.-x4 {
  padding-top: 40px;
}
.-padding-t.-x6 {
  padding-top: 60px;
}
.-padding-t.-x8 {
  padding-top: 80px;
}
.-padding-t.-x10 {
  padding-top: 100px;
}

.-padding-b {
  padding-bottom: 10px;
}
.-padding-b.-x2 {
  padding-bottom: 20px;
}
.-padding-b.-x4 {
  padding-bottom: 40px;
}
.-padding-b.-x6 {
  padding-bottom: 60px;
}
.-padding-b.-x8 {
  padding-bottom: 80px;
}
.-padding-b.-x10 {
  padding-bottom: 100px;
}

.-margin-t {
  margin-top: 10px;
}
.-margin-t.-x2 {
  margin-top: 20px;
}
.-margin-t.-x4 {
  margin-top: 40px;
}
.-margin-t.-x6 {
  margin-top: 60px;
}
.-margin-t.-x8 {
  margin-top: 80px;
}
.-margin-t.-x10 {
  margin-top: 100px;
}

.-margin-b {
  margin-bottom: 10px;
}
.-margin-b.-x2 {
  margin-bottom: 20px;
}
.-margin-b.-x4 {
  margin-bottom: 40px;
}
.-margin-b.-x6 {
  margin-bottom: 60px;
}
.-margin-b.-x8 {
  margin-bottom: 80px;
}
.-margin-b.-x10 {
  margin-bottom: 100px;
}

/*----------------------------------------
	Page Home
----------------------------------------*/
.t-hero {
  --mask-position-lead: 100%;
  --mask-position-image: 100%;
  --opacity-news: 0;
  --opacity-button: 0;
  --transform-y-news: 20px;
  --transform-y-button: 20px;
  --event: "none";
  margin-top: 10px;
  margin-bottom: 60px;
}
@media screen and (min-width: 769px) {
  .t-hero {
    margin-top: 0;
    margin-bottom: 100px;
  }
}
.t-heroInner {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
  padding: 0 5.3333333333%;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .t-heroInner {
    flex-direction: row-reverse;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 3.125%;
  }
}
.t-heroInnerLead {
  width: 35.8208955224%;
  max-width: 180px;
  margin-left: auto;
  -webkit-mask-image: linear-gradient(90deg, #fff 24%, transparent 33%);
  mask-image: linear-gradient(90deg, #fff 24%, transparent 33%);
  -webkit-mask-position: var(--mask-position-lead) 0;
  mask-position: var(--mask-position-lead) 0;
  -webkit-mask-size: 400% 400%;
  mask-size: 400% 400%;
}
@media screen and (min-width: 769px) {
  .t-heroInnerLead {
    flex: 1;
    width: auto;
    max-width: initial;
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px) {
  .t-heroInnerLead picture, .t-heroInnerLead img {
    display: block;
    width: 55.3571428571%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px) {
  .t-heroInnerMain {
    width: 76.4705882353%;
  }
}
.t-heroInnerMain__image {
  border-radius: 8px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, #fff 24%, transparent 33%);
  mask-image: linear-gradient(90deg, #fff 24%, transparent 33%);
  -webkit-mask-position: var(--mask-position-image) 0;
  mask-position: var(--mask-position-image) 0;
  -webkit-mask-size: 400% 400%;
  mask-size: 400% 400%;
}
@media screen and (min-width: 769px) {
  .t-heroInnerMain__image {
    border-radius: 10px;
  }
}
.t-heroInnerMain__news {
  opacity: var(--opacity-news);
  pointer-events: var(--event);
  transform: translateY(var(--transform-y-news));
  margin-bottom: 10px;
  padding: 20px 0;
  border-bottom: 1px solid #c1d6d3;
}
@media screen and (min-width: 769px) {
  .t-heroInnerMain__news {
    display: flex;
    margin-bottom: 12px;
    padding: 30px 0;
  }
}
@media screen and (min-width: 769px) {
  .t-heroInnerMain__news .c-pageTitle {
    width: 120px;
  }
}
.t-heroInnerMain__news__list {
  display: flex;
  flex-direction: column;
  gap: 8px 0;
  margin-top: 20px;
}
@media screen and (min-width: 769px) {
  .t-heroInnerMain__news__list {
    flex: 1;
    gap: 8px 0;
    margin-top: 0;
  }
}
.t-heroInnerMain__news__list li a {
  display: flex;
  gap: 0 14px;
}
@media screen and (min-width: 769px) {
  .t-heroInnerMain__news__list li a {
    gap: 0 20px;
  }
}
.t-heroInnerMain__news__list li a time {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 12px;
  line-height: 1.45;
}
@media screen and (min-width: 769px) {
  .t-heroInnerMain__news__list li a time {
    font-size: 13px;
  }
}
.t-heroInnerMain__news__list li a p {
  padding-top: 1px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 12px;
  line-height: 1.45;
}
@media screen and (min-width: 769px) {
  .t-heroInnerMain__news__list li a p {
    font-size: 13px;
  }
}
.t-heroInnerMain .c-button {
  display: flex;
  justify-content: flex-end;
  opacity: var(--opacity-button);
  pointer-events: var(--event);
  transform: translateY(var(--transform-y-news));
}

.t-section + .t-section {
  margin-top: 40px;
}
.t-sectionFrame {
  position: relative;
  width: 89.3333333333%;
  margin: 0 auto;
  padding: 40px 5.9701492537% 50px;
  border-radius: 8px;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .t-sectionFrame {
    border-radius: 10px;
  }
}
@media screen and (min-width: 769px) {
  .t-sectionFrame {
    width: 92.96875%;
    max-width: 1190px;
    padding: 66px 0 100px;
  }
}
.t-sectionFrame .c-pageTitle {
  text-align: center;
  margin-bottom: 40px;
  color: #ffffff;
}
.t-sectionFrame--feature {
  background-color: #79c9a2;
}
@media screen and (min-width: 769px) {
  .t-sectionFrame--feature .c-pageTitle {
    text-align: left;
  }
}
.t-sectionFrame--message {
  background-color: #7993c6;
}
@media screen and (min-width: 769px) {
  .t-sectionFrame--message .c-pageTitle {
    text-align: center;
  }
}
.t-sectionOuter {
  position: relative;
  width: 89.3333333333%;
  margin: 0 auto;
  padding: 20px 0 80px;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .t-sectionOuter {
    width: 75%;
    max-width: 960px;
    padding: 48px 0 66px;
  }
}
.t-sectionOuter--company .c-pageTitle {
  text-align: center;
}
@media screen and (min-width: 769px) {
  .t-sectionOuter--company .c-pageTitle {
    text-align: left;
  }
}
@media screen and (min-width: 769px) {
  .t-section__column {
    display: flex;
    padding: 0 8.9075630252%;
  }
}
@media screen and (min-width: 769px) {
  .t-section__column .c-pageTitle {
    flex: 1;
    min-width: 270px;
  }
}

.t-layoutColumn {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
}
@media screen and (min-width: 769px) {
  .t-layoutColumn {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 70.9278350515%;
  }
}
.t-layoutColumnItem {
  z-index: 1;
  position: relative;
  padding: 30px 6.8965517241%;
  background-color: #f4f4f4;
  border-radius: 8px;
  box-shadow: 8px 8px 0px 0 #173f39;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .t-layoutColumnItem {
    border-radius: 10px;
  }
}
@media screen and (min-width: 769px) {
  .t-layoutColumnItem {
    width: 47.9651162791%;
    padding: 30px;
  }
}
.t-layoutColumnItem__heading {
  text-align: center;
  margin-bottom: 20px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
}
@media screen and (min-width: 769px) {
  .t-layoutColumnItem__heading {
    font-size: 20px;
  }
}
.t-layoutColumnItem__icon {
  width: 28%;
  max-width: 88px;
  margin: 20px auto;
}
@media screen and (min-width: 769px) {
  .t-layoutColumnItem__icon {
    width: 78px;
  }
}
.t-layoutColumnItem__text {
  font-size: 14px;
  line-height: 1.8;
}
@media screen and (min-width: 769px) {
  .t-layoutColumnItem__text {
    font-size: 14px;
  }
}
.t-layoutColumnItem__memo {
  display: flex;
  flex-direction: column;
  gap: 3px 0;
}
@media screen and (min-width: 769px) {
  .t-layoutColumnItem__memo {
    gap: 4px 0;
  }
}
.t-layoutColumnItem__memo li {
  font-size: 10px;
  line-height: 1.3;
}
@media screen and (min-width: 769px) {
  .t-layoutColumnItem__memo li {
    font-size: 11px;
  }
}
.t-layoutColumnItem .t-layoutColumnItem__text + .t-layoutColumnItem__memo {
  margin-top: 10px;
}

.t-layoutRow {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
}
@media screen and (min-width: 769px) {
  .t-layoutRow {
    gap: 40px 0;
    width: 62.1848739496%;
    margin: 0 auto;
  }
}
.t-layoutRowItem {
  z-index: 1;
  position: relative;
  width: calc(100% - 30px);
  padding: 30px 6.8965517241%;
  background-color: #f4f4f4;
  border-radius: 8px;
  box-shadow: 8px 8px 0px 0 #2c446b;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .t-layoutRowItem {
    border-radius: 10px;
  }
}
@media screen and (min-width: 769px) {
  .t-layoutRowItem {
    width: calc(100% - 90px);
    padding: 30px 50px;
    border-radius: 300px;
  }
}
.t-layoutRowItem:nth-child(2n-1)::before {
  content: "";
  position: absolute;
  right: -46px;
  bottom: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #f4f4f4;
  box-shadow: -2px 2px 0px 0 #2c446b;
}
@media screen and (min-width: 769px) {
  .t-layoutRowItem:nth-child(2n-1)::before {
    right: -90px;
    width: 45px;
    height: 45px;
    box-shadow: -3px 3px 0px 0 #2c446b;
  }
}
.t-layoutRowItem:nth-child(2n-1)::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #f4f4f4;
  box-shadow: -2px 2px 0px 0 #2c446b;
}
@media screen and (min-width: 769px) {
  .t-layoutRowItem:nth-child(2n-1)::after {
    right: -42px;
    bottom: 42px;
    width: 20px;
    height: 20px;
    box-shadow: -3px 3px 0px 0 #2c446b;
  }
}
.t-layoutRowItem:nth-child(2n) {
  margin-left: auto;
}
.t-layoutRowItem:nth-child(2n)::before {
  content: "";
  position: absolute;
  left: -46px;
  bottom: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #f4f4f4;
  box-shadow: 2px 2px 0px 0 #2c446b;
}
@media screen and (min-width: 769px) {
  .t-layoutRowItem:nth-child(2n)::before {
    left: -90px;
    width: 45px;
    height: 45px;
    box-shadow: 3px 3px 0px 0 #2c446b;
  }
}
.t-layoutRowItem:nth-child(2n)::after {
  content: "";
  position: absolute;
  left: -28px;
  bottom: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #f4f4f4;
  box-shadow: 2px 2px 0px 0 #2c446b;
}
@media screen and (min-width: 769px) {
  .t-layoutRowItem:nth-child(2n)::after {
    left: -42px;
    bottom: 42px;
    width: 20px;
    height: 20px;
    box-shadow: 3px 3px 0px 0 #2c446b;
  }
}
@media screen and (min-width: 769px) {
  .t-layoutRowItem:nth-child(2n) .t-layoutRowItem__category {
    right: 50px;
    left: auto;
  }
}
.t-layoutRowItem__category {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  .t-layoutRowItem__category {
    display: inline-block;
    position: absolute;
    top: -11px;
    left: 50px;
  }
}
.t-layoutRowItem__category span {
  display: inline-block;
  padding: 5px 8px 6px;
  border-radius: 100px;
  color: #ffffff;
  background-color: #2c446b;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 11px;
}
@media screen and (min-width: 769px) {
  .t-layoutRowItem__category span {
    padding: 6px 10px 7px;
    font-size: 12px;
  }
}
.t-layoutRowItem__heading {
  margin-bottom: 4px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 15px;
  line-height: 1.62;
}
@media screen and (min-width: 769px) {
  .t-layoutRowItem__heading {
    font-size: 20px;
    line-height: 1.7;
  }
}
.t-layoutRowItem__text p {
  font-size: 14px;
  line-height: 1.62;
}
@media screen and (min-width: 769px) {
  .t-layoutRowItem__text p {
    font-size: 16px;
    line-height: 1.7;
  }
}
.t-layoutRowItem__text strong {
  display: inline-block;
  background: linear-gradient(transparent 90%, #D04255 90%);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.notice .t-layoutRowItem__category span {
  background-color: #D04255;
}

.t-overview {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}
@media screen and (min-width: 769px) {
  .t-overview {
    flex-direction: row;
    justify-content: space-between;
  }
}
.t-overview__map {
  position: relative;
}
@media screen and (min-width: 769px) {
  .t-overview__map {
    width: 46.875%;
  }
}
@media screen and (min-width: 769px) {
  .t-overview__table {
    width: 47.9166666667%;
  }
}
.t-overview__table tr {
  display: flex;
  padding: 12px 0 13px;
  border-top: 1px solid #c1d6d3;
}
@media screen and (min-width: 769px) {
  .t-overview__table tr {
    padding: 13px 0 14px;
  }
}
.t-overview__table tr:last-of-type {
  border-bottom: 1px solid #c1d6d3;
}
.t-overview__table tr th, .t-overview__table tr td {
  font-size: 13px;
  line-height: 24px;
}
@media screen and (min-width: 769px) {
  .t-overview__table tr th, .t-overview__table tr td {
    font-size: 14px;
    line-height: 24px;
  }
}
.t-overview__table tr th {
  width: 80px;
}
@media screen and (min-width: 769px) {
  .t-overview__table tr th {
    width: 90px;
  }
}
.t-overview__table tr td {
  flex: 1;
}
.t-overview__table tr td a {
  font-weight: bold;
  text-decoration: underline;
}
@media screen and (min-width: 769px) {
  .t-overview__table tr td a:hover {
    text-decoration: none;
    cursor: pointer;
  }
}

.t-icon {
  position: absolute;
  width: 20.8955223881%;
  max-width: 80px;
}
@media screen and (min-width: 769px) {
  .t-icon {
    width: 10.0840336134%;
    max-width: 130px;
    min-width: 100px;
  }
}
.t-icon--1 {
  top: 20px;
  left: 3%;
  transform: rotate(-13deg);
}
@media screen and (min-width: 769px) {
  .t-icon--1 {
    top: 200px;
    left: 1%;
  }
}
.t-icon--2 {
  top: 40px;
  right: 4.5%;
  transform: rotate(16deg);
}
@media screen and (min-width: 769px) {
  .t-icon--2 {
    top: 300px;
    right: auto;
    left: 18%;
  }
}
.t-icon--3 {
  display: none;
}
@media screen and (min-width: 769px) {
  .t-icon--3 {
    display: block;
    bottom: 100px;
    left: 3%;
    transform: rotate(-16deg);
  }
}
.t-icon--4 {
  top: 60px;
  left: 0%;
  transform: rotate(-15deg);
}
@media screen and (min-width: 769px) {
  .t-icon--4 {
    top: 90px;
    left: 9%;
  }
}
.t-icon--5 {
  top: 15px;
  right: 1.5%;
  transform: rotate(19deg);
}
@media screen and (min-width: 769px) {
  .t-icon--5 {
    top: 38px;
    right: 9.8%;
  }
}
.t-icon--6 {
  top: 460px;
  left: -7%;
  transform: rotate(-8deg);
}
@media screen and (min-width: 769px) {
  .t-icon--6 {
    top: auto;
    bottom: 20px;
    left: 4%;
  }
}
.t-icon--7 {
  top: 700px;
  right: -6.5%;
  transform: rotate(12deg);
}
@media screen and (min-width: 769px) {
  .t-icon--7 {
    top: auto;
    bottom: 90px;
    right: 1.5%;
  }
}
.t-icon--8 {
  top: 0px;
  left: -1%;
  transform: rotate(-15deg);
}
@media screen and (min-width: 769px) {
  .t-icon--8 {
    top: 110px;
    left: -12%;
  }
}
.t-icon--9 {
  bottom: -8px;
  transform: rotate(-15deg);
  left: 20%;
}
@media screen and (min-width: 769px) {
  .t-icon--9 {
    top: 40px;
    bottom: auto;
    left: calc(300px + 1%);
  }
}
.t-icon--10 {
  top: 36px;
  right: -3.5%;
  transform: rotate(10deg);
}
@media screen and (min-width: 769px) {
  .t-icon--10 {
    top: 30px;
    right: -9.5%;
  }
}