@charset "UTF-8";
:root {
  --text: #484747;
  --link: #008e66;
  --hover: #c00;
  --cc1: #008e66;
  --cc2: #ff992c;
  --bg: #f8f6f0;
}

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, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend {
  font-size: 1em;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

:target {
  scroll-margin-top: 100px;
}

body {
  position: relative;
  font-family: "Zen Maru Gothic", sans-serif;
  color: var(--text);
  background: #fff;
  line-break: strict;
  line-height: 1.6;
}
body * {
  box-sizing: border-box;
}
body img {
  max-width: 100%;
  height: auto;
  display: block;
}
body ul, body ol {
  list-style: none;
}
body a {
  text-decoration: none;
  font-weight: bold;
  color: var(--link);
}
body a:hover {
  transition: 0.5s;
  transform: translateY(-5px);
}

header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: var(--bg);
}
header > div {
  width: min(100% - 1rem, 1470px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  position: relative;
  padding-block: 1rem;
}
header h1 {
  font-size: 1.6rem;
  margin-right: 2rem;
}
header h1 span {
  font-size: 1.125rem;
  display: block;
}
header h1 a {
  color: var(--text);
}
header nav > ul {
  display: flex;
  align-items: center;
}
header nav > ul > li:nth-child(n+3) {
  border-left: solid 2px var(--cc1);
}
header nav > ul > li:nth-child(1) span {
  content: "";
  position: absolute;
  display: block;
  margin: auto;
  z-index: 0;
  inset: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
header nav > ul > li:nth-child(1) img {
  width: 5rem;
}
header nav > ul > li:nth-child(1) a {
  position: relative;
  color: #fff;
  z-index: 1;
  padding-inline: 0;
}
@media (max-width: 1050px) {
  header nav > ul {
    position: fixed;
    inset: 0 -90vw 0 auto;
    height: 100%;
    width: 15rem;
    background: var(--cc1);
    padding-top: 6rem;
    flex-direction: column;
    transition: right 0.5s;
  }
}
@media screen and (max-width: 1050px) and (max-width: 768px) {
  header nav > ul {
    width: 90vw;
  }
}
@media (max-width: 1050px) {
  header nav > ul.--show {
    right: 0;
  }
  header nav > ul > li:nth-child(n) a {
    color: #fff;
    font-size: 1.125rem;
    padding: 0.5rem 1.5rem;
  }
  header nav > ul > li:nth-child(n+3) {
    border: none;
  }
  header nav > ul > li:nth-child(1) span {
    position: static;
  }
  header nav > ul > li:nth-child(1) img {
    display: none;
  }
  header nav > ul > li:nth-child(1) a {
    position: static;
  }
}
header nav > ul a {
  display: block;
  padding-inline: 1rem;
  color: var(--text);
}
header .header-tel {
  position: absolute;
  top: 0;
  right: 2rem;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
}
@media (max-width: 1299px) {
  header .header-tel {
    display: none;
  }
}

.menu-btn {
  margin-left: auto;
  margin-right: 1rem;
  width: 3rem;
  height: 3rem;
  background: var(--cc1);
  border: solid 1px #fff;
  border-radius: 0.5rem;
  cursor: pointer;
  display: none;
  position: relative;
  z-index: 6;
  transition: margin-right 0.5s;
}
.menu-btn::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 0;
  content: "\f0c9";
  color: #fff;
  font-size: 1.5rem;
}
.menu-btn.--show {
  margin-right: 5.5rem;
  transition: margin-right 0.5s 0.1s;
}
.menu-btn.--show::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 0;
  content: "\f00d";
}
@media screen and (max-width: 1050px) {
  .menu-btn {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .menu-btn {
    margin-right: 0.5rem;
  }
  .menu-btn.--show {
    margin-right: 0.5rem;
  }
}

main {
  position: relative;
  overflow: hidden;
}
main p + p {
  margin-top: 1em;
}

footer {
  background: var(--bg);
  padding-block: 3rem;
}
footer > div {
  width: min(100% - 1rem, 1470px);
  margin-inline: auto;
}
footer h2 {
  font-size: 1.6rem;
}
footer p span {
  color: var(--cc1);
}
footer nav {
  margin-top: 2rem;
}
footer nav > ul {
  display: flex;
  align-items: center;
}
footer nav > ul > li:nth-child(n+3) {
  border-left: solid 2px var(--cc1);
}
footer nav > ul > li:nth-child(1) span {
  content: "";
  position: absolute;
  display: block;
  margin: auto;
  z-index: 0;
  inset: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer nav > ul > li:nth-child(1) img {
  width: 5rem;
}
footer nav > ul > li:nth-child(1) a {
  position: relative;
  color: #fff;
  z-index: 1;
  padding-inline: 0;
}
@media (max-width: 1050px) {
  footer nav > ul {
    position: fixed;
    inset: 0 -90vw 0 auto;
    height: 100%;
    width: 15rem;
    background: var(--cc1);
    padding-top: 6rem;
    flex-direction: column;
    transition: right 0.5s;
  }
}
@media screen and (max-width: 1050px) and (max-width: 768px) {
  footer nav > ul {
    width: 90vw;
  }
}
@media (max-width: 1050px) {
  footer nav > ul.--show {
    right: 0;
  }
  footer nav > ul > li:nth-child(n) a {
    color: #fff;
    font-size: 1.125rem;
    padding: 0.5rem 1.5rem;
  }
  footer nav > ul > li:nth-child(n+3) {
    border: none;
  }
  footer nav > ul > li:nth-child(1) span {
    position: static;
  }
  footer nav > ul > li:nth-child(1) img {
    display: none;
  }
  footer nav > ul > li:nth-child(1) a {
    position: static;
  }
}
footer nav > ul a {
  display: block;
  padding-inline: 1rem;
  color: var(--text);
}

.breadcrumbs {
  background: #fff;
  padding-block: 1rem;
}
.breadcrumbs ul {
  width: min(100% - 1rem, 1470px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumbs ul > li {
  margin-right: 1rem;
}
.breadcrumbs ul > li:nth-child(n+2)::before {
  content: ">";
  margin-right: 1rem;
}

.p-arw {
  display: inline-block;
  position: relative;
}
.p-arw::before {
  content: "";
  position: absolute;
  display: block;
  margin: auto;
  width: 10px;
  height: 10px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: #fabe00;
  right: 0;
  left: 0;
  top: -2px;
}

.c-hd-l {
  font-size: 2rem;
  line-height: 1.25;
  padding-bottom: 1rem;
  text-align: center;
  background: url(".//page-h2.png") center bottom no-repeat;
}
.c-hd-l span {
  display: block;
  font-size: 1rem;
  color: var(--cc1);
}

.c-hd-m1 {
  position: relative;
  padding-right: 3rem;
  width: fit-content;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.c-hd-m1 span {
  font-size: 1rem;
  margin-left: 0.5rem;
  color: var(--cc1);
}
.c-hd-m1::after {
  content: "";
  position: absolute;
  display: block;
  margin: auto;
  width: 2rem;
  height: 1px;
  background: var(--cc1);
  right: 0;
  top: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .c-hd-m1::after {
    content: none;
  }
}

.c-hd-m2 {
  font-size: 1.5rem;
  margin-left: -1em;
  padding-left: 2rem;
  padding-block: 1rem;
  background: url(".//bg_staff.webp") left center/contain no-repeat;
  margin-bottom: var(--c-hd-m2-mb, 1rem);
}

.c-hd-m3 {
  text-align: center;
  font-size: var(--c-hd-m3-size, 1.25rem);
  position: relative;
  margin-bottom: 1rem;
  color: var(--c-hd-m3-color, var(--text));
  padding-bottom: var(--c-hd-m3-pb, 0);
}
.c-hd-m3 span {
  font-size: var(--c-hd-m3-subsize, 1rem);
  line-height: 1;
  display: block;
  color: var(--c-hd-m3-subcolor, var(--cc1));
}
.c-hd-m3::after {
  content: "";
  position: absolute;
  display: block;
  margin: auto;
  width: var(--c-hd-m3-linesize, 2rem);
  height: 1px;
  background: var(--c-hd-m3-linecolor, var(--cc1));
  right: 0;
  left: 0;
  bottom: 0;
}

.c-hd-s1 {
  font-size: 1.35rem;
  margin-left: -1em;
  padding-left: 1rem;
  padding-bottom: 1rem;
  background: url(".//bg-hd-s.png") left bottom no-repeat;
}

.c-flex {
  display: flex;
}
@media screen and (max-width: 768px) {
  .c-flex {
    flex-direction: column;
  }
  .c-flex > *,
  .c-flex .c-flex__imgl,
  .c-flex .c-flex__imgr {
    margin-inline: 0;
    width: auto;
  }
}

.c-flex__imgl {
  flex-shrink: 0;
  margin-right: 3rem;
  width: var(--c-flex-imgw, 300px);
}
@media screen and (max-width: 768px) {
  .c-flex__imgl {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

.c-flex__imgr {
  flex-shrink: 0;
  margin-left: 3rem;
  width: var(--c-flex-imgw, 300px);
}
@media screen and (max-width: 768px) {
  .c-flex__imgr {
    margin-left: 0;
    margin-top: 1rem;
  }
}

.c-cklist > li::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  margin-right: 0.5em;
  content: "\f058";
  color: var(--c-cklist-color, var(--cc2));
}

.c-book {
  display: flex;
  align-items: center;
  width: fit-content;
  border: solid 1px var(--cc2);
  border-radius: 4rem;
  padding: 0.2rem 2rem;
}
.c-book strong {
  font-size: 1.125rem;
  color: var(--cc2);
}
.c-book img {
  height: 1.8rem;
  width: auto;
  margin-inline: 1rem;
}
@media screen and (max-width: 768px) {
  .c-book {
    flex-wrap: wrap;
  }
  .c-book strong {
    display: block;
    text-align: center;
  }
}

.c-shinryo {
  width: min(100% - 1rem, 1120px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 6rem;
}
.c-shinryo > li {
  text-align: center;
}
.c-shinryo > li a {
  color: var(--text);
}
.c-shinryo img {
  margin: 0 auto 1rem;
}
.c-shinryo h3 {
  font-size: 1.25rem;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  position: relative;
}
.c-shinryo h3::after {
  content: "";
  position: absolute;
  display: block;
  margin: auto;
  width: 3rem;
  height: 1px;
  bottom: 0;
  right: 0;
  left: 0;
  background: var(--cc1);
}
.c-shinryo h3 strong {
  color: var(--cc1);
}
.c-shinryo p strong {
  display: block;
  background: #fabe00;
}
@media screen and (max-width: 1050px) {
  .c-shinryo {
    gap: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .c-shinryo {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
  }
  .c-shinryo h3 {
    font-size: 1.125rem;
  }
}

.c-btn {
  display: block;
  width: fit-content;
  padding: var(--c-btn-padding, 0.5em 2em);
  position: relative;
  border-radius: 0.5rem;
  background: var(--c-btn--bg, var(--cc1));
  color: var(--c-btn--color, #fff);
}
.c-btn svg {
  position: absolute;
  width: var(--c-btn-witdh, 3rem);
  inset: var(--c-btn-inset, -0.5rem -2rem 0 auto);
  margin: auto;
  z-index: 1;
}
.c-btn path {
  stroke-width: 2;
  stroke: var(--text);
  fill: none;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: drawLine 3s ease-in-out infinite;
}

.c-clip {
  background: #fff;
  border-radius: 1rem;
  position: relative;
  margin-top: 56px;
}
.c-clip::before {
  content: "";
  position: absolute;
  display: block;
  margin: auto;
  width: 70px;
  height: 56px;
  top: -50px;
  right: 0;
  left: 0;
  background: url(".//clip.webp") center/contain no-repeat;
}

.c-panel {
  background: var(--cc1);
  margin-top: 93px;
  padding: 70px 2rem 2rem;
  position: relative;
}
.c-panel .c-panel__canvas {
  background: #fff;
  padding: 3rem;
  border-radius: 0.5rem;
}
@media screen and (max-width: 768px) {
  .c-panel .c-panel__canvas {
    padding: 1rem;
  }
}
.c-panel::before {
  content: "";
  position: absolute;
  display: block;
  margin: auto;
  width: 531px;
  height: 93px;
  top: -50px;
  right: 0;
  left: 0;
  background: url(".//bg-panel.png") center/contain no-repeat;
}
@media screen and (max-width: 768px) {
  .c-panel::before {
    width: 100%;
    height: 14vw;
    top: -7vw;
  }
}

.c-flow {
  --items: 5;
  --gap: 1.8rem;
  --arw-c:#fed5c3;
  --num-c: var(--cc1);
  --num-bg: #fed5c3;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  margin-bottom: 2rem;
  counter-reset: online-s4-flow;
}
@media screen and (max-width: 768px) {
  .c-flow {
    flex-direction: column;
  }
}
.c-flow .c-flow__item {
  width: calc((100% - (var(--items) - 1) * var(--gap)) / var(--items));
  background: #fff;
  border-radius: 0.5rem;
  padding: 2rem 1rem 1rem;
  position: relative;
  counter-increment: online-s4-flow;
}
@media screen and (max-width: 768px) {
  .c-flow .c-flow__item {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.c-flow .c-flow__item::before {
  content: counter(online-s4-flow);
  position: absolute;
  width: 3rem;
  height: 3rem;
  border-radius: 2rem;
  background: var(--num-bg);
  top: -1rem;
  left: -1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--num-c);
  font-size: 1.5rem;
  font-weight: bold;
}
.c-flow .c-flow__item:not(:last-child)::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 0.5em;
  content: "\f0da";
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--gap);
  height: 100%;
  right: calc(var(--gap) * -1.05);
  top: 0;
  bottom: 0;
  margin: auto;
  color: var(--arw-c);
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .c-flow .c-flow__item:not(:last-child)::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 0;
    content: "\f0d7";
    width: 100%;
    height: var(--gap);
    right: 0;
    left: 0;
    top: auto;
    bottom: calc(var(--gap) * -1);
  }
}

.c-table1 {
  border: solid 1px #fec8b0;
  border-radius: 1rem;
  overflow: hidden;
  width: fit-content;
}
.c-table1 table {
  border-collapse: collapse;
  margin: -1px;
}
.c-table1 th, .c-table1 td {
  border: solid 1px color-mix(in srgb, var(--cc2), #fff);
  padding: var(--c-table1-padding, 0.2rem 1rem);
}
.c-table1 thead {
  background: #fec8b0;
}
.c-table1 tbody {
  background: color-mix(in srgb, #fec8b0, #fff 90%);
}

.c-table2 {
  --border-t: solid 1px #fec8b0;
  --border-c: solid 1px #fec8b0;
  --padding: 0.2rem 1rem;
  --bg-h: #fec8b0;
  --bg-b: #fff;
  border: var(--border-t);
  border-radius: 1rem;
  overflow: hidden;
  width: fit-content;
}
.c-table2 table {
  border-collapse: collapse;
  margin: -1px;
}
.c-table2 th, .c-table2 td {
  border: var(--border-c);
  padding: var(--padding);
}
.c-table2 thead {
  background: var(--bg-h);
}
.c-table2 tbody {
  background: var(--bg-b);
}

.c-schedule {
  border-collapse: collapse;
}
.c-schedule tbody tr {
  border-top: solid 1px color-mix(in srgb, var(--cc2), #fff);
}
.c-schedule th, .c-schedule td {
  padding: 0.5rem 1rem;
  text-align: center;
}
.c-schedule th span, .c-schedule td span {
  color: var(--cc1);
}
.c-schedule td {
  color: var(--cc1);
}
@media screen and (max-width: 768px) {
  .c-schedule th, .c-schedule td {
    padding: 0.4rem;
  }
}

.u-caption {
  font-size: 0.9375rem !important;
}

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

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

@keyframes drawLine {
  0% {
    stroke-dashoffset: 100;
  }
  50% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
main {
  padding-top: 2rem;
}

main.main-staff h2, main.main-shinryo h2 {
  font-size: 2rem;
  line-height: 1.25;
  padding-bottom: 1rem;
  text-align: center;
  background: url(".//page-h2.png") center bottom no-repeat;
}
main.main-staff h2 span, main.main-shinryo h2 span {
  display: block;
  font-size: 1rem;
  color: var(--cc1);
}

main.main-staff {
  background: var(--bg);
}

.staff-s1 > div, .staff-s2 > div, .staff-s3 > div, .staff-s4 > div {
  width: min(100% - 1rem, 1120px);
  margin-inline: auto;
}
.staff-s1 h3, .staff-s2 h3, .staff-s3 h3, .staff-s4 h3 {
  position: relative;
  padding-right: 3rem;
  width: fit-content;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
}
.staff-s1 h3 span, .staff-s2 h3 span, .staff-s3 h3 span, .staff-s4 h3 span {
  font-size: 1rem;
  margin-left: 0.5rem;
  color: var(--cc1);
}
.staff-s1 h3::after, .staff-s2 h3::after, .staff-s3 h3::after, .staff-s4 h3::after {
  content: "";
  position: absolute;
  display: block;
  margin: auto;
  width: 2rem;
  height: 1px;
  background: var(--cc1);
  right: 0;
  top: 0;
  bottom: 0;
}

.staff-s1 {
  padding-block: 2rem;
}

.staff-s1-content {
  display: flex;
  align-items: flex-start;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .staff-s1-content {
    flex-direction: column;
  }
}
.staff-s1-content > div:nth-child(1) {
  flex-shrink: 0;
  width: 300px;
  margin-right: 3rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .staff-s1-content > div:nth-child(1) {
    width: auto;
    margin-right: 0;
    margin-bottom: 2rem;
  }
}
.staff-s1-content > div:nth-child(1) p {
  font-size: 1.5rem;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}
.staff-s1-content > div:nth-child(1) p span {
  display: block;
  font-size: 1rem;
}
.staff-s1-content > div:nth-child(1)::after {
  content: "";
  position: absolute;
  display: block;
  margin: auto;
  width: 240px;
  height: 240px;
  background: url(".//bg_staff.webp") center/cover no-repeat;
  bottom: -60px;
  left: -60px;
}
.staff-s1-content > div:nth-child(2) {
  position: relative;
}
.staff-s1-content .staff-s1-img {
  overflow: hidden;
}
.staff-s1-content .staff-s1-img img, .staff-s1-content .staff-s1-img picture, .staff-s1-content .staff-s1-img source {
  max-width: initial;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}
.staff-s1-content .u-copy {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--cc1);
}

.staff-s2 {
  padding-block: 2rem;
}

.staff-s2-content {
  background: #fff;
  border-radius: 0.5rem;
  padding: 2rem 4rem;
  margin-top: 2rem;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .staff-s2-content {
    padding: 1rem;
  }
}
.staff-s2-content dl {
  display: flex;
}
.staff-s2-content dt {
  font-size: 1.4rem;
  line-height: 2rem;
  font-weight: bold;
  color: var(--cc1);
  width: 5em;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .staff-s2-content dt {
    width: 4em;
    font-size: 1.2rem;
  }
}
.staff-s2-content dd {
  font-size: 1.2rem;
  line-height: 2rem;
  padding-left: 3.6rem;
  padding-bottom: 1em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .staff-s2-content dd {
    font-size: 1rem;
    padding-left: 2rem;
  }
}
.staff-s2-content dd strong {
  color: var(--cc1);
}
.staff-s2-content dd::before, .staff-s2-content dd::after {
  content: "";
  position: absolute;
  display: block;
  margin: auto;
}
.staff-s2-content dd::before {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 1.2rem;
  background: var(--cc1);
  top: 0.5rem;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .staff-s2-content dd::before {
    width: 0.8rem;
    height: 0.8rem;
  }
}
.staff-s2-content dd::after {
  width: 1px;
  height: 100%;
  background: var(--text);
  left: 0.6rem;
  top: 0.6rem;
}
@media screen and (max-width: 768px) {
  .staff-s2-content dd::after {
    left: 0.4rem;
    top: 0.4rem;
  }
}
.staff-s2-content dl:last-child dd {
  padding-bottom: 0;
}
.staff-s2-content dl:last-child dd::after {
  content: none;
}

.staff-s3, .staff-s4 {
  background: #fff;
  padding-block: 2rem 4rem;
}

.staff-s3 p {
  font-size: 1.25rem;
  font-weight: bold;
  padding-left: 3em;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .staff-s3 p {
    padding-left: 0;
  }
}

.staff-s4 p {
  font-size: 1.25rem;
  padding-left: 3em;
  margin-block: 2rem;
}
@media screen and (max-width: 768px) {
  .staff-s4 p {
    padding-left: 0;
  }
}
.staff-s4 ul {
  width: min(100% - 1rem, 768px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .staff-s4 ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
.staff-s4 ul > li {
  border-radius: 1rem;
  border: solid 3px var(--cc1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding-top: 1rem;
}
.staff-s4 ul h4 {
  font-size: 1.25rem;
}
.staff-s4 ul h4 span {
  display: block;
  font-size: 1rem;
}
.staff-s4 .u-btn {
  display: block;
  width: fit-content;
  padding: 0.5em 2em;
  position: relative;
  border-radius: 0.5rem;
  background: var(--cc1);
  color: #fff;
  margin-inline: auto;
}
.staff-s4 .u-arw {
  width: 3rem;
  position: absolute;
  inset: -0.5rem -2rem 0 auto;
  margin: auto;
  z-index: 1;
}
.staff-s4 .u-arw path {
  stroke-width: 2;
  stroke: var(--text);
  fill: none;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: drawLine 3s ease-in-out infinite;
}

main.main-shinryo > div[class^=shinryo-s] > div[class$=-body] {
  width: min(100% - 1rem, 1120px);
  margin-inline: auto;
}

.shinryo-s1 {
  margin-block: 5rem;
}

.shinryo-s2-body {
  width: min(100% - 1rem, 1120px);
  margin-inline: auto;
}

.shinryo-s2-lead2 {
  padding-block: 2rem;
}
.shinryo-s2-lead2 h4 {
  color: var(--cc1);
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}
.shinryo-s2-lead2 ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: min(100% - 1rem, 768px);
  margin-inline: auto;
}
.shinryo-s2-lead2 ul > li {
  background: var(--cc1);
  padding: 0.2rem 1rem;
  border-radius: 5rem;
  margin-inline: 0.5rem;
  margin-bottom: 1rem;
  width: fit-content;
}
.shinryo-s2-lead2 ul > li a {
  display: block;
  color: #fff;
}
.shinryo-s2-lead2 ul > li a::after {
  content: "＞";
  margin-left: 0.3rem;
  font-size: 90%;
  color: #fff;
}

div[class^=shinryo-s2-c] {
  padding-block: 2rem;
}
div[class^=shinryo-s2-c] h4 {
  margin-bottom: 1rem;
}
div[class^=shinryo-s2-c] p + .c-btn {
  margin-top: 2rem;
}

.shinryo-s3 {
  padding-block: 2rem;
  background: #fff7ef;
}

.shinryo-s3-foot {
  display: flex;
  justify-content: center;
  font-size: 1.125rem;
}
.shinryo-s3-foot h5 {
  background: var(--text);
  color: #fff;
  border-radius: 3rem;
  padding-inline: 0.2rem;
  margin-right: 0.5rem;
}
.shinryo-s3-foot strong {
  color: var(--cc2);
}

.shinryo-s3-c1 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.shinryo-s3-c1 h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.shinryo-s3-c1 h4 strong {
  text-decoration: underline var(--cc2) 2px;
}
.shinryo-s3-c1 .c-flex__imgl {
  width: 300px;
}
.shinryo-s3-c1 p strong {
  color: var(--cc2);
}

.shiryo-s3-c2 {
  width: fit-content;
  margin-inline: auto;
  padding: 3rem 5rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .shiryo-s3-c2 {
    padding-inline: 1rem;
  }
}

.shinryo-s4, .shinryo-s5, .shinryo-s6, .shinryo-s7, .shinryo-s8, .shinryo-s9 {
  padding-block: 3rem;
}

.shinryo-s4 {
  background: #ffe4d8;
}
.shinryo-s4 .c-table1 {
  margin-block: 1rem 4rem;
  width: 100%;
}
.shinryo-s4 .c-table1 table {
  width: calc(100% + 2px);
}
.shinryo-s4 .c-table1 td {
  padding: 2rem;
  text-align: center;
}
.shinryo-s4 .c-btn {
  margin-inline: auto;
}

.shinryo-s4-c1 {
  margin-block: 2rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .shinryo-s4-c1 {
    flex-direction: column;
  }
}
.shinryo-s4-c1 > div {
  border: solid 2px var(--cc2);
  border-radius: 1rem;
  overflow: hidden;
  width: 49%;
}
@media screen and (max-width: 768px) {
  .shinryo-s4-c1 > div {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.shinryo-s4-c1 > div h4 {
  background: var(--cc2);
  color: #fff;
  text-align: center;
  padding: 0.2rem;
}
.shinryo-s4-c1 > div ul {
  background: #fff;
  padding: 1rem 2rem;
  height: 100%;
}
.shinryo-s4-c1 > div ul > li {
  width: fit-content;
}
.shinryo-s4-c1 > div ul > li::before {
  content: "●";
  font-size: 0.9375rem;
  margin-right: 0.5rem;
  color: var(--cc2);
}
.shinryo-s4-c1 > div:nth-child(2) {
  border-color: var(--cc1);
}
.shinryo-s4-c1 > div:nth-child(2) h4 {
  background: var(--cc1);
}
.shinryo-s4-c1 > div:nth-child(2) ul li::before {
  color: var(--cc1);
}
.shinryo-s4-c1 > div:nth-child(2) ul li:nth-child(1) {
  border: solid 2px var(--cc2);
  border-radius: 2rem;
  margin-inline: -3px;
}
.shinryo-s4-c1 > div:nth-child(2) ul li:nth-child(1)::before {
  content: "★";
  font-size: 1rem;
  color: var(--text);
}

.shinryo-s5 .c-btn {
  margin-top: 2rem;
}

.shinryo-s6 .c-book {
  margin-block: 1rem 2rem;
}
.shinryo-s6 .shinryo-s6-c1 {
  display: flex;
}
.shinryo-s6 .shinryo-s6-c1 > div:nth-child(1) {
  margin-right: 3rem;
}
@media screen and (max-width: 768px) {
  .shinryo-s6 .shinryo-s6-c1 > div:nth-child(1) {
    margin-right: 1rem;
  }
}
.shinryo-s6 .shinryo-s6-c1 h4 {
  color: var(--cc1);
}
.shinryo-s6 .shinryo-s6-c1 ul li::before {
  content: "●";
  color: var(--cc1);
  margin-right: 0.3rem;
}

.shinryo-s7 .c-book {
  margin-top: 1rem;
}
.shinryo-s7 .c-table1 {
  margin-block: 2rem;
}

.shinryo-s8 .c-flex h4 {
  color: var(--cc1);
  margin-top: 1rem;
}
.shinryo-s8 .c-flex ul li::before {
  content: "●";
  color: var(--cc1);
  margin-right: 0.3rem;
}
.shinryo-s8 .c-flex .u-caption {
  margin-block: 1rem;
}
.shinryo-s8 .c-flex h5 {
  color: var(--cc2);
  margin-bottom: 0.5rem;
}
.shinryo-s8 .c-flex h5 + a {
  display: flex;
  align-items: center;
  background: var(--cc2);
  color: #fff;
  padding: 0.2rem 1rem;
  width: fit-content;
  border-radius: 3rem;
  font-size: 1.25rem;
}
.shinryo-s8 .c-flex h5 + a img {
  height: 1.5rem;
  width: auto;
  filter: brightness(100);
  margin-right: 1rem;
}

.shinryo-s9 .shinryo-s9-c1, .shinryo-s9 .shinryo-s9-c2 {
  padding-block: 1rem;
}
.shinryo-s9 .shinryo-s9-c1 h4, .shinryo-s9 .shinryo-s9-c2 h4 {
  font-size: 1.125rem;
  color: var(--cc1);
}
.shinryo-s9 .shinryo-s9-c1 ul li::before {
  content: "●";
  color: var(--cc1);
  margin-right: 0.3rem;
}
.shinryo-s9 .shinryo-s9-c2 h4 {
  margin-bottom: 1rem;
}
.shinryo-s9 .shinryo-s9-c2 h5 {
  color: var(--cc2);
}
.shinryo-s9 .shinryo-s9-c2 .c-btn {
  margin-top: 2rem;
}

main.main-guide {
  background: #fcfff4;
}
main.main-guide > div[class^=guide-s] > div[class$=-body] {
  width: min(100% - 1rem, 1120px);
  margin-inline: auto;
}

.guide-s1 {
  padding-block: 2rem 4rem;
}
.guide-s1 h3 {
  margin-bottom: 1rem;
}
.guide-s1 h4 {
  font-size: 1.25rem;
  color: var(--cc1);
  margin-bottom: 1rem;
}
.guide-s1 .c-cklist > li::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 0.5em;
  content: "\f058";
}
.guide-s1 .c-cklist strong {
  color: var(--cc2);
}

.guide-s1-c1 {
  display: flex;
  position: relative;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .guide-s1-c1 {
    flex-direction: column;
  }
}
.guide-s1-c1 > div:nth-child(1) {
  position: relative;
  width: 60%;
  margin-right: -200px;
}
@media screen and (max-width: 768px) {
  .guide-s1-c1 > div:nth-child(1) {
    width: auto;
    margin-right: 0;
  }
}
.guide-s1-c1-text {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0.5rem;
  padding: 2rem;
}

.guide-s2, .guide-s3, .guide-s4, .guide-s8 {
  --c-hd-m3-size: 1.6rem;
  --c-hd-m3-pb: 0.5rem;
  --c-hd-m3-subsize: 1rem;
  --c-hd-m3-linesize: 3rem;
}

.guide-s2 {
  background: var(--cc1);
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.guide-s2 > h3 {
  --c-hd-m3-color: #fff;
  --c-hd-m3-subcolor: #ffe2bc;
  --c-hd-m3-linecolor: #ffe2bc;
  margin-bottom: 2rem;
}
.guide-s2 ul {
  width: min(100% - 1rem, 1120px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .guide-s2 ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
.guide-s2 ul > li {
  background: #fff;
  border-radius: 0.5rem;
  padding: 1rem;
}
.guide-s2 ul img {
  margin-inline: auto;
  height: 137px;
  width: auto;
  margin-bottom: 1rem;
}
.guide-s2 ul h3 {
  color: var(--cc1);
  font-size: 1.25rem;
  line-height: 1.6rem;
  text-align: center;
  height: 4.2rem;
}

.guide-s3 {
  background: url(".//bg-ptn10.jpg") center top/contain no-repeat #f8f6f0;
  padding-block: 2rem;
}

.guide-s3-c1 {
  width: min(100% - 1rem, 768px);
  margin-inline: auto;
  padding: 3rem 5rem;
}
@media screen and (max-width: 768px) {
  .guide-s3-c1 {
    padding-inline: 1rem;
  }
}
.guide-s3-c1 h3 {
  margin-bottom: 1rem;
}
.guide-s3-c1 dl {
  display: flex;
  padding-block: 0.5rem;
}
.guide-s3-c1 dt {
  color: var(--cc1);
  width: 8rem;
  flex-shrink: 0;
}

.guide-s4 {
  background: #f8f6f0;
  padding-block: 2rem 4rem;
}
.guide-s4 h3 {
  margin-bottom: 2rem;
}

.guide-s4-content {
  width: min(100% - 1rem, 768px);
  margin-inline: auto;
}
.guide-s4-content .c-schedule, .guide-s4-content .guide-s4-notes1, .guide-s4-content .guide-s4-notes2 {
  width: min(100% - 0px, 600px);
  margin-inline: auto;
}
.guide-s4-content .c-schedule {
  font-size: 1.125rem;
}
.guide-s4-content .guide-s4-notes1 {
  padding-block: 1rem;
  margin-bottom: 2rem;
}
.guide-s4-content .guide-s4-notes1 span {
  color: var(--cc1);
}
.guide-s4-content .guide-s4-notes2 h4 {
  font-size: 1.125rem;
  color: var(--cc1);
  margin-bottom: 1rem;
}
.guide-s4-content .guide-s4-notes2 h4::before, .guide-s4-content .guide-s4-notes2 h4::after {
  content: "●";
}
.guide-s4-content .guide-s4-notes2 h5 {
  background: var(--cc1);
  color: #fff;
  width: fit-content;
  padding-inline: 1.5rem;
  border-radius: 2rem;
  margin-top: 1rem;
}
.guide-s4-content .guide-s4-notes2 h4 + h5 {
  background: var(--cc2);
}
.guide-s4-content .guide-s4-notes2 ol {
  list-style: decimal;
  padding-left: 1rem;
}

.guide-s5 {
  padding-block: 3rem;
}

.guide-s5-c1, .guide-s5-c2 {
  padding-block: 2rem;
}
.guide-s5-c1 h4, .guide-s5-c2 h4 {
  font-size: 1.125rem;
  color: var(--cc1);
  margin-bottom: 1rem;
}

.guide-s5-c1-flex {
  display: flex;
}

.guide-s5-c2 .c-flex + .c-flex {
  padding-top: 2rem;
}

.guide-s6 {
  padding-block: 3rem;
}
.guide-s6 h3 {
  margin-bottom: 2rem;
}
.guide-s6 ul {
  margin-top: 2rem;
}
.guide-s6 ul li::before {
  content: "●";
  color: var(--cc2);
  margin-right: 0.5rem;
}

.guide-s7 .c-flex {
  padding-block: 2rem;
}
.guide-s7 .c-btn {
  margin-top: 1rem;
}

.guide-s8 {
  padding-block: 4rem 5rem;
  background: url(".//bg-ptn4.jpg") center top/contain no-repeat var(--cc1);
}
.guide-s8 h3 {
  --c-hd-m3-color:#fff;
  --c-hd-m3-subcolor:#ffe2bc;
  --c-hd-m3-linecolor:#ffe2bc;
  margin-bottom: 2rem;
}

.guide-s8-c1 {
  display: flex;
  color: #fff;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .guide-s8-c1 {
    flex-direction: column;
  }
}
.guide-s8-c1 .googlemap {
  width: 50%;
  margin-right: 4rem;
}
@media screen and (max-width: 768px) {
  .guide-s8-c1 .googlemap {
    width: 100%;
  }
}
.guide-s8-c1 .googlemap iframe {
  width: 100%;
  height: 300px;
}
.guide-s8-c1 .googlemap .c-btn {
  margin-top: 1rem;
  background: #fff885;
  color: var(--cc1);
}
.guide-s8-c1 h4 {
  font-size: 1.25rem;
}
.guide-s8-c1 .home-s3-tel {
  font-size: 1.5rem;
}

.guide-s8-c2 {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
}

.guide-s8-access1,
.guide-s8-access2,
.guide-s8-access3 {
  padding-left: 4rem;
  margin-bottom: 1rem;
}

.guide-s8-access1 {
  background: url(".//guide-s8-1.webp") left top/3rem no-repeat;
}
.guide-s8-access1 h5 {
  color: var(--cc1);
  font-size: 1.25rem;
}
.guide-s8-access1 strong {
  color: var(--cc1);
}

.guide-s8-access2 {
  background: url(".//guide-s8-2.webp") left top/3rem no-repeat;
}
.guide-s8-access2 h5 {
  color: var(--cc1);
  font-size: 1.25rem;
}
.guide-s8-access2 ul {
  padding-left: 1rem;
  list-style: disc;
}

.guide-s8-access3 h5 {
  display: flex;
  align-items: center;
  color: var(--cc2);
  margin-left: -3rem;
}
.guide-s8-access3 h5 img {
  width: 2rem;
  height: auto;
  margin-right: 1rem;
}

.guide-s8-access4 {
  display: flex;
}
.guide-s8-access4 > div {
  width: 50%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .guide-s8-access4 {
    flex-direction: column;
  }
  .guide-s8-access4 > div {
    width: 100%;
    margin-top: 1rem;
  }
}

.sl-overlay {
  background: #000;
}

main.main-online {
  background: #fff6f2;
}
main.main-online > div[class^=online-s] > div[class$=-body] {
  width: min(100% - 1rem, 1120px);
  margin-inline: auto;
}

.online-s2, .online-s3, .online-s7 {
  --c-hd-m3-size: 1.6rem;
  --c-hd-m3-pb: 0.5rem;
  --c-hd-m3-subsize: 1rem;
  --c-hd-m3-linesize: 3rem;
}

.online-s1 {
  padding-block: 3rem;
}
.online-s1 h3 {
  margin-bottom: 2rem;
}

.online-s1-text strong {
  color: var(--cc1);
}
.online-s1-text img {
  margin-top: 2rem;
}

.online-s2 {
  padding-block: 2rem;
}
.online-s2 .c-clip {
  width: min(100% - 1rem, 768px);
  margin-inline: auto;
  padding: 3rem 8rem;
}
@media screen and (max-width: 768px) {
  .online-s2 .c-clip {
    padding-inline: 1rem;
  }
}
.online-s2 h3 {
  margin-bottom: 2rem;
}
.online-s2 ul li {
  font-size: 1.125rem;
  padding: 0.5rem;
}

.online-s3-c1 {
  width: min(100% - 1rem, 1120px);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  padding-block: 2rem;
}
@media screen and (max-width: 768px) {
  .online-s3-c1 {
    flex-direction: column;
  }
}
.online-s3-c1 > li {
  width: 32%;
  background: #fff;
  border-radius: 0.5rem;
  padding: 1rem;
}
@media screen and (max-width: 768px) {
  .online-s3-c1 > li {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.online-s3-c1 h4 {
  font-size: 1.25rem;
  color: var(--cc1);
  text-align: center;
}
.online-s3-c1 img {
  height: 5rem;
  width: auto;
  margin-inline: auto;
  margin-block: 1rem;
}

.online-s3-install {
  background: url(".//bg-ptn7.jpg") center top/contain no-repeat #fff;
  padding-block: 5rem;
  text-align: center;
}
.online-s3-install p {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
.online-s3-install ul {
  width: min(100% - 1rem, 500px);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .online-s3-install ul {
    flex-direction: column;
  }
}
.online-s3-install ul > li {
  width: 49%;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .online-s3-install ul > li {
    width: 80%;
    margin-bottom: 1rem;
    margin-inline: auto;
  }
}

.online-s4 {
  background: url(".//bg-ptn8.jpg") center top/contain no-repeat var(--cc1);
  padding-block: 4rem;
  color: #fff;
}
.online-s4 h3.c-hd-m1 {
  color: #fff;
  margin-bottom: 3rem;
}
.online-s4 h3.c-hd-m1 span {
  color: #fed5c3;
}
.online-s4 h3.c-hd-m1::after {
  background: #fed5c3;
}
.online-s4 h5 {
  display: flex;
  align-items: center;
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: color-mix(in srgb, var(--cc2), #fff 80%);
}
.online-s4 h5 img {
  height: 3rem;
  width: auto;
  margin-right: 0.5rem;
}
.online-s4 h5 + p strong {
  color: color-mix(in srgb, var(--cc2), #fff 80%);
}

.online-s4-flow h4 {
  text-align: center;
  color: var(--cc1);
}
.online-s4-flow img {
  height: 5rem;
  width: auto;
  margin: 1rem auto;
}
.online-s4-flow p {
  color: var(--text);
}
.online-s4-flow strong {
  color: var(--cc1);
  font-size: 1.25rem;
}

.online-s5 {
  padding-block: 4rem 2rem;
  background: url(".//bg-ptn9.jpg") center top/contain no-repeat;
}

.online-s5-c1, .online-s5-c2, .online-s5-c3 {
  padding-block: 2rem;
}
.online-s5-c1 .c-hd-m2, .online-s5-c2 .c-hd-m2, .online-s5-c3 .c-hd-m2 {
  font-size: 1.25rem;
}

.online-s5-table.c-table1 table {
  --c-table1-padding: 1rem;
}
.online-s5-table.c-table1 table thead {
  --c-table1-padding: 0.2rem;
  background: color-mix(in srgb, var(--cc2), #fff 80%);
}
.online-s5-table.c-table1 table tbody {
  font-size: 1.125rem;
}
.online-s5-table.c-table1 table tbody span {
  display: block;
  font-size: 0.9375rem;
}
.online-s5-table.c-table1 table tbody td:nth-child(2) {
  font-weight: bold;
  color: var(--cc2);
}

.online-s5-c2-card {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  width: fit-content;
  background: #fff;
  padding-left: 1rem;
}
@media screen and (max-width: 768px) {
  .online-s5-c2-card {
    flex-direction: column;
  }
}

.online-s5-c3 strong {
  color: var(--cc2);
  font-size: 125%;
}

.online-s6 {
  background: #fff;
  padding-block: 3rem;
}
.online-s6 .c-panel__canvas {
  border-radius: 0.5rem;
}
.online-s6 .c-panel__canvas h4 {
  background: var(--text);
  color: #fff;
  width: 10em;
  border-radius: 2rem;
  text-align: center;
  font-size: 1.125rem;
  margin-inline: auto;
}

.online-s6-c1 {
  margin-bottom: 1rem;
}
.online-s6-c1 h4 {
  margin-bottom: 1rem;
}
.online-s6-c1 h4 + p {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  color: var(--cc2);
}
.online-s6-c1 p {
  text-align: center;
}

.online-s6-c2-flex {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .online-s6-c2-flex {
    flex-direction: column;
  }
}
.online-s6-c2-flex + p {
  font-size: 1.125rem;
  font-weight: bold;
  color: var(--cc2);
}
.online-s6-c2-flex > div {
  width: 48%;
  border: solid 2px var(--cc2);
  border-radius: 1rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .online-s6-c2-flex > div {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.online-s6-c2-flex > div h5 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  padding-block: 0.5rem;
}
.online-s6-c2-flex > div h5 img {
  height: 3rem;
  width: auto;
  margin-right: 0.5rem;
}
.online-s6-c2-flex > div div {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.online-s6-c2-flex > div:nth-child(1) {
  background: #fff6f2;
}
.online-s6-c2-flex > div:nth-child(1) h5 {
  background: var(--cc2);
  color: #fff;
}
.online-s6-c2-flex > div:nth-child(1) strong {
  display: block;
  background: #fff;
  color: var(--cc1);
  font-size: 1.5rem;
}
.online-s6-c2-flex > div:nth-child(1) ul {
  margin-top: 1rem;
  width: 55%;
}
.online-s6-c2-flex > div:nth-child(1) ul > li + li {
  margin-top: 5px;
}
.online-s6-c2-flex > div:nth-child(1) ul a {
  display: block;
}
@media screen and (max-width: 768px) {
  .online-s6-c2-flex > div:nth-child(1) ul {
    width: auto;
  }
}
.online-s6-c2-flex > div:nth-child(2) h5 {
  color: var(--cc2);
  background: #ffe4d8;
}
.online-s6-c2-flex > div:nth-child(2) p {
  height: 12rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .online-s6-c2-flex > div:nth-child(2) p {
    height: auto;
    margin-bottom: 1rem;
  }
}

.online-s6-foot {
  margin-top: 2rem;
  text-align: center;
}

.online-s6-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-inline: auto;
  border: solid 1px var(--cc2);
  color: var(--cc2);
  border-radius: 10rem;
  padding: 0.5rem 3rem;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
}
.online-s6-tel img {
  height: 2rem;
  width: auto;
  margin-right: 0.5rem;
}

.online-s7 {
  padding-block: 4rem;
}

.online-s7-faq {
  width: min(100% - 1rem, 768px);
  margin-inline: auto;
}
.online-s7-faq dl {
  padding-block: 1rem;
  border-bottom: solid 1px var(--cc1);
}
.online-s7-faq dt {
  padding-block: 1rem;
  padding-left: 2.5rem;
  color: var(--cc1);
  font-size: 1.25rem;
  font-weight: bold;
  background: url(".//Q.webp") left/2rem no-repeat;
}

main.main-mri {
  background: #f8f6f0;
}
main.main-mri h2 {
  margin-bottom: 3rem;
}

.mri-body {
  width: min(100% - 1rem, 1120px);
  margin-inline: auto;
}

div[class^=mri-s2-c] {
  width: min(100% - 1rem, 1000px);
  margin-inline: auto;
}
div[class^=mri-s2-c] h4 {
  font-weight: bold;
  font-size: 1.125rem;
}

.mri-s1 {
  text-align: center;
  padding-bottom: 4rem;
}
.mri-s1 strong {
  color: var(--cc2);
}

.mri-s1-c1 {
  width: min(100% - 1rem, 1000px);
  margin-inline: auto;
  margin-top: 4rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .mri-s1-c1 {
    flex-direction: column;
  }
}
.mri-s1-c1 > div {
  width: 49%;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (max-width: 768px) {
  .mri-s1-c1 > div {
    width: auto;
  }
}
.mri-s1-c1 > div .mri-s1-icon {
  content: "";
  position: absolute;
  display: block;
  margin: auto;
  width: auto;
  height: 3rem;
  left: 0;
  right: 0;
  top: -1.5rem;
}
.mri-s1-c1 > div h3 {
  border-radius: 1rem 1rem 0 0;
  border: solid 2px var(--cc1);
  background: var(--cc1);
  color: #fff;
  padding-block: 1.5rem 0.75rem;
  font-size: 1.4rem;
}
.mri-s1-c1 > div:nth-child(1) h3 {
  border-color: var(--cc2);
  background: var(--cc2);
}
.mri-s1-c1 > div:nth-child(1) > div {
  border-color: var(--cc2);
}
.mri-s1-c1 > div:nth-child(1) .c-btn {
  background: var(--cc2);
}
@media screen and (max-width: 768px) {
  .mri-s1-c1 > div:nth-child(1) {
    margin-bottom: 3rem;
  }
}
.mri-s1-c1 > div:nth-child(2) strong {
  color: var(--text);
}
.mri-s1-c1 > div > div {
  border-radius: 0 0 1rem 1rem;
  background: #fff;
  border: solid 2px var(--cc1);
  padding: 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.mri-s1-c1 > div > div a {
  margin-inline: auto;
  margin-top: auto;
}
.mri-s1-c1 > div ul {
  text-align: left;
}
.mri-s1-c1 > div ul li::before {
  content: "●";
  margin-right: 0.5rem;
}
.mri-s1-c1 > div strong {
  display: block;
  width: fit-content;
  padding: 0.5rem 2rem;
  border-radius: 3rem;
  border: solid 2px var(--cc2);
  margin: 1rem auto;
}
.mri-s1-c1 > p {
  text-align: left;
  margin-top: 1rem;
}

.mri-s1-c1 + .c-btn {
  margin: 3rem auto 0;
}

.mri-s2 {
  padding-block: 4rem;
  background: #fff7f4;
}

.mri-s2-c1 {
  margin-bottom: 1rem;
}
.mri-s2-c1.c-flex {
  align-items: center;
  background: url(".//bg-home-s2-c1.webp") right 30% center/contain no-repeat;
}

.mri-s2-c2 {
  margin-bottom: 4rem;
}
.mri-s2-c2 ul {
  margin-bottom: 0.5rem;
}
.mri-s2-c2 li::before {
  content: "●";
  margin-right: 0.5rem;
  color: var(--cc2);
}

.mri-s2-c3 .c-flow {
  margin-top: 2rem;
  --items: 4;
  --gap: 2rem;
  --arw-c:var(--cc2);
  --num-c:var(--text);
  --num-bg: var(--cc2);
}
.mri-s2-c3 .c-flow__item {
  border: solid 1px var(--text);
  text-align: center;
}
.mri-s2-c3 .c-flow__item h5 {
  font-size: 1.125rem;
}
.mri-s2-c3 .c-flow__item img {
  height: 4rem;
  width: auto;
  margin: 1rem auto;
}
.mri-s2-c3 .c-flow__item strong {
  font-size: var(--cc2);
}

.mri-s2-c4, .mri-s2-c5 {
  padding-block: 1rem;
}
.mri-s2-c4 h4, .mri-s2-c5 h4 {
  margin-bottom: 1rem;
}
.mri-s2-c4 .c-table2, .mri-s2-c5 .c-table2 {
  --padding: 1rem;
  --bg-h:#ffebe2;
  width: 100%;
  margin-bottom: 0.5rem;
}
.mri-s2-c4 .c-table2 table, .mri-s2-c5 .c-table2 table {
  width: calc(100% + 2px);
}
.mri-s2-c4 .c-table2 thead th, .mri-s2-c4 .c-table2 thead td, .mri-s2-c5 .c-table2 thead th, .mri-s2-c5 .c-table2 thead td {
  padding: 0.2rem;
}
.mri-s2-c4 .c-table2 tbody th, .mri-s2-c4 .c-table2 tbody td, .mri-s2-c5 .c-table2 tbody th, .mri-s2-c5 .c-table2 tbody td {
  text-align: center;
  width: 50%;
}

.mri-s3 {
  background: #f7faee;
  padding-block: 4rem;
}
.mri-s3 h3.c-hd-m2 {
  width: min(100% - 1rem, 1120px);
  margin-inline: auto;
}
.mri-s3 h3.c-hd-m2 + img {
  margin: 1rem auto;
}

div[class^=mri-s3-c] {
  width: min(100% - 1rem, 1000px);
  margin-inline: auto;
}
div[class^=mri-s3-c] h4 {
  font-weight: bold;
  font-size: 1.125rem;
}

.mri-s3-c2 {
  margin-top: 1rem;
  padding-block: 1rem 2rem;
  background: url(".//bg-mri-s3-c2.webp") center/contain no-repeat;
}
.mri-s3-c2 h4 {
  text-align: center;
  color: var(--cc1);
  margin-bottom: 1rem;
}
.mri-s3-c2 .c-cklist {
  width: min(100% - 1rem, 550px);
  margin-inline: auto;
}
.mri-s3-c2 .c-cklist > li {
  padding-block: 0.5rem;
}
.mri-s3-c2 .c-cklist > li::before {
  color: var(--cc1);
}

.mri-s3-c3 h4 {
  margin-bottom: 1rem;
}
.mri-s3-c3 ul {
  margin-inline: -2rem;
  display: flex;
  justify-content: space-between;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 1120px) {
  .mri-s3-c3 ul {
    margin-inline: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .mri-s3-c3 ul {
    grid-template-columns: repeat(1, 1fr);
  }
}
.mri-s3-c3 ul li {
  width: 250px;
  height: 250px;
  background: var(--cc1);
  border-radius: 250px;
  text-align: center;
  padding: 5px;
  color: #fff;
  -webkit-text-stroke: 8px var(--cc1);
  text-stroke: 8px var(--cc1);
  /* フチを文字の裏側に配置して文字が潰れるのを防ぐ */
  paint-order: stroke fill;
  letter-spacing: 0.15em;
}
.mri-s3-c3 ul li span {
  font-size: 2rem;
  line-height: 1;
  color: #effec7;
}
.mri-s3-c3 ul li h4 {
  font-weight: bold;
  color: #effec7;
}
@media screen and (max-width: 1120px) {
  .mri-s3-c3 ul li {
    margin-inline: auto;
  }
}

.mri-s3-c4 h4 {
  margin-bottom: 1rem;
}
.mri-s3-c4 p {
  margin-bottom: 1rem;
}
.mri-s3-c4 img {
  padding: 1rem;
}

.mri-s3-c6 strong {
  font-size: 1.125rem;
  color: var(--cc2);
}
.mri-s3-c6 span {
  color: var(--cc1);
}

.mri-s3-c7 ul li::before {
  content: "●";
  margin-right: 0.5rem;
  color: var(--cc1);
}

.mri-s3-c8 {
  padding-bottom: 4rem;
}
.mri-s3-c8 h4 {
  margin-bottom: 2rem;
}
.mri-s3-c8 .c-flow {
  --items: 4;
  --gap: 1.8rem;
  --arw-c:var(--cc1);
  --num-c: #fff;
  --num-bg: var(--cc1);
}
@media screen and (max-width: 768px) {
  .mri-s3-c8 .c-flow {
    margin-inline: 1rem;
  }
}
.mri-s3-c8 .c-flow__item {
  border: solid 1px var(--text);
  text-align: center;
}
.mri-s3-c8 .c-flow__item img {
  height: 4rem;
  width: auto;
  margin: 1rem auto;
}
.mri-s3-c8 .c-flow__item a {
  display: block;
  position: relative;
}
.mri-s3-c8 .c-flow__item a::after {
  content: "クリック▶";
  display: block;
  position: absolute;
  bottom: -1em;
  right: -1em;
  font-size: 0.75rem;
}

.mri-s3-c9 h4 {
  margin-bottom: 1rem;
}
.mri-s3-c9 .c-table2 {
  --border-t: solid 1px #effad1;
  --border-c: solid 1px #effad1;
  --padding: 1rem;
  --bg-h: #effad1;
  --bg-b: #fff;
  width: 100%;
  margin-bottom: 0.5rem;
}
.mri-s3-c9 .c-table2 table {
  width: calc(100% + 2px);
}
.mri-s3-c9 .c-table2 th, .mri-s3-c9 .c-table2 td {
  text-align: center;
}
.mri-s3-c5, .mri-s3-c6, .mri-s3-c7 {
  padding-block: 2rem;
}
.mri-s3-c5 h4, .mri-s3-c6 h4, .mri-s3-c7 h4 {
  margin-bottom: 1rem;
}

.mri-s5, .mri-s6, .mri-s7 {
  background: #fff;
}

.mri-s4 {
  padding-block: 4rem;
  background: url(".//bg-ptn5.jpg") center top/contain no-repeat #fff;
}

.mri-s4-c1 {
  width: min(100% - 1rem, 768px);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  margin-block: 2rem;
}
@media screen and (max-width: 768px) {
  .mri-s4-c1 {
    flex-direction: column;
  }
}
.mri-s4-c1 > div {
  width: 48%;
  border: solid 1px #ffe4d8;
  border-radius: 1rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .mri-s4-c1 > div {
    width: auto;
    margin-bottom: 1rem;
  }
}
.mri-s4-c1 > div:nth-child(1) h4 {
  background: #ffe4d8;
}
.mri-s4-c1 > div:nth-child(2) {
  border-color: #effad1;
}
.mri-s4-c1 > div:nth-child(2) h4 {
  background: #effad1;
}
.mri-s4-c1 > div:nth-child(2) ul li::before {
  color: var(--cc1);
}
.mri-s4-c1 > div h4 {
  text-align: center;
  padding-block: 0.5rem;
}
.mri-s4-c1 > div ul {
  padding: 2rem;
}

.mri-s4-c2 {
  padding-bottom: 3rem;
}
.mri-s4-c2 h4 {
  display: flex;
  color: var(--cc2);
  margin-bottom: 1rem;
}
.mri-s4-c2 p, .mri-s4-c2 ul {
  padding-inline: 1rem;
}
.mri-s4-c2 ul li::before {
  content: "●";
  margin-right: 0.5rem;
  color: var(--cc2);
}

.mri-s5-c1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding-block: 1rem 3rem;
}
@media screen and (max-width: 768px) {
  .mri-s5-c1 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.mri-s5-c1 > li {
  border: solid 1px var(--cc2);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  padding: 1rem;
}
.mri-s5-c1 > li > div:nth-child(1) {
  width: 5rem;
  margin-right: 1rem;
  flex-shrink: 0;
}
.mri-s5-c1 h4 {
  color: var(--cc2);
}

.mri-s6 {
  padding-block: 2rem;
}
.mri-s6 .c-panel {
  margin-top: 50px;
}
.mri-s6 .c-panel__canvas {
  display: flex;
  padding: 1rem;
}
@media screen and (max-width: 768px) {
  .mri-s6 .c-panel__canvas {
    flex-direction: column;
  }
}
.mri-s6 .c-panel__canvas > div {
  width: 50%;
  padding: 1rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .mri-s6 .c-panel__canvas > div {
    width: auto;
  }
}
.mri-s6 .c-panel__canvas > div a {
  margin-inline: auto;
  margin-bottom: 1rem;
}
.mri-s6 .c-panel__canvas > div strong {
  display: block;
  margin-block: 1rem;
  font-size: 1.5rem;
  color: var(--cc1);
}
.mri-s6 .c-panel__canvas > div h4 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
}
.mri-s6 .c-panel__canvas > div h4 img {
  height: 2.5rem;
  width: auto;
  margin-right: 0.5rem;
}
.mri-s6 .c-panel__canvas > div:nth-child(1) {
  border-right: dotted 4px var(--text);
}
.mri-s6 .c-panel__canvas > div:nth-child(1) strong {
  color: var(--cc2);
}
.mri-s6 .c-panel__canvas > div:nth-child(1) p:last-child {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .mri-s6 .c-panel__canvas > div:nth-child(1) p:last-child {
    margin-top: 0.5em;
  }
}
@media screen and (max-width: 768px) {
  .mri-s6 .c-panel__canvas > div:nth-child(1) {
    border-right: none;
    border-bottom: dotted 4px var(--text);
  }
}

.mri-s7 {
  padding-block: 2rem 5rem;
}
.mri-s7 .c-table1 {
  width: 100%;
  margin-bottom: 1rem;
}
.mri-s7 .c-table1 table {
  width: calc(100% + 2px);
  --c-table1-padding: 1rem;
}
.mri-s7 .c-table1 thead th {
  padding: 0.2rem;
}
.mri-s7 .c-table1 td, .mri-s7 .c-table1 th {
  text-align: center;
}

/*# sourceMappingURL=page.css.map */
