/* ==================================================
[Style]
    1. setting
	2. foundation
	3. Layout
	4. object

================================================== */
/* --------------------------------------------------
	1. setting
-------------------------------------------------- */
/* --------------------------------------------------
	2. foundation
-------------------------------------------------- */
/* reset */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/*! destyle.css v4.0.1 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  min-width: 0;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3 */
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  margin: 0;
  overflow: visible; /* 2 */
  clear: both;
  color: inherit;
  border-top-width: 1px;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  text-align: inherit;
  text-transform: inherit; /* 2 */
  vertical-align: middle;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border-radius: 0;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
          appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  font: inherit; /* 2 */
  -webkit-appearance: button;
          appearance: button; /* 1 */
}

/**
 * Fix appearance for Firefox
 */
[type=number] {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-collapse: collapse;
  border-color: inherit; /* 1 */
}

caption {
  text-align: left;
}

td,
th {
  padding: 0;
  vertical-align: top;
}

th {
  font-weight: bold;
  text-align: left;
}

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

body {
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.8;
  color: #333;
  word-break: normal;
  word-wrap: normal;
  overflow-wrap: normal;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  word-break: break-all;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  font-style: italic;
  vertical-align: middle;
}

iframe {
  max-width: 100%;
}

input,
button,
select,
textarea {
  font: inherit;
  font-size: 1rem;
  color: #333;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  outline: none;
}

textarea {
  resize: none;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

@media only screen and (max-width: 767px) {
  body {
    font-size: 0.875rem;
  }
}
/* --------------------------------------------------
	3. Layout
-------------------------------------------------- */
/* header */
.l-header {
  padding: 6rem 0 0;
}
.l-header__logo {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: center;
}
.l-header__logo-img {
  width: 7.5rem;
}
.l-header__logo-text {
  font-size: 4rem;
  line-height: 1.2;
}
.l-header__copy {
  margin-top: 4rem;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .l-header {
    padding: 2.5rem 0 0;
  }
  .l-header__logo-img {
    width: 3.125rem;
  }
  .l-header__logo-text {
    font-size: 1.875rem;
  }
  .l-header__text {
    font-size: 1.25rem;
  }
  .l-header__logo {
    margin-top: 2.5rem;
  }
  .l-header__copy {
    margin-top: 2rem;
    font-size: 1.125rem;
  }
}
/* footer */
.l-footer {
  margin-top: 10rem;
  background-color: #248c91;
  padding: 0.5rem 0;
}
.l-footer__copyright {
  text-align: center;
  font-size: 0.75rem;
  color: #fff;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

@media only screen and (max-width: 767px) {
  .l-footer {
    margin-top: 6.25rem;
  }
}
/* main */
.l-inner {
  width: 1240px;
  max-width: 100%;
  height: inherit;
  padding: 0 1.25rem;
  margin: 0 auto;
}
.l-inner.--wide {
  width: 1400px;
}
.l-inner.--narrow {
  width: 1000px;
}

.l-section-first {
  margin-top: 7.5rem;
}

@media only screen and (max-width: 767px) {
  .l-inner {
    padding: 0 1.25rem;
  }
}
/* margin */
.l-margin p {
  margin-top: 1rem;
}
.l-margin p:first-child {
  margin-top: 0;
}
.l-margin ul,
.l-margin ol,
.l-margin dl {
  margin-top: 1.5rem;
}
.l-margin ul:first-child,
.l-margin ol:first-child,
.l-margin dl:first-child {
  margin-top: 0;
}
.l-margin .p-table-conteiner,
.l-margin table {
  margin-top: 2rem;
}
.l-margin .p-table-conteiner:first-child,
.l-margin table:first-child {
  margin-top: 0;
}
.l-margin img {
  margin-top: 1.5rem;
}
.l-margin img:first-child {
  margin-top: 0;
}
.l-margin blockquote {
  margin-top: 1.5rem;
}
.l-margin blockquote:first-child {
  margin-top: 0;
}
.l-margin .c-button,
.l-margin .e-button {
  margin-top: 1.5rem;
}
.l-margin .c-button:first-child,
.l-margin .e-button:first-child {
  margin-top: 0;
}
.l-margin .p-box,
.l-margin .e-box {
  margin-top: 1.5rem;
}
.l-margin .p-box:first-child,
.l-margin .e-box:first-child {
  margin-top: 0;
}
.l-margin .p-grid,
.l-margin .e-grid {
  margin-top: 5rem;
}
.l-margin .p-grid:first-child,
.l-margin .e-grid:first-child {
  margin-top: 0;
}
.l-margin .p-grid + .l-margin .p-grid,
.l-margin .p-grid + .l-margin .e-grid,
.l-margin .e-grid + .l-margin .p-grid,
.l-margin .e-grid + .l-margin .e-grid {
  margin-top: 2.5rem;
}
.l-margin .p-grid p,
.l-margin .e-grid p {
  margin-top: 0.5rem;
}
.l-margin h2:not(:first-child) {
  margin-top: 6rem;
}
.l-margin h2 + p {
  margin-top: 3rem;
}
.l-margin h2 + ul {
  margin-top: 3rem;
}
.l-margin h2 + ol {
  margin-top: 3rem;
}
.l-margin h2 + dl {
  margin-top: 3rem;
}
.l-margin h2 + img {
  margin-top: 3rem;
}
.l-margin h2 + table {
  margin-top: 3rem;
}
.l-margin h2 + blockquote {
  margin-top: 3rem;
}
.l-margin h2 + .c-button, .l-margin h2 + .e-button {
  margin-top: 3rem;
}
.l-margin h2 + .p-box, .l-margin h2 + .e-box {
  margin-top: 3rem;
}
.l-margin h2 + .p-grid, .l-margin h2 + .e-grid {
  margin-top: 3rem;
}
.l-margin h3:not(:first-child) {
  margin-top: 5rem;
}
.l-margin h3 + p {
  margin-top: 2rem;
}
.l-margin h3 + ul {
  margin-top: 2rem;
}
.l-margin h3 + ol {
  margin-top: 2rem;
}
.l-margin h3 + dl {
  margin-top: 2rem;
}
.l-margin h3 + img {
  margin-top: 2rem;
}
.l-margin h3 + table {
  margin-top: 2rem;
}
.l-margin h3 + blockquote {
  margin-top: 2rem;
}
.l-margin h3 + .c-button, .l-margin h3 + .e-button {
  margin-top: 2rem;
}
.l-margin h3 + .p-box, .l-margin h3 + .e-box {
  margin-top: 2rem;
}
.l-margin h3 + .p-grid, .l-margin h3 + .e-grid {
  margin-top: 2rem;
}
.l-margin h4:not(:first-child) {
  margin-top: 3.5rem;
}
.l-margin h4 + p {
  margin-top: 1.75rem;
}
.l-margin h4 + ul {
  margin-top: 1.75rem;
}
.l-margin h4 + ol {
  margin-top: 1.75rem;
}
.l-margin h4 + dl {
  margin-top: 1.75rem;
}
.l-margin h4 + img {
  margin-top: 1.75rem;
}
.l-margin h4 + table {
  margin-top: 1.75rem;
}
.l-margin h4 + blockquote {
  margin-top: 1.75rem;
}
.l-margin h4 + .c-button, .l-margin h4 + .e-button {
  margin-top: 1.75rem;
}
.l-margin h4 + .p-box, .l-margin h4 + .e-box {
  margin-top: 1.75rem;
}
.l-margin h4 + .p-grid, .l-margin h4 + .e-grid {
  margin-top: 1.75rem;
}
.l-margin h5:not(:first-child) {
  margin-top: 2.5rem;
}
.l-margin h5 + p {
  margin-top: 1.25rem;
}
.l-margin h5 + ul {
  margin-top: 1.25rem;
}
.l-margin h5 + ol {
  margin-top: 1.25rem;
}
.l-margin h5 + dl {
  margin-top: 1.25rem;
}
.l-margin h5 + img {
  margin-top: 1.25rem;
}
.l-margin h5 + table {
  margin-top: 1.25rem;
}
.l-margin h5 + blockquote {
  margin-top: 1.25rem;
}
.l-margin h5 + .c-button, .l-margin h5 + .e-button {
  margin-top: 1.25rem;
}
.l-margin h5 + .p-box, .l-margin h5 + .e-box {
  margin-top: 1.25rem;
}
.l-margin h5 + .p-grid, .l-margin h5 + .e-grid {
  margin-top: 1.25rem;
}
.l-margin h6:not(:first-child) {
  margin-top: 1.5rem;
}
.l-margin h6 + p {
  margin-top: 1.125rem;
}
.l-margin h6 + ul {
  margin-top: 1.125rem;
}
.l-margin h6 + ol {
  margin-top: 1.125rem;
}
.l-margin h6 + dl {
  margin-top: 1.125rem;
}
.l-margin h6 + img {
  margin-top: 1.125rem;
}
.l-margin h6 + table {
  margin-top: 1.125rem;
}
.l-margin h6 + blockquote {
  margin-top: 1.125rem;
}
.l-margin h6 + .c-button, .l-margin h6 + .e-button {
  margin-top: 1.125rem;
}
.l-margin h6 + .p-box, .l-margin h6 + .e-box {
  margin-top: 1.125rem;
}
.l-margin h6 + .p-grid, .l-margin h6 + .e-grid {
  margin-top: 1.125rem;
}

/* --------------------------------------------------
	4. object
-------------------------------------------------- */
/* component */
.c-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 14.25rem;
  min-height: 2.5rem;
  padding: 0 1.25rem;
  color: #fff;
  cursor: pointer;
  background-color: #248c91;
  border-radius: 15rem;
  text-decoration: underline;
  text-underline-offset: 24%;
  text-decoration-color: #fff;
  text-decoration-thickness: 1px;
  letter-spacing: 0.04em;
  line-height: 1.8;
}
.c-button.--big {
  min-width: 30rem;
  min-height: 5rem;
  padding: 0 3rem;
  background-color: #248c91;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.6;
  color: #248C91;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .c-button.--big {
    font-size: 1.125rem;
  }
}
.c-button.--big::after {
  content: "";
  display: block;
  margin-left: 4.625rem;
  margin-right: -5.625rem;
  width: 1rem;
  height: 1.25rem;
  background: url(../images/common/icon-arrow-right.svg) no-repeat center center/contain;
}
@media only screen and (max-width: 767px) {
  .c-button.--big {
    min-width: 17.5rem;
    min-height: 3.5rem;
    padding: 0 1.25rem;
    font-size: 0.875rem;
  }
  .c-button.--big::after {
    margin-left: 2rem;
    margin-right: -1.5rem;
    width: 0.75rem;
    height: 0.875rem;
  }
}
.c-button.--link {
  min-width: 10.1875rem;
  min-height: 2rem;
  padding: 0.25rem 1.5rem;
  font-size: 1rem;
  color: #248C91;
  text-decoration-color: #248C91;
  background-color: #fff;
}
.c-button.--link span {
  display: block;
  min-width: 5.1875rem;
  text-align: center;
}
.c-button.--link::after {
  content: "";
  display: block;
  width: 1rem;
  height: 2rem;
  margin-left: 1rem;
  background: url(../images/common/icon-chevron-down.svg) no-repeat center center/contain;
}
.c-button.--inst::before {
  content: "";
  display: block;
  margin-left: 54px;
  margin-right: 1.5rem;
  background: url(../images/common/icon_instagram.png) no-repeat center center/contain;
  width: 2rem;
  height: 2rem;
}
.c-button.--inst::after {
  margin-left: 4.125rem;
  margin-right: -2.0625rem;
}
@media only screen and (max-width: 767px) {
  .c-button.--inst::before {
    margin-left: 1rem;
    margin-right: 0.75rem;
    width: 1.5rem;
    height: 1.5rem;
  }
  .c-button.--inst::after {
    margin-left: 2rem;
    margin-right: -0.25rem;
    width: 0.75rem;
    height: 0.875rem;
  }
}
.c-button.--blank::after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(../images/common/icon-blank.svg) no-repeat center center/contain;
}
.c-button.--pdf::after {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  content: "PDF";
  color: #fff;
  background-color: #248c91;
  width: 2.8125rem;
  height: 0.9375rem;
}
@media (hover: hover) {
  .c-button {
    transition: 0.3s linear opacity;
  }
  .c-button:hover {
    opacity: 0.7;
  }
}

.c-heading-lv1 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.6;
  color: #248C91;
  font-size: 1.75rem;
  letter-spacing: 0.04em;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .c-heading-lv1 {
    font-size: 1.5rem;
  }
}
.c-heading-lv1.--line {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 4rem;
}
.c-heading-lv1.--line::after {
  content: "";
  width: 100%;
  border-top: 2px dotted #248c91;
}
@media only screen and (max-width: 767px) {
  .c-heading-lv1.--line {
    margin-bottom: 2rem;
  }
}

.c-heading-lv2 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.6;
  color: #248C91;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  .c-heading-lv2 {
    font-size: 1.3125rem;
    letter-spacing: 0.04em;
  }
}

.c-heading-lv3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.6;
  color: #248C91;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  .c-heading-lv3 {
    font-size: 1.125rem;
  }
}

.c-heading-lv4 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.6;
  color: #248C91;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  .c-heading-lv4 {
    font-size: 1rem;
  }
}

.c-heading-lv5 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.6;
  color: #248C91;
  font-size: 1rem;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  .c-heading-lv5 {
    font-size: 0.875rem;
  }
}

.c-heading-lv6 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.6;
  color: #248C91;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  .c-heading-lv6 {
    font-size: 0.75rem;
  }
}

.c-iframe {
  position: relative;
  padding-top: 40%;
  background-color: #ebebeb;
  border-radius: 4px;
  aspect-ratio: 960/640;
  position: relative;
  overflow: hidden;
}
.c-iframe iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.c-list-dot {
  padding-left: 1.5rem;
}
.c-list-dot__item {
  position: relative;
}
.c-list-dot__item::before {
  content: "";
  display: block;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  position: absolute;
  left: -0.9375rem;
  top: 0.75em;
  background: #248c91;
}
.c-list-dot__item + .c-list-dot__item {
  margin-top: 0.5rem;
}
.c-list-dot__item span {
  display: inline-block;
}
.c-list-dot__item span::after {
  content: "";
  display: block;
  width: 100%;
  border-top: 3px dotted #248c91;
}

.c-list-ol {
  counter-reset: list-counter;
}
.c-list-ol__item {
  position: relative;
  padding-left: 1.5rem;
  counter-increment: list-counter;
}
.c-list-ol__item::before {
  content: counter(list-counter) ".";
  position: absolute;
  left: 0;
  width: 1.5rem;
}
.c-list-ol__item + .c-list-ol__item {
  margin-top: 0.4375rem;
}

.c-list-dl__dt {
  font-weight: bold;
}
.c-list-dl__dt + .c-list-dl {
  margin-top: 0.75rem;
}
.c-list-dl__dd {
  margin-left: 0.875rem;
}

.c-text-link {
  font-size: 0.875rem;
  display: inline-block;
  position: relative;
  text-decoration: underline;
}

@media only screen and (max-width: 767px) {
  .c-text-link {
    font-size: 0.75rem;
  }
}
.c-text {
  font-size: 1rem;
  letter-spacing: 0.04em;
}
.c-text.--xsm {
  font-size: 0.75rem;
  line-height: 1.6;
}
.c-text.--sm {
  font-size: 0.875rem;
}
.c-text.--lg {
  font-size: 1.125rem;
  line-height: normal;
  letter-spacing: 0;
}
.c-text.--xlg {
  font-size: 1.25rem;
  line-height: normal;
  letter-spacing: 0;
}
.c-text.--bold {
  font-weight: 700;
}

@media only screen and (max-width: 767px) {
  .c-text {
    font-size: 0.875rem;
  }
  .c-text.--xsm {
    font-size: 0.6875rem;
    line-height: 1.8;
  }
  .c-text.--sm {
    font-size: 0.8125rem;
  }
  .c-text.--lg {
    font-size: 1rem;
  }
  .c-text.--xlg {
    font-size: 1.125rem;
  }
}
/* project */
.p-about__logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.p-about__logo-img {
  width: 3.5rem;
}
.p-about__logo-text {
  font-size: 1.875rem;
  line-height: 1.2;
}
.p-about__grid {
  display: flex;
  justify-content: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  gap: 1.25rem;
}
.p-about__col.--left {
  width: 320px;
  max-width: 100%;
}
.p-about__col.--right {
  width: 580px;
  max-width: 100%;
}
.p-about__desc {
  margin-top: 1.5rem;
  font-size: 0.875rem;
}
.p-about .p-table {
  gap: 0.5rem;
}
.p-about .p-table__th {
  padding: 0.6875rem 0.5rem 0.5rem;
}
.p-about .p-table__td {
  padding: 0.5rem 0.25rem;
}
.p-about .c-list-dot__item + .c-list-dot__item {
  margin-top: 0.25rem;
}

@media only screen and (max-width: 767px) {
  .p-about__logo-img {
    width: 3rem;
  }
  .p-about__logo-text {
    font-size: 1.625rem;
  }
  .p-about__grid {
    display: flex;
    flex-direction: column;
    margin-top: 1.5rem;
    gap: 1.25rem;
  }
  .p-about__col.--left {
    max-width: 23.75rem;
    width: 100%;
  }
  .p-about__col.--right {
    max-width: 23.75rem;
    width: 100%;
  }
  .p-about__desc {
    margin-top: 1rem;
    font-size: 0.75rem;
  }
}
.p-access__button {
  text-align: center;
  margin-top: 1.5rem;
}

.p-biography-box {
  margin-top: 10rem;
}

.p-box {
  background-color: #f5f5f5;
  border-radius: 4px;
  padding: 2.5rem 2.5rem;
  margin: 0 auto;
}
.p-box + .p-box {
  margin-top: 2rem;
}
.p-box__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.6;
  color: #248C91;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-box__title {
    font-size: 1.3125rem;
    letter-spacing: 0.04em;
  }
}
.p-box__sub-title {
  color: #248c91;
  font-weight: bold;
  font-size: 1.125rem;
  text-align: center;
  margin-top: 1rem;
}
.p-box__text1 {
  margin-top: 1.25rem;
}
.p-box__text2 {
  text-align: center;
  font-weight: bold;
  margin-top: 2rem;
}
.p-box .p-table {
  margin-top: 1rem;
}
.p-box__hidden {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.p-box__more {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}
.p-box .js-more-buttonn.--open::after {
  transform: rotate(180deg);
}

@media only screen and (max-width: 767px) {
  .p-biography-box {
    margin-top: 4rem;
  }
  .p-box {
    padding: 2rem 1rem;
  }
  .p-box__title {
    font-size: 1.25rem;
  }
  .p-box__text1 {
    font-size: 0.875rem;
  }
  .p-box__text2 {
    font-size: 0.875rem;
  }
}
.p-card-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.p-card {
  border-bottom: 0.0625rem solid #d3d3d3;
  padding: 1rem 0.5rem;
}
.p-card__info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.p-card__author {
  font-size: 0.875rem;
  letter-spacing: 0.04em;
}
.p-card__title {
  font-size: 1rem;
  letter-spacing: 0.04em;
}
.p-card__source {
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  color: #5d6d6e;
}

@media only screen and (max-width: 767px) {
  .p-card__author {
    font-size: 0.8125rem;
  }
  .p-card__title {
    font-size: 0.9375rem;
  }
  .p-card__source {
    font-size: 0.8125rem;
  }
}
.p-greeting__name {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  align-items: center;
  justify-content: end;
}
.p-greeting__role {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.6;
  color: #248C91;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: #248c91;
}
@media only screen and (max-width: 767px) {
  .p-greeting__role {
    font-size: 1.125rem;
  }
}
.p-greeting__person {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.6;
  color: #248C91;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: #333;
}
@media only screen and (max-width: 767px) {
  .p-greeting__person {
    font-size: 1.3125rem;
    letter-spacing: 0.04em;
  }
}

@media only screen and (max-width: 767px) {
  .p-greeting__name {
    margin-top: 1.5rem;
  }
}
.p-main-img {
  text-align: center;
  margin-top: 4rem;
}

@media only screen and (max-width: 767px) {
  .p-main-img {
    margin-top: 2rem;
  }
}
.p-profile .p-table {
  gap: 1.5rem;
}
.p-profile .p-table__th {
  width: 25%;
}
.p-profile .p-table__td {
  width: 75%;
}

@media only screen and (max-width: 767px) {
  .p-profile .p-table {
    gap: 1.5rem;
  }
  .p-profile .p-table__th {
    width: 38%;
    letter-spacing: 0;
    padding: 1rem 0.25rem 0.75rem;
  }
  .p-profile .p-table__td {
    width: 62%;
    letter-spacing: 0;
    padding: 0.75rem 0.25rem;
  }
}
.p-recruit__action {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
}
.p-recruit__label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.6;
  color: #248C91;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  color: #248C91;
  display: block;
}
@media only screen and (max-width: 767px) {
  .p-recruit__label {
    font-size: 1rem;
  }
}
.p-recruit__label::after {
  content: "";
  display: block;
  width: calc(100% + 0.375rem);
  margin-left: -0.25rem;
  margin-top: 0.5rem;
  height: 0.625rem;
  background-image: url(../images/index/icon-underline.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@media only screen and (max-width: 767px) {
  .p-recruit__label::after {
    margin-top: 0.25rem;
  }
}
.p-renewal {
  margin-top: 7.5rem;
  text-align: center;
}
.p-renewal__icon {
  width: 3.5rem;
  margin: 0 auto;
}
.p-renewal__title {
  margin-top: 2rem;
}
.p-renewal__url {
  color: #333;
  margin-top: 1rem;
}
.p-renewal__box {
  margin-top: 2.5rem;
}
.p-renewal__box-button {
  margin-top: 1.5rem;
}

@media only screen and (max-width: 767px) {
  .p-renewal {
    margin-top: 3.75rem;
  }
  .p-renewal__icon {
    width: 2rem;
    margin: 0 auto;
  }
  .p-renewal__title {
    margin-top: 1.5rem;
  }
  .p-renewal__url {
    margin-top: 1rem;
  }
  .p-renewal__box {
    margin-top: 2rem;
  }
}
.p-table-calender {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}
.p-table-calender__header {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  padding: 0.5rem 1rem 0.5rem;
  border-bottom: 1px solid #d3d3d3;
}
.p-table-calender__title {
  flex: 1 0 0;
  font-size: 1rem;
  font-weight: 700;
  color: #248C91;
  letter-spacing: 0.04em;
  padding-top: 0.1875rem;
  line-height: 1.6;
}
.p-table-calender__days {
  display: flex;
  align-items: center;
}
.p-table-calender__th {
  width: 3.5rem;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  line-height: 1.8;
}
.p-table-calender__body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.p-table-calender__row {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  padding: 0 1rem;
  background-color: #eff9f6;
  border-radius: 0.25rem;
}
.p-table-calender__time {
  flex: 1 0 0;
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  letter-spacing: 0.04em;
  line-height: 1.8;
}
.p-table-calender__time-separator {
  font-size: inherit;
}
.p-table-calender__cells {
  display: flex;
  align-items: center;
}
.p-table-calender__td {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
}
.p-table-calender__td.--circle {
  color: #248c91;
  font-size: 1rem;
}
.p-table-calender__td.--text {
  font-size: 0.875rem;
  font-weight: 700;
  color: #5d6d6e;
  letter-spacing: 0.12em;
  line-height: 1.6;
}
.p-table-calender__td.--dash {
  color: #5d6d6e;
  font-size: 1rem;
}
.p-table-calender__td.--time-range {
  flex-direction: column;
  gap: 0.125rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #248c91;
  letter-spacing: 0.04em;
  line-height: 1;
}
.p-table-calender__separator {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.75rem;
  height: 0.75rem;
  font-size: 0.75rem;
  transform: rotate(90deg);
}

@media only screen and (min-width: 768px) and (max-width: 1280px) {
  .p-table-calender__title {
    flex: 2 0 0;
    font-size: 0.875rem;
  }
  .p-table-calender__days {
    flex: 7 0 0;
    padding-right: 0;
  }
  .p-table-calender__th {
    flex: 1;
    width: auto;
    margin-right: 0;
    flex-shrink: unset;
    font-size: 0.875rem;
  }
  .p-table-calender__time {
    flex: 2 0 0;
    font-size: 0.875rem;
  }
  .p-table-calender__cells {
    flex: 7 0 0;
    padding-right: 0;
  }
  .p-table-calender__td {
    flex: 1;
    width: auto;
    height: 3.5rem;
    margin-right: 0;
    flex-shrink: unset;
  }
}
@media only screen and (max-width: 767px) {
  .p-table-calender {
    gap: 0.5rem;
  }
  .p-table-calender__header {
    gap: 0.5rem;
    padding: 0.5rem 0 0.5rem 0.75rem;
  }
  .p-table-calender__title {
    flex: 1 0 0;
    font-size: 0.8125rem;
    text-align: center;
  }
  .p-table-calender__days {
    flex-shrink: 0;
    padding-right: 0.625rem;
  }
  .p-table-calender__th {
    width: 3rem;
    margin-right: -0.625rem;
    flex-shrink: 0;
    font-size: 0.8125rem;
  }
  .p-table-calender__row {
    gap: 0.5rem;
    padding: 0.5rem 0 0.5rem 0.75rem;
  }
  .p-table-calender__time {
    flex: 1 0 0;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-size: 0.8125rem;
    line-height: 1.2;
  }
  .p-table-calender__cells {
    flex-shrink: 0;
    padding-right: 0.625rem;
  }
  .p-table-calender__td {
    width: 3rem;
    height: 3rem;
    margin-right: -0.625rem;
    flex-shrink: 0;
  }
  .p-table-calender__td.--circle {
    font-size: 0.75rem;
  }
  .p-table-calender__td.--text {
    font-size: 0.75rem;
  }
  .p-table-calender__td.--dash {
    font-size: 0.875rem;
  }
  .p-table-calender__td.--time-range {
    font-size: 0.75rem;
  }
  .p-table-calender__time-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 0.8125rem;
    height: 0.6875rem;
    font-size: 0.6875rem;
    transform: rotate(90deg);
  }
  .p-table-calender__separator {
    width: 0.625rem;
    height: 0.625rem;
    font-size: 0.625rem;
  }
}
.p-table {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.p-table__row {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
.p-table__th {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.6;
  color: #248C91;
  font-size: 1rem;
  letter-spacing: 0.04em;
  width: 27%;
  padding: 1.1875rem 0.5rem 1rem;
  border-bottom: 0.0625rem solid #248c91;
  text-align: center;
  align-self: stretch;
}
@media only screen and (max-width: 767px) {
  .p-table__th {
    font-size: 0.875rem;
  }
}
.p-table__td {
  width: 73%;
  padding: 1rem 0.5rem;
  border-bottom: 0.0625rem solid #d3d3d3;
  align-self: stretch;
}
.p-table__desc {
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  color: #5d6d6e;
  padding-left: 1.5rem;
}

@media only screen and (max-width: 767px) {
  .p-table__desc {
    font-size: 0.75rem;
  }
}
/* pages */
body.index .index-news {
  margin-top: 7.5rem;
}

/* utility */
.u-asterisk {
  padding-left: 1em;
  text-indent: -1em;
}

.u-content-mt {
  margin-top: 10rem;
}

@media only screen and (max-width: 767px) {
  .u-content-mt {
    margin-top: 6.25rem;
  }
}
@media all and (min-width: 1281px), print {
  .u-hidden-pc {
    display: none;
  }
}
@media all and (min-width: 768px), print {
  .u-hidden-pc-tab {
    display: none;
  }
}
@media only screen and (max-width: 1280px) {
  .u-hidden-tab-sp {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .u-hidden-sp {
    display: none;
  }
}
.u-mt-1 {
  margin-top: 0.5rem;
}

.u-mt-2 {
  margin-top: 1rem;
}

.u-mt-3 {
  margin-top: 1.5rem;
}

.u-mt-4 {
  margin-top: 2rem;
}

.u-mt-5 {
  margin-top: 2.5rem;
}

.u-mt-6 {
  margin-top: 3rem;
}

.u-mt-7 {
  margin-top: 3.5rem;
}

.u-mt-8 {
  margin-top: 4rem;
}

.u-mt-9 {
  margin-top: 4.5rem;
}

.u-mt-10 {
  margin-top: 5rem;
}

.u-mt-11 {
  margin-top: 5.5rem;
}

.u-mt-12 {
  margin-top: 6rem;
}

.u-mt-13 {
  margin-top: 6.5rem;
}

.u-mt-14 {
  margin-top: 7rem;
}

.u-mt-15 {
  margin-top: 7.5rem;
}

.u-mt-16 {
  margin-top: 8rem;
}

.u-mt-17 {
  margin-top: 8.5rem;
}

.u-mt-18 {
  margin-top: 9rem;
}

.u-mt-19 {
  margin-top: 9.5rem;
}

.u-mt-20 {
  margin-top: 10rem;
}

.u-mt-21 {
  margin-top: 10.5rem;
}

.u-mt-22 {
  margin-top: 11rem;
}

.u-mt-23 {
  margin-top: 11.5rem;
}

.u-mt-24 {
  margin-top: 12rem;
}

.u-mt-25 {
  margin-top: 12.5rem;
}

@media only screen and (max-width: 767px) {
  .u-mt-1-sp {
    margin-top: 0.5rem;
  }
  .u-mt-2-sp {
    margin-top: 1rem;
  }
  .u-mt-3-sp {
    margin-top: 1.5rem;
  }
  .u-mt-4-sp {
    margin-top: 2rem;
  }
  .u-mt-5-sp {
    margin-top: 2.5rem;
  }
  .u-mt-6-sp {
    margin-top: 3rem;
  }
  .u-mt-7-sp {
    margin-top: 3.5rem;
  }
  .u-mt-8-sp {
    margin-top: 4rem;
  }
  .u-mt-9-sp {
    margin-top: 4.5rem;
  }
  .u-mt-10-sp {
    margin-top: 5rem;
  }
  .u-mt-11-sp {
    margin-top: 5.5rem;
  }
  .u-mt-12-sp {
    margin-top: 6rem;
  }
  .u-mt-13-sp {
    margin-top: 6.5rem;
  }
  .u-mt-14-sp {
    margin-top: 7rem;
  }
  .u-mt-15-sp {
    margin-top: 7.5rem;
  }
  .u-mt-16-sp {
    margin-top: 8rem;
  }
  .u-mt-17-sp {
    margin-top: 8.5rem;
  }
  .u-mt-18-sp {
    margin-top: 9rem;
  }
  .u-mt-19-sp {
    margin-top: 9.5rem;
  }
  .u-mt-20-sp {
    margin-top: 10rem;
  }
  .u-mt-21-sp {
    margin-top: 10.5rem;
  }
  .u-mt-22-sp {
    margin-top: 11rem;
  }
  .u-mt-23-sp {
    margin-top: 11.5rem;
  }
  .u-mt-24-sp {
    margin-top: 12rem;
  }
  .u-mt-25-sp {
    margin-top: 12.5rem;
  }
}
.u-text-center {
  text-align: center;
}

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

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

@media all and (min-width: 768px), print {
  .u-text-center-pc {
    text-align: center;
  }
  .u-text-left-pc {
    text-align: left;
  }
  .u-text-right-pc {
    text-align: right;
  }
}
@media only screen and (max-width: 767px) {
  .u-text-center-sp {
    text-align: center;
  }
  .u-text-left-sp {
    text-align: left;
  }
  .u-text-right-sp {
    text-align: right;
  }
}